diff --git a/.env.example b/.env.example index a4d21ac332..e18cda4e55 100644 --- a/.env.example +++ b/.env.example @@ -1,8 +1,32 @@ -# Copy this to `.env` and `.env.test` files +# The env the app is running in e.g. development, testflight, production +EXPO_PUBLIC_ENV=development -BITDRIFT_API_KEY= -SENTRY_AUTH_TOKEN= -EXPO_PUBLIC_LOG_LEVEL=debug -EXPO_PUBLIC_LOG_DEBUG= +# This is the semver release version of the app, pulled from package.json +EXPO_PUBLIC_RELEASE_VERSION= + +# This is the commit hash that the current bundle was made from. EXPO_PUBLIC_BUNDLE_IDENTIFIER= + +# Should be formatted YYMMDDHH so that it increases for each build. EXPO_PUBLIC_BUNDLE_DATE=0 + +# The log level for the app's logger transports +EXPO_PUBLIC_LOG_LEVEL=debug + +# Enable debug logs for specific logger instances +EXPO_PUBLIC_LOG_DEBUG=session + +# Chat service DID +EXPO_PUBLIC_CHAT_PROXY_DID= + +# +# +# Bluesky specific values +# +# + +# Sentry DSN for telemetry +EXPO_PUBLIC_SENTRY_DSN= + +# Bitdrift API key. If undefined, Bitdrift will be disabled. +EXPO_PUBLIC_BITDRIFT_API_KEY= diff --git a/.eslintrc.js b/.eslintrc.js index 726cc56074..59c1b4eb4f 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -34,6 +34,7 @@ module.exports = { 'P', 'Admonition', 'Admonition.Admonition', + 'AgeAssuranceAdmonition', 'Span', ], impliedTextProps: [], diff --git a/.github/workflows/build-and-push-bskyweb-aws.yaml b/.github/workflows/build-and-push-bskyweb-aws.yaml index 399e8669f0..6d573b0f71 100644 --- a/.github/workflows/build-and-push-bskyweb-aws.yaml +++ b/.github/workflows/build-and-push-bskyweb-aws.yaml @@ -43,12 +43,11 @@ jobs: tags: | type=sha,enable=true,priority=100,prefix=,suffix=,format=long - - name: Set outputs - id: vars + - name: Env + id: env run: | - echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT - echo "SENTRY_DIST=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT - echo "SENTRY_RELEASE=$(jq -r '.version' package.json)" >> $GITHUB_OUTPUT + echo "EXPO_PUBLIC_RELEASE_VERSION=$(jq -r '.version' package.json)" >> $GITHUB_OUTPUT + echo "EXPO_PUBLIC_BUNDLE_IDENTIFIER=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT - name: Build and push Docker image id: build-and-push @@ -62,8 +61,8 @@ jobs: cache-from: type=gha cache-to: type=gha,mode=max build-args: | - EXPO_PUBLIC_BUNDLE_IDENTIFIER=${{ steps.vars.outputs.sha_short }} - SENTRY_DIST=${{ steps.vars.outputs.SENTRY_DIST }} - SENTRY_RELEASE=${{ steps.vars.outputs.SENTRY_RELEASE }} + EXPO_PUBLIC_ENV=production + EXPO_PUBLIC_RELEASE_VERSION=${{ steps.env.outputs.EXPO_PUBLIC_RELEASE_VERSION }} + EXPO_PUBLIC_BUNDLE_IDENTIFIER=${{ steps.env.outputs.EXPO_PUBLIC_BUNDLE_IDENTIFIER }} + EXPO_PUBLIC_SENTRY_DSN=${{ secrets.SENTRY_DSN }} SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} - SENTRY_DSN=${{ secrets.SENTRY_DSN }} diff --git a/.github/workflows/build-and-push-embedr-aws.yaml b/.github/workflows/build-and-push-embedr-aws.yaml index 23d1538fe5..a6b2d9c3e0 100644 --- a/.github/workflows/build-and-push-embedr-aws.yaml +++ b/.github/workflows/build-and-push-embedr-aws.yaml @@ -3,6 +3,7 @@ on: push: branches: - main + - echoprom_fix env: REGISTRY: ${{ secrets.AWS_ECR_REGISTRY_USEAST2_PACKAGES_REGISTRY }} diff --git a/.github/workflows/build-submit-android.yml b/.github/workflows/build-submit-android.yml index 8a8388ee80..27724060ef 100644 --- a/.github/workflows/build-submit-android.yml +++ b/.github/workflows/build-submit-android.yml @@ -13,6 +13,7 @@ on: jobs: build: + if: github.repository == 'bluesky-social/social-app' name: Build and Submit Android runs-on: ubuntu-latest steps: @@ -52,10 +53,6 @@ jobs: distribution: 'temurin' java-version: '17' - - name: "Use upgraded MMKV for Fabric" - run: | - sed -i 's/"react-native-mmkv": "\^2\.12\.2"/"react-native-mmkv": "^3.3.0"/' package.json - - name: ⚙️ Install dependencies run: yarn install @@ -65,23 +62,31 @@ jobs: - name: Check for i18n compilation errors run: if grep -q "invalid syntax" "i18n.log"; then echo "\n\nFound compilation errors!\n\n" && exit 1; else echo "\n\nNo compilation errors!\n\n"; fi - - name: ✏️ Write environment variables + # EXPO_PUBLIC_ENV is handled in eas.json + - name: Env + id: env run: | export json='${{ secrets.GOOGLE_SERVICES_TOKEN }}' echo "${{ secrets.ENV_TOKEN }}" > .env - echo "EXPO_PUBLIC_BUNDLE_IDENTIFIER=$(git rev-parse --short HEAD)" >> .env + echo "EXPO_PUBLIC_RELEASE_VERSION=$(jq -r '.version' package.json)" >> .env + echo "EXPO_PUBLIC_RELEASE_VERSION=$(jq -r '.version' package.json)" >> $GITHUB_OUTPUT + echo "EXPO_PUBLIC_BUNDLE_IDENTIFIER=$(git rev-parse HEAD)" >> .env + echo "EXPO_PUBLIC_BUNDLE_IDENTIFIER=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT echo "EXPO_PUBLIC_BUNDLE_DATE=$(date -u +"%y%m%d%H")" >> .env - echo "BITDRIFT_API_KEY=${{ secrets.BITDRIFT_API_KEY }}" >> .env + echo "EXPO_PUBLIC_SENTRY_DSN=${{ secrets.SENTRY_DSN }}" >> .env + echo "EXPO_PUBLIC_BITDRIFT_API_KEY=${{ secrets.BITDRIFT_API_KEY }}" >> .env + echo "EXPO_PUBLIC_GCP_PROJECT_ID=${{ secrets.EXPO_PUBLIC_GCP_PROJECT_ID }}" >> .env echo "$json" > google-services.json - - name: Setup Sentry vars for build-time injection - id: sentry - run: | - echo "SENTRY_DIST=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT - echo "SENTRY_RELEASE=$(jq -r '.version' package.json)" >> $GITHUB_OUTPUT - - name: 🏗️ EAS Build - run: SENTRY_DIST=${{ steps.sentry.outputs.SENTRY_DIST }} SENTRY_RELEASE=${{ steps.sentry.outputs.SENTRY_RELEASE }} SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} SENTRY_DSN=${{ secrets.SENTRY_DSN }} yarn use-build-number-with-bump eas build -p android --profile ${{ inputs.profile || 'testflight-android' }} --local --output build.aab --non-interactive + run: > + SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} + SENTRY_RELEASE=${{ steps.env.outputs.EXPO_PUBLIC_RELEASE_VERSION }} + SENTRY_DIST=${{ steps.env.outputs.EXPO_PUBLIC_BUNDLE_IDENTIFIER }} + yarn use-build-number-with-bump + eas build -p android + --profile ${{ inputs.profile || 'testflight-android' }} + --local --output build.aab --non-interactive - name: ✍️ Rename Testflight bundle if: ${{ inputs.profile != 'production' }} @@ -143,7 +148,14 @@ jobs: - name: 🏗️ Build Production APK if: ${{ inputs.profile == 'production' }} - run: SENTRY_DIST=${{ steps.sentry.outputs.SENTRY_DIST }} SENTRY_RELEASE=${{ steps.sentry.outputs.SENTRY_RELEASE }} SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} SENTRY_DSN=${{ secrets.SENTRY_DSN }} yarn use-build-number-with-bump eas build -p android --profile production-apk --local --output build.apk --non-interactive + run: > + SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} + SENTRY_RELEASE=${{ steps.env.outputs.EXPO_PUBLIC_RELEASE_VERSION }} + SENTRY_DIST=${{ steps.env.outputs.EXPO_PUBLIC_BUNDLE_IDENTIFIER }} + yarn use-build-number-with-bump + eas build -p android + --profile production-apk + --local --output build.apk --non-interactive - name: 🚀 Upload Production APK Artifact id: upload-artifact-production-apk diff --git a/.github/workflows/build-submit-ios.yml b/.github/workflows/build-submit-ios.yml index dd7c5f85b5..449733485c 100644 --- a/.github/workflows/build-submit-ios.yml +++ b/.github/workflows/build-submit-ios.yml @@ -13,6 +13,7 @@ on: jobs: build: + if: github.repository == 'bluesky-social/social-app' name: Build and Submit iOS runs-on: macos-15 steps: @@ -52,7 +53,7 @@ jobs: - uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: '16.2' + xcode-version: '16.4' - name: ☕️ Setup Cocoapods uses: maxim-lobanov/setup-cocoapods@v1 @@ -74,22 +75,30 @@ jobs: - name: Check for i18n compilation errors run: if grep -q "invalid syntax" "i18n.log"; then echo "\n\nFound compilation errors!\n\n" && exit 1; else echo "\n\nNo compilation errors!\n\n"; fi + # EXPO_PUBLIC_ENV is handled in eas.json - name: ✏️ Write environment variables + id: env run: | echo "${{ secrets.ENV_TOKEN }}" > .env - echo "EXPO_PUBLIC_BUNDLE_IDENTIFIER=$(git rev-parse --short HEAD)" >> .env + echo "EXPO_PUBLIC_RELEASE_VERSION=$(jq -r '.version' package.json)" >> .env + echo "EXPO_PUBLIC_RELEASE_VERSION=$(jq -r '.version' package.json)" >> $GITHUB_OUTPUT + echo "EXPO_PUBLIC_BUNDLE_IDENTIFIER=$(git rev-parse HEAD)" >> .env + echo "EXPO_PUBLIC_BUNDLE_IDENTIFIER=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT echo "EXPO_PUBLIC_BUNDLE_DATE=$(date -u +"%y%m%d%H")" >> .env - echo "BITDRIFT_API_KEY=${{ secrets.BITDRIFT_API_KEY }}" >> .env + echo "EXPO_PUBLIC_SENTRY_DSN=${{ secrets.SENTRY_DSN }}" >> .env + echo "EXPO_PUBLIC_BITDRIFT_API_KEY=${{ secrets.BITDRIFT_API_KEY }}" >> .env + echo "EXPO_PUBLIC_GCP_PROJECT_ID=${{ secrets.EXPO_PUBLIC_GCP_PROJECT_ID }}" >> .env echo "${{ secrets.GOOGLE_SERVICES_TOKEN }}" > google-services.json - - name: Setup Sentry vars for build-time injection - id: sentry - run: | - echo "SENTRY_DIST=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT - echo "SENTRY_RELEASE=$(jq -r '.version' package.json)" >> $GITHUB_OUTPUT - - name: 🏗️ EAS Build - run: SENTRY_DIST=${{ steps.sentry.outputs.SENTRY_DIST }} SENTRY_RELEASE=${{ steps.sentry.outputs.SENTRY_RELEASE }} SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} SENTRY_DSN=${{ secrets.SENTRY_DSN }} yarn use-build-number-with-bump eas build -p ios --profile ${{ inputs.profile || 'testflight' }} --local --output build.ipa --non-interactive + run: > + SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} + SENTRY_RELEASE=${{ steps.env.outputs.EXPO_PUBLIC_RELEASE_VERSION }} + SENTRY_DIST=${{ steps.env.outputs.EXPO_PUBLIC_BUNDLE_IDENTIFIER }} + yarn use-build-number-with-bump + eas build -p ios + --profile ${{ inputs.profile || 'testflight' }} + --local --output build.ipa --non-interactive - name: 🚀 Deploy run: eas submit -p ios --non-interactive --path build.ipa diff --git a/.github/workflows/bundle-deploy-eas-update.yml b/.github/workflows/bundle-deploy-eas-update.yml index 1b2fba0b75..7c4fe9d76d 100644 --- a/.github/workflows/bundle-deploy-eas-update.yml +++ b/.github/workflows/bundle-deploy-eas-update.yml @@ -5,7 +5,6 @@ on: push: branches: - main - - hailey/eas-fab workflow_dispatch: inputs: channel: @@ -21,6 +20,7 @@ on: jobs: bundleDeploy: + if: github.repository == 'bluesky-social/social-app' name: Bundle and Deploy EAS Update runs-on: ubuntu-latest concurrency: @@ -101,32 +101,31 @@ jobs: if: ${{ !steps.fingerprint.outputs.includes-changes }} uses: dcarbone/install-jq-action@v2 - - name: ✏️ Write environment variables + # eas.json not used here, set EXPO_PUBLIC_ENV + - name: Env + id: env if: ${{ !steps.fingerprint.outputs.includes-changes }} run: | export json='${{ secrets.GOOGLE_SERVICES_TOKEN }}' echo "${{ secrets.ENV_TOKEN }}" > .env - echo "EXPO_PUBLIC_BUNDLE_IDENTIFIER=$(git rev-parse --short HEAD)" >> .env + echo "EXPO_PUBLIC_ENV=${{ inputs.channel || 'testflight' }}" >> .env + echo "EXPO_PUBLIC_RELEASE_VERSION=$(jq -r '.version' package.json)" >> .env + echo "EXPO_PUBLIC_RELEASE_VERSION=$(jq -r '.version' package.json)" >> $GITHUB_OUTPUT + echo "EXPO_PUBLIC_BUNDLE_IDENTIFIER=$(git rev-parse HEAD)" >> .env + echo "EXPO_PUBLIC_BUNDLE_IDENTIFIER=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT echo "EXPO_PUBLIC_BUNDLE_DATE=$(date -u +"%y%m%d%H")" >> .env - echo "BITDRIFT_API_KEY=${{ secrets.BITDRIFT_API_KEY }}" >> .env + echo "EXPO_PUBLIC_SENTRY_DSN=${{ secrets.SENTRY_DSN }}" >> .env + echo "EXPO_PUBLIC_BITDRIFT_API_KEY=${{ secrets.BITDRIFT_API_KEY }}" >> .env + echo "EXPO_PUBLIC_GCP_PROJECT_ID=${{ secrets.EXPO_PUBLIC_GCP_PROJECT_ID }}" >> .env echo "$json" > google-services.json - - name: Setup Sentry vars for build-time injection - id: sentry - run: | - echo "SENTRY_DIST=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT - echo "SENTRY_RELEASE=$(jq -r '.version' package.json)" >> $GITHUB_OUTPUT - - name: 🏗️ Create Bundle if: ${{ !steps.fingerprint.outputs.includes-changes }} - run: | - SENTRY_DIST=${{ steps.sentry.outputs.SENTRY_DIST }} SENTRY_RELEASE=${{ steps.sentry.outputs.SENTRY_RELEASE }} SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} SENTRY_DSN=${{ secrets.SENTRY_DSN }} EXPO_PUBLIC_ENV="${{ inputs.channel || 'testflight' }}" yarn export-ios - mv ./dist ./ios-dist - sed -i 's/"react-native-mmkv": "\^2\.12\.2"/"react-native-mmkv": "^3.3.0"/' package.json - yarn install - SENTRY_DIST=${{ steps.sentry.outputs.SENTRY_DIST }} SENTRY_RELEASE=${{ steps.sentry.outputs.SENTRY_RELEASE }} SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} SENTRY_DSN=${{ secrets.SENTRY_DSN }} EXPO_PUBLIC_ENV="${{ inputs.channel || 'testflight' }}" yarn export-android - mv ./dist ./android-dist - + run: > + SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} + SENTRY_RELEASE=${{ steps.env.outputs.EXPO_PUBLIC_RELEASE_VERSION }} + SENTRY_DIST=${{ steps.env.outputs.EXPO_PUBLIC_BUNDLE_IDENTIFIER }} + yarn export - name: 📦 Package Bundle and 🚀 Deploy if: ${{ !steps.fingerprint.outputs.includes-changes }} @@ -158,7 +157,7 @@ jobs: needs: [bundleDeploy] # Gotta check if its NOT '[]' because any md5 hash in the outputs is detected as a possible secret and won't be # available here - if: ${{ inputs.channel != 'production' && needs.bundleDeploy.outputs.changes-detected }} + if: ${{ inputs.channel != 'production' && needs.bundleDeploy.outputs.changes-detected && github.repository == 'bluesky-social/social-app' }} steps: - name: Check for EXPO_TOKEN run: > @@ -212,16 +211,30 @@ jobs: - name: 🔤 Compile translations run: yarn intl:build - - name: ✏️ Write environment variables + # EXPO_PUBLIC_ENV is handled in eas.json + - name: Env + id: env run: | echo "${{ secrets.ENV_TOKEN }}" > .env - echo "EXPO_PUBLIC_BUNDLE_IDENTIFIER=$(git rev-parse --short HEAD)" >> .env + echo "EXPO_PUBLIC_RELEASE_VERSION=$(jq -r '.version' package.json)" >> .env + echo "EXPO_PUBLIC_RELEASE_VERSION=$(jq -r '.version' package.json)" >> $GITHUB_OUTPUT + echo "EXPO_PUBLIC_BUNDLE_IDENTIFIER=$(git rev-parse HEAD)" >> .env + echo "EXPO_PUBLIC_BUNDLE_IDENTIFIER=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT echo "EXPO_PUBLIC_BUNDLE_DATE=$(date -u +"%y%m%d%H")" >> .env - echo "BITDRIFT_API_KEY=${{ secrets.BITDRIFT_API_KEY }}" >> .env + echo "EXPO_PUBLIC_SENTRY_DSN=${{ secrets.SENTRY_DSN }}" >> .env + echo "EXPO_PUBLIC_BITDRIFT_API_KEY=${{ secrets.BITDRIFT_API_KEY }}" >> .env + echo "EXPO_PUBLIC_GCP_PROJECT_ID=${{ secrets.EXPO_PUBLIC_GCP_PROJECT_ID }}" >> .env echo "${{ secrets.GOOGLE_SERVICES_TOKEN }}" > google-services.json - name: 🏗️ EAS Build - run: yarn use-build-number-with-bump eas build -p ios --profile testflight --local --output build.ipa --non-interactive + run: > + SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} + SENTRY_RELEASE=${{ steps.env.outputs.EXPO_PUBLIC_RELEASE_VERSION }} + SENTRY_DIST=${{ steps.env.outputs.EXPO_PUBLIC_BUNDLE_IDENTIFIER }} + yarn use-build-number-with-bump + eas build -p ios + --profile testflight + --local --output build.ipa --non-interactive - name: 🚀 Deploy run: eas submit -p ios --non-interactive --path build.ipa @@ -247,7 +260,7 @@ jobs: needs: [bundleDeploy] # Gotta check if its NOT '[]' because any md5 hash in the outputs is detected as a possible secret and won't be # available here - if: ${{ inputs.channel != 'production' && needs.bundleDeploy.outputs.changes-detected }} + if: ${{ inputs.channel != 'production' && needs.bundleDeploy.outputs.changes-detected && github.repository == 'bluesky-social/social-app'}} steps: - name: Check for EXPO_TOKEN @@ -283,27 +296,37 @@ jobs: distribution: 'temurin' java-version: '17' - - name: "Use upgraded MMKV for Fabric" - run: | - sed -i 's/"react-native-mmkv": "\^2\.12\.2"/"react-native-mmkv": "^3.3.0"/' package.json - - name: ⚙️ Install dependencies run: yarn install - name: 🔤 Compile translations run: yarn intl:build - - name: ✏️ Write environment variables + # EXPO_PUBLIC_ENV is handled in eas.json + - name: Env + id: env run: | export json='${{ secrets.GOOGLE_SERVICES_TOKEN }}' echo "${{ secrets.ENV_TOKEN }}" > .env - echo "EXPO_PUBLIC_BUNDLE_IDENTIFIER=$(git rev-parse --short HEAD)" >> .env + echo "EXPO_PUBLIC_RELEASE_VERSION=$(jq -r '.version' package.json)" >> .env + echo "EXPO_PUBLIC_RELEASE_VERSION=$(jq -r '.version' package.json)" >> $GITHUB_OUTPUT + echo "EXPO_PUBLIC_BUNDLE_IDENTIFIER=$(git rev-parse HEAD)" >> .env + echo "EXPO_PUBLIC_BUNDLE_IDENTIFIER=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT echo "EXPO_PUBLIC_BUNDLE_DATE=$(date -u +"%y%m%d%H")" >> .env - echo "BITDRIFT_API_KEY=${{ secrets.BITDRIFT_API_KEY }}" >> .env + echo "EXPO_PUBLIC_SENTRY_DSN=${{ secrets.SENTRY_DSN }}" >> .env + echo "EXPO_PUBLIC_BITDRIFT_API_KEY=${{ secrets.BITDRIFT_API_KEY }}" >> .env + echo "EXPO_PUBLIC_GCP_PROJECT_ID=${{ secrets.EXPO_PUBLIC_GCP_PROJECT_ID }}" >> .env echo "$json" > google-services.json - name: 🏗️ EAS Build - run: yarn use-build-number-with-bump eas build -p android --profile testflight-android --local --output build.apk --non-interactive + run: > + SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} + SENTRY_RELEASE=${{ steps.env.outputs.EXPO_PUBLIC_RELEASE_VERSION }} + SENTRY_DIST=${{ steps.env.outputs.EXPO_PUBLIC_BUNDLE_IDENTIFIER }} + yarn use-build-number-with-bump + eas build -p android + --profile testflight-android + --local --output build.apk --non-interactive - name: ⏰ Get a timestamp id: timestamp diff --git a/.github/workflows/pull-request-comment.yml b/.github/workflows/pull-request-comment.yml new file mode 100644 index 0000000000..7898bb9630 --- /dev/null +++ b/.github/workflows/pull-request-comment.yml @@ -0,0 +1,207 @@ +--- +name: PR Comment Trigger + +on: + issue_comment: + types: [created] + +# Permissiosn to make comments in the pull request +permissions: + pull-requests: write + actions: write + contents: read + +jobs: + handle-comment: + if: github.event.issue.pull_request + runs-on: ubuntu-latest + outputs: + should-deploy: ${{ steps.check-org.outputs.result }} + + steps: + - name: Check if bot is mentioned + id: check-mention + env: + COMMENT: ${{ github.event.comment.body }} + run: | + if [[ "$COMMENT" == *"@github-actions"* ]] || \ + [[ "$COMMENT" == *"github-actions[bot]"* ]]; then + bot_mentioned=true + else + bot_mentioned=false + fi + + + if [[ "${{ github.event.comment.body }}" == *"ota"* ]]; then + has_ota=true + else + has_ota=false + fi + + + if [[ "$bot_mentioned" == "true" ]] && [[ "$has_ota" == "true" ]]; then + echo "mentioned=true" >> $GITHUB_OUTPUT + else + echo "mentioned=false" >> $GITHUB_OUTPUT + fi + + - name: Check organization membership + if: steps.check-mention.outputs.mentioned == 'true' + id: check-org + uses: actions/github-script@v7 + with: + script: | + try { + const { data: perm } = await github.rest.repos.getCollaboratorPermissionLevel({ + owner: context.repo.owner, + repo: context.repo.repo, + username: context.payload.comment.user.login + }); + + const hasAccess = ['admin', 'write'].includes(perm.permission); + console.log(`User has ${perm.permission} access`); + + return hasAccess; + } catch(error) { + console.log('User has no repository access'); + return false; + } + + bundle-deploy: + name: Bundle and Deploy EAS Update + runs-on: ubuntu-latest + needs: [handle-comment] + if: needs.handle-comment.outputs.should-deploy == 'true' + + steps: + - name: Get PR HEAD SHA + id: pr-info + uses: actions/github-script@v7 + with: + script: | + const pr = await github.rest.pulls.get({ + owner: context.repo.owner, + repo: context.repo.repo, + pull_number: ${{ github.event.issue.number }} + }); + + console.log(`PR HEAD SHA: ${pr.data.head.sha}`); + console.log(`PR HEAD REF: ${pr.data.head.ref}`); + + core.setOutput('head-sha', pr.data.head.sha); + core.setOutput('head-ref', pr.data.head.ref); + + - name: 💬 Drop a comment + uses: marocchino/sticky-pull-request-comment@v2 + with: + header: pull-request-eas-build-${{ steps.pr-info.outputs.head-sha }} + number: ${{ github.event.issue.number }} + message: | + An OTA deployment has been requested and is now running for `${{ steps.pr-info.outputs.head-sha }}`. + + [Here is some music to listen to while you wait...](https://www.youtube.com/watch?v=VBlFHuCzPgY) + --- + *Generated by [PR labeler](https://github.com/expo/expo/actions/workflows/pr-labeler.yml) 🤖* + + - 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 + with: + ref: ${{ steps.pr-info.outputs.head-sha }} + + - name: 🔧 Setup Node + uses: actions/setup-node@v4 + with: + node-version-file: .nvmrc + cache: yarn + + - name: Install dependencies + run: yarn install --frozen-lockfile + + - name: Lint check + run: yarn lint + + - name: Lint lockfile + run: yarn lockfile-lint + + - name: 🔤 Compile translations + run: yarn intl:build 2>&1 | tee i18n.log + + - name: Check for i18n compilation errors + run: if grep -q "invalid syntax" "i18n.log"; then echo "\n\nFound compilation errors!\n\n" && exit 1; else echo "\n\nNo compilation errors!\n\n"; fi + + - name: Type check + run: yarn typecheck + + - name: 🔨 Setup EAS + uses: expo/expo-github-action@v8 + with: + expo-version: latest + eas-version: latest + token: ${{ secrets.EXPO_TOKEN }} + + - name: ⛏️ Setup Expo + run: yarn global add eas-cli-local-build-plugin + + - name: 🪛 Setup jq + uses: dcarbone/install-jq-action@v2 + + - name: Env + id: env + run: | + export json='${{ secrets.GOOGLE_SERVICES_TOKEN }}' + echo "${{ secrets.ENV_TOKEN }}" > .env + echo "EXPO_PUBLIC_ENV=testflight" >> .env + echo "EXPO_PUBLIC_RELEASE_VERSION=$(jq -r '.version' package.json)" >> .env + echo "EXPO_PUBLIC_RELEASE_VERSION=$(jq -r '.version' package.json)" >> $GITHUB_OUTPUT + echo "EXPO_PUBLIC_BUNDLE_IDENTIFIER=$(git rev-parse HEAD)" >> .env + echo "EXPO_PUBLIC_BUNDLE_IDENTIFIER=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT + echo "EXPO_PUBLIC_BUNDLE_DATE=$(date -u +"%y%m%d%H")" >> .env + echo "EXPO_PUBLIC_SENTRY_DSN=${{ secrets.SENTRY_DSN }}" >> .env + echo "EXPO_PUBLIC_BITDRIFT_API_KEY=${{ secrets.BITDRIFT_API_KEY }}" >> .env + echo "EXPO_PUBLIC_GCP_PROJECT_ID=${{ secrets.EXPO_PUBLIC_GCP_PROJECT_ID }}" >> .env + echo "$json" > google-services.json + + - name: 🏗️ Create Bundle + run: > + SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} + SENTRY_RELEASE=${{ steps.env.outputs.EXPO_PUBLIC_RELEASE_VERSION }} + SENTRY_DIST=${{ steps.env.outputs.EXPO_PUBLIC_BUNDLE_IDENTIFIER }} + yarn export + + - name: 📦 Package Bundle and 🚀 Deploy + run: yarn use-build-number bash scripts/bundleUpdate.sh + env: + DENIS_API_KEY: ${{ secrets.DENIS_API_KEY }} + CHANNEL_NAME: pull-request-${{ github.event.issue.number }} + RUNTIME_VERSION: + + - name: 💬 Drop a comment + uses: marocchino/sticky-pull-request-comment@v2 + with: + header: pull-request-eas-build-${{ steps.pr-info.outputs.head-sha }} + number: ${{ github.event.issue.number }} + message: | + Your requested OTA deployment was successful! You may now apply it by opening the deep link below in your browser: + + `bluesky://intent/apply-ota?channel=pull-request-${{ github.event.issue.number }}` + --- + *Generated by [PR labeler](https://github.com/expo/expo/actions/workflows/pr-labeler.yml) 🤖* + + + - name: 💬 Drop a comment + uses: marocchino/sticky-pull-request-comment@v2 + if: failure() + with: + header: pull-request-eas-build-${{ steps.pr-info.outputs.head-sha }} + number: ${{ github.event.issue.number }} + message: | + Your requested OTA deployment was unsuccessful. See action logs for more details. + --- + *Generated by [PR labeler](https://github.com/expo/expo/actions/workflows/pr-labeler.yml) 🤖* diff --git a/.github/workflows/pull-request-commit.yml b/.github/workflows/pull-request-commit.yml index 53e3cc9983..8c48b54db0 100644 --- a/.github/workflows/pull-request-commit.yml +++ b/.github/workflows/pull-request-commit.yml @@ -50,6 +50,7 @@ jobs: git config --global user.name "github-actions[bot]" git merge --no-edit ${{ github.head_ref }} yarn install + yarn intl:build - name: 🔦 Generate stats file for PR run: | @@ -73,6 +74,7 @@ jobs: if: ${{ !steps.get-base-stats.outputs.cache-hit }} run: | yarn install + yarn intl:build yarn generate-webpack-stats-file mv stats.json stats-base.json @@ -143,4 +145,3 @@ jobs: with: header: fingerprint-diff delete: true - diff --git a/.github/workflows/sync-internal.yaml b/.github/workflows/sync-internal.yaml new file mode 100644 index 0000000000..b50d6bc512 --- /dev/null +++ b/.github/workflows/sync-internal.yaml @@ -0,0 +1,31 @@ +name: Sync to internal repo + +on: + push: + branches: [main] + +jobs: + sync: + runs-on: ubuntu-latest + if: github.repository == 'bluesky-social/social-app' + steps: + - name: Checkout public repo + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Generate GitHub App Token + id: app-token + uses: actions/create-github-app-token@v1 + with: + app-id: ${{ vars.SYNC_INTERNAL_APP_ID }} + private-key: ${{ secrets.SYNC_INTERNAL_PK }} + repositories: social-app-internal + - name: Push to internal repo + env: + TOKEN: ${{ steps.app-token.outputs.token }} + run: | + git config user.name "github-actions" + git config user.email "test@users.noreply.github.com" + git config --unset-all http.https://github.com/.extraheader + git remote add internal https://x-access-token:${TOKEN}@github.com/bluesky-social/social-app-internal.git + git push internal main --force diff --git a/Dockerfile b/Dockerfile index 50dc28b4b3..93b17a86b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23-bullseye AS build-env +FROM golang:1.24.5-bullseye AS build-env WORKDIR /usr/src/social-app @@ -19,28 +19,28 @@ ENV GOARCH="amd64" ENV CGO_ENABLED=1 ENV GOEXPERIMENT="loopvar" +# The latest git hash of the preview branch on render.com +# https://render.com/docs/docker-secrets#environment-variables-in-docker-builds +ARG RENDER_GIT_COMMIT + # # Expo # +ARG EXPO_PUBLIC_ENV +ENV EXPO_PUBLIC_ENV=${EXPO_PUBLIC_ENV:-development} +ARG EXPO_PUBLIC_RELEASE_VERSION +ENV EXPO_PUBLIC_RELEASE_VERSION=$EXPO_PUBLIC_RELEASE_VERSION ARG EXPO_PUBLIC_BUNDLE_IDENTIFIER -ENV EXPO_PUBLIC_BUNDLE_IDENTIFIER=${EXPO_PUBLIC_BUNDLE_IDENTIFIER:-dev} - -# The latest git hash of the preview branch on render.com -ARG RENDER_GIT_COMMIT +# If not set by GitHub workflows, we're probably in Render +ENV EXPO_PUBLIC_BUNDLE_IDENTIFIER=${EXPO_PUBLIC_BUNDLE_IDENTIFIER:-$RENDER_GIT_COMMIT} # # Sentry # ARG SENTRY_AUTH_TOKEN ENV SENTRY_AUTH_TOKEN=${SENTRY_AUTH_TOKEN:-unknown} -# Will fall back to package.json#version, but this is handled elsewhere -ARG SENTRY_RELEASE -ENV SENTRY_RELEASE=$SENTRY_RELEASE -ARG SENTRY_DIST -# Default to RENDER_GIT_COMMIT if not set by GitHub workflows -ENV SENTRY_DIST=${SENTRY_DIST:-$RENDER_GIT_COMMIT} -ARG SENTRY_DSN -ENV SENTRY_DSN=$SENTRY_DSN +ARG EXPO_PUBLIC_SENTRY_DSN +ENV EXPO_PUBLIC_SENTRY_DSN=$EXPO_PUBLIC_SENTRY_DSN # # Copy everything into the container @@ -60,13 +60,16 @@ RUN \. "$NVM_DIR/nvm.sh" && \ nvm install $NODE_VERSION && \ nvm use $NODE_VERSION && \ echo "Using bundle identifier: $EXPO_PUBLIC_BUNDLE_IDENTIFIER" && \ + echo "EXPO_PUBLIC_ENV=$EXPO_PUBLIC_ENV" >> .env && \ + echo "EXPO_PUBLIC_RELEASE_VERSION=$EXPO_PUBLIC_RELEASE_VERSION" >> .env && \ echo "EXPO_PUBLIC_BUNDLE_IDENTIFIER=$EXPO_PUBLIC_BUNDLE_IDENTIFIER" >> .env && \ echo "EXPO_PUBLIC_BUNDLE_DATE=$(date -u +"%y%m%d%H")" >> .env && \ + echo "EXPO_PUBLIC_SENTRY_DSN=$EXPO_PUBLIC_SENTRY_DSN" >> .env && \ npm install --global yarn && \ yarn && \ yarn intl:build 2>&1 | tee i18n.log && \ if grep -q "invalid syntax" "i18n.log"; then echo "\n\nFound compilation errors!\n\n" && exit 1; else echo "\n\nNo compile errors!\n\n"; fi && \ - EXPO_PUBLIC_BUNDLE_IDENTIFIER=$EXPO_PUBLIC_BUNDLE_IDENTIFIER EXPO_PUBLIC_BUNDLE_DATE=$() SENTRY_AUTH_TOKEN=$SENTRY_AUTH_TOKEN SENTRY_RELEASE=$SENTRY_RELEASE SENTRY_DIST=$SENTRY_DIST SENTRY_DSN=$SENTRY_DSN yarn build-web + SENTRY_AUTH_TOKEN=$SENTRY_AUTH_TOKEN SENTRY_RELEASE=$EXPO_PUBLIC_RELEASE_VERSION SENTRY_DIST=$EXPO_PUBLIC_BUNDLE_IDENTIFIER yarn build-web # DEBUG RUN find ./bskyweb/static && find ./web-build/static diff --git a/Dockerfile.embedr b/Dockerfile.embedr index 46719dc438..7fa8b9ae53 100644 --- a/Dockerfile.embedr +++ b/Dockerfile.embedr @@ -1,4 +1,4 @@ -FROM golang:1.23-bullseye AS build-env +FROM golang:1.24.5-bullseye AS build-env WORKDIR /usr/src/social-app diff --git a/README.md b/README.md index f86d52b530..eed6ac4fec 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Get the app itself: ## Development Resources -This is a [React Native](https://reactnative.dev/) application, written in the TypeScript programming language. It builds on the `atproto` TypeScript packages (like [`@atproto/api`](https://www.npmjs.com/package/@atproto/api)), code for which is also open source, but in [a different git repository](https://github.com/bluesky-social/atproto). +This is a [React Native](https://reactnative.dev/) application, written in the TypeScript programming language. It builds on the `atproto` TypeScript packages (like [`@atproto/api`](https://www.npmjs.com/package/@atproto/api)), which are also open source, but in [a different git repository](https://github.com/bluesky-social/atproto). There is a small amount of Go language source code (in `./bskyweb/`), for a web service that returns the React Native Web application. @@ -19,7 +19,7 @@ The [Build Instructions](./docs/build.md) are a good place to get started with t The Authenticated Transfer Protocol ("AT Protocol" or "atproto") is a decentralized social media protocol. You don't *need* to understand AT Protocol to work with this application, but it can help. Learn more at: - [Overview and Guides](https://atproto.com/guides/overview) -- [Github Discussions](https://github.com/bluesky-social/atproto/discussions) 👈 Great place to ask questions +- [GitHub Discussions](https://github.com/bluesky-social/atproto/discussions) 👈 Great place to ask questions - [Protocol Specifications](https://atproto.com/specs/atp) - [Blogpost on self-authenticating data structures](https://bsky.social/about/blog/3-6-2022-a-self-authenticating-social-protocol) @@ -27,6 +27,7 @@ The Bluesky Social application encompasses a set of schemas and APIs built in th ## Contributions +> [!NOTE] > While we do accept contributions, we prioritize high quality issues and pull requests. Adhering to the below guidelines will ensure a more timely review. **Rules:** @@ -59,7 +60,7 @@ Please be sure to: ## Security disclosures -If you discover any security issues, please send an email to security@bsky.app. The email is automatically CCed to the entire team and we'll respond promptly. +If you discover any security issues, please send an email to security@bsky.app. The email is automatically CC'd to the entire team and we'll respond promptly. ## Are you a developer interested in building on atproto? diff --git a/__e2e__/flows/create-account.yml b/__e2e__/flows/create-account.yml index 781f537826..4d49e9b6a8 100644 --- a/__e2e__/flows/create-account.yml +++ b/__e2e__/flows/create-account.yml @@ -28,7 +28,9 @@ appId: xyz.blueskyweb.app - hideKeyboard - tapOn: id: "nextBtn" -- tapOn: "Not now" +- tapOn: + text: "Not Now" + optional: true - inputText: "e2e-test" - tapOn: id: "nextBtn" diff --git a/__e2e__/flows/curate-lists.yml b/__e2e__/flows/curate-lists.yml index ceadb80e4f..fdb71ae7eb 100644 --- a/__e2e__/flows/curate-lists.yml +++ b/__e2e__/flows/curate-lists.yml @@ -135,7 +135,7 @@ appId: xyz.blueskyweb.app id: "e2eGotoLists" - tapOn: "Good Ppl" -# - tapOn: "People" +- tapOn: "People" - assertVisible: "View Bob's profile" - tapOn: point: "90%,43%" diff --git a/__e2e__/flows/login.yml b/__e2e__/flows/login.yml index 34fe634c56..5ca40224c5 100644 --- a/__e2e__/flows/login.yml +++ b/__e2e__/flows/login.yml @@ -23,5 +23,7 @@ appId: xyz.blueskyweb.app id: "loginPasswordInput" - inputText: "hunter2" - pressKey: Enter -- tapOn: "Not now" +- tapOn: + text: "Not Now" + optional: true - assertVisible: "Following" diff --git a/__e2e__/flows/profile-screen.yml b/__e2e__/flows/profile-screen.yml index e60bfa371b..858448b445 100644 --- a/__e2e__/flows/profile-screen.yml +++ b/__e2e__/flows/profile-screen.yml @@ -25,6 +25,8 @@ appId: xyz.blueskyweb.app # Can follow/unfollow another user - tapOn: id: "followBtn" +- tapOn: + point: 65%,35% # dismiss the subscribe prompt - tapOn: id: "unfollowBtn" diff --git a/__e2e__/flows/report-dialog/post:default.yml b/__e2e__/flows/report-dialog/post.default.yml similarity index 100% rename from __e2e__/flows/report-dialog/post:default.yml rename to __e2e__/flows/report-dialog/post.default.yml diff --git a/__e2e__/flows/report-dialog/post:edit-reason.yml b/__e2e__/flows/report-dialog/post.edit-reason.yml similarity index 100% rename from __e2e__/flows/report-dialog/post:edit-reason.yml rename to __e2e__/flows/report-dialog/post.edit-reason.yml diff --git a/__e2e__/flows/report-dialog/post:reason-other.yml b/__e2e__/flows/report-dialog/post.reason-other.yml similarity index 100% rename from __e2e__/flows/report-dialog/post:reason-other.yml rename to __e2e__/flows/report-dialog/post.reason-other.yml diff --git a/__mocks__/@gorhom/bottom-sheet.tsx b/__mocks__/@gorhom/bottom-sheet.tsx index dae0d65510..87bbe7d3a8 100644 --- a/__mocks__/@gorhom/bottom-sheet.tsx +++ b/__mocks__/@gorhom/bottom-sheet.tsx @@ -1,7 +1,8 @@ -import React, {ReactNode} from 'react' -import {View, ScrollView, Modal, FlatList, TextInput} from 'react-native' +import React, {type ReactNode} from 'react' +import {FlatList, Modal, ScrollView, TextInput, View} from 'react-native' const BottomSheetModalContext = React.createContext(null) +BottomSheetModalContext.displayName = 'BottomSheetModalContext' const BottomSheetModalProvider = (props: any) => { return @@ -47,13 +48,13 @@ export {useBottomSheetInternal} export {useBottomSheetDynamicSnapPoints} export { - BottomSheetModalProvider, BottomSheetBackdrop, + BottomSheetFlatList, + BottomSheetFooter, BottomSheetHandle, BottomSheetModal, - BottomSheetFooter, + BottomSheetModalProvider, BottomSheetScrollView, - BottomSheetFlatList, BottomSheetTextInput, } diff --git a/__tests__/lib/string.test.ts b/__tests__/lib/string.test.ts index b018da2361..0f53d386a3 100644 --- a/__tests__/lib/string.test.ts +++ b/__tests__/lib/string.test.ts @@ -6,6 +6,7 @@ import { createStarterPackLinkFromAndroidReferrer, parseStarterPackUri, } from '#/lib/strings/starter-pack' +import {tenorUrlToBskyGifUrl} from '#/state/queries/tenor' import {cleanError} from '../../src/lib/strings/errors' import {createFullHandle, makeValidHandle} from '../../src/lib/strings/handles' import {enforceLen} from '../../src/lib/strings/helpers' @@ -997,3 +998,18 @@ describe('createStarterPackGooglePlayUri', () => { expect(createStarterPackGooglePlayUri(undefined, 'rkey')).toEqual(null) }) }) + +describe('tenorUrlToBskyGifUrl', () => { + const inputs = [ + 'https://media.tenor.com/someID_AAAAC/someName.gif', + 'https://media.tenor.com/someID/someName.gif', + ] + + it.each(inputs)( + 'returns url with t.gifs.bsky.app as hostname for input url', + input => { + const out = tenorUrlToBskyGifUrl(input) + expect(out.startsWith('https://t.gifs.bsky.app/')).toEqual(true) + }, + ) +}) diff --git a/__tests__/lib/strings/handles.test.ts b/__tests__/lib/strings/handles.test.ts index 4456fae946..f3b289afdf 100644 --- a/__tests__/lib/strings/handles.test.ts +++ b/__tests__/lib/strings/handles.test.ts @@ -1,4 +1,4 @@ -import {IsValidHandle, validateServiceHandle} from '#/lib/strings/handles' +import {type IsValidHandle, validateServiceHandle} from '#/lib/strings/handles' describe('handle validation', () => { const valid = [ @@ -18,17 +18,17 @@ describe('handle validation', () => { }) const invalid = [ - ['al', 'bsky.social', 'frontLength'], + ['al', 'bsky.social', 'frontLengthNotTooShort'], ['-alice', 'bsky.social', 'hyphenStartOrEnd'], ['alice-', 'bsky.social', 'hyphenStartOrEnd'], ['%%%', 'bsky.social', 'handleChars'], - ['1234567890123456789', 'bsky.social', 'frontLength'], + ['1234567890123456789', 'bsky.social', 'frontLengthNotTooLong'], [ '1234567890123456789', 'my-custom-pds-with-long-name.social', - 'frontLength', + 'frontLengthNotTooLong', ], - ['al', 'my-custom-pds-with-long-name.social', 'frontLength'], + ['al', 'my-custom-pds-with-long-name.social', 'frontLengthNotTooShort'], ['a'.repeat(300), 'toolong.com', 'totalLength'], ] satisfies [string, string, keyof IsValidHandle][] it.each(invalid)( diff --git a/__tests__/lib/strings/mention-manip.test.ts b/__tests__/lib/strings/mention-manip.test.ts index f9075763e5..ece69e195e 100644 --- a/__tests__/lib/strings/mention-manip.test.ts +++ b/__tests__/lib/strings/mention-manip.test.ts @@ -32,6 +32,7 @@ describe('getMentionAt', () => { ['@alice hello', 7, undefined], ['alice@alice', 0, undefined], ['alice@alice', 6, undefined], + ['hello @alice-com goodbye', 8, 'alice-com'], ] it.each(cases)( @@ -72,6 +73,7 @@ describe('insertMentionAt', () => { ['@alice hello', 7, '@alice hello'], ['alice@alice', 0, 'alice@alice'], ['alice@alice', 6, 'alice@alice'], + ['hello @alice-com goodbye', 10, 'hello @alice.com goodbye'], ] it.each(cases)( diff --git a/app.config.js b/app.config.js index 36af084158..b30cdf0fea 100644 --- a/app.config.js +++ b/app.config.js @@ -26,12 +26,7 @@ module.exports = function (_config) { ...(IS_DEV || IS_TESTFLIGHT ? [] : []), ] - const UPDATES_CHANNEL = IS_TESTFLIGHT - ? 'testflight' - : IS_PRODUCTION - ? 'production' - : undefined - const UPDATES_ENABLED = !!UPDATES_CHANNEL + const UPDATES_ENABLED = IS_TESTFLIGHT || IS_PRODUCTION const USE_SENTRY = Boolean(process.env.SENTRY_AUTH_TOKEN) @@ -190,7 +185,6 @@ module.exports = function (_config) { } : undefined, checkAutomatically: 'NEVER', - channel: UPDATES_CHANNEL, }, plugins: [ 'expo-video', @@ -219,7 +213,7 @@ module.exports = function (_config) { compileSdkVersion: 35, targetSdkVersion: 35, buildToolsVersion: '35.0.0', - newArchEnabled: true, + newArchEnabled: false, }, }, ], @@ -240,8 +234,9 @@ module.exports = function (_config) { ], './plugins/starterPackAppClipExtension/withStarterPackAppClip.js', './plugins/withGradleJVMHeapSizeIncrease.js', - './plugins/withAndroidManifestPlugin.js', + './plugins/withAndroidManifestLargeHeapPlugin.js', './plugins/withAndroidManifestFCMIconPlugin.js', + './plugins/withAndroidManifestIntentQueriesPlugin.js', './plugins/withAndroidStylesAccentColorPlugin.js', './plugins/withAndroidDayNightThemePlugin.js', './plugins/withAndroidNoJitpackPlugin.js', @@ -256,10 +251,12 @@ module.exports = function (_config) { // Android only './assets/fonts/inter/Inter-Regular.otf', './assets/fonts/inter/Inter-Italic.otf', + './assets/fonts/inter/Inter-Medium.otf', + './assets/fonts/inter/Inter-MediumItalic.otf', './assets/fonts/inter/Inter-SemiBold.otf', './assets/fonts/inter/Inter-SemiBoldItalic.otf', - './assets/fonts/inter/Inter-ExtraBold.otf', - './assets/fonts/inter/Inter-ExtraBoldItalic.otf', + './assets/fonts/inter/Inter-Bold.otf', + './assets/fonts/inter/Inter-BoldItalic.otf', ], }, ], diff --git a/assets/icons/arrowCornerDownRight_stroke2_rounded_2_rounded.svg b/assets/icons/arrowCornerDownRight_stroke2_rounded_2_rounded.svg new file mode 100644 index 0000000000..fa21c9824e --- /dev/null +++ b/assets/icons/arrowCornerDownRight_stroke2_rounded_2_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/bellPlus_stroke2_corner0_rounded.svg b/assets/icons/bellPlus_stroke2_corner0_rounded.svg new file mode 100644 index 0000000000..7e3349427a --- /dev/null +++ b/assets/icons/bellPlus_stroke2_corner0_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/bellRinging_filled_corner0_rounded.svg b/assets/icons/bellRinging_filled_corner0_rounded.svg new file mode 100644 index 0000000000..67be5d99d3 --- /dev/null +++ b/assets/icons/bellRinging_filled_corner0_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/circle_stroke2_corner0_rounded.svg b/assets/icons/circle_stroke2_corner0_rounded.svg new file mode 100644 index 0000000000..98fe755b09 --- /dev/null +++ b/assets/icons/circle_stroke2_corner0_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/images/activity_notifications_announcement.webp b/assets/images/activity_notifications_announcement.webp new file mode 100644 index 0000000000..885d1b7d1f Binary files /dev/null and b/assets/images/activity_notifications_announcement.webp differ diff --git a/bskyembed/src/components/post.tsx b/bskyembed/src/components/post.tsx index 68292f5156..6ecac57965 100644 --- a/bskyembed/src/components/post.tsx +++ b/bskyembed/src/components/post.tsx @@ -160,7 +160,7 @@ function PostContent({record}: {record: AppBskyFeedPost.Record | null}) { richText.push( {segment.text} , diff --git a/bskyembed/tailwind.config.cjs b/bskyembed/tailwind.config.cjs index 0e9f5b8eaa..adbeadd4c3 100644 --- a/bskyembed/tailwind.config.cjs +++ b/bskyembed/tailwind.config.cjs @@ -1,9 +1,7 @@ /** @type {import('tailwindcss').Config} */ module.exports = { content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], - darkMode: ['variant', [ - '&:is(.dark *):not(:is(.dark .light *))', - ]], + darkMode: ['variant', ['&:is(.dark *):not(:is(.dark .light *))']], theme: { extend: { colors: { diff --git a/bskyembed/tsconfig.snippet.json b/bskyembed/tsconfig.snippet.json index fee21964a1..163db7d30d 100644 --- a/bskyembed/tsconfig.snippet.json +++ b/bskyembed/tsconfig.snippet.json @@ -1,4 +1,3 @@ - { "compilerOptions": { "target": "ES5", diff --git a/bskyogcard/src/index.ts b/bskyogcard/src/index.ts index ef8d48494d..139af01f73 100644 --- a/bskyogcard/src/index.ts +++ b/bskyogcard/src/index.ts @@ -1,10 +1,10 @@ import events from 'node:events' -import http from 'node:http' +import type http from 'node:http' import express from 'express' -import {createHttpTerminator, HttpTerminator} from 'http-terminator' +import {createHttpTerminator, type HttpTerminator} from 'http-terminator' -import {Config} from './config.js' +import {type Config} from './config.js' import {AppContext} from './context.js' import {default as routes, errorHandler} from './routes/index.js' @@ -15,7 +15,10 @@ export class CardService { public server?: http.Server private terminator?: HttpTerminator - constructor(public app: express.Application, public ctx: AppContext) {} + constructor( + public app: express.Application, + public ctx: AppContext, + ) {} static async create(cfg: Config): Promise { let app = express() diff --git a/bskyweb/cmd/bskyweb/server.go b/bskyweb/cmd/bskyweb/server.go index ef796920d6..4208eea2d8 100644 --- a/bskyweb/cmd/bskyweb/server.go +++ b/bskyweb/cmd/bskyweb/server.go @@ -258,6 +258,7 @@ func serve(cctx *cli.Context) error { e.GET("/feeds", server.WebGeneric) e.GET("/notifications", server.WebGeneric) e.GET("/notifications/settings", server.WebGeneric) + e.GET("/notifications/activity", server.WebGeneric) e.GET("/lists", server.WebGeneric) e.GET("/moderation", server.WebGeneric) e.GET("/moderation/modlists", server.WebGeneric) @@ -275,6 +276,7 @@ func serve(cctx *cli.Context) error { e.GET("/settings/appearance", server.WebGeneric) e.GET("/settings/account", server.WebGeneric) e.GET("/settings/privacy-and-security", server.WebGeneric) + e.GET("/settings/privacy-and-security/activity", server.WebGeneric) e.GET("/settings/content-and-media", server.WebGeneric) e.GET("/settings/interests", server.WebGeneric) e.GET("/settings/about", server.WebGeneric) @@ -300,6 +302,7 @@ func serve(cctx *cli.Context) error { e.GET("/support/copyright", server.WebGeneric) e.GET("/intent/compose", server.WebGeneric) e.GET("/intent/verify-email", server.WebGeneric) + e.GET("/intent/age-assurance", server.WebGeneric) e.GET("/messages", server.WebGeneric) e.GET("/messages/:conversation", server.WebGeneric) @@ -601,9 +604,12 @@ type IPCCRequest struct { IP string `json:"ip"` } type IPCCResponse struct { - CC string `json:"countryCode"` + CC string `json:"countryCode"` + AgeRestrictedGeo bool `json:"isAgeRestrictedGeo,omitempty"` } +// IP address data is powered by IPinfo +// https://ipinfo.io func (srv *Server) WebIpCC(c echo.Context) error { realIP := c.RealIP() addr, err := netip.ParseAddr(realIP) diff --git a/bskyweb/cmd/embedr/main.go b/bskyweb/cmd/embedr/main.go index 9f75ed69af..4a6be142be 100644 --- a/bskyweb/cmd/embedr/main.go +++ b/bskyweb/cmd/embedr/main.go @@ -46,6 +46,13 @@ func run(args []string) { Value: ":8100", EnvVars: []string{"HTTP_ADDRESS"}, }, + &cli.StringFlag{ + Name: "metrics-address", + Usage: "Specify the local IP/port to bind the metrics server to", + Required: false, + Value: ":9090", + EnvVars: []string{"METRICS_HTTP_ADDRESS"}, + }, &cli.BoolFlag{ Name: "debug", Usage: "Enable debug mode", diff --git a/bskyweb/cmd/embedr/server.go b/bskyweb/cmd/embedr/server.go index a9a8ab57f9..62427e70e7 100644 --- a/bskyweb/cmd/embedr/server.go +++ b/bskyweb/cmd/embedr/server.go @@ -13,29 +13,36 @@ import ( "syscall" "time" + _ "net/http/pprof" + "github.com/bluesky-social/indigo/atproto/identity" "github.com/bluesky-social/indigo/util/cliutil" "github.com/bluesky-social/indigo/xrpc" "github.com/bluesky-social/social-app/bskyweb" + "github.com/prometheus/client_golang/prometheus/promhttp" + + "github.com/labstack/echo-contrib/echoprometheus" + "github.com/labstack/echo/v4" + "github.com/labstack/echo/v4/middleware" "github.com/klauspost/compress/gzhttp" "github.com/klauspost/compress/gzip" - "github.com/labstack/echo/v4" - "github.com/labstack/echo/v4/middleware" "github.com/urfave/cli/v2" ) type Server struct { - echo *echo.Echo - httpd *http.Server - xrpcc *xrpc.Client - dir identity.Directory + echo *echo.Echo + httpd *http.Server + metricsHttpd *http.Server + xrpcc *xrpc.Client + dir identity.Directory } func serve(cctx *cli.Context) error { debug := cctx.Bool("debug") httpAddress := cctx.String("http-address") appviewHost := cctx.String("appview-host") + metricsAddress := cctx.String("metrics-address") // Echo e := echo.New() @@ -65,13 +72,28 @@ func serve(cctx *cli.Context) error { return err } + metricsMux := http.DefaultServeMux + metricsMux.Handle("/metrics", promhttp.Handler()) + + metricsHttpd := &http.Server{ + Addr: metricsAddress, + Handler: metricsMux, + } + + go func() { + if err := metricsHttpd.ListenAndServe(); err != nil && !errors.Is(err, http.ErrServerClosed) { + log.Error("failed to start metrics server", "error", err) + } + }() + // // server // server := &Server{ - echo: e, - xrpcc: xrpcc, - dir: identity.DefaultDirectory(), + echo: e, + xrpcc: xrpcc, + dir: identity.DefaultDirectory(), + metricsHttpd: metricsHttpd, } // Create the HTTP server. @@ -132,6 +154,14 @@ func serve(cctx *cli.Context) error { RedirectCode: http.StatusFound, })) + echoprom := echoprometheus.NewMiddlewareWithConfig( + echoprometheus.MiddlewareConfig{ + DoNotUseRequestPathFor404: true, + }, + ) + + e.Use(echoprom) + // // configure routes // @@ -220,6 +250,11 @@ func (srv *Server) Shutdown() error { ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second) defer cancel() + // Shutdown metrics server too + if srv.metricsHttpd != nil { + srv.metricsHttpd.Shutdown(ctx) + } + return srv.httpd.Shutdown(ctx) } diff --git a/bskyweb/go.mod b/bskyweb/go.mod index 630d5d256b..407ba7d55d 100644 --- a/bskyweb/go.mod +++ b/bskyweb/go.mod @@ -1,24 +1,26 @@ module github.com/bluesky-social/social-app/bskyweb -go 1.23 - -toolchain go1.23.4 +go 1.24.5 require ( - github.com/bluesky-social/indigo v0.0.0-20250605010711-db9bb60025dc + github.com/bluesky-social/indigo v0.0.0-20250729223159-573ae927246a github.com/flosch/pongo2/v6 v6.0.0 github.com/ipfs/go-log v1.0.5 github.com/joho/godotenv v1.5.1 - github.com/klauspost/compress v1.17.3 - github.com/labstack/echo/v4 v4.11.3 + github.com/klauspost/compress v1.18.0 + github.com/labstack/echo-contrib v0.17.4 + github.com/labstack/echo/v4 v4.13.4 + github.com/prometheus/client_golang v1.22.0 github.com/urfave/cli/v2 v2.25.7 ) +require github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect + require ( github.com/beorn7/perks v1.0.1 // indirect github.com/bradfitz/gomemcache v0.0.0-20230905024940-24af94b03874 // indirect github.com/carlmjohnson/versioninfo v0.22.5 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect @@ -26,7 +28,6 @@ require ( github.com/go-logr/stdr v1.2.2 // indirect github.com/goccy/go-json v0.10.2 // indirect github.com/gogo/protobuf v1.3.2 // indirect - github.com/golang-jwt/jwt v3.2.2+incompatible // indirect github.com/google/uuid v1.4.0 // indirect github.com/hashicorp/go-cleanhttp v0.5.2 // indirect github.com/hashicorp/go-retryablehttp v0.7.5 // indirect @@ -52,17 +53,16 @@ require ( github.com/jinzhu/inflection v1.0.0 // indirect github.com/jinzhu/now v1.1.5 // indirect github.com/klauspost/cpuid/v2 v2.2.7 // indirect - github.com/labstack/gommon v0.4.1 // indirect + github.com/labstack/gommon v0.4.2 // indirect github.com/lestrrat-go/blackmagic v1.0.1 // indirect github.com/lestrrat-go/httpcc v1.0.1 // indirect github.com/lestrrat-go/httprc v1.0.4 // indirect github.com/lestrrat-go/iter v1.0.2 // indirect github.com/lestrrat-go/jwx/v2 v2.0.12 // indirect github.com/lestrrat-go/option v1.0.1 // indirect - github.com/mattn/go-colorable v0.1.13 // indirect + github.com/mattn/go-colorable v0.1.14 // indirect github.com/mattn/go-isatty v0.0.20 // indirect github.com/mattn/go-sqlite3 v1.14.22 // indirect - github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect github.com/minio/sha256-simd v1.0.1 // indirect github.com/mr-tron/base58 v1.2.0 // indirect github.com/multiformats/go-base32 v0.1.0 // indirect @@ -73,10 +73,9 @@ require ( github.com/opentracing/opentracing-go v1.2.0 // indirect github.com/orandin/slog-gorm v1.3.2 // indirect github.com/polydawn/refmt v0.89.1-0.20221221234430-40501e09de1f // indirect - github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.5.0 // indirect - github.com/prometheus/common v0.45.0 // indirect - github.com/prometheus/procfs v0.12.0 // indirect + github.com/prometheus/client_model v0.6.2 // indirect + github.com/prometheus/common v0.65.0 // indirect + github.com/prometheus/procfs v0.17.0 // indirect github.com/russross/blackfriday/v2 v2.1.0 // indirect github.com/segmentio/asm v1.2.0 // indirect github.com/spaolacci/murmur3 v1.1.0 // indirect @@ -94,14 +93,14 @@ require ( go.uber.org/atomic v1.11.0 // indirect go.uber.org/multierr v1.11.0 // indirect go.uber.org/zap v1.26.0 // indirect - golang.org/x/crypto v0.21.0 // indirect - golang.org/x/net v0.23.0 // indirect - golang.org/x/sync v0.7.0 // indirect - golang.org/x/sys v0.22.0 // indirect - golang.org/x/text v0.14.0 // indirect - golang.org/x/time v0.3.0 // indirect + golang.org/x/crypto v0.40.0 // indirect + golang.org/x/net v0.42.0 // indirect + golang.org/x/sync v0.16.0 // indirect + golang.org/x/sys v0.34.0 // indirect + golang.org/x/text v0.27.0 // indirect + golang.org/x/time v0.12.0 // indirect golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect - google.golang.org/protobuf v1.33.0 // indirect + google.golang.org/protobuf v1.36.6 // indirect gorm.io/driver/postgres v1.5.7 // indirect gorm.io/driver/sqlite v1.5.5 // indirect gorm.io/gorm v1.25.9 // indirect diff --git a/bskyweb/go.sum b/bskyweb/go.sum index c0ba4f6cc1..ffad3e8825 100644 --- a/bskyweb/go.sum +++ b/bskyweb/go.sum @@ -2,14 +2,14 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03 github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/bluesky-social/indigo v0.0.0-20250605010711-db9bb60025dc h1:chbGD59Cn1mw07kbq9Uvb8WUFIr1dcoL5TOhT+I9bV4= -github.com/bluesky-social/indigo v0.0.0-20250605010711-db9bb60025dc/go.mod h1:ovyxp8AMO1Hoe838vMJUbqHTZaAR8ABM3g3TXu+A5Ng= +github.com/bluesky-social/indigo v0.0.0-20250729223159-573ae927246a h1:S12KN45uIkRglMHC8PqD/Vsz0+u3KbIaBF/6rit8/Pg= +github.com/bluesky-social/indigo v0.0.0-20250729223159-573ae927246a/go.mod h1:0XUyOCRtL4/OiyeqMTmr6RlVHQMDgw3LS7CfibuZR5Q= github.com/bradfitz/gomemcache v0.0.0-20230905024940-24af94b03874 h1:N7oVaKyGp8bttX0bfZGmcGkjz7DLQXhAn3DNd3T0ous= github.com/bradfitz/gomemcache v0.0.0-20230905024940-24af94b03874/go.mod h1:r5xuitiExdLAJ09PR7vBVENGvp4ZuTBeWTGtxuX3K+c= github.com/carlmjohnson/versioninfo v0.22.5 h1:O00sjOLUAFxYQjlN/bzYTuZiS0y6fWDQjMRvwtKgwwc= github.com/carlmjohnson/versioninfo v0.22.5/go.mod h1:QT9mph3wcVfISUKd0i9sZfVrPviHuSF+cUtLjm2WSf8= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.3 h1:qMCsGGgs+MAzDFyp9LpAe1Lqy/fY/qCovCm0qnXZOBM= github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= @@ -33,10 +33,8 @@ github.com/goccy/go-json v0.10.2 h1:CrxCmQqYDkv1z7lO7Wbh2HN93uovUHgrECaO5ZrCXAU= github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= -github.com/golang-jwt/jwt v3.2.2+incompatible h1:IfV12K8xAKAnZqdXVzCZ+TOjboZ2keLg81eXfW3O+oY= -github.com/golang-jwt/jwt v3.2.2+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I= -github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= -github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= +github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/google/uuid v1.4.0 h1:MtMxsa51/r9yyhkyLsVeVt0B+BGQZzpQiTQ4eHZ8bc4= github.com/google/uuid v1.4.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= @@ -102,8 +100,8 @@ github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7 github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/klauspost/compress v1.17.3 h1:qkRjuerhUU1EmXLYGkSH6EZL+vPSxIrYjLNAK4slzwA= -github.com/klauspost/compress v1.17.3/go.mod h1:/dCuZOvVtNoHsyb+cuJD3itjs3NbnF6KH9zAO4BDxPM= +github.com/klauspost/compress v1.18.0 h1:c/Cqfb0r+Yi+JtIEq73FWXVkRonBlf0CRNYc8Zttxdo= +github.com/klauspost/compress v1.18.0/go.mod h1:2Pp+KzxcywXVXMr50+X0Q/Lsb43OQHYWRCY2AiWywWQ= github.com/klauspost/cpuid/v2 v2.2.7 h1:ZWSB3igEs+d0qvnxR/ZBzXVmxkgt8DdzP6m9pfuVLDM= github.com/klauspost/cpuid/v2 v2.2.7/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= @@ -113,10 +111,14 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/labstack/echo/v4 v4.11.3 h1:Upyu3olaqSHkCjs1EJJwQ3WId8b8b1hxbogyommKktM= -github.com/labstack/echo/v4 v4.11.3/go.mod h1:UcGuQ8V6ZNRmSweBIJkPvGfwCMIlFmiqrPqiEBfPYws= -github.com/labstack/gommon v0.4.1 h1:gqEff0p/hTENGMABzezPoPSRtIh1Cvw0ueMOe0/dfOk= -github.com/labstack/gommon v0.4.1/go.mod h1:TyTrpPqxR5KMk8LKVtLmfMjeQ5FEkBYdxLYPw/WfrOM= +github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc= +github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= +github.com/labstack/echo-contrib v0.17.4 h1:g5mfsrJfJTKv+F5uNKCyrjLK7js+ZW6HTjg4FnDxxgk= +github.com/labstack/echo-contrib v0.17.4/go.mod h1:9O7ZPAHUeMGTOAfg80YqQduHzt0CzLak36PZRldYrZ0= +github.com/labstack/echo/v4 v4.13.4 h1:oTZZW+T3s9gAu5L8vmzihV7/lkXGZuITzTQkTEhcXEA= +github.com/labstack/echo/v4 v4.13.4/go.mod h1:g63b33BZ5vZzcIUF8AtRH40DrTlXnx4UMC8rBdndmjQ= +github.com/labstack/gommon v0.4.2 h1:F8qTUNXgG1+6WQmqoUWnz8WiEU60mXVVw0P4ht1WRA0= +github.com/labstack/gommon v0.4.2/go.mod h1:QlUFxVM+SNXhDL/Z7YhocGIBYOiwB0mXm1+1bAPHPyU= github.com/lestrrat-go/blackmagic v1.0.1 h1:lS5Zts+5HIC/8og6cGHb0uCcNCa3OUt1ygh3Qz2Fe80= github.com/lestrrat-go/blackmagic v1.0.1/go.mod h1:UrEqBzIR2U6CnzVyUtfM6oZNMt/7O7Vohk2J0OGSAtU= github.com/lestrrat-go/httpcc v1.0.1 h1:ydWCStUeJLkpYyjLDHihupbn2tYmZ7m22BGkcvZZrIE= @@ -130,16 +132,13 @@ github.com/lestrrat-go/jwx/v2 v2.0.12/go.mod h1:Mq4KN1mM7bp+5z/W5HS8aCNs5RKZ911G github.com/lestrrat-go/option v1.0.0/go.mod h1:5ZHFbivi4xwXxhxY9XHDe2FHo6/Z7WWmtT7T5nBBp3I= github.com/lestrrat-go/option v1.0.1 h1:oAzP2fvZGQKWkvHa1/SAcFolBEca1oN+mQ7eooNBEYU= github.com/lestrrat-go/option v1.0.1/go.mod h1:5ZHFbivi4xwXxhxY9XHDe2FHo6/Z7WWmtT7T5nBBp3I= -github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= -github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= +github.com/mattn/go-colorable v0.1.14 h1:9A9LHSqF/7dyVVX6g0U9cwm9pG3kP9gSzcuIPHPsaIE= +github.com/mattn/go-colorable v0.1.14/go.mod h1:6LmQG8QLFO4G5z1gPvYEzlUgJ2wF+stgPZH1UqBm1s8= github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= -github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= github.com/mattn/go-sqlite3 v1.14.22 h1:2gZY6PC6kBnID23Tichd1K+Z0oS6nE/XwU+Vz/5o4kU= github.com/mattn/go-sqlite3 v1.14.22/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y= -github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 h1:jWpvCLoY8Z/e3VKvlsiIGKtc+UG6U5vzxaoagmhXfyg= -github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0/go.mod h1:QUyp042oQthUoa9bqDv0ER0wrtXnBruoNd7aNjkbP+k= github.com/minio/sha256-simd v1.0.1 h1:6kaan5IFmwTNynnKKpDHe6FWHohJOHhCPchzK49dzMM= github.com/minio/sha256-simd v1.0.1/go.mod h1:Pz6AKMiUdngCLpeTL/RJY1M9rUuPMYujV5xJjtbRSN8= github.com/mr-tron/base58 v1.2.0 h1:T/HDJBh4ZCPbU39/+c3rRvE0uKBQlU27+QI8LJ4t64o= @@ -154,6 +153,8 @@ github.com/multiformats/go-multihash v0.2.3 h1:7Lyc8XfX/IY2jWb/gI7JP+o7JEq9hOa7B github.com/multiformats/go-multihash v0.2.3/go.mod h1:dXgKXCXjBzdscBLk9JkjINiEsCKRVch90MdaGiKsvSM= github.com/multiformats/go-varint v0.0.7 h1:sWSGR+f/eu5ABZA2ZpYKBILXTTs9JWpdEM/nEGOHFS8= github.com/multiformats/go-varint v0.0.7/go.mod h1:r8PUYw/fD/SjBCiKOoDlGF6QawOELpZAu9eioSos/OU= +github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA= +github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= github.com/opentracing/opentracing-go v1.2.0 h1:uEJPy/1a5RIPAJ0Ov+OIO8OxWu77jEv+1B0VhjKrZUs= github.com/opentracing/opentracing-go v1.2.0/go.mod h1:GxEUsuufX4nBwe+T+Wl9TAgYrxe9dPLANfrWvHYVTgc= github.com/orandin/slog-gorm v1.3.2 h1:C0lKDQPAx/pF+8K2HL7bdShPwOEJpPM0Bn80zTzxU1g= @@ -163,14 +164,14 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/polydawn/refmt v0.89.1-0.20221221234430-40501e09de1f h1:VXTQfuJj9vKR4TCkEuWIckKvdHFeJH/huIFJ9/cXOB0= github.com/polydawn/refmt v0.89.1-0.20221221234430-40501e09de1f/go.mod h1:/zvteZs/GwLtCgZ4BL6CBsk9IKIlexP43ObX9AxTqTw= -github.com/prometheus/client_golang v1.17.0 h1:rl2sfwZMtSthVU752MqfjQozy7blglC+1SOtjMAMh+Q= -github.com/prometheus/client_golang v1.17.0/go.mod h1:VeL+gMmOAxkS2IqfCq0ZmHSL+LjWfWDUmp1mBz9JgUY= -github.com/prometheus/client_model v0.5.0 h1:VQw1hfvPvk3Uv6Qf29VrPF32JB6rtbgI6cYPYQjL0Qw= -github.com/prometheus/client_model v0.5.0/go.mod h1:dTiFglRmd66nLR9Pv9f0mZi7B7fk5Pm3gvsjB5tr+kI= -github.com/prometheus/common v0.45.0 h1:2BGz0eBc2hdMDLnO/8n0jeB3oPrt2D08CekT0lneoxM= -github.com/prometheus/common v0.45.0/go.mod h1:YJmSTw9BoKxJplESWWxlbyttQR4uaEcGyv9MZjVOJsY= -github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= -github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo= +github.com/prometheus/client_golang v1.22.0 h1:rb93p9lokFEsctTys46VnV1kLCDpVZ0a/Y92Vm0Zc6Q= +github.com/prometheus/client_golang v1.22.0/go.mod h1:R7ljNsLXhuQXYZYtw6GAE9AZg8Y7vEW5scdCXrWRXC0= +github.com/prometheus/client_model v0.6.2 h1:oBsgwpGs7iVziMvrGhE53c/GrLUsZdHnqNwqPLxwZyk= +github.com/prometheus/client_model v0.6.2/go.mod h1:y3m2F6Gdpfy6Ut/GBsUqTWZqCUvMVzSfMLjcu6wAwpE= +github.com/prometheus/common v0.65.0 h1:QDwzd+G1twt//Kwj/Ww6E9FQq1iVMmODnILtW1t2VzE= +github.com/prometheus/common v0.65.0/go.mod h1:0gZns+BLRQ3V6NdaerOhMbwwRbNh9hkGINtQAsP5GS8= +github.com/prometheus/procfs v0.17.0 h1:FuLQ+05u4ZI+SS/w9+BWEM2TXiHKsUQ9TADiRH7DuK0= +github.com/prometheus/procfs v0.17.0/go.mod h1:oPQLaDAMRbA+u8H5Pbfq+dl3VDAvHxMUOVhe0wYB2zw= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= github.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncjaFoBhdsK/akog= @@ -197,8 +198,8 @@ github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/ github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= -github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= -github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA= +github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/urfave/cli v1.22.10/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= github.com/urfave/cli/v2 v2.25.7 h1:VAzn5oq403l5pHjc4OhD54+XGO9cdKVL/7lDjF+iKUs= github.com/urfave/cli/v2 v2.25.7/go.mod h1:8qnjx1vcq5s2/wpsqoZFndg2CE5tNFyrTvS6SinrnYQ= @@ -252,8 +253,8 @@ golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.12.0/go.mod h1:NF0Gs7EO5K4qLn+Ylc+fih8BSTeIjAP05siRnAh98yw= -golang.org/x/crypto v0.21.0 h1:X31++rzVUdKhX5sWmSOFZxx8UW/ldWx55cbf08iNAMA= -golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs= +golang.org/x/crypto v0.40.0 h1:r4x+VvoG5Fm+eJcxMaY8CQM7Lb0l1lsmjGBQ6s8BfKM= +golang.org/x/crypto v0.40.0/go.mod h1:Qr1vMER5WyS2dfPHAlsOj01wgLbsyWtFn/aY+5+ZdxY= golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= @@ -271,16 +272,16 @@ golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96b golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= -golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs= -golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= +golang.org/x/net v0.42.0 h1:jzkYrhi3YQWD6MLBJcsklgQsoAcw89EcZbJw8Z614hs= +golang.org/x/net v0.42.0/go.mod h1:FF1RA5d3u7nAYA4z2TkclSCKh68eSXtiFwcWQpPXdt8= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M= -golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.16.0 h1:ycBJEhp9p4vXvUZNszeOq0kGTPghopOL8q0fq3vstxw= +golang.org/x/sync v0.16.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -292,13 +293,12 @@ golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.22.0 h1:RI27ohtqKCnwULzJLqkv897zojh5/DwS/ENaMzUOaWI= -golang.org/x/sys v0.22.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.34.0 h1:H5Y5sJ2L2JRdyv7ROF1he/lPdvFsd0mJHFw2ThKHxLA= +golang.org/x/sys v0.34.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= @@ -310,10 +310,10 @@ golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/text v0.12.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= -golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= -golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= -golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4= -golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/text v0.27.0 h1:4fGWRpyh641NLlecmyl4LOe6yDdfaYNrGb2zdfo4JV4= +golang.org/x/text v0.27.0/go.mod h1:1D28KMCvyooCX9hBiosv5Tz/+YLxj0j7XhWjpSUF7CU= +golang.org/x/time v0.12.0 h1:ScB/8o8olJvc+CQPWrK3fPZNfh7qgwCrY0zJmoEQLSE= +golang.org/x/time v0.12.0/go.mod h1:CDIdPxbZBQxdj6cxyCIdrNogrJKMJ7pr37NYpMcMDSg= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= @@ -332,8 +332,8 @@ golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8T golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 h1:+cNy6SZtPcJQH3LJVLOSmiC7MMxXNOb3PU/VUEz+EhU= golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028/go.mod h1:NDW/Ps6MPRej6fsCIbMTohpP40sJ/P/vI1MoTEGwX90= -google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI= -google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= +google.golang.org/protobuf v1.36.6 h1:z1NpPI8ku2WgiWnf+t9wTPsn6eP1L7ksHUlkfLvd9xY= +google.golang.org/protobuf v1.36.6/go.mod h1:jduwjTPXsFjZGTmRluh+L6NjiWu7pchiJ2/5YcXBHnY= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= diff --git a/bskyweb/templates/base.html b/bskyweb/templates/base.html index 349bd74e19..d72494da1a 100644 --- a/bskyweb/templates/base.html +++ b/bskyweb/templates/base.html @@ -8,6 +8,7 @@ Preconnect to essential domains --> + {%- block head_title -%}Bluesky{%- endblock -%} diff --git a/docs/build.md b/docs/build.md index 7817dd0957..87b653bdb9 100644 --- a/docs/build.md +++ b/docs/build.md @@ -89,9 +89,9 @@ If you change `SENTRY_AUTH_TOKEN`, you need to do `yarn prebuild` before running ### Adding bitdrift -Adding bitdirft is NOT required. You can keep `BITDRIFT_API_KEY=` in `.env` which will avoid initializing bitdrift during startup. +Adding bitdrift is NOT required. You can keep `EXPO_PUBLIC_BITDRIFT_API_KEY=` in `.env` which will avoid initializing bitdrift during startup. -However, if you're a part of the Bluesky team and want to enable bitdrift, fill in `BITDRIFT_API_KEY` in your `.env` to enable bitdrift. +However, if you're a part of the Bluesky team and want to enable bitdrift, fill in `EXPO_PUBLIC_BITDRIFT_API_KEY` in your `.env` to enable bitdrift. ### Adding and Updating Locales diff --git a/modules/BlueskyClip/ViewController.swift b/modules/BlueskyClip/ViewController.swift index e8adb53259..ef17765a4e 100644 --- a/modules/BlueskyClip/ViewController.swift +++ b/modules/BlueskyClip/ViewController.swift @@ -43,7 +43,7 @@ class ViewController: UIViewController, WKScriptMessageHandler, WKNavigationDele let payload = try? JSONDecoder().decode(WebViewActionPayload.self, from: data) else { return } - + switch payload.action { case .present: self.presentAppStoreOverlay() @@ -65,18 +65,18 @@ class ViewController: UIViewController, WKScriptMessageHandler, WKNavigationDele guard let url = navigationAction.request.url else { return .allow } - + // Store the previous one to compare later, but only set starterPackUrl when we find the right one prevUrl = url // pathComponents starts with "/" as the first component, then each path name. so... // ["/", "start", "name", "rkey"] - if isStarterPackUrl(url){ + if isStarterPackUrl(url) { self.starterPackUrl = url } - + return .allow } - + func isStarterPackUrl(_ url: URL) -> Bool { var host: String? if #available(iOS 16.0, *) { @@ -84,11 +84,11 @@ class ViewController: UIViewController, WKScriptMessageHandler, WKNavigationDele } else { host = url.host } - + switch host { case "bsky.app": if url.pathComponents.count == 4, - (url.pathComponents[1] == "start" || url.pathComponents[1] == "starter-pack") { + url.pathComponents[1] == "start" || url.pathComponents[1] == "starter-pack" { return true } return false diff --git a/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/BottomSheetView.kt b/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/BottomSheetView.kt index 31eb739a66..6db6e35fac 100644 --- a/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/BottomSheetView.kt +++ b/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/BottomSheetView.kt @@ -19,7 +19,6 @@ import expo.modules.kotlin.AppContext import expo.modules.kotlin.viewevent.EventDispatcher import expo.modules.kotlin.views.ExpoView - class BottomSheetView( context: Context, appContext: AppContext, @@ -31,12 +30,14 @@ class BottomSheetView( private lateinit var dialogRootViewGroup: DialogRootViewGroup private var eventDispatcher: EventDispatcher? = null - private val rawScreenHeight = context.resources.displayMetrics.heightPixels.toFloat() + private val rawScreenHeight = + context.resources.displayMetrics.heightPixels + .toFloat() private val safeScreenHeight = (rawScreenHeight - getNavigationBarHeight()).toFloat() private fun getNavigationBarHeight(): Int { - val resourceId = resources.getIdentifier("navigation_bar_height", "dimen", "android") - return if (resourceId > 0) resources.getDimensionPixelSize(resourceId) else 0 + val resourceId = resources.getIdentifier("navigation_bar_height", "dimen", "android") + return if (resourceId > 0) resources.getDimensionPixelSize(resourceId) else 0 } private val onAttemptDismiss by EventDispatcher() @@ -45,7 +46,7 @@ class BottomSheetView( // Props var disableDrag = false - set (value) { + set(value) { field = value this.setDraggable(!value) } @@ -157,8 +158,8 @@ class BottomSheetView( // Presentation - private fun getHalfExpandedRatio(contentHeight: Float): Float { - return when { + private fun getHalfExpandedRatio(contentHeight: Float): Float = + when { // Full height sheets contentHeight >= safeScreenHeight -> 0.99f // Medium height sheets (>50% but <100%) @@ -168,7 +169,6 @@ class BottomSheetView( else -> this.clampRatio(this.getTargetHeight() / rawScreenHeight) } - } private fun present() { if (this.isOpen || this.isOpening || this.isClosing) return diff --git a/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/DialogRootViewGroup.kt b/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/DialogRootViewGroup.kt index 4b02bae9f8..60b9aac08c 100644 --- a/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/DialogRootViewGroup.kt +++ b/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/DialogRootViewGroup.kt @@ -139,7 +139,10 @@ class DialogRootViewGroup( return super.onHoverEvent(event) } - override fun onChildStartedNativeGesture(childView: View?, ev: MotionEvent) { + override fun onChildStartedNativeGesture( + childView: View?, + ev: MotionEvent, + ) { eventDispatcher?.let { jSTouchDispatcher.onChildStartedNativeGesture(ev, it) } jSPointerDispatcher?.onChildStartedNativeGesture(childView, ev, eventDispatcher) } diff --git a/modules/bottom-sheet/src/BottomSheetPortal.tsx b/modules/bottom-sheet/src/BottomSheetPortal.tsx index 4d8ed57ff0..e259a28626 100644 --- a/modules/bottom-sheet/src/BottomSheetPortal.tsx +++ b/modules/bottom-sheet/src/BottomSheetPortal.tsx @@ -5,6 +5,7 @@ import {createPortalGroup_INTERNAL} from './lib/Portal' type PortalContext = React.ElementType<{children: React.ReactNode}> export const Context = React.createContext({} as PortalContext) +Context.displayName = 'BottomSheetPortalContext' export const useBottomSheetPortal_INTERNAL = () => React.useContext(Context) diff --git a/modules/bottom-sheet/src/lib/Portal.tsx b/modules/bottom-sheet/src/lib/Portal.tsx index dd1bc4c13f..4dad2d8d2b 100644 --- a/modules/bottom-sheet/src/lib/Portal.tsx +++ b/modules/bottom-sheet/src/lib/Portal.tsx @@ -18,6 +18,7 @@ export function createPortalGroup_INTERNAL() { append: () => {}, remove: () => {}, }) + Context.displayName = 'BottomSheetPortalContext' function Provider(props: React.PropsWithChildren<{}>) { const map = React.useRef({}) diff --git a/modules/expo-background-notification-handler/android/src/main/java/expo/modules/backgroundnotificationhandler/BackgroundNotificationHandler.kt b/modules/expo-background-notification-handler/android/src/main/java/expo/modules/backgroundnotificationhandler/BackgroundNotificationHandler.kt index 7c1494c706..4f8a6b892a 100644 --- a/modules/expo-background-notification-handler/android/src/main/java/expo/modules/backgroundnotificationhandler/BackgroundNotificationHandler.kt +++ b/modules/expo-background-notification-handler/android/src/main/java/expo/modules/backgroundnotificationhandler/BackgroundNotificationHandler.kt @@ -15,6 +15,8 @@ class BackgroundNotificationHandler( if (remoteMessage.data["reason"] == "chat-message") { mutateWithChatMessage(remoteMessage) + } else { + mutateWithOtherReason(remoteMessage) } notifInterface.showMessage(remoteMessage) @@ -39,4 +41,17 @@ class BackgroundNotificationHandler( // TODO - Remove this once we have more backend capability remoteMessage.data["badge"] = null } + + private fun mutateWithOtherReason(remoteMessage: RemoteMessage) { + // If oreo or higher + if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) { + // If one of "like", "repost", "follow", "mention", "reply", "quote", "like-via-repost", "repost-via-repost", "subscribed-post" + // assign to it's eponymous channel. otherwise do nothing, let expo handle it + when (remoteMessage.data["reason"]) { + "like", "repost", "follow", "mention", "reply", "quote", "like-via-repost", "repost-via-repost", "subscribed-post" -> { + remoteMessage.data["channelId"] = remoteMessage.data["reason"] + } + } + } + } } diff --git a/modules/expo-bluesky-gif-view/android/src/main/java/expo/modules/blueskygifview/GifView.kt b/modules/expo-bluesky-gif-view/android/src/main/java/expo/modules/blueskygifview/GifView.kt index 6c93981a1a..575358ccf4 100644 --- a/modules/expo-bluesky-gif-view/android/src/main/java/expo/modules/blueskygifview/GifView.kt +++ b/modules/expo-bluesky-gif-view/android/src/main/java/expo/modules/blueskygifview/GifView.kt @@ -16,8 +16,8 @@ import expo.modules.kotlin.viewevent.EventDispatcher import expo.modules.kotlin.views.ExpoView class GifView( - context: Context, - appContext: AppContext, + context: Context, + appContext: AppContext, ) : ExpoView(context, appContext) { // Events private val onPlayerStateChange by EventDispatcher() @@ -82,65 +82,65 @@ class GifView( } this.webpRequest = - glide.load(source) - .diskCacheStrategy(DiskCacheStrategy.DATA) - .skipMemoryCache(false) - .listener( - object : RequestListener { - override fun onResourceReady( - resource: Drawable, - model: Any, - target: Target?, - dataSource: DataSource, - isFirstResource: Boolean - ): Boolean { - placeholderRequest?.let { glide.clear(it) } - return false - } + glide + .load(source) + .diskCacheStrategy(DiskCacheStrategy.DATA) + .skipMemoryCache(false) + .listener( + object : RequestListener { + override fun onResourceReady( + resource: Drawable, + model: Any, + target: Target?, + dataSource: DataSource, + isFirstResource: Boolean, + ): Boolean { + placeholderRequest?.let { glide.clear(it) } + return false + } - override fun onLoadFailed( - e: GlideException?, - model: Any?, - target: Target, - isFirstResource: Boolean - ): Boolean = true - } - ) - .into(this.imageView) + override fun onLoadFailed( + e: GlideException?, + model: Any?, + target: Target, + isFirstResource: Boolean, + ): Boolean = true + }, + ).into(this.imageView) if (this.imageView.drawable == null || this.imageView.drawable !is Animatable) { this.placeholderRequest = - glide.load(placeholderSource) - .diskCacheStrategy(DiskCacheStrategy.DATA) - // Let's not bloat the memory cache with placeholders - .skipMemoryCache(true) - .listener( - object : RequestListener { - override fun onResourceReady( - resource: Drawable, - model: Any, - target: Target?, - dataSource: DataSource, - isFirstResource: Boolean - ): Boolean { - // Incase this request finishes after the webp, let's just not set - // the drawable. This shouldn't happen because the request should - // get cancelled - if (imageView.drawable == null) { - imageView.setImageDrawable(resource) - } - return true - } + glide + .load(placeholderSource) + .diskCacheStrategy(DiskCacheStrategy.DATA) + // Let's not bloat the memory cache with placeholders + .skipMemoryCache(true) + .listener( + object : RequestListener { + override fun onResourceReady( + resource: Drawable, + model: Any, + target: Target?, + dataSource: DataSource, + isFirstResource: Boolean, + ): Boolean { + // Incase this request finishes after the webp, let's just not set + // the drawable. This shouldn't happen because the request should + // get cancelled + if (imageView.drawable == null) { + imageView.setImageDrawable(resource) + } + return true + } - override fun onLoadFailed( - e: GlideException?, - model: Any?, - target: Target, - isFirstResource: Boolean - ): Boolean = true - }, - ) - .submit() + override fun onLoadFailed( + e: GlideException?, + model: Any?, + target: Target, + isFirstResource: Boolean, + ): Boolean = true + }, + ).submit() } } @@ -174,10 +174,10 @@ class GifView( fun firePlayerStateChange() { onPlayerStateChange( - mapOf( - "isPlaying" to this.isPlaying, - "isLoaded" to this.isLoaded, - ), + mapOf( + "isPlaying" to this.isPlaying, + "isLoaded" to this.isLoaded, + ), ) } diff --git a/modules/expo-emoji-picker/android/src/main/java/expo/community/modules/emojipicker/EmojiPickerModule.kt b/modules/expo-emoji-picker/android/src/main/java/expo/community/modules/emojipicker/EmojiPickerModule.kt index ebdc7a35e4..57e4d1349c 100644 --- a/modules/expo-emoji-picker/android/src/main/java/expo/community/modules/emojipicker/EmojiPickerModule.kt +++ b/modules/expo-emoji-picker/android/src/main/java/expo/community/modules/emojipicker/EmojiPickerModule.kt @@ -5,11 +5,12 @@ import expo.modules.kotlin.modules.ModuleDefinition import java.net.URL class EmojiPickerModule : Module() { - override fun definition() = ModuleDefinition { - Name("EmojiPicker") + override fun definition() = + ModuleDefinition { + Name("EmojiPicker") - View(EmojiPickerModuleView::class) { - Events("onEmojiSelected") - } + View(EmojiPickerModuleView::class) { + Events("onEmojiSelected") + } } } diff --git a/modules/expo-emoji-picker/android/src/main/java/expo/community/modules/emojipicker/EmojiPickerModuleView.kt b/modules/expo-emoji-picker/android/src/main/java/expo/community/modules/emojipicker/EmojiPickerModuleView.kt index a6e5a066fe..7ccc57b3bf 100644 --- a/modules/expo-emoji-picker/android/src/main/java/expo/community/modules/emojipicker/EmojiPickerModuleView.kt +++ b/modules/expo-emoji-picker/android/src/main/java/expo/community/modules/emojipicker/EmojiPickerModuleView.kt @@ -8,33 +8,35 @@ import expo.modules.kotlin.AppContext import expo.modules.kotlin.viewevent.EventDispatcher import expo.modules.kotlin.views.ExpoView - @SuppressLint("ViewConstructor") -class EmojiPickerModuleView(context: Context, appContext: AppContext) : - ExpoView(context, appContext) { - private var emojiView: EmojiPickerView = EmojiPickerView(context) - private val onEmojiSelected by EventDispatcher() +class EmojiPickerModuleView( + context: Context, + appContext: AppContext, +) : ExpoView(context, appContext) { + private var emojiView: EmojiPickerView = EmojiPickerView(context) + private val onEmojiSelected by EventDispatcher() - init { - setupView() + init { + setupView() + } + + private fun setupView() { + addView( + emojiView, + LayoutParams( + LayoutParams.MATCH_PARENT, + LayoutParams.MATCH_PARENT, + ), + ) + + emojiView.setOnEmojiPickedListener { emoji -> + onEmojiSelected(mapOf("emoji" to emoji.emoji)) } + } - private fun setupView() { - addView( - emojiView, LayoutParams( - LayoutParams.MATCH_PARENT, - LayoutParams.MATCH_PARENT - ) - ) - - emojiView.setOnEmojiPickedListener { emoji -> - onEmojiSelected(mapOf("emoji" to emoji.emoji)) - } - } - - override fun onConfigurationChanged(newConfig: Configuration?) { - super.onConfigurationChanged(newConfig) - removeView(emojiView) - setupView() - } + override fun onConfigurationChanged(newConfig: Configuration?) { + super.onConfigurationChanged(newConfig) + removeView(emojiView) + setupView() + } } diff --git a/modules/expo-emoji-picker/ios/EmojiPickerModule.podspec b/modules/expo-emoji-picker/ios/EmojiPickerModule.podspec index e6a982a70e..78349c9504 100644 --- a/modules/expo-emoji-picker/ios/EmojiPickerModule.podspec +++ b/modules/expo-emoji-picker/ios/EmojiPickerModule.podspec @@ -14,7 +14,7 @@ Pod::Spec.new do |s| s.static_framework = true s.dependency 'ExpoModulesCore' - s.dependency 'MCEmojiPicker' + s.dependency 'MCEmojiPicker', '1.2.3' # Swift/Objective-C compatibility s.pod_target_xcconfig = { diff --git a/modules/expo-emoji-picker/src/EmojiPicker.android.tsx b/modules/expo-emoji-picker/src/EmojiPicker.android.tsx index d8493b72e3..e980c80fb0 100644 --- a/modules/expo-emoji-picker/src/EmojiPicker.android.tsx +++ b/modules/expo-emoji-picker/src/EmojiPicker.android.tsx @@ -12,7 +12,7 @@ const EmojiPicker = ({onEmojiSelected}: EmojiPickerViewProps) => { flex: 1, width: '100%', backgroundColor: scheme === 'dark' ? '#000' : '#fff', - } as const), + }) as const, [scheme], ) diff --git a/package.json b/package.json index e35dd96b1e..ee5d276f4a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bsky.app", - "version": "1.104.0", + "version": "1.107.0", "private": true, "engines": { "node": ">=20" @@ -12,14 +12,15 @@ "buildFromSource": [ "expo-notifications", "expo-haptics", - "expo-media-library" + "expo-media-library", + "expo-image-picker" ] } } }, "scripts": { "prepare": "is-ci || husky install", - "postinstall": "patch-package && yarn intl:compile", + "postinstall": "patch-package && yarn intl:compile-if-needed", "prebuild": "expo prebuild --clean", "android": "expo run:android", "android:prod": "expo run:android --variant release", @@ -57,12 +58,12 @@ "intl:extract": "lingui extract --clean --locale en", "intl:extract:all": "lingui extract --clean", "intl:compile": "lingui compile", + "intl:compile-if-needed": "is-ci || [ -f src/locale/locales/en/messages.js ] || yarn intl:compile", "intl:pull": "crowdin download translations --verbose -b main", "intl:push": "crowdin push translations --verbose -b main", "nuke": "rm -rf ./node_modules && rm -rf ./ios && rm -rf ./android", "update-extensions": "bash scripts/updateExtensions.sh", - "export-ios": "npx expo export --platform ios --dump-sourcemap && yarn upload-native-sourcemaps", - "export-android": "npx expo export --platform android --dump-sourcemap && yarn upload-native-sourcemaps", + "export": "npx expo export --dump-sourcemap && yarn upload-native-sourcemaps", "upload-native-sourcemaps": "npx sentry-expo-upload-sourcemaps dist", "make-deploy-bundle": "bash scripts/bundleUpdate.sh", "generate-webpack-stats-file": "EXPO_PUBLIC_GENERATE_STATS=1 yarn build-web", @@ -70,7 +71,7 @@ "icons:optimize": "svgo -f ./assets/icons" }, "dependencies": { - "@atproto/api": "^0.15.16", + "@atproto/api": "^0.16.2", "@bitdrift/react-native": "^0.6.8", "@braintree/sanitize-url": "^6.0.2", "@discord/bottom-sheet": "bluesky-social/react-native-bottom-sheet", @@ -86,7 +87,7 @@ "@fortawesome/free-regular-svg-icons": "^6.1.1", "@fortawesome/free-solid-svg-icons": "^6.1.1", "@fortawesome/react-native-fontawesome": "^0.3.2", - "@haileyok/bluesky-video": "0.3.1", + "@haileyok/bluesky-video": "0.3.2", "@ipld/dag-cbor": "^9.2.0", "@lingui/react": "^4.14.1", "@mattermost/react-native-paste-input": "mattermost/react-native-paste-input", @@ -142,10 +143,11 @@ "expo-file-system": "~18.1.10", "expo-font": "~13.3.1", "expo-haptics": "~14.1.4", - "expo-image": "~2.2.1", + "expo-image": "^2.4.0", "expo-image-crop-tool": "^0.1.8", "expo-image-manipulator": "~13.1.7", "expo-image-picker": "~16.1.4", + "expo-intent-launcher": "^12.1.5", "expo-linear-gradient": "~14.1.5", "expo-linking": "~7.1.5", "expo-localization": "~16.1.5", @@ -186,6 +188,7 @@ "react-native": "^0.79.3", "react-native-compressor": "^1.11.0", "react-native-date-picker": "^5.0.12", + "react-native-device-attest": "^0.1.6", "react-native-drawer-layout": "^4.1.8", "react-native-edge-to-edge": "^1.6.0", "react-native-gesture-handler": "2.25.0", @@ -193,7 +196,7 @@ "react-native-ios-context-menu": "^1.15.3", "react-native-keyboard-controller": "^1.17.5", "react-native-mmkv": "^2.12.2", - "react-native-pager-view": "^6.7.1", + "react-native-pager-view": "6.8.0", "react-native-progress": "bluesky-social/react-native-progress", "react-native-qrcode-styled": "^0.3.3", "react-native-reanimated": "~3.17.5", @@ -211,6 +214,8 @@ "react-remove-scroll-bar": "^2.3.8", "react-responsive": "^9.0.2", "react-textarea-autosize": "^8.5.3", + "sonner": "^2.0.7", + "sonner-native": "^0.21.0", "statsig-react-native-expo": "^4.6.1", "tippy.js": "^6.3.7", "tlds": "^1.234.0", @@ -219,7 +224,7 @@ "zod": "^3.20.2" }, "devDependencies": { - "@atproto/dev-env": "^0.3.144", + "@atproto/dev-env": "^0.3.160", "@babel/core": "^7.26.0", "@babel/preset-env": "^7.26.0", "@babel/runtime": "^7.26.0", @@ -266,7 +271,7 @@ "lint-staged": "^13.2.3", "lockfile-lint": "^4.14.0", "metro-react-native-babel-preset": "^0.77.0", - "prettier": "^2.8.3", + "prettier": "^3.6.0", "react-native-dotenv": "^3.4.11", "react-refresh": "^0.14.0", "svgo": "^3.3.2", diff --git a/patches/expo-image-picker+16.1.4.patch b/patches/expo-image-picker+16.1.4.patch new file mode 100644 index 0000000000..0396fecbc1 --- /dev/null +++ b/patches/expo-image-picker+16.1.4.patch @@ -0,0 +1,38 @@ +diff --git a/node_modules/expo-image-picker/android/src/main/java/expo/modules/imagepicker/MediaHandler.kt b/node_modules/expo-image-picker/android/src/main/java/expo/modules/imagepicker/MediaHandler.kt +index c863fb8..cde8859 100644 +--- a/node_modules/expo-image-picker/android/src/main/java/expo/modules/imagepicker/MediaHandler.kt ++++ b/node_modules/expo-image-picker/android/src/main/java/expo/modules/imagepicker/MediaHandler.kt +@@ -101,16 +101,30 @@ internal class MediaHandler( + val fileData = getAdditionalFileData(sourceUri) + val mimeType = getType(context.contentResolver, sourceUri) + ++ // Extract basic metadata ++ var width = metadataRetriever.extractInt(MediaMetadataRetriever.METADATA_KEY_VIDEO_WIDTH) ++ var height = metadataRetriever.extractInt(MediaMetadataRetriever.METADATA_KEY_VIDEO_HEIGHT) ++ val rotation = metadataRetriever.extractInt(MediaMetadataRetriever.METADATA_KEY_VIDEO_ROTATION) ++ ++ // Android returns the encoded width/height which do not take the display rotation into ++ // account. For videos recorded in portrait mode the encoded dimensions are often landscape ++ // (e.g. 1920x1080) paired with a 90°/270° rotation flag. iOS adjusts these values before ++ // reporting them, so to keep the behaviour consistent across platforms we swap the width ++ // and height when the rotation indicates the video should be displayed in portrait. ++ if (rotation % 180 != 0) { ++ width = height.also { height = width } ++ } ++ + return ImagePickerAsset( + type = MediaType.VIDEO, + uri = outputUri.toString(), +- width = metadataRetriever.extractInt(MediaMetadataRetriever.METADATA_KEY_VIDEO_WIDTH), +- height = metadataRetriever.extractInt(MediaMetadataRetriever.METADATA_KEY_VIDEO_HEIGHT), ++ width = width, ++ height = height, + fileName = fileData?.fileName, + fileSize = fileData?.fileSize, + mimeType = mimeType, + duration = metadataRetriever.extractInt(MediaMetadataRetriever.METADATA_KEY_DURATION), +- rotation = metadataRetriever.extractInt(MediaMetadataRetriever.METADATA_KEY_VIDEO_ROTATION), ++ rotation = rotation, + assetId = sourceUri.getMediaStoreAssetId() + ) + } catch (cause: FailedToExtractVideoMetadataException) { diff --git a/patches/expo-image-picker+16.1.4.patch.md b/patches/expo-image-picker+16.1.4.patch.md new file mode 100644 index 0000000000..7855e86212 --- /dev/null +++ b/patches/expo-image-picker+16.1.4.patch.md @@ -0,0 +1,5 @@ +# Expo Image Picker patch + +Cherry-picked https://github.com/expo/expo/pull/37849 + +Remove when we update to a version that includes this commit. diff --git a/plugins/withAndroidManifestIntentQueriesPlugin.js b/plugins/withAndroidManifestIntentQueriesPlugin.js new file mode 100644 index 0000000000..04237b059e --- /dev/null +++ b/plugins/withAndroidManifestIntentQueriesPlugin.js @@ -0,0 +1,30 @@ +const {withAndroidManifest} = require('@expo/config-plugins') + +const withProcessTextQuery = config => + // eslint-disable-next-line no-shadow + withAndroidManifest(config, config => { + const manifest = config.modResults.manifest + + // Ensure stub exists + if (!manifest.queries) manifest.queries = [{}] + const queries = manifest.queries[0] + + queries.intent = queries.intent || [] + + const exists = queries.intent.some( + i => + i.action?.[0]?.$?.['android:name'] === + 'android.intent.action.PROCESS_TEXT', + ) + + if (!exists) { + queries.intent.push({ + action: [{$: {'android:name': 'android.intent.action.PROCESS_TEXT'}}], + data: [{$: {'android:mimeType': 'text/plain'}}], + }) + } + + return config + }) + +module.exports = withProcessTextQuery diff --git a/plugins/withAndroidManifestPlugin.js b/plugins/withAndroidManifestLargeHeapPlugin.js similarity index 100% rename from plugins/withAndroidManifestPlugin.js rename to plugins/withAndroidManifestLargeHeapPlugin.js diff --git a/scripts/bundleUpdate.js b/scripts/bundleUpdate.js index a5f1fb641d..00217dcd7b 100644 --- a/scripts/bundleUpdate.js +++ b/scripts/bundleUpdate.js @@ -3,25 +3,17 @@ const fs = require('fs') const fsp = fs.promises const path = require('path') -const IOS_DIST_DIR = './ios-dist' -const ANDROID_DIST_DIR = './android-dist' - +const DIST_DIR = './dist' const BUNDLES_DIR = '/_expo/static/js' - -const IOS_BUNDLE_DIR = path.join(IOS_DIST_DIR, BUNDLES_DIR, '/ios') -const ANDROID_BUNDLE_DIR = path.join(ANDROID_DIST_DIR, BUNDLES_DIR, '/android') - -const IOS_METADATA_PATH = path.join(IOS_DIST_DIR, '/metadata.json') -const ANDROID_METADATA_PATH = path.join(ANDROID_DIST_DIR, '/metadata.json') - +const IOS_BUNDLE_DIR = path.join(DIST_DIR, BUNDLES_DIR, '/ios') +const ANDROID_BUNDLE_DIR = path.join(DIST_DIR, BUNDLES_DIR, '/android') +const METADATA_PATH = path.join(DIST_DIR, '/metadata.json') const DEST_DIR = './bundleTempDir' // Weird, don't feel like figuring out _why_ it wants this -const IOS_METADATA = require(`../${IOS_METADATA_PATH}`) -const ANDROID_METADATA = require(`../${ANDROID_METADATA_PATH}`) - -const IOS_METADATA_ASSETS = IOS_METADATA.fileMetadata.ios.assets -const ANDROID_METADATA_ASSETS = ANDROID_METADATA.fileMetadata.android.assets +const METADATA = require(`../${METADATA_PATH}`) +const IOS_METADATA_ASSETS = METADATA.fileMetadata.ios.assets +const ANDROID_METADATA_ASSETS = METADATA.fileMetadata.android.assets const getMd5 = async path => { return new Promise(res => { @@ -68,7 +60,7 @@ const moveFiles = async () => { console.log('Getting ios asset md5s and moving them...') for (const asset of IOS_METADATA_ASSETS) { - const currPath = path.join(IOS_DIST_DIR, asset.path) + const currPath = path.join(DIST_DIR, asset.path) const md5 = await getMd5(currPath) const withExtPath = `assets/${md5}.${asset.ext}` iosAssets.push(withExtPath) @@ -77,7 +69,7 @@ const moveFiles = async () => { console.log('Getting android asset md5s and moving them...') for (const asset of ANDROID_METADATA_ASSETS) { - const currPath = path.join(ANDROID_DIST_DIR, asset.path) + const currPath = path.join(DIST_DIR, asset.path) const md5 = await getMd5(currPath) const withExtPath = `assets/${md5}.${asset.ext}` androidAssets.push(withExtPath) diff --git a/scripts/post-web-build.js b/scripts/post-web-build.js index 3b1b62dfd8..5b7b07c0d1 100644 --- a/scripts/post-web-build.js +++ b/scripts/post-web-build.js @@ -9,10 +9,9 @@ const templateFile = path.join( 'scripts.html', ) -const {entrypoints} = require(path.join( - projectRoot, - 'web-build/asset-manifest.json', -)) +const {entrypoints} = require( + path.join(projectRoot, 'web-build/asset-manifest.json'), +) console.log(`Found ${entrypoints.length} entrypoints`) console.log(`Writing ${templateFile}`) diff --git a/src/App.native.tsx b/src/App.native.tsx index 81d4a870e9..e22ab3f0e2 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -17,6 +17,7 @@ import {useLingui} from '@lingui/react' import * as Sentry from '@sentry/react-native' import {KeyboardControllerProvider} from '#/lib/hooks/useEnableKeyboardController' +import {Provider as HideBottomBarBorderProvider} from '#/lib/hooks/useHideBottomBarBorder' import {QueryProvider} from '#/lib/react-query' import {Provider as StatsigProvider, tryFetchGates} from '#/lib/statsig/statsig' import {s} from '#/lib/styles' @@ -25,14 +26,17 @@ import I18nProvider from '#/locale/i18nProvider' import {logger} from '#/logger' import {isAndroid, isIOS} from '#/platform/detection' import {Provider as A11yProvider} from '#/state/a11y' +import {Provider as AgeAssuranceProvider} from '#/state/ageAssurance' import {Provider as MutedThreadsProvider} from '#/state/cache/thread-mutes' import {Provider as DialogStateProvider} from '#/state/dialogs' +import {Provider as EmailVerificationProvider} from '#/state/email-verification' import {listenSessionDropped} from '#/state/events' import { beginResolveGeolocation, ensureGeolocationResolved, Provider as GeolocationProvider, } from '#/state/geolocation' +import {GlobalGestureEventsProvider} from '#/state/global-gesture-events' import {Provider as HomeBadgeProvider} from '#/state/home-badge' import {Provider as InvitesStateProvider} from '#/state/invites' import {Provider as LightboxStateProvider} from '#/state/lightbox' @@ -67,12 +71,13 @@ import {Provider as ContextMenuProvider} from '#/components/ContextMenu' import {NuxDialogs} from '#/components/dialogs/nuxs' import {useStarterPackEntry} from '#/components/hooks/useStarterPackEntry' import {Provider as IntentDialogProvider} from '#/components/intents/IntentDialogs' +import {Provider as PolicyUpdateOverlayProvider} from '#/components/PolicyUpdateOverlay' import {Provider as PortalProvider} from '#/components/Portal' import {Provider as VideoVolumeProvider} from '#/components/Post/Embed/VideoEmbed/VideoVolumeContext' +import {ToastOutlet} from '#/components/Toast' import {Splash} from '#/Splash' import {BottomSheetProvider} from '../modules/bottom-sheet' import {BackgroundNotificationPreferencesProvider} from '../modules/expo-background-notification-handler/src/BackgroundNotificationHandlerProvider' -import {Provider as HideBottomBarBorderProvider} from './lib/hooks/useHideBottomBarBorder' SplashScreen.preventAutoHideAsync() if (isIOS) { @@ -94,7 +99,6 @@ function InnerApp() { const {resumeSession} = useSessionApi() const theme = useColorModeTheme() const {_} = useLingui() - const hasCheckedReferrer = useStarterPackEntry() // init @@ -136,45 +140,54 @@ function InnerApp() { // Resets the entire tree below when it changes: key={currentAccount?.did}> - + - - {/* LabelDefsProvider MUST come before ModerationOptsProvider */} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + {/* LabelDefsProvider MUST come before ModerationOptsProvider */} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/src/App.web.tsx b/src/App.web.tsx index b706774fdc..17434bfcdc 100644 --- a/src/App.web.tsx +++ b/src/App.web.tsx @@ -15,8 +15,10 @@ import {ThemeProvider} from '#/lib/ThemeContext' import I18nProvider from '#/locale/i18nProvider' import {logger} from '#/logger' import {Provider as A11yProvider} from '#/state/a11y' +import {Provider as AgeAssuranceProvider} from '#/state/ageAssurance' import {Provider as MutedThreadsProvider} from '#/state/cache/thread-mutes' import {Provider as DialogStateProvider} from '#/state/dialogs' +import {Provider as EmailVerificationProvider} from '#/state/email-verification' import {listenSessionDropped} from '#/state/events' import { beginResolveGeolocation, @@ -49,7 +51,6 @@ import {Provider as SelectedFeedProvider} from '#/state/shell/selected-feed' import {Provider as StarterPackProvider} from '#/state/shell/starter-pack' import {Provider as HiddenRepliesProvider} from '#/state/threadgate-hidden-replies' import * as Toast from '#/view/com/util/Toast' -import {ToastContainer} from '#/view/com/util/Toast.web' import {Shell} from '#/view/shell/index' import {ThemeProvider as Alf} from '#/alf' import {useColorModeTheme} from '#/alf/util/useColorModeTheme' @@ -57,9 +58,11 @@ import {Provider as ContextMenuProvider} from '#/components/ContextMenu' import {NuxDialogs} from '#/components/dialogs/nuxs' import {useStarterPackEntry} from '#/components/hooks/useStarterPackEntry' import {Provider as IntentDialogProvider} from '#/components/intents/IntentDialogs' +import {Provider as PolicyUpdateOverlayProvider} from '#/components/PolicyUpdateOverlay' import {Provider as PortalProvider} from '#/components/Portal' import {Provider as ActiveVideoProvider} from '#/components/Post/Embed/VideoEmbed/ActiveVideoWebContext' import {Provider as VideoVolumeProvider} from '#/components/Post/Embed/VideoEmbed/VideoVolumeContext' +import {ToastOutlet} from '#/components/Toast' import {BackgroundNotificationPreferencesProvider} from '../modules/expo-background-notification-handler/src/BackgroundNotificationHandlerProvider' import {Provider as HideBottomBarBorderProvider} from './lib/hooks/useHideBottomBarBorder' @@ -116,45 +119,51 @@ function InnerApp() { // Resets the entire tree below when it changes: key={currentAccount?.did}> - + - - {/* LabelDefsProvider MUST come before ModerationOptsProvider */} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + {/* LabelDefsProvider MUST come before ModerationOptsProvider */} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - diff --git a/src/Navigation.tsx b/src/Navigation.tsx index f1a9c569d0..97c351bc86 100644 --- a/src/Navigation.tsx +++ b/src/Navigation.tsx @@ -1,4 +1,6 @@ -import * as React from 'react' +import {useCallback, useRef} from 'react' +import {Linking} from 'react-native' +import * as Notifications from 'expo-notifications' import {i18n, type MessageDescriptor} from '@lingui/core' import {msg} from '@lingui/macro' import { @@ -10,13 +12,21 @@ import { createNavigationContainerRef, DarkTheme, DefaultTheme, + type LinkingOptions, NavigationContainer, StackActions, } from '@react-navigation/native' import {timeout} from '#/lib/async/timeout' import {useColorSchemeStyle} from '#/lib/hooks/useColorSchemeStyle' +import { + getNotificationPayload, + type NotificationPayload, + notificationToURL, + storePayloadForAccountSwitch, +} from '#/lib/hooks/useNotificationHandler' import {useWebScrollRestoration} from '#/lib/hooks/useWebScrollRestoration' +import {logger as notyLogger} from '#/lib/notifications/util' import {buildStateObject} from '#/lib/routes/helpers' import { type AllNavigatorParams, @@ -71,6 +81,7 @@ import {MessagesSettingsScreen} from '#/screens/Messages/Settings' import {ModerationScreen} from '#/screens/Moderation' import {Screen as ModerationVerificationSettings} from '#/screens/Moderation/VerificationSettings' import {Screen as ModerationInteractionSettings} from '#/screens/ModerationInteractionSettings' +import {NotificationsActivityListScreen} from '#/screens/Notifications/ActivityList' import {PostLikedByScreen} from '#/screens/Post/PostLikedBy' import {PostQuotesScreen} from '#/screens/Post/PostQuotes' import {PostRepostedByScreen} from '#/screens/Post/PostRepostedBy' @@ -84,6 +95,7 @@ import {SearchScreen} from '#/screens/Search' import {AboutSettingsScreen} from '#/screens/Settings/AboutSettings' import {AccessibilitySettingsScreen} from '#/screens/Settings/AccessibilitySettings' import {AccountSettingsScreen} from '#/screens/Settings/AccountSettings' +import {ActivityPrivacySettingsScreen} from '#/screens/Settings/ActivityPrivacySettings' import {AppearanceSettingsScreen} from '#/screens/Settings/AppearanceSettings' import {AppIconSettingsScreen} from '#/screens/Settings/AppIconSettings' import {AppPasswordsScreen} from '#/screens/Settings/AppPasswords' @@ -92,6 +104,18 @@ import {ExternalMediaPreferencesScreen} from '#/screens/Settings/ExternalMediaPr import {FollowingFeedPreferencesScreen} from '#/screens/Settings/FollowingFeedPreferences' import {InterestsSettingsScreen} from '#/screens/Settings/InterestsSettings' import {LanguageSettingsScreen} from '#/screens/Settings/LanguageSettings' +import {LegacyNotificationSettingsScreen} from '#/screens/Settings/LegacyNotificationSettings' +import {NotificationSettingsScreen} from '#/screens/Settings/NotificationSettings' +import {ActivityNotificationSettingsScreen} from '#/screens/Settings/NotificationSettings/ActivityNotificationSettings' +import {LikeNotificationSettingsScreen} from '#/screens/Settings/NotificationSettings/LikeNotificationSettings' +import {LikesOnRepostsNotificationSettingsScreen} from '#/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings' +import {MentionNotificationSettingsScreen} from '#/screens/Settings/NotificationSettings/MentionNotificationSettings' +import {MiscellaneousNotificationSettingsScreen} from '#/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings' +import {NewFollowerNotificationSettingsScreen} from '#/screens/Settings/NotificationSettings/NewFollowerNotificationSettings' +import {QuoteNotificationSettingsScreen} from '#/screens/Settings/NotificationSettings/QuoteNotificationSettings' +import {ReplyNotificationSettingsScreen} from '#/screens/Settings/NotificationSettings/ReplyNotificationSettings' +import {RepostNotificationSettingsScreen} from '#/screens/Settings/NotificationSettings/RepostNotificationSettings' +import {RepostsOnRepostsNotificationSettingsScreen} from '#/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings' import {PrivacyAndSecuritySettingsScreen} from '#/screens/Settings/PrivacyAndSecuritySettings' import {SettingsScreen} from '#/screens/Settings/Settings' import {ThreadPreferencesScreen} from '#/screens/Settings/ThreadPreferences' @@ -109,17 +133,10 @@ import { } from '#/components/dialogs/EmailDialog' import {router} from '#/routes' import {Referrer} from '../modules/expo-bluesky-swiss-army' -import {LegacyNotificationSettingsScreen} from './screens/Settings/LegacyNotificationSettings' -import {NotificationSettingsScreen} from './screens/Settings/NotificationSettings' -import {LikeNotificationSettingsScreen} from './screens/Settings/NotificationSettings/LikeNotificationSettings' -import {LikesOnRepostsNotificationSettingsScreen} from './screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings' -import {MentionNotificationSettingsScreen} from './screens/Settings/NotificationSettings/MentionNotificationSettings' -import {MiscellaneousNotificationSettingsScreen} from './screens/Settings/NotificationSettings/MiscellaneousNotificationSettings' -import {NewFollowerNotificationSettingsScreen} from './screens/Settings/NotificationSettings/NewFollowerNotificationSettings' -import {QuoteNotificationSettingsScreen} from './screens/Settings/NotificationSettings/QuoteNotificationSettings' -import {ReplyNotificationSettingsScreen} from './screens/Settings/NotificationSettings/ReplyNotificationSettings' -import {RepostNotificationSettingsScreen} from './screens/Settings/NotificationSettings/RepostNotificationSettings' -import {RepostsOnRepostsNotificationSettingsScreen} from './screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings' +import {useAccountSwitcher} from './lib/hooks/useAccountSwitcher' +import {useNonReactiveCallback} from './lib/hooks/useNonReactiveCallback' +import {useLoggedOutViewControls} from './state/shell/logged-out' +import {useCloseAllActiveElements} from './state/util' const navigationRef = createNavigationContainerRef() @@ -390,6 +407,14 @@ function commonScreens(Stack: typeof Flat, unreadCountLabel?: string) { requireAuth: true, }} /> + ActivityPrivacySettingsScreen} + options={{ + title: title(msg`Privacy and Security`), + requireAuth: true, + }} + /> NotificationSettingsScreen} @@ -459,6 +484,14 @@ function commonScreens(Stack: typeof Flat, unreadCountLabel?: string) { requireAuth: true, }} /> + ActivityNotificationSettingsScreen} + options={{ + title: title(msg`Activity notifications`), + requireAuth: true, + }} + /> MiscellaneousNotificationSettingsScreen} @@ -524,6 +557,11 @@ function commonScreens(Stack: typeof Flat, unreadCountLabel?: string) { getComponent={() => MessagesInboxScreen} options={{title: title(msg`Chat request inbox`), requireAuth: true}} /> + NotificationsActivityListScreen} + options={{title: title(msg`Notifications`), requireAuth: true}} + /> LegacyNotificationSettingsScreen} @@ -571,7 +609,7 @@ function commonScreens(Stack: typeof Flat, unreadCountLabel?: string) { * in 3 distinct tab-stacks with a different root screen on each. */ function TabsNavigator() { - const tabBar = React.useCallback( + const tabBar = useCallback( (props: JSX.IntrinsicAttributes & BottomTabBarProps) => ( ), @@ -738,6 +776,7 @@ const FlatNavigator = () => { const LINKING = { // TODO figure out what we are going to use + // note: `bluesky://` is what is used in app.config.js prefixes: ['bsky://', 'bluesky://', 'https://bsky.app'], getPathFromState(state: State) { @@ -794,13 +833,107 @@ const LINKING = { return res } }, -} +} satisfies LinkingOptions + +/** + * Used to ensure we don't handle the same notification twice + */ +let lastHandledNotificationDateDedupe: number | undefined function RoutesContainer({children}: React.PropsWithChildren<{}>) { const theme = useColorSchemeStyle(DefaultTheme, DarkTheme) - const {currentAccount} = useSession() - const prevLoggedRouteName = React.useRef(undefined) + const {currentAccount, accounts} = useSession() + const {onPressSwitchAccount} = useAccountSwitcher() + const {setShowLoggedOut} = useLoggedOutViewControls() + const prevLoggedRouteName = useRef(undefined) const emailDialogControl = useEmailDialogControl() + const closeAllActiveElements = useCloseAllActiveElements() + + /** + * Handle navigation to a conversation, or prepares for account switch. + * + * Non-reactive because we need the latest data from some hooks + * after an async call - sfn + */ + const handleChatMessage = useNonReactiveCallback( + (payload: Extract) => { + notyLogger.debug(`handleChatMessage`, {payload}) + + if (payload.recipientDid !== currentAccount?.did) { + // handled in useNotificationHandler after account switch finishes + storePayloadForAccountSwitch(payload) + closeAllActiveElements() + + const account = accounts.find(a => a.did === payload.recipientDid) + if (account) { + onPressSwitchAccount(account, 'Notification') + } else { + setShowLoggedOut(true) + } + } else { + // @ts-expect-error nested navigators aren't typed -sfn + navigate('MessagesTab', { + screen: 'Messages', + params: { + pushToConversation: payload.convoId, + }, + }) + } + }, + ) + + async function handlePushNotificationEntry() { + if (!isNative) return + + // deep links take precedence - on android, + // getLastNotificationResponseAsync returns a "notification" + // that is actually a deep link. avoid handling it twice -sfn + if (await Linking.getInitialURL()) { + return + } + + /** + * The notification that caused the app to open, if applicable + */ + const response = await Notifications.getLastNotificationResponseAsync() + + if (response) { + notyLogger.debug(`handlePushNotificationEntry: response`, {response}) + + if (response.notification.date === lastHandledNotificationDateDedupe) + return + lastHandledNotificationDateDedupe = response.notification.date + + const payload = getNotificationPayload(response.notification) + + if (payload) { + notyLogger.metric( + 'notifications:openApp', + {reason: payload.reason, causedBoot: true}, + {statsig: false}, + ) + + if (payload.reason === 'chat-message') { + handleChatMessage(payload) + } else { + const path = notificationToURL(payload) + + if (path === '/notifications') { + resetToTab('NotificationsTab') + notyLogger.debug(`handlePushNotificationEntry: default navigate`) + } else if (path) { + const [screen, params] = router.matchPath(path) + // @ts-expect-error nested navigators aren't typed -sfn + navigate('HomeTab', {screen, params}) + notyLogger.debug(`handlePushNotificationEntry: navigate`, { + screen, + params, + }) + } + } + } + } + } function onReady() { prevLoggedRouteName.current = getCurrentRouteName() @@ -821,9 +954,7 @@ function RoutesContainer({children}: React.PropsWithChildren<{}>) { onStateChange={() => { logger.metric( 'router:navigate', - { - from: prevLoggedRouteName.current, - }, + {from: prevLoggedRouteName.current}, {statsig: false}, ) prevLoggedRouteName.current = getCurrentRouteName() @@ -833,6 +964,7 @@ function RoutesContainer({children}: React.PropsWithChildren<{}>) { logModuleInitTime() onReady() logger.metric('router:navigate', {}, {statsig: false}) + handlePushNotificationEntry() }} // WARNING: Implicit navigation to nested navigators is depreciated in React Navigation 7.x // However, there's a fair amount of places we do that, especially in when popping to the top of stacks. @@ -882,7 +1014,9 @@ function navigate( return Promise.resolve() } -function resetToTab(tabName: 'HomeTab' | 'SearchTab' | 'NotificationsTab') { +function resetToTab( + tabName: 'HomeTab' | 'SearchTab' | 'MessagesTab' | 'NotificationsTab', +) { if (navigationRef.isReady()) { navigate(tabName) if (navigationRef.canGoBack()) { @@ -915,39 +1049,6 @@ function reset(): Promise { } } -function handleLink(url: string) { - let path - if (url.startsWith('/')) { - path = url - } else if (url.startsWith('http')) { - try { - path = new URL(url).pathname - } catch (e) { - console.error('Invalid url', url, e) - return - } - } else { - console.error('Invalid url', url) - return - } - - const [name, params] = router.matchPath(path) - if (isNative) { - if (name === 'Search') { - resetToTab('SearchTab') - } else if (name === 'Notifications') { - resetToTab('NotificationsTab') - } else { - resetToTab('HomeTab') - // @ts-ignore matchPath doesnt give us type-checked output -prf - navigate(name, params) - } - } else { - // @ts-ignore matchPath doesnt give us type-checked output -prf - navigate(name, params) - } -} - let didInit = false function logModuleInitTime() { if (didInit) { @@ -988,7 +1089,6 @@ function logModuleInitTime() { export { FlatNavigator, - handleLink, navigate, reset, resetToTab, diff --git a/src/alf/atoms.ts b/src/alf/atoms.ts index 79ec41679a..5b7c5c87ea 100644 --- a/src/alf/atoms.ts +++ b/src/alf/atoms.ts @@ -67,6 +67,9 @@ export const atoms = { zIndex: 50, }, + overflow_visible: { + overflow: 'visible', + }, overflow_hidden: { overflow: 'hidden', }, @@ -329,6 +332,9 @@ export const atoms = { font_normal: { fontWeight: tokens.fontWeight.normal, }, + font_medium: { + fontWeight: tokens.fontWeight.medium, + }, font_bold: { fontWeight: tokens.fontWeight.bold, }, @@ -976,6 +982,12 @@ export const atoms = { hidden: { display: 'none', }, + inline: web({ + display: 'inline', + }), + block: web({ + display: 'block', + }), /* * Transition @@ -983,6 +995,10 @@ export const atoms = { transition_none: web({ transitionProperty: 'none', }), + transition_timing_default: web({ + transitionTimingFunction: 'cubic-bezier(0.17, 0.73, 0.14, 1)', + transitionDuration: '100ms', + }), transition_all: web({ transitionProperty: 'all', transitionTimingFunction: 'cubic-bezier(0.17, 0.73, 0.14, 1)', diff --git a/src/alf/fonts.ts b/src/alf/fonts.ts index 7869167212..7366edef2a 100644 --- a/src/alf/fonts.ts +++ b/src/alf/fonts.ts @@ -1,7 +1,7 @@ -import {TextStyle} from 'react-native' +import {type TextStyle} from 'react-native' import {isAndroid, isWeb} from '#/platform/detection' -import {Device, device} from '#/storage' +import {type Device, device} from '#/storage' const WEB_FONT_FAMILIES = `system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"` @@ -43,11 +43,11 @@ export function applyFonts(style: TextStyle, fontFamily: 'system' | 'theme') { style.fontFamily = { 400: 'Inter-Regular', - 500: 'Inter-Regular', + 500: 'Inter-Medium', 600: 'Inter-SemiBold', - 700: 'Inter-SemiBold', - 800: 'Inter-ExtraBold', - 900: 'Inter-ExtraBold', + 700: 'Inter-Bold', + 800: 'Inter-Bold', + 900: 'Inter-Bold', }[String(style.fontWeight || '400')] || 'Inter-Regular' if (style.fontStyle === 'italic') { diff --git a/src/alf/index.tsx b/src/alf/index.tsx index 5443669c70..bee8ed78cf 100644 --- a/src/alf/index.tsx +++ b/src/alf/index.tsx @@ -8,9 +8,9 @@ import { setFontScale as persistFontScale, } from '#/alf/fonts' import {createThemes, defaultTheme} from '#/alf/themes' -import {Theme, ThemeName} from '#/alf/types' +import {type Theme, type ThemeName} from '#/alf/types' import {BLUE_HUE, GREEN_HUE, RED_HUE} from '#/alf/util/colorGeneration' -import {Device} from '#/storage' +import {type Device} from '#/storage' export {atoms} from '#/alf/atoms' export * from '#/alf/breakpoints' @@ -61,6 +61,7 @@ export const Context = React.createContext({ }, flags: {}, }) +Context.displayName = 'AlfContext' export function ThemeProvider({ children, diff --git a/src/alf/tokens.ts b/src/alf/tokens.ts index 576aafe956..74cc160fc6 100644 --- a/src/alf/tokens.ts +++ b/src/alf/tokens.ts @@ -53,6 +53,7 @@ export const borderRadius = { */ export const fontWeight = { normal: '400', + medium: '500', bold: '600', heavy: '800', } as const diff --git a/src/alf/util/unusedUseFonts.android.ts b/src/alf/util/unusedUseFonts.android.ts index 083c9d4d65..467f3909fe 100644 --- a/src/alf/util/unusedUseFonts.android.ts +++ b/src/alf/util/unusedUseFonts.android.ts @@ -11,9 +11,11 @@ export function DO_NOT_USE() { return useFonts({ 'Inter-Regular': require('../../../assets/fonts/inter/Inter-Regular.otf'), 'Inter-Italic': require('../../../assets/fonts/inter/Inter-Italic.otf'), - 'Inter-Bold': require('../../../assets/fonts/inter/Inter-SemiBold.otf'), - 'Inter-BoldItalic': require('../../../assets/fonts/inter/Inter-SemiBoldItalic.otf'), - 'Inter-Black': require('../../../assets/fonts/inter/Inter-ExtraBold.otf'), - 'Inter-BlackItalic': require('../../../assets/fonts/inter/Inter-ExtraBoldItalic.otf'), + 'Inter-Medium': require('../../../assets/fonts/inter/Inter-Medium.otf'), + 'Inter-MediumItalic': require('../../../assets/fonts/inter/Inter-MediumItalic.otf'), + 'Inter-SemiBold': require('../../../assets/fonts/inter/Inter-SemiBold.otf'), + 'Inter-SemiBoldItalic': require('../../../assets/fonts/inter/Inter-SemiBoldItalic.otf'), + 'Inter-Bold': require('../../../assets/fonts/inter/Inter-Bold.otf'), + 'Inter-BoldItalic': require('../../../assets/fonts/inter/Inter-BoldItalic.otf'), }) } diff --git a/src/components/Admonition.tsx b/src/components/Admonition.tsx index cdb1f0b8b1..ea6751955f 100644 --- a/src/components/Admonition.tsx +++ b/src/components/Admonition.tsx @@ -23,6 +23,7 @@ type Context = { const Context = createContext({ type: 'info', }) +Context.displayName = 'AdmonitionContext' export function Icon() { const t = useTheme() diff --git a/src/components/Button.tsx b/src/components/Button.tsx index 42eb648443..5a0f0c1c76 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -14,31 +14,37 @@ import { View, type ViewStyle, } from 'react-native' -import {LinearGradient} from 'expo-linear-gradient' -import {atoms as a, flatten, select, tokens, useTheme} from '#/alf' +import {atoms as a, flatten, select, useTheme} from '#/alf' import {type Props as SVGIconProps} from '#/components/icons/common' import {Text} from '#/components/Typography' -export type ButtonVariant = 'solid' | 'outline' | 'ghost' | 'gradient' +/** + * The `Button` component, and some extensions of it like `Link` are intended + * to be generic and therefore apply no styles by default. These `VariantProps` + * are what control the `Button`'s presentation, and are intended only use cases where the buttons appear as, well, buttons. + * + * If `Button` or an extension of it are used for other compound components, use this property to avoid misuse of these variant props further down the line. + * + * @example + * type MyComponentProps = Omit & {...} + */ +export type UninheritableButtonProps = 'variant' | 'color' | 'size' | 'shape' + +export type ButtonVariant = 'solid' | 'outline' | 'ghost' export type ButtonColor = | 'primary' | 'secondary' | 'secondary_inverted' | 'negative' - | 'negative_secondary' - | 'gradient_primary' - | 'gradient_sky' - | 'gradient_midnight' - | 'gradient_sunrise' - | 'gradient_sunset' - | 'gradient_nordic' - | 'gradient_bonfire' + | 'primary_subtle' + | 'negative_subtle' export type ButtonSize = 'tiny' | 'small' | 'large' export type ButtonShape = 'round' | 'square' | 'default' export type VariantProps = { /** * The style variation of the button + * @deprecated Use `color` instead. */ variant?: ButtonVariant /** @@ -103,6 +109,7 @@ const Context = React.createContext({ pressed: false, disabled: false, }) +Context.displayName = 'ButtonContext' export function useButtonContext() { return React.useContext(Context) @@ -131,6 +138,15 @@ export const Button = React.forwardRef( }, ref, ) => { + /** + * The `variant` prop is deprecated in favor of simply specifying `color`. + * If a `color` is set, then we want to use the existing codepaths for + * "solid" buttons. This is to maintain backwards compatibility. + */ + if (!variant && color) { + variant = 'solid' + } + const t = useTheme() const [state, setState] = React.useState({ pressed: false, @@ -203,8 +219,13 @@ export const Button = React.forwardRef( const baseStyles: ViewStyle[] = [] const hoverStyles: ViewStyle[] = [] - if (color === 'primary') { - if (variant === 'solid') { + /* + * This is the happy path for new button styles, following the + * deprecation of `variant` prop. This redundant `variant` check is here + * just to make this handling easier to understand. + */ + if (variant === 'solid') { + if (color === 'primary') { if (!disabled) { baseStyles.push({ backgroundColor: t.palette.primary_500, @@ -214,108 +235,30 @@ export const Button = React.forwardRef( }) } else { baseStyles.push({ - backgroundColor: select(t.name, { - light: t.palette.primary_700, - dim: t.palette.primary_300, - dark: t.palette.primary_300, - }), + backgroundColor: t.palette.primary_200, }) } - } else if (variant === 'outline') { - baseStyles.push(a.border, t.atoms.bg, { - borderWidth: 1, - }) - - if (!disabled) { - baseStyles.push(a.border, { - borderColor: t.palette.primary_500, - }) - hoverStyles.push(a.border, { - backgroundColor: t.palette.primary_50, - }) - } else { - baseStyles.push(a.border, { - borderColor: t.palette.primary_200, - }) - } - } else if (variant === 'ghost') { - if (!disabled) { - baseStyles.push(t.atoms.bg) - hoverStyles.push({ - backgroundColor: t.palette.primary_100, - }) - } - } - } else if (color === 'secondary') { - if (variant === 'solid') { + } else if (color === 'secondary') { if (!disabled) { baseStyles.push(t.atoms.bg_contrast_25) - hoverStyles.push(t.atoms.bg_contrast_50) + hoverStyles.push(t.atoms.bg_contrast_100) } else { - baseStyles.push(t.atoms.bg_contrast_100) + baseStyles.push(t.atoms.bg_contrast_50) } - } else if (variant === 'outline') { - baseStyles.push(a.border, t.atoms.bg, { - borderWidth: 1, - }) - - if (!disabled) { - baseStyles.push(a.border, { - borderColor: t.palette.contrast_300, - }) - hoverStyles.push(t.atoms.bg_contrast_50) - } else { - baseStyles.push(a.border, { - borderColor: t.palette.contrast_200, - }) - } - } else if (variant === 'ghost') { - if (!disabled) { - baseStyles.push(t.atoms.bg) - hoverStyles.push({ - backgroundColor: t.palette.contrast_25, - }) - } - } - } else if (color === 'secondary_inverted') { - if (variant === 'solid') { + } else if (color === 'secondary_inverted') { if (!disabled) { baseStyles.push({ backgroundColor: t.palette.contrast_900, }) hoverStyles.push({ - backgroundColor: t.palette.contrast_950, + backgroundColor: t.palette.contrast_975, }) } else { baseStyles.push({ backgroundColor: t.palette.contrast_600, }) } - } else if (variant === 'outline') { - baseStyles.push(a.border, t.atoms.bg, { - borderWidth: 1, - }) - - if (!disabled) { - baseStyles.push(a.border, { - borderColor: t.palette.contrast_300, - }) - hoverStyles.push(t.atoms.bg_contrast_50) - } else { - baseStyles.push(a.border, { - borderColor: t.palette.contrast_200, - }) - } - } else if (variant === 'ghost') { - if (!disabled) { - baseStyles.push(t.atoms.bg) - hoverStyles.push({ - backgroundColor: t.palette.contrast_25, - }) - } - } - } else if (color === 'negative') { - if (variant === 'solid') { + } else if (color === 'negative') { if (!disabled) { baseStyles.push({ backgroundColor: t.palette.negative_500, @@ -324,41 +267,36 @@ export const Button = React.forwardRef( backgroundColor: t.palette.negative_600, }) } else { + baseStyles.push({ + backgroundColor: t.palette.negative_700, + }) + } + } else if (color === 'primary_subtle') { + if (!disabled) { baseStyles.push({ backgroundColor: select(t.name, { - light: t.palette.negative_700, - dim: t.palette.negative_300, - dark: t.palette.negative_300, + light: t.palette.primary_50, + dim: t.palette.primary_100, + dark: t.palette.primary_100, + }), + }) + hoverStyles.push({ + backgroundColor: select(t.name, { + light: t.palette.primary_100, + dim: t.palette.primary_200, + dark: t.palette.primary_200, + }), + }) + } else { + baseStyles.push({ + backgroundColor: select(t.name, { + light: t.palette.primary_25, + dim: t.palette.primary_50, + dark: t.palette.primary_50, }), }) } - } else if (variant === 'outline') { - baseStyles.push(a.border, t.atoms.bg, { - borderWidth: 1, - }) - - if (!disabled) { - baseStyles.push(a.border, { - borderColor: t.palette.negative_500, - }) - hoverStyles.push(a.border, { - backgroundColor: t.palette.negative_50, - }) - } else { - baseStyles.push(a.border, { - borderColor: t.palette.negative_200, - }) - } - } else if (variant === 'ghost') { - if (!disabled) { - baseStyles.push(t.atoms.bg) - hoverStyles.push({ - backgroundColor: t.palette.negative_100, - }) - } - } - } else if (color === 'negative_secondary') { - if (variant === 'solid') { + } else if (color === 'negative_subtle') { if (!disabled) { baseStyles.push({ backgroundColor: select(t.name, { @@ -377,80 +315,194 @@ export const Button = React.forwardRef( } else { baseStyles.push({ backgroundColor: select(t.name, { - light: t.palette.negative_100, + light: t.palette.negative_25, dim: t.palette.negative_50, dark: t.palette.negative_50, }), }) } - } else if (variant === 'outline') { - baseStyles.push(a.border, t.atoms.bg, { - borderWidth: 1, - }) + } + } else { + /* + * BEGIN DEPRECATED STYLES + */ + if (color === 'primary') { + if (variant === 'outline') { + baseStyles.push(a.border, t.atoms.bg, { + borderWidth: 1, + }) - if (!disabled) { - baseStyles.push(a.border, { - borderColor: t.palette.negative_500, - }) - hoverStyles.push(a.border, { - backgroundColor: t.palette.negative_50, - }) - } else { - baseStyles.push(a.border, { - borderColor: t.palette.negative_200, - }) + if (!disabled) { + baseStyles.push(a.border, { + borderColor: t.palette.primary_500, + }) + hoverStyles.push(a.border, { + backgroundColor: t.palette.primary_50, + }) + } else { + baseStyles.push(a.border, { + borderColor: t.palette.primary_200, + }) + } + } else if (variant === 'ghost') { + if (!disabled) { + baseStyles.push(t.atoms.bg) + hoverStyles.push({ + backgroundColor: t.palette.primary_100, + }) + } } - } else if (variant === 'ghost') { - if (!disabled) { - baseStyles.push(t.atoms.bg) - hoverStyles.push({ - backgroundColor: t.palette.negative_100, + } else if (color === 'secondary') { + if (variant === 'outline') { + baseStyles.push(a.border, t.atoms.bg, { + borderWidth: 1, }) + + if (!disabled) { + baseStyles.push(a.border, { + borderColor: t.palette.contrast_300, + }) + hoverStyles.push(t.atoms.bg_contrast_50) + } else { + baseStyles.push(a.border, { + borderColor: t.palette.contrast_200, + }) + } + } else if (variant === 'ghost') { + if (!disabled) { + baseStyles.push(t.atoms.bg) + hoverStyles.push({ + backgroundColor: t.palette.contrast_25, + }) + } + } + } else if (color === 'secondary_inverted') { + if (variant === 'outline') { + baseStyles.push(a.border, t.atoms.bg, { + borderWidth: 1, + }) + + if (!disabled) { + baseStyles.push(a.border, { + borderColor: t.palette.contrast_300, + }) + hoverStyles.push(t.atoms.bg_contrast_50) + } else { + baseStyles.push(a.border, { + borderColor: t.palette.contrast_200, + }) + } + } else if (variant === 'ghost') { + if (!disabled) { + baseStyles.push(t.atoms.bg) + hoverStyles.push({ + backgroundColor: t.palette.contrast_25, + }) + } + } + } else if (color === 'negative') { + if (variant === 'outline') { + baseStyles.push(a.border, t.atoms.bg, { + borderWidth: 1, + }) + + if (!disabled) { + baseStyles.push(a.border, { + borderColor: t.palette.negative_500, + }) + hoverStyles.push(a.border, { + backgroundColor: t.palette.negative_50, + }) + } else { + baseStyles.push(a.border, { + borderColor: t.palette.negative_200, + }) + } + } else if (variant === 'ghost') { + if (!disabled) { + baseStyles.push(t.atoms.bg) + hoverStyles.push({ + backgroundColor: t.palette.negative_100, + }) + } + } + } else if (color === 'negative_subtle') { + if (variant === 'outline') { + baseStyles.push(a.border, t.atoms.bg, { + borderWidth: 1, + }) + + if (!disabled) { + baseStyles.push(a.border, { + borderColor: t.palette.negative_500, + }) + hoverStyles.push(a.border, { + backgroundColor: t.palette.negative_50, + }) + } else { + baseStyles.push(a.border, { + borderColor: t.palette.negative_200, + }) + } + } else if (variant === 'ghost') { + if (!disabled) { + baseStyles.push(t.atoms.bg) + hoverStyles.push({ + backgroundColor: t.palette.negative_100, + }) + } } } + /* + * END DEPRECATED STYLES + */ } if (shape === 'default') { if (size === 'large') { baseStyles.push({ - paddingVertical: 13, - paddingHorizontal: 20, - borderRadius: 8, - gap: 8, + paddingVertical: 12, + paddingHorizontal: 25, + borderRadius: 10, + gap: 3, }) } else if (size === 'small') { baseStyles.push({ - paddingVertical: 9, - paddingHorizontal: 12, - borderRadius: 6, - gap: 6, + paddingVertical: 8, + paddingHorizontal: 13, + borderRadius: 8, + gap: 3, }) } else if (size === 'tiny') { baseStyles.push({ - paddingVertical: 4, - paddingHorizontal: 8, - borderRadius: 4, - gap: 4, + paddingVertical: 5, + paddingHorizontal: 9, + borderRadius: 6, + gap: 2, }) } } else if (shape === 'round' || shape === 'square') { + /* + * These sizes match the actual rendered size on screen, based on + * Chrome's web inspector + */ if (size === 'large') { if (shape === 'round') { - baseStyles.push({height: 46, width: 46}) + baseStyles.push({height: 44, width: 44}) } else { baseStyles.push({height: 44, width: 44}) } } else if (size === 'small') { if (shape === 'round') { - baseStyles.push({height: 34, width: 34}) + baseStyles.push({height: 33, width: 33}) } else { - baseStyles.push({height: 34, width: 34}) + baseStyles.push({height: 33, width: 33}) } } else if (size === 'tiny') { if (shape === 'round') { - baseStyles.push({height: 22, width: 22}) + baseStyles.push({height: 25, width: 25}) } else { - baseStyles.push({height: 21, width: 21}) + baseStyles.push({height: 25, width: 25}) } } @@ -458,7 +510,9 @@ export const Button = React.forwardRef( baseStyles.push(a.rounded_full) } else if (shape === 'square') { if (size === 'tiny') { - baseStyles.push(a.rounded_xs) + baseStyles.push({ + borderRadius: 6, + }) } else { baseStyles.push(a.rounded_sm) } @@ -471,49 +525,6 @@ export const Button = React.forwardRef( } }, [t, variant, color, size, shape, disabled]) - const gradientValues = React.useMemo(() => { - const gradient = { - primary: tokens.gradients.sky, - secondary: tokens.gradients.sky, - secondary_inverted: tokens.gradients.sky, - negative: tokens.gradients.sky, - negative_secondary: tokens.gradients.sky, - gradient_primary: tokens.gradients.primary, - gradient_sky: tokens.gradients.sky, - gradient_midnight: tokens.gradients.midnight, - gradient_sunrise: tokens.gradients.sunrise, - gradient_sunset: tokens.gradients.sunset, - gradient_nordic: tokens.gradients.nordic, - gradient_bonfire: tokens.gradients.bonfire, - }[color || 'primary'] - - if (variant === 'gradient') { - if (gradient.values.length < 2) { - throw new Error( - 'Gradient buttons must have at least two colors in the gradient', - ) - } - - return { - colors: gradient.values.map(([_, color]) => color) as [ - string, - string, - ...string[], - ], - hoverColors: gradient.values.map(_ => gradient.hover_value) as [ - string, - string, - ...string[], - ], - locations: gradient.values.map(([location, _]) => location) as [ - number, - number, - ...number[], - ], - } - } - }, [variant, color]) - const context = React.useMemo( () => ({ ...state, @@ -545,6 +556,7 @@ export const Button = React.forwardRef( a.flex_row, a.align_center, a.justify_center, + a.curve_continuous, flattenedBaseStyles, ...(state.hovered || state.pressed ? [hoverStyles, flatten(hoverStyleProp)] @@ -556,27 +568,6 @@ export const Button = React.forwardRef( onHoverOut={onHoverOut} onFocus={onFocus} onBlur={onBlur}> - {variant === 'gradient' && gradientValues && ( - - - - )} {typeof children === 'function' ? children(context) : children} @@ -592,159 +583,187 @@ export function useSharedButtonTextStyles() { return React.useMemo(() => { const baseStyles: TextStyle[] = [] - if (color === 'primary') { - if (variant === 'solid') { + /* + * This is the happy path for new button styles, following the + * deprecation of `variant` prop. This redundant `variant` check is here + * just to make this handling easier to understand. + */ + if (variant === 'solid') { + if (color === 'primary') { if (!disabled) { baseStyles.push({color: t.palette.white}) } else { - baseStyles.push({color: t.palette.white, opacity: 0.5}) - } - } else if (variant === 'outline') { - if (!disabled) { baseStyles.push({ - color: t.palette.primary_600, - }) - } else { - baseStyles.push({color: t.palette.primary_600, opacity: 0.5}) - } - } else if (variant === 'ghost') { - if (!disabled) { - baseStyles.push({color: t.palette.primary_600}) - } else { - baseStyles.push({color: t.palette.primary_600, opacity: 0.5}) - } - } - } else if (color === 'secondary') { - if (variant === 'solid' || variant === 'gradient') { - if (!disabled) { - baseStyles.push({ - color: t.palette.contrast_700, - }) - } else { - baseStyles.push({ - color: t.palette.contrast_400, + color: select(t.name, { + light: t.palette.white, + dim: t.atoms.text_inverted.color, + dark: t.atoms.text_inverted.color, + }), }) } - } else if (variant === 'outline') { + } else if (color === 'secondary') { if (!disabled) { - baseStyles.push({ - color: t.palette.contrast_600, - }) + baseStyles.push(t.atoms.text_contrast_medium) } else { baseStyles.push({ color: t.palette.contrast_300, }) } - } else if (variant === 'ghost') { + } else if (color === 'secondary_inverted') { if (!disabled) { - baseStyles.push({ - color: t.palette.contrast_600, - }) + baseStyles.push(t.atoms.text_inverted) } else { baseStyles.push({ color: t.palette.contrast_300, }) } - } - } else if (color === 'secondary_inverted') { - if (variant === 'solid' || variant === 'gradient') { - if (!disabled) { - baseStyles.push({ - color: t.palette.contrast_50, - }) - } else { - baseStyles.push({ - color: t.palette.contrast_400, - }) - } - } else if (variant === 'outline') { - if (!disabled) { - baseStyles.push({ - color: t.palette.contrast_600, - }) - } else { - baseStyles.push({ - color: t.palette.contrast_300, - }) - } - } else if (variant === 'ghost') { - if (!disabled) { - baseStyles.push({ - color: t.palette.contrast_600, - }) - } else { - baseStyles.push({ - color: t.palette.contrast_300, - }) - } - } - } else if (color === 'negative') { - if (variant === 'solid' || variant === 'gradient') { + } else if (color === 'negative') { if (!disabled) { baseStyles.push({color: t.palette.white}) } else { - baseStyles.push({color: t.palette.white, opacity: 0.5}) + baseStyles.push({color: t.palette.negative_300}) } - } else if (variant === 'outline') { - if (!disabled) { - baseStyles.push({color: t.palette.negative_400}) - } else { - baseStyles.push({color: t.palette.negative_400, opacity: 0.5}) - } - } else if (variant === 'ghost') { - if (!disabled) { - baseStyles.push({color: t.palette.negative_400}) - } else { - baseStyles.push({color: t.palette.negative_400, opacity: 0.5}) - } - } - } else if (color === 'negative_secondary') { - if (variant === 'solid' || variant === 'gradient') { + } else if (color === 'primary_subtle') { if (!disabled) { baseStyles.push({ color: select(t.name, { - light: t.palette.negative_500, - dim: t.palette.negative_950, - dark: t.palette.negative_900, + light: t.palette.primary_600, + dim: t.palette.primary_800, + dark: t.palette.primary_800, }), }) } else { baseStyles.push({ color: select(t.name, { - light: t.palette.negative_500, - dim: t.palette.negative_700, - dark: t.palette.negative_700, + light: t.palette.primary_200, + dim: t.palette.primary_200, + dark: t.palette.primary_200, }), - opacity: 0.5, }) } - } else if (variant === 'outline') { + } else if (color === 'negative_subtle') { if (!disabled) { - baseStyles.push({color: t.palette.negative_400}) + baseStyles.push({ + color: select(t.name, { + light: t.palette.negative_600, + dim: t.palette.negative_800, + dark: t.palette.negative_800, + }), + }) } else { - baseStyles.push({color: t.palette.negative_400, opacity: 0.5}) - } - } else if (variant === 'ghost') { - if (!disabled) { - baseStyles.push({color: t.palette.negative_400}) - } else { - baseStyles.push({color: t.palette.negative_400, opacity: 0.5}) + baseStyles.push({ + color: select(t.name, { + light: t.palette.negative_200, + dim: t.palette.negative_200, + dark: t.palette.negative_200, + }), + }) } } } else { - if (!disabled) { - baseStyles.push({color: t.palette.white}) - } else { - baseStyles.push({color: t.palette.white, opacity: 0.5}) + /* + * BEGIN DEPRECATED STYLES + */ + if (color === 'primary') { + if (variant === 'outline') { + if (!disabled) { + baseStyles.push({ + color: t.palette.primary_600, + }) + } else { + baseStyles.push({color: t.palette.primary_600, opacity: 0.5}) + } + } else if (variant === 'ghost') { + if (!disabled) { + baseStyles.push({color: t.palette.primary_600}) + } else { + baseStyles.push({color: t.palette.primary_600, opacity: 0.5}) + } + } + } else if (color === 'secondary') { + if (variant === 'outline') { + if (!disabled) { + baseStyles.push({ + color: t.palette.contrast_600, + }) + } else { + baseStyles.push({ + color: t.palette.contrast_300, + }) + } + } else if (variant === 'ghost') { + if (!disabled) { + baseStyles.push({ + color: t.palette.contrast_600, + }) + } else { + baseStyles.push({ + color: t.palette.contrast_300, + }) + } + } + } else if (color === 'secondary_inverted') { + if (variant === 'outline') { + if (!disabled) { + baseStyles.push({ + color: t.palette.contrast_600, + }) + } else { + baseStyles.push({ + color: t.palette.contrast_300, + }) + } + } else if (variant === 'ghost') { + if (!disabled) { + baseStyles.push({ + color: t.palette.contrast_600, + }) + } else { + baseStyles.push({ + color: t.palette.contrast_300, + }) + } + } + } else if (color === 'negative') { + if (variant === 'outline') { + if (!disabled) { + baseStyles.push({color: t.palette.negative_400}) + } else { + baseStyles.push({color: t.palette.negative_400, opacity: 0.5}) + } + } else if (variant === 'ghost') { + if (!disabled) { + baseStyles.push({color: t.palette.negative_400}) + } else { + baseStyles.push({color: t.palette.negative_400, opacity: 0.5}) + } + } + } else if (color === 'negative_subtle') { + if (variant === 'outline') { + if (!disabled) { + baseStyles.push({color: t.palette.negative_400}) + } else { + baseStyles.push({color: t.palette.negative_400, opacity: 0.5}) + } + } else if (variant === 'ghost') { + if (!disabled) { + baseStyles.push({color: t.palette.negative_400}) + } else { + baseStyles.push({color: t.palette.negative_400, opacity: 0.5}) + } + } } + /* + * END DEPRECATED STYLES + */ } if (size === 'large') { - baseStyles.push(a.text_md, a.leading_tight) + baseStyles.push(a.text_md, a.leading_snug, a.font_medium) } else if (size === 'small') { - baseStyles.push(a.text_sm, a.leading_tight) + baseStyles.push(a.text_sm, a.leading_snug, a.font_medium) } else if (size === 'tiny') { - baseStyles.push(a.text_xs, a.leading_tight) + baseStyles.push(a.text_xs, a.leading_snug, a.font_medium) } return StyleSheet.flatten(baseStyles) @@ -755,7 +774,7 @@ export function ButtonText({children, style, ...rest}: ButtonTextProps) { const textStyles = useSharedButtonTextStyles() return ( - + {children} ) @@ -763,14 +782,16 @@ export function ButtonText({children, style, ...rest}: ButtonTextProps) { export function ButtonIcon({ icon: Comp, - position, size, }: { icon: React.ComponentType + /** + * @deprecated no longer needed + */ position?: 'left' | 'right' size?: SVGIconProps['size'] }) { - const {size: buttonSize, disabled} = useButtonContext() + const {size: buttonSize} = useButtonContext() const textStyles = useSharedButtonTextStyles() const {iconSize, iconContainerSize} = React.useMemo(() => { /** @@ -779,7 +800,7 @@ export function ButtonIcon({ const iconSizeShorthand = size ?? (({ - large: 'sm', + large: 'md', small: 'sm', tiny: 'xs', }[buttonSize || 'small'] || 'sm') as Exclude< @@ -794,7 +815,7 @@ export function ButtonIcon({ const iconSize = { xs: 12, sm: 16, - md: 20, + md: 18, lg: 24, xl: 28, '2xl': 32, @@ -805,9 +826,9 @@ export function ButtonIcon({ * don't increase button size */ const iconContainerSize = { - large: 18, - small: 16, - tiny: 13, + large: 20, + small: 17, + tiny: 15, }[buttonSize || 'small'] return { @@ -823,9 +844,6 @@ export function ButtonIcon({ { width: iconContainerSize, height: iconContainerSize, - opacity: disabled ? 0.7 : 1, - marginLeft: position === 'left' ? -2 : 0, - marginRight: position === 'right' ? -2 : 0, }, ]}> (null) +Context.displayName = 'ContextMenuContext' export const MenuContext = React.createContext(null) +MenuContext.displayName = 'ContextMenuMenuContext' export const ItemContext = React.createContext(null) +ItemContext.displayName = 'ContextMenuItemContext' export function useContextMenuContext() { const context = React.useContext(Context) diff --git a/src/components/ContextMenu/index.tsx b/src/components/ContextMenu/index.tsx index 4a0814dfe3..dd7be13d0c 100644 --- a/src/components/ContextMenu/index.tsx +++ b/src/components/ContextMenu/index.tsx @@ -190,7 +190,7 @@ export function Root({children}: {children: React.ReactNode}) { if (item) playHaptic('Light') setHoveredMenuItem(item) }, - } satisfies ContextType), + }) satisfies ContextType, [ measurement, setMeasurement, @@ -710,8 +710,8 @@ export function Item({ const xOffset = position ? position.x : align === 'left' - ? measurement.x - : measurement.x + measurement.width - layout.width + ? measurement.x + : measurement.x + measurement.width - layout.width registerHoverable( id, diff --git a/src/components/Dialog/context.ts b/src/components/Dialog/context.ts index 2ecf5ba618..1caa4eac85 100644 --- a/src/components/Dialog/context.ts +++ b/src/components/Dialog/context.ts @@ -23,6 +23,7 @@ export const Context = createContext({ setDisableDrag: () => {}, isWithinDialog: false, }) +Context.displayName = 'DialogContext' export function useDialogContext() { return useContext(Context) diff --git a/src/components/Divider.tsx b/src/components/Divider.tsx index e4891aacb1..ec7a7356ad 100644 --- a/src/components/Divider.tsx +++ b/src/components/Divider.tsx @@ -1,18 +1,11 @@ import {View} from 'react-native' -import {atoms as a, flatten, useTheme, ViewStyleProp} from '#/alf' +import {atoms as a, useTheme, type ViewStyleProp} from '#/alf' export function Divider({style}: ViewStyleProp) { const t = useTheme() return ( - + ) } diff --git a/src/components/FeedCard.tsx b/src/components/FeedCard.tsx index f94692e5bd..33905dacd9 100644 --- a/src/components/FeedCard.tsx +++ b/src/components/FeedCard.tsx @@ -214,7 +214,7 @@ export function DescriptionPlaceholder() { export function Likes({count}: {count: number}) { const t = useTheme() return ( - + Liked by diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index a92e7be7f2..18da12b22c 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -25,18 +25,17 @@ import { type ViewStyleProp, web, } from '#/alf' -import {Button} from '#/components/Button' +import {Button, ButtonText} from '#/components/Button' import * as FeedCard from '#/components/FeedCard' import {ArrowRight_Stroke2_Corner0_Rounded as Arrow} from '#/components/icons/Arrow' import {Hashtag_Stroke2_Corner0_Rounded as Hashtag} from '#/components/icons/Hashtag' -import {PersonPlus_Stroke2_Corner0_Rounded as Person} from '#/components/icons/Person' import {InlineLinkText} from '#/components/Link' import * as ProfileCard from '#/components/ProfileCard' import {Text} from '#/components/Typography' import type * as bsky from '#/types/bsky' import {ProgressGuideList} from './ProgressGuide/List' -const MOBILE_CARD_WIDTH = 300 +const MOBILE_CARD_WIDTH = 165 function CardOuter({ children, @@ -48,8 +47,8 @@ function CardOuter({ - - - - - + return ( + + + + + + + + + + + + ) } @@ -243,10 +258,9 @@ export function ProfileGrid({ const t = useTheme() const {_} = useLingui() const moderationOpts = useModerationOpts() - const navigation = useNavigation() const {gtMobile} = useBreakpoints() const isLoading = isSuggestionsLoading || !moderationOpts - const maxLength = gtMobile ? 4 : 6 + const maxLength = gtMobile ? 3 : 6 const content = isLoading ? ( Array(maxLength) @@ -254,7 +268,14 @@ export function ProfileGrid({ .map((_, i) => ( + style={[ + gtMobile && + web([ + a.flex_0, + a.flex_grow, + {width: `calc(30% - ${a.gap_md.gap / 2}px)`}, + ]), + ]}> )) @@ -276,44 +297,69 @@ export function ProfileGrid({ }} style={[ a.flex_1, - gtMobile && web([a.flex_0, {width: 'calc(50% - 6px)'}]), + gtMobile && + web([ + a.flex_0, + a.flex_grow, + {width: `calc(30% - ${a.gap_md.gap / 2}px)`}, + ]), ]}> {({hovered, pressed}) => ( - + - - { - logEvent('suggestedUser:follow', { - logContext: - viewContext === 'feed' - ? 'InterstitialDiscover' - : 'InterstitialProfile', - location: 'Card', - recId, - position: index, - }) - }} - /> - - + + + + + + + { + logEvent('suggestedUser:follow', { + logContext: + viewContext === 'feed' + ? 'InterstitialDiscover' + : 'InterstitialProfile', + location: 'Card', + recId, + position: index, + }) + }} + /> )} @@ -332,37 +378,31 @@ export function ProfileGrid({ style={[a.border_t, t.atoms.border_contrast_low, t.atoms.bg_contrast_25]}> - + {viewContext === 'profile' ? ( Similar accounts ) : ( Suggested for you )} - + + See more + {gtMobile ? ( - - + + {content} - - - - Browse more suggestions - - - ) : ( @@ -372,28 +412,10 @@ export function ProfileGrid({ showsHorizontalScrollIndicator={false} snapToInterval={MOBILE_CARD_WIDTH + a.gap_md.gap} decelerationRate="fast"> - + {content} - + @@ -403,6 +425,33 @@ export function ProfileGrid({ ) } +function SeeMoreSuggestedProfilesCard() { + const navigation = useNavigation() + const t = useTheme() + const {_} = useLingui() + + return ( + + ) +} + export function SuggestedFeeds() { const numFeedsToDisplay = 3 const t = useTheme() diff --git a/src/components/FocusScope/index.tsx b/src/components/FocusScope/index.tsx new file mode 100644 index 0000000000..408381d5b8 --- /dev/null +++ b/src/components/FocusScope/index.tsx @@ -0,0 +1,144 @@ +import { + Children, + cloneElement, + isValidElement, + type ReactElement, + type ReactNode, + useCallback, + useEffect, + useMemo, + useRef, +} from 'react' +import { + AccessibilityInfo, + findNodeHandle, + Pressable, + Text, + View, +} from 'react-native' +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {useA11y} from '#/state/a11y' + +/** + * Conditionally wraps children in a `FocusTrap` component based on whether + * screen reader support is enabled. THIS SHOULD BE USED SPARINGLY, only when + * no better option is available. + */ +export function FocusScope({children}: {children: ReactNode}) { + const {screenReaderEnabled} = useA11y() + + return screenReaderEnabled ? {children} : children +} + +/** + * `FocusTrap` is intended as a last-ditch effort to ensure that users keep + * focus within a certain section of the app, like an overlay. + * + * It works by placing "guards" at the start and end of the active content. + * Then when the user reaches either of those guards, it will announce that + * they have reached the start or end of the content and tell them how to + * remain within the active content section. + */ +function FocusTrap({children}: {children: ReactNode}) { + const {_} = useLingui() + const child = useRef(null) + + /* + * Here we add a ref to the first child of this component. This currently + * overrides any ref already on that first child, so we throw an error here + * to prevent us from ever accidentally doing this. + */ + const decoratedChildren = useMemo(() => { + return Children.toArray(children).map((node, i) => { + if (i === 0 && isValidElement(node)) { + const n = node as ReactElement + if (n.props.ref !== undefined) { + throw new Error( + 'FocusScope needs to override the ref on its first child.', + ) + } + return cloneElement(n, { + ...n.props, + ref: child, + }) + } + return node + }) + }, [children]) + + const focusNode = useCallback((ref: View | null) => { + if (!ref) return + const node = findNodeHandle(ref) + if (node) { + AccessibilityInfo.setAccessibilityFocus(node) + } + }, []) + + useEffect(() => { + setTimeout(() => { + focusNode(child.current) + }, 1e3) + }, [focusNode]) + + return ( + <> + { + switch (event.nativeEvent.actionName) { + case 'activate': { + focusNode(child.current) + } + } + }}> + + + + {decoratedChildren} + + { + switch (event.nativeEvent.actionName) { + case 'activate': { + focusNode(child.current) + } + } + }}> + + + + ) +} + +function Noop() { + return ( + + {' '} + + ) +} diff --git a/src/components/FocusScope/index.web.tsx b/src/components/FocusScope/index.web.tsx new file mode 100644 index 0000000000..43ea06a2df --- /dev/null +++ b/src/components/FocusScope/index.web.tsx @@ -0,0 +1,15 @@ +import {type ReactNode} from 'react' +import {FocusScope as RadixFocusScope} from 'radix-ui/internal' + +/* + * The web version of the FocusScope component is a proper implementation, we + * use this in Dialogs and such already. It's here as a convenient counterpart + * to the hacky native solution. + */ +export function FocusScope({children}: {children: ReactNode}) { + return ( + + {children} + + ) +} diff --git a/src/components/Grid.tsx b/src/components/Grid.tsx index d424634de4..2bfac86733 100644 --- a/src/components/Grid.tsx +++ b/src/components/Grid.tsx @@ -1,11 +1,12 @@ import {createContext, useContext, useMemo} from 'react' import {View} from 'react-native' -import {atoms as a, ViewStyleProp} from '#/alf' +import {atoms as a, type ViewStyleProp} from '#/alf' const Context = createContext({ gap: 0, }) +Context.displayName = 'GridContext' export function Row({ children, diff --git a/src/components/KnownFollowers.tsx b/src/components/KnownFollowers.tsx index c60d0f92e8..28fb8f1f15 100644 --- a/src/components/KnownFollowers.tsx +++ b/src/components/KnownFollowers.tsx @@ -1,6 +1,10 @@ import React from 'react' import {View} from 'react-native' -import {AppBskyActorDefs, moderateProfile, ModerationOpts} from '@atproto/api' +import { + type AppBskyActorDefs, + moderateProfile, + type ModerationOpts, +} from '@atproto/api' import {msg, Plural, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' @@ -8,9 +12,9 @@ import {makeProfileLink} from '#/lib/routes/links' import {sanitizeDisplayName} from '#/lib/strings/display-names' import {UserAvatar} from '#/view/com/util/UserAvatar' import {atoms as a, useTheme} from '#/alf' -import {Link, LinkProps} from '#/components/Link' +import {Link, type LinkProps} from '#/components/Link' import {Text} from '#/components/Typography' -import * as bsky from '#/types/bsky' +import type * as bsky from '#/types/bsky' const AVI_SIZE = 30 const AVI_SIZE_SMALL = 20 @@ -137,9 +141,9 @@ function KnownFollowersInner({ <> 0 ? -8 : 0, }, ]}> ))} diff --git a/src/components/LanguageSelect.tsx b/src/components/LanguageSelect.tsx new file mode 100644 index 0000000000..2ad3949aee --- /dev/null +++ b/src/components/LanguageSelect.tsx @@ -0,0 +1,50 @@ +import React from 'react' +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {sanitizeAppLanguageSetting} from '#/locale/helpers' +import {APP_LANGUAGES} from '#/locale/languages' +import * as Select from '#/components/Select' + +export function LanguageSelect({ + value, + onChange, + items = APP_LANGUAGES.map(l => ({ + label: l.name, + value: l.code2, + })), +}: { + value?: string + onChange: (value: string) => void + items?: {label: string; value: string}[] +}) { + const {_} = useLingui() + + const handleOnChange = React.useCallback( + (value: string) => { + if (!value) return + onChange(sanitizeAppLanguageSetting(value)) + }, + [onChange], + ) + + return ( + + + + + + ( + + + {label} + + )} + items={items} + /> + + ) +} diff --git a/src/components/Layout/Header/index.tsx b/src/components/Layout/Header/index.tsx index d68f4bd1d2..1a049a6966 100644 --- a/src/components/Layout/Header/index.tsx +++ b/src/components/Layout/Header/index.tsx @@ -77,6 +77,7 @@ export function Outer({ } const AlignmentContext = createContext<'platform' | 'left'>('platform') +AlignmentContext.displayName = 'AlignmentContext' export function Content({ children, diff --git a/src/components/Layout/context.ts b/src/components/Layout/context.ts index 8e0c5445e8..f3ee7d4e51 100644 --- a/src/components/Layout/context.ts +++ b/src/components/Layout/context.ts @@ -3,3 +3,4 @@ import React from 'react' export const ScrollbarOffsetContext = React.createContext({ isWithinOffsetView: false, }) +ScrollbarOffsetContext.displayName = 'ScrollbarOffsetContext' diff --git a/src/components/Link.tsx b/src/components/Link.tsx index 28cd194185..6954be6a89 100644 --- a/src/components/Link.tsx +++ b/src/components/Link.tsx @@ -99,10 +99,10 @@ export function useLink({ return typeof to === 'string' ? convertBskyAppUrlIfNeeded(sanitizeUrl(to)) : to.screen - ? router.matchName(to.screen)?.build(to.params) - : to.href - ? convertBskyAppUrlIfNeeded(sanitizeUrl(to.href)) - : undefined + ? router.matchName(to.screen)?.build(to.params) + : to.href + ? convertBskyAppUrlIfNeeded(sanitizeUrl(to.href)) + : undefined }, [to]) if (!href) { @@ -192,7 +192,7 @@ export function useLink({ navigation.dispatch(StackActions.replace(screen, params)) } else if (action === 'navigate') { // @ts-expect-error not typed - navigation.navigate(screen, params) + navigation.navigate(screen, params, {pop: true}) } else { throw Error('Unsupported navigator action.') } diff --git a/src/components/ListCard.tsx b/src/components/ListCard.tsx index 30156ee0d3..e34830ea9c 100644 --- a/src/components/ListCard.tsx +++ b/src/components/ListCard.tsx @@ -1,10 +1,10 @@ import React from 'react' import {View} from 'react-native' import { - AppBskyGraphDefs, + type AppBskyGraphDefs, AtUri, moderateUserList, - ModerationUI, + type ModerationUI, } from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' @@ -22,10 +22,10 @@ import { Outer, SaveButton, } from '#/components/FeedCard' -import {Link as InternalLink, LinkProps} from '#/components/Link' +import {Link as InternalLink, type LinkProps} from '#/components/Link' import * as Hider from '#/components/moderation/Hider' import {Text} from '#/components/Typography' -import * as bsky from '#/types/bsky' +import type * as bsky from '#/types/bsky' /* * This component is based on `FeedCard` and is tightly coupled with that @@ -50,7 +50,9 @@ type Props = { showPinButton?: boolean } -export function Default(props: Props) { +export function Default( + props: Props & Omit, +) { const {view, showPinButton} = props const moderationOpts = useModerationOpts() const moderation = moderationOpts diff --git a/src/components/Lists.tsx b/src/components/Lists.tsx index 5c602249ba..311df3bcbe 100644 --- a/src/components/Lists.tsx +++ b/src/components/Lists.tsx @@ -1,7 +1,8 @@ -import React, {memo} from 'react' -import {StyleProp, View, ViewStyle} from 'react-native' +import {memo} from 'react' +import {type StyleProp, View, type ViewStyle} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' +import type React from 'react' import {cleanError} from '#/lib/strings/errors' import {CenteredView} from '#/view/com/util/Views' @@ -95,7 +96,7 @@ function ListFooterMaybeError({ )} + + + + By clicking "Continue" you acknowledge that you understand and + agree to these updates. + + + + + + ) +} diff --git a/src/components/PolicyUpdateOverlay/usePolicyUpdateState.ts b/src/components/PolicyUpdateOverlay/usePolicyUpdateState.ts new file mode 100644 index 0000000000..32b948af9d --- /dev/null +++ b/src/components/PolicyUpdateOverlay/usePolicyUpdateState.ts @@ -0,0 +1,155 @@ +import {useMemo} from 'react' + +import {useNux, useSaveNux} from '#/state/queries/nuxs' +import {ACTIVE_UPDATE_ID} from '#/components/PolicyUpdateOverlay/config' +import {logger} from '#/components/PolicyUpdateOverlay/logger' +import {IS_DEV} from '#/env' +import {device, useStorage} from '#/storage' + +export type PolicyUpdateState = { + completed: boolean + complete: () => void +} + +export function usePolicyUpdateState({ + enabled, +}: { + /** + * Used to skip the policy update overlay until we're actually ready to + * show it. + */ + enabled: boolean +}) { + const nux = useNux(ACTIVE_UPDATE_ID) + const {mutate: save, variables} = useSaveNux() + const deviceStorage = useStorage(device, [ACTIVE_UPDATE_ID]) + const debugOverride = + !!useStorage(device, ['policyUpdateDebugOverride'])[0] && IS_DEV + + return useMemo(() => { + /** + * If not enabled, then just return a completed state so the app functions + * as normal. + */ + if (!enabled) { + return { + completed: true, + complete() {}, + } + } + + const nuxIsReady = nux.status === 'ready' + const nuxIsCompleted = nux.nux?.completed === true + const nuxIsOptimisticallyCompleted = !!variables?.completed + const [completedForDevice, setCompletedForDevice] = deviceStorage + + const completed = computeCompletedState({ + nuxIsReady, + nuxIsCompleted, + nuxIsOptimisticallyCompleted, + completedForDevice, + }) + + logger.debug(`state`, { + completed, + nux, + completedForDevice, + }) + + if (!debugOverride) { + syncCompletedState({ + nuxIsReady, + nuxIsCompleted, + nuxIsOptimisticallyCompleted, + completedForDevice, + save, + setCompletedForDevice, + }) + } + + return { + completed, + complete() { + logger.debug(`user completed`) + save({ + id: ACTIVE_UPDATE_ID, + completed: true, + data: undefined, + }) + setCompletedForDevice(true) + }, + } + }, [enabled, nux, save, variables, deviceStorage, debugOverride]) +} + +export function computeCompletedState({ + nuxIsReady, + nuxIsCompleted, + nuxIsOptimisticallyCompleted, + completedForDevice, +}: { + nuxIsReady: boolean + nuxIsCompleted: boolean + nuxIsOptimisticallyCompleted: boolean + completedForDevice: boolean | undefined +}): boolean { + /** + * Assume completed to prevent flash + */ + let completed = true + + /** + * Prefer server state, if available + */ + if (nuxIsReady) { + completed = nuxIsCompleted + } + + /** + * Override with optimistic state or device state + */ + if (nuxIsOptimisticallyCompleted || !!completedForDevice) { + completed = true + } + + return completed +} + +export function syncCompletedState({ + nuxIsReady, + nuxIsCompleted, + nuxIsOptimisticallyCompleted, + completedForDevice, + save, + setCompletedForDevice, +}: { + nuxIsReady: boolean + nuxIsCompleted: boolean + nuxIsOptimisticallyCompleted: boolean + completedForDevice: boolean | undefined + save: ReturnType['mutate'] + setCompletedForDevice: (value: boolean) => void +}) { + /* + * Sync device state to server state for this account + */ + if ( + nuxIsReady && + !nuxIsCompleted && + !nuxIsOptimisticallyCompleted && + !!completedForDevice + ) { + logger.debug(`syncing device state to server state`) + save({ + id: ACTIVE_UPDATE_ID, + completed: true, + data: undefined, + }) + } else if (nuxIsReady && nuxIsCompleted && !completedForDevice) { + logger.debug(`syncing server state to device state`) + /* + * Sync server state to device state + */ + setCompletedForDevice(true) + } +} diff --git a/src/components/PolicyUpdateOverlay/usePreemptivelyCompleteActivePolicyUpdate.ts b/src/components/PolicyUpdateOverlay/usePreemptivelyCompleteActivePolicyUpdate.ts new file mode 100644 index 0000000000..f41b3e6d7d --- /dev/null +++ b/src/components/PolicyUpdateOverlay/usePreemptivelyCompleteActivePolicyUpdate.ts @@ -0,0 +1,21 @@ +import {useCallback} from 'react' + +import {ACTIVE_UPDATE_ID} from '#/components/PolicyUpdateOverlay/config' +import {logger} from '#/components/PolicyUpdateOverlay/logger' +import {device, useStorage} from '#/storage' + +/* + * Marks the active policy update as completed in device storage. + * `usePolicyUpdateState` will react to this and replicate this status in the + * server NUX state for this account. + */ +export function usePreemptivelyCompleteActivePolicyUpdate() { + const [_completedForDevice, setCompletedForDevice] = useStorage(device, [ + ACTIVE_UPDATE_ID, + ]) + + return useCallback(() => { + logger.debug(`preemptively completing active policy update`) + setCompletedForDevice(true) + }, [setCompletedForDevice]) +} diff --git a/src/components/Portal.tsx b/src/components/Portal.tsx index 4e03d6b089..b4bebce4de 100644 --- a/src/components/Portal.tsx +++ b/src/components/Portal.tsx @@ -28,6 +28,7 @@ export function createPortalGroup() { append: () => {}, remove: () => {}, }) + Context.displayName = 'PortalContext' function Provider(props: React.PropsWithChildren<{}>) { const map = useRef({}) diff --git a/src/components/Post/Embed/FeedEmbed.tsx b/src/components/Post/Embed/FeedEmbed.tsx index fad4cd4d8b..47d59e3463 100644 --- a/src/components/Post/Embed/FeedEmbed.tsx +++ b/src/components/Post/Embed/FeedEmbed.tsx @@ -1,10 +1,9 @@ -import React from 'react' -import {StyleSheet} from 'react-native' +import {useMemo} from 'react' import {moderateFeedGenerator} from '@atproto/api' -import {usePalette} from '#/lib/hooks/usePalette' import {useModerationOpts} from '#/state/preferences/moderation-opts' -import {FeedSourceCard} from '#/view/com/feeds/FeedSourceCard' +import {atoms as a, useTheme} from '#/alf' +import * as FeedCard from '#/components/FeedCard' import {ContentHider} from '#/components/moderation/ContentHider' import {type EmbedType} from '#/types/bsky/post' import {type CommonProps} from './types' @@ -14,13 +13,22 @@ export function FeedEmbed({ }: CommonProps & { embed: EmbedType<'feed'> }) { - const pal = usePalette('default') + const t = useTheme() return ( - + + + + + + + + + ) } @@ -30,23 +38,16 @@ export function ModeratedFeedEmbed({ embed: EmbedType<'feed'> }) { const moderationOpts = useModerationOpts() - const moderation = React.useMemo(() => { + const moderation = useMemo(() => { return moderationOpts ? moderateFeedGenerator(embed.view, moderationOpts) : undefined }, [embed.view, moderationOpts]) return ( - + ) } - -const styles = StyleSheet.create({ - customFeedOuter: { - borderWidth: StyleSheet.hairlineWidth, - borderRadius: 8, - paddingHorizontal: 12, - paddingVertical: 12, - }, -}) diff --git a/src/components/Post/Embed/ImageEmbed.tsx b/src/components/Post/Embed/ImageEmbed.tsx index 030d237a03..4ed17230e5 100644 --- a/src/components/Post/Embed/ImageEmbed.tsx +++ b/src/components/Post/Embed/ImageEmbed.tsx @@ -77,9 +77,9 @@ export function ImageEmbed({ rest.viewContext === PostEmbedViewContext.ThreadHighlighted ? 'none' : rest.viewContext === - PostEmbedViewContext.FeedEmbedRecordWithMedia - ? 'square' - : 'constrained' + PostEmbedViewContext.FeedEmbedRecordWithMedia + ? 'square' + : 'constrained' } image={image} onPress={(containerRef, dims) => onPress(0, [containerRef], [dims])} diff --git a/src/components/Post/Embed/ListEmbed.tsx b/src/components/Post/Embed/ListEmbed.tsx index 82685d2715..c1450bdcf9 100644 --- a/src/components/Post/Embed/ListEmbed.tsx +++ b/src/components/Post/Embed/ListEmbed.tsx @@ -1,5 +1,4 @@ -import React from 'react' -import {View} from 'react-native' +import {useMemo} from 'react' import {moderateUserList} from '@atproto/api' import {useModerationOpts} from '#/state/preferences/moderation-opts' @@ -16,10 +15,10 @@ export function ListEmbed({ }) { const t = useTheme() return ( - - - + ) } @@ -29,13 +28,15 @@ export function ModeratedListEmbed({ embed: EmbedType<'list'> }) { const moderationOpts = useModerationOpts() - const moderation = React.useMemo(() => { + const moderation = useMemo(() => { return moderationOpts ? moderateUserList(embed.view, moderationOpts) : undefined }, [embed.view, moderationOpts]) return ( - + ) diff --git a/src/components/Post/Embed/VideoEmbed/ActiveVideoWebContext.tsx b/src/components/Post/Embed/VideoEmbed/ActiveVideoWebContext.tsx index a038403b22..c6e0eec32e 100644 --- a/src/components/Post/Embed/VideoEmbed/ActiveVideoWebContext.tsx +++ b/src/components/Post/Embed/VideoEmbed/ActiveVideoWebContext.tsx @@ -15,6 +15,7 @@ const Context = React.createContext<{ setActiveView: (viewId: string) => void sendViewPosition: (viewId: string, y: number) => void } | null>(null) +Context.displayName = 'ActiveVideoWebContext' export function Provider({children}: {children: React.ReactNode}) { if (!isWeb) { diff --git a/src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx b/src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx index 351e9f3056..ecc36dc33b 100644 --- a/src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx +++ b/src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx @@ -1,4 +1,4 @@ -import React, {useRef} from 'react' +import {useImperativeHandle, useRef, useState} from 'react' import {Pressable, type StyleProp, View, type ViewStyle} from 'react-native' import {type AppBskyEmbedVideo} from '@atproto/api' import {BlueskyVideoView} from '@haileyok/bluesky-video' @@ -17,91 +17,88 @@ import {MediaInsetBorder} from '#/components/MediaInsetBorder' import {useVideoMuteState} from '#/components/Post/Embed/VideoEmbed/VideoVolumeContext' import {TimeIndicator} from './TimeIndicator' -export const VideoEmbedInnerNative = React.forwardRef( - function VideoEmbedInnerNative( - { - embed, - setStatus, - setIsLoading, - setIsActive, - }: { - embed: AppBskyEmbedVideo.View - setStatus: (status: 'playing' | 'paused') => void - setIsLoading: (isLoading: boolean) => void - setIsActive: (isActive: boolean) => void +export function VideoEmbedInnerNative({ + ref, + embed, + setStatus, + setIsLoading, + setIsActive, +}: { + ref: React.Ref<{togglePlayback: () => void}> + embed: AppBskyEmbedVideo.View + setStatus: (status: 'playing' | 'paused') => void + setIsLoading: (isLoading: boolean) => void + setIsActive: (isActive: boolean) => void +}) { + const {_} = useLingui() + const videoRef = useRef(null) + const autoplayDisabled = useAutoplayDisabled() + const isWithinMessage = useIsWithinMessage() + const [muted, setMuted] = useVideoMuteState() + + const [isPlaying, setIsPlaying] = useState(false) + const [timeRemaining, setTimeRemaining] = useState(0) + const [error, setError] = useState() + + useImperativeHandle(ref, () => ({ + togglePlayback: () => { + videoRef.current?.togglePlayback() }, - ref: React.Ref<{togglePlayback: () => void}>, - ) { - const {_} = useLingui() - const videoRef = useRef(null) - const autoplayDisabled = useAutoplayDisabled() - const isWithinMessage = useIsWithinMessage() - const [muted, setMuted] = useVideoMuteState() + })) - const [isPlaying, setIsPlaying] = React.useState(false) - const [timeRemaining, setTimeRemaining] = React.useState(0) - const [error, setError] = React.useState() + if (error) { + throw new Error(error) + } - React.useImperativeHandle(ref, () => ({ - togglePlayback: () => { - videoRef.current?.togglePlayback() - }, - })) - - if (error) { - throw new Error(error) - } - - return ( - - { - setIsActive(e.nativeEvent.isActive) - }} - onLoadingChange={e => { - setIsLoading(e.nativeEvent.isLoading) - }} - onMutedChange={e => { - setMuted(e.nativeEvent.isMuted) - }} - onStatusChange={e => { - setStatus(e.nativeEvent.status) - setIsPlaying(e.nativeEvent.status === 'playing') - }} - onTimeRemainingChange={e => { - setTimeRemaining(e.nativeEvent.timeRemaining) - }} - onError={e => { - setError(e.nativeEvent.error) - }} - ref={videoRef} - accessibilityLabel={ - embed.alt ? _(msg`Video: ${embed.alt}`) : _(msg`Video`) - } - accessibilityHint="" - /> - { - videoRef.current?.enterFullscreen(true) - }} - toggleMuted={() => { - videoRef.current?.toggleMuted() - }} - togglePlayback={() => { - videoRef.current?.togglePlayback() - }} - isPlaying={isPlaying} - timeRemaining={timeRemaining} - /> - - - ) - }, -) + return ( + + { + setIsActive(e.nativeEvent.isActive) + }} + onLoadingChange={e => { + setIsLoading(e.nativeEvent.isLoading) + }} + onMutedChange={e => { + setMuted(e.nativeEvent.isMuted) + }} + onStatusChange={e => { + setStatus(e.nativeEvent.status) + setIsPlaying(e.nativeEvent.status === 'playing') + }} + onTimeRemainingChange={e => { + setTimeRemaining(e.nativeEvent.timeRemaining) + }} + onError={e => { + setError(e.nativeEvent.error) + }} + ref={videoRef} + accessibilityLabel={ + embed.alt ? _(msg`Video: ${embed.alt}`) : _(msg`Video`) + } + accessibilityHint="" + /> + { + videoRef.current?.enterFullscreen(true) + }} + toggleMuted={() => { + videoRef.current?.toggleMuted() + }} + togglePlayback={() => { + videoRef.current?.togglePlayback() + }} + isPlaying={isPlaying} + timeRemaining={timeRemaining} + /> + + + ) +} function VideoControls({ enterFullscreen, diff --git a/src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx b/src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx index ce3a7b2c90..266438c044 100644 --- a/src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx +++ b/src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx @@ -224,15 +224,19 @@ function useHLS({ throw new HLSUnsupportedError() } + const latestEstimate = BandwidthEstimate.get() const hls = new Hls({ maxMaxBufferLength: 10, // only load 10s ahead // note: the amount buffered is affected by both maxBufferLength and maxBufferSize // it will buffer until it is greater than *both* of those values // so we use maxMaxBufferLength to set the actual maximum amount of buffering instead + startLevel: + latestEstimate === undefined ? -1 : Hls.DefaultConfig.startLevel, + // the '-1' value makes a test request to estimate bandwidth and quality level + // before showing the first fragment }) hlsRef.current = hls - const latestEstimate = BandwidthEstimate.get() if (latestEstimate !== undefined) { hls.bandwidthEstimate = latestEstimate } diff --git a/src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx b/src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx index 6d14deafc0..676b52661a 100644 --- a/src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx +++ b/src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx @@ -317,8 +317,8 @@ export function Controls({ !focused ? msg`Unmute video` : playing - ? msg`Pause video` - : msg`Play video`, + ? msg`Pause video` + : msg`Play video`, )} accessibilityHint="" style={[ diff --git a/src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/utils.tsx b/src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/utils.tsx index 320f61a5f8..db5ae6ac32 100644 --- a/src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/utils.tsx +++ b/src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/utils.tsx @@ -1,6 +1,7 @@ import {type RefObject, useCallback, useEffect, useRef, useState} from 'react' import {isSafari} from '#/lib/browser' +import {logger} from '#/logger' import {useVideoVolumeState} from '#/components/Post/Embed/VideoEmbed/VideoVolumeContext' export function useVideoElement(ref: RefObject) { @@ -79,7 +80,12 @@ export function useVideoElement(ref: RefObject) { await ref.current.play() } catch (e: any) { if ( - !e.message?.includes(`The request is not allowed by the user agent`) + !e.message?.includes( + `The request is not allowed by the user agent`, + ) && + !e.message?.includes( + `The play() request was interrupted by a call to pause()`, + ) ) { throw e } @@ -176,8 +182,15 @@ export function useVideoElement(ref: RefObject) { } else { const promise = ref.current.play() if (promise !== undefined) { - promise.catch(err => { - console.error('Error playing video:', err) + promise.catch((err: any) => { + if ( + // ignore this common error. it's fine + !err.message?.includes( + `The play() request was interrupted by a call to pause()`, + ) + ) { + logger.error('Error playing video:', {message: err}) + } }) } } diff --git a/src/components/Post/Embed/VideoEmbed/VideoVolumeContext.tsx b/src/components/Post/Embed/VideoEmbed/VideoVolumeContext.tsx index 6343081da8..7db5f9842e 100644 --- a/src/components/Post/Embed/VideoEmbed/VideoVolumeContext.tsx +++ b/src/components/Post/Embed/VideoEmbed/VideoVolumeContext.tsx @@ -8,6 +8,7 @@ const Context = React.createContext<{ volume: number setVolume: React.Dispatch> } | null>(null) +Context.displayName = 'VideoVolumeContext' export function Provider({children}: {children: React.ReactNode}) { const [muted, setMuted] = React.useState(true) diff --git a/src/components/Post/Embed/VideoEmbed/index.tsx b/src/components/Post/Embed/VideoEmbed/index.tsx index 8cb78ff70b..c66d1a2185 100644 --- a/src/components/Post/Embed/VideoEmbed/index.tsx +++ b/src/components/Post/Embed/VideoEmbed/index.tsx @@ -1,4 +1,4 @@ -import React, {useCallback, useState} from 'react' +import {useCallback, useRef, useState} from 'react' import {ActivityIndicator, View} from 'react-native' import {ImageBackground} from 'expo-image' import {type AppBskyEmbedVideo} from '@atproto/api' @@ -81,13 +81,13 @@ export function VideoEmbed({embed, crop}: Props) { function InnerWrapper({embed}: Props) { const {_} = useLingui() - const ref = React.useRef<{togglePlayback: () => void}>(null) + const ref = useRef<{togglePlayback: () => void}>(null) - const [status, setStatus] = React.useState<'playing' | 'paused' | 'pending'>( + const [status, setStatus] = useState<'playing' | 'paused' | 'pending'>( 'pending', ) - const [isLoading, setIsLoading] = React.useState(false) - const [isActive, setIsActive] = React.useState(false) + const [isLoading, setIsLoading] = useState(false) + const [isActive, setIsActive] = useState(false) const showSpinner = useThrottledValue(isActive && isLoading, 100) const showOverlay = @@ -96,11 +96,9 @@ function InnerWrapper({embed}: Props) { (status === 'paused' && !isActive) || status === 'pending' - React.useEffect(() => { - if (!isActive && status !== 'pending') { - setStatus('pending') - } - }, [isActive, status]) + if (!isActive && status !== 'pending') { + setStatus('pending') + } return ( <> @@ -131,8 +129,7 @@ function InnerWrapper({embed}: Props) { onPress={() => { ref.current?.togglePlayback() }} - label={_(msg`Play video`)} - color="secondary"> + label={_(msg`Play video`)}> {showSpinner ? ( evt.stopPropagation()}> - + - + ) return ( - {cropDisabled ? ( - - {contents} - - ) : ( - - {contents} - - )} + + {cropDisabled ? ( + + {contents} + + ) : ( + + {contents} + + )} + ) } +const NearScreenContext = createContext(false) +NearScreenContext.displayName = 'VideoNearScreenContext' + /** * Renders a 100vh tall div and watches it with an IntersectionObserver to * send the position of the div when it's near the screen. + * + * IMPORTANT: ViewportObserver _must_ not be within a `overflow: hidden` container. */ function ViewportObserver({ children, @@ -164,7 +178,9 @@ function ViewportObserver({ return ( - {nearScreen && children} + + {children} +
{ + const nearScreen = useContext(NearScreenContext) + + return nearScreen ? children : null +} + function VideoError({error, retry}: {error: unknown; retry: () => void}) { const {_} = useLingui() diff --git a/src/components/Post/Embed/index.tsx b/src/components/Post/Embed/index.tsx index ace85dc984..9c5444b27d 100644 --- a/src/components/Post/Embed/index.tsx +++ b/src/components/Post/Embed/index.tsx @@ -268,64 +268,60 @@ export function QuoteEmbed({ const [hover, setHover] = React.useState(false) return ( { - setHover(true) - }} - onPointerLeave={() => { - setHover(false) - }}> + style={[a.mt_sm]} + onPointerEnter={() => setHover(true)} + onPointerLeave={() => setHover(false)}> - - - - - - {moderation ? ( - - ) : null} - {richText ? ( - - ) : null} - {quote.embed && ( - - )} - + {({active}) => ( + <> + {!active && } + + + + + {moderation ? ( + + ) : null} + {richText ? ( + + ) : null} + {quote.embed && ( + + )} + + + )} ) diff --git a/src/components/Post/PostRepliedTo.tsx b/src/components/Post/PostRepliedTo.tsx new file mode 100644 index 0000000000..3085826c23 --- /dev/null +++ b/src/components/Post/PostRepliedTo.tsx @@ -0,0 +1,63 @@ +import {View} from 'react-native' +import {Trans} from '@lingui/macro' + +import {useSession} from '#/state/session' +import {UserInfoText} from '#/view/com/util/UserInfoText' +import {atoms as a, useTheme} from '#/alf' +import {ArrowCornerDownRight_Stroke2_Corner2_Rounded as ArrowCornerDownRightIcon} from '#/components/icons/ArrowCornerDownRight' +import {ProfileHoverCard} from '#/components/ProfileHoverCard' +import {Text} from '#/components/Typography' +import type * as bsky from '#/types/bsky' + +export function PostRepliedTo({ + parentAuthor, + isParentBlocked, + isParentNotFound, +}: { + parentAuthor: string | bsky.profile.AnyProfileView | undefined + isParentBlocked?: boolean + isParentNotFound?: boolean +}) { + const t = useTheme() + const {currentAccount} = useSession() + + const textStyle = [a.text_sm, t.atoms.text_contrast_medium, a.leading_snug] + + let label + if (isParentBlocked) { + label = Replied to a blocked post + } else if (isParentNotFound) { + label = Replied to a post + } else if (parentAuthor) { + const did = + typeof parentAuthor === 'string' ? parentAuthor : parentAuthor.did + const isMe = currentAccount?.did === did + if (isMe) { + label = Replied to you + } else { + label = ( + + Replied to{' '} + + + + + ) + } + } + + if (!label) { + // Should not happen. + return null + } + + return ( + + + {label} + + ) +} diff --git a/src/components/PostControls/DiscoverDebug.tsx b/src/components/PostControls/DiscoverDebug.tsx index 796981f0c2..02f55b7991 100644 --- a/src/components/PostControls/DiscoverDebug.tsx +++ b/src/components/PostControls/DiscoverDebug.tsx @@ -2,13 +2,13 @@ import {Pressable} from 'react-native' import * as Clipboard from 'expo-clipboard' import {t} from '@lingui/macro' -import {IS_INTERNAL} from '#/lib/app-info' import {DISCOVER_DEBUG_DIDS} from '#/lib/constants' import {useGate} from '#/lib/statsig/statsig' import {useSession} from '#/state/session' import * as Toast from '#/view/com/util/Toast' import {atoms as a, useBreakpoints, useTheme} from '#/alf' import {Text} from '#/components/Typography' +import {IS_INTERNAL} from '#/env' export function DiscoverDebug({ feedContext, @@ -32,8 +32,7 @@ export function DiscoverDebug({ hitSlop={10} style={[ a.absolute, - a.bottom_0, - {zIndex: 1000}, + {zIndex: 1000, maxWidth: 65, bottom: -4}, gtMobile ? a.right_0 : a.left_0, ]} onPress={e => { @@ -42,6 +41,7 @@ export function DiscoverDebug({ Toast.show(t`Copied to clipboard`, 'clipboard-check') }}> ({}) +PostControlContext.displayName = 'PostControlContext' // Base button style, which the the other ones extend export function PostControlButton({ diff --git a/src/components/PostControls/PostMenu/PostMenuItems.tsx b/src/components/PostControls/PostMenu/PostMenuItems.tsx index 01ddd0bcfc..3fd919cd3e 100644 --- a/src/components/PostControls/PostMenu/PostMenuItems.tsx +++ b/src/components/PostControls/PostMenu/PostMenuItems.tsx @@ -17,9 +17,9 @@ import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useNavigation} from '@react-navigation/native' -import {IS_INTERNAL} from '#/lib/app-info' import {DISCOVER_DEBUG_DIDS} from '#/lib/constants' import {useOpenLink} from '#/lib/hooks/useOpenLink' +import {useTranslate} from '#/lib/hooks/useTranslate' import {getCurrentRoute} from '#/lib/routes/helpers' import {makeProfileLink} from '#/lib/routes/links' import { @@ -29,7 +29,6 @@ import { import {logEvent, useGate} from '#/lib/statsig/statsig' import {richTextToString} from '#/lib/strings/rich-text-helpers' import {toShareUrl} from '#/lib/strings/url-helpers' -import {getTranslatorLink} from '#/locale/helpers' import {logger} from '#/logger' import {type Shadow} from '#/state/cache/post-shadow' import {useProfileShadow} from '#/state/cache/profile-shadow' @@ -83,6 +82,7 @@ import { useReportDialogControl, } from '#/components/moderation/ReportDialog' import * as Prompt from '#/components/Prompt' +import {IS_INTERNAL} from '#/env' import * as bsky from '#/types/bsky' let PostMenuItems = ({ @@ -118,6 +118,7 @@ let PostMenuItems = ({ const {hidePost} = useHiddenPostsApi() const feedFeedback = useFeedFeedbackContext() const openLink = useOpenLink() + const translate = useTranslate() const navigation = useNavigation() const {mutedWordsDialogControl} = useGlobalDialogsControlContext() const blockPromptControl = useDialogControl() @@ -172,11 +173,6 @@ let PostMenuItems = ({ return makeProfileLink(postAuthor, 'post', urip.rkey) }, [postUri, postAuthor]) - const translatorUrl = getTranslatorLink( - record.text, - langPrefs.primaryLanguage, - ) - const onDeletePost = () => { deletePostMutate({uri: postUri}).then( () => { @@ -234,8 +230,8 @@ let PostMenuItems = ({ Toast.show(_(msg`Copied to clipboard`), 'clipboard-check') } - const onPressTranslate = async () => { - await openLink(translatorUrl, true) + const onPressTranslate = () => { + translate(record.text, langPrefs.primaryLanguage) if ( bsky.dangerousIsType( @@ -600,8 +596,8 @@ let PostMenuItems = ({ isDetachPending ? Loader : quoteEmbed.isDetached - ? Eye - : EyeSlash + ? Eye + : EyeSlash } position="right" /> diff --git a/src/components/PostControls/RepostButton.tsx b/src/components/PostControls/RepostButton.tsx index 31438c6bd3..e09950b49c 100644 --- a/src/components/PostControls/RepostButton.tsx +++ b/src/components/PostControls/RepostButton.tsx @@ -145,7 +145,7 @@ let RepostButtonDialogInner = ({ + )} + ) @@ -226,10 +249,10 @@ function Rules({ Only{' '} {settings.map((rule, i) => ( - + - + ))}{' '} can reply. diff --git a/src/components/activity-notifications/SubscribeProfileButton.tsx b/src/components/activity-notifications/SubscribeProfileButton.tsx new file mode 100644 index 0000000000..71253dca9b --- /dev/null +++ b/src/components/activity-notifications/SubscribeProfileButton.tsx @@ -0,0 +1,89 @@ +import {useCallback} from 'react' +import {type ModerationOpts} from '@atproto/api' +import {msg, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {useRequireEmailVerification} from '#/lib/hooks/useRequireEmailVerification' +import {createSanitizedDisplayName} from '#/lib/moderation/create-sanitized-display-name' +import {Button, ButtonIcon} from '#/components/Button' +import {useDialogControl} from '#/components/Dialog' +import {BellPlus_Stroke2_Corner0_Rounded as BellPlusIcon} from '#/components/icons/BellPlus' +import {BellRinging_Filled_Corner0_Rounded as BellRingingIcon} from '#/components/icons/BellRinging' +import * as Tooltip from '#/components/Tooltip' +import {Text} from '#/components/Typography' +import {useActivitySubscriptionsNudged} from '#/storage/hooks/activity-subscriptions-nudged' +import type * as bsky from '#/types/bsky' +import {SubscribeProfileDialog} from './SubscribeProfileDialog' + +export function SubscribeProfileButton({ + profile, + moderationOpts, +}: { + profile: bsky.profile.AnyProfileView + moderationOpts: ModerationOpts +}) { + const {_} = useLingui() + const requireEmailVerification = useRequireEmailVerification() + const subscribeDialogControl = useDialogControl() + const [activitySubscriptionsNudged, setActivitySubscriptionsNudged] = + useActivitySubscriptionsNudged() + + const onDismissTooltip = () => { + setActivitySubscriptionsNudged(true) + } + + const onPress = useCallback(() => { + subscribeDialogControl.open() + }, [subscribeDialogControl]) + + const name = createSanitizedDisplayName(profile, true) + + const wrappedOnPress = requireEmailVerification(onPress, { + instructions: [ + + Before you can get notifications for {name}'s posts, you must first + verify your email. + , + ], + }) + + const isSubscribed = + profile.viewer?.activitySubscription?.post || + profile.viewer?.activitySubscription?.reply + + const Icon = isSubscribed ? BellRingingIcon : BellPlusIcon + + return ( + <> + + + + + + + Get notified about new posts + + + + + + + ) +} diff --git a/src/components/activity-notifications/SubscribeProfileDialog.tsx b/src/components/activity-notifications/SubscribeProfileDialog.tsx new file mode 100644 index 0000000000..d1ab2842d0 --- /dev/null +++ b/src/components/activity-notifications/SubscribeProfileDialog.tsx @@ -0,0 +1,309 @@ +import {useMemo, useState} from 'react' +import {View} from 'react-native' +import { + type AppBskyNotificationDefs, + type AppBskyNotificationListActivitySubscriptions, + type ModerationOpts, + type Un$Typed, +} from '@atproto/api' +import {msg, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' +import { + type InfiniteData, + useMutation, + useQueryClient, +} from '@tanstack/react-query' + +import {createSanitizedDisplayName} from '#/lib/moderation/create-sanitized-display-name' +import {cleanError} from '#/lib/strings/errors' +import {sanitizeHandle} from '#/lib/strings/handles' +import {logger} from '#/logger' +import {isWeb} from '#/platform/detection' +import {updateProfileShadow} from '#/state/cache/profile-shadow' +import {RQKEY_getActivitySubscriptions} from '#/state/queries/activity-subscriptions' +import {useAgent} from '#/state/session' +import * as Toast from '#/view/com/util/Toast' +import {platform, useTheme, web} from '#/alf' +import {atoms as a} from '#/alf' +import {Admonition} from '#/components/Admonition' +import { + Button, + ButtonIcon, + type ButtonProps, + ButtonText, +} from '#/components/Button' +import * as Dialog from '#/components/Dialog' +import * as Toggle from '#/components/forms/Toggle' +import {Loader} from '#/components/Loader' +import * as ProfileCard from '#/components/ProfileCard' +import {Text} from '#/components/Typography' +import type * as bsky from '#/types/bsky' + +export function SubscribeProfileDialog({ + control, + profile, + moderationOpts, + includeProfile, +}: { + control: Dialog.DialogControlProps + profile: bsky.profile.AnyProfileView + moderationOpts: ModerationOpts + includeProfile?: boolean +}) { + return ( + + + + + ) +} + +function DialogInner({ + profile, + moderationOpts, + includeProfile, +}: { + profile: bsky.profile.AnyProfileView + moderationOpts: ModerationOpts + includeProfile?: boolean +}) { + const {_} = useLingui() + const t = useTheme() + const agent = useAgent() + const control = Dialog.useDialogContext() + const queryClient = useQueryClient() + const initialState = parseActivitySubscription( + profile.viewer?.activitySubscription, + ) + const [state, setState] = useState(initialState) + + const values = useMemo(() => { + const {post, reply} = state + const res = [] + if (post) res.push('post') + if (reply) res.push('reply') + return res + }, [state]) + + const onChange = (newValues: string[]) => { + setState(oldValues => { + // ensure you can't have reply without post + if (!oldValues.reply && newValues.includes('reply')) { + return { + post: true, + reply: true, + } + } + + if (oldValues.post && !newValues.includes('post')) { + return { + post: false, + reply: false, + } + } + + return { + post: newValues.includes('post'), + reply: newValues.includes('reply'), + } + }) + } + + const { + mutate: saveChanges, + isPending: isSaving, + error, + } = useMutation({ + mutationFn: async ( + activitySubscription: Un$Typed, + ) => { + await agent.app.bsky.notification.putActivitySubscription({ + subject: profile.did, + activitySubscription, + }) + }, + onSuccess: (_data, activitySubscription) => { + control.close(() => { + updateProfileShadow(queryClient, profile.did, { + activitySubscription, + }) + + if (!activitySubscription.post && !activitySubscription.reply) { + logger.metric('activitySubscription:disable', {}) + Toast.show( + _( + msg`You will no longer receive notifications for ${sanitizeHandle(profile.handle, '@')}`, + ), + 'check', + ) + + // filter out the subscription + queryClient.setQueryData( + RQKEY_getActivitySubscriptions, + ( + old?: InfiniteData, + ) => { + if (!old) return old + return { + ...old, + pages: old.pages.map(page => ({ + ...page, + subscriptions: page.subscriptions.filter( + item => item.did !== profile.did, + ), + })), + } + }, + ) + } else { + logger.metric('activitySubscription:enable', { + setting: activitySubscription.reply ? 'posts_and_replies' : 'posts', + }) + if (!initialState.post && !initialState.reply) { + Toast.show( + _( + msg`You'll start receiving notifications for ${sanitizeHandle(profile.handle, '@')}!`, + ), + 'check', + ) + } else { + Toast.show(_(msg`Changes saved`), 'check') + } + } + }) + }, + onError: err => { + logger.error('Could not save activity subscription', {message: err}) + }, + }) + + const buttonProps: Omit = useMemo(() => { + const isDirty = + state.post !== initialState.post || state.reply !== initialState.reply + const hasAny = state.post || state.reply + + if (isDirty) { + return { + label: _(msg`Save changes`), + color: hasAny ? 'primary' : 'negative', + onPress: () => saveChanges(state), + disabled: isSaving, + } + } else { + // on web, a disabled save button feels more natural than a massive close button + if (isWeb) { + return { + label: _(msg`Save changes`), + color: 'secondary', + disabled: true, + } + } else { + return { + label: _(msg`Cancel`), + color: 'secondary', + onPress: () => control.close(), + } + } + } + }, [state, initialState, control, _, isSaving, saveChanges]) + + const name = createSanitizedDisplayName(profile, false) + + return ( + + + + + Keep me posted + + + Get notified of this account’s activity + + + + {includeProfile && ( + + + + + )} + + + + + + Posts + + + + + + Replies + + + + + + + {error && ( + + Could not save changes: {cleanError(error)} + + )} + + + + + + + ) +} + +function parseActivitySubscription( + sub?: AppBskyNotificationDefs.ActivitySubscription, +): Un$Typed { + if (!sub) return {post: false, reply: false} + const {post, reply} = sub + return {post, reply} +} diff --git a/src/components/ageAssurance/AgeAssuranceAccountCard.tsx b/src/components/ageAssurance/AgeAssuranceAccountCard.tsx new file mode 100644 index 0000000000..a00a8c71ae --- /dev/null +++ b/src/components/ageAssurance/AgeAssuranceAccountCard.tsx @@ -0,0 +1,155 @@ +import {View} from 'react-native' +import {msg, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {dateDiff, useGetTimeAgo} from '#/lib/hooks/useTimeAgo' +import {useAgeAssurance} from '#/state/ageAssurance/useAgeAssurance' +import {logger} from '#/state/ageAssurance/util' +import {atoms as a, useBreakpoints, useTheme, type ViewStyleProp} from '#/alf' +import {Admonition} from '#/components/Admonition' +import {AgeAssuranceAppealDialog} from '#/components/ageAssurance/AgeAssuranceAppealDialog' +import {AgeAssuranceBadge} from '#/components/ageAssurance/AgeAssuranceBadge' +import { + AgeAssuranceInitDialog, + useDialogControl, +} from '#/components/ageAssurance/AgeAssuranceInitDialog' +import {useAgeAssuranceCopy} from '#/components/ageAssurance/useAgeAssuranceCopy' +import {Button, ButtonText} from '#/components/Button' +import * as Dialog from '#/components/Dialog' +import {Divider} from '#/components/Divider' +import {createStaticClick, InlineLinkText} from '#/components/Link' +import {Text} from '#/components/Typography' + +export function AgeAssuranceAccountCard({style}: ViewStyleProp & {}) { + const {isReady, isAgeRestricted, isDeclaredUnderage} = useAgeAssurance() + + if (!isReady) return null + if (isDeclaredUnderage) return null + if (!isAgeRestricted) return null + + return +} + +function Inner({style}: ViewStyleProp & {}) { + const t = useTheme() + const {_, i18n} = useLingui() + const control = useDialogControl() + const appealControl = Dialog.useDialogControl() + const getTimeAgo = useGetTimeAgo() + const {gtPhone} = useBreakpoints() + + const copy = useAgeAssuranceCopy() + const {status, lastInitiatedAt} = useAgeAssurance() + const isBlocked = status === 'blocked' + const hasInitiated = !!lastInitiatedAt + const timeAgo = lastInitiatedAt + ? getTimeAgo(lastInitiatedAt, new Date()) + : null + const diff = lastInitiatedAt + ? dateDiff(lastInitiatedAt, new Date(), 'down') + : null + + return ( + <> + + + + + + + + + + + + + {copy.notice} + + + {isBlocked ? ( + + + You are currently unable to access Bluesky's Age Assurance flow. + Please{' '} + { + appealControl.open() + logger.metric('ageAssurance:appealDialogOpen', {}) + })}> + contact our moderation team + {' '} + if you believe this is an error. + + + ) : ( + <> + + + + + {lastInitiatedAt && timeAgo && diff ? ( + + {diff.value === 0 ? ( + Last initiated just now + ) : ( + Last initiated {timeAgo} ago + )} + + ) : ( + + Age assurance only takes a few minutes + + )} + + + )} + + + + ) +} diff --git a/src/components/ageAssurance/AgeAssuranceAdmonition.tsx b/src/components/ageAssurance/AgeAssuranceAdmonition.tsx new file mode 100644 index 0000000000..e53c37b345 --- /dev/null +++ b/src/components/ageAssurance/AgeAssuranceAdmonition.tsx @@ -0,0 +1,104 @@ +import {View} from 'react-native' +import {msg, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {useAgeAssurance} from '#/state/ageAssurance/useAgeAssurance' +import {logger} from '#/state/ageAssurance/util' +import {atoms as a, select, useTheme, type ViewStyleProp} from '#/alf' +import {useDialogControl} from '#/components/ageAssurance/AgeAssuranceInitDialog' +import type * as Dialog from '#/components/Dialog' +import {ShieldCheck_Stroke2_Corner0_Rounded as Shield} from '#/components/icons/Shield' +import {InlineLinkText} from '#/components/Link' +import {Text} from '#/components/Typography' + +export function AgeAssuranceAdmonition({ + children, + style, +}: ViewStyleProp & {children: React.ReactNode}) { + const control = useDialogControl() + const {isReady, isDeclaredUnderage, isAgeRestricted} = useAgeAssurance() + + if (!isReady) return null + if (isDeclaredUnderage) return null + if (!isAgeRestricted) return null + + return ( + + {children} + + ) +} + +function Inner({ + children, + style, +}: ViewStyleProp & { + children: React.ReactNode + control: Dialog.DialogControlProps +}) { + const t = useTheme() + const {_} = useLingui() + + return ( + <> + + + + + + + {children} + + + Learn more in your{' '} + { + logger.metric('ageAssurance:navigateToSettings', {}) + }}> + account settings. + + + + + + + + ) +} diff --git a/src/components/ageAssurance/AgeAssuranceAppealDialog.tsx b/src/components/ageAssurance/AgeAssuranceAppealDialog.tsx new file mode 100644 index 0000000000..cc0d568cab --- /dev/null +++ b/src/components/ageAssurance/AgeAssuranceAppealDialog.tsx @@ -0,0 +1,142 @@ +import React from 'react' +import {View} from 'react-native' +import {BSKY_LABELER_DID, ComAtprotoModerationDefs} from '@atproto/api' +import {msg, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' +import {useMutation} from '@tanstack/react-query' + +import {logger} from '#/state/ageAssurance/util' +import {useAgent, useSession} from '#/state/session' +import * as Toast from '#/view/com/util/Toast' +import {atoms as a, useBreakpoints, web} from '#/alf' +import {AgeAssuranceBadge} from '#/components/ageAssurance/AgeAssuranceBadge' +import {Button, ButtonIcon, ButtonText} from '#/components/Button' +import * as Dialog from '#/components/Dialog' +import {Loader} from '#/components/Loader' +import {Text} from '#/components/Typography' + +export function AgeAssuranceAppealDialog({ + control, +}: { + control: Dialog.DialogControlProps +}) { + const {_} = useLingui() + return ( + + + + + + + + ) +} + +function Inner({control}: {control: Dialog.DialogControlProps}) { + const {_} = useLingui() + const {currentAccount} = useSession() + const {gtPhone} = useBreakpoints() + const agent = useAgent() + + const [details, setDetails] = React.useState('') + const isInvalid = details.length > 1000 + + const {mutate, isPending} = useMutation({ + mutationFn: async () => { + logger.metric('ageAssurance:appealDialogSubmit', {}) + + await agent.createModerationReport( + { + reasonType: ComAtprotoModerationDefs.REASONAPPEAL, + subject: { + $type: 'com.atproto.admin.defs#repoRef', + did: currentAccount?.did, + }, + reason: `AGE_ASSURANCE_INQUIRY: ` + details, + }, + { + encoding: 'application/json', + headers: { + 'atproto-proxy': `${BSKY_LABELER_DID}#atproto_labeler`, + }, + }, + ) + }, + onError: err => { + logger.error('AgeAssuranceAppealDialog failed', {safeMessage: err}) + Toast.show( + _(msg`Age assurance inquiry failed to send, please try again.`), + 'xmark', + ) + }, + onSuccess: () => { + control.close() + Toast.show( + _( + msg({ + message: 'Age assurance inquiry was submitted', + context: 'toast', + }), + ), + ) + }, + }) + + return ( + + + + + + + Contact us + + + + + Please provide any additional details you feel moderators may need in + order to properly assess your Age Assurance status. + + + + + { + setDetails(details) + }} + label={_(msg`Additional details (limit 1000 characters)`)} + numberOfLines={4} + onSubmitEditing={() => mutate()} + /> + + + + + + + ) +} diff --git a/src/components/ageAssurance/AgeAssuranceBadge.tsx b/src/components/ageAssurance/AgeAssuranceBadge.tsx new file mode 100644 index 0000000000..030e30529d --- /dev/null +++ b/src/components/ageAssurance/AgeAssuranceBadge.tsx @@ -0,0 +1,46 @@ +import {View} from 'react-native' +import {Trans} from '@lingui/macro' + +import {atoms as a, select, useTheme} from '#/alf' +import {ShieldCheck_Stroke2_Corner0_Rounded as Shield} from '#/components/icons/Shield' +import {Text} from '#/components/Typography' + +export function AgeAssuranceBadge() { + const t = useTheme() + + return ( + + + + Age Assurance + + + ) +} diff --git a/src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx b/src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx new file mode 100644 index 0000000000..cad7e2dc87 --- /dev/null +++ b/src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx @@ -0,0 +1,141 @@ +import {useMemo} from 'react' +import {View} from 'react-native' +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {useAgeAssurance} from '#/state/ageAssurance/useAgeAssurance' +import {logger} from '#/state/ageAssurance/util' +import {Nux, useNux, useSaveNux} from '#/state/queries/nuxs' +import {atoms as a, select, useTheme} from '#/alf' +import {useAgeAssuranceCopy} from '#/components/ageAssurance/useAgeAssuranceCopy' +import {Button} from '#/components/Button' +import {ShieldCheck_Stroke2_Corner0_Rounded as Shield} from '#/components/icons/Shield' +import {TimesLarge_Stroke2_Corner0_Rounded as X} from '#/components/icons/Times' +import {Link} from '#/components/Link' +import {Text} from '#/components/Typography' + +export function useInternalState() { + const {isReady, isDeclaredUnderage, isAgeRestricted, lastInitiatedAt} = + useAgeAssurance() + const {nux} = useNux(Nux.AgeAssuranceDismissibleFeedBanner) + const {mutate: save, variables} = useSaveNux() + const hidden = !!variables + + const visible = useMemo(() => { + if (!isReady) return false + if (isDeclaredUnderage) return false + if (!isAgeRestricted) return false + if (lastInitiatedAt) return false + if (hidden) return false + if (nux && nux.completed) return false + return true + }, [ + isReady, + isDeclaredUnderage, + isAgeRestricted, + lastInitiatedAt, + hidden, + nux, + ]) + + const close = () => { + save({ + id: Nux.AgeAssuranceDismissibleFeedBanner, + completed: true, + data: undefined, + }) + } + + return {visible, close} +} + +export function AgeAssuranceDismissibleFeedBanner() { + const t = useTheme() + const {_} = useLingui() + const {visible, close} = useInternalState() + const copy = useAgeAssuranceCopy() + + if (!visible) return null + + return ( + + { + close() + logger.metric('ageAssurance:navigateToSettings', {}) + }} + style={[a.w_full, a.justify_between, a.align_center, a.gap_md]}> + + + + + + + {copy.banner} + + + + + + + ) +} diff --git a/src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx b/src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx new file mode 100644 index 0000000000..c9f242ca88 --- /dev/null +++ b/src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx @@ -0,0 +1,61 @@ +import {View} from 'react-native' +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {useAgeAssurance} from '#/state/ageAssurance/useAgeAssurance' +import {logger} from '#/state/ageAssurance/util' +import {Nux, useNux, useSaveNux} from '#/state/queries/nuxs' +import {atoms as a, type ViewStyleProp} from '#/alf' +import {AgeAssuranceAdmonition} from '#/components/ageAssurance/AgeAssuranceAdmonition' +import {useAgeAssuranceCopy} from '#/components/ageAssurance/useAgeAssuranceCopy' +import {Button, ButtonIcon} from '#/components/Button' +import {TimesLarge_Stroke2_Corner0_Rounded as X} from '#/components/icons/Times' + +export function AgeAssuranceDismissibleNotice({style}: ViewStyleProp & {}) { + const {_} = useLingui() + const {isReady, isDeclaredUnderage, isAgeRestricted, lastInitiatedAt} = + useAgeAssurance() + const {nux} = useNux(Nux.AgeAssuranceDismissibleNotice) + const copy = useAgeAssuranceCopy() + const {mutate: save, variables} = useSaveNux() + const hidden = !!variables + + if (!isReady) return null + if (isDeclaredUnderage) return null + if (!isAgeRestricted) return null + if (lastInitiatedAt) return null + if (hidden) return null + if (nux && nux.completed) return null + + return ( + + + {copy.notice} + + + + + ) +} diff --git a/src/components/ageAssurance/AgeAssuranceInitDialog.tsx b/src/components/ageAssurance/AgeAssuranceInitDialog.tsx new file mode 100644 index 0000000000..08fd5f84fc --- /dev/null +++ b/src/components/ageAssurance/AgeAssuranceInitDialog.tsx @@ -0,0 +1,382 @@ +import {useState} from 'react' +import {View} from 'react-native' +import {XRPCError} from '@atproto/xrpc' +import {msg, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' +import {validate as validateEmail} from 'email-validator' + +import {useCleanError} from '#/lib/hooks/useCleanError' +import { + SupportCode, + useCreateSupportLink, +} from '#/lib/hooks/useCreateSupportLink' +import {useGetTimeAgo} from '#/lib/hooks/useTimeAgo' +import {useTLDs} from '#/lib/hooks/useTLDs' +import {isEmailMaybeInvalid} from '#/lib/strings/email' +import {type AppLanguage} from '#/locale/languages' +import {useAgeAssuranceContext} from '#/state/ageAssurance' +import {useInitAgeAssurance} from '#/state/ageAssurance/useInitAgeAssurance' +import {logger} from '#/state/ageAssurance/util' +import {useLanguagePrefs} from '#/state/preferences' +import {useSession} from '#/state/session' +import {atoms as a, useTheme, web} from '#/alf' +import {Admonition} from '#/components/Admonition' +import {AgeAssuranceBadge} from '#/components/ageAssurance/AgeAssuranceBadge' +import {urls} from '#/components/ageAssurance/const' +import {KWS_SUPPORTED_LANGS} from '#/components/ageAssurance/const' +import {Button, ButtonIcon, ButtonText} from '#/components/Button' +import * as Dialog from '#/components/Dialog' +import {Divider} from '#/components/Divider' +import * as TextField from '#/components/forms/TextField' +import {ShieldCheck_Stroke2_Corner0_Rounded as Shield} from '#/components/icons/Shield' +import {LanguageSelect} from '#/components/LanguageSelect' +import {InlineLinkText} from '#/components/Link' +import {Loader} from '#/components/Loader' +import {Text} from '#/components/Typography' + +export {useDialogControl} from '#/components/Dialog/context' + +export function AgeAssuranceInitDialog({ + control, +}: { + control: Dialog.DialogControlProps +}) { + const {_} = useLingui() + return ( + + + + + + + + + ) +} + +function Inner() { + const t = useTheme() + const {_} = useLingui() + const {currentAccount} = useSession() + const langPrefs = useLanguagePrefs() + const cleanError = useCleanError() + const {close} = Dialog.useDialogContext() + const {lastInitiatedAt} = useAgeAssuranceContext() + const getTimeAgo = useGetTimeAgo() + const tlds = useTLDs() + const createSupportLink = useCreateSupportLink() + + const wasRecentlyInitiated = + lastInitiatedAt && + new Date(lastInitiatedAt).getTime() > Date.now() - 5 * 60 * 1000 // 5 minutes + + const [success, setSuccess] = useState(false) + const [email, setEmail] = useState(currentAccount?.email || '') + const [emailError, setEmailError] = useState('') + const [languageError, setLanguageError] = useState(false) + const [disabled, setDisabled] = useState(false) + const [language, setLanguage] = useState( + convertToKWSSupportedLanguage(langPrefs.appLanguage), + ) + const [error, setError] = useState(null) + + const {mutateAsync: init, isPending} = useInitAgeAssurance() + + const runEmailValidation = () => { + if (validateEmail(email)) { + setEmailError('') + setDisabled(false) + + if (tlds && isEmailMaybeInvalid(email, tlds)) { + setEmailError( + _( + msg`Please double-check that you have entered your email address correctly.`, + ), + ) + return {status: 'maybe'} + } + + return {status: 'valid'} + } + + setEmailError(_(msg`Please enter a valid email address.`)) + setDisabled(true) + + return {status: 'invalid'} + } + + const onSubmit = async () => { + setLanguageError(false) + + logger.metric('ageAssurance:initDialogSubmit', {}) + + try { + const {status} = runEmailValidation() + + if (status === 'invalid') return + if (!language) { + setLanguageError(true) + return + } + + await init({ + email, + language, + }) + + setSuccess(true) + } catch (e) { + let error: React.ReactNode = _( + msg`Something went wrong, please try again`, + ) + + if (e instanceof XRPCError) { + if (e.error === 'InvalidEmail') { + error = _( + msg`Please enter a valid, non-temporary email address. You may need to access this email in the future.`, + ) + logger.metric('ageAssurance:initDialogError', {code: 'InvalidEmail'}) + } else if (e.error === 'DidTooLong') { + error = ( + <> + + We're having issues initializing the age assurance process for + your account. Please{' '} + + contact support + {' '} + for assistance. + + + ) + logger.metric('ageAssurance:initDialogError', {code: 'DidTooLong'}) + } else { + logger.metric('ageAssurance:initDialogError', {code: 'other'}) + } + } else { + const {clean, raw} = cleanError(e) + error = clean || raw || error + logger.metric('ageAssurance:initDialogError', {code: 'other'}) + } + + setError(error) + } + } + + return ( + + + + + + {success ? Success! : Verify your age} + + + + {success ? ( + + + Please check your email inbox for further instructions. It may + take a minute or two to arrive. + + + ) : ( + <> + + + We have partnered with{' '} + + KWS + {' '} + to verify that you’re an adult. When you click "Begin" below, + KWS will check if you have previously verified your age using + this email address for other games/services powered by KWS + technology. If not, KWS will email you instructions for + verifying your age. When you’re done, you'll be brought back + to continue using Bluesky. + + + + This should only take a few minutes. + + + )} + + + {success ? ( + + + + ) : ( + <> + + + + {wasRecentlyInitiated && ( + + + You initiated this flow already,{' '} + {getTimeAgo(lastInitiatedAt, new Date(), {format: 'long'})}{' '} + ago. It may take up to 5 minutes for emails to reach your + inbox. Please consider waiting a few minutes before trying + again. + + + )} + + + + Your email + + + setEmailError('')} + onBlur={() => { + runEmailValidation() + }} + returnKeyType="done" + autoCapitalize="none" + autoComplete="off" + autoCorrect={false} + onSubmitEditing={onSubmit} + /> + + + {emailError ? ( + + {emailError} + + ) : ( + + + Use your account email address, or another real email + address you control, in case KWS or Bluesky needs to + contact you. + + + )} + + + + + Your preferred language + + { + setLanguage(value) + setLanguageError(false) + }} + items={KWS_SUPPORTED_LANGS} + /> + + {languageError && ( + + Please select a language + + )} + + + {error && {error}} + + + + + + + By continuing, you agree to the{' '} + + KWS Terms of Use + {' '} + and acknowledge that KWS will store your verified status with + your hashed email address in accordance with the{' '} + + KWS Privacy Policy + + . This means you won’t need to verify again the next time you + use this email for other apps, games, and services powered by + KWS technology. + + + + )} + + + ) +} + +// best-effort mapping of our languages to KWS supported languages +function convertToKWSSupportedLanguage( + appLanguage: string, +): string | undefined { + // `${Enum}` is how you get a type of string union of the enum values (???) -sfn + switch (appLanguage as `${AppLanguage}`) { + // only en is supported + case 'en-GB': + return 'en' + // pt-PT is pt (pt-BR is supported independently) + case 'pt-PT': + return 'pt' + // only chinese (simplified) is supported, map all chinese variants + case 'zh-Hans-CN': + case 'zh-Hant-HK': + case 'zh-Hant-TW': + return 'zh-Hans' + default: + // try and map directly - if undefined, they will have to pick from the dropdown + return KWS_SUPPORTED_LANGS.find(v => v.value === appLanguage)?.value + } +} diff --git a/src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx b/src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx new file mode 100644 index 0000000000..b1c287e1b3 --- /dev/null +++ b/src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx @@ -0,0 +1,253 @@ +import {useEffect, useRef, useState} from 'react' +import {View} from 'react-native' +import {msg, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {retry} from '#/lib/async/retry' +import {wait} from '#/lib/async/wait' +import {isNative} from '#/platform/detection' +import {useAgeAssuranceAPIContext} from '#/state/ageAssurance' +import {logger} from '#/state/ageAssurance/util' +import {useAgent} from '#/state/session' +import {atoms as a, useTheme, web} from '#/alf' +import {AgeAssuranceBadge} from '#/components/ageAssurance/AgeAssuranceBadge' +import {Button, ButtonText} from '#/components/Button' +import * as Dialog from '#/components/Dialog' +import {useGlobalDialogsControlContext} from '#/components/dialogs/Context' +import {CheckThick_Stroke2_Corner0_Rounded as SuccessIcon} from '#/components/icons/Check' +import {CircleInfo_Stroke2_Corner0_Rounded as ErrorIcon} from '#/components/icons/CircleInfo' +import {Loader} from '#/components/Loader' +import {Text} from '#/components/Typography' + +export type AgeAssuranceRedirectDialogState = { + result: 'success' | 'unknown' + actorDid: string +} + +/** + * Validate and parse the query parameters returned from the age assurance + * redirect. If not valid, returns `undefined` and the dialog will not open. + */ +export function parseAgeAssuranceRedirectDialogState( + state: { + result?: string + actorDid?: string + } = {}, +): AgeAssuranceRedirectDialogState | undefined { + let result: AgeAssuranceRedirectDialogState['result'] = 'unknown' + const actorDid = state.actorDid + + switch (state.result) { + case 'success': + result = 'success' + break + case 'unknown': + default: + result = 'unknown' + break + } + + if (result && actorDid) { + return { + result, + actorDid, + } + } +} + +export function useAgeAssuranceRedirectDialogControl() { + return useGlobalDialogsControlContext().ageAssuranceRedirectDialogControl +} + +export function AgeAssuranceRedirectDialog() { + const {_} = useLingui() + const control = useAgeAssuranceRedirectDialogControl() + + // TODO for testing + // Dialog.useAutoOpen(control.control, 3e3) + + return ( + control.clear()}> + + + + + + + ) +} + +export function Inner({}: {optimisticState?: AgeAssuranceRedirectDialogState}) { + const t = useTheme() + const {_} = useLingui() + const agent = useAgent() + const polling = useRef(false) + const unmounted = useRef(false) + const control = useAgeAssuranceRedirectDialogControl() + const [error, setError] = useState(false) + const [success, setSuccess] = useState(false) + const {refetch: refreshAgeAssuranceState} = useAgeAssuranceAPIContext() + + useEffect(() => { + if (polling.current) return + + polling.current = true + + logger.metric('ageAssurance:redirectDialogOpen', {}) + + wait( + 3e3, + retry( + 5, + () => true, + async () => { + if (!agent.session) return + if (unmounted.current) return + + const {data} = await agent.app.bsky.unspecced.getAgeAssuranceState() + + if (data.status !== 'assured') { + throw new Error( + `Polling for age assurance state did not receive assured status`, + ) + } + + return data + }, + 1e3, + ), + ) + .then(async data => { + if (!data) return + if (!agent.session) return + if (unmounted.current) return + + // success! update state + await refreshAgeAssuranceState() + + setSuccess(true) + + logger.metric('ageAssurance:redirectDialogSuccess', {}) + }) + .catch(() => { + if (unmounted.current) return + setError(true) + // try a refetch anyway + refreshAgeAssuranceState() + logger.metric('ageAssurance:redirectDialogFail', {}) + }) + + return () => { + unmounted.current = true + } + }, [agent, control, refreshAgeAssuranceState]) + + if (success) { + return ( + <> + + + + + + + Success + + + + + + We've confirmed your age assurance status. You can now close this + dialog. + + + + {isNative && ( + + + + )} + + + + + ) + } + + return ( + <> + + + + + {error && } + + + {error ? Connection issue : Verifying} + + + {!error && } + + + + {error ? ( + + We were unable to receive the verification due to a connection + issue. It may arrive later. If it does, your account will update + automatically. + + ) : ( + + We're confirming your age assurance status with our servers. This + should only take a few seconds. + + )} + + + {error && isNative && ( + + + + )} + + + {error && } + + ) +} diff --git a/src/components/ageAssurance/AgeRestrictedScreen.tsx b/src/components/ageAssurance/AgeRestrictedScreen.tsx new file mode 100644 index 0000000000..b47cc5b0c9 --- /dev/null +++ b/src/components/ageAssurance/AgeRestrictedScreen.tsx @@ -0,0 +1,95 @@ +import {View} from 'react-native' +import {msg, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {useAgeAssurance} from '#/state/ageAssurance/useAgeAssurance' +import {logger} from '#/state/ageAssurance/util' +import {atoms as a} from '#/alf' +import {Admonition} from '#/components/Admonition' +import {AgeAssuranceBadge} from '#/components/ageAssurance/AgeAssuranceBadge' +import {useAgeAssuranceCopy} from '#/components/ageAssurance/useAgeAssuranceCopy' +import {ButtonIcon, ButtonText} from '#/components/Button' +import {ChevronRight_Stroke2_Corner0_Rounded as ChevronRight} from '#/components/icons/Chevron' +import * as Layout from '#/components/Layout' +import {Link} from '#/components/Link' +import {Text} from '#/components/Typography' + +export function AgeRestrictedScreen({ + children, + screenTitle, + infoText, +}: { + children: React.ReactNode + screenTitle?: string + infoText?: string +}) { + const {_} = useLingui() + const copy = useAgeAssuranceCopy() + const {isReady, isAgeRestricted} = useAgeAssurance() + + if (!isReady) { + return ( + + + + + + + + + + ) + } + if (!isAgeRestricted) return children + + return ( + + + + + + {screenTitle ?? Unavailable} + + + + + + + + + + + + + + You must complete age assurance in order to access this screen. + + + + {copy.notice} + + + + { + logger.metric('ageAssurance:navigateToSettings', {}) + }}> + + Go to account settings + + + + + + {infoText && {infoText}} + + + + ) +} diff --git a/src/components/ageAssurance/const.ts b/src/components/ageAssurance/const.ts new file mode 100644 index 0000000000..35f96e8417 --- /dev/null +++ b/src/components/ageAssurance/const.ts @@ -0,0 +1,26 @@ +export const urls = { + kwsHome: 'https://www.kidswebservices.com/en-US', + kwsTermsOfUse: 'https://www.kidswebservices.com/en-US/terms-of-use', + kwsPrivacyPolicy: 'https://www.kidswebservices.com/en-US/privacy-policy', +} + +export const KWS_SUPPORTED_LANGS = [ + {value: 'en', label: 'English'}, + {value: 'ar', label: 'العربية'}, + {value: 'zh-Hans', label: '简体中文'}, + {value: 'nl', label: 'Nederlands'}, + {value: 'tl', label: 'Filipino'}, + {value: 'fr', label: 'Français'}, + {value: 'de', label: 'Deutsch'}, + {value: 'id', label: 'Bahasa Indonesia'}, + {value: 'it', label: 'Italiano'}, + {value: 'ja', label: '日本語'}, + {value: 'ko', label: '한국어'}, + {value: 'pt', label: 'Português'}, + {value: 'pt-BR', label: 'Português (Brasil)'}, + {value: 'ru', label: 'Русский'}, + {value: 'es', label: 'Español'}, + {value: 'tr', label: 'Türkçe'}, + {value: 'th', label: 'ภาษาไทย'}, + {value: 'vi', label: 'Tiếng Việt'}, +] diff --git a/src/components/ageAssurance/useAgeAssuranceCopy.ts b/src/components/ageAssurance/useAgeAssuranceCopy.ts new file mode 100644 index 0000000000..c861f8336b --- /dev/null +++ b/src/components/ageAssurance/useAgeAssuranceCopy.ts @@ -0,0 +1,21 @@ +import {useMemo} from 'react' +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +export function useAgeAssuranceCopy() { + const {_} = useLingui() + + return useMemo(() => { + return { + notice: _( + msg`The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging.`, + ), + banner: _( + msg`The laws in your location require you to verify you're an adult to access certain features. Tap to learn more.`, + ), + chatsInfoText: _( + msg`Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult.`, + ), + } + }, [_]) +} diff --git a/src/components/dialogs/Context.tsx b/src/components/dialogs/Context.tsx index 1ee4d27398..bc802482fd 100644 --- a/src/components/dialogs/Context.tsx +++ b/src/components/dialogs/Context.tsx @@ -1,5 +1,6 @@ import {createContext, useContext, useMemo, useState} from 'react' +import {type AgeAssuranceRedirectDialogState} from '#/components/ageAssurance/AgeAssuranceRedirectDialog' import * as Dialog from '#/components/Dialog' import {type Screen} from '#/components/dialogs/EmailDialog/types' @@ -22,9 +23,11 @@ type ControlsContext = { displayText: string share?: boolean }> + ageAssuranceRedirectDialogControl: StatefulControl } const ControlsContext = createContext(null) +ControlsContext.displayName = 'GlobalDialogControlsContext' export function useGlobalDialogsControlContext() { const ctx = useContext(ControlsContext) @@ -46,6 +49,8 @@ export function Provider({children}: React.PropsWithChildren<{}>) { displayText: string share?: boolean }>() + const ageAssuranceRedirectDialogControl = + useStatefulDialogControl() const ctx = useMemo( () => ({ @@ -54,6 +59,7 @@ export function Provider({children}: React.PropsWithChildren<{}>) { inAppBrowserConsentControl, emailDialogControl, linkWarningDialogControl, + ageAssuranceRedirectDialogControl, }), [ mutedWordsDialogControl, @@ -61,6 +67,7 @@ export function Provider({children}: React.PropsWithChildren<{}>) { inAppBrowserConsentControl, emailDialogControl, linkWarningDialogControl, + ageAssuranceRedirectDialogControl, ], ) diff --git a/src/components/dialogs/EmailDialog/data/useAccountEmailState.ts b/src/components/dialogs/EmailDialog/data/useAccountEmailState.ts index 377411107a..f25369f8db 100644 --- a/src/components/dialogs/EmailDialog/data/useAccountEmailState.ts +++ b/src/components/dialogs/EmailDialog/data/useAccountEmailState.ts @@ -1,7 +1,7 @@ -import {useCallback, useEffect, useState} from 'react' -import {useQuery, useQueryClient} from '@tanstack/react-query' +import {useEffect, useMemo, useState} from 'react' +import {useQuery} from '@tanstack/react-query' -import {useAgent} from '#/state/session' +import {useAgent, useSessionApi} from '#/state/session' import {emitEmailVerified} from '#/components/dialogs/EmailDialog/events' export type AccountEmailState = { @@ -11,57 +11,36 @@ export type AccountEmailState = { export const accountEmailStateQueryKey = ['accountEmailState'] as const -export function useInvalidateAccountEmailState() { - const qc = useQueryClient() - - return useCallback(() => { - return qc.invalidateQueries({ - queryKey: accountEmailStateQueryKey, - }) - }, [qc]) -} - -export function useUpdateAccountEmailStateQueryCache() { - const qc = useQueryClient() - - return useCallback( - (data: AccountEmailState) => { - return qc.setQueriesData( - { - queryKey: accountEmailStateQueryKey, - }, - data, - ) - }, - [qc], - ) -} - export function useAccountEmailState() { const agent = useAgent() + const {partialRefreshSession} = useSessionApi() const [prevIsEmailVerified, setPrevEmailIsVerified] = useState( !!agent.session?.emailConfirmed, ) - const fallbackData: AccountEmailState = { - isEmailVerified: !!agent.session?.emailConfirmed, - email2FAEnabled: !!agent.session?.emailAuthFactor, - } - const query = useQuery({ + const state: AccountEmailState = useMemo( + () => ({ + isEmailVerified: !!agent.session?.emailConfirmed, + email2FAEnabled: !!agent.session?.emailAuthFactor, + }), + [agent.session], + ) + + /** + * Only here to refetch on focus, when necessary + */ + useQuery({ enabled: !!agent.session, - refetchOnWindowFocus: true, + /** + * Only refetch if the email verification s incomplete. + */ + refetchOnWindowFocus: !prevIsEmailVerified, queryKey: accountEmailStateQueryKey, queryFn: async () => { - // will also trigger updates to `#/state/session` data - const {data} = await agent.resumeSession(agent.session!) - return { - isEmailVerified: !!data.emailConfirmed, - email2FAEnabled: !!data.emailAuthFactor, - } + await partialRefreshSession() + return null }, }) - const state = query.data ?? fallbackData - /* * This will emit `n` times for each instance of this hook. So the listeners * all use `once` to prevent multiple handlers firing. diff --git a/src/components/dialogs/EmailDialog/data/useConfirmEmail.ts b/src/components/dialogs/EmailDialog/data/useConfirmEmail.ts index 73f824fcc6..475a8cbfb6 100644 --- a/src/components/dialogs/EmailDialog/data/useConfirmEmail.ts +++ b/src/components/dialogs/EmailDialog/data/useConfirmEmail.ts @@ -1,13 +1,10 @@ import {useMutation} from '@tanstack/react-query' import {useAgent, useSession} from '#/state/session' -import {useUpdateAccountEmailStateQueryCache} from '#/components/dialogs/EmailDialog/data/useAccountEmailState' export function useConfirmEmail() { const agent = useAgent() const {currentAccount} = useSession() - const updateAccountEmailStateQueryCache = - useUpdateAccountEmailStateQueryCache() return useMutation({ mutationFn: async ({token}: {token: string}) => { @@ -19,11 +16,8 @@ export function useConfirmEmail() { email: currentAccount.email, token: token.trim(), }) - const {data} = await agent.resumeSession(agent.session!) - updateAccountEmailStateQueryCache({ - isEmailVerified: !!data.emailConfirmed, - email2FAEnabled: !!data.emailAuthFactor, - }) + // will update session state at root of app + await agent.resumeSession(agent.session!) }, }) } diff --git a/src/components/dialogs/EmailDialog/data/useManageEmail2FA.ts b/src/components/dialogs/EmailDialog/data/useManageEmail2FA.ts index 39f5fd2d9e..358bf86544 100644 --- a/src/components/dialogs/EmailDialog/data/useManageEmail2FA.ts +++ b/src/components/dialogs/EmailDialog/data/useManageEmail2FA.ts @@ -1,13 +1,10 @@ import {useMutation} from '@tanstack/react-query' import {useAgent, useSession} from '#/state/session' -import {useUpdateAccountEmailStateQueryCache} from '#/components/dialogs/EmailDialog/data/useAccountEmailState' export function useManageEmail2FA() { const agent = useAgent() const {currentAccount} = useSession() - const updateAccountEmailStateQueryCache = - useUpdateAccountEmailStateQueryCache() return useMutation({ mutationFn: async ({ @@ -25,11 +22,8 @@ export function useManageEmail2FA() { emailAuthFactor: enabled, token, }) - const {data} = await agent.resumeSession(agent.session!) - updateAccountEmailStateQueryCache({ - isEmailVerified: !!data.emailConfirmed, - email2FAEnabled: !!data.emailAuthFactor, - }) + // will update session state at root of app + await agent.resumeSession(agent.session!) }, }) } diff --git a/src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx b/src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx index 1896ff27d7..2b0e86c611 100644 --- a/src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx +++ b/src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx @@ -185,8 +185,8 @@ export function Disable() { state.emailStatus === 'pending' ? Loader : state.emailStatus === 'success' - ? Check - : Envelope + ? Check + : Envelope } /> diff --git a/src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx b/src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx index 7a126792a2..bf893701c6 100644 --- a/src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx +++ b/src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx @@ -116,8 +116,8 @@ export function Enable() { state.status === 'pending' ? Loader : state.status === 'success' - ? Check - : ShieldIcon + ? Check + : ShieldIcon } /> diff --git a/src/components/dialogs/EmailDialog/screens/Verify.tsx b/src/components/dialogs/EmailDialog/screens/Verify.tsx index dabd0d2f24..07aef6145f 100644 --- a/src/components/dialogs/EmailDialog/screens/Verify.tsx +++ b/src/components/dialogs/EmailDialog/screens/Verify.tsx @@ -211,7 +211,9 @@ export function Verify({config, showScreen}: ScreenProps) { Verify your email ) ) : ( - Verify email code + + Verify email code + )} @@ -345,7 +347,13 @@ export function Verify({config, showScreen}: ScreenProps) { {state.error && {state.error}} diff --git a/src/components/dialogs/GifSelect.tsx b/src/components/dialogs/GifSelect.tsx index 8ced355e47..e18fdf2dba 100644 --- a/src/components/dialogs/GifSelect.tsx +++ b/src/components/dialogs/GifSelect.tsx @@ -5,7 +5,7 @@ import React, { useRef, useState, } from 'react' -import {TextInput, View} from 'react-native' +import {type TextInput, View} from 'react-native' import {useWindowDimensions} from 'react-native' import {Image} from 'expo-image' import {msg, Trans} from '@lingui/macro' @@ -15,13 +15,14 @@ import {logEvent} from '#/lib/statsig/statsig' import {cleanError} from '#/lib/strings/errors' import {isWeb} from '#/platform/detection' import { - Gif, + type Gif, + tenorUrlToBskyGifUrl, useFeaturedGifsQuery, useGifSearchQuery, } from '#/state/queries/tenor' import {ErrorScreen} from '#/view/com/util/error/ErrorScreen' import {ErrorBoundary} from '#/view/com/util/ErrorBoundary' -import {ListMethods} from '#/view/com/util/List' +import {type ListMethods} from '#/view/com/util/List' import {atoms as a, ios, native, useBreakpoints, useTheme, web} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' import * as Dialog from '#/components/Dialog' @@ -316,7 +317,7 @@ export function GifPreview({ t.atoms.bg_contrast_25, ]} source={{ - uri: gif.media_formats.tinygif.url, + uri: tenorUrlToBskyGifUrl(gif.media_formats.tinygif.url), }} contentFit="cover" accessibilityLabel={gif.title} diff --git a/src/components/dialogs/PostInteractionSettingsDialog.tsx b/src/components/dialogs/PostInteractionSettingsDialog.tsx index 63b640d9fe..dbb966fd3f 100644 --- a/src/components/dialogs/PostInteractionSettingsDialog.tsx +++ b/src/components/dialogs/PostInteractionSettingsDialog.tsx @@ -1,6 +1,10 @@ import React from 'react' -import {StyleProp, View, ViewStyle} from 'react-native' -import {AppBskyFeedDefs, AppBskyFeedPostgate, AtUri} from '@atproto/api' +import {type StyleProp, View, type ViewStyle} from 'react-native' +import { + type AppBskyFeedDefs, + type AppBskyFeedPostgate, + AtUri, +} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useQueryClient} from '@tanstack/react-query' @@ -22,7 +26,7 @@ import { import { createThreadgateViewQueryKey, getThreadgateView, - ThreadgateAllowUISetting, + type ThreadgateAllowUISetting, threadgateViewToAllowUISetting, useSetThreadgateAllowMutation, useThreadgateViewQuery, @@ -558,7 +562,8 @@ export function usePrefetchPostInteractionSettings({ await Promise.all([ queryClient.prefetchQuery({ queryKey: createPostgateQueryKey(postUri), - queryFn: () => getPostgateRecord({agent, postUri}), + queryFn: () => + getPostgateRecord({agent, postUri}).then(res => res ?? null), staleTime: STALE.SECONDS.THIRTY, }), queryClient.prefetchQuery({ diff --git a/src/components/dialogs/SearchablePeopleList.tsx b/src/components/dialogs/SearchablePeopleList.tsx index 81655be0f5..159f623b93 100644 --- a/src/components/dialogs/SearchablePeopleList.tsx +++ b/src/components/dialogs/SearchablePeopleList.tsx @@ -390,8 +390,8 @@ function DefaultProfileCard({ !enabled ? {opacity: 0.5} : pressed || focused || hovered - ? t.atoms.bg_contrast_25 - : t.atoms.bg, + ? t.atoms.bg_contrast_25 + : t.atoms.bg, ]}> { + nuxDialogs.dismissActiveNux() + }, [nuxDialogs]) + + return ( + + + + + + + + + New Feature + + + + + + + {_( + + + + + + + Get notified when someone posts + + + + You can now choose to be notified when specific people post. If + there’s someone you want timely updates from, go to their + profile and find the new bell icon near the follow button. + + + + + {!isWeb && ( + + )} + + + + + + ) +} diff --git a/src/components/dialogs/nuxs/index.tsx b/src/components/dialogs/nuxs/index.tsx index 11377e1ded..985d58eecc 100644 --- a/src/components/dialogs/nuxs/index.tsx +++ b/src/components/dialogs/nuxs/index.tsx @@ -3,6 +3,7 @@ import {type AppBskyActorDefs} from '@atproto/api' import {useGate} from '#/lib/statsig/statsig' import {logger} from '#/logger' +import {STALE} from '#/state/queries' import {Nux, useNuxs, useResetNuxs, useSaveNux} from '#/state/queries/nuxs' import { usePreferencesQuery, @@ -11,12 +12,12 @@ import { import {useProfileQuery} from '#/state/queries/profile' import {type SessionAccount, useSession} from '#/state/session' import {useOnboardingState} from '#/state/shell' -import {InitialVerificationAnnouncement} from '#/components/dialogs/nuxs/InitialVerificationAnnouncement' +import {ActivitySubscriptionsNUX} from '#/components/dialogs/nuxs/ActivitySubscriptions' /* * NUXs */ import {isSnoozed, snooze, unsnooze} from '#/components/dialogs/nuxs/snoozing' -import {isDaysOld} from '#/components/dialogs/nuxs/utils' +import {isExistingUserAsOf} from '#/components/dialogs/nuxs/utils' type Context = { activeNux: Nux | undefined @@ -33,9 +34,12 @@ const queuedNuxs: { }) => boolean }[] = [ { - id: Nux.InitialVerificationAnnouncement, + id: Nux.ActivitySubscriptions, enabled: ({currentProfile}) => { - return isDaysOld(2, currentProfile.createdAt) + return isExistingUserAsOf( + '2025-07-07T00:00:00.000Z', + currentProfile.createdAt, + ) }, }, ] @@ -44,6 +48,7 @@ const Context = React.createContext({ activeNux: undefined, dismissActiveNux: () => {}, }) +Context.displayName = 'NuxDialogContext' export function useNuxDialogContext() { return React.useContext(Context) @@ -52,7 +57,10 @@ export function useNuxDialogContext() { export function NuxDialogs() { const {currentAccount} = useSession() const {data: preferences} = usePreferencesQuery() - const {data: profile} = useProfileQuery({did: currentAccount?.did}) + const {data: profile} = useProfileQuery({ + did: currentAccount?.did, + staleTime: STALE.INFINITY, // createdAt isn't gonna change + }) const onboardingActive = useOnboardingState().isActive const isLoading = @@ -111,7 +119,7 @@ function Inner({ } React.useEffect(() => { - if (snoozed) return + if (snoozed) return // comment this out to test if (!nuxs) return for (const {id, enabled} of queuedNuxs) { @@ -119,7 +127,7 @@ function Inner({ // check if completed first if (nux && nux.completed) { - continue + continue // comment this out to test } // then check gate (track exposure) @@ -172,9 +180,7 @@ function Inner({ return ( {/*For example, activeNux === Nux.NeueTypography && */} - {activeNux === Nux.InitialVerificationAnnouncement && ( - - )} + {activeNux === Nux.ActivitySubscriptions && } ) } diff --git a/src/components/dialogs/nuxs/utils.ts b/src/components/dialogs/nuxs/utils.ts index 0cc5104840..ba8f0169d6 100644 --- a/src/components/dialogs/nuxs/utils.ts +++ b/src/components/dialogs/nuxs/utils.ts @@ -16,3 +16,18 @@ export function isDaysOld(days: number, createdAt?: string) { if (isOldEnough) return true return false } + +export function isExistingUserAsOf(date: string, createdAt?: string) { + /* + * Should never happen because we gate NUXs to only accounts with a valid + * profile and a `createdAt` (see `nuxs/index.tsx`). But if it ever did, the + * account is either old enough to be pre-onboarding, or some failure happened + * during account creation. Fail closed. - esb + */ + if (!createdAt) return false + + const threshold = Date.parse(date) + const then = new Date(createdAt).getTime() + + return then < threshold +} diff --git a/src/components/dms/EmojiReactionPicker.tsx b/src/components/dms/EmojiReactionPicker.tsx index cdb1680e82..b83fd44547 100644 --- a/src/components/dms/EmojiReactionPicker.tsx +++ b/src/components/dms/EmojiReactionPicker.tsx @@ -98,8 +98,8 @@ export function EmojiReactionPicker({ : t.palette.primary_500, } : alreadyReacted - ? {backgroundColor: t.palette.primary_200} - : bgColor, + ? {backgroundColor: t.palette.primary_200} + : bgColor, {height: 40, width: 40}, a.justify_center, a.align_center, diff --git a/src/components/dms/EmojiReactionPicker.web.tsx b/src/components/dms/EmojiReactionPicker.web.tsx index 4dabfc7df5..f2a7cc1193 100644 --- a/src/components/dms/EmojiReactionPicker.web.tsx +++ b/src/components/dms/EmojiReactionPicker.web.tsx @@ -78,10 +78,12 @@ function MenuInner({ - +
evt.stopPropagation()}> + +
) : ( diff --git a/src/components/dms/MessageContext.tsx b/src/components/dms/MessageContext.tsx index 84056fb306..645079eb26 100644 --- a/src/components/dms/MessageContext.tsx +++ b/src/components/dms/MessageContext.tsx @@ -1,6 +1,7 @@ import React from 'react' const MessageContext = React.createContext(false) +MessageContext.displayName = 'MessageContext' export function MessageContextProvider({ children, diff --git a/src/components/dms/MessageContextMenu.tsx b/src/components/dms/MessageContextMenu.tsx index a45ec7a079..670e677db2 100644 --- a/src/components/dms/MessageContextMenu.tsx +++ b/src/components/dms/MessageContextMenu.tsx @@ -5,9 +5,8 @@ import {type ChatBskyConvoDefs, RichText} from '@atproto/api' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {useOpenLink} from '#/lib/hooks/useOpenLink' +import {useTranslate} from '#/lib/hooks/useTranslate' import {richTextToString} from '#/lib/strings/rich-text-helpers' -import {getTranslatorLink} from '#/locale/helpers' import {logger} from '#/logger' import {isNative} from '#/platform/detection' import {useConvoActive} from '#/state/messages/convo' @@ -39,7 +38,7 @@ export let MessageContextMenu = ({ const deleteControl = usePromptControl() const reportControl = usePromptControl() const langPrefs = useLanguagePrefs() - const openLink = useOpenLink() + const translate = useTranslate() const isFromSelf = message.sender?.did === currentAccount?.did @@ -57,11 +56,7 @@ export let MessageContextMenu = ({ }, [_, message.text, message.facets]) const onPressTranslateMessage = useCallback(() => { - const translatorUrl = getTranslatorLink( - message.text, - langPrefs.primaryLanguage, - ) - openLink(translatorUrl, true) + translate(message.text, langPrefs.primaryLanguage) logger.metric( 'translate', @@ -72,7 +67,7 @@ export let MessageContextMenu = ({ }, {statsig: false}, ) - }, [langPrefs.primaryLanguage, message.text, openLink]) + }, [langPrefs.primaryLanguage, message.text, translate]) const onDelete = useCallback(() => { LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut) @@ -128,8 +123,7 @@ export let MessageContextMenu = ({ label={_(msg`Message options`)} contentLabel={_( msg`Message from @${ - sender?.handle ?? // should always be defined - 'unknown' + sender?.handle ?? 'unknown' // should always be defined }: ${message.text}`, )}> {children} diff --git a/src/components/dms/MessageProfileButton.tsx b/src/components/dms/MessageProfileButton.tsx index 07b3a0c042..fbbb5c9bfa 100644 --- a/src/components/dms/MessageProfileButton.tsx +++ b/src/components/dms/MessageProfileButton.tsx @@ -73,7 +73,8 @@ export function MessageProfileButton({ a.align_center, t.atoms.bg_contrast_25, a.rounded_full, - {width: 34, height: 34}, + // Matches size of button below to avoid layout shift + {width: 33, height: 33}, ]}> diff --git a/src/components/forms/TextField.tsx b/src/components/forms/TextField.tsx index ea7f8e94ef..9993317d6a 100644 --- a/src/components/forms/TextField.tsx +++ b/src/components/forms/TextField.tsx @@ -1,4 +1,4 @@ -import React from 'react' +import {createContext, useContext, useMemo, useRef} from 'react' import { type AccessibilityProps, StyleSheet, @@ -16,7 +16,9 @@ import { applyFonts, atoms as a, ios, + platform, type TextStyleProp, + tokens, useAlf, useTheme, web, @@ -25,7 +27,7 @@ import {useInteractionState} from '#/components/hooks/useInteractionState' import {type Props as SVGIconProps} from '#/components/icons/common' import {Text} from '#/components/Typography' -const Context = React.createContext<{ +const Context = createContext<{ inputRef: React.RefObject | null isInvalid: boolean hovered: boolean @@ -44,11 +46,12 @@ const Context = React.createContext<{ onFocus: () => {}, onBlur: () => {}, }) +Context.displayName = 'TextFieldContext' export type RootProps = React.PropsWithChildren<{isInvalid?: boolean}> export function Root({children, isInvalid = false}: RootProps) { - const inputRef = React.useRef(null) + const inputRef = useRef(null) const { state: hovered, onIn: onHoverIn, @@ -56,7 +59,7 @@ export function Root({children, isInvalid = false}: RootProps) { } = useInteractionState() const {state: focused, onIn: onFocus, onOut: onBlur} = useInteractionState() - const context = React.useMemo( + const context = useMemo( () => ({ inputRef, hovered, @@ -96,7 +99,7 @@ export function Root({children, isInvalid = false}: RootProps) { export function useSharedInputStyles() { const t = useTheme() - return React.useMemo(() => { + return useMemo(() => { const hover: ViewStyle[] = [ { borderColor: t.palette.contrast_100, @@ -158,7 +161,7 @@ export function createInput(Component: typeof TextInput) { }: InputProps) { const t = useTheme() const {fonts} = useAlf() - const ctx = React.useContext(Context) + const ctx = useContext(Context) const withinRoot = Boolean(ctx.inputRef) const {chromeHover, chromeFocus, chromeError, chromeErrorHover} = @@ -196,7 +199,8 @@ export function createInput(Component: typeof TextInput) { minWidth: 0, }, ios({paddingTop: 12, paddingBottom: 13}), - android(a.py_md), + // Needs to be sm on Paper, md on Fabric for some godforsaken reason -sfn + android(a.py_sm), // fix for autofill styles covering border web({ paddingTop: 10, @@ -282,8 +286,8 @@ export function LabelText({ export function Icon({icon: Comp}: {icon: React.ComponentType}) { const t = useTheme() - const ctx = React.useContext(Context) - const {hover, focus, errorHover, errorFocus} = React.useMemo(() => { + const ctx = useContext(Context) + const {hover, focus, errorHover, errorFocus} = useMemo(() => { const hover: TextStyle[] = [ { color: t.palette.contrast_800, @@ -341,7 +345,7 @@ export function SuffixText({ } >) { const t = useTheme() - const ctx = React.useContext(Context) + const ctx = useContext(Context) return ( ) } + +export function GhostText({ + children, + value, +}: { + children: string + value: string +}) { + const t = useTheme() + // eslint-disable-next-line bsky-internal/avoid-unwrapped-text + return ( + + + {children} + + {value} + + + + ) +} diff --git a/src/components/forms/Toggle.tsx b/src/components/forms/Toggle.tsx index 4e3695bbf2..9c3564aa54 100644 --- a/src/components/forms/Toggle.tsx +++ b/src/components/forms/Toggle.tsx @@ -1,5 +1,5 @@ import React from 'react' -import {Pressable, View, ViewStyle} from 'react-native' +import {Pressable, View, type ViewStyle} from 'react-native' import Animated, {LinearTransition} from 'react-native-reanimated' import {HITSLOP_10} from '#/lib/constants' @@ -8,9 +8,9 @@ import { atoms as a, flatten, native, - TextStyleProp, + type TextStyleProp, useTheme, - ViewStyleProp, + type ViewStyleProp, } from '#/alf' import {useInteractionState} from '#/components/hooks/useInteractionState' import {CheckThick_Stroke2_Corner0_Rounded as Checkmark} from '#/components/icons/Check' @@ -35,6 +35,7 @@ const ItemContext = React.createContext({ pressed: false, focused: false, }) +ItemContext.displayName = 'ToggleItemContext' const GroupContext = React.createContext<{ values: string[] @@ -49,6 +50,7 @@ const GroupContext = React.createContext<{ maxSelectionsReached: false, setFieldValue: () => {}, }) +GroupContext.displayName = 'ToggleGroupContext' export type GroupProps = React.PropsWithChildren<{ type?: 'radio' | 'checkbox' diff --git a/src/components/hooks/useOnGesture/index.ts b/src/components/hooks/useOnGesture/index.ts new file mode 100644 index 0000000000..6f05606612 --- /dev/null +++ b/src/components/hooks/useOnGesture/index.ts @@ -0,0 +1,24 @@ +import {useEffect} from 'react' + +import { + type GlobalGestureEvents, + useGlobalGestureEvents, +} from '#/state/global-gesture-events' + +/** + * Listen for global gesture events. Callback should be wrapped with + * `useCallback` or otherwise memoized to avoid unnecessary re-renders. + */ +export function useOnGesture( + onGestureCallback: (e: GlobalGestureEvents['begin']) => void, +) { + const ctx = useGlobalGestureEvents() + useEffect(() => { + ctx.register() + ctx.events.on('begin', onGestureCallback) + return () => { + ctx.unregister() + ctx.events.off('begin', onGestureCallback) + } + }, [ctx, onGestureCallback]) +} diff --git a/src/components/hooks/useOnGesture/index.web.ts b/src/components/hooks/useOnGesture/index.web.ts new file mode 100644 index 0000000000..6129fde106 --- /dev/null +++ b/src/components/hooks/useOnGesture/index.web.ts @@ -0,0 +1 @@ +export function useOnGesture() {} diff --git a/src/components/icons/ArrowCornerDownRight.tsx b/src/components/icons/ArrowCornerDownRight.tsx new file mode 100644 index 0000000000..86dde70154 --- /dev/null +++ b/src/components/icons/ArrowCornerDownRight.tsx @@ -0,0 +1,7 @@ +import {createSinglePathSVG} from './TEMPLATE' + +export const ArrowCornerDownRight_Stroke2_Corner2_Rounded = createSinglePathSVG( + { + path: 'M15.793 10.293a1 1 0 0 1 1.338-.068l.076.068 3.293 3.293a2 2 0 0 1 .138 2.677l-.138.151-3.293 3.293a1 1 0 1 1-1.414-1.414L18.086 16H8a5 5 0 0 1-5-5V5a1 1 0 0 1 2 0v6a3 3 0 0 0 3 3h10.086l-2.293-2.293-.068-.076a1 1 0 0 1 .068-1.338Z', + }, +) diff --git a/src/components/icons/BellPlus.tsx b/src/components/icons/BellPlus.tsx new file mode 100644 index 0000000000..cd29de1979 --- /dev/null +++ b/src/components/icons/BellPlus.tsx @@ -0,0 +1,5 @@ +import {createSinglePathSVG} from './TEMPLATE' + +export const BellPlus_Stroke2_Corner0_Rounded = createSinglePathSVG({ + path: 'M12 2a1 1 0 0 1 0 2 5.85 5.85 0 0 0-5.802 5.08L5.143 17h13.715l-.382-2.868-.01-.102a1 1 0 0 1 1.973-.262l.02.1.532 4a1 1 0 0 1-.99 1.132h-3.357c-.905 1.747-2.606 3-4.644 3s-3.74-1.253-4.643-3H4a1 1 0 0 1-.991-1.132l1.207-9.053A7.85 7.85 0 0 1 12 2ZM9.78 19c.61.637 1.397 1 2.22 1s1.611-.363 2.22-1H9.78ZM17 2.5a1 1 0 0 1 1 1V6h2.5a1 1 0 0 1 0 2H18v2.5a1 1 0 0 1-2 0V8h-2.5a1 1 0 1 1 0-2H16V3.5a1 1 0 0 1 1-1Z', +}) diff --git a/src/components/icons/BellRinging.tsx b/src/components/icons/BellRinging.tsx index b174fcedc2..11981a7a38 100644 --- a/src/components/icons/BellRinging.tsx +++ b/src/components/icons/BellRinging.tsx @@ -3,3 +3,7 @@ import {createSinglePathSVG} from './TEMPLATE' export const BellRinging_Stroke2_Corner0_Rounded = createSinglePathSVG({ path: 'M12 2a7.854 7.854 0 0 1 7.785 6.815l1.055 7.92.018.224a2 2 0 0 1-2 2.041h-2.215c-.904 1.747-2.605 3-4.643 3s-3.739-1.253-4.643-3H5.142a2 2 0 0 1-1.982-2.265l1.056-7.92.057-.363A7.854 7.854 0 0 1 12 2ZM9.78 19c.609.637 1.398 1 2.22 1s1.611-.363 2.22-1H9.78ZM12 4a5.854 5.854 0 0 0-5.76 4.81l-.041.27L5.142 17h13.716l-1.056-7.92A5.854 5.854 0 0 0 12 4ZM2.718 7.464a1 1 0 1 1-1.953-.427l1.953.427Zm20.518-.427a1 1 0 0 1-1.954.427l1.954-.427ZM3.193 2.105a1 1 0 0 1 1.531 1.287 9.47 9.47 0 0 0-2.006 4.072L.765 7.037a11.46 11.46 0 0 1 2.428-4.932Zm16.205-.123a1 1 0 0 1 1.34.047l.069.076.217.265a11.46 11.46 0 0 1 2.212 4.667l-.978.213-.976.214a9.46 9.46 0 0 0-1.826-3.853l-.18-.22-.062-.081a1 1 0 0 1 .184-1.328Z', }) + +export const BellRinging_Filled_Corner0_Rounded = createSinglePathSVG({ + path: 'M12 2a7.854 7.854 0 0 1 7.784 6.815l1.207 9.053a1 1 0 0 1-.99 1.132h-3.354c-.904 1.748-2.608 3-4.647 3-2.038 0-3.742-1.252-4.646-3H4a1.002 1.002 0 0 1-.991-1.132l1.207-9.053A7.85 7.85 0 0 1 12 2ZM9.78 19c.608.637 1.398 1 2.221 1s1.613-.363 2.222-1H9.779ZM3.193 2.104a1 1 0 0 1 1.53 1.288A9.47 9.47 0 0 0 2.72 7.464a1 1 0 0 1-1.954-.427 11.46 11.46 0 0 1 2.428-4.933Zm16.205-.122a1 1 0 0 1 1.409.122 11.47 11.47 0 0 1 2.429 4.933 1 1 0 0 1-1.954.427 9.47 9.47 0 0 0-2.006-4.072 1 1 0 0 1 .122-1.41Z', +}) diff --git a/src/components/icons/Circle.tsx b/src/components/icons/Circle.tsx new file mode 100644 index 0000000000..93d837119e --- /dev/null +++ b/src/components/icons/Circle.tsx @@ -0,0 +1,5 @@ +import {createSinglePathSVG} from './TEMPLATE' + +export const Circle_Stroke2_Corner0_Rounded = createSinglePathSVG({ + path: 'M12 4a8 8 0 1 0 0 16 8 8 0 0 0 0-16ZM2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Z', +}) diff --git a/src/components/icons/VerifiedCheck.tsx b/src/components/icons/VerifiedCheck.tsx index 9d0aa9158d..a98fdfc5d9 100644 --- a/src/components/icons/VerifiedCheck.tsx +++ b/src/components/icons/VerifiedCheck.tsx @@ -3,28 +3,27 @@ import Svg, {Circle, Path} from 'react-native-svg' import {type Props, useCommonSVGProps} from '#/components/icons/common' -export const VerifiedCheck = React.forwardRef(function LogoImpl( - props, - ref, -) { - const {fill, size, style, ...rest} = useCommonSVGProps(props) +export const VerifiedCheck = React.forwardRef( + function LogoImpl(props, ref) { + const {fill, size, style, ...rest} = useCommonSVGProps(props) - return ( - - - - - ) -}) + return ( + + + + + ) + }, +) diff --git a/src/components/icons/VerifierCheck.tsx b/src/components/icons/VerifierCheck.tsx index 143c24b971..4674fdde88 100644 --- a/src/components/icons/VerifierCheck.tsx +++ b/src/components/icons/VerifierCheck.tsx @@ -3,33 +3,32 @@ import Svg, {Path} from 'react-native-svg' import {type Props, useCommonSVGProps} from '#/components/icons/common' -export const VerifierCheck = React.forwardRef(function LogoImpl( - props, - ref, -) { - const {fill, size, style, ...rest} = useCommonSVGProps(props) +export const VerifierCheck = React.forwardRef( + function LogoImpl(props, ref) { + const {fill, size, style, ...rest} = useCommonSVGProps(props) - return ( - - - - - ) -}) + return ( + + + + + ) + }, +) diff --git a/src/components/intents/IntentDialogs.tsx b/src/components/intents/IntentDialogs.tsx index 244850370d..40b227e499 100644 --- a/src/components/intents/IntentDialogs.tsx +++ b/src/components/intents/IntentDialogs.tsx @@ -1,7 +1,7 @@ import React from 'react' import * as Dialog from '#/components/Dialog' -import {DialogControlProps} from '#/components/Dialog' +import {type DialogControlProps} from '#/components/Dialog' import {VerifyEmailIntentDialog} from '#/components/intents/VerifyEmailIntentDialog' interface Context { @@ -11,6 +11,7 @@ interface Context { } const Context = React.createContext({} as Context) +Context.displayName = 'IntentDialogsContext' export const useIntentDialogs = () => React.useContext(Context) export function Provider({children}: {children: React.ReactNode}) { diff --git a/src/components/interstitials/TrendingVideos.tsx b/src/components/interstitials/TrendingVideos.tsx index fab738b9cb..4d59e2fb5c 100644 --- a/src/components/interstitials/TrendingVideos.tsx +++ b/src/components/interstitials/TrendingVideos.tsx @@ -16,7 +16,6 @@ import {atoms as a, useGutters, useTheme} from '#/alf' import {Button, ButtonIcon} from '#/components/Button' import {ChevronRight_Stroke2_Corner0_Rounded as ChevronRight} from '#/components/icons/Chevron' import {TimesLarge_Stroke2_Corner0_Rounded as X} from '#/components/icons/Times' -import {Trending2_Stroke2_Corner2_Rounded as Graph} from '#/components/icons/Trending' import {Link} from '#/components/Link' import * as Prompt from '#/components/Prompt' import {Text} from '#/components/Typography' @@ -25,7 +24,7 @@ import { CompactVideoPostCardPlaceholder, } from '#/components/VideoPostCard' -const CARD_WIDTH = 100 +const CARD_WIDTH = 108 const FEED_DESC = `feedgen|${VIDEO_FEED_URI}` const FEED_PARAMS: { @@ -68,9 +67,10 @@ export function TrendingVideos() { return ( @@ -82,20 +82,17 @@ export function TrendingVideos() { a.align_center, a.justify_between, ]}> - - - - Trending Videos - - + + Trending Videos + @@ -104,11 +101,12 @@ export function TrendingVideos() { horizontal showsHorizontalScrollIndicator={false} decelerationRate="fast" - snapToInterval={CARD_WIDTH + a.gap_sm.gap}> + snapToInterval={CARD_WIDTH + a.gap_md.gap} + style={[a.overflow_visible]}> {({pressed}) => ( removeLiveStatus()} size={platform({native: 'large', web: 'small'})} - color="negative_secondary" + color="negative_subtle" variant="solid" disabled={isRemovingLiveStatus || isGoingLive}> diff --git a/src/components/moderation/ContentHider.tsx b/src/components/moderation/ContentHider.tsx index d3f74c0c5e..549a1b9f0a 100644 --- a/src/components/moderation/ContentHider.tsx +++ b/src/components/moderation/ContentHider.tsx @@ -1,6 +1,6 @@ import React from 'react' -import {StyleProp, View, ViewStyle} from 'react-native' -import {ModerationUI} from '@atproto/api' +import {type StyleProp, View, type ViewStyle} from 'react-native' +import {type ModerationUI} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' @@ -23,20 +23,23 @@ export function ContentHider({ modui, ignoreMute, style, + activeStyle, childContainerStyle, children, -}: React.PropsWithChildren<{ +}: { testID?: string modui: ModerationUI | undefined ignoreMute?: boolean style?: StyleProp + activeStyle?: StyleProp childContainerStyle?: StyleProp -}>) { + children?: React.ReactNode | ((props: {active: boolean}) => React.ReactNode) +}) { const blur = modui?.blurs[0] if (!blur || (ignoreMute && isJustAMute(modui))) { return ( - {children} + {typeof children === 'function' ? children({active: false}) : children} ) } @@ -44,9 +47,9 @@ export function ContentHider({ - {children} + {typeof children === 'function' ? children({active: true}) : children} ) } @@ -148,8 +151,8 @@ function ContentHiderActive({ modui.noOverride ? _(msg`Learn more about the moderation applied to this content`) : override - ? _(msg`Hides the content`) - : _(msg`Shows the content`) + ? _(msg`Hides the content`) + : _(msg`Shows the content`) }> {state => ( ({} as Context) +Context.displayName = 'HiderContext' export const useHider = () => React.useContext(Context) diff --git a/src/components/moderation/LabelPreference.tsx b/src/components/moderation/LabelPreference.tsx index a951e5abfd..edbb12d0cb 100644 --- a/src/components/moderation/LabelPreference.tsx +++ b/src/components/moderation/LabelPreference.tsx @@ -1,8 +1,11 @@ -import React from 'react' import {View} from 'react-native' -import {InterpretedLabelValueDefinition, LabelPreference} from '@atproto/api' +import { + type InterpretedLabelValueDefinition, + type LabelPreference, +} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' +import type React from 'react' import {useGlobalLabelStrings} from '#/lib/moderation/useGlobalLabelStrings' import {useLabelBehaviorDescription} from '#/lib/moderation/useLabelBehaviorDescription' @@ -65,6 +68,7 @@ export function Buttons({ ignoreLabel, warnLabel, hideLabel, + disabled, }: { name: string values: ToggleButton.GroupProps['values'] @@ -72,12 +76,14 @@ export function Buttons({ ignoreLabel?: string warnLabel?: string hideLabel?: string + disabled?: boolean }) { const {_} = useLingui() return ( - {!disabled && ( - { - mutate({ - label: identifier, - visibility: values[0] as LabelPreference, - labelerDid: undefined, - }) - }} - ignoreLabel={labelOptions.ignore} - warnLabel={labelOptions.warn} - hideLabel={labelOptions.hide} - /> - )} + { + mutate({ + label: identifier, + visibility: values[0] as LabelPreference, + labelerDid: undefined, + }) + }} + ignoreLabel={labelOptions.ignore} + warnLabel={labelOptions.warn} + hideLabel={labelOptions.hide} + disabled={disabled} + /> ) } diff --git a/src/components/moderation/ReportDialog/const.ts b/src/components/moderation/ReportDialog/const.ts index 30c9aff88d..0f3fdbfacf 100644 --- a/src/components/moderation/ReportDialog/const.ts +++ b/src/components/moderation/ReportDialog/const.ts @@ -1 +1,2 @@ export const DMCA_LINK = 'https://bsky.social/about/support/copyright' +export const SUPPORT_PAGE = 'https://bsky.social/about/support' diff --git a/src/components/moderation/ReportDialog/index.tsx b/src/components/moderation/ReportDialog/index.tsx index acab1d21fc..cd8bbe0a42 100644 --- a/src/components/moderation/ReportDialog/index.tsx +++ b/src/components/moderation/ReportDialog/index.tsx @@ -30,7 +30,7 @@ import {createStaticClick, InlineLinkText, Link} from '#/components/Link' import {Loader} from '#/components/Loader' import {Text} from '#/components/Typography' import {useSubmitReportMutation} from './action' -import {DMCA_LINK} from './const' +import {SUPPORT_PAGE} from './const' import {useCopyForSubject} from './copy' import {initialState, reducer} from './state' import {type ReportDialogProps, type ReportSubject} from './types' @@ -266,9 +266,9 @@ function Inner(props: ReportDialogProps) { {['post', 'account'].includes(props.subject.type) && ( {({hovered, pressed}) => ( - Need to report a copyright violation? + + Need to report a copyright violation, legal + request, or regulatory compliance issue? + {completed ? ( @@ -533,8 +536,8 @@ function StepTitle({ color: active ? 'white' : completed - ? t.palette.primary_700 - : t.atoms.text_contrast_medium.color, + ? t.palette.primary_700 + : t.atoms.text_contrast_medium.color, fontVariant: ['tabular-nums'], width: 24, height: 24, diff --git a/src/components/verification/VerificationCheckButton.tsx b/src/components/verification/VerificationCheckButton.tsx index 9278a3072a..2ccc730f62 100644 --- a/src/components/verification/VerificationCheckButton.tsx +++ b/src/components/verification/VerificationCheckButton.tsx @@ -130,8 +130,8 @@ export function Badge({ verifiedByHidden ? t.atoms.bg_contrast_100.backgroundColor : state.profile.isVerified - ? t.palette.primary_500 - : t.atoms.bg_contrast_100.backgroundColor + ? t.palette.primary_500 + : t.atoms.bg_contrast_100.backgroundColor } verifier={state.profile.role === 'verifier'} /> diff --git a/src/components/verification/VerificationsDialog.tsx b/src/components/verification/VerificationsDialog.tsx index 665bf3ba30..447e39e970 100644 --- a/src/components/verification/VerificationsDialog.tsx +++ b/src/components/verification/VerificationsDialog.tsx @@ -64,13 +64,13 @@ function Inner({ ? _(msg`You are verified`) : _(msg`Your verifications`) : state.profile.isVerified - ? _(msg`${userName} is verified`) - : _( - msg({ - message: `${userName}'s verifications`, - comment: `Possessive, meaning "the verifications of {userName}"`, - }), - ) + ? _(msg`${userName} is verified`) + : _( + msg({ + message: `${userName}'s verifications`, + comment: `Possessive, meaning "the verifications of {userName}"`, + }), + ) return ( >({ onBeginDrag: undefined, @@ -7,6 +7,7 @@ const ScrollContext = createContext>({ onScroll: undefined, onMomentumEnd: undefined, }) +ScrollContext.displayName = 'ScrollContext' export function useScrollHandlers(): ScrollHandlers { return useContext(ScrollContext) diff --git a/src/lib/ThemeContext.tsx b/src/lib/ThemeContext.tsx index e4cebfcb2b..9714d8e0e7 100644 --- a/src/lib/ThemeContext.tsx +++ b/src/lib/ThemeContext.tsx @@ -1,7 +1,8 @@ -import React, {createContext, ReactNode, useContext} from 'react' -import {TextStyle, ViewStyle} from 'react-native' +import {type ReactNode} from 'react' +import {createContext, useContext} from 'react' +import {type TextStyle, type ViewStyle} from 'react-native' -import {ThemeName} from '#/alf/types' +import {type ThemeName} from '#/alf/types' import {darkTheme, defaultTheme, dimTheme} from './themes' export type ColorScheme = 'light' | 'dark' @@ -29,6 +30,9 @@ export type Palette = Record export type ShapeName = 'button' | 'bigButton' | 'smallButton' export type Shapes = Record +/** + * @deprecated use typography atoms from `#/alf` + */ export type TypographyVariant = | '2xl-thin' | '2xl' @@ -85,6 +89,7 @@ export interface ThemeProviderProps { } export const ThemeContext = createContext(defaultTheme) +ThemeContext.displayName = 'ThemeContext' export const useTheme = () => useContext(ThemeContext) diff --git a/src/lib/api/feed-manip.ts b/src/lib/api/feed-manip.ts index 3309191f34..335bf28c84 100644 --- a/src/lib/api/feed-manip.ts +++ b/src/lib/api/feed-manip.ts @@ -41,6 +41,7 @@ export class FeedViewPostsSlice { isIncompleteThread: boolean isFallbackMarker: boolean isOrphan: boolean + isThreadMuted: boolean rootUri: string feedPostUri: string @@ -50,6 +51,7 @@ export class FeedViewPostsSlice { this.isIncompleteThread = false this.isFallbackMarker = false this.isOrphan = false + this.isThreadMuted = post.viewer?.threadMuted ?? false this.feedPostUri = post.uri if (AppBskyFeedDefs.isPostView(reply?.root)) { this.rootUri = reply.root.uri @@ -361,6 +363,20 @@ export class FeedTuner { return slices } + static removeMutedThreads( + tuner: FeedTuner, + slices: FeedViewPostsSlice[], + _dryRun: boolean, + ) { + for (let i = 0; i < slices.length; i++) { + if (slices[i].isThreadMuted) { + slices.splice(i, 1) + i-- + } + } + return slices + } + static dedupThreads( tuner: FeedTuner, slices: FeedViewPostsSlice[], diff --git a/src/lib/api/feed/home.ts b/src/lib/api/feed/home.ts index e6bc45bea0..7a0d72d915 100644 --- a/src/lib/api/feed/home.ts +++ b/src/lib/api/feed/home.ts @@ -1,9 +1,9 @@ -import {AppBskyFeedDefs, BskyAgent} from '@atproto/api' +import {type AppBskyFeedDefs, type BskyAgent} from '@atproto/api' import {PROD_DEFAULT_FEED} from '#/lib/constants' import {CustomFeedAPI} from './custom' import {FollowingFeedAPI} from './following' -import {FeedAPI, FeedAPIResponse} from './types' +import {type FeedAPI, type FeedAPIResponse} from './types' // HACK // the feed API does not include any facilities for passing down @@ -93,7 +93,7 @@ export class HomeFeedAPI implements FeedAPI { } } - if (this.usingDiscover) { + if (this.usingDiscover && !__DEV__) { const res = await this.discover.fetch({cursor, limit}) returnCursor = res.cursor posts = posts.concat(res.feed) diff --git a/src/lib/api/feed/list.ts b/src/lib/api/feed/list.ts index 9744e3d4ce..9697b0aaf3 100644 --- a/src/lib/api/feed/list.ts +++ b/src/lib/api/feed/list.ts @@ -1,20 +1,20 @@ import { - AppBskyFeedDefs, - AppBskyFeedGetListFeed as GetListFeed, - BskyAgent, + type Agent, + type AppBskyFeedDefs, + type AppBskyFeedGetListFeed as GetListFeed, } from '@atproto/api' -import {FeedAPI, FeedAPIResponse} from './types' +import {type FeedAPI, type FeedAPIResponse} from './types' export class ListFeedAPI implements FeedAPI { - agent: BskyAgent + agent: Agent params: GetListFeed.QueryParams constructor({ agent, feedParams, }: { - agent: BskyAgent + agent: Agent feedParams: GetListFeed.QueryParams }) { this.agent = agent diff --git a/src/lib/api/feed/posts.ts b/src/lib/api/feed/posts.ts new file mode 100644 index 0000000000..33eff50997 --- /dev/null +++ b/src/lib/api/feed/posts.ts @@ -0,0 +1,52 @@ +import { + type Agent, + type AppBskyFeedDefs, + type AppBskyFeedGetPosts, +} from '@atproto/api' + +import {logger} from '#/logger' +import {type FeedAPI, type FeedAPIResponse} from './types' + +export class PostListFeedAPI implements FeedAPI { + agent: Agent + params: AppBskyFeedGetPosts.QueryParams + peek: AppBskyFeedDefs.FeedViewPost | null = null + + constructor({ + agent, + feedParams, + }: { + agent: Agent + feedParams: AppBskyFeedGetPosts.QueryParams + }) { + this.agent = agent + if (feedParams.uris.length > 25) { + logger.warn( + `Too many URIs provided - expected 25, got ${feedParams.uris.length}`, + ) + } + this.params = { + uris: feedParams.uris.slice(0, 25), + } + } + + async peekLatest(): Promise { + if (this.peek) return this.peek + throw new Error('Has not fetched yet') + } + + async fetch({}: {}): Promise { + const res = await this.agent.app.bsky.feed.getPosts({ + ...this.params, + }) + if (res.success) { + this.peek = {post: res.data.posts[0]} + return { + feed: res.data.posts.map(post => ({post})), + } + } + return { + feed: [], + } + } +} diff --git a/src/lib/api/index.ts b/src/lib/api/index.ts index 7621fbb4cc..20f0745d69 100644 --- a/src/lib/api/index.ts +++ b/src/lib/api/index.ts @@ -333,15 +333,27 @@ async function resolveMedia( return {lang: caption.lang, file: data.blob} }), ) + + // lexicon numbers must be floats + const width = Math.round(videoDraft.asset.width) + const height = Math.round(videoDraft.asset.height) + + // aspect ratio values must be >0 - better to leave as unset otherwise + // posting will fail if aspect ratio is set to 0 + const aspectRatio = width > 0 && height > 0 ? {width, height} : undefined + + if (!aspectRatio) { + logger.error( + `Invalid aspect ratio - got { width: ${videoDraft.asset.width}, height: ${videoDraft.asset.height} }`, + ) + } + return { $type: 'app.bsky.embed.video', video: videoDraft.pendingPublish.blobRef, alt: videoDraft.altText || undefined, captions: captions.length === 0 ? undefined : captions, - aspectRatio: { - width: videoDraft.asset.width, - height: videoDraft.asset.height, - }, + aspectRatio, } } if (embedDraft.media?.type === 'gif') { diff --git a/src/lib/app-info.ts b/src/lib/app-info.ts deleted file mode 100644 index 0749087eae..0000000000 --- a/src/lib/app-info.ts +++ /dev/null @@ -1,18 +0,0 @@ -import {nativeApplicationVersion, nativeBuildVersion} from 'expo-application' - -export const IS_TESTFLIGHT = process.env.EXPO_PUBLIC_ENV === 'testflight' -export const IS_INTERNAL = __DEV__ || IS_TESTFLIGHT - -// This is the commit hash that the current bundle was made from. The user can see the commit hash in the app's settings -// along with the other version info. Useful for debugging/reporting. -export const BUNDLE_IDENTIFIER = process.env.EXPO_PUBLIC_BUNDLE_IDENTIFIER ?? '' - -// This will always be in the format of YYMMDD, so that it always increases for each build. This should only be used -// for Statsig reporting and shouldn't be used to identify a specific bundle. -export const BUNDLE_DATE = - IS_TESTFLIGHT || __DEV__ ? 0 : Number(process.env.EXPO_PUBLIC_BUNDLE_DATE) - -export const appVersion = `${nativeApplicationVersion}.${nativeBuildVersion}` -export const bundleInfo = `${BUNDLE_IDENTIFIER} (${ - __DEV__ ? 'dev' : IS_TESTFLIGHT ? 'tf' : 'prod' -})` diff --git a/src/lib/app-info.web.ts b/src/lib/app-info.web.ts deleted file mode 100644 index 1530d99769..0000000000 --- a/src/lib/app-info.web.ts +++ /dev/null @@ -1,18 +0,0 @@ -import packageDotJson from '../../package.json' - -export const IS_TESTFLIGHT = false -export const IS_INTERNAL = __DEV__ - -// This is the commit hash that the current bundle was made from. The user can see the commit hash in the app's settings -// along with the other version info. Useful for debugging/reporting. -export const BUNDLE_IDENTIFIER = - process.env.EXPO_PUBLIC_BUNDLE_IDENTIFIER ?? 'dev' - -// This will always be in the format of YYMMDD, so that it always increases for each build. This should only be used -// for Statsig reporting and shouldn't be used to identify a specific bundle. -export const BUNDLE_DATE = __DEV__ - ? 0 - : Number(process.env.EXPO_PUBLIC_BUNDLE_DATE) - -export const appVersion = packageDotJson.version -export const bundleInfo = `${BUNDLE_IDENTIFIER} (${__DEV__ ? 'dev' : 'prod'})` diff --git a/src/lib/constants.ts b/src/lib/constants.ts index dca03647a6..21f0ab870e 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -5,6 +5,7 @@ export const LOCAL_DEV_SERVICE = Platform.OS === 'android' ? 'http://10.0.2.2:2583' : 'http://localhost:2583' export const STAGING_SERVICE = 'https://staging.bsky.dev' export const BSKY_SERVICE = 'https://bsky.social' +export const BSKY_SERVICE_DID = 'did:web:bsky.social' export const PUBLIC_BSKY_SERVICE = 'https://public.api.bsky.app' export const DEFAULT_SERVICE = BSKY_SERVICE const HELP_DESK_LANG = 'en-us' @@ -31,7 +32,7 @@ export const DISCOVER_DEBUG_DIDS: Record = { 'did:plc:3jpt2mvvsumj2r7eqk4gzzjz': true, // esb.lol 'did:plc:vjug55kidv6sye7ykr5faxxn': true, // emilyliu.me 'did:plc:tgqseeot47ymot4zro244fj3': true, // iwsmith.bsky.social - 'did:plc:2dzyut5lxna5ljiaasgeuffz': true, // mrnuma.bsky.social + 'did:plc:2dzyut5lxna5ljiaasgeuffz': true, // darrin.bsky.team } const BASE_FEEDBACK_FORM_URL = `${HELP_DESK_URL}/requests/new` @@ -201,3 +202,16 @@ export const urls = { }, }, } + +export const PUBLIC_APPVIEW = 'https://api.bsky.app' +export const PUBLIC_APPVIEW_DID = 'did:web:api.bsky.app' +export const PUBLIC_STAGING_APPVIEW_DID = 'did:web:api.staging.bsky.dev' + +export const DEV_ENV_APPVIEW = `http://localhost:2584` // always the same + +export const webLinks = { + tos: `https://bsky.social/about/support/tos`, + privacy: `https://bsky.social/about/support/privacy-policy`, + community: `https://bsky.social/about/support/community-guidelines`, + communityDeprecated: `https://bsky.social/about/support/community-guidelines-deprecated`, +} diff --git a/src/lib/custom-animations/GestureActionView.tsx b/src/lib/custom-animations/GestureActionView.tsx index ba6952a81d..e7fba570bc 100644 --- a/src/lib/custom-animations/GestureActionView.tsx +++ b/src/lib/custom-animations/GestureActionView.tsx @@ -1,5 +1,5 @@ import React from 'react' -import {ColorValue, Dimensions, StyleSheet, View} from 'react-native' +import {type ColorValue, Dimensions, StyleSheet, View} from 'react-native' import {Gesture, GestureDetector} from 'react-native-gesture-handler' import Animated, { clamp, @@ -114,11 +114,16 @@ export function GestureActionView({ }, ) + // NOTE(haileyok): + // Absurdly high value so it doesn't interfere with the pan gestures above (i.e., scroll) + // reanimated doesn't offer great support for disabling y/x axes :/ + const effectivelyDisabledOffset = 200 const panGesture = Gesture.Pan() - .activeOffsetX([-10, 10]) - // Absurdly high value so it doesn't interfere with the pan gestures above (i.e., scroll) - // reanimated doesn't offer great support for disabling y/x axes :/ - .activeOffsetY([-200, 200]) + .activeOffsetX([ + actions.leftFirst ? -10 : -effectivelyDisabledOffset, + actions.rightFirst ? 10 : effectivelyDisabledOffset, + ]) + .activeOffsetY([-effectivelyDisabledOffset, effectivelyDisabledOffset]) .onStart(() => { 'worklet' isActive.set(true) diff --git a/src/lib/hooks/useCreateSupportLink.ts b/src/lib/hooks/useCreateSupportLink.ts new file mode 100644 index 0000000000..5ec7578c5a --- /dev/null +++ b/src/lib/hooks/useCreateSupportLink.ts @@ -0,0 +1,39 @@ +import {useCallback} from 'react' +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {useSession} from '#/state/session' + +export const ZENDESK_SUPPORT_URL = + 'https://blueskyweb.zendesk.com/hc/requests/new' + +export enum SupportCode { + AA_DID = 'AA_DID', +} + +/** + * {@link https://support.zendesk.com/hc/en-us/articles/4408839114522-Creating-pre-filled-ticket-forms} + */ +export function useCreateSupportLink() { + const {_} = useLingui() + const {currentAccount} = useSession() + + return useCallback( + ({code, email}: {code: SupportCode; email?: string}) => { + const url = new URL(ZENDESK_SUPPORT_URL) + if (currentAccount) { + url.search = new URLSearchParams({ + tf_anonymous_requester_email: email || currentAccount.email || '', // email will be defined + tf_description: + `[Code: ${code}] — ` + _(msg`Please write your message below:`), + /** + * Custom field specific to {@link ZENDESK_SUPPORT_URL} form + */ + tf_17205412673421: currentAccount.handle + ` (${currentAccount.did})`, + }).toString() + } + return url.toString() + }, + [_, currentAccount], + ) +} diff --git a/src/lib/hooks/useEmail.ts b/src/lib/hooks/useEmail.ts deleted file mode 100644 index a8f4c6ad25..0000000000 --- a/src/lib/hooks/useEmail.ts +++ /dev/null @@ -1,32 +0,0 @@ -import {useServiceConfigQuery} from '#/state/queries/email-verification-required' -import {useProfileQuery} from '#/state/queries/profile' -import {useSession} from '#/state/session' -import {BSKY_SERVICE} from '../constants' -import {getHostnameFromUrl} from '../strings/url-helpers' - -export function useEmail() { - const {currentAccount} = useSession() - - const {data: serviceConfig} = useServiceConfigQuery() - const {data: profile} = useProfileQuery({did: currentAccount?.did}) - - const checkEmailConfirmed = !!serviceConfig?.checkEmailConfirmed - - // Date set for 11 AM PST on the 18th of November - const isNewEnough = - !!profile?.createdAt && - Date.parse(profile.createdAt) >= Date.parse('2024-11-18T19:00:00.000Z') - - const isSelfHost = - currentAccount && - getHostnameFromUrl(currentAccount.service) !== - getHostnameFromUrl(BSKY_SERVICE) - - const needsEmailVerification = - !isSelfHost && - checkEmailConfirmed && - !currentAccount?.emailConfirmed && - isNewEnough - - return {needsEmailVerification} -} diff --git a/src/lib/hooks/useEnableKeyboardController.tsx b/src/lib/hooks/useEnableKeyboardController.tsx index 858f6943a4..5d9348bcdd 100644 --- a/src/lib/hooks/useEnableKeyboardController.tsx +++ b/src/lib/hooks/useEnableKeyboardController.tsx @@ -19,6 +19,8 @@ const KeyboardControllerRefCountContext = createContext<{ incrementRefCount: () => {}, decrementRefCount: () => {}, }) +KeyboardControllerRefCountContext.displayName = + 'KeyboardControllerRefCountContext' export function KeyboardControllerProvider({ children, diff --git a/src/lib/hooks/useHideBottomBarBorder.tsx b/src/lib/hooks/useHideBottomBarBorder.tsx index e21184fda4..6cbe9ad3df 100644 --- a/src/lib/hooks/useHideBottomBarBorder.tsx +++ b/src/lib/hooks/useHideBottomBarBorder.tsx @@ -4,8 +4,11 @@ import {useFocusEffect} from '@react-navigation/native' type HideBottomBarBorderSetter = () => () => void const HideBottomBarBorderContext = createContext(false) +HideBottomBarBorderContext.displayName = 'HideBottomBarBorderContext' const HideBottomBarBorderSetterContext = createContext(null) +HideBottomBarBorderSetterContext.displayName = + 'HideBottomBarBorderSetterContext' export function useHideBottomBarBorderSetter() { const hideBottomBarBorder = useContext(HideBottomBarBorderSetterContext) diff --git a/src/lib/hooks/useIntentHandler.ts b/src/lib/hooks/useIntentHandler.ts index 4a56537500..c359b2bd65 100644 --- a/src/lib/hooks/useIntentHandler.ts +++ b/src/lib/hooks/useIntentHandler.ts @@ -1,15 +1,21 @@ import React from 'react' +import {Alert} from 'react-native' import * as Linking from 'expo-linking' import {useOpenComposer} from '#/lib/hooks/useOpenComposer' -import {logEvent} from '#/lib/statsig/statsig' +import {logger} from '#/logger' import {isNative} from '#/platform/detection' import {useSession} from '#/state/session' import {useCloseAllActiveElements} from '#/state/util' +import { + parseAgeAssuranceRedirectDialogState, + useAgeAssuranceRedirectDialogControl, +} from '#/components/ageAssurance/AgeAssuranceRedirectDialog' import {useIntentDialogs} from '#/components/intents/IntentDialogs' import {Referrer} from '../../../modules/expo-bluesky-swiss-army' +import {useApplyPullRequestOTAUpdate} from './useOTAUpdates' -type IntentType = 'compose' | 'verify-email' +type IntentType = 'compose' | 'verify-email' | 'age-assurance' | 'apply-ota' const VALID_IMAGE_REGEX = /^[\w.:\-_/]+\|\d+(\.\d+)?\|\d+(\.\d+)?$/ @@ -20,12 +26,16 @@ export function useIntentHandler() { const incomingUrl = Linking.useURL() const composeIntent = useComposeIntent() const verifyEmailIntent = useVerifyEmailIntent() + const ageAssuranceRedirectDialogControl = + useAgeAssuranceRedirectDialogControl() + const {currentAccount} = useSession() + const {tryApplyUpdate} = useApplyPullRequestOTAUpdate() React.useEffect(() => { const handleIncomingURL = (url: string) => { const referrerInfo = Referrer.getReferrerInfo() if (referrerInfo && referrerInfo.hostname !== 'bsky.app') { - logEvent('deepLink:referrerReceived', { + logger.metric('deepLink:referrerReceived', { to: url, referrer: referrerInfo?.referrer, hostname: referrerInfo?.hostname, @@ -65,6 +75,34 @@ export function useIntentHandler() { verifyEmailIntent(code) return } + case 'age-assurance': { + const state = parseAgeAssuranceRedirectDialogState({ + result: params.get('result') ?? undefined, + actorDid: params.get('actorDid') ?? undefined, + }) + + /* + * If we don't have an account or the account doesn't match, do + * nothing. By the time the user switches to their other account, AA + * state should be ready for them. + */ + if ( + state && + currentAccount && + state.actorDid === currentAccount.did + ) { + ageAssuranceRedirectDialogControl.open(state) + } + return + } + case 'apply-ota': { + const channel = params.get('channel') + if (!channel) { + Alert.alert('Error', 'No channel provided to look for.') + } else { + tryApplyUpdate(channel) + } + } default: { return } @@ -78,7 +116,14 @@ export function useIntentHandler() { handleIncomingURL(incomingUrl) previousIntentUrl = incomingUrl } - }, [incomingUrl, composeIntent, verifyEmailIntent]) + }, [ + incomingUrl, + composeIntent, + verifyEmailIntent, + ageAssuranceRedirectDialogControl, + currentAccount, + tryApplyUpdate, + ]) } export function useComposeIntent() { @@ -97,7 +142,6 @@ export function useComposeIntent() { videoUri: string | null }) => { if (!hasSession) return - closeAllActiveElements() // Whenever a video URI is present, we don't support adding images right now. diff --git a/src/lib/hooks/useNavigationDeduped.ts b/src/lib/hooks/useNavigationDeduped.ts index 136e5fb961..2448787bd3 100644 --- a/src/lib/hooks/useNavigationDeduped.ts +++ b/src/lib/hooks/useNavigationDeduped.ts @@ -7,6 +7,8 @@ import {type NavigationProp} from '#/lib/routes/types' export type DebouncedNavigationProp = Pick< NavigationProp, | 'popToTop' + | 'popTo' + | 'pop' | 'push' | 'navigate' | 'canGoBack' @@ -38,6 +40,12 @@ export function useNavigationDeduped() { popToTop: () => { dedupe(() => navigation.popToTop()) }, + popTo: (...args: Parameters) => { + dedupe(() => navigation.popTo(...args)) + }, + pop: (...args: Parameters) => { + dedupe(() => navigation.pop(...args)) + }, goBack: () => { dedupe(() => navigation.goBack()) }, diff --git a/src/lib/hooks/useNotificationHandler.ts b/src/lib/hooks/useNotificationHandler.ts index b1bfe60181..7db48f4324 100644 --- a/src/lib/hooks/useNotificationHandler.ts +++ b/src/lib/hooks/useNotificationHandler.ts @@ -1,12 +1,15 @@ -import React from 'react' +import {useEffect} from 'react' import * as Notifications from 'expo-notifications' +import {AtUri} from '@atproto/api' +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' import {CommonActions, useNavigation} from '@react-navigation/native' import {useQueryClient} from '@tanstack/react-query' import {useAccountSwitcher} from '#/lib/hooks/useAccountSwitcher' +import {logger as notyLogger} from '#/lib/notifications/util' import {type NavigationProp} from '#/lib/routes/types' -import {Logger} from '#/logger' -import {isAndroid} from '#/platform/detection' +import {isAndroid, isIOS} from '#/platform/detection' import {useCurrentConvoId} from '#/state/messages/current-convo-id' import {RQKEY as RQKEY_NOTIFS} from '#/state/queries/notifications/feed' import {invalidateCachedUnreadPage} from '#/state/queries/notifications/unread' @@ -15,6 +18,7 @@ import {useSession} from '#/state/session' import {useLoggedOutViewControls} from '#/state/shell/logged-out' import {useCloseAllActiveElements} from '#/state/util' import {resetToTab} from '#/Navigation' +import {router} from '#/routes' export type NotificationReason = | 'like' @@ -25,18 +29,24 @@ export type NotificationReason = | 'quote' | 'chat-message' | 'starterpack-joined' + | 'like-via-repost' + | 'repost-via-repost' + | 'verified' + | 'unverified' + | 'subscribed-post' /** * Manually overridden type, but retains the possibility of * `notification.request.trigger.payload` being `undefined`, as specified in * the source types. */ -type NotificationPayload = +export type NotificationPayload = | undefined | { reason: Exclude uri: string subject: string + recipientDid: string } | { reason: 'chat-message' @@ -52,11 +62,17 @@ const DEFAULT_HANDLER_OPTIONS = { shouldSetBadge: true, } satisfies Notifications.NotificationBehavior -// These need to stay outside the hook to persist between account switches -let storedPayload: NotificationPayload -let prevDate = 0 +/** + * Cached notification payload if we handled a notification while the user was + * using a different account. This is consumed after we finish switching + * accounts. + */ +let storedAccountSwitchPayload: NotificationPayload -const logger = Logger.create(Logger.Context.Notifications) +/** + * Used to ensure we don't handle the same notification twice + */ +let lastHandledNotificationDateDedupe = 0 export function useNotificationsHandler() { const queryClient = useQueryClient() @@ -66,40 +82,123 @@ export function useNotificationsHandler() { const {currentConvoId} = useCurrentConvoId() const {setShowLoggedOut} = useLoggedOutViewControls() const closeAllActiveElements = useCloseAllActiveElements() + const {_} = useLingui() // On Android, we cannot control which sound is used for a notification on Android // 28 or higher. Instead, we have to configure a notification channel ahead of time // which has the sounds we want in the configuration for that channel. These two // channels allow for the mute/unmute functionality we want for the background // handler. - React.useEffect(() => { + useEffect(() => { if (!isAndroid) return + // assign both chat notifications to a group + // NOTE: I don't think that it will retroactively move them into the group + // if the channels already exist. no big deal imo -sfn + const CHAT_GROUP = 'chat' + Notifications.setNotificationChannelGroupAsync(CHAT_GROUP, { + name: _(msg`Chat`), + description: _( + msg`You can choose whether chat notifications have sound in the chat settings within the app`, + ), + }) Notifications.setNotificationChannelAsync('chat-messages', { - name: 'Chat', + name: _(msg`Chat messages - sound`), + groupId: CHAT_GROUP, importance: Notifications.AndroidImportance.MAX, sound: 'dm.mp3', showBadge: true, vibrationPattern: [250], lockscreenVisibility: Notifications.AndroidNotificationVisibility.PRIVATE, }) - Notifications.setNotificationChannelAsync('chat-messages-muted', { - name: 'Chat - Muted', + name: _(msg`Chat messages - silent`), + groupId: CHAT_GROUP, importance: Notifications.AndroidImportance.MAX, sound: null, showBadge: true, vibrationPattern: [250], lockscreenVisibility: Notifications.AndroidNotificationVisibility.PRIVATE, }) - }, []) - React.useEffect(() => { + Notifications.setNotificationChannelAsync( + 'like' satisfies NotificationReason, + { + name: _(msg`Likes`), + importance: Notifications.AndroidImportance.HIGH, + }, + ) + Notifications.setNotificationChannelAsync( + 'repost' satisfies NotificationReason, + { + name: _(msg`Reposts`), + importance: Notifications.AndroidImportance.HIGH, + }, + ) + Notifications.setNotificationChannelAsync( + 'reply' satisfies NotificationReason, + { + name: _(msg`Replies`), + importance: Notifications.AndroidImportance.HIGH, + }, + ) + Notifications.setNotificationChannelAsync( + 'mention' satisfies NotificationReason, + { + name: _(msg`Mentions`), + importance: Notifications.AndroidImportance.HIGH, + }, + ) + Notifications.setNotificationChannelAsync( + 'quote' satisfies NotificationReason, + { + name: _(msg`Quotes`), + importance: Notifications.AndroidImportance.HIGH, + }, + ) + Notifications.setNotificationChannelAsync( + 'follow' satisfies NotificationReason, + { + name: _(msg`New followers`), + importance: Notifications.AndroidImportance.HIGH, + }, + ) + Notifications.setNotificationChannelAsync( + 'like-via-repost' satisfies NotificationReason, + { + name: _(msg`Likes of your reposts`), + importance: Notifications.AndroidImportance.HIGH, + }, + ) + Notifications.setNotificationChannelAsync( + 'repost-via-repost' satisfies NotificationReason, + { + name: _(msg`Reposts of your reposts`), + importance: Notifications.AndroidImportance.HIGH, + }, + ) + Notifications.setNotificationChannelAsync( + 'subscribed-post' satisfies NotificationReason, + { + name: _(msg`Activity from others`), + importance: Notifications.AndroidImportance.HIGH, + }, + ) + }, [_]) + + useEffect(() => { const handleNotification = (payload?: NotificationPayload) => { if (!payload) return if (payload.reason === 'chat-message') { - if (payload.recipientDid !== currentAccount?.did && !storedPayload) { - storedPayload = payload + notyLogger.debug(`useNotificationsHandler: handling chat message`, { + payload, + }) + + if ( + payload.recipientDid !== currentAccount?.did && + !storedAccountSwitchPayload + ) { + storePayloadForAccountSwitch(payload) closeAllActiveElements() const account = accounts.find(a => a.did === payload.recipientDid) @@ -143,64 +242,29 @@ export function useNotificationsHandler() { }) } } else { - switch (payload.reason) { - case 'like': - case 'repost': - case 'follow': - case 'mention': - case 'quote': - case 'reply': - case 'starterpack-joined': - resetToTab('NotificationsTab') - break - // TODO implement these after we have an idea of how to handle each individual case - // case 'follow': - // const uri = new AtUri(payload.uri) - // setTimeout(() => { - // // @ts-expect-error types are weird here - // navigation.navigate('HomeTab', { - // screen: 'Profile', - // params: { - // name: uri.host, - // }, - // }) - // }, 500) - // break - // case 'mention': - // case 'reply': - // const urip = new AtUri(payload.uri) - // setTimeout(() => { - // // @ts-expect-error types are weird here - // navigation.navigate('HomeTab', { - // screen: 'PostThread', - // params: { - // name: urip.host, - // rkey: urip.rkey, - // }, - // }) - // }, 500) + const url = notificationToURL(payload) + + if (url === '/notifications') { + resetToTab('NotificationsTab') + } else if (url) { + const [screen, params] = router.matchPath(url) + // @ts-expect-error router is not typed :/ -sfn + navigation.navigate('HomeTab', {screen, params}) + notyLogger.debug(`useNotificationsHandler: navigate`, { + screen, + params, + }) } } } Notifications.setNotificationHandler({ handleNotification: async e => { - if ( - e.request.trigger == null || - typeof e.request.trigger !== 'object' || - !('type' in e.request.trigger) || - e.request.trigger.type !== 'push' - ) { - return DEFAULT_HANDLER_OPTIONS - } + const payload = getNotificationPayload(e) - logger.debug('Notifications: received', {e}) + if (!payload) return DEFAULT_HANDLER_OPTIONS - const payload = e.request.trigger.payload as NotificationPayload - - if (!payload) { - return DEFAULT_HANDLER_OPTIONS - } + notyLogger.debug('useNotificationsHandler: incoming', {e, payload}) if ( payload.reason === 'chat-message' && @@ -223,34 +287,27 @@ export function useNotificationsHandler() { const responseReceivedListener = Notifications.addNotificationResponseReceivedListener(e => { - if (e.notification.date === prevDate) { - return - } - prevDate = e.notification.date + if (e.notification.date === lastHandledNotificationDateDedupe) return + lastHandledNotificationDateDedupe = e.notification.date - logger.debug('Notifications: response received', { + notyLogger.debug('useNotificationsHandler: response received', { actionIdentifier: e.actionIdentifier, }) - if ( - e.actionIdentifier === Notifications.DEFAULT_ACTION_IDENTIFIER && - e.notification.request.trigger != null && - typeof e.notification.request.trigger === 'object' && - 'type' in e.notification.request.trigger && - e.notification.request.trigger.type === 'push' - ) { - const payload = e.notification.request.trigger - .payload as NotificationPayload + if (e.actionIdentifier !== Notifications.DEFAULT_ACTION_IDENTIFIER) { + return + } - if (!payload) return + const payload = getNotificationPayload(e.notification) - logger.debug( + if (payload) { + notyLogger.debug( 'User pressed a notification, opening notifications tab', {}, ) - logger.metric( + notyLogger.metric( 'notifications:openApp', - {reason: payload.reason}, + {reason: payload.reason, causedBoot: false}, {statsig: false}, ) @@ -265,24 +322,28 @@ export function useNotificationsHandler() { truncateAndInvalidate(queryClient, RQKEY_NOTIFS('mentions')) } - logger.debug('Notifications: handleNotification', { + notyLogger.debug('Notifications: handleNotification', { content: e.notification.request.content, - payload: e.notification.request.trigger.payload, + payload: payload, }) handleNotification(payload) Notifications.dismissAllNotificationsAsync() + } else { + notyLogger.error('useNotificationsHandler: received no payload', { + identifier: e.notification.request.identifier, + }) } }) // Whenever there's a stored payload, that means we had to switch accounts before handling the notification. // Whenever currentAccount changes, we should try to handle it again. if ( - storedPayload?.reason === 'chat-message' && - currentAccount?.did === storedPayload.recipientDid + storedAccountSwitchPayload?.reason === 'chat-message' && + currentAccount?.did === storedAccountSwitchPayload.recipientDid ) { - handleNotification(storedPayload) - storedPayload = undefined + handleNotification(storedAccountSwitchPayload) + storedAccountSwitchPayload = undefined } return () => { @@ -300,3 +361,77 @@ export function useNotificationsHandler() { setShowLoggedOut, ]) } + +export function storePayloadForAccountSwitch(payload: NotificationPayload) { + storedAccountSwitchPayload = payload +} + +export function getNotificationPayload( + e: Notifications.Notification, +): NotificationPayload | null { + if ( + e.request.trigger == null || + typeof e.request.trigger !== 'object' || + !('type' in e.request.trigger) || + e.request.trigger.type !== 'push' + ) { + return null + } + + const payload = ( + isIOS ? e.request.trigger.payload : e.request.content.data + ) as NotificationPayload + + if (payload && payload.reason) { + return payload + } else { + if (payload) { + notyLogger.warn('getNotificationPayload: received unknown payload', { + payload, + identifier: e.request.identifier, + }) + } + return null + } +} + +export function notificationToURL(payload: NotificationPayload): string | null { + switch (payload?.reason) { + case 'like': + case 'repost': + case 'like-via-repost': + case 'repost-via-repost': { + const urip = new AtUri(payload.subject) + if (urip.collection === 'app.bsky.feed.post') { + return `/profile/${urip.host}/post/${urip.rkey}` + } else { + return '/notifications' + } + } + case 'reply': + case 'quote': + case 'mention': + case 'subscribed-post': { + const urip = new AtUri(payload.uri) + if (urip.collection === 'app.bsky.feed.post') { + return `/profile/${urip.host}/post/${urip.rkey}` + } else { + return '/notifications' + } + } + case 'follow': + case 'starterpack-joined': { + const urip = new AtUri(payload.uri) + return `/profile/${urip.host}` + } + case 'chat-message': + // should be handled separately + return null + case 'verified': + case 'unverified': + return '/notifications' + default: + // do nothing if we don't know what to do with it + return null + } +} diff --git a/src/lib/hooks/useOTAUpdates.ts b/src/lib/hooks/useOTAUpdates.ts index 731406dcec..ba46b60552 100644 --- a/src/lib/hooks/useOTAUpdates.ts +++ b/src/lib/hooks/useOTAUpdates.ts @@ -1,5 +1,5 @@ import React from 'react' -import {Alert, AppState, AppStateStatus} from 'react-native' +import {Alert, AppState, type AppStateStatus} from 'react-native' import {nativeBuildVersion} from 'expo-application' import { checkForUpdateAsync, @@ -10,9 +10,9 @@ import { useUpdates, } from 'expo-updates' -import {IS_TESTFLIGHT} from '#/lib/app-info' import {logger} from '#/logger' import {isIOS} from '#/platform/detection' +import {IS_TESTFLIGHT} from '#/env' const MINIMUM_MINIMIZE_TIME = 15 * 60e3 @@ -29,6 +29,98 @@ async function setExtraParams() { ) } +async function setExtraParamsPullRequest(channel: string) { + await setExtraParamAsync( + isIOS ? 'ios-build-number' : 'android-build-number', + // Hilariously, `buildVersion` is not actually a string on Android even though the TS type says it is. + // This just ensures it gets passed as a string + `${nativeBuildVersion}`, + ) + await setExtraParamAsync('channel', channel) +} + +async function updateTestflight() { + await setExtraParams() + + const res = await checkForUpdateAsync() + if (res.isAvailable) { + await fetchUpdateAsync() + Alert.alert( + 'Update Available', + 'A new version of the app is available. Relaunch now?', + [ + { + text: 'No', + style: 'cancel', + }, + { + text: 'Relaunch', + style: 'default', + onPress: async () => { + await reloadAsync() + }, + }, + ], + ) + } +} + +export function useApplyPullRequestOTAUpdate() { + const {currentlyRunning} = useUpdates() + const [pending, setPending] = React.useState(false) + const currentChannel = currentlyRunning?.channel + const isCurrentlyRunningPullRequestDeployment = + currentChannel?.startsWith('pull-request') + + const tryApplyUpdate = async (channel: string) => { + setPending(true) + await setExtraParamsPullRequest(channel) + const res = await checkForUpdateAsync() + if (res.isAvailable) { + Alert.alert( + 'Deployment Available', + `A deployment of ${channel} is availalble. Applying this deployment may result in a bricked installation, in which case you will need to reinstall the app and may lose local data. Are you sure you want to proceed?`, + [ + { + text: 'No', + style: 'cancel', + }, + { + text: 'Relaunch', + style: 'default', + onPress: async () => { + await fetchUpdateAsync() + await reloadAsync() + }, + }, + ], + ) + } else { + Alert.alert( + 'No Deployment Available', + `No new deployments of ${channel} are currently available for your current native build.`, + ) + } + setPending(false) + } + + const revertToEmbedded = async () => { + try { + await updateTestflight() + } catch (e: any) { + logger.error('Internal OTA Update Error', {error: `${e}`}) + } + } + + return { + tryApplyUpdate, + revertToEmbedded, + isCurrentlyRunningPullRequestDeployment, + currentChannel, + pending, + } +} + export function useOTAUpdates() { const shouldReceiveUpdates = isEnabled && !__DEV__ @@ -36,7 +128,8 @@ export function useOTAUpdates() { const lastMinimize = React.useRef(0) const ranInitialCheck = React.useRef(false) const timeout = React.useRef() - const {isUpdatePending} = useUpdates() + const {currentlyRunning, isUpdatePending} = useUpdates() + const currentChannel = currentlyRunning?.channel const setCheckTimeout = React.useCallback(() => { timeout.current = setTimeout(async () => { @@ -60,36 +153,18 @@ export function useOTAUpdates() { const onIsTestFlight = React.useCallback(async () => { try { - await setExtraParams() - - const res = await checkForUpdateAsync() - if (res.isAvailable) { - await fetchUpdateAsync() - - Alert.alert( - 'Update Available', - 'A new version of the app is available. Relaunch now?', - [ - { - text: 'No', - style: 'cancel', - }, - { - text: 'Relaunch', - style: 'default', - onPress: async () => { - await reloadAsync() - }, - }, - ], - ) - } + await updateTestflight() } catch (e: any) { logger.error('Internal OTA Update Error', {error: `${e}`}) } }, []) React.useEffect(() => { + // We don't need to check anything if the current update is a PR update + if (currentChannel?.startsWith('pull-request')) { + return + } + // We use this setTimeout to allow Statsig to initialize before we check for an update // For Testflight users, we can prompt the user to update immediately whenever there's an available update. This // is suspect however with the Apple App Store guidelines, so we don't want to prompt production users to update @@ -103,12 +178,15 @@ export function useOTAUpdates() { setCheckTimeout() ranInitialCheck.current = true - }, [onIsTestFlight, setCheckTimeout, shouldReceiveUpdates]) + }, [onIsTestFlight, currentChannel, setCheckTimeout, shouldReceiveUpdates]) // After the app has been minimized for 15 minutes, we want to either A. install an update if one has become available // or B check for an update again. React.useEffect(() => { - if (!isEnabled) return + // We also don't start this timeout if the user is on a pull request update + if (!isEnabled || currentChannel?.startsWith('pull-request')) { + return + } const subscription = AppState.addEventListener( 'change', @@ -138,5 +216,5 @@ export function useOTAUpdates() { clearTimeout(timeout.current) subscription.remove() } - }, [isUpdatePending, setCheckTimeout]) + }, [isUpdatePending, currentChannel, setCheckTimeout]) } diff --git a/src/lib/hooks/useOTAUpdates.web.ts b/src/lib/hooks/useOTAUpdates.web.ts index 1baf4894ee..2783a04dd1 100644 --- a/src/lib/hooks/useOTAUpdates.web.ts +++ b/src/lib/hooks/useOTAUpdates.web.ts @@ -1 +1,10 @@ export function useOTAUpdates() {} +export function useApplyPullRequestOTAUpdate() { + return { + tryApplyUpdate: () => {}, + revertToEmbedded: () => {}, + isCurrentlyRunningPullRequestDeployment: false, + currentChannel: 'web-build', + pending: false, + } +} diff --git a/src/lib/hooks/useOpenComposer.tsx b/src/lib/hooks/useOpenComposer.tsx index 50c04d1e1f..789fa1f879 100644 --- a/src/lib/hooks/useOpenComposer.tsx +++ b/src/lib/hooks/useOpenComposer.tsx @@ -2,10 +2,10 @@ import {useMemo} from 'react' import {Trans} from '@lingui/macro' import {useRequireEmailVerification} from '#/lib/hooks/useRequireEmailVerification' -import {useOpenComposer as rootUseOpenComposer} from '#/state/shell/composer' +import {useOpenComposer as useRootOpenComposer} from '#/state/shell/composer' export function useOpenComposer() { - const {openComposer} = rootUseOpenComposer() + const {openComposer} = useRootOpenComposer() const requireEmailVerification = useRequireEmailVerification() return useMemo(() => { return { diff --git a/src/lib/hooks/useOpenLink.ts b/src/lib/hooks/useOpenLink.ts index 28c1bca3d9..6e3abef62f 100644 --- a/src/lib/hooks/useOpenLink.ts +++ b/src/lib/hooks/useOpenLink.ts @@ -11,6 +11,7 @@ import { isRelativeUrl, toNiceDomain, } from '#/lib/strings/url-helpers' +import {logger} from '#/logger' import {isNative} from '#/platform/detection' import {useInAppBrowser} from '#/state/preferences/in-app-browser' import {useTheme} from '#/alf' @@ -64,6 +65,10 @@ export function useOpenLink() { toolbarColor: t.atoms.bg.backgroundColor, controlsColor: t.palette.primary_500, createTask: false, + }).catch(err => { + if (__DEV__) + logger.error('Could not open web browser', {message: err}) + Linking.openURL(url) }), ) return diff --git a/src/lib/hooks/usePalette.ts b/src/lib/hooks/usePalette.ts index 2530642f60..db226fba65 100644 --- a/src/lib/hooks/usePalette.ts +++ b/src/lib/hooks/usePalette.ts @@ -1,7 +1,11 @@ import {useMemo} from 'react' -import {TextStyle, ViewStyle} from 'react-native' +import {type TextStyle, type ViewStyle} from 'react-native' -import {PaletteColor, PaletteColorName, useTheme} from '../ThemeContext' +import { + type PaletteColor, + type PaletteColorName, + useTheme, +} from '../ThemeContext' export interface UsePaletteValue { colors: PaletteColor @@ -16,6 +20,10 @@ export interface UsePaletteValue { link: TextStyle icon: TextStyle } + +/** + * @deprecated use `useTheme` from `#/alf` + */ export function usePalette(color: PaletteColorName): UsePaletteValue { const theme = useTheme() return useMemo(() => { diff --git a/src/lib/hooks/useRequireEmailVerification.tsx b/src/lib/hooks/useRequireEmailVerification.tsx index 26045847e0..2e5b339783 100644 --- a/src/lib/hooks/useRequireEmailVerification.tsx +++ b/src/lib/hooks/useRequireEmailVerification.tsx @@ -1,7 +1,7 @@ import {useCallback} from 'react' import {Keyboard} from 'react-native' -import {useEmail} from '#/lib/hooks/useEmail' +import {useEmail} from '#/state/email-verification' import {useRequireAuth, useSession} from '#/state/session' import {useCloseAllActiveElements} from '#/state/util' import { diff --git a/src/lib/hooks/useTLDs.ts b/src/lib/hooks/useTLDs.ts new file mode 100644 index 0000000000..8ed872835a --- /dev/null +++ b/src/lib/hooks/useTLDs.ts @@ -0,0 +1,15 @@ +import {useEffect, useState} from 'react' +import type tldts from 'tldts' + +export function useTLDs() { + const [tlds, setTlds] = useState() + + useEffect(() => { + // @ts-expect-error - valid path + import('tldts/dist/index.cjs.min.js').then(tlds => { + setTlds(tlds) + }) + }, []) + + return tlds +} diff --git a/src/lib/hooks/useTranslate.ts b/src/lib/hooks/useTranslate.ts new file mode 100644 index 0000000000..7824a682c5 --- /dev/null +++ b/src/lib/hooks/useTranslate.ts @@ -0,0 +1,54 @@ +import {useCallback} from 'react' +import * as IntentLauncher from 'expo-intent-launcher' + +import {getTranslatorLink} from '#/locale/helpers' +import {isAndroid} from '#/platform/detection' +import {useOpenLink} from './useOpenLink' + +export function useTranslate() { + const openLink = useOpenLink() + + return useCallback( + async (text: string, language: string) => { + const translateUrl = getTranslatorLink(text, language) + if (isAndroid) { + try { + // use getApplicationIconAsync to determine if the translate app is installed + if ( + !(await IntentLauncher.getApplicationIconAsync( + 'com.google.android.apps.translate', + )) + ) { + throw new Error('Translate app not installed') + } + + // TODO: this should only be called one at a time, use something like + // RQ's `scope` - otherwise can trigger the browser to open unexpectedly when the call throws -sfn + await IntentLauncher.startActivityAsync( + 'android.intent.action.PROCESS_TEXT', + { + type: 'text/plain', + extra: { + 'android.intent.extra.PROCESS_TEXT': text, + 'android.intent.extra.PROCESS_TEXT_READONLY': true, + }, + // note: to skip the intermediate app select, we need to specify a + // `className`. however, this isn't safe to hardcode, we'd need to query the + // package manager for the correct activity. this requires native code, so + // skip for now -sfn + // packageName: 'com.google.android.apps.translate', + // className: 'com.google.android.apps.translate.TranslateActivity', + }, + ) + } catch (err) { + if (__DEV__) console.error(err) + // most likely means they don't have the translate app + await openLink(translateUrl) + } + } else { + await openLink(translateUrl) + } + }, + [openLink], + ) +} diff --git a/src/lib/link-meta/link-meta.ts b/src/lib/link-meta/link-meta.ts index ea9190b6ee..b466095337 100644 --- a/src/lib/link-meta/link-meta.ts +++ b/src/lib/link-meta/link-meta.ts @@ -1,4 +1,4 @@ -import {BskyAgent} from '@atproto/api' +import {type BskyAgent} from '@atproto/api' import {LINK_META_PROXY} from '#/lib/constants' import {getGiphyMetaUri} from '#/lib/strings/embed-player' @@ -37,6 +37,7 @@ export async function getLinkMeta( } let urlp + let shouldFollowRedirect = false try { urlp = new URL(url) @@ -46,6 +47,9 @@ export async function getLinkMeta( url = giphyMetaUri urlp = new URL(url) } + // follow redirects for soundcloud shortlinks + // QUESTION - do we want to follow redirects in other cases? -sfn + shouldFollowRedirect = urlp.hostname === 'on.soundcloud.com' } catch (e) { return { error: 'Invalid URL', @@ -62,33 +66,35 @@ export async function getLinkMeta( return meta } - try { - const controller = new AbortController() - const to = setTimeout(() => controller.abort(), timeout || 5e3) + const controller = new AbortController() + const to = setTimeout(() => controller.abort(), timeout || 5e3) + try { const response = await fetch( - `${LINK_META_PROXY(agent.service.toString() || '')}${encodeURIComponent( + `${LINK_META_PROXY(agent.serviceUrl.toString() || '')}${encodeURIComponent( url, )}`, {signal: controller.signal}, ) const body = await response.json() - clearTimeout(to) - const {description, error, image, title} = body - - if (error !== '') { - throw new Error(error) + if (body.error !== '') { + throw new Error(body.error) } - meta.description = description - meta.image = image - meta.title = title + meta.description = body.description + meta.image = body.image + meta.title = body.title + if (shouldFollowRedirect) { + meta.url = body.url + } } catch (e) { // failed console.error(e) meta.error = e instanceof Error ? e.toString() : 'Failed to fetch link' + } finally { + clearTimeout(to) } return meta diff --git a/src/lib/moderation.ts b/src/lib/moderation.ts index cda7d3fa88..d33e10a129 100644 --- a/src/lib/moderation.ts +++ b/src/lib/moderation.ts @@ -1,18 +1,18 @@ import React from 'react' import { - AppBskyLabelerDefs, + type AppBskyLabelerDefs, BskyAgent, - ComAtprotoLabelDefs, - InterpretedLabelValueDefinition, + type ComAtprotoLabelDefs, + type InterpretedLabelValueDefinition, LABELS, - ModerationCause, - ModerationOpts, - ModerationUI, + type ModerationCause, + type ModerationOpts, + type ModerationUI, } from '@atproto/api' import {sanitizeDisplayName} from '#/lib/strings/display-names' import {sanitizeHandle} from '#/lib/strings/handles' -import {AppModerationCause} from '#/components/Pills' +import {type AppModerationCause} from '#/components/Pills' export const ADULT_CONTENT_LABELS = ['sexual', 'nudity', 'porn'] export const OTHER_SELF_LABELS = ['graphic-media'] @@ -29,8 +29,8 @@ export function getModerationCauseKey( cause.source.type === 'labeler' ? cause.source.did : cause.source.type === 'list' - ? cause.source.list.uri - : 'user' + ? cause.source.list.uri + : 'user' if (cause.type === 'label') { return `label:${cause.label.val}:${source}` } diff --git a/src/lib/moderation/create-sanitized-display-name.ts b/src/lib/moderation/create-sanitized-display-name.ts index 4f9584f918..4c62a5c03c 100644 --- a/src/lib/moderation/create-sanitized-display-name.ts +++ b/src/lib/moderation/create-sanitized-display-name.ts @@ -1,12 +1,9 @@ -import {AppBskyActorDefs} from '@atproto/api' - import {sanitizeDisplayName} from '#/lib/strings/display-names' import {sanitizeHandle} from '#/lib/strings/handles' +import type * as bsky from '#/types/bsky' export function createSanitizedDisplayName( - profile: - | AppBskyActorDefs.ProfileViewBasic - | AppBskyActorDefs.ProfileViewDetailed, + profile: bsky.profile.AnyProfileView, noAt = false, ) { if (profile.displayName != null && profile.displayName !== '') { diff --git a/src/lib/moderation/useModerationCauseDescription.ts b/src/lib/moderation/useModerationCauseDescription.ts index 9e34700778..5aa9db4c2d 100644 --- a/src/lib/moderation/useModerationCauseDescription.ts +++ b/src/lib/moderation/useModerationCauseDescription.ts @@ -1,8 +1,8 @@ import React from 'react' import { BSKY_LABELER_DID, - ModerationCause, - ModerationCauseSource, + type ModerationCause, + type ModerationCauseSource, } from '@atproto/api' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' @@ -12,10 +12,10 @@ import {useLabelDefinitions} from '#/state/preferences' import {useSession} from '#/state/session' import {CircleBanSign_Stroke2_Corner0_Rounded as CircleBanSign} from '#/components/icons/CircleBanSign' import {CircleInfo_Stroke2_Corner0_Rounded as CircleInfo} from '#/components/icons/CircleInfo' -import {Props as SVGIconProps} from '#/components/icons/common' +import {type Props as SVGIconProps} from '#/components/icons/common' import {EyeSlash_Stroke2_Corner0_Rounded as EyeSlash} from '#/components/icons/EyeSlash' import {Warning_Stroke2_Corner0_Rounded as Warning} from '#/components/icons/Warning' -import {AppModerationCause} from '#/components/Pills' +import {type AppModerationCause} from '#/components/Pills' import {useGlobalLabelStrings} from './useGlobalLabelStrings' import {getDefinition, getLabelStrings} from './useLabelInfo' @@ -153,8 +153,8 @@ export function useModerationCauseDescription( def.identifier === '!no-unauthenticated' ? EyeSlash : def.severity === 'alert' - ? Warning - : CircleInfo, + ? Warning + : CircleInfo, name: strings.name, description: strings.description, source, diff --git a/src/lib/notifications/notifications.e2e.ts b/src/lib/notifications/notifications.e2e.ts index 0586ac1bf8..1a9d861b7b 100644 --- a/src/lib/notifications/notifications.e2e.ts +++ b/src/lib/notifications/notifications.e2e.ts @@ -1,3 +1,5 @@ +import {useCallback} from 'react' + export function useNotificationsRegistration() {} export function useRequestNotificationsPermission() { @@ -6,6 +8,10 @@ export function useRequestNotificationsPermission() { ) => {} } +export function useGetAndRegisterPushToken() { + return useCallback(async ({}: {} = {}) => {}, []) +} + export async function decrementBadgeCount(_by: number) {} export async function resetBadgeCount() {} diff --git a/src/lib/notifications/notifications.ts b/src/lib/notifications/notifications.ts index ab7fc57088..67a38a52ce 100644 --- a/src/lib/notifications/notifications.ts +++ b/src/lib/notifications/notifications.ts @@ -1,91 +1,226 @@ -import React from 'react' +import {useCallback, useEffect} from 'react' +import {Platform} from 'react-native' import * as Notifications from 'expo-notifications' import {getBadgeCountAsync, setBadgeCountAsync} from 'expo-notifications' -import {BskyAgent} from '@atproto/api' +import {type AppBskyNotificationRegisterPush, type AtpAgent} from '@atproto/api' +import debounce from 'lodash.debounce' -import {logEvent} from '#/lib/statsig/statsig' -import {Logger} from '#/logger' -import {devicePlatform, isAndroid, isNative} from '#/platform/detection' -import {SessionAccount, useAgent, useSession} from '#/state/session' -import BackgroundNotificationHandler from '../../../modules/expo-background-notification-handler' +import {PUBLIC_APPVIEW_DID, PUBLIC_STAGING_APPVIEW_DID} from '#/lib/constants' +import {logger as notyLogger} from '#/lib/notifications/util' +import {isNative} from '#/platform/detection' +import {useAgeAssuranceContext} from '#/state/ageAssurance' +import {type SessionAccount, useAgent, useSession} from '#/state/session' +import BackgroundNotificationHandler from '#/../modules/expo-background-notification-handler' -const SERVICE_DID = (serviceUrl?: string) => - serviceUrl?.includes('staging') - ? 'did:web:api.staging.bsky.dev' - : 'did:web:api.bsky.app' - -const logger = Logger.create(Logger.Context.Notifications) - -async function registerPushToken( - agent: BskyAgent, - account: SessionAccount, - token: Notifications.DevicePushToken, -) { +/** + * @private + * Registers the device's push notification token with the Bluesky server. + */ +async function _registerPushToken({ + agent, + currentAccount, + token, + extra = {}, +}: { + agent: AtpAgent + currentAccount: SessionAccount + token: Notifications.DevicePushToken + extra?: { + ageRestricted?: boolean + } +}) { try { - await agent.api.app.bsky.notification.registerPush({ - serviceDid: SERVICE_DID(account.service), - platform: devicePlatform, + const payload: AppBskyNotificationRegisterPush.InputSchema = { + serviceDid: currentAccount.service?.includes('staging') + ? PUBLIC_STAGING_APPVIEW_DID + : PUBLIC_APPVIEW_DID, + platform: Platform.OS, token: token.data, appId: 'xyz.blueskyweb.app', - }) - logger.debug('Notifications: Sent push token (init)', { - tokenType: token.type, - token: token.data, - }) + ageRestricted: extra.ageRestricted ?? false, + } + + notyLogger.debug(`registerPushToken: registering`, {...payload}) + + await agent.app.bsky.notification.registerPush(payload) + + notyLogger.debug(`registerPushToken: success`) } catch (error) { - logger.error('Notifications: Failed to set push token', {message: error}) + notyLogger.error(`registerPushToken: failed`, {safeMessage: error}) } } -async function getPushToken(skipPermissionCheck = false) { - const granted = - skipPermissionCheck || (await Notifications.getPermissionsAsync()).granted +/** + * @private + * Debounced version of `_registerPushToken` to prevent multiple calls. + */ +const _registerPushTokenDebounced = debounce(_registerPushToken, 100) + +/** + * Hook to register the device's push notification token with the Bluesky. If + * the user is not logged in, this will do nothing. + * + * Use this instead of using `_registerPushToken` or + * `_registerPushTokenDebounced` directly. + */ +export function useRegisterPushToken() { + const agent = useAgent() + const {currentAccount} = useSession() + + return useCallback( + ({ + token, + isAgeRestricted, + }: { + token: Notifications.DevicePushToken + isAgeRestricted: boolean + }) => { + if (!currentAccount) return + return _registerPushTokenDebounced({ + agent, + currentAccount, + token, + extra: { + ageRestricted: isAgeRestricted, + }, + }) + }, + [agent, currentAccount], + ) +} + +/** + * Retreive the device's push notification token, if permissions are granted. + */ +async function getPushToken() { + const granted = (await Notifications.getPermissionsAsync()).granted + notyLogger.debug(`getPushToken`, {granted}) if (granted) { return Notifications.getDevicePushTokenAsync() } } +/** + * Hook to get the device push token and register it with the Bluesky server. + * Should only be called after a user has logged-in, since registration is an + * authed endpoint. + * + * N.B. A previous regression in `expo-notifications` caused + * `addPushTokenListener` to not fire on Android after calling + * `getPushToken()`. Therefore, as insurance, we also call + * `registerPushToken` here. + * + * Because `registerPushToken` is debounced, even if the the listener _does_ + * fire, it's OK to also call `registerPushToken` below since only a single + * call will be made to the server (ideally). This does race the listener (if + * it fires), so there's a possibility that multiple calls will be made, but + * that is acceptable. + * + * @see https://github.com/expo/expo/issues/28656 + * @see https://github.com/expo/expo/issues/29909 + * @see https://github.com/bluesky-social/social-app/pull/4467 + */ +export function useGetAndRegisterPushToken() { + const {isAgeRestricted} = useAgeAssuranceContext() + const registerPushToken = useRegisterPushToken() + return useCallback( + async ({ + isAgeRestricted: isAgeRestrictedOverride, + }: { + isAgeRestricted?: boolean + } = {}) => { + if (!isNative) return + + /** + * This will also fire the listener added via `addPushTokenListener`. That + * listener also handles registration. + */ + const token = await getPushToken() + + notyLogger.debug(`useGetAndRegisterPushToken`, { + token: token ?? 'undefined', + }) + + if (token) { + /** + * The listener should have registered the token already, but just in + * case, call the debounced function again. + */ + registerPushToken({ + token, + isAgeRestricted: isAgeRestrictedOverride ?? isAgeRestricted, + }) + } + + return token + }, + [registerPushToken, isAgeRestricted], + ) +} + +/** + * Hook to register the device's push notification token with the Bluesky + * server, as well as listen for push token updates, should they occurr. + * + * Registered via the shell, which wraps the navigation stack, meaning if we + * have a current account, this handling will be registered and ready to go. + */ export function useNotificationsRegistration() { - const agent = useAgent() const {currentAccount} = useSession() + const registerPushToken = useRegisterPushToken() + const getAndRegisterPushToken = useGetAndRegisterPushToken() + const {isReady: isAgeRestrictionReady, isAgeRestricted} = + useAgeAssuranceContext() - React.useEffect(() => { - if (!currentAccount) { - return - } + useEffect(() => { + /** + * We want this to init right away _after_ we have a logged in user, and + * _after_ we've loaded their age assurance state. + */ + if (!currentAccount || !isAgeRestrictionReady) return - // HACK - see https://github.com/bluesky-social/social-app/pull/4467 - // An apparent regression in expo-notifications causes `addPushTokenListener` to not fire on Android whenever the - // token changes by calling `getPushToken()`. This is a workaround to ensure we register the token once it is - // generated on Android. - if (isAndroid) { - ;(async () => { - const token = await getPushToken() + notyLogger.debug(`useNotificationsRegistration`) - // Token will be undefined if we don't have notifications permission - if (token) { - registerPushToken(agent, currentAccount, token) - } - })() - } else { - getPushToken() - } + /** + * Init push token, if permissions are granted already. If they weren't, + * they'll be requested by the `useRequestNotificationsPermission` hook + * below. + */ + getAndRegisterPushToken() - // According to the Expo docs, there is a chance that the token will change while the app is open in some rare - // cases. This will fire `registerPushToken` whenever that happens. - const subscription = Notifications.addPushTokenListener(async newToken => { - registerPushToken(agent, currentAccount, newToken) + /** + * Register the push token with the Bluesky server, whenever it changes. + * This is also fired any time `getDevicePushTokenAsync` is called. + * + * Since this is registered immediately after `getAndRegisterPushToken`, it + * should also detect that getter and be fired almost immediately after this. + * + * According to the Expo docs, there is a chance that the token will change + * while the app is open in some rare cases. This will fire + * `registerPushToken` whenever that happens. + * + * @see https://docs.expo.dev/versions/latest/sdk/notifications/#addpushtokenlistenerlistener + */ + const subscription = Notifications.addPushTokenListener(async token => { + registerPushToken({token, isAgeRestricted: isAgeRestricted}) + notyLogger.debug(`addPushTokenListener callback`, {token}) }) return () => { subscription.remove() } - }, [currentAccount, agent]) + }, [ + currentAccount, + getAndRegisterPushToken, + registerPushToken, + isAgeRestrictionReady, + isAgeRestricted, + ]) } export function useRequestNotificationsPermission() { const {currentAccount} = useSession() - const agent = useAgent() + const getAndRegisterPushToken = useGetAndRegisterPushToken() return async ( context: 'StartOnboarding' | 'AfterOnboarding' | 'Login' | 'Home', @@ -107,26 +242,27 @@ export function useRequestNotificationsPermission() { } const res = await Notifications.requestPermissionsAsync() - logEvent('notifications:request', { + + notyLogger.metric(`notifications:request`, { context: context, status: res.status, }) if (res.granted) { - // This will fire a pushTokenEvent, which will handle registration of the token - const token = await getPushToken(true) - - // Same hack as above. We cannot rely on the `addPushTokenListener` to fire on Android due to an Expo bug, so we - // will manually register it here. Note that this will occur only: - // 1. right after the user signs in, leading to no `currentAccount` account being available - this will be instead - // picked up from the useEffect above on `currentAccount` change - // 2. right after onboarding. In this case, we _need_ this registration, since `currentAccount` will not change - // and we need to ensure the token is registered right after permission is granted. `currentAccount` will already - // be available in this case, so the registration will succeed. - // We should remove this once expo-notifications (and possibly FCMv1) is fixed and the `addPushTokenListener` is - // working again. See https://github.com/expo/expo/issues/28656 - if (isAndroid && currentAccount && token) { - registerPushToken(agent, currentAccount, token) + if (currentAccount) { + /** + * If we have an account in scope, we can safely call + * `getAndRegisterPushToken`. + */ + getAndRegisterPushToken() + } else { + /** + * Right after login, `currentAccount` in this scope will be undefined, + * but calling `getPushToken` will result in `addPushTokenListener` + * listeners being called, which will handle the registration with the + * Bluesky server. + */ + getPushToken() } } } diff --git a/src/lib/notifications/util.ts b/src/lib/notifications/util.ts new file mode 100644 index 0000000000..6d00aa0e3f --- /dev/null +++ b/src/lib/notifications/util.ts @@ -0,0 +1,3 @@ +import {Logger} from '#/logger' + +export const logger = Logger.create(Logger.Context.Notifications) diff --git a/src/lib/routes/links.ts b/src/lib/routes/links.ts index 10c99b62d7..908db7cba7 100644 --- a/src/lib/routes/links.ts +++ b/src/lib/routes/links.ts @@ -1,4 +1,4 @@ -import {AppBskyGraphDefs, AtUri} from '@atproto/api' +import {type AppBskyGraphDefs, AtUri} from '@atproto/api' import {isInvalidHandle} from '#/lib/strings/handles' diff --git a/src/lib/routes/types.ts b/src/lib/routes/types.ts index c92be34c23..b1db5caa64 100644 --- a/src/lib/routes/types.ts +++ b/src/lib/routes/types.ts @@ -51,6 +51,7 @@ export type CommonNavigatorParams = { AppearanceSettings: undefined AccountSettings: undefined PrivacyAndSecuritySettings: undefined + ActivityPrivacySettings: undefined ContentAndMediaSettings: undefined NotificationSettings: undefined ReplyNotificationSettings: undefined @@ -72,6 +73,7 @@ export type CommonNavigatorParams = { MessagesConversation: {conversation: string; embed?: string; accept?: true} MessagesSettings: undefined MessagesInbox: undefined + NotificationsActivityList: {posts: string} LegacyNotificationSettings: undefined Feeds: undefined Start: {name: string; rkey: string} diff --git a/src/lib/statsig/gates.ts b/src/lib/statsig/gates.ts index fca3f609af..66134a4629 100644 --- a/src/lib/statsig/gates.ts +++ b/src/lib/statsig/gates.ts @@ -3,11 +3,12 @@ export type Gate = | 'alt_share_icon' | 'debug_show_feedcontext' | 'debug_subscriptions' + | 'disable_onboarding_policy_update_notice' | 'explore_show_suggested_feeds' + | 'handle_suggestions' | 'old_postonboarding' | 'onboarding_add_video_feed' | 'post_threads_v2_unspecced' - | 'reengagement_features' | 'remove_show_latest_button' | 'test_gate_1' | 'test_gate_2' diff --git a/src/lib/statsig/statsig.tsx b/src/lib/statsig/statsig.tsx index 7f04da1267..860e841eb4 100644 --- a/src/lib/statsig/statsig.tsx +++ b/src/lib/statsig/statsig.tsx @@ -1,17 +1,17 @@ import React from 'react' import {Platform} from 'react-native' -import {AppState, AppStateStatus} from 'react-native' +import {AppState, type AppStateStatus} from 'react-native' import {Statsig, StatsigProvider} from 'statsig-react-native-expo' -import {BUNDLE_DATE, BUNDLE_IDENTIFIER, IS_TESTFLIGHT} from '#/lib/app-info' import {logger} from '#/logger' -import {MetricEvents} from '#/logger/metrics' +import {type MetricEvents} from '#/logger/metrics' import {isWeb} from '#/platform/detection' import * as persisted from '#/state/persisted' +import * as env from '#/env' import {useSession} from '../../state/session' import {timeout} from '../async/timeout' import {useNonReactiveCallback} from '../hooks/useNonReactiveCallback' -import {Gate} from './gates' +import {type Gate} from './gates' const SDK_KEY = 'client-SXJakO39w9vIhl3D44u8UupyzFl4oZ2qPIkjwcvuPsV' @@ -25,6 +25,7 @@ type StatsigUser = { // This is the place where we can add our own stuff. // Fields here have to be non-optional to be visible in the UI. platform: 'ios' | 'android' | 'web' + appVersion: string bundleIdentifier: string bundleDate: number refSrc: string @@ -47,10 +48,9 @@ export type {MetricEvents as LogEvents} function createStatsigOptions(prefetchUsers: StatsigUser[]) { return { environment: { - tier: - process.env.NODE_ENV === 'development' - ? 'development' - : IS_TESTFLIGHT + tier: env.IS_DEV + ? 'development' + : env.IS_TESTFLIGHT ? 'staging' : 'production', }, @@ -147,6 +147,7 @@ function toStringRecord( // and it's been difficult to get it to behave in a predictable way. // Our own cache ensures consistent evaluation within a single session. const GateCache = React.createContext | null>(null) +GateCache.displayName = 'StatsigGateCacheContext' type GateOptions = { dangerouslyDisableExposureLogging?: boolean @@ -210,8 +211,9 @@ function toStatsigUser(did: string | undefined): StatsigUser { refSrc, refUrl, platform: Platform.OS as 'ios' | 'android' | 'web', - bundleIdentifier: BUNDLE_IDENTIFIER, - bundleDate: BUNDLE_DATE, + appVersion: env.RELEASE_VERSION, + bundleIdentifier: env.BUNDLE_IDENTIFIER, + bundleDate: env.BUNDLE_DATE, appLanguage: languagePrefs.appLanguage, contentLanguages: languagePrefs.contentLanguages, }, diff --git a/src/lib/strings/embed-player.ts b/src/lib/strings/embed-player.ts index 0b3073b95d..0cd0b4921d 100644 --- a/src/lib/strings/embed-player.ts +++ b/src/lib/strings/embed-player.ts @@ -11,8 +11,8 @@ const IFRAME_HOST = isWeb ? 'http://localhost:8100' : 'https://bsky.app' : __DEV__ && !process.env.JEST_WORKER_ID - ? 'http://localhost:8100' - : 'https://bsky.app' + ? 'http://localhost:8100' + : 'https://bsky.app' export const embedPlayerSources = [ 'youtube', diff --git a/src/lib/strings/handles.ts b/src/lib/strings/handles.ts index 78a2e1a09a..bdac50a56e 100644 --- a/src/lib/strings/handles.ts +++ b/src/lib/strings/handles.ts @@ -25,16 +25,24 @@ export function isInvalidHandle(handle: string): boolean { return handle === 'handle.invalid' } -export function sanitizeHandle(handle: string, prefix = ''): string { +export function sanitizeHandle( + handle: string, + prefix = '', + forceLeftToRight = true, +): string { + const lowercasedWithPrefix = `${prefix}${handle.toLocaleLowerCase()}` return isInvalidHandle(handle) ? '⚠Invalid Handle' - : forceLTR(`${prefix}${handle.toLocaleLowerCase()}`) + : forceLeftToRight + ? forceLTR(lowercasedWithPrefix) + : lowercasedWithPrefix } export interface IsValidHandle { handleChars: boolean hyphenStartOrEnd: boolean - frontLength: boolean + frontLengthNotTooShort: boolean + frontLengthNotTooLong: boolean totalLength: boolean overall: boolean } @@ -50,7 +58,8 @@ export function validateServiceHandle( handleChars: !str || (VALIDATE_REGEX.test(fullHandle) && !str.includes('.')), hyphenStartOrEnd: !str.startsWith('-') && !str.endsWith('-'), - frontLength: str.length >= 3 && str.length <= MAX_SERVICE_HANDLE_LENGTH, + frontLengthNotTooShort: str.length >= 3, + frontLengthNotTooLong: str.length <= MAX_SERVICE_HANDLE_LENGTH, totalLength: fullHandle.length <= 253, } diff --git a/src/lib/strings/mention-manip.ts b/src/lib/strings/mention-manip.ts index 1f7cbe4344..7b52f745b2 100644 --- a/src/lib/strings/mention-manip.ts +++ b/src/lib/strings/mention-manip.ts @@ -7,7 +7,7 @@ export function getMentionAt( text: string, cursorPos: number, ): FoundMention | undefined { - let re = /(^|\s)@([a-z0-9.]*)/gi + let re = /(^|\s)@([a-z0-9.-]*)/gi let match while ((match = re.exec(text))) { const spaceOffset = match[1].length diff --git a/src/lib/styles.ts b/src/lib/styles.ts index 55fb1a844b..13b8c2bf39 100644 --- a/src/lib/styles.ts +++ b/src/lib/styles.ts @@ -1,9 +1,17 @@ -import {Dimensions, StyleProp, StyleSheet, TextStyle} from 'react-native' +import { + Dimensions, + type StyleProp, + StyleSheet, + type TextStyle, +} from 'react-native' import {isWeb} from '#/platform/detection' -import {Theme, TypographyVariant} from './ThemeContext' +import {type Theme, type TypographyVariant} from './ThemeContext' // 1 is lightest, 2 is light, 3 is mid, 4 is dark, 5 is darkest +/** + * @deprecated use ALF colors instead + */ export const colors = { white: '#ffffff', black: '#000000', @@ -63,6 +71,9 @@ export const gradients = { blueDark: {start: '#5F45E0', end: colors.blue3}, // avis, banner } +/** + * @deprecated use atoms from `#/alf` + */ export const s = StyleSheet.create({ // helpers footerSpacer: {height: 100}, diff --git a/src/locale/helpers.ts b/src/locale/helpers.ts index 380f996b91..f7c8d31609 100644 --- a/src/locale/helpers.ts +++ b/src/locale/helpers.ts @@ -45,8 +45,7 @@ function getLocalizedLanguage( const translatedName = allNames.of(langCode) if (translatedName) { - // force simple title case (as languages do not always start with an uppercase in Unicode data) - return translatedName[0].toLocaleUpperCase() + translatedName.slice(1) + return translatedName } } catch (e) { // ignore RangeError from Intl.DisplayNames APIs diff --git a/src/locale/languages.ts b/src/locale/languages.ts index 5a45181aa1..81df133dee 100644 --- a/src/locale/languages.ts +++ b/src/locale/languages.ts @@ -55,45 +55,45 @@ interface AppLanguageConfig { export const APP_LANGUAGES: AppLanguageConfig[] = [ {code2: AppLanguage.en, name: 'English'}, - {code2: AppLanguage.an, name: 'Aragonés – Aragonese'}, - {code2: AppLanguage.ast, name: 'Asturianu – Asturian'}, - {code2: AppLanguage.ca, name: 'Català – Catalan'}, + {code2: AppLanguage.an, name: 'aragonés – Aragonese'}, + {code2: AppLanguage.ast, name: 'asturianu – Asturian'}, + {code2: AppLanguage.ca, name: 'català – Catalan'}, {code2: AppLanguage.cy, name: 'Cymraeg – Welsh'}, - {code2: AppLanguage.da, name: 'Dansk – Danish'}, + {code2: AppLanguage.da, name: 'dansk – Danish'}, {code2: AppLanguage.de, name: 'Deutsch – German'}, {code2: AppLanguage.el, name: 'Ελληνικά – Greek'}, - {code2: AppLanguage.en_GB, name: 'English (UK)'}, + {code2: AppLanguage.en_GB, name: 'British English'}, {code2: AppLanguage.eo, name: 'Esperanto'}, - {code2: AppLanguage.es, name: 'Español – Spanish'}, - {code2: AppLanguage.eu, name: 'Euskera – Basque'}, - {code2: AppLanguage.fi, name: 'Suomi – Finnish'}, - {code2: AppLanguage.fr, name: 'Français – French'}, - {code2: AppLanguage.fy, name: 'Frysk – Frisian'}, + {code2: AppLanguage.es, name: 'español – Spanish'}, + {code2: AppLanguage.eu, name: 'euskara – Basque'}, + {code2: AppLanguage.fi, name: 'suomi – Finnish'}, + {code2: AppLanguage.fr, name: 'français – French'}, + {code2: AppLanguage.fy, name: 'Frysk – Western Frisian'}, {code2: AppLanguage.ga, name: 'Gaeilge – Irish'}, {code2: AppLanguage.gd, name: 'Gàidhlig – Scottish Gaelic'}, - {code2: AppLanguage.gl, name: 'Galego – Galician'}, + {code2: AppLanguage.gl, name: 'galego – Galician'}, {code2: AppLanguage.hi, name: 'हिंदी – Hindi'}, {code2: AppLanguage.hu, name: 'magyar – Hungarian'}, {code2: AppLanguage.ia, name: 'Interlingua'}, {code2: AppLanguage.id, name: 'Bahasa Indonesia – Indonesian'}, - {code2: AppLanguage.it, name: 'Italiano – Italian'}, + {code2: AppLanguage.it, name: 'italiano – Italian'}, {code2: AppLanguage.ja, name: '日本語 – Japanese'}, {code2: AppLanguage.km, name: 'ភាសាខ្មែរ – Khmer'}, {code2: AppLanguage.ko, name: '한국어 – Korean'}, {code2: AppLanguage.ne, name: 'नेपाली – Nepali'}, {code2: AppLanguage.nl, name: 'Nederlands – Dutch'}, - {code2: AppLanguage.pl, name: 'Polski – Polish'}, + {code2: AppLanguage.pl, name: 'polski – Polish'}, { code2: AppLanguage.pt_BR, name: 'português do Brasil – Brazilian Portuguese', }, {code2: AppLanguage.pt_PT, name: 'português europeu – European Portuguese'}, - {code2: AppLanguage.ro, name: 'Română – Romanian'}, - {code2: AppLanguage.ru, name: 'Русский – Russian'}, - {code2: AppLanguage.sv, name: 'Svenska – Swedish'}, + {code2: AppLanguage.ro, name: 'română – Romanian'}, + {code2: AppLanguage.ru, name: 'русский – Russian'}, + {code2: AppLanguage.sv, name: 'svenska – Swedish'}, {code2: AppLanguage.th, name: 'ภาษาไทย – Thai'}, {code2: AppLanguage.tr, name: 'Türkçe – Turkish'}, - {code2: AppLanguage.uk, name: 'Українська – Ukrainian'}, + {code2: AppLanguage.uk, name: 'українська – Ukrainian'}, {code2: AppLanguage.vi, name: 'Tiếng Việt – Vietnamese'}, {code2: AppLanguage.zh_CN, name: '简体中文 – Simplified Chinese'}, {code2: AppLanguage.zh_TW, name: '繁體中文 – Traditional Chinese'}, diff --git a/src/locale/locales/an/messages.po b/src/locale/locales/an/messages.po index 1066f7e067..a85ccd7423 100644 --- a/src/locale/locales/an/messages.po +++ b/src/locale/locales/an/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: an\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: Aragonese\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,7 +27,7 @@ msgstr "(activo)" msgid "(contains embedded content)" msgstr "(tien conteniu incrustau)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(sin correu-e)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# republicación} other {# republicacions}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# segundo} other {# segundos}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# elemento no leyiu} other {# elementos no leyius}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {# elemento no leyiu} other {# elementos no leyius}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {# mes} other {# meses}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {seguidor} other {seguidors}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {seguindo} other {seguindo}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {me-fa-goyo} other {me-fa-goyos}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {me-fa-goyo} other {me-fa-goyos}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {publicación} other {publicacions}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {cita} other {citas}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {republicación} other {republicacions}}" @@ -135,6 +138,10 @@ msgstr "{0} <0>en <1>etiquetas" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>en <1>texto y etiquetas" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "" @@ -143,11 +150,15 @@ msgstr "" msgid "{0} is not a valid URL" msgstr "" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} s'han uniu esta semana" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} de {1}" @@ -164,8 +175,16 @@ msgstr "" msgid "{0} reacted {1} to {2}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "avatar de {0}" @@ -197,12 +216,12 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}s" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# elemento no leyiu} other {# elementos no leyius}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Paquet d'inicio de {displayName}" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {horas}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuto} other {minutos}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} t'han seguiu" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "A {firstAuthorLink} y a <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} les ha feito goyo la tuya canal personalizada" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "A {firstAuthorLink} y a <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} les ha feito goyo la tuya publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} ha republicau la tuya publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} s'han rechistrau con o tuyo paquet d'inicio" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} t'ha seguiu" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} t'ha seguiu tamién" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "A {firstAuthorLink} le ha feito goyo la tuya canal personalizada" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "A {firstAuthorLink} le ha feito goyo la tuya publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} ha republicau la tuya publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} s'ha rechistrau con o tuyo paquet d'inicio" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} t'han seguiu" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "A {firstAuthorName} y a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} les ha feito goyo la tuya canal personalizada" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "A {firstAuthorName} y a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} les ha feito goyo la tuya publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} han republicau la tuya publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} s'han rechistrau con o tuyo paquet d'inicio" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} t'ha seguiu" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} tamién t'ha seguiu" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "A {firstAuthorName} le ha feito goyo la tuya canal personalizada" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "A {firstAuthorName} le ha feito goyo la tuya publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} ha republicau la tuya publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} s'ha rechistau con o tuyo paquet d'inicio" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} seguindo" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "No se puede ninviar mensaches a {handle}" @@ -392,7 +410,7 @@ msgstr "" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# elemento no leyiu} other {# elementos no leyius}}" @@ -432,12 +450,12 @@ msgstr "" msgid "+{computedTotal}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, y {2, plural, one {# atro} other {# atros}} s'incluyen en o tuyo paquet d'inicio" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, y {2, plural, one {# atro} other {# atros}} s'incluyen en o tuyo paquet d'inicio" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {seguidor} other {seguidors}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {seguindo} other {seguindo}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} and<1> <2>{1} s'incluyen en o tuyo paquet d'inicio" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} s'incluye en o tuyo paquet d'inicio" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} miembros" @@ -466,11 +484,11 @@ msgstr "<0>{0} miembros" msgid "<0>{date} at {time}" msgstr "<0>{date} en {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Experimental: Cuan ye activada esta preferencia, nomás recibirás notificacions de respuestas y citas d'usuarios a qui sigues. Seguiremos anyadindo mas controls aquí." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Tu y<1> <2>{0} s'incluyen en o tuyo paquet d'inicio" @@ -503,10 +521,14 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Cuanto a" @@ -524,25 +546,25 @@ msgstr "" msgid "Accept Request" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Accesibilidat" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Achustes d'accesibilidat" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Cuenta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Cuenta seguida" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Cuenta silenciada" msgid "Account Muted by List" msgstr "Cuenta silenciada per lista" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Opcions de cuenta" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Cuenta sacada de l'acceso rápido" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Has deixau de seguir a esta cuenta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Cuenta no silenciada" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Anyadir" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Anyadir-ne {0} mas pa continar" @@ -634,8 +666,8 @@ msgstr "Anyadir cuenta" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Anyadir texto alternativo" msgid "Add alt text (optional)" msgstr "Anyadir texto alternativo (opcional)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Anyadir una atra cuenta" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Anyadir una atra publicación" @@ -670,8 +702,8 @@ msgstr "Anyadir clau d'app" msgid "Add emoji reaction" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Anyadir mas detalles (opcional)" @@ -683,7 +715,7 @@ msgstr "Anyadir parola muda con a configuración triada" msgid "Add muted words and tags" msgstr "Anyadir parolas silenciadas y etiquetas" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Anyadir una atra publicación" @@ -704,7 +736,7 @@ msgstr "" msgid "Add recommended feeds" msgstr "Anyadir canals recomendadas" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Anyadir bella canal ta lo tuyo paquet d'inicio!" @@ -725,10 +757,6 @@ msgstr "Anyade esta canal a las tuyas canals" msgid "Add to lists" msgstr "Anyadir a listas" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Anyadir a las mías canals" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "" @@ -738,11 +766,11 @@ msgstr "" msgid "Added to list" msgstr "Anyadiu a lista" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Anyadiu a las mías canals" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Detalles adicionals (limite 300 carácters)" @@ -750,18 +778,18 @@ msgstr "Detalles adicionals (limite 300 carácters)" msgid "Adult" msgstr "Adulto" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Conteniu adulto" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Lo conteniu pa adultos nomás se puede habilitar a traviés d'a web en <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Lo conteniu adulto ye desactivau." @@ -770,16 +798,32 @@ msgstr "Lo conteniu adulto ye desactivau." msgid "Adult Content labels" msgstr "Etiquetas de conteniu d'adultos" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Abanzau" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Toz" @@ -793,7 +837,7 @@ msgstr "S'han seguiu totas las cuentas!" msgid "All languages" msgstr "Toz los idiomas" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Totas las tuyas canals alzadas, en un solo puesto." @@ -802,16 +846,21 @@ msgstr "Totas las tuyas canals alzadas, en un solo puesto." msgid "Allow access to your direct messages" msgstr "Permite l'acceso a los tuyos mensaches directos" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Permitir nuevos mensaches de" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Permitir publicacions citadas" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Permitir respuestas de:" @@ -828,13 +877,13 @@ msgstr "Ya tiens un codigo?" msgid "Already signed in as @{0}" msgstr "Sesión ya iniciada como @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "Texto alternativo" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Texto alternativo" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Lo texto alternativo describe imáchens a usuarios ciegos u con baixa visión, y aduya a dar mas contexto a toz." @@ -861,27 +910,19 @@ msgstr "" msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Un codigo de verificación s'ha ninviau a {0}. Escribe aquí ixe codigo." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "S'ha ninviau un correu electronico! Escribe lo codigo de confirmación incluyiu en o correu electronico contino." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "I ha habiu una error" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "I ha habiu una error" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "I ha habiu una error en comprimir lo video." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "" @@ -889,11 +930,11 @@ msgstr "" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "I ha habiu una error en chenerar lo suyo paquet d'inicio. Quiers intentar-lo de nuevo?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "I ha habiu una error en cargar lo video. Per favor torne a intentar-lo." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "I ha habiu una error mientres cargaba lo video. Per favor torne a intentar-lo." @@ -910,7 +951,7 @@ msgstr "I ha habiu una error mientres triaba lo video" msgid "An error occurred while trying to follow all" msgstr "I ha habiu una error mientres intentaba seguir a toz" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "I ha habiu una error en cargar lo video." @@ -934,8 +975,8 @@ msgstr "I ha habiu un problema mientres intentaba ubrir lo chat." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "I ha habiu una error desconoixida" msgid "an unknown labeler" msgstr "un etiquetador desconoixiu" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "y" @@ -963,10 +1004,14 @@ msgstr "y" msgid "Animals" msgstr "Animals" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "GIF animau" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "" @@ -980,7 +1025,13 @@ msgstr "Comportamiento antisocial" msgid "Anybody can interact" msgstr "Cualsequiera puede interactuar" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "Los nombres de claus d'aplicación nomás pueden contener letras, numero msgid "App password names must be at least 4 characters long" msgstr "Las claus d'aplicación han de tener a lo menos 4 carácters" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Claus d'aplicación" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Claus de l'app" @@ -1053,10 +1104,10 @@ msgstr "Revisón d'a suspensión" msgid "Appeal this decision" msgstr "Apelar esta decisión" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Apariencia" @@ -1065,12 +1116,20 @@ msgstr "Apariencia" msgid "Apply default recommended feeds" msgstr "Aplicar canals recomendadas predeterminadas" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Archivau dende {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Publicación archivada" @@ -1078,7 +1137,7 @@ msgstr "Publicación archivada" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Yes seguro de querer borrar la clau d'aplicación \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Yes seguro que quiers eliminar este mensache? Lo mensache s'eliminará pa tu, pero no pas pa l'atro participant." @@ -1098,19 +1157,15 @@ msgstr "" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Yes seguro que quiers deixar esta conversación? Los mensaches serán eliminaus pa tu, pero no pas pa l'atro participant." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Seguro que quiers eliminar {0} d'as tuyas canals?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Yes seguro que deseyas sacar esto d'as tuyas canals?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Seguro que quiers descartar este borrador?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Seguro que quiers eliminar esta publicación?" @@ -1131,29 +1186,26 @@ msgstr "Arte" msgid "Artistic or non-erotic nudity." msgstr "Desnudez artistica u no erotica." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "A lo menos 3 carácters" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Las opcions d'autorreproducción son agora en <0>Achustes de conteniu y multimedia." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Autorreproducir videos y GIFs" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Autorreproducir videos y GIFs" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Dezaga" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "" @@ -1195,28 +1247,44 @@ msgstr "Antes de crear un paquet d'inicio has de verificar lo tuyo correu." msgid "Before you can accept this chat request, you must first verify your email." msgstr "" +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Aniversario" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Blocar" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Blocar" msgid "Block account" msgstr "Blocar cuenta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Blocar la cuenta?" @@ -1262,20 +1330,20 @@ msgstr "Blocar usuario" msgid "Block User" msgstr "Blocar usuario" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Blocau" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Cuentas blocadas" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Cuentas blocadas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Las cuentas blocadas no podrán responder en os tuyos filos, mencionar-te ni interactuar con tu de garra traza." @@ -1284,11 +1352,11 @@ msgstr "Las cuentas blocadas no podrán responder en os tuyos filos, mencionar-t msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Las cuentas blocadas no podrán responder en os tuyos filos, mencionar-te ni interactuar con tu de garra traza. No veyerás lo suyo conteniu y no podrán veyer lo tuyo." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Publicación blocada." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Si blocas un etiquetador encara podrán seguir aplicando etiquetas a la tuya cuenta." @@ -1309,11 +1377,12 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky no puede confirmar l'autenticidat d'a data declarada." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1347,6 +1416,14 @@ msgstr "Bluesky no amostrará lo tuyo perfil u publicacions a usuarios que no ha msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Desenfocar imáchens y filtrar dende las canals" msgid "Books" msgstr "Libros" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Explorar mas cuentas" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Revisar mas canals" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Explorar mas sucherencias" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Explora mas sucherencias" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Negocios" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Per {0}" @@ -1428,15 +1502,23 @@ msgstr "Per {0}" msgid "By <0>{0}" msgstr "Per <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "En crear una cuenta, acceptas la <0>Politica de privacidat." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "En crear una cuenta, aceptas los <0>Termins de Servicio y la <1>Politica de privacidat." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "En crear una cuenta, acceptas los <0>Termins de Servicio." @@ -1448,14 +1530,17 @@ msgstr "" msgid "Camera" msgstr "Camera" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Camera" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Cancelar" @@ -1500,11 +1582,7 @@ msgstr "Cancelar la eliminación d'a cuenta" msgid "Cancel image crop" msgstr "Cancelar retalle d'imachen" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Cancelar edición de perfil" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Cancelar citación" @@ -1516,14 +1594,10 @@ msgstr "Cancelar la reactivación y zarrar la sesión" msgid "Cancel search" msgstr "Cancelar busqueda" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Cancela obridura d'o puesto web vinculau" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "No se puede interactuar con un usuario blocau" @@ -1553,17 +1627,12 @@ msgstr "Cambiar l'icono de l'aplicación a \"{0}\"" msgid "Change app language" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Cambiar l'adreza de correu electronico" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Cambiar identificador" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Cambiar servicio de moderación" @@ -1579,14 +1648,6 @@ msgstr "Cambiar l'idioma d'a publicación a {suggestedLanguageName}" msgid "Change report reason" msgstr "Cambiar la razón d'o reporte" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Cambiar correu electronico" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Cambiar la tuya adreza de correu" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Cambia l'icono de l'aplicación" @@ -1596,10 +1657,15 @@ msgstr "Cambia l'icono de l'aplicación" msgid "Changes hosting provider" msgstr "Cambia lo proveyedor d'alochamiento" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Conversa" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Chat silenciau" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Achustes de chat" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Configuración de chat" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat no silenciau" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "" @@ -1661,7 +1738,7 @@ msgstr "T'hemos ninviau un codigo de verificación a lo tuyo correu. Escribe-lo msgid "Choose domain verification method" msgstr "Triar un metodo de verificación de dominio" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Triar canals" @@ -1669,7 +1746,7 @@ msgstr "Triar canals" msgid "Choose for me" msgstr "Triar pa yo" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Tríar chent" @@ -1685,23 +1762,23 @@ msgstr "Tría esta color como lo tuyo avatar" msgid "Choose your account provider" msgstr "Tría lo tuyo proveyedor de cuenta" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Tría la tuya propia linia temporal! Las canals creadas per la comunidat t'adjuyan a trobar lo conteniu que te fa goyo." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Tría la tuya clau" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Lo tuyo identificador" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Borrar toz los datos d'almagacenamiento" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Borrar toz los datos d'almagacenamiento (reiniciar dimpués d'esto)" @@ -1714,23 +1791,27 @@ msgstr "" msgid "Clear search query" msgstr "Borrar consulta de busqueda" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "fe clic aquí" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Fe clic pa deshabilitar las citas pa esta publicación." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Fe clic pa habilitar las citas pa esta publicación." @@ -1750,14 +1831,16 @@ msgstr "Clima" msgid "Clip 🐴 clop 🐴" msgstr "Tacatot🐴 tacatat 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Tacatot🐴 tacatat 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Zarrar" @@ -1789,13 +1876,15 @@ msgstr "Zarrar l'alerta" msgid "Close bottom drawer" msgstr "Zarrar lo calaixo inferior" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Zarrar finestra" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Zarra lo menú lateral" @@ -1804,7 +1893,7 @@ msgstr "Zarra lo menú lateral" msgid "Close emoji picker" msgstr "Zarrar lo selector d'emojis" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Zarrar finestra de GIF" @@ -1822,7 +1911,7 @@ msgstr "Zarrar lo visor d'imachen" msgid "Close menu" msgstr "" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Zarrar este dialogo" @@ -1830,7 +1919,7 @@ msgstr "Zarrar este dialogo" msgid "Closes password update alert" msgstr "Zarra l'alerta d'actualización de clau" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "" @@ -1843,16 +1932,16 @@ msgstr "Zarrar lo selector d'emojis" msgid "Closes viewer for header image" msgstr "Zarra lo visor d'a imachen d'o capitero" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Comprimir la lista d'usuarios" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Comprimir la lista d'usuarios pa una notificación en particular" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Modo de color" @@ -1870,7 +1959,8 @@ msgstr "Comedia" msgid "Comics" msgstr "Historietas" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Directrices d'a comunidat" @@ -1879,38 +1969,34 @@ msgstr "Directrices d'a comunidat" msgid "Complete onboarding and start using your account" msgstr "Completa la incorporación y prencipia a usar la tuya cuenta" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Completa lo desafío" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Redactar una nueva publicación" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Redactar la respuesta" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Comprimindo video..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Configuración de filtrau de conteniu pa la categoría: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Configurau en <0>achustes de moderación." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Confimar l'idioma d'o conteniu" msgid "Confirm delete account" msgstr "Confirmar eliminación de cuenta" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Confirma la tuya edat:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Confirma la tuya data de naixencia" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Confirma la tuya data de naixencia" msgid "Confirmation code" msgstr "Codigo de confirmación" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Codigo de confirmación" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Connectando..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Contactar con soporte" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Conteniu y multimedia" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Conteniu y multimedia" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Conteniu y multimedia" @@ -1977,7 +2069,8 @@ msgstr "Conteniu y multimedia" msgid "Content Blocked" msgstr "Conteniu Blocau" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Filtros de conteniu" @@ -2006,10 +2099,12 @@ msgstr "Advertencia de conteniu" msgid "Content warnings" msgstr "Advertencias de conteniu" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Fondo d'o menú contextual, faga clic pa zarrar lo menú." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Continar" msgid "Continue as {0} (currently signed in)" msgstr "Continar como {0} (actualment ha iniciau sesión)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Continar filo..." @@ -2029,6 +2129,10 @@ msgstr "Continar filo..." msgid "Continue to next step" msgstr "Contina con o siguient paso" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Copiau" msgid "Copied build version to clipboard" msgstr "Versión de compilación copiada a lo portafuellas" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Copia la versión de construcción a lo portafuellas" msgid "Copy" msgstr "Copiar" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Copiar clau d'aplicación" @@ -2087,8 +2187,8 @@ msgstr "Copiar clau d'aplicación" msgid "Copy at:// URI" msgstr "Copiar at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Copiar DID de l'autor" @@ -2120,10 +2220,10 @@ msgstr "Copiar vinclo" msgid "Copy link to list" msgstr "Copia lo vinclo a la lista" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Copiar lo vinclo a la publicación" @@ -2136,18 +2236,18 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Copiar texto d'o mensache" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Copiar at:// URI d'a publicación" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Copiar texto d'a publicación" @@ -2159,11 +2259,25 @@ msgstr "Copiar codigo QR" msgid "Copy TXT record value" msgstr "Copiar valor de rechistro TXT" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Politica de dreitos d'autor" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "No s'ha puesto silenciar lo chat" msgid "Could not process your video" msgstr "No s'ha puesto procesar lo tuyo video" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Crear" @@ -2195,7 +2317,7 @@ msgstr "Crear un codigo QR pa pack d'inicio" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Crea un paquet d'inicio" @@ -2205,21 +2327,22 @@ msgstr "Crea un paquet d'inicio pa yo" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Crear cuenta" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Crear una cuenta" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Crea una cuenta" @@ -2241,7 +2364,7 @@ msgstr "Crea-ne unatro" msgid "Create new account" msgstr "Crear una cuenta nueva" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Crea un reporte de {0}" @@ -2268,7 +2391,7 @@ msgstr "Personalizau" msgid "Customization options" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Personaliza quí puede interactuar con esta publicación." @@ -2278,12 +2401,12 @@ msgstr "Personaliza la tuya experiencia en Bluesky" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Fosco" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Fosco" @@ -2292,21 +2415,21 @@ msgstr "Fosco" msgid "Dark mode" msgstr "Modo Fosco" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Tema fosco" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Data de naixencia" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Desactivar cuenta" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Moderacion de depuración" @@ -2314,7 +2437,7 @@ msgstr "Moderacion de depuración" msgid "Debug panel" msgstr "Panel de depuración" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Per Defecto" @@ -2322,8 +2445,8 @@ msgstr "Per Defecto" msgid "Default icons" msgstr "Iconos per defecto" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Iconos per defecto" msgid "Delete" msgstr "Borrar" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Borrar la cuenta" @@ -2355,7 +2478,7 @@ msgstr "Borrar la clau d'a app?" msgid "Delete chat" msgstr "" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Borrar lo rechistro de declaracion de conversa" @@ -2370,7 +2493,7 @@ msgstr "Borrar conversa" msgid "Delete Conversation" msgstr "Borrar conversa" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Borrar pa yo" @@ -2378,11 +2501,11 @@ msgstr "Borrar pa yo" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Borrar mensache" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Borrar mensache pa yo" @@ -2390,9 +2513,9 @@ msgstr "Borrar mensache pa yo" msgid "Delete my account" msgstr "Borrar la mía cuenta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Borrar una publicación" @@ -2409,11 +2532,11 @@ msgstr "Borrar paquet d'inicio?" msgid "Delete this list?" msgstr "Borrar esta lista?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Borrar esta publicación?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Eliminau" @@ -2422,15 +2545,20 @@ msgstr "Eliminau" msgid "Deleted Account" msgstr "Cuenta borrada" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Se borró la publicación." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Descripción" @@ -2447,12 +2575,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Texto descriptivo alternativo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Desvincular cita" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Desvincular publicación de la cita?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Modo desenrollador activau" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Desenrollar opcions" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Achustar quí puede interactuar con esta publicación" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Tenue" @@ -2492,27 +2620,27 @@ msgstr "" msgid "Disable Email 2FA" msgstr "Desactivar Correu 2FA" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Desactivar la retroalimentación haptica" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Desactivar subtitulos" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Desactivau" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Descartar" @@ -2520,11 +2648,11 @@ msgstr "Descartar" msgid "Discard changes?" msgstr "Descartar cambios?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Descartar borrador?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Descartar la publicación?" @@ -2542,7 +2670,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "Descubre nuevas canals personalizadas" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Descubrir nuevas canals" @@ -2550,7 +2678,7 @@ msgstr "Descubrir nuevas canals" msgid "Dismiss" msgstr "Descartar" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Descartar error" @@ -2562,26 +2690,26 @@ msgstr "Descartar la guía d'introducción" msgid "Dismiss interests" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Amagar esta sección" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Amostrar insignias de texto alternativo mas grans" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Amostrar lo nombre" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Amostrar lo nombre" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Lo nombre ye masiau largo" @@ -2603,15 +2731,11 @@ msgstr "No aplicar esta parola silenciada a los usuarios que sigues" msgid "Does not include nudity." msgstr "No incluye desnudez." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "No prencipia ni remata con un guión" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Dominio verificau!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -2619,6 +2743,15 @@ msgstr "" msgid "Don't see an email? <0>Click here to resend." msgstr "" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "" msgid "Double tap to close the dialog" msgstr "Dople toque pa zarrar lo dialogo" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Toca dos vegadas pa indicar que te fa goyo" @@ -2673,7 +2806,7 @@ msgstr "Descargar Bluesky" msgid "Download CAR file" msgstr "Descargar fichero CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Arrociega pa anyadir imagenes" @@ -2689,18 +2822,10 @@ msgstr "p. eix. alicia" msgid "e.g. Alice Lastname" msgstr "p. eix. Alicia Apelliu" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "p. eix. Alice Roberts" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "p. eix. alicia.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "p. eix. Artista, amant d'os cans, y lectora avida." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "p. eix. desnudos artisticos." @@ -2725,10 +2850,11 @@ msgstr "p. eix. Usuarios que gosan responder con publicidat." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Cada codigo funciona una vegada. Recibirás mas codigos d'invitación periodicament." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Editar" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Editar" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Editar avatar" @@ -2749,12 +2875,12 @@ msgstr "Editar canals" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Editar la imachen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Editar achustes d'interacción" @@ -2776,33 +2902,33 @@ msgstr "" msgid "Edit Moderation List" msgstr "Editar lista de Moderación" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Editar las mías noticias" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Editar lo mío perfil" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Editar Personas" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Editar achustes d'interacción d'a publicación" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Editar lo perfil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Editar lo perfil" @@ -2814,19 +2940,11 @@ msgstr "Editar paquet d'inicio" msgid "Edit User List" msgstr "Editar lista d'Usuarios" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Editar quí puede responder" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Editar lo tuyo nombre pa amostrar " - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Edita lo tuyo descripcion de perfil" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Edita lo tuyo paquet d'inicio" @@ -2839,8 +2957,8 @@ msgstr "Educación" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "Lo creador d'esta lista t'ha blocau u l'has blocau tu." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "Correu electronico" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "Correu 2FA deshabilitau" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "Activar correu 2FA" @@ -2865,10 +2983,6 @@ msgstr "Correu electronico reninviau" msgid "Email sent!" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "" @@ -2883,8 +2997,8 @@ msgstr "Incrustar codigo HTML" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Incrustar publicación" @@ -2892,7 +3006,7 @@ msgstr "Incrustar publicación" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incrusta esta publicación en o tuyo puesto web. Simplament copia lo siguient fragmento y apega-lo en o codigo HTML d'o tuyo puesto web." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Reproductor de video incrustau" @@ -2906,7 +3020,7 @@ msgstr "Activar" msgid "Enable {0} only" msgstr "Activar {0} nomás" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Activar conteniu adulto" @@ -2919,16 +3033,20 @@ msgstr "" msgid "Enable external media" msgstr "Activar fichers multimedia externos" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Reproducir multimedia de" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Habilitar notificacions prioritarias" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Activar subtítols" @@ -2941,17 +3059,14 @@ msgstr "Habilitar nomás esta fuent" msgid "Enable trending topics" msgstr "Activar las tendencias" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Activar los videos populares en Discover d'a tuya canal" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Activar los videos populares en Discover d'a tuya canal." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Activau" @@ -2963,7 +3078,7 @@ msgstr "Fin de noticias" msgid "Ensure you have selected a language for each subtitle file." msgstr "Asegura-te d'haber triau un idioma pa cada fichero de subtítols." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Escribe una clau" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Escribe una parola u etiqueta" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Escribe Codigo" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Dentrar en pantalla completa" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Escribe la tuya data de naixencia" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Escribe l'adreza de correu electronico" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Escribe la tuya nueva adreza de correu electronico contino." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Escribe la tuya clau" @@ -3022,7 +3129,7 @@ msgstr "Escribe la tuya clau" msgid "Enter your username and password" msgstr "Escribe lo tuyo identificador y clau" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Cambia a pantalla completa" @@ -3030,16 +3137,28 @@ msgstr "Cambia a pantalla completa" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Error" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "I ha habiu una error en alzar lo fichero" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Error en recibir la respuesta d'o captcha." @@ -3047,27 +3166,34 @@ msgstr "Error en recibir la respuesta d'o captcha." msgid "Error:" msgstr "Error:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Toz" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Toz pueden responder" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Toz pueden responder a esta publicación." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Toz" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Excluyir a los usuarios que sigues" msgid "Excludes users you follow" msgstr "Excluye a los usuarios que sigues" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Salir de pantalla completa" @@ -3106,24 +3232,28 @@ msgstr "Salir d'a vista d'imachen" msgid "Expand alt text" msgstr "Expandir lo texto alt" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Expandir lista d'usuarios" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Expandir u comprimir la publicación completa a la cual yes respondendo" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Ixampla u reduce lo texto d'a publicación" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "Uri esperada pa resolver un rechistro" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Experimental" @@ -3153,15 +3283,15 @@ msgstr "Fichers multimedia explicitos u potencialment perturbadors." msgid "Explicit sexual images." msgstr "Imáchens sexuals explicitas." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Exportar los míos datos" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Fichers multimedia externos" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Ye posible que fichers multimedia externos permitan que atros puestos recopilen datos sobre tu y lo tuyo dispositivo. No se ninvia u solicita garra tipo d'información dica que pretes lo botón de \"reproducir\"." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Fichers multimedia externos" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "" @@ -3211,8 +3341,8 @@ msgstr "No s'ha puesto crear una clau d'aplicación. Torna-lo a intentar." msgid "Failed to create conversation" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Error en crear lo paquet d'inicio" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Error en eliminar lo mensache" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Error en eliminar la publicación, per favor intenta-lo de nuevo" @@ -3238,8 +3368,8 @@ msgstr "Error en eliminar la publicación, per favor intenta-lo de nuevo" msgid "Failed to delete starter pack" msgstr "Error en eliminar lo paquet d'inicio" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "" @@ -3250,14 +3380,32 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Error en cargar las preferencias de canals" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Error en cargar los GIFs" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Error en cargar los mensaches anteriors" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Error en cargar las canals sucheridas" msgid "Failed to load suggested follows" msgstr "Error en cargar las sucherencias de seguimiento" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Error en clavar la publicación." #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "" @@ -3291,15 +3439,11 @@ msgstr "" msgid "Failed to save image: {0}" msgstr "Error en alzar la imachen: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Error en alzar las preferencias de notificación, per favor torna-lo a intentar" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "No s'ha puesto alzar la configuración. Torna a prebar-lo." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "" @@ -3318,7 +3462,7 @@ msgstr "" msgid "Failed to submit appeal, please try again." msgstr "Error en ninviar l'apelación, per favor intenta de nuevo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Error en cambiar lo estau de silencio d'o filo, per favor intenta de nuevo" @@ -3335,7 +3479,11 @@ msgstr "" msgid "Failed to update feeds" msgstr "Error en actualizar las canals" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Error en actualizar los achustes" @@ -3354,15 +3502,23 @@ msgstr "" msgid "Failed to verify handle. Please try again." msgstr "No s'ha puesto verificar la identificación. Torna-lo a intentar." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Canal" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Canal de {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Menú d'a canal" @@ -3371,35 +3527,39 @@ msgstr "Menú d'a canal" msgid "Feed toggle" msgstr "Alternar canal" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Comentarios" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "S'han ninviau los comentarios!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Canals" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Las noticias son algorismos personalizaus que los usuarios construyen con un poquet d'experiencia en codificación. <0/> pa mas información." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Canals actualizadas!" @@ -3428,6 +3588,14 @@ msgstr "Filtrar la busqueda per idioma" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtrar la busqueda per idioma (actualment: {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Finalizando" @@ -3448,7 +3616,7 @@ msgstr "Trobar chent a qui seguir" msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Rematar" @@ -3456,17 +3624,17 @@ msgstr "Rematar" msgid "Fitness" msgstr "Exercicio" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Flexible" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Seguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Seguir {0}" @@ -3518,7 +3686,7 @@ msgstr "Seguir cuenta" msgid "Follow all" msgstr "Seguir a toz" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Seguir tamién" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Seguir tamién" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Seguiu per <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Seguiu per <0>{0} y {1, plural, one {# other} other {# others}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Seguiu per <0>{0} y <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Seguiu per <0>{0}, <1>{1}, y {2, plural, one {# other} other {# others}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Seguidors de @{0} que conoixes" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Seguidors que conoixes" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Seguindo" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Seguindo" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Seguindo {0}" @@ -3579,8 +3751,8 @@ msgstr "Seguindo {handle}" msgid "Following feed preferences" msgstr "Preferencias d'a canal de seguimiento" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Preferencias d'a canal de Seguimiento" @@ -3592,11 +3764,11 @@ msgstr "Te sigue" msgid "Follows You" msgstr "Te sigue" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Fuent" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Grandaria de fuent" @@ -3613,7 +3785,7 @@ msgstr "Per razons de seguranza, habremos de ninviar-te un codigo de confirmaci msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Per razons de seguranza, no podrás tornar-lo a veyer. Si pierdes esta clau d'aplicación, habrás de chenerar-ne una de nueva." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Pa una millor experiencia, recomendamos que uses la fuent d'o tema." @@ -3643,11 +3815,15 @@ msgstr "La has olbidada?" msgid "Frequently Posts Unwanted Content" msgstr "A sobén publica contenius no deseyaus" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "De @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "De <0/>" @@ -3660,14 +3836,68 @@ msgstr "Galería" msgid "Generate a starter pack" msgstr "Chenera un paquet d'inicio" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Obtiene aduya" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "" @@ -3688,14 +3918,16 @@ msgstr "Da-le una cara a lo tuyo perfil" msgid "Glaring violations of law or terms of service" msgstr "Violacions flagrants d'a Lei u d'os termens de servicio" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Ir ta la conversiación con {0}" @@ -3779,8 +4017,8 @@ msgstr "Conteniu Grafico" msgid "Half way there!" msgstr "Ya yes a metat camín!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Identificador" @@ -3797,7 +4035,7 @@ msgstr "L'identificador ha cambiau!" msgid "Handle too long. Please try a shorter one." msgstr "Identificador masiau largo. Intenta-lo con uno mas curto." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Vibración" @@ -3806,7 +4044,7 @@ msgstr "Vibración" msgid "Harassment, trolling, or intolerance" msgstr "Acoso, troleyo u intolerancia" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Etiqueta" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Etiqueta {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "" -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Tiens problemas?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Aduya" @@ -3839,8 +4077,13 @@ msgstr "Aduya a que las personas sepan que no yes un bot puyando una foto u crea msgid "Here is your app password!" msgstr "Vet aquí la tuya clau d'aplicación!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Amagau" @@ -3848,16 +4091,16 @@ msgstr "Amagau" msgid "Hidden by your moderation settings." msgstr "Amagau per la tuya configuración de moderación." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Lista amagada" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Lista amagada" msgid "Hide" msgstr "Amagar" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Amagar" @@ -3875,18 +4118,18 @@ msgstr "Amagar" msgid "Hide customization options" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Amagar la publicación pa yo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Amagar respuesta pa toz" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Amagar respuesta pa yo" @@ -3894,12 +4137,12 @@ msgstr "Amagar respuesta pa yo" msgid "Hide this card" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Amagar esta publicación?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Amagar esta respuesta?" @@ -3913,11 +4156,11 @@ msgstr "Amaga las tendencias" msgid "Hide trending topics?" msgstr "Quiers amagar las tendencias?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Quiers amagar los videos en tendencias?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Amagar lista d'usuarios" @@ -3926,32 +4169,32 @@ msgstr "Amagar lista d'usuarios" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Amaga lo conteniu" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "I ha habiu bel problema en contactar con o servidor de noticias. Per favor, informa a lo propietario d'a noticia sobre este problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Pareixe que lo servidor de noticias ye mal configurau. Per favor, informa a lo propietario d'a noticia sobre este problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Pareixe que lo servidor de noticias ye difuera de linia. Per favor, informa a lo propietario d'a noticia sobre este problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Lo servidor de noticias ha respondiu de forma incorrecta. Per favor, informa a lo propietario d'a noticia sobre este problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Tenemos problemas pa trobar esta noticia. Puede que la haigan borrada." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Tenemos problemas pa cargar estes datos. Debaixo trobarás mas detalles. Si lo problema persiste contacta-nos." @@ -3959,15 +4202,15 @@ msgstr "Tenemos problemas pa cargar estes datos. Debaixo trobarás mas detalles. msgid "Hmmmm, we couldn't load that moderation service." msgstr "Pareixe que somos tenendo problemas pa cargar estes datos. Mira debaixo pa mas detalles. Si este problema sigue, per favor contacta-nos." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Aguarte! Somos dando acceso a videos gradualment, y encara yes en a lista d'espera. Torna a consultar luego!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Inicio" @@ -3984,10 +4227,10 @@ msgstr "Furnidor d'aloch" msgid "Hot" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Las respuestas calients primero" @@ -3996,10 +4239,6 @@ msgstr "Las respuestas calients primero" msgid "How should we open this link?" msgstr "Cómo habríanos d'ubrir este vinclo?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "L'entiendo" msgid "If alt text is long, toggles alt text expanded state" msgstr "Si lo texto alternativo ye largo, alterna con o estau expandiu d'o texto alternativo" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Si encara no yes un adulto seguntes las leis d'o tuyo país, lo tuyo pai, mai u tutor legal ha de leyer estes termens en o tuyo nombre." @@ -4031,11 +4270,11 @@ msgstr "Si eliminas esta lista, no podrás recuperar-la." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Si tiens lo tuyo propio dominio, puez fer-lo servir como identificador. Ixo te permite autoverificar la tuya identidat – <0>mas información." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Si eliminas esta publicación, no podrás recuperar-la." @@ -4047,6 +4286,10 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Si deseyas cambiar la tuya clau, te ninviaremos un codigo pa verificar que esta ye la tuya cuenta." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "Si yes un desenrollador/a, puez alochar lo tuyo propio servidor." @@ -4091,13 +4334,41 @@ msgstr "Suplantación d'identidat u afirmacions falsas sobre identidat u afiliac msgid "Impersonation, misinformation, or false claims" msgstr "Suplantación d'identidat, desinformación u afirmacions falsas" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Mensaches inadecuaus u vinclos explicitos" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "" @@ -4105,7 +4376,7 @@ msgstr "" msgid "Incorrect username or password" msgstr "Nombre d'usuario u clau no validos" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Escribe lo codigo ninviau a lo tuyo correu electronico pa restablir la clau" @@ -4113,7 +4384,7 @@ msgstr "Escribe lo codigo ninviau a lo tuyo correu electronico pa restablir la c msgid "Input confirmation code for account deletion" msgstr "Escribe lo codigo de confirmación pa la eliminación d'a cuenta" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Escribe una nueva clau" @@ -4129,10 +4400,14 @@ msgstr "Escribe lo codigo que se t'ha ninviau per correu electronico" msgid "Interaction limited" msgstr "Interacción limitada" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Achustes d'interacción" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Codigo de confirmación 2FA no ye valido." msgid "Invalid handle. Please try a different one." msgstr "Identificador no valido. Intenta-lo con un atro." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Rechistro de publicación invalido u no compatible" @@ -4158,7 +4433,7 @@ msgstr "Codigo de Verificación no valido" msgid "Invite a Friend" msgstr "Convida a un amigo" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Codigo d'invitación" @@ -4186,15 +4461,15 @@ msgstr "Convida a los tuyos amigos a seguir las tuyas canals y personas favorita msgid "Invites, but personal" msgstr "Invitacions, pero personals" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Ye correcta" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Nomás yes tu per agora! Anyade mas personas a lo tuyo paquet d'inicio buscando alto." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "ID de fayena: {0}" @@ -4220,11 +4495,27 @@ msgstr "Une-te a la conversa" msgid "Journalism" msgstr "Periodismo" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Etiquetado per {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Etiquetau per l'autor." @@ -4237,7 +4528,7 @@ msgstr "Etiquetas" msgid "Labels added" msgstr "S'han anyadiu las etiquetas" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Las etiquetas son anotacions sobre usuarios y conteniu. Pueden usar-se pa amagar, advertir y categorizar lo ret." @@ -4253,22 +4544,30 @@ msgstr "Etiquetas en o tuyo conteniu" msgid "Language selection" msgstr "Triar l'idioma" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Achustes d'Idiomas" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Idiomas" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Mas gran" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Zaguero" @@ -4282,7 +4581,6 @@ msgstr "saber-ne mas" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "" @@ -4290,6 +4588,10 @@ msgstr "" msgid "Learn More" msgstr "Aprender-ne mas" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Aprender mas de Bluesky" @@ -4298,15 +4600,23 @@ msgstr "Aprender mas de Bluesky" msgid "Learn more about self hosting your PDS." msgstr "Obtiene mas información sobre cómo autoalochar la tuya PDS." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "Mas información sobre la moderación que s'ha aplicau en esta publicación" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Obtiene mas información sobre la moderación aplicada a este conteniu." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Aprender mas sobre esta advertencia" @@ -4316,12 +4626,16 @@ msgstr "Aprender mas sobre esta advertencia" msgid "Learn more about verification on Bluesky" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Mas información sobre lo que ye publico en Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Aprender-ne mas." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Deixar conversa" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Deixa-los toz sin marcar pa veyer cualsequier idioma." +msgid "Leave them all unselected to see any language." +msgstr "" -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Salir de Bluesky" @@ -4370,7 +4685,7 @@ msgstr "Imos!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Liuchero" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Me fa goyo" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Me fa goyo ({0, plural, one {# me-fa-goyo} other {# me-fa-goyos}})" @@ -4397,6 +4712,10 @@ msgstr "Da-le «me fa goyo» a 10 publicacions" msgid "Like 10 posts to train the Discover feed" msgstr "Da-le «me fa goyo» a 10 publicacions pa entrenar la canal de descubrimiento" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Dar «me fa goyo» a esta noticia" @@ -4405,8 +4724,8 @@ msgstr "Dar «me fa goyo» a esta noticia" msgid "Like this labeler" msgstr "Como este etiquetador" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Le ha feito goyo a" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Le ha feito goyo a" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Le fa goyo a {0, plural, one {# usuario} other {# usuarios}}" @@ -4428,20 +4747,36 @@ msgstr "Le fa goyo a {0, plural, one {# usuario} other {# usuarios}}" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Le fa goyo a {likeCount, plural, one {# usuario} other {# usuarios}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Me fa goyo" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Me fa goyo en esta publicación" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Linial" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Lista" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Lista de blocaus" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Lista per {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "Lista de <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Lista tuya" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "La lista ya no ye silenciada" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Listas" @@ -4537,7 +4876,7 @@ msgstr "Cargar-ne mas" msgid "Load more suggested feeds" msgstr "Cargar mas canals sucheridas" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Cargar notificacions nuevas" @@ -4552,11 +4891,11 @@ msgstr "Cargar publicacions nuevas" msgid "Loading..." msgstr "Cargando..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Rechistro" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Visibilidat de desconnexión" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo de @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo de <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Logo de <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Mantiene pretau pa ubrir lo menú d'etiquetas pa #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Ye como XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "" msgid "Make one for me" msgstr "Fe un pa yo" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Asegura-te que ye aquí ta an quiers ir!" @@ -4606,7 +4945,7 @@ msgstr "Asegura-te que ye aquí ta an quiers ir!" msgid "Manage saved feeds" msgstr "Chestionar las canals alzadas" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "" @@ -4614,9 +4953,9 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "Chestiona las tuyas parolas y etiquetas silenciadas" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "" @@ -4625,15 +4964,13 @@ msgstr "" msgid "Mark as read" msgstr "Marcar como leyiu" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "" @@ -4645,19 +4982,26 @@ msgstr "Multimedia" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Fichers multipedia que pueden estar perturbadors u no adecuaus pa ciertas audiencias." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "usuarios mencionaus" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Usuarios mencionaus" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Mencions" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Menú" @@ -4665,7 +5009,7 @@ msgstr "Menú" msgid "Message {0}" msgstr "Mensache {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Mensache eliminau" @@ -4674,11 +5018,11 @@ msgstr "Mensache eliminau" msgid "Message deleted" msgstr "Mensache eliminau" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Mensache d'o servidor: {0}" @@ -4691,19 +5035,23 @@ msgstr "Campo de dentrada de mensache" msgid "Message is too long" msgstr "Lo mensache ye masiau largo" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Mensaches" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Cuenta enganyosa" msgid "Misleading Post" msgstr "Publicación enganyosa" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderación" @@ -4725,17 +5073,17 @@ msgstr "Moderación" msgid "Moderation details" msgstr "Detalles de moderación" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Lista de moderación per {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Lista de moderación per <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Lista de moderación per tu" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Lista de moderación actualizada" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Listas de moderación" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Listas de moderación" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "achustes de moderación" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Estaus de moderación" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Ferramientas de moderación" @@ -4775,7 +5123,7 @@ msgstr "Ferramientas de moderación" msgid "Moderator has chosen to set a general warning on the content." msgstr "Lo moderador ha decidiu d'establir una advertencia cheneral sobre lo conteniu." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Mas" @@ -4790,13 +5138,13 @@ msgstr "Mas canals" msgid "More options" msgstr "Mas opcions" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Las millor valoradas primero" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Respuestas millor valoradas primero" @@ -4808,8 +5156,8 @@ msgstr "Cintas" msgid "Music" msgstr "Mosica" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Silenciar" @@ -4819,8 +5167,8 @@ msgstr "Silenciar" msgid "Mute {tag}" msgstr "Silenciar {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Silenciar esta parola nomás en etiquetas" msgid "Mute this word until you unmute it" msgstr "Silenciar esta parola dica que la tornes a habilitar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Silenciar filo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Silenciar parolas y etiquetas" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Cuentas silenciadas" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Cuentas silenciadas" @@ -4898,7 +5246,7 @@ msgstr "En silenciar una cuenta no veyerás las suyas publicacions en a tuya can msgid "Muted by \"{0}\"" msgstr "Silenciau per \"{0}\"" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Parolas y etiquetas silenciadas" @@ -4911,7 +5259,7 @@ msgstr "Dengún puede veyer a qui silencias. Las cuentas silenciadas pueden inte msgid "My Birthday" msgstr "Lo mío aniversario" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Los mías canals" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Naturaleza" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Navegar a {0}" @@ -4958,11 +5306,11 @@ msgstr "Navega a la siguient pantalla" msgid "Navigates to your profile" msgstr "Navega a lo tuyo perfil" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Te fa falta cambiar-lo?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Quiers reportar una violación de copyright?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Nuevo" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Nuevo chat" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Nuevos mensaches" msgid "New Moderation List" msgstr "Nueva lista de moderación" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Nueva clau" @@ -5029,7 +5396,7 @@ msgstr "Nueva clau" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Nueva publicación" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Nueva publicación" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Finestra d'información pa nuevo usuario" @@ -5054,10 +5429,14 @@ msgstr "Finestra d'información pa nuevo usuario" msgid "New User List" msgstr "Nueva lista d'usuarios" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Respuestas nuevas primer" @@ -5071,15 +5450,15 @@ msgstr "Noticias" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "Sin panel de DNS" msgid "No expiry set" msgstr "" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "No se troboron GIFs destacaus. Puede haber un problema con Tenor." @@ -5119,32 +5498,35 @@ msgstr "" msgid "No likes yet" msgstr "Encara sini \"me-fa-goyos\"" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Ya no sigues a {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "No i hai mensaches encara" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Encara no i hai notificacions!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Dengún" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Dengún, fueras de l'autor, puede citar esta publicación." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "No i hai publicacions encara." @@ -5171,7 +5553,7 @@ msgstr "Sin resultaus" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "No s'ha trobau resultaus" @@ -5179,9 +5561,9 @@ msgstr "No s'ha trobau resultaus" msgid "No results found for \"{query}\"" msgstr "No s'ha trobau resultaus pa \"{query}\"" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "No s'ha trobau resultaus pa {query}" @@ -5189,7 +5571,7 @@ msgstr "No s'ha trobau resultaus pa {query}" msgid "No results." msgstr "" -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "No s'ha trobau resultaus pa \"{search}\"." @@ -5198,7 +5580,7 @@ msgstr "No s'ha trobau resultaus pa \"{search}\"." msgid "No thanks" msgstr "No gracias" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Dengún" @@ -5223,59 +5605,76 @@ msgstr "No se trobó a dengún. Mira de buscar a unatra persona." msgid "Non-sexual Nudity" msgstr "Desnudez no sexual" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "No trobau" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Nota sobre compartir" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: Bluesky ye un ret ubierto y publico. Esta configuración nomás limita la visibilidat d'o tuyo conteniu en l'aplicación y lo puesto web de Bluesky, y ye posible que atras aplicacions no respecten esta configuración. Atras aplicacions y puestos web pueden seguir amostrando lo tuyo conteniu a los usuarios que haigan zarrau sesión." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Cosa aquí" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Filtros de notificación" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Achustes de notificación" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Achustes de notificación" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Sons de notificación" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Sons de notificación" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Notificacions" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "agora" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Desnudez u conteniu pa adultos no etiquetau como tal" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Amortar" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Qué problema!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "D'acuerdo" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Ye bien" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Respuestas antigas primero" @@ -5331,19 +5736,19 @@ msgstr "Respuestas antigas primero" msgid "on<0><1/><2><3/>" msgstr "en<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Reiniciando" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "Falta lo texto alternativo d'uno u mas GIFs." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Falta lo texto alternativo en una u cuantas imáchens." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Falta lo texto alternativo d'uno u mas videos." @@ -5351,13 +5756,15 @@ msgstr "Falta lo texto alternativo d'uno u mas videos." msgid "Only .jpg and .png files are supported" msgstr "Nomás s'admite fichers .jpg y .png" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Nomás {0} puede responder." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Nomás contiene letras, numeros y guions" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Nomás s'admite fichers d'imachen" msgid "Only WebVTT (.vtt) files are supported" msgstr "Nomás s'admiten fichers WebVTT (.vtt)" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Ups, bella cosa ha saliu mal!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Ui!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Ubrir lo menú lateral" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Ubrir selector d'emoji" @@ -5416,7 +5822,7 @@ msgstr "Ubrir menú d'opcions d'a canal" msgid "Open full emoji list" msgstr "" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Ubrir vinclo a {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Ubrir vinclo a {niceUrl}" msgid "Open message options" msgstr "Ubrir opcions de mensache" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Ubrir la pachina de debug d'a moderación" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Ubrir achustes de parolas y etiquetas silenciadas" @@ -5453,16 +5859,16 @@ msgstr "" msgid "Open starter pack menu" msgstr "Ubrir menú d'o paquet d'inicio" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Ubrir pachina d'historico" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Ubrir rechistro d'o sistema" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Ubre {numItems} opcions" @@ -5490,11 +5896,11 @@ msgstr "Ubrir camera d'o dispositivo" msgid "Opens captions and alt text dialog" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Ubre lo dialogo de cambio d'identificador" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Ubrir compositor" @@ -5502,7 +5908,7 @@ msgstr "Ubrir compositor" msgid "Opens device photo gallery" msgstr "Ubrir galería de fotos d'o dispositivo" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Ubre lo selector d'emojis" @@ -5520,15 +5926,19 @@ msgstr "Ubre lo fluxo pa iniciar sesión en a tuya cuenta existent de Bluesky" msgid "Opens GIF select dialog" msgstr "Ubre lo dialogo de selección de GIF" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Ubre lo centro d'aduya en o navegador" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Ubre la lista de codigos d'invitación" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "" @@ -5536,12 +5946,8 @@ msgstr "" msgid "Opens password reset form" msgstr "Ubre lo formulario de restablimiento de clau" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Ubre lo puesto web vinculau" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Ubre este perfil" @@ -5558,7 +5964,7 @@ msgstr "Opcionalment, proporciona información adicional contino:" msgid "Options:" msgstr "Opcions:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "U combina estas opcions:" @@ -5600,6 +6006,10 @@ msgstr "Unatra cuenta" msgid "Other..." msgstr "Unatro..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "L'equipo de moderación ha recibiu la denuncia." @@ -5608,7 +6018,7 @@ msgstr "L'equipo de moderación ha recibiu la denuncia." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Los nuestros moderadors han revisau denuncias y han decidiu desactivar lo tuyo acceso a los chats en Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Pachina no trobada" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Pachina no trobada" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Clau actualizada" msgid "Password updated!" msgstr "Clau actualizada!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Pausar" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Pausar video" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Personas" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Personas seguidas per @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Personas seguindo a @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "" @@ -5704,12 +6119,12 @@ msgstr "Clavar en inicio" msgid "Pin to Home" msgstr "Clavar en inicio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Clavar en o tuyo perfil" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Clavau" @@ -5718,7 +6133,7 @@ msgstr "Clavau" msgid "Pinned {0} to Home" msgstr "{0} clavau en Inicio" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Canals clavadas" @@ -5726,38 +6141,38 @@ msgstr "Canals clavadas" msgid "Pinned to your feeds" msgstr "Las tuyas canals clavadas" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Reproducir" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Reproducir {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Reproducir video" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Reproducir Video" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Reproduce u pausa lo GIF" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Reproduce u pausa lo video" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Reproducir GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Reproduce lo video" @@ -5765,12 +6180,16 @@ msgstr "Reproduce lo video" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Per favor, tría lo tuyo identificador." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Per favor, tría la tuya clau." @@ -5782,7 +6201,8 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Per favor, completa la verificación CAPTCHA." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Compreba que has escrito bien la tuya adreza de correu." @@ -5804,6 +6224,7 @@ msgstr "Escribe un nombre unico pa esta clau d'aplicación u fe servir una chene msgid "Please enter a valid code." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "" @@ -5812,7 +6233,11 @@ msgstr "" msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Per favor, escribe una parola, etiqueta, u frase valida pa silenciar" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "" #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Escribe lo tuyo correu electronico." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Escribe lo tuyo codigo d'invitación." @@ -5853,6 +6278,19 @@ msgstr "Per favor explica per qué creyes que esta etiqueta ye estada aplicada i msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Per favor explica per qué creyes que los tuyos chats son estaus deshabilitaus incorrectament" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "Tría un servicio de moderación" @@ -5870,9 +6308,9 @@ msgstr "Per favor, escribe como @{0}" msgid "Please verify your email" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Per favor, verifica lo tuyo email" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Politica" msgid "Porn" msgstr "Pornografía" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Publicar" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Publicar" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Publicar" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Publicar-lo tot" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Publicación per {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Publicación per {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Publicación eliminada" @@ -5919,11 +6362,14 @@ msgstr "Publicación eliminada" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "No s'ha puesto cargar la publicación. Compreba la connexión a internet y torna-lo a intentar." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "La publicación ye estada eliminada" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Publicación amagada" @@ -5937,11 +6383,11 @@ msgstr "Publicación amagada per parola silenciada" msgid "Post Hidden by You" msgstr "Publicación amagada per tu" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Achustes d'interacción d'a publicación" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Configuración d'interacción d'a publicación" @@ -5954,8 +6400,10 @@ msgstr "Idioma d'a publicación" msgid "Post Languages" msgstr "Idiomas d'a publicación" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Publicación no trobada" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Publicación desclavada" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Publicacions" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Las publicacions pueden estar silenciadas seguntes lo suyo texto, las suyas etiquetas u las dos cosas. Recomendamos privar parolas comuns que amaneixcan en muitas publicacions, ya que podría resultar que no s'amuestre garra publicación." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Publicacions amagadas" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Vinclo potencialment enganyoso" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Preferencias alzadas" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Presiona pa reintentar la connexión" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Presiona pa reintentar" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Preta pa veyer los seguidors d'esta cuenta que tamién sigues" @@ -6015,40 +6469,46 @@ msgstr "Imachen previa" msgid "Primary Language" msgstr "Idioma primario" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Priorizar los tuyos seguius" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Notificacions prioritarias" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Privacidat" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Privacidat y seguranza" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacidat y seguranza" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Politica de privacidat" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Procesando video..." @@ -6062,15 +6522,14 @@ msgstr "Procesando..." msgid "profile" msgstr "perfil" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Perfil" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Perfil actualizau" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Listas publicas y compartibles que se pueden fer servir pa chenerar canals." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "Codigo QR copiau a lo tuyo portafuellas!" @@ -6119,44 +6594,52 @@ msgstr "Lo codigo QR ha estau descargau!" msgid "QR code saved to your camera roll!" msgstr "Codigo QR alzau en o tuyo carret de fotos!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Citar una publicación" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "La publicación citada ha estau readjuntada" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "La publicación citada s'ha deseparau correctament" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Citas deshabilitadas" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Configuración de citas" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Citas" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Citas d'esta publicación" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Aleatorio (u la \"ruleta d'o publicador)" @@ -6164,8 +6647,8 @@ msgstr "Aleatorio (u la \"ruleta d'o publicador)" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "S'ha excediu lo limite de frecuencia - has mirau de cambiar lo tuyo identificador masiadas vegadas en un curto tiempo. Per favor, aguarda un minuto antes de tornar-lo a intentar." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Readchuntar cita" @@ -6177,30 +6660,42 @@ msgstr "" msgid "Reactivate your account" msgstr "Reactivar la tuya cuenta" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Amostrar-ne menos" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Amostrar-ne mas" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Leyer lo blog de Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Leyer las Politicas de Privacidat de Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Leyer los Termins y Condicions de Bluesky" @@ -6213,6 +6708,14 @@ msgstr "Motivo d'o recurso" msgid "Reason:" msgstr "Razón:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Busquedas Recients" @@ -6234,8 +6737,8 @@ msgstr "" msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Recargar conversacions" @@ -6244,10 +6747,9 @@ msgstr "Recargar conversacions" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Eliminar" @@ -6259,17 +6761,17 @@ msgstr "Eliminar a {displayName} d'o paquet inicial" msgid "Remove {historyItem}" msgstr "" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Borrar la cuenta" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Eliminar l'adchunto" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Eliminar l'avatar" @@ -6284,24 +6786,22 @@ msgstr "Eliminar la incrustación" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Eliminar la canal" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Eliminar la canal?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Sacar d'as mías canals" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Borrar de l'acceso rapido?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "Sacar d'as canals alzadas" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "Sacar d'as tuyas canals?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Eliminar la imachen" @@ -6332,12 +6831,8 @@ msgstr "Sacar parola silenciada d'a tuya lista" msgid "Remove profile" msgstr "Eliminar perfil" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Eliminar cita" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Eliminar republicación" @@ -6345,7 +6840,7 @@ msgstr "Eliminar republicación" msgid "Remove subtitle file" msgstr "Eliminar fichero de subtítol" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Sacar esta canal d'as tuyas canals alzadas" @@ -6364,11 +6859,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Eliminau per autor" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Eliminau per tu" @@ -6377,10 +6872,6 @@ msgstr "Eliminau per tu" msgid "Removed from list" msgstr "Eliminau d'a lista" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Eliminau d'as mías canals" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Eliminada d'as mías canals alzadas" @@ -6395,34 +6886,36 @@ msgstr "Eliminau d'as tuyas canals" msgid "Removed verification" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Borra la cita d'a publicación" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Reemplaza con descubrimiento" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Respuestas" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Respuestas deshabilitadas" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Las respuestas en esta publicación son deshabilitadas." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Responder" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Responder ({0, plural, one {# respuesta} other {# respuestas}})" @@ -6436,50 +6929,55 @@ msgstr "Respuesta amagada per l'autor d'o filo" msgid "Reply Hidden by You" msgstr "Respuesta amagada per tu" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Achustes de respuesta" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "La configuración de respuestas ye triada per l'autor d'o filo" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Orden d'as respuestas" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Responder a <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Responder a una publicación blocada" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Responder a una publicación" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Responder a tu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Visibilidat d'a respuesta actualizada" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "La respuesta s'ha amagau correctament" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Denunciar canal" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Denunciar mensache" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Denunciar publicación" @@ -6567,25 +7065,26 @@ msgstr "Denunciar este paquet d'inicio" msgid "Report this user" msgstr "Denunciar este usuario" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Republicar" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Republicar" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Republicar ({0, plural, one {# republicación} other {# republicacions}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Republicar u citar publicación" @@ -6594,26 +7093,38 @@ msgstr "Republicar u citar publicación" msgid "Reposted By" msgstr "Tornau a publicar per" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Tornau a publicar per {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Tornau a publicar per <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Tornau a publicar per tu" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Republicacions d'esta publicación" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" msgstr "" #: src/view/com/modals/ChangePassword.tsx:253 @@ -6621,8 +7132,8 @@ msgstr "" msgid "Request Code" msgstr "Solicitar codigo" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Requerir texto alternativo antes de publicar" @@ -6630,7 +7141,7 @@ msgstr "Requerir texto alternativo antes de publicar" msgid "Require an email code to sign in to your account." msgstr "Demanda una adreza de correu pa dentrar con la tuya cuenta." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Requeriu pa este furnidor" @@ -6642,10 +7153,6 @@ msgstr "Requeriu en a tuya rechión" msgid "Resend" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Reninviar correu" msgid "Resend Verification Email" msgstr "Reninviar correu de verificación" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Codigo de restablimiento" @@ -6667,8 +7180,8 @@ msgstr "Codigo de restablimiento" msgid "Reset Code" msgstr "Codigo de restablimiento" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Restablir l'estau d'incorporación" @@ -6687,21 +7200,23 @@ msgstr "Reintenta la zaguera acción, que presentó una error" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Reintentar" @@ -6721,19 +7236,19 @@ msgstr "Tornar ta la pachina d'inicio" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Tornar ta la pachina anterior" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Torna ta lo paso anterior" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Torna ta lo paso anterior" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Alzar" @@ -6762,15 +7276,13 @@ msgstr "Alzar" msgid "Save birthday" msgstr "Alzar aniversario" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Alzar cambios" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Alzar cambios" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Alzar codigo QR" msgid "Save to my feeds" msgstr "Alzar en as mías canals" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Canals alzadas" @@ -6802,18 +7314,14 @@ msgstr "Canals alzadas" msgid "Saved to your feeds" msgstr "Alzau en as tuyas canals" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Alza los cambios en o tuyo perfil" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Alza los achustes de retalle d'a imachen" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Di ola!" @@ -6826,16 +7334,16 @@ msgstr "Ciencia" msgid "Scroll to top" msgstr "Desplazar enta alto" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Buscar" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Mirar en as publicacions de @{0}" @@ -6861,7 +7369,7 @@ msgstr "Buscar \"{query}\"" msgid "Search for \"{searchText}\"" msgstr "Buscar \"{searchText}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Buscar canals que quieras sucherir a atros." @@ -6877,10 +7385,14 @@ msgstr "" msgid "Search for posts, users, or feeds" msgstr "Mira publicacions, usuarios u canals" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Buscar GIFs" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Mirar en as mías publicacions" @@ -6890,12 +7402,12 @@ msgstr "Mirar en as mías publicacions" msgid "Search posts" msgstr "Mirar en publicacions" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Buscar perfils" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Buscar en Tenor" @@ -6903,7 +7415,7 @@ msgstr "Buscar en Tenor" msgid "Search..." msgstr "Mirar..." -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Mira perfils" @@ -6912,10 +7424,6 @@ msgstr "Mira perfils" msgid "Security step required" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Se requiere un paso de seguranza" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "Veyer las publicacions sobre {tag}" @@ -6936,14 +7444,31 @@ msgstr "Veyer publicacions sobre #{tag} per usuario" msgid "See jobs at Bluesky" msgstr "Veyer emplegos en Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Veyer esta guía" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Control eslisant de busqueda. Fe servir las teclas de flecha mirar entabant y entazaga, y espacio pa reproducir/pausa" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Tría una color" @@ -6988,7 +7513,7 @@ msgstr "Tría d'una cuenta existent" msgid "Select GIF" msgstr "Triar GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Triar GIF \"{0}\"" @@ -6996,6 +7521,11 @@ msgstr "Triar GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "Tría per cuánto tiempo s'habría de silenciar esta parola." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Triar idioma..." @@ -7004,7 +7534,7 @@ msgstr "Triar idioma..." msgid "Select languages" msgstr "Triar idiomas" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "Triar un servicio de moderación" @@ -7045,12 +7575,12 @@ msgstr "Triar qué idioma usar en la interfaz d'usuario de l'aplicación." msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Tría en qué idiomas deseyas que sían las publicacions d'as tuyas canals. Si no'n trías garra, s'amostrarán en toz los idiomas." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Tría la tuya data de naixencia" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Tría los tuyos intereses d'as opcions contino" @@ -7058,7 +7588,11 @@ msgstr "Tría los tuyos intereses d'as opcions contino" msgid "Select your preferred language for translations in your feed." msgstr "Tría en qué idioma deseyas traducir las publicacions d'a tuya canal." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "Tría la opción {0} de {numItems}" @@ -7066,17 +7600,9 @@ msgstr "Tría la opción {0} de {numItems}" msgid "Send a neat website!" msgstr "Ninvia un puesto web interesant!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Ninviar correu de confirmación" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Ninviar correu" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Ninviar correu" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Ninviar comentarios" @@ -7095,7 +7621,7 @@ msgstr "Ninviar comentarios" msgid "Send message" msgstr "Ninviar mensache" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "" @@ -7114,20 +7640,20 @@ msgstr "Ninviar reporte" msgid "Send report to {0}" msgstr "Ninviar reporte a {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "Ninviar denuncia a {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Ninviar correu de verificación" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Ninviar vía mensache directo" @@ -7143,7 +7669,7 @@ msgstr "Adreza d'o servidor" msgid "Set app icon to {0}" msgstr "Estableix {0} como l'icono de l'aplicación" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Establir aniversario" @@ -7159,13 +7685,57 @@ msgstr "Configura la tuya cuenta" msgid "Sets email for password reset" msgstr "Estableix lo correu electronico pa restablir la clau" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Achustes" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "Comparte una historia chenial!" msgid "Share a fun fact!" msgstr "Comparte un dato curioso!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Compartir de totas trazas" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Compartir vinclo" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Compartir vinclo" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Finestra pa compartir vinclo" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "" @@ -7247,8 +7812,8 @@ msgstr "Compartir este paquet d'inicio" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Comparte este paquet d'inicio y aduya a las personas a unir-se a la tuya comunidat en Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "" msgid "Share your favorite feed!" msgstr "Comparte la tuya canal favorita!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Prebador de Preferencias Compartidas" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Comparte lo puesto web enlazau" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Veyer" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Veyer texto alternativo" @@ -7303,8 +7864,8 @@ msgstr "" msgid "Show hidden replies" msgstr "Amostrar respuestas amagadas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Amostrar menos como este" @@ -7312,55 +7873,63 @@ msgstr "Amostrar menos como este" msgid "Show list anyway" msgstr "Amostrar lista de totas trazas" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Veyer mas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Amostrar-ne mas como este" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Amostrar respuestas silenciadas" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Amostrar publicacions citadas" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Amostrar respuestas" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Amostrar las respuestas como" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Amostrar las respuestas como filos" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Amostrar respuestas de chent a qui sigues antes que las de demás" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Amostrar respuesta pa toz" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Amostrar republicacions" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Amostrar exemplos de publicacions en a canal \"Seguindo\"" @@ -7372,16 +7941,17 @@ msgstr "Amostrar advertencia" msgid "Show warning and filter from feeds" msgstr "Amostrar advertencia y filtrar d'as canals" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Amuestra información sobre cuán se va crear esta publicación" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "Amuestra atras cuentas a las cuals puez cambiar" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Amuestra lo conteniu" @@ -7390,14 +7960,15 @@ msgstr "Amuestra lo conteniu" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "Entrar con una cuenta que no ye en a lista" msgid "Sign in to Bluesky or create a new account" msgstr "Inicia sesión en Bluesky u crea una nueva cuenta" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Zarrar sesión" @@ -7444,8 +8020,8 @@ msgstr "Zarrar sesión" msgid "Sign Out" msgstr "Zarrar sesión" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Salir?" @@ -7459,12 +8035,12 @@ msgstr "Se requiere iniciar sesión" msgid "Signed in as @{0}" msgstr "Sesión iniciada como @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Cuentas semellants" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Blincar" @@ -7472,12 +8048,11 @@ msgstr "Blincar" msgid "Skip this flow" msgstr "Blincar este fluxo" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Mas chicot" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "" @@ -7490,11 +8065,11 @@ msgstr "Programación" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Belatras canals que podrían fer-te goyo" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Cualques personas pueden responder" @@ -7510,10 +8085,11 @@ msgstr "" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "Bella cosa no yera bien en os datos que yes mirando de denunciar. Contacta con o soporte." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "I ha habiu una error" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "I ha habiu una error, per favor intenta de nuevo" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "I ha habiu una error. Intenta de nuevo." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "I ha habiu una error!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "I ha habiu una error. Intenta-lo atra vegada." @@ -7539,20 +8118,23 @@ msgstr "I ha habiu una error. Intenta-lo atra vegada." msgid "Something wrong? Let us know." msgstr "Bella cosa va mal? Fe-nos-lo saber." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "La tuya sesión ha caducau. Torna a iniciar sesión." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Respuestas curtas" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Ordenar respuestas por" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Ordenar respuestas a la mesma publicación per:" @@ -7579,7 +8161,7 @@ msgstr "Spam; mencions u respuestas excesivas" msgid "Sports" msgstr "Esportes" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "" @@ -7601,9 +8183,9 @@ msgstr "Empecipia a anyadir chent!" msgid "Start chat with {displayName}" msgstr "Iniciar chat con {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Paquet d'inicio" @@ -7611,12 +8193,12 @@ msgstr "Paquet d'inicio" msgid "Starter pack by {0}" msgstr "Paquet d'inicio de {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Paquet d'inicio de <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Paquet d'inicio creau per tu" @@ -7638,19 +8220,21 @@ msgstr "Los paquez d'inicio te permiten compartir facilment las tuyas canals y p msgid "Status Page" msgstr "Pachina d'estau" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Paso {0} de {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Almagacenamiento limpio, te fa falta reiniciar l'aplicación agora." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Libro de cuentos" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Ninviar recurso" msgid "Submit Appeal" msgstr "Ninviar recurso" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "Ninviar denuncia" @@ -7676,10 +8260,14 @@ msgstr "Ninviar denuncia" msgid "Subscribe" msgstr "Subscribir-se" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Subscribi-te a @{0} pa usar estas etiquetas:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Suscribir-se a lo etiquetador" @@ -7692,8 +8280,12 @@ msgstr "Suscribir-se a este etiquetador" msgid "Subscribe to this list" msgstr "Suscribir-se a esta lista" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Exito!" @@ -7705,7 +8297,7 @@ msgstr "" msgid "Suggested Accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Sucheriu pa tu" @@ -7714,26 +8306,26 @@ msgstr "Sucheriu pa tu" msgid "Suggestive" msgstr "Suchestivo" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Soporte" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Cambiar cuentas" @@ -7742,24 +8334,24 @@ msgstr "Cambiar cuentas" msgid "Switch Account" msgstr "Cambiar a unatra cuenta" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Cambiar cuentas" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "Cambiar a {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Sistema" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Rechistro d'o sistema" @@ -7767,6 +8359,18 @@ msgstr "Rechistro d'o sistema" msgid "Tags only" msgstr "Nomás etiquetas" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Conta-nos un poquet mas" msgid "Terms" msgstr "Condicions" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Condicions de servicio" @@ -7848,10 +8454,6 @@ msgstr "Campo d'introducción de texto" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Gracias! Lo tuyo correu electronico ha estau verificau con exito." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Gracias. La tuya denuncia ha estau ninviada." @@ -7864,28 +8466,28 @@ msgstr "Gracias, has verificau la tuya adreza de correu electronico con exito. P msgid "That contains the following:" msgstr "Ixo contiene lo siguient:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Este identificador ya ye en uso." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "No s'ha puesto trobar ixe paquet d'inicio." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Ixo ye tot, amigos!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "Ixo ye tot!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "La cuenta podrá interactuar con tu dimpués de desblocar-la." @@ -7900,7 +8502,7 @@ msgstr "Se va a reiniciar l'aplicación" msgid "The author of this thread has hidden this reply." msgstr "L'autor d'este filo ha amagau esta respuesta." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "L'aplicación web de Bluesky" @@ -7920,10 +8522,6 @@ msgstr "La canal de Descubrir" msgid "The Discover feed now knows what you like" msgstr "La canal de Descubrir agora sabe lo que te fa goyo" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "" - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "La experiencia ye millor en l'aplicación. Descarga Bluesky agora y continaremos an lo deixés." @@ -7944,8 +8542,16 @@ msgstr "Las siguients etiquetas s'aplicoron a lo tuyo conteniu." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "Los achustes siguients serán usaus por defecto cuan se creyen nuevas publicacions. Puez editar las preferencias d'una publicación especifica en a finestra d'edición." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Ye posible que s'haiga borrau la publicación." @@ -7953,9 +8559,10 @@ msgstr "Ye posible que s'haiga borrau la publicación." msgid "The Privacy Policy has been moved to <0/>" msgstr "La Politica de privacidat s'ha tresladau a <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "Lo video triau ye mayor de 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "" #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "Las condicions de servicio s'han tresladau a" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "Lo codigo de verificación que has proporcionau ye invalido. Per favor, asegura-te d'haber utilizau lo vinclo de verificación correcto u solicita-ne un nuevo." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Tema" @@ -7990,14 +8597,14 @@ msgstr "Tema" msgid "There is no time limit for account deactivation, come back any time." msgstr "No i hai limite de tiempo pa la desactivación d'a cuenta, torna en atro momento." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "I ha habiu un problema en connectar-se a Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "I ha habiu un problema en contactar con o servidor" @@ -8006,17 +8613,12 @@ msgstr "I ha habiu un problema en contactar con o servidor" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "I ha habiu un problema en contactar con o servidor, compreba la tuya connexión y torna-lo a intentar." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "I ha habiu un problema en contactar con o tuyo servidor" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "I ha habiu un problema en obtener las notificacions. Toca aquí pa intentar de nuevo." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "I ha habiu un problema en obtener las publicacions. Toca aquí pa intentar de nuevo." @@ -8037,7 +8639,7 @@ msgstr "I ha habiu un problema en obtener las tuyas listas. Toca aquí pa intent msgid "There was an issue fetching your service info" msgstr "I ha habiu un problema trayendo la tuya información de servicio" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "I ha habiu un problema eliminando esta canal. Compreba la tuya connexión y torna-lo a intentar." @@ -8052,9 +8654,9 @@ msgstr "I ha habiu un problema en ninviar lo tuyo reporte. Compreba la tuya conn msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "I ha habiu un problema en actualizar las tuyas canals, compreba la tuya connexión y torna-lo a intentar." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "I ha habiu un problema en actualizar las tuyas canals, compreba la tuya msgid "There was an issue! {0}" msgstr "I ha habiu un problema {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "I ha habiu un problema {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "I ha habiu un problema. Per favor verifica la tuya connexión a internet y torna a intentar-lo." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "I ha habiu un problema inasperau en l'aplicación. Per favor, grita-nos si t'ha pasau esto!" @@ -8089,7 +8691,7 @@ msgstr "I ha habiu un problema inasperau en l'aplicación. Per favor, grita-nos msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "I hai habiu una tongada de nuevos usuarios en Bluesky! Activaremos la tuya cuenta malas que podamos." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Estes achustes nomás afectan a la canal \"Seguindo\"" @@ -8146,7 +8748,7 @@ msgstr "Este conteniu ye alochau per {0}. Quiers habilitar fichers multimedia ex msgid "This content is not available because one of the users involved has blocked the other." msgstr "Este conteniu no ye disponible perque un d'os usuarios involucraus ha blocau a l'atro." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Este conteniu no se puede veyer sin una cuenta de Bluesky." @@ -8158,6 +8760,10 @@ msgstr "Esta conversa ye con una cuenta eliminada u desactivada. Preta pa veyer msgid "This email is already associated with your account." msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Esta función ye en beta. Puez leyer mas sobre la exportación de repositorios en <0>esta publicación d'o blog." @@ -8170,7 +8776,7 @@ msgstr "" msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Esta caracteristica no ye disponible cuan s'emplega una clau d'aplicación. Dentra con a tuya clau principal." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Esta canal ye recibindo muito tráfico y no ye disponible temporalment. Torna a intentar-lo mas enta debant." @@ -8209,11 +8815,11 @@ msgstr "Esta etiqueta ye estada aplicada per l'autor." msgid "This label was applied by you." msgstr "Esta etiqueta ye estada aplicada per tu." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Este etiquetador no ha declarau qué etiquetas publica y puede que no sía activo." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Este vinclo te leva a lo siguient puesto web:" @@ -8233,29 +8839,28 @@ msgstr "Esta lista ye vueda." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Este servicio de moderación no ye disponible. Consulta mas detalles contino. Si lo problema persiste, contacta-nos." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Esta publicación diz haber estau creada lo <0>{0}, pero la hemos vista en Bluesky lo <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Esta publicación tiene un tipo de threadgate desconoixiu. Ye posible que la tuya aplicación siga obsoleta." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Esta publicación ye estada eliminada." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Esta publicación nomás ye visible pa usuarios rechistraus. No será visible pa personas no rechistradas." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Esta publicación será amagada d'as canals y filos. Esto no se puede desfer." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "L'autor d'esta publicación ha deshabilitau las citas de publicacions." @@ -8263,11 +8868,11 @@ msgstr "L'autor d'esta publicación ha deshabilitau las citas de publicacions." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Este perfil nomás ye visible pa usuarios rechistraus. No será visible pa personas no rechistradas." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Esta respuesta será clasificada en una sección amagada a la fin d'o tuyo filo y silenciará las notificacions pa respuestas posteriors, tanto pa tu como pa atros." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Este servicio no ha proporcionau termins de servicio ni una politica de privacidat." @@ -8275,6 +8880,10 @@ msgstr "Este servicio no ha proporcionau termins de servicio ni una politica de msgid "This should create a domain record at:" msgstr "Esto habría de crear un rechistro de dominio en:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" @@ -8316,16 +8925,18 @@ msgstr "Este usuario no sigue a dengún." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Esto eliminará \"{0}\" d'as tuyas parolas silenciadas. Siempre puez anyadir-lo de nuevo mas enta debant." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Esto eliminará @{0} d'a lista d'acceso rapido." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Esto eliminará la tuya publicación d'esta cita pa toz los usuarios y la reemplazará con un marcador de posición." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Opcions de filos" @@ -8334,24 +8945,27 @@ msgstr "Opcions de filos" msgid "Thread preferences" msgstr "Preferencias de filos" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Preferencias de filos" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "En filos" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Modo con filos" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Preferencias de filos" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "Tiempo restant: {0, plural, one {# segundo} other {# segundos}}" @@ -8376,42 +8990,56 @@ msgstr "A quí te faría goyo de ninviar este reporte?" msgid "Today" msgstr "Hue" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Alternar lo menú desplegable" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Alternar habilitar u deshabilitar conteniu pa adultos" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Activa/desactiva lo son" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Alto" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Tema" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Traducir" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Tendencia" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Vídeos populars" @@ -8428,14 +9056,10 @@ msgstr "Tornar a intentar" msgid "TV" msgstr "Televisión" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Autorización con dos factors (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Escribe lo tuyo identificador" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Escribe lo tuyo mensache aquí" @@ -8453,7 +9077,7 @@ msgstr "No s'ha puesto connectar. Compreba la tuya connexión d'internet y torna #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "No se puede contactar con o tuyo furnidor. Compreba la tuya connexión a msgid "Unable to delete" msgstr "No se puede eliminar" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Desblocar" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Desblocar" @@ -8486,7 +9126,7 @@ msgstr "Desblocar" msgid "Unblock account" msgstr "Desblocar cuenta" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Desblocar cuenta?" @@ -8495,13 +9135,13 @@ msgstr "Desblocar cuenta?" msgid "Unblock list" msgstr "" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Desfer republicación" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Desfer la republicación ({0, plural, one {# republicación} other {# republicaciones}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Deixar de seguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Deixar de seguir a {0}" @@ -8523,7 +9163,7 @@ msgstr "Deixar de seguir esta cuenta" msgid "Unfollows the user" msgstr "Deixa de seguir a l'usuario" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Garra d'os tuyos etiquetadors subscritos soporta este tipo de denuncia." @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "Ya no me fa goyo" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Ya no me fa goyo ({0, plural, one {# me-fa-goyo} other {# me-fa-goyos}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Deixar de silenciar" @@ -8555,8 +9195,8 @@ msgstr "Deixar de silenciar" msgid "Unmute {tag}" msgstr "Deixar de silenciar {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Deixar de silenciar conversación" msgid "Unmute list" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Deixar de silenciar filo" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Deixar de silenciar video" @@ -8597,8 +9237,8 @@ msgstr "" msgid "Unpin from home" msgstr "Desclavar d'inicio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Desclavar d'o perfil" @@ -8614,8 +9254,8 @@ msgstr "{0} ye desclavau d'Inicio" msgid "Unpinned from your feeds" msgstr "Desclavau d'as tuyas canals" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "" @@ -8636,7 +9276,7 @@ msgstr "Dar-se de baixa d'este etiquetador" msgid "Unsubscribed from list" msgstr "Dau de baixa d'a lista" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Tipo de video no soportau" @@ -8662,8 +9302,8 @@ msgstr "Actualizar <0>{displayName} en Listas" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "" @@ -8676,17 +9316,17 @@ msgstr "Actualizar a {domain}" msgid "Update your email" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Ha fallau l'actualización de l'adchunto d'a cita" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Ha fallau l'actualización d'a visibilidat d'a respuesta" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Actualizando..." @@ -8698,20 +9338,20 @@ msgstr "Puya una foto en cuenta" msgid "Upload a text file to:" msgstr "Carga un fichero de texto en:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Puyar dende la camera" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Puyar dende los tuyos fichers" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Puyar dende la biblioteca" msgid "Uploading images..." msgstr "Cargando imáchens..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Cargando thumbnail d'o vinclo..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Cargando video..." @@ -8761,6 +9401,10 @@ msgstr "Usar recomendaus" msgid "Use this to sign in to the other app along with your handle." msgstr "Fe-lo servir pa iniciar sesión en l'atra app chunto a lo tuyo identificador." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Usau per:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Lista d'usuarios actualizada" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Nombre d'usuario u adreza de correu electronico" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "usuarios seguius per <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "usuarios que siguen a <0>@{0}" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Usuarios que sigo" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Usuarios en \"{0}\"" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Usuarios que sigues" @@ -8846,11 +9502,11 @@ msgstr "Valor:" msgid "Verification failed, please try again." msgstr "" -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "" @@ -8870,8 +9526,15 @@ msgstr "" msgid "Verify account" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "" @@ -8880,21 +9543,20 @@ msgstr "" msgid "Verify DNS Record" msgstr "Verificar rechistro DNS" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Finestra de verificación de correu electronico" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Verificar fichero de texto" msgid "Verify this account?" msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Compreba lo tuyo correu" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Verifica lo tuyo correu electronico" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Versión {appVersion}" +msgid "Version {0}" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Video" @@ -8928,7 +9598,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "Lo video no s'ha puesto procesar" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Canal de video" @@ -8942,15 +9612,15 @@ msgstr "Video de {0}: {text}" msgid "Video Games" msgstr "Videojuegos" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Lo video ye en pausa" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Lo video se ye reproducindo" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Video no trobau." @@ -8958,11 +9628,11 @@ msgstr "Video no trobau." msgid "Video settings" msgstr "Configuración d'o video" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Video cargau" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Video: {0}" @@ -8979,11 +9649,11 @@ msgstr "" msgid "View {0}'s avatar" msgstr "Veyer l'avatar de {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Veyer lo perfil de {0}" @@ -8991,7 +9661,7 @@ msgstr "Veyer lo perfil de {0}" msgid "View {displayName}'s profile" msgstr "Veyer lo perfil de {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Veyer lo perfil de l'usuario blocau" @@ -9009,7 +9679,6 @@ msgstr "Veyer dentrada de depuración" msgid "View details" msgstr "Veyer detalles" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Veyer mas detalles sobre cómo reportar una violación de Dreitos d'Autor" @@ -9022,23 +9691,23 @@ msgstr "Veyer filo completo" msgid "View information about these labels" msgstr "Veyer información sobre estas etiquetas" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Veyer mas" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Veyer perfil" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Veyer l'avatar" @@ -9054,28 +9723,28 @@ msgstr "" msgid "View users who like this feed" msgstr "Veyer usuarios a qui les fa goyo esta canal" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Mirar lo video" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Veyer las tuyas cuentas blocadas" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "Veyer la configuración d'as interaccions per defecto en as tuyas publicacions" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Veyer las tuyas canals y explorar mas" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Veyer las tuyas listas de moderación" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Veyer las tuyas cuentas silenciadas" @@ -9083,8 +9752,8 @@ msgstr "Veyer las tuyas cuentas silenciadas" msgid "View your verifications" msgstr "" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Veyer la imachen completa" @@ -9092,16 +9761,20 @@ msgstr "Veyer la imachen completa" msgid "Views video in immersive mode" msgstr "Veyer lo video en o modo immersivo" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "Visitar lo puesto" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Volumen" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Advertir de conteniu y filtrar d'as canals" msgid "Watch now" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "" + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "No hemos puesto trobar resultaus pa ixe hashtag." @@ -9128,7 +9809,7 @@ msgstr "No hemos puesto trobar resultaus pa ixe hashtag." msgid "We couldn't find any results for that topic." msgstr "No hemos puesto trobar resultaus pa este tema." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "No hemos puesto cargar esta conversación" @@ -9136,6 +9817,10 @@ msgstr "No hemos puesto cargar esta conversación" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Estimamos {estimatedTime} dica que la tuya cuenta sía lista." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Hemos ninviau unatro correu electronico de verificación a <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "Esperemos que lo pases bien. Recuerda, Bluesky ye:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "S'han acabau las publicacions d'os tuyos seguius. Aquí ye la zaguera de <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "No hemos puesto determinar si tiens permiso pa puyar videos. Per favor, torna a intentar-lo. xxxxxxxxxxxxxxxxxxxxxxxxxx" @@ -9164,10 +9849,14 @@ msgstr "No hemos puesto determinar si tiens permiso pa puyar videos. Per favor, msgid "We were unable to load your birth date preferences. Please try again." msgstr "No hemos puesto cargar las tuyas preferencias de data de naixencia. Per favor, intenta de nuevo." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "No hemos puesto cargar los tuyos etiquetadors configuraus en este momento." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "No hemos puesto connectar-nos. Per favor, intenta de nuevo pa continar configurando la tuya cuenta. Si sigue fallando, puez omitir este proceso." @@ -9176,7 +9865,7 @@ msgstr "No hemos puesto connectar-nos. Per favor, intenta de nuevo pa continar c msgid "We will let you know when your account is ready." msgstr "T'informaremos cuan la tuya cuenta sía lista." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -9184,6 +9873,22 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "Usaremos esto pa aduyar a personalizar la tuya experiencia." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Somos tenendo problemas de ret, intenta de nuevo" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Ye nuestro placer tener-te aquí!" @@ -9205,15 +9910,15 @@ msgstr "Vai, no hemos puesto resolver esta lista. Si esto persiste, per favor co msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Vai, pero no hemos puesto cargar las tuyas parolas silenciadas en este momento. Per favor, intenta de nuevo." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Vai, no s'ha puesto completar la tuya busqueda. Torna-lo a intentar uns minutos." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Vai! La publicación a la cual yes respondendo ha estau eliminada." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Vai! No trobamos la pachina que buscabas." @@ -9222,6 +9927,26 @@ msgstr "Vai! No trobamos la pachina que buscabas." msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Vai! Nomás puez subscribir-te a vinte etiquetadors, y has alcanzau lo tuyo limite de vinte." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Bienveniu de nuevo!" @@ -9240,7 +9965,7 @@ msgstr "Cómo quiers clamar a lo tuyo paquet d'inicio?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Qué fas?" @@ -9256,11 +9981,11 @@ msgstr "En qué idioma ye esta publicación?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Qué idiomas te faría goyo veyer en as tuyas canals?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Quí puede interactuar con esta publicación?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Quí puede responder" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Vai!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "Vai! No s'han puesto cargar los videos populars." @@ -9322,12 +10047,12 @@ msgstr "Per qué creyes que este usuario ha d'estar revisau?" msgid "Write a message" msgstr "Escribe un mensache" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Redacta una publicación" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Redacta una respuesta" @@ -9358,11 +10083,11 @@ msgstr "Sí, desactivar" msgid "Yes, delete this starter pack" msgstr "Sí, eliminar este paquet d'inicio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Sí, deseparar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Sí, amagar" @@ -9378,6 +10103,10 @@ msgstr "Ahiere" msgid "You" msgstr "Tu" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "" @@ -9386,6 +10115,10 @@ msgstr "" msgid "You are creating an account on" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Yes en ringlera." @@ -9403,7 +10136,7 @@ msgstr "" msgid "You are not allowed to go live" msgstr "" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "No tiens permiso pa puyar videos." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "" @@ -9441,10 +10173,18 @@ msgstr "Tamién puez descubrir nuevas canals personalizadas pa seguir." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Tamién puez desactivar temporalment la tuya cuenta y reactivar-la en cualsequier momento." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Puez continar las conversacions en curso independientment d'a configuración que tríes." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Agora puez iniciar sesión con a tuya nueva clau." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Puez reactivar la tuya cuenta pa continar iniciando sesión. Lo tuyo perfil y publicacions serán visibles pa atros usuarios." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "Puez establir la tuya configuración per defecto en as interaccions en <0>Configuración→ Moderación→ Configuración d'interaccions." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Puez actualizar-lo mas enta debant dende la tuya configuración." @@ -9472,7 +10212,7 @@ msgstr "No tiens garra seguidor." msgid "You don't follow any users who follow @{name}." msgstr "No sigues a garra usuario que sigue a @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "" @@ -9480,15 +10220,15 @@ msgstr "" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Encara no tiens garra codigo d'invitación! Te'n ninviaremos belún cuan leves un poquet mas de tiempo en Bluesky." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "No tiens garra canal clavada." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "No tiens garra canal alzada." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Has blocau a l'autor u has estau blocau per l'autor." @@ -9502,6 +10242,10 @@ msgstr "Has blocau a este usuario" msgid "You have blocked this user. You cannot view their content." msgstr "Has blocau a este usuario. No puez veyer lo suyo conteniu." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Has silenciau esta cuenta." msgid "You have muted this user" msgstr "Has silenciau esta cuenta" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "No tiens garra conversacion. Encomienza-ne una!" @@ -9547,7 +10291,7 @@ msgstr "Encara no has blocau garra cuenta. Pa blocar una cuenta, veye a lo suyo msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Encara no has silenciau garra cuenta. Pa silenciar una cuenta, veye a lo suyo perfil y tría \"Silenciar cuenta\" en o menú d'a suya cuenta." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Has arribau a la fin" @@ -9572,6 +10316,10 @@ msgstr "Encara no has silenciau garra parola u etiqueta" msgid "You hid this reply." msgstr "Has amagau esta respuesta." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Puez apelar etiquetas no propias si creyes que son estadas mesas per error." @@ -9592,7 +10340,7 @@ msgstr "Nomás puez anyadir dica 3 canals" msgid "You may only select up to 4 images" msgstr "No puez triar mas de 4 imachens" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "" @@ -9600,6 +10348,14 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Has de seguir a lo menos a siet personas mas pa chenerar un paquet d'inicio." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Has d'atorgar acceso a la tuya biblioteca de fotos pa alzar un codigo QR" @@ -9608,6 +10364,11 @@ msgstr "Has d'atorgar acceso a la tuya biblioteca de fotos pa alzar un codigo QR msgid "You must select at least one labeler for a report" msgstr "Has de triar a lo menos un etiquetador pa un informe" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "" @@ -9616,7 +10377,7 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "Dinantes hebas desactivau a @{0}." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "" @@ -9628,16 +10389,20 @@ msgstr "" msgid "You reacted {0} to {1}" msgstr "" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Saldrás de totas las tuyas cuentas." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Ya no recibirás notificacions d'este filo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Agora recibirás notificacions d'este filo" @@ -9657,11 +10422,11 @@ msgstr "Tu: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Tu: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Malas que remates de crear la tuya cuenta podrás seguir usuarios y canals sucheridas!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Prencipiarás a seguir a los usuarios sucherius malas que remates de crear la tuya cuenta!" @@ -9673,9 +10438,9 @@ msgstr "Prencipiarás a seguir a estas personas y a {0} mas" msgid "You'll follow these people right away" msgstr "Prencipiarás a seguir a estas personas a l'inte" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Recibirás un correu electronico en <0>{0} pa verificar que yes tu." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "Has triau amagar una parola u etiqueta endentro d'esta publicación." msgid "You've found some people to follow" msgstr "Has trobau cualques persona a qui seguir" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Has harribau a la fin d'a tuya canal! Troba mas cuentas pa seguir." @@ -9711,19 +10480,23 @@ msgstr "Has harribau a la fin d'a tuya canal! Troba mas cuentas pa seguir." msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Has alcanzau lo tuyo limite diario de carga de videos (masiaus bytes)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Has alcanzau lo tuyo limite diario de carga de videos (masiaus videos)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Ya has visto toz los videos que i heba. Y si te descansas una mica?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "La tuya cuenta" @@ -9735,7 +10508,7 @@ msgstr "La tuya cuenta ye estada eliminada" msgid "Your account has been suspended" msgstr "La tuya cuenta ye estada suspendida" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "La tuya cuenta encara no tiene prou antiguidat como pa puyar videos. Torna a intentar-lo mas enta debant." @@ -9751,11 +10524,11 @@ msgstr "La tuya cuenta ha trencau las <0>las Condicions de servicio de Bluesky S msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "Hemos recibiu lo tuyo recurso. Si s'acepta, t'avisaremos per correu electronico." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "La tuya data de naixencia" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Lo tuyo navegador no soporta este formato de video. Per favor intenta-lo con un navegador diferent." @@ -9771,13 +10544,15 @@ msgstr "" msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Lo tuyo identificador actual <0>{0} quedará automaticament reservau pa tu. Puez tornar-ie en cualsequier momento dende esta cuenta." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Lo tuyo correu electronico pareixe no estar valido." @@ -9786,15 +10561,11 @@ msgstr "Lo tuyo correu electronico pareixe no estar valido." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Lo tuyo correu electronico encara no ha estau comprebau. Per la tuya seguranza, recomendamos que lo comprebes." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "Lo tuyo primer \"me fa goyo\"!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "Los tuyos seguidors" @@ -9806,19 +10577,15 @@ msgstr "La tuya canal de Seguindo ye vueda! Sigue a mas usuarios pa veyer las su msgid "Your full handle will be <0>@{0}" msgstr "Lo tuyo identificador completo será <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "Lo tuyo nombre d'usuario completo será <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "" @@ -9835,15 +10602,15 @@ msgstr "Las tuyas parolas silenciadas" msgid "Your password has been changed successfully!" msgstr "S'ha cambiau con exito la tuya clau!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "La tuya ha de tener a lo menos 8 carácters." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "S'ha publicau la tuya publicación" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "S'han publicau las tuyas publicacions" @@ -9851,15 +10618,19 @@ msgstr "S'han publicau las tuyas publicacions" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Las tuyas publicacions, a qué le das \"me fa goyo\" y a quí blocas son publicos. Dengún puede veyer a qui silencias." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Lo tuyo perfil, publicacions, canals y listas no tornarán a estar visibles pa atros usuarios de Bluesky. Puez reactivar la tuya cuenta dentrando-ie en cualsequier momento." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Respuesta publicada" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "La tuya denuncia se ninviará a <0>{0}." @@ -9867,7 +10638,7 @@ msgstr "La tuya denuncia se ninviará a <0>{0}." msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Lo tuyo reporte s'ha ninviau a lo servicio de moderación de Bluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "" diff --git a/src/locale/locales/ar/messages.po b/src/locale/locales/ar/messages.po new file mode 100644 index 0000000000..2260b55976 --- /dev/null +++ b/src/locale/locales/ar/messages.po @@ -0,0 +1,10648 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-11-05 16:01-0800\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: ar_SA\n" +"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-08-12 00:28\n" +"Last-Translator: \n" +"Language-Team: Arabic, Saudi Arabia\n" +"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" +"X-Crowdin-Project: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: ar-SA\n" +"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n" +"X-Crowdin-File-ID: 11\n" + +#: src/components/ProgressGuide/FollowDialog.tsx:516 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127 +msgid "(active)" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:160 +msgid "(contains embedded content)" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:69 +msgid "(no email)" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:169 +msgid "{0, plural, one {# day} other {# days}}" +msgstr "" + +#: src/screens/Profile/ProfileFollowers.tsx:40 +msgid "{0, plural, one {# follower} other {# followers}}" +msgstr "" + +#: src/screens/Profile/ProfileFollows.tsx:40 +msgid "{0, plural, one {# following} other {# following}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:159 +msgid "{0, plural, one {# hour} other {# hours}}" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:53 +msgid "{0, plural, one {# label has} other {# labels have}} been placed on this account" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:62 +msgid "{0, plural, one {# label has} other {# labels have}} been placed on this content" +msgstr "" + +#: src/screens/Post/PostLikedBy.tsx:41 +msgid "{0, plural, one {# like} other {# likes}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:149 +msgid "{0, plural, one {# minute} other {# minutes}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:180 +msgid "{0, plural, one {# month} other {# months}}" +msgstr "" + +#: src/screens/Post/PostQuotes.tsx:41 +msgid "{0, plural, one {# quote} other {# quotes}}" +msgstr "" + +#: src/screens/Post/PostRepostedBy.tsx:41 +msgid "{0, plural, one {# repost} other {# reposts}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:139 +msgid "{0, plural, one {# second} other {# seconds}}" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 +msgid "{0, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#. How many months have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:182 +msgid "{0, plural, one {#mo} other {#mo}}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:444 +#: src/screens/Profile/Header/Metrics.tsx:22 +msgid "{0, plural, one {follower} other {followers}}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/screens/Profile/Header/Metrics.tsx:26 +msgid "{0, plural, one {following} other {following}}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 +msgid "{0, plural, one {like} other {likes}}" +msgstr "" + +#: src/screens/Profile/Header/Metrics.tsx:58 +msgid "{0, plural, one {post} other {posts}}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 +msgid "{0, plural, one {quote} other {quotes}}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 +msgid "{0, plural, one {repost} other {reposts}}" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82 +msgid "{0, plural, other {{1} posts}}" +msgstr "" + +#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack +#: src/screens/StarterPack/StarterPackScreen.tsx:490 +msgid "{0, plural, other {# people have}} used this starter pack!" +msgstr "" + +#. Pattern: {wordValue} in tags +#: src/components/dialogs/MutedWords.tsx:475 +msgid "{0} <0>in <1>tags" +msgstr "" + +#. Pattern: {wordValue} in text, tags +#: src/components/dialogs/MutedWords.tsx:465 +msgid "{0} <0>in <1>text & tags" +msgstr "" + +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + +#: src/components/live/LiveStatusDialog.tsx:68 +msgid "{0} is live" +msgstr "" + +#: src/components/live/queries.ts:39 +msgid "{0} is not a valid URL" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 +msgid "{0} joined this week" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 +msgid "{0} of {1}" +msgstr "" + +#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field +#: src/screens/StarterPack/Wizard/StepDetails.tsx:55 +msgid "{0} out of 50" +msgstr "" + +#: src/components/dms/MessageItem.tsx:143 +msgid "{0} reacted {1}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:231 +msgid "{0} reacted {1} to {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 +msgid "{0}'s avatar" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:74 +msgid "{0}'s favorite feeds and people - join me!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:46 +msgid "{0}'s starter pack" +msgstr "" + +#. How many days have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:171 +msgid "{0}d" +msgstr "" + +#. How many hours have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:161 +msgid "{0}h" +msgstr "" + +#. How many minutes have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:151 +msgid "{0}m" +msgstr "" + +#. How many seconds have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:141 +msgid "{0}s" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:402 +msgid "{count, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#: src/lib/generate-starterpack.ts:111 +#: src/screens/StarterPack/Wizard/index.tsx:184 +msgid "{displayName}'s Starter Pack" +msgstr "" + +#: src/screens/SignupQueued.tsx:216 +msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" +msgstr "" + +#: src/screens/SignupQueued.tsx:222 +msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:353 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:379 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:272 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:484 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:457 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:296 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:508 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:403 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:432 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:365 +msgid "{firstAuthorLink} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:342 +msgid "{firstAuthorLink} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:391 +msgid "{firstAuthorLink} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:284 +msgid "{firstAuthorLink} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:496 +msgid "{firstAuthorLink} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:469 +msgid "{firstAuthorLink} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:308 +msgid "{firstAuthorLink} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:520 +msgid "{firstAuthorLink} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:415 +msgid "{firstAuthorLink} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:444 +msgid "{firstAuthorLink} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:346 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:372 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:265 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:477 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:450 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:289 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:501 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:396 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:425 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:351 +msgid "{firstAuthorName} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:341 +msgid "{firstAuthorName} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:377 +msgid "{firstAuthorName} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:270 +msgid "{firstAuthorName} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:482 +msgid "{firstAuthorName} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:455 +msgid "{firstAuthorName} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:294 +msgid "{firstAuthorName} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:506 +msgid "{firstAuthorName} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:401 +msgid "{firstAuthorName} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:430 +msgid "{firstAuthorName} verified you" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:572 +msgid "{following} following" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:413 +msgid "{handle} can't be messaged" +msgstr "" + +#: src/components/live/utils.ts:15 +msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" +msgstr "" + +#: src/components/live/utils.ts:19 +msgid "{hours, plural, one {# hour} other {# hours}}" +msgstr "" + +#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack +#: src/components/StarterPack/StarterPackCard.tsx:101 +msgid "{joinedAllTimeCount, plural, other {# users have}} joined!" +msgstr "" + +#: src/components/live/utils.ts:10 +msgid "{minutes, plural, one {# minute} other {# minutes}}" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 +msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#: src/components/NewskieDialog.tsx:116 +msgid "{profileName} joined Bluesky {0} ago" +msgstr "" + +#: src/components/NewskieDialog.tsx:111 +msgid "{profileName} joined Bluesky using a starter pack {0} ago" +msgstr "" + +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111 +msgid "{rank}." +msgstr "" + +#. trending topic time spent trending. should be as short as possible to fit in a pill +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206 +msgid "{type}h ago" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:60 +msgid "{userName} is a trusted verifier" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:67 +msgid "{userName} is verified" +msgstr "" + +#. Possessive, meaning "the verifications of {userName}" +#: src/components/verification/VerificationsDialog.tsx:69 +msgid "{userName}'s verifications" +msgstr "" + +#. Indicates the number of additional profiles are in the Starter Pack e.g. +12 +#: src/screens/Search/components/StarterPackCard.tsx:249 +msgid "+{computedTotal}" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:488 +msgctxt "profiles" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:541 +msgctxt "feeds" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#: src/view/shell/Drawer.tsx:116 +msgid "<0>{0} {1, plural, one {follower} other {followers}}" +msgstr "" + +#: src/view/shell/Drawer.tsx:127 +msgid "<0>{0} {1, plural, one {following} other {following}}" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:529 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:522 +msgid "<0>{0} is included in your starter pack" +msgstr "" + +#: src/components/WhoCanReply.tsx:319 +msgid "<0>{0} members" +msgstr "" + +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:479 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + +#: src/screens/Profile/Header/Handle.tsx:53 +msgid "⚠Invalid Handle" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:193 +msgid "24 hours" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:268 +msgid "2FA Confirmation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:232 +msgid "30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:217 +msgid "7 days" +msgstr "" + +#. If last message does not contain text, fall back to "{user} reacted to {a message}" +#: src/screens/Messages/components/ChatListItem.tsx:210 +msgid "a message" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91 +msgid "A new form of verification" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#: src/Navigation.tsx:523 +#: src/screens/Settings/AboutSettings.tsx:75 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 +msgid "About" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/RequestButtons.tsx:259 +msgid "Accept" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:249 +msgid "Accept chat request" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/RequestListItem.tsx:42 +msgid "Accept Request" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 +msgid "Accessibility" +msgstr "" + +#: src/Navigation.tsx:382 +msgid "Accessibility Settings" +msgstr "" + +#: src/Navigation.tsx:398 +#: src/screens/Login/LoginForm.tsx:194 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 +msgid "Account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/view/com/profile/ProfileMenu.tsx:158 +msgctxt "toast" +msgid "Account blocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:171 +msgctxt "toast" +msgid "Account followed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 +#: src/view/com/profile/ProfileMenu.tsx:134 +msgctxt "toast" +msgid "Account muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:103 +#: src/lib/moderation/useModerationCauseDescription.ts:98 +msgid "Account Muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:89 +msgid "Account Muted by List" +msgstr "" + +#: src/screens/Settings/Settings.tsx:624 +msgid "Account options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:660 +msgid "Account removed from quick access" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128 +#: src/view/com/profile/ProfileMenu.tsx:148 +msgctxt "toast" +msgid "Account unblocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:183 +msgctxt "toast" +msgid "Account unfollowed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 +#: src/view/com/profile/ProfileMenu.tsx:124 +msgctxt "toast" +msgid "Account unmuted" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:96 +msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 +#: src/components/dialogs/MutedWords.tsx:328 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +msgid "Add" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:572 +msgid "Add {0} more to continue" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Add {displayName} to starter pack" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:107 +#: src/view/com/composer/labels/LabelsBtn.tsx:112 +msgid "Add a content warning" +msgstr "" + +#: src/components/live/GoLiveDialog.tsx:101 +msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event." +msgstr "" + +#: src/view/screens/ProfileList.tsx:924 +#: src/view/screens/ProfileList.tsx:942 +msgid "Add a user to this list" +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:55 +#: src/screens/Deactivated.tsx:192 +msgid "Add account" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:210 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 +msgid "Add alt text" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +msgid "Add alt text (optional)" +msgstr "" + +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 +msgid "Add another account" +msgstr "" + +#: src/view/com/composer/Composer.tsx:776 +msgid "Add another post" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 +msgid "Add app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:75 +#: src/screens/Settings/AppPasswords.tsx:83 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:111 +msgid "Add App Password" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.web.tsx:35 +msgid "Add emoji reaction" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 +msgid "Add more details (optional)" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:321 +msgid "Add mute word with chosen settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:112 +msgid "Add muted words and tags" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1340 +msgid "Add new post" +msgstr "" + +#: src/view/screens/ProfileList.tsx:932 +#: src/view/screens/ProfileList.tsx:950 +msgid "Add people" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79 +msgid "Add people to list" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:55 +msgid "Add Reaction" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:99 +msgid "Add recommended feeds" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:510 +msgid "Add some feeds to your starter pack!" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:41 +msgid "Add the default feed of only people you follow" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:406 +msgid "Add the following DNS record to your domain:" +msgstr "" + +#: src/components/FeedCard.tsx:305 +msgid "Add this feed to your feeds" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:305 +#: src/view/com/profile/ProfileMenu.tsx:308 +msgid "Add to lists" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 +msgid "Add user to list" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 +msgid "Added to list" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:421 +msgid "Additional details (limit 300 characters)" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:159 +msgid "Adult" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:116 +#: src/lib/moderation/useGlobalLabelStrings.ts:34 +#: src/lib/moderation/useModerationCauseDescription.ts:148 +#: src/view/com/composer/labels/LabelsBtn.tsx:127 +msgid "Adult Content" +msgstr "" + +#: src/screens/Moderation/index.tsx:404 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:247 +msgid "Adult content is disabled." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:138 +#: src/view/com/composer/labels/LabelsBtn.tsx:196 +msgid "Adult Content labels" +msgstr "" + +#: src/screens/Moderation/index.tsx:454 +msgid "Advanced" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +msgid "alice@example.com" +msgstr "" + +#: src/view/screens/Notifications.tsx:88 +msgid "All" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:386 +msgid "All accounts have been followed!" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:64 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:99 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:101 +msgid "All languages" +msgstr "" + +#: src/view/screens/Feeds.tsx:707 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:146 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:153 +msgid "Allow access to your direct messages" +msgstr "" + +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 +msgid "Allow new messages from" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 +msgid "Allow quote posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +msgid "Allow replies from:" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:200 +msgid "Allows access to direct messages" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/view/com/modals/ChangePassword.tsx:182 +msgid "Already have a code?" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:43 +msgid "Already signed in as @{0}" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:188 +msgid "ALT" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:54 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 +#: src/view/com/composer/videos/SubtitleDialog.tsx:40 +#: src/view/com/composer/videos/SubtitleDialog.tsx:55 +#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:105 +msgid "Alt text" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 +msgid "Alt Text" +msgstr "" + +#: src/view/com/composer/photos/Gallery.tsx:260 +msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93 +msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:266 +msgid "An error has occurred" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 +msgid "An error occurred" +msgstr "" + +#: src/view/com/composer/state/video.ts:400 +msgid "An error occurred while compressing the video." +msgstr "" + +#: src/state/queries/explore-feed-previews.tsx:173 +msgid "An error occurred while fetching the feed." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 +msgid "An error occurred while generating your starter pack. Want to try again?" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 +msgid "An error occurred while loading the video. Please try again later." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 +msgid "An error occurred while loading the video. Please try again." +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:72 +msgid "An error occurred while saving the QR code!" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:63 +msgid "An error occurred while selecting the video" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:374 +msgid "An error occurred while trying to follow all" +msgstr "" + +#: src/view/com/composer/state/video.ts:441 +msgid "An error occurred while uploading the video." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84 +#: src/components/verification/VerifierDialog.tsx:86 +msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28 +#: src/lib/moderation/useReportOptions.ts:28 +msgid "An issue not included in these options" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:38 +msgid "An issue occurred starting the chat" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +msgid "An issue occurred while trying to open the chat" +msgstr "" + +#: src/components/hooks/useFollowMethods.ts:35 +#: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 +#: src/view/com/profile/FollowButton.tsx:38 +#: src/view/com/profile/FollowButton.tsx:48 +msgid "An issue occurred, please try again." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118 +msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:185 +msgid "an unknown error occurred" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:134 +#: src/lib/moderation/useModerationCauseDescription.ts:144 +msgid "an unknown labeler" +msgstr "" + +#: src/components/WhoCanReply.tsx:340 +msgid "and" +msgstr "" + +#: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:94 +msgid "Animals" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 +msgid "Animated GIF" +msgstr "" + +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 +msgid "Announcing verification on Bluesky" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33 +#: src/lib/moderation/useReportOptions.ts:33 +msgid "Anti-Social Behavior" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +msgid "Anybody can interact" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 +#: src/screens/Settings/AppIconSettings/index.tsx:67 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 +msgid "App Icon" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:87 +msgid "App Language" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:122 +msgid "App Password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:147 +msgctxt "toast" +msgid "App password deleted" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84 +msgid "App password name must be unique" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 +msgid "App password names can only contain letters, numbers, spaces, dashes, and underscores" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 +msgid "App password names must be at least 4 characters long" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 +msgid "App passwords" +msgstr "" + +#: src/Navigation.tsx:350 +#: src/screens/Settings/AppPasswords.tsx:51 +msgid "App Passwords" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:150 +#: src/components/moderation/LabelsOnMeDialog.tsx:153 +msgid "Appeal" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:268 +msgid "Appeal \"{0}\" label" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: src/screens/Messages/components/ChatDisabled.tsx:91 +msgctxt "toast" +msgid "Appeal submitted" +msgstr "" + +#: src/screens/Takendown.tsx:111 +#: src/screens/Takendown.tsx:144 +msgid "Appeal suspension" +msgstr "" + +#: src/screens/Takendown.tsx:114 +msgid "Appeal Suspension" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 +msgid "Appeal this decision" +msgstr "" + +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 +msgid "Appearance" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 +#: src/screens/Home/NoFeedsPinned.tsx:93 +msgid "Apply default recommended feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 +msgid "Archived from {0}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 +msgid "Archived post" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:209 +msgid "Are you sure you want to delete the app password \"{0}\"?" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:183 +msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:657 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:86 +msgid "Are you sure you want to discard your changes?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:46 +msgid "Are you sure you want to leave this conversation?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:45 +msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." +msgstr "" + +#: src/components/FeedCard.tsx:340 +msgid "Are you sure you want to remove this from your feeds?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:725 +msgid "Are you sure you'd like to discard this draft?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:910 +msgid "Are you sure you'd like to discard this post?" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:433 +msgid "Are you sure?" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74 +msgid "Are you writing in <0>{suggestedLanguageName}?" +msgstr "" + +#: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:95 +msgid "Art" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:171 +msgid "Artistic or non-erotic nudity." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 +msgid "Assign topic for algo" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 +msgctxt "Name of app icon variant" +msgid "Aurora" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:116 +#: src/screens/Settings/ContentAndMediaSettings.tsx:122 +msgid "Autoplay videos and GIFs" +msgstr "" + +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:84 +#: src/components/moderation/LabelsOnMeDialog.tsx:315 +#: src/components/moderation/LabelsOnMeDialog.tsx:316 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 +#: src/screens/Login/ForgotPasswordForm.tsx:129 +#: src/screens/Login/LoginForm.tsx:310 +#: src/screens/Login/LoginForm.tsx:316 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:158 +#: src/screens/Signup/BackNextButtons.tsx:41 +#: src/screens/StarterPack/Wizard/index.tsx:303 +msgid "Back" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:259 +msgid "Back to Chats" +msgstr "" + +#: src/view/screens/Lists.tsx:53 +#: src/view/screens/ModerationModlists.tsx:53 +msgid "Before creating a list, you must first verify your email." +msgstr "" + +#: src/lib/hooks/useOpenComposer.tsx:14 +msgid "Before creating a post or replying, you must first verify your email." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:245 +msgid "Before creating a starter pack, you must first verify your email." +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:235 +msgid "Before you can accept this chat request, you must first verify your email." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/MessageProfileButton.tsx:58 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 +msgid "Before you can message another user, you must first verify your email." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:103 +#: src/screens/Settings/AccountSettings.tsx:140 +msgid "Birthday" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:473 +msgid "Block" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:247 +#: src/components/dms/ConvoMenu.tsx:250 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 +#: src/screens/Messages/components/RequestButtons.tsx:144 +#: src/screens/Messages/components/RequestButtons.tsx:146 +#: src/view/com/profile/ProfileMenu.tsx:384 +#: src/view/com/profile/ProfileMenu.tsx:391 +msgid "Block account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 +#: src/view/com/profile/ProfileMenu.tsx:456 +msgid "Block Account?" +msgstr "" + +#: src/view/screens/ProfileList.tsx:669 +msgid "Block accounts" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:317 +msgid "Block and Delete" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:352 +msgid "Block and/or delete this conversation" +msgstr "" + +#: src/view/screens/ProfileList.tsx:789 +msgid "Block list" +msgstr "" + +#: src/screens/Messages/components/ChatStatusInfo.tsx:46 +msgid "Block or report" +msgstr "" + +#: src/view/screens/ProfileList.tsx:784 +msgid "Block these accounts?" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:356 +#: src/components/dms/ReportDialog.tsx:359 +msgid "Block user" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:323 +msgid "Block User" +msgstr "" + +#: src/components/Post/Embed/index.tsx:180 +msgid "Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:282 +msgid "Blocked accounts" +msgstr "" + +#: src/Navigation.tsx:191 +#: src/view/screens/ModerationBlockedAccounts.tsx:104 +msgid "Blocked Accounts" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 +#: src/view/com/profile/ProfileMenu.tsx:468 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:190 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:488 +msgid "Blocked post." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:203 +msgid "Blocking does not prevent this labeler from placing labels on your account." +msgstr "" + +#: src/view/screens/ProfileList.tsx:786 +msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:465 +msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:175 +msgid "Blog" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:136 +#: src/view/com/auth/server-input/index.tsx:137 +msgid "Bluesky" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 +msgid "Bluesky cannot confirm the authenticity of the claimed date." +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 +msgctxt "Name of app icon variant" +msgid "Bluesky Classic™" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:212 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:149 +msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." +msgstr "" + +#: src/components/ProgressGuide/List.tsx:53 +#: src/components/ProgressGuide/List.tsx:70 +msgid "Bluesky is better with friends!" +msgstr "" + +#: src/screens/Takendown.tsx:217 +msgid "Bluesky Social Terms of Service" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:310 +msgid "Bluesky will choose a set of recommended accounts from people in your network." +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:99 +msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132 +msgid "Bluesky will proactively verify notable and authentic accounts." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:99 +msgid "Bluesky+" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:102 +msgid "Bluesky+ icons" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:53 +msgid "Blur images" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:51 +msgid "Blur images and filter from feeds" +msgstr "" + +#: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:96 +msgid "Books" +msgstr "" + +#: src/components/FeedInterstitials.tsx:435 +msgid "Browse more accounts on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:566 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:575 +msgid "Browse more suggestions on the Explore page" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 +msgid "Browse other feeds" +msgstr "" + +#: src/components/TrendingTopics.tsx:178 +msgid "Browse posts about {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:186 +msgid "Browse posts tagged with {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:195 +msgid "Browse starter pack {displayName}" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93 +msgid "Browse topic {0}" +msgstr "" + +#: src/components/TrendingTopics.tsx:232 +msgid "Browse topic {displayName}" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:170 +msgid "Business" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:62 +#: src/components/moderation/ReportDialog/index.tsx:683 +#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/Explore.tsx:930 +msgid "By {0}" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +msgid "By <0>{0}" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:78 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:98 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:105 +msgid "By you" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +msgid "Camera" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 +#: src/components/dialogs/InAppBrowserConsent.tsx:98 +#: src/components/dialogs/InAppBrowserConsent.tsx:104 +#: src/components/live/GoLiveDialog.tsx:247 +#: src/components/live/GoLiveDialog.tsx:253 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 +#: src/components/Prompt.tsx:143 +#: src/components/Prompt.tsx:145 +#: src/screens/Deactivated.tsx:158 +#: src/screens/Profile/Header/EditProfileDialog.tsx:225 +#: src/screens/Profile/Header/EditProfileDialog.tsx:233 +#: src/screens/Search/Shell.tsx:349 +#: src/screens/Settings/AppIconSettings/index.tsx:44 +#: src/screens/Settings/AppIconSettings/index.tsx:225 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:78 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:85 +#: src/screens/Settings/Settings.tsx:289 +#: src/screens/Takendown.tsx:99 +#: src/screens/Takendown.tsx:102 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:43 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:52 +#: src/view/com/modals/ChangePassword.tsx:279 +#: src/view/com/modals/ChangePassword.tsx:282 +#: src/view/com/modals/CreateOrEditList.tsx:333 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/shell/desktop/LeftNav.tsx:212 +msgid "Cancel" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:338 +#: src/view/com/modals/DeleteAccount.tsx:170 +#: src/view/com/modals/DeleteAccount.tsx:278 +msgctxt "action" +msgid "Cancel" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:166 +#: src/view/com/modals/DeleteAccount.tsx:274 +msgid "Cancel account deletion" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:94 +msgid "Cancel image crop" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:203 +msgid "Cancel quote post" +msgstr "" + +#: src/screens/Deactivated.tsx:152 +msgid "Cancel reactivation and sign out" +msgstr "" + +#: src/screens/Search/Shell.tsx:341 +msgid "Cancel search" +msgstr "" + +#: src/components/PostControls/index.tsx:101 +#: src/components/PostControls/index.tsx:132 +#: src/components/PostControls/index.tsx:160 +#: src/state/shell/composer/index.tsx:91 +msgid "Cannot interact with a blocked user" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:132 +msgid "Captions (.vtt)" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:40 +#: src/view/com/composer/videos/SubtitleDialog.tsx:55 +msgid "Captions & alt text" +msgstr "" + +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Change" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:39 +msgid "Change app icon" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:38 +#: src/screens/Settings/AppIconSettings/index.tsx:221 +msgid "Change app icon to \"{0}\"" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:40 +msgid "Change app language" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:94 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:98 +msgid "Change Handle" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:325 +msgid "Change moderation service" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:153 +msgid "Change Password" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85 +msgid "Change post language to {suggestedLanguageName}" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:244 +msgid "Change report reason" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:216 +msgid "Changes app icon" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:49 +#: src/components/forms/HostingProvider.tsx:69 +msgid "Changes hosting provider" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 +msgid "Chat" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:78 +#: src/screens/Messages/components/RequestButtons.tsx:304 +msgctxt "toast" +msgid "Chat deleted" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:176 +msgctxt "toast" +msgid "Chat muted" +msgstr "" + +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 +msgid "Chat request inbox" +msgstr "" + +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 +msgid "Chat requests" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:75 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 +msgid "Chat settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 +msgid "Chat Settings" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:178 +msgctxt "toast" +msgid "Chat unmuted" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 +msgid "Chats" +msgstr "" + +#: src/screens/SignupQueued.tsx:78 +#: src/screens/SignupQueued.tsx:82 +msgid "Check my status" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:301 +msgid "Check your email for a sign in code and enter it here." +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:213 +msgid "Check your inbox for an email with the confirmation code to enter below:" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:389 +msgid "Choose domain verification method" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:200 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 +msgid "Choose for me" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:196 +msgid "Choose People" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:298 +msgid "Choose the algorithms that power your custom feeds." +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 +msgid "Choose this color as your avatar" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:130 +msgid "Choose your account provider" +msgstr "" + +#: src/view/screens/Feeds.tsx:733 +msgid "Choose your own timeline! Feeds built by the community help you find content you love." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:245 +msgid "Choose your password" +msgstr "" + +#: src/screens/Signup/index.tsx:175 +msgid "Choose your username" +msgstr "" + +#: src/screens/Settings/Settings.tsx:490 +msgid "Clear all storage data" +msgstr "" + +#: src/screens/Settings/Settings.tsx:492 +msgid "Clear all storage data (restart after this)" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:116 +#: src/screens/Settings/AboutSettings.tsx:120 +msgid "Clear image cache" +msgstr "" + +#: src/components/forms/SearchInput.tsx:70 +msgid "Clear search query" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + +#: src/view/screens/Support.tsx:41 +msgid "click here" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 +msgid "Click here to restart the verification process." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 +msgid "Click here to update your email" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 +msgid "Click to disable quote posts of this post." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 +msgid "Click to enable quote posts of this post." +msgstr "" + +#: src/components/RichTextTag.tsx:54 +msgid "Click to open tag menu for {tag}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:317 +msgid "Click to retry failed message" +msgstr "" + +#: src/screens/Onboarding/index.tsx:32 +msgid "Climate" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:39 +msgid "Clip 🐴 clop 🐴" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 +#: src/components/dialogs/SearchablePeopleList.tsx:295 +#: src/components/dms/EmojiPopup.android.tsx:58 +#: src/components/dms/ReportDialog.tsx:381 +#: src/components/dms/ReportDialog.tsx:390 +#: src/components/live/EditLiveDialog.tsx:229 +#: src/components/live/EditLiveDialog.tsx:235 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 +#: src/components/ProgressGuide/FollowDialog.tsx:386 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: src/components/verification/VerificationsDialog.tsx:144 +#: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 +#: src/view/com/modals/ChangePassword.tsx:279 +#: src/view/com/modals/ChangePassword.tsx:282 +msgid "Close" +msgstr "" + +#: src/components/Dialog/index.web.tsx:111 +#: src/components/Dialog/index.web.tsx:259 +msgid "Close active dialog" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:31 +msgid "Close alert" +msgstr "" + +#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 +msgid "Close bottom drawer" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 +#: src/components/verification/VerificationsDialog.tsx:136 +#: src/components/verification/VerifierDialog.tsx:136 +msgid "Close dialog" +msgstr "" + +#: src/view/shell/index.web.tsx:100 +msgid "Close drawer menu" +msgstr "" + +#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136 +#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172 +msgid "Close emoji picker" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:170 +msgid "Close GIF dialog" +msgstr "" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:31 +msgid "Close image" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:109 +msgid "Close image viewer" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:53 +#: src/components/ContextMenu/Backdrop.ios.tsx:79 +#: src/components/ContextMenu/Backdrop.tsx:45 +msgid "Close menu" +msgstr "" + +#: src/components/Menu/index.tsx:344 +msgid "Close this dialog" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:32 +msgid "Closes password update alert" +msgstr "" + +#: src/view/com/composer/Composer.tsx:973 +msgid "Closes post composer and discards post draft" +msgstr "" + +#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137 +#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173 +msgid "Closes the emoji picker" +msgstr "" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:32 +msgid "Closes viewer for header image" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:591 +msgid "Collapse list of users" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:805 +msgid "Collapses list of users for a given notification" +msgstr "" + +#: src/components/dialogs/Embed.tsx:154 +#: src/screens/Settings/AppearanceSettings.tsx:96 +msgid "Color mode" +msgstr "" + +#: src/components/dialogs/Embed.tsx:151 +msgid "Color theme" +msgstr "" + +#: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:97 +msgid "Comedy" +msgstr "" + +#: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:98 +msgid "Comics" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 +#: src/view/screens/CommunityGuidelines.tsx:34 +msgid "Community Guidelines" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:311 +msgid "Complete onboarding and start using your account" +msgstr "" + +#: src/screens/Signup/index.tsx:177 +msgid "Complete the challenge" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:519 +msgid "Compose new post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:874 +msgid "Compose posts up to {0, plural, other {# characters}} in length" +msgstr "" + +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 +msgid "Compose reply" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1734 +msgid "Compressing video..." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:88 +msgid "Configure content filtering setting for category: {name}" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:249 +msgid "Configured in <0>moderation settings." +msgstr "" + +#: src/components/Prompt.tsx:186 +#: src/components/Prompt.tsx:189 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188 +msgid "Confirm" +msgstr "" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34 +msgid "Confirm content language settings" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:264 +msgid "Confirm delete account" +msgstr "" + +#: src/screens/Moderation/index.tsx:330 +msgid "Confirm your age:" +msgstr "" + +#: src/screens/Moderation/index.tsx:321 +msgid "Confirm your birthdate" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 +#: src/screens/Login/LoginForm.tsx:274 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 +#: src/view/com/modals/DeleteAccount.tsx:220 +#: src/view/com/modals/DeleteAccount.tsx:226 +msgid "Confirmation code" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:337 +msgid "Connecting..." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 +msgid "Contact support" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:51 +msgid "Content & Media" +msgstr "" + +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 +msgid "Content and media" +msgstr "" + +#: src/Navigation.tsx:507 +msgid "Content and Media" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:18 +msgid "Content Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 +msgid "Content filters" +msgstr "" + +#: src/screens/Search/modules/ExploreRecommendations.tsx:59 +msgid "Content from across the network we think you might like." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:153 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76 +msgid "Content Languages" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:82 +#: src/lib/moderation/useModerationCauseDescription.ts:82 +msgid "Content Not Available" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:50 +#: src/components/moderation/ScreenHider.tsx:93 +#: src/lib/moderation/useGlobalLabelStrings.ts:22 +#: src/lib/moderation/useModerationCauseDescription.ts:45 +msgid "Content Warning" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:60 +msgid "Content warnings" +msgstr "" + +#: src/components/Menu/index.web.tsx:91 +msgid "Context menu backdrop, click to close the menu." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:276 +msgid "Continue" +msgstr "" + +#: src/components/AccountList.tsx:128 +msgid "Continue as {0} (currently signed in)" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 +#: src/view/com/post-thread/PostThreadLoadMore.tsx:60 +msgid "Continue thread..." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:273 +#: src/screens/Signup/BackNextButtons.tsx:60 +msgid "Continue to next step" +msgstr "" + +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:318 +#: src/components/dms/ReportDialog.tsx:321 +msgctxt "toast" +msgid "Conversation deleted" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:196 +msgid "Conversation deleted" +msgstr "" + +#: src/screens/Onboarding/index.tsx:41 +msgid "Cooking" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:183 +msgid "Copied" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:151 +msgid "Copied build version to clipboard" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 +#: src/lib/sharing.ts:25 +#: src/lib/sharing.ts:41 +#: src/view/com/modals/InviteCodes.tsx:153 +msgid "Copied to clipboard" +msgstr "" + +#: src/components/dialogs/Embed.tsx:201 +#: src/screens/Settings/components/CopyButton.tsx:66 +msgid "Copied!" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:127 +msgid "Copies build version to clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:182 +msgid "Copy" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 +msgid "Copy App Password" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:421 +#: src/view/com/profile/ProfileMenu.tsx:424 +msgid "Copy at:// URI" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 +msgid "Copy author DID" +msgstr "" + +#: src/components/dialogs/Embed.tsx:189 +#: src/components/dialogs/Embed.tsx:206 +msgid "Copy code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:491 +#: src/view/com/profile/ProfileMenu.tsx:430 +#: src/view/com/profile/ProfileMenu.tsx:433 +msgid "Copy DID" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:424 +msgid "Copy host" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:617 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:111 +msgid "Copy Link" +msgstr "" + +#: src/view/screens/ProfileList.tsx:513 +msgid "Copy link to list" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 +msgid "Copy link to post" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:254 +msgid "Copy link to profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Copy link to starter pack" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 +msgid "Copy message text" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 +msgid "Copy post at:// URI" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +msgid "Copy post text" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:176 +msgid "Copy QR code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:445 +msgid "Copy TXT record value" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 +#: src/view/screens/CopyrightPolicy.tsx:31 +msgid "Copyright Policy" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:35 +#: src/components/dms/ReportDialog.tsx:310 +msgid "Could not leave chat" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:83 +msgid "Could not load feed" +msgstr "" + +#: src/view/screens/ProfileList.tsx:1029 +msgid "Could not load list" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:182 +msgid "Could not mute chat" +msgstr "" + +#: src/view/com/composer/videos/VideoPreview.web.tsx:66 +msgid "Could not process your video" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:300 +msgid "Create" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:160 +msgid "Create a QR code for a starter pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:178 +#: src/components/StarterPack/ProfileStarterPacks.tsx:287 +#: src/Navigation.tsx:588 +msgid "Create a starter pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:274 +msgid "Create a starter pack for me" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:55 +#: src/view/com/auth/SplashScreen.web.tsx:117 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 +msgid "Create account" +msgstr "" + +#: src/screens/Signup/index.tsx:122 +msgid "Create Account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:86 +#: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 +msgid "Create an account" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310 +msgid "Create an account without using this starter pack" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:290 +msgid "Create an avatar instead" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:185 +msgid "Create another" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:47 +#: src/view/com/auth/SplashScreen.web.tsx:109 +msgid "Create new account" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:585 +#: src/components/ReportDialog/SelectReportOptionView.tsx:99 +msgid "Create report for {0}" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:174 +msgid "Created {0}" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:127 +msgid "Creator has been blocked" +msgstr "" + +#: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:99 +msgid "Culture" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:142 +#: src/view/com/auth/server-input/index.tsx:143 +msgid "Custom" +msgstr "" + +#: src/components/dialogs/Embed.tsx:144 +msgid "Customization options" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 +msgid "Customize who can interact with this post." +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:56 +msgid "Customizes your Bluesky experience" +msgstr "" + +#: src/components/dialogs/Embed.tsx:167 +#: src/components/dialogs/Embed.tsx:169 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 +msgid "Dark" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 +msgctxt "Name of app icon variant" +msgid "Dark" +msgstr "" + +#: src/view/screens/Debug.tsx:69 +msgid "Dark mode" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:121 +msgid "Dark theme" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:273 +msgid "Date of birth" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 +msgid "Deactivate account" +msgstr "" + +#: src/screens/Settings/Settings.tsx:455 +msgid "Debug Moderation" +msgstr "" + +#: src/view/screens/Debug.tsx:89 +msgid "Debug panel" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:171 +msgid "Default" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:75 +msgid "Default icons" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/screens/Messages/components/ChatStatusInfo.tsx:55 +#: src/screens/Settings/AppPasswords.tsx:212 +#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:688 +#: src/screens/StarterPack/StarterPackScreen.tsx:760 +#: src/view/screens/ProfileList.tsx:768 +msgid "Delete" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 +msgid "Delete account" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:101 +msgid "Delete Account <0>\"<1>{0}<2>\"" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:187 +msgid "Delete app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:207 +msgid "Delete app password?" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:316 +#: src/screens/Messages/components/RequestButtons.tsx:323 +msgid "Delete chat" +msgstr "" + +#: src/screens/Settings/Settings.tsx:462 +msgid "Delete chat declaration record" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:362 +#: src/components/dms/ReportDialog.tsx:365 +#: src/screens/Messages/components/RequestButtons.tsx:136 +#: src/screens/Messages/components/RequestButtons.tsx:139 +msgid "Delete conversation" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:320 +msgid "Delete Conversation" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:158 +msgid "Delete for me" +msgstr "" + +#: src/view/screens/ProfileList.tsx:556 +msgid "Delete list" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:181 +msgid "Delete message" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:156 +msgid "Delete message for me" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:267 +msgid "Delete my account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 +msgid "Delete post" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/screens/StarterPack/StarterPackScreen.tsx:751 +msgid "Delete starter pack" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:654 +msgid "Delete starter pack?" +msgstr "" + +#: src/view/screens/ProfileList.tsx:763 +msgid "Delete this list?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +msgid "Delete this post?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:173 +msgid "Deleted" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:160 +#: src/screens/Messages/components/ChatListItem.tsx:128 +msgid "Deleted Account" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 +msgid "Deleted post." +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:369 +#: src/view/com/modals/CreateOrEditList.tsx:278 +#: src/view/com/modals/CreateOrEditList.tsx:299 +msgid "Description" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:389 +msgid "Description is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:390 +msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 +msgid "Descriptive alt text" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 +msgid "Detach quote" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 +msgid "Detach quote post?" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:140 +msgctxt "toast" +msgid "Developer mode disabled" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:134 +msgctxt "toast" +msgid "Developer mode enabled" +msgstr "" + +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 +msgid "Developer options" +msgstr "" + +#: src/components/WhoCanReply.tsx:188 +msgid "Dialog: adjust who can interact with this post" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:125 +msgid "Dim" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242 +msgid "Disable 2FA" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157 +msgid "Disable email 2FA" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89 +msgid "Disable Email 2FA" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 +msgid "Disable haptic feedback" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 +msgid "Disable subtitles" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:32 +#: src/lib/moderation/useLabelBehaviorDescription.ts:42 +#: src/lib/moderation/useLabelBehaviorDescription.ts:68 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 +msgid "Disabled" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:88 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 +msgid "Discard" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:85 +msgid "Discard changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:724 +msgid "Discard draft?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:909 +msgid "Discard post?" +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:87 +#: src/screens/Settings/components/PwiOptOut.tsx:91 +msgid "Discourage apps from showing my account to logged-out users" +msgstr "" + +#: src/screens/Search/Explore.tsx:434 +msgid "Discover Feeds" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 +msgid "Discover new custom feeds" +msgstr "" + +#: src/view/screens/Feeds.tsx:730 +msgid "Discover New Feeds" +msgstr "" + +#: src/components/Dialog/index.tsx:321 +msgid "Dismiss" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1658 +msgid "Dismiss error" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:42 +msgid "Dismiss getting started guide" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 +msgid "Dismiss interests" +msgstr "" + +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 +msgid "Dismiss this section" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 +msgid "Display larger alt text badges" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:326 +#: src/screens/Profile/Header/EditProfileDialog.tsx:376 +msgid "Display name" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:339 +msgid "Display name is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:340 +msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:392 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:394 +msgid "DNS Panel" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:302 +msgid "Do not apply this mute word to users you follow" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:39 +msgid "Does not include nudity." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:507 +msgid "Domain verified!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 +msgid "Don't have a code or need a new one? <0>Click here." +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37 +msgid "Don't see an email? <0>Click here to resend." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:115 +#: src/components/dialogs/BirthDateSettings.tsx:121 +#: src/components/dms/ReportDialog.tsx:314 +#: src/components/forms/DateField/index.tsx:103 +#: src/components/forms/DateField/index.tsx:109 +#: src/components/Select/index.tsx:183 +#: src/components/Select/index.tsx:190 +#: src/screens/Onboarding/StepProfile/index.tsx:328 +#: src/screens/Onboarding/StepProfile/index.tsx:331 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 +#: src/view/com/auth/server-input/index.tsx:232 +#: src/view/com/auth/server-input/index.tsx:233 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:168 +#: src/view/com/composer/videos/SubtitleDialog.tsx:178 +#: src/view/com/modals/CropImage.web.tsx:112 +#: src/view/com/modals/InviteCodes.tsx:81 +#: src/view/com/modals/InviteCodes.tsx:124 +msgid "Done" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 +msgctxt "action" +msgid "Done" +msgstr "" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:42 +msgid "Done{extraText}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:161 +msgid "Double tap or long press the message to add a reaction" +msgstr "" + +#: src/components/Dialog/index.tsx:322 +msgid "Double tap to close the dialog" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1080 +msgid "Double tap to like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 +msgid "Download Bluesky" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:79 +#: src/screens/Settings/components/ExportCarDialog.tsx:84 +msgid "Download CAR file" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:344 +msgid "Drop to add images" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:153 +msgid "Duration:" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:230 +msgid "e.g. alice" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:327 +msgid "e.g. Alice Lastname" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:376 +msgid "e.g. alice.com" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:43 +msgid "E.g. artistic nudes." +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:261 +msgid "e.g. Great Posters" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:262 +msgid "e.g. Spammers" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:290 +msgid "e.g. The posters who never miss." +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:291 +msgid "e.g. Users that repeatedly reply with ads." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:97 +msgid "Each code works once. You'll receive more invite codes periodically." +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 +#: src/screens/StarterPack/StarterPackScreen.tsx:588 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 +msgid "Edit" +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:180 +#: src/view/com/lists/ListMembers.tsx:186 +msgctxt "action" +msgid "Edit" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:439 +#: src/view/com/util/UserBanner.tsx:119 +msgid "Edit avatar" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 +msgid "Edit Feeds" +msgstr "" + +#: src/view/com/composer/photos/EditImageDialog.web.tsx:85 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:89 +#: src/view/com/composer/photos/Gallery.tsx:195 +msgid "Edit image" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 +msgid "Edit interaction settings" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:98 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 +msgid "Edit interests" +msgstr "" + +#: src/view/screens/ProfileList.tsx:544 +msgid "Edit list details" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:317 +#: src/view/com/profile/ProfileMenu.tsx:323 +msgid "Edit live status" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:228 +msgid "Edit Moderation List" +msgstr "" + +#: src/Navigation.tsx:355 +#: src/view/screens/Feeds.tsx:518 +msgid "Edit My Feeds" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 +msgid "Edit People" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 +msgid "Edit post interaction settings" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/EditProfileDialog.tsx:281 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 +msgid "Edit profile" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +msgid "Edit Profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:580 +msgid "Edit starter pack" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:223 +msgid "Edit User List" +msgstr "" + +#: src/components/WhoCanReply.tsx:97 +msgid "Edit who can reply" +msgstr "" + +#: src/Navigation.tsx:593 +msgid "Edit your starter pack" +msgstr "" + +#: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:101 +msgid "Education" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:141 +msgid "Either the creator of this list has blocked you or you have blocked the creator." +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 +msgid "Email" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64 +msgctxt "toast" +msgid "Email 2FA disabled" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 +msgid "Email 2FA enabled" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:93 +msgid "Email address" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 +msgid "Email Resent" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208 +msgid "Email sent!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 +msgid "Email verification complete!" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 +msgid "Email Verified" +msgstr "" + +#: src/components/dialogs/Embed.tsx:181 +msgid "Embed HTML code" +msgstr "" + +#: src/components/dialogs/Embed.tsx:104 +#: src/components/dialogs/Embed.tsx:108 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 +msgid "Embed post" +msgstr "" + +#: src/components/dialogs/Embed.tsx:112 +msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +msgid "Embedded video player" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111 +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Enable" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:100 +msgid "Enable {0} only" +msgstr "" + +#: src/screens/Moderation/index.tsx:381 +msgid "Enable adult content" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92 +msgid "Enable email 2FA" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 +msgid "Enable external media" +msgstr "" + +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 +msgid "Enable media players for" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 +msgid "Enable subtitles" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:93 +msgid "Enable this source only" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:132 +#: src/screens/Settings/ContentAndMediaSettings.tsx:146 +msgid "Enable trending topics" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 +#: src/screens/Settings/ContentAndMediaSettings.tsx:167 +msgid "Enable trending videos in your Discover feed" +msgstr "" + +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 +msgid "Enabled" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:113 +msgid "End of feed" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:158 +msgid "Ensure you have selected a language for each subtitle file." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:147 +msgid "Enter a password" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:128 +msgid "Enter a word or tag" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 +msgid "Enter code" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 +msgid "Enter fullscreen" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:165 +msgid "Enter the code you received to change your password." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:370 +msgid "Enter the domain you want to use" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:113 +msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:218 +msgid "Enter the username or email address you used when you created your account" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:104 +msgid "Enter your birth date" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:217 +msgid "Enter your email address" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:243 +msgid "Enter your password" +msgstr "" + +#: src/screens/Login/index.tsx:123 +msgid "Enter your username and password" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 +msgid "Enters full screen" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239 +msgid "Entertainment" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1743 +#: src/view/com/util/error/ErrorScreen.tsx:42 +msgid "Error" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:47 +msgid "Error occurred while saving file" +msgstr "" + +#: src/screens/Signup/StepCaptcha/index.tsx:124 +msgid "Error receiving captcha response." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:183 +msgid "Error:" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:144 +msgid "Error: {error}" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 +msgid "Everybody" +msgstr "" + +#: src/components/WhoCanReply.tsx:77 +msgid "Everybody can reply" +msgstr "" + +#: src/components/WhoCanReply.tsx:245 +msgid "Everybody can reply to this post." +msgstr "" + +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 +msgid "Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 +#: src/lib/moderation/useReportOptions.ts:73 +msgid "Excessive mentions or replies" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:86 +#: src/lib/moderation/useReportOptions.ts:86 +msgid "Excessive or unwanted messages" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:311 +msgid "Exclude users you follow" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:514 +msgid "Excludes users you follow" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 +msgid "Exit fullscreen" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:275 +msgid "Exits account deletion process" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:95 +msgid "Exits image cropping process" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:110 +msgid "Exits image view" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:184 +msgid "Expand alt text" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:592 +msgid "Expand list of users" +msgstr "" + +#: src/view/com/composer/ComposerReplyTo.tsx:91 +msgid "Expand or collapse the full post you are replying to" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 +msgid "Expands or collapses post text" +msgstr "" + +#: src/lib/api/index.ts:418 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 +msgid "Experimental" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:500 +msgid "Expired" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:502 +msgid "Expires {0}" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:199 +#: src/components/moderation/ModerationDetailsDialog.tsx:208 +msgid "Expires in {0}" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:131 +msgid "Expires in {0} at {1}" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:47 +#: src/lib/moderation/useGlobalLabelStrings.ts:51 +msgid "Explicit or potentially disturbing media." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:35 +msgid "Explicit sexual images." +msgstr "" + +#: src/Navigation.tsx:750 +#: src/screens/Search/Shell.tsx:307 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 +msgid "Explore" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 +msgid "Export my data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:62 +msgid "Export My Data" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:84 +#: src/screens/Settings/ContentAndMediaSettings.tsx:87 +msgid "External media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 +msgid "External Media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 +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:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 +msgid "External Media Preferences" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:220 +msgctxt "toast" +msgid "Failed to accept chat" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:67 +#: src/components/dms/MessageContextMenu.tsx:99 +msgid "Failed to add emoji reaction" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:587 +msgid "Failed to change handle. Please try again." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:173 +msgid "Failed to create app password. Please try again." +msgstr "" + +#: src/components/dms/MessageProfileButton.tsx:36 +msgid "Failed to create conversation" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 +msgid "Failed to create starter pack" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:184 +msgid "Failed to create the list. Check your internet connection and try again." +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:64 +#: src/screens/Messages/components/RequestButtons.tsx:291 +msgctxt "toast" +msgid "Failed to delete chat" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:79 +msgid "Failed to delete message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +msgid "Failed to delete post, please try again" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:722 +msgid "Failed to delete starter pack" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 +msgid "Failed to load conversations" +msgstr "" + +#: src/screens/Search/Explore.tsx:470 +#: src/screens/Search/Explore.tsx:522 +#: src/screens/Search/Explore.tsx:560 +#: src/screens/Search/Explore.tsx:599 +msgid "Failed to load feeds preferences" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:226 +msgid "Failed to load GIFs" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:23 +msgid "Failed to load past messages" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + +#: src/screens/Search/Explore.tsx:463 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:553 +#: src/screens/Search/Explore.tsx:592 +msgid "Failed to load suggested feeds" +msgstr "" + +#: src/screens/Search/Explore.tsx:373 +msgid "Failed to load suggested follows" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 +msgid "Failed to mark all requests as read" +msgstr "" + +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:61 +#: src/components/dms/MessageContextMenu.tsx:93 +msgid "Failed to remove emoji reaction" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:34 +msgid "Failed to remove verification" +msgstr "" + +#: src/lib/media/save-image.ts:28 +msgid "Failed to save image: {0}" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:108 +msgid "Failed to save settings. Please try again." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:132 +msgctxt "toast" +msgid "Failed to save your interests." +msgstr "" + +#: src/components/dms/MessageItem.tsx:310 +msgid "Failed to send" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136 +msgid "Failed to send email, please try again." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/screens/Messages/components/ChatDisabled.tsx:87 +msgid "Failed to submit appeal, please try again." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +msgid "Failed to toggle thread mute, please try again" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83 +msgid "Failed to update email 2FA settings" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:195 +msgid "Failed to update email, please try again." +msgstr "" + +#: src/components/FeedCard.tsx:285 +msgid "Failed to update feeds" +msgstr "" + +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 +msgid "Failed to update settings" +msgstr "" + +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 +msgid "Failed to upload video" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168 +msgid "Failed to verify email, please try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:360 +msgid "Failed to verify handle. Please try again." +msgstr "" + +#: src/Navigation.tsx:290 +msgid "Feed" +msgstr "" + +#: src/components/FeedCard.tsx:139 +#: src/view/com/feeds/FeedSourceCard.tsx:150 +msgid "Feed by {0}" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:354 +msgid "Feed menu" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +msgid "Feed toggle" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:102 +#: src/view/shell/desktop/RightNav.tsx:103 +#: src/view/shell/Drawer.tsx:357 +msgid "Feedback" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 +msgctxt "toast" +msgid "Feedback sent!" +msgstr "" + +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 +#: src/screens/StarterPack/StarterPackScreen.tsx:190 +#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Profile.tsx:230 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 +msgid "Feeds" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:206 +msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." +msgstr "" + +#: src/components/FeedCard.tsx:282 +#: src/view/screens/SavedFeeds.tsx:86 +msgctxt "toast" +msgid "Feeds updated!" +msgstr "" + +#: src/screens/Search/modules/ExploreRecommendations.tsx:65 +msgid "Feeds we think you might like." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:58 +msgid "Fetch update" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:43 +msgid "File saved successfully!" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:66 +msgid "Filter from feeds" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:97 +msgid "Filter search by language" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:70 +msgid "Filter search by language (currently: {currentLanguageLabel})" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:314 +msgid "Finalizing" +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:48 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 +msgid "Find accounts to follow" +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:77 +#: src/components/ProgressGuide/FollowDialog.tsx:87 +#: src/components/ProgressGuide/FollowDialog.tsx:374 +msgid "Find people to follow" +msgstr "" + +#: src/screens/Search/Shell.tsx:476 +msgid "Find posts, users, and feeds on Bluesky" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:201 +msgid "Finish" +msgstr "" + +#: src/screens/Onboarding/index.tsx:35 +msgid "Fitness" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 +msgctxt "Name of app icon variant" +msgid "Flat Black" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +msgctxt "Name of app icon variant" +msgid "Flat Blue" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 +msgctxt "Name of app icon variant" +msgid "Flat White" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:294 +msgid "Flexible" +msgstr "" + +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 +#: src/screens/VideoFeed/index.tsx:850 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 +msgid "Follow" +msgstr "" + +#: src/view/com/profile/FollowButton.tsx:72 +msgctxt "action" +msgid "Follow" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 +msgid "Follow {0}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:827 +msgid "Follow {handle}" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:52 +#: src/state/shell/progress-guide.tsx:229 +msgid "Follow 10 accounts" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:69 +msgid "Follow 7 accounts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:284 +#: src/view/com/profile/ProfileMenu.tsx:295 +msgid "Follow account" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:438 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 +msgid "Follow all" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 +msgid "Follow Back" +msgstr "" + +#: src/view/com/profile/FollowButton.tsx:81 +msgctxt "action" +msgid "Follow Back" +msgstr "" + +#: src/components/KnownFollowers.tsx:238 +msgid "Followed by <0>{0}" +msgstr "" + +#: src/components/KnownFollowers.tsx:224 +msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" +msgstr "" + +#: src/components/KnownFollowers.tsx:211 +msgid "Followed by <0>{0} and <1>{1}" +msgstr "" + +#: src/components/KnownFollowers.tsx:193 +msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" +msgstr "" + +#: src/Navigation.tsx:244 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:104 +#: src/screens/Profile/KnownFollowers.tsx:121 +msgid "Followers you know" +msgstr "" + +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 +#: src/screens/VideoFeed/index.tsx:848 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 +msgid "Following" +msgstr "" + +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "" + +#: src/components/ProfileCard.tsx:474 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 +msgid "Following {0}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:826 +msgid "Following {handle}" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:76 +#: src/screens/Settings/ContentAndMediaSettings.tsx:79 +msgid "Following feed preferences" +msgstr "" + +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 +msgid "Following Feed Preferences" +msgstr "" + +#: src/screens/Profile/Header/Handle.tsx:32 +msgid "Follows you" +msgstr "" + +#: src/components/Pills.tsx:175 +msgid "Follows You" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "Font" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:163 +msgid "Font size" +msgstr "" + +#: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:102 +msgid "Food" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:125 +msgid "For security reasons, we'll need to send a confirmation code to your email address." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:209 +msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:145 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94 +msgid "For You" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:178 +msgid "Forever" +msgstr "" + +#: src/screens/Login/index.tsx:153 +#: src/screens/Login/index.tsx:168 +msgid "Forgot Password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:248 +msgid "Forgot password?" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:259 +msgid "Forgot?" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:54 +#: src/lib/moderation/useReportOptions.ts:54 +msgid "Frequently Posts Unwanted Content" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + +#: src/screens/Hashtag.tsx:120 +msgid "From @{sanitizedAuthor}" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:330 +msgctxt "from-feed" +msgid "From <0/>" +msgstr "" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 +msgid "Gallery" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 +msgid "Generate a starter pack" +msgstr "" + +#: src/view/shell/Drawer.tsx:361 +msgid "Get help" +msgstr "" + +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 +msgid "Get started" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:35 +msgid "Getting started" +msgstr "" + +#: src/components/MediaPreview.tsx:116 +msgid "GIF" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:232 +msgid "Give your profile a face" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39 +#: src/lib/moderation/useReportOptions.ts:39 +msgid "Glaring violations of law or terms of service" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 +#: src/components/Layout/Header/index.tsx:127 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/screens/Messages/Inbox.tsx:249 +#: src/screens/Profile/ProfileFeed/index.tsx:92 +#: src/screens/VideoFeed/components/Header.tsx:163 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileList.tsx:1038 +msgid "Go back" +msgstr "" + +#: src/components/Error.tsx:78 +#: src/screens/List/ListHiddenScreen.tsx:224 +#: src/screens/Profile/ErrorState.tsx:62 +#: src/screens/Profile/ErrorState.tsx:66 +#: src/screens/Profile/ProfileFeed/index.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:773 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileList.tsx:1043 +msgid "Go Back" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:192 +#: src/components/ReportDialog/SelectReportOptionView.tsx:78 +#: src/components/ReportDialog/SubmitView.tsx:110 +#: src/screens/Onboarding/Layout.tsx:99 +#: src/screens/Onboarding/Layout.tsx:188 +#: src/screens/Signup/BackNextButtons.tsx:35 +msgid "Go back to previous step" +msgstr "" + +#: src/view/screens/NotFound.tsx:57 +msgid "Go home" +msgstr "" + +#: src/view/screens/NotFound.tsx:56 +msgid "Go Home" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:318 +#: src/view/com/profile/ProfileMenu.tsx:325 +msgid "Go live" +msgstr "" + +#: src/components/live/GoLiveDialog.tsx:93 +#: src/components/live/GoLiveDialog.tsx:98 +#: src/components/live/GoLiveDialog.tsx:232 +#: src/components/live/GoLiveDialog.tsx:241 +msgid "Go Live" +msgstr "" + +#: src/components/live/GoLiveDialog.tsx:174 +msgid "Go live for" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:221 +msgid "Go to {firstAuthorName}'s profile" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:360 +msgid "Go to conversation with {0}" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:165 +#: src/view/com/modals/ChangePassword.tsx:179 +msgid "Go to next" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:227 +msgid "Go to profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:224 +msgid "Go to user's profile" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/lib/moderation/useGlobalLabelStrings.ts:50 +#: src/view/com/composer/labels/LabelsBtn.tsx:201 +#: src/view/com/composer/labels/LabelsBtn.tsx:204 +msgid "Graphic Media" +msgstr "" + +#: src/state/shell/progress-guide.tsx:218 +#: src/state/shell/progress-guide.tsx:228 +msgid "Half way there!" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 +msgid "Handle" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:591 +msgid "Handle already taken. Please try a different one." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:195 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:344 +msgid "Handle changed!" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:595 +msgid "Handle too long. Please try a shorter one." +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:85 +msgid "Haptics" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:34 +#: src/lib/moderation/useReportOptions.ts:34 +msgid "Harassment, trolling, or intolerance" +msgstr "" + +#: src/Navigation.tsx:538 +msgid "Hashtag" +msgstr "" + +#: src/components/RichTextTag.tsx:51 +msgid "Hashtag {tag}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 +msgid "Have a code? <0>Click here." +msgstr "" + +#: src/screens/Signup/index.tsx:210 +msgid "Having trouble?" +msgstr "" + +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 +#: src/view/shell/desktop/RightNav.tsx:120 +#: src/view/shell/desktop/RightNav.tsx:121 +#: src/view/shell/Drawer.tsx:370 +msgid "Help" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:235 +msgid "Help people know you're not a bot by uploading a picture or creating an avatar." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:187 +msgid "Here is your app password!" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + +#: src/components/VideoPostCard.tsx:178 +#: src/components/VideoPostCard.tsx:460 +msgid "Hidden" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:625 +msgid "Hidden by your moderation settings." +msgstr "" + +#: src/components/ListCard.tsx:132 +msgid "Hidden list" +msgstr "" + +#: src/components/interstitials/Trending.tsx:131 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 +#: src/lib/moderation/useLabelBehaviorDescription.ts:15 +#: src/lib/moderation/useLabelBehaviorDescription.ts:20 +#: src/lib/moderation/useLabelBehaviorDescription.ts:25 +#: src/lib/moderation/useLabelBehaviorDescription.ts:30 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110 +msgid "Hide" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:812 +msgctxt "action" +msgid "Hide" +msgstr "" + +#: src/components/dialogs/Embed.tsx:128 +msgid "Hide customization options" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 +msgid "Hide post for me" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 +msgid "Hide reply for everyone" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 +msgid "Hide reply for me" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:110 +msgid "Hide this card" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +msgid "Hide this post?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +msgid "Hide this reply?" +msgstr "" + +#: src/components/interstitials/Trending.tsx:113 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62 +msgid "Hide trending topics" +msgstr "" + +#: src/components/interstitials/Trending.tsx:129 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108 +msgid "Hide trending topics?" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:136 +msgid "Hide trending videos?" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:803 +msgid "Hide user list" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:85 +#: src/screens/Moderation/VerificationSettings.tsx:94 +msgid "Hide verification badges" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 +msgid "Hides the content" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 +msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 +msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 +msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 +msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 +msgid "Hmm, we're having trouble finding this feed. It may have been deleted." +msgstr "" + +#: src/screens/Moderation/index.tsx:59 +msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:31 +msgid "Hmmmm, we couldn't load that moderation service." +msgstr "" + +#: src/view/com/composer/state/video.ts:415 +msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" +msgstr "" + +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 +msgid "Home" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:417 +msgid "Host:" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:184 +msgid "Hosting provider" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194 +msgid "Hot" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 +msgid "Hot replies first" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:62 +#: src/components/dialogs/InAppBrowserConsent.tsx:66 +msgid "How should we open this link?" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 +msgid "I have a code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:280 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:286 +msgid "I have my own domain" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:57 +#: src/components/dms/ReportConversationPrompt.tsx:21 +msgid "I understand" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:186 +msgid "If alt text is long, toggles alt text expanded state" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:142 +msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." +msgstr "" + +#: src/view/screens/ProfileList.tsx:765 +msgid "If you delete this list, you won't be able to recover it." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:267 +msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 +msgid "If you need to update your email, <0>click here." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +msgid "If you remove this post, you won't be able to recover it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:208 +msgid "If you update your email address, email 2FA will be disabled." +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:160 +msgid "If you want to change your password, we will send you a code to verify that this is your account." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:208 +msgid "If you're a developer, you can host your own server." +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 +msgid "If you're trying to change your handle or email, do so before you deactivate." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:38 +#: src/lib/moderation/useReportOptions.ts:38 +msgid "Illegal and Urgent" +msgstr "" + +#: src/view/com/util/images/Gallery.tsx:71 +msgid "Image" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:64 +msgid "Image cache cleared" +msgstr "" + +#. Android-only toast message which includes amount of space freed using localized number formatting +#: src/screens/Settings/AboutSettings.tsx:50 +msgid "Image cache cleared, freed {0}" +msgstr "" + +#: src/lib/media/save-image.ts:26 +msgid "Image saved" +msgstr "" + +#: src/lib/media/save-image.ts:45 +msgid "Images cannot be saved unless permission is granted to access your photo library." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49 +#: src/lib/moderation/useReportOptions.ts:49 +msgid "Impersonation or false claims about identity or affiliation" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:68 +#: src/lib/moderation/useReportOptions.ts:68 +msgid "Impersonation, misinformation, or false claims" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 +#: src/lib/moderation/useReportOptions.ts:91 +msgid "Inappropriate messages or explicit links" +msgstr "" + +#. Title message shown in chat requests inbox when it's empty +#: src/screens/Messages/Inbox.tsx:229 +msgid "Inbox zero!" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:164 +msgid "Incorrect username or password" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:133 +msgid "Input code sent to your email for password reset" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:228 +msgid "Input confirmation code for account deletion" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:159 +msgid "Input new password" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:247 +msgid "Input password for account deletion" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:289 +msgid "Input the code which has been emailed to you" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 +msgid "Interaction limited" +msgstr "" + +#: src/screens/Moderation/index.tsx:222 +msgid "Interaction settings" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:156 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 +msgid "Invalid 2FA confirmation code." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:597 +msgid "Invalid handle. Please try a different one." +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:347 +msgid "Invalid or unsupported post record" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:73 +msgid "Invalid report subject" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 +msgid "Invalid Verification Code" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:94 +msgid "Invite a Friend" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:167 +msgid "Invite code" +msgstr "" + +#: src/screens/Signup/state.ts:339 +msgid "Invite code not accepted. Check that you input it correctly and try again." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:171 +msgid "Invite codes: {0} available" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:170 +msgid "Invite codes: 1 available" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:77 +msgid "Invite people to this starter pack!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:34 +msgid "Invite your friends to follow your favorite feeds and people" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:31 +msgid "Invites, but personal" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:293 +msgid "It's correct" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:474 +msgid "It's just you right now! Add more people to your starter pack by searching above." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1677 +msgid "Job ID: {0}" +msgstr "" + +#. Link to a page with job openings at Bluesky +#: src/view/com/auth/SplashScreen.web.tsx:180 +msgid "Jobs" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211 +#: src/screens/StarterPack/StarterPackScreen.tsx:466 +#: src/screens/StarterPack/StarterPackScreen.tsx:477 +msgid "Join Bluesky" +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:68 +#: src/view/shell/NavSignupCard.tsx:40 +msgid "Join the conversation" +msgstr "" + +#: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:104 +msgid "Journalism" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 +msgid "Labeled by {0}." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:232 +msgid "Labeled by the author." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:75 +#: src/view/screens/Profile.tsx:223 +msgid "Labels" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:73 +msgid "Labels added" +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:194 +msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:72 +msgid "Labels on your account" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:74 +msgid "Labels on your content" +msgstr "" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:107 +msgid "Language selection" +msgstr "" + +#: src/Navigation.tsx:217 +msgid "Language Settings" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:78 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 +msgid "Languages" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:175 +msgid "Larger" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + +#: src/screens/Hashtag.tsx:95 +#: src/screens/Search/SearchResults.tsx:57 +#: src/screens/Topic.tsx:77 +msgid "Latest" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:271 +msgid "learn more" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:165 +#: src/components/verification/VerifierDialog.tsx:132 +#: src/screens/Moderation/VerificationSettings.tsx:47 +#: src/screens/Profile/Header/EditProfileDialog.tsx:359 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:212 +msgid "Learn more" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:140 +msgid "Learn More" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:168 +msgid "Learn more about Bluesky" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:218 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:152 +msgid "Learn more about the moderation applied to this content" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:218 +msgid "Learn more about the moderation applied to this content." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 +#: src/components/moderation/ScreenHider.tsx:127 +msgid "Learn more about this warning" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:150 +#: src/components/verification/VerifierDialog.tsx:117 +msgid "Learn more about verification on Bluesky" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 +msgid "Learn more about what is public on Bluesky." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 +#: src/view/com/auth/server-input/index.tsx:220 +msgid "Learn more." +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:48 +msgid "Leave" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:74 +#: src/components/dms/MessagesListBlockedFooter.tsx:81 +msgid "Leave chat" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:203 +#: src/components/dms/ConvoMenu.tsx:206 +#: src/components/dms/ConvoMenu.tsx:266 +#: src/components/dms/ConvoMenu.tsx:269 +#: src/components/dms/LeaveConvoPrompt.tsx:42 +msgid "Leave conversation" +msgstr "" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 +msgid "Leave them all unselected to see any language." +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 +msgid "Leaving Bluesky" +msgstr "" + +#: src/screens/SignupQueued.tsx:155 +msgid "left to go." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:323 +msgid "Let me choose" +msgstr "" + +#: src/screens/Login/index.tsx:154 +#: src/screens/Login/index.tsx:169 +msgid "Let's get your password reset!" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:314 +msgid "Let's go!" +msgstr "" + +#: src/components/dialogs/Embed.tsx:162 +#: src/components/dialogs/Embed.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:104 +msgid "Light" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:14 +msgctxt "Name of app icon variant" +msgid "Light" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:518 +msgid "Like" +msgstr "" + +#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form +#: src/components/PostControls/index.tsx:253 +msgid "Like ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:63 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:214 +#: src/state/shell/progress-guide.tsx:219 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 +msgid "Like this feed" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272 +msgid "Like this labeler" +msgstr "" + +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 +msgid "Liked by" +msgstr "" + +#: src/screens/Post/PostLikedBy.tsx:38 +#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 +msgid "Liked By" +msgstr "" + +#: src/components/FeedCard.tsx:218 +#: src/view/com/feeds/FeedSourceCard.tsx:172 +msgid "Liked by {0, plural, one {# user} other {# users}}" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:96 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:493 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306 +msgid "Liked by {likeCount, plural, one {# user} other {# users}}" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/view/screens/Profile.tsx:229 +msgid "Likes" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 +msgid "Likes on this post" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 +msgid "Linear" +msgstr "" + +#: src/Navigation.tsx:250 +msgid "List" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:239 +msgid "List Avatar" +msgstr "" + +#: src/view/screens/ProfileList.tsx:438 +msgctxt "toast" +msgid "List blocked" +msgstr "" + +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 +msgid "List by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 +msgid "List by <0/>" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 +msgid "List by you" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + +#: src/view/screens/ProfileList.tsx:485 +msgctxt "toast" +msgid "List deleted" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:129 +msgid "List has been hidden" +msgstr "" + +#: src/view/screens/ProfileList.tsx:176 +msgid "List Hidden" +msgstr "" + +#: src/view/screens/ProfileList.tsx:402 +msgctxt "toast" +msgid "List muted" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:253 +msgid "List Name" +msgstr "" + +#: src/view/screens/ProfileList.tsx:456 +msgctxt "toast" +msgid "List unblocked" +msgstr "" + +#: src/view/screens/ProfileList.tsx:420 +msgctxt "toast" +msgid "List unmuted" +msgstr "" + +#: src/Navigation.tsx:171 +#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Profile.tsx:224 +#: src/view/screens/Profile.tsx:232 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 +msgid "Lists" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:39 +msgid "Lists blocking this user:" +msgstr "" + +#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters +#: src/components/live/LiveIndicator.tsx:46 +msgid "LIVE" +msgstr "" + +#: src/components/live/LiveStatusDialog.tsx:215 +msgid "Live feature is in beta testing" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:148 +#: src/components/live/EditLiveDialog.tsx:152 +#: src/components/live/GoLiveDialog.tsx:124 +#: src/components/live/GoLiveDialog.tsx:128 +msgid "Live link" +msgstr "" + +#: src/screens/Search/Explore.tsx:86 +msgid "Load more" +msgstr "" + +#: src/screens/Search/Explore.tsx:504 +#: src/screens/Search/Explore.tsx:581 +msgid "Load more suggested feeds" +msgstr "" + +#: src/view/screens/Notifications.tsx:278 +msgid "Load new notifications" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:224 +#: src/screens/Profile/Sections/Feed.tsx:98 +#: src/view/com/feeds/FeedPage.tsx:155 +#: src/view/screens/ProfileList.tsx:878 +msgid "Load new posts" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61 +msgid "Loading..." +msgstr "" + +#: src/Navigation.tsx:320 +msgid "Log" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 +msgid "Logged-out visibility" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:130 +msgid "Logo by @sawaratsuki.bsky.social" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:127 +#: src/view/shell/Drawer.tsx:672 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#: src/components/RichTextTag.tsx:53 +msgid "Long press to open tag menu for #{tag}" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:122 +msgid "Looks like XXXXX-XXXXX" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39 +msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:83 +msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:37 +msgid "Looks like you're missing a following feed. <0>Click here to add one." +msgstr "" + +#: src/components/dialogs/EmailDialog/index.tsx:41 +msgid "Make adjustments to email settings for your account" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +msgid "Make one for me" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:85 +msgid "Make sure this is where you intend to go!" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:60 +#: src/screens/Settings/ContentAndMediaSettings.tsx:63 +msgid "Manage saved feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:292 +msgid "Manage verification settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:108 +msgid "Manage your muted words and tags" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 +msgid "Mark all as read" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:215 +#: src/components/dms/ConvoMenu.tsx:218 +msgid "Mark as read" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 +msgid "Marked all as read" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 +msgid "Maybe later" +msgstr "" + +#: src/view/screens/Profile.tsx:227 +msgid "Media" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:210 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 +msgid "mentioned users" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 +msgid "Mentioned users" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 +msgid "Mentions" +msgstr "" + +#: src/components/Menu/index.tsx:111 +msgid "Menu" +msgstr "" + +#: src/components/dms/MessageProfileButton.tsx:96 +msgid "Message {0}" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:77 +msgctxt "toast" +msgid "Message deleted" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:197 +msgid "Message deleted" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:125 +msgid "Message from @{0}: {1}" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 +msgid "Message from server: {0}" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:152 +msgid "Message input field" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:79 +#: src/screens/Messages/components/MessageInput.web.tsx:60 +msgid "Message is too long" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:123 +msgid "Message options" +msgstr "" + +#: src/Navigation.tsx:760 +msgid "Messages" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 +msgctxt "Name of app icon variant" +msgid "Midnight" +msgstr "" + +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 +#: src/lib/moderation/useReportOptions.ts:47 +msgid "Misleading Account" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:67 +#: src/lib/moderation/useReportOptions.ts:67 +msgid "Misleading Post" +msgstr "" + +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 +msgid "Moderation" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:138 +msgid "Moderation details" +msgstr "" + +#: src/components/ListCard.tsx:151 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 +msgid "Moderation list by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 +msgid "Moderation list by <0/>" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 +msgid "Moderation list by you" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:175 +msgctxt "toast" +msgid "Moderation list created" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:161 +msgctxt "toast" +msgid "Moderation list updated" +msgstr "" + +#: src/screens/Moderation/index.tsx:252 +msgid "Moderation lists" +msgstr "" + +#: src/Navigation.tsx:181 +#: src/view/screens/ModerationModlists.tsx:65 +msgid "Moderation Lists" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:252 +msgid "moderation settings" +msgstr "" + +#: src/Navigation.tsx:310 +msgid "Moderation states" +msgstr "" + +#: src/screens/Moderation/index.tsx:206 +msgid "Moderation tools" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:52 +#: src/lib/moderation/useModerationCauseDescription.ts:47 +msgid "Moderator has chosen to set a general warning on the content." +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:727 +msgid "More" +msgstr "" + +#: src/view/shell/desktop/Feeds.tsx:102 +#: src/view/shell/desktop/Feeds.tsx:105 +msgid "More feeds" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:220 +#: src/view/com/profile/ProfileMenu.tsx:226 +#: src/view/screens/ProfileList.tsx:750 +msgid "More options" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:228 +msgid "Most-liked first" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 +msgid "Most-liked replies first" +msgstr "" + +#: src/screens/Onboarding/state.ts:105 +msgid "Movies" +msgstr "" + +#: src/screens/Onboarding/state.ts:106 +msgid "Music" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 +msgctxt "video" +msgid "Mute" +msgstr "" + +#: src/components/RichTextTag.tsx:140 +#: src/components/RichTextTag.tsx:153 +msgid "Mute {tag}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 +#: src/view/com/profile/ProfileMenu.tsx:363 +#: src/view/com/profile/ProfileMenu.tsx:370 +msgid "Mute account" +msgstr "" + +#: src/view/screens/ProfileList.tsx:657 +msgid "Mute accounts" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:232 +#: src/components/dms/ConvoMenu.tsx:238 +msgid "Mute conversation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:253 +msgid "Mute in:" +msgstr "" + +#: src/view/screens/ProfileList.tsx:779 +msgid "Mute list" +msgstr "" + +#: src/view/screens/ProfileList.tsx:774 +msgid "Mute these accounts?" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:185 +msgid "Mute this word for 24 hours" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:224 +msgid "Mute this word for 30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:209 +msgid "Mute this word for 7 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:258 +msgid "Mute this word in post text and tags" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:274 +msgid "Mute this word in tags only" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:170 +msgid "Mute this word until you unmute it" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 +msgid "Mute thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 +msgid "Mute words & tags" +msgstr "" + +#: src/screens/Moderation/index.tsx:267 +msgid "Muted accounts" +msgstr "" + +#: src/Navigation.tsx:186 +#: src/view/screens/ModerationMutedAccounts.tsx:118 +msgid "Muted Accounts" +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:204 +msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:92 +msgid "Muted by \"{0}\"" +msgstr "" + +#: src/screens/Moderation/index.tsx:237 +msgid "Muted words & tags" +msgstr "" + +#: src/view/screens/ProfileList.tsx:776 +msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:35 +#: src/components/dialogs/BirthDateSettings.tsx:38 +msgid "My Birthday" +msgstr "" + +#: src/view/screens/Feeds.tsx:704 +msgid "My Feeds" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:268 +msgid "Name" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:133 +msgid "Name is required" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:59 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:98 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:106 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:114 +#: src/lib/moderation/useReportOptions.ts:59 +#: src/lib/moderation/useReportOptions.ts:98 +#: src/lib/moderation/useReportOptions.ts:106 +#: src/lib/moderation/useReportOptions.ts:114 +msgid "Name or Description Violates Community Standards" +msgstr "" + +#: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:107 +msgid "Nature" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:130 +#: src/components/StarterPack/StarterPackCard.tsx:160 +msgid "Navigate to {0}" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:131 +msgid "Navigate to starter pack" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:344 +#: src/view/com/modals/ChangePassword.tsx:180 +msgid "Navigates to the next screen" +msgstr "" + +#: src/view/shell/Drawer.tsx:77 +msgid "Navigates to your profile" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:271 +#: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:128 +msgid "Need to report a copyright violation?" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:282 +msgid "Never lose access to your followers or data." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:567 +msgid "Nevermind, create a handle for me" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199 +msgid "New" +msgstr "" + +#: src/view/screens/Lists.tsx:77 +#: src/view/screens/ModerationModlists.tsx:77 +msgctxt "action" +msgid "New" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:67 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 +msgid "New chat" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:222 +msgid "New email address" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 +msgid "New Feature" +msgstr "" + +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:221 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:229 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:375 +msgid "New handle" +msgstr "" + +#: src/view/screens/Lists.tsx:69 +#: src/view/screens/ModerationModlists.tsx:69 +msgid "New list" +msgstr "" + +#: src/components/dms/NewMessagesPill.tsx:92 +msgid "New messages" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:230 +msgid "New Moderation List" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:141 +#: src/view/com/modals/ChangePassword.tsx:224 +msgid "New password" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:229 +msgid "New Password" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:241 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Notifications.tsx:167 +#: src/view/screens/Profile.tsx:510 +#: src/view/screens/ProfileList.tsx:250 +#: src/view/screens/ProfileList.tsx:288 +msgid "New post" +msgstr "" + +#: src/view/com/feeds/FeedPage.tsx:166 +msgctxt "action" +msgid "New post" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:527 +msgctxt "action" +msgid "New Post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/components/NewskieDialog.tsx:83 +msgid "New user info dialog" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:225 +msgid "New User List" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 +msgid "Newest replies first" +msgstr "" + +#: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:108 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241 +msgid "News" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:137 +#: src/screens/Login/ForgotPasswordForm.tsx:143 +#: src/screens/Login/LoginForm.tsx:343 +#: src/screens/Login/LoginForm.tsx:350 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 +#: src/screens/Signup/BackNextButtons.tsx:67 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 +#: src/view/com/modals/ChangePassword.tsx:265 +#: src/view/com/modals/ChangePassword.tsx:267 +msgid "Next" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:169 +msgid "Next image" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:108 +msgid "No app passwords yet" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:397 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:399 +msgid "No DNS Panel" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:140 +msgid "No expiry set" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:232 +msgid "No featured GIFs found. There may be an issue with Tenor." +msgstr "" + +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:119 +msgid "No feeds found. Try searching for something else." +msgstr "" + +#: src/components/live/LinkPreview.tsx:63 +msgid "No image" +msgstr "" + +#: src/components/LikedByList.tsx:84 +#: src/view/com/post-thread/PostLikedBy.tsx:84 +msgid "No likes yet" +msgstr "" + +#: src/components/ProfileCard.tsx:496 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 +msgid "No longer following {0}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:139 +msgid "No messages yet" +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:122 +msgid "No notifications yet!" +msgstr "" + +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 +msgid "No one" +msgstr "" + +#: src/components/WhoCanReply.tsx:269 +msgid "No one but the author can quote this post." +msgstr "" + +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:66 +msgid "No posts yet." +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:105 +msgid "No quotes yet" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:90 +msgid "No reposts yet" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:172 +msgid "No result" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:223 +#: src/components/ProgressGuide/FollowDialog.tsx:212 +msgid "No results" +msgstr "" + +#: src/screens/Search/Explore.tsx:786 +msgid "No results for \"{0}\"." +msgstr "" + +#: src/components/Lists.tsx:190 +msgid "No results found" +msgstr "" + +#: src/view/screens/Feeds.tsx:473 +msgid "No results found for \"{query}\"" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 +msgid "No results found for {query}" +msgstr "" + +#: src/screens/Search/Explore.tsx:790 +msgid "No results." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:230 +msgid "No search results found for \"{search}\"." +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 +msgid "No thanks" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 +msgid "Nobody" +msgstr "" + +#: src/components/LikedByList.tsx:86 +#: src/view/com/post-thread/PostLikedBy.tsx:86 +msgid "Nobody has liked this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:107 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:92 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:104 +msgid "Nobody was found. Try searching for someone else." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:42 +msgid "Non-sexual Nudity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 +msgid "Not followed by anyone you're following" +msgstr "" + +#: src/Navigation.tsx:166 +#: src/view/screens/Profile.tsx:125 +msgid "Not Found" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:480 +msgid "Note about sharing" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 +msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 +msgid "Nothing here" +msgstr "" + +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 +msgid "Notification settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:139 +msgid "Notification sounds" +msgstr "" + +#: src/screens/Messages/Settings.tsx:136 +msgid "Notification Sounds" +msgstr "" + +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 +msgid "Notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:135 +msgid "now" +msgstr "" + +#: src/components/dms/MessageItem.tsx:274 +msgid "Now" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:150 +#: src/view/com/composer/labels/LabelsBtn.tsx:153 +msgid "Nudity" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:78 +#: src/lib/moderation/useReportOptions.ts:78 +msgid "Nudity or adult content not labeled as such" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 +msgid "Off" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 +msgid "Oh no!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:124 +msgid "Oh no! Something went wrong." +msgstr "" + +#. Confirm button text. +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:48 +#: src/screens/Settings/AppIconSettings/index.tsx:48 +#: src/screens/Settings/AppIconSettings/index.tsx:229 +msgid "OK" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:37 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 +msgid "Okay" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 +msgid "Oldest replies first" +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:82 +msgid "on<0><1/><2><3/>" +msgstr "" + +#: src/screens/Settings/Settings.tsx:388 +msgid "Onboarding reset" +msgstr "" + +#: src/view/com/composer/Composer.tsx:347 +msgid "One or more GIFs is missing alt text." +msgstr "" + +#: src/view/com/composer/Composer.tsx:344 +msgid "One or more images is missing alt text." +msgstr "" + +#: src/view/com/composer/Composer.tsx:354 +msgid "One or more videos is missing alt text." +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:115 +msgid "Only .jpg and .png files are supported" +msgstr "" + +#: src/components/WhoCanReply.tsx:249 +msgid "Only {0} can reply." +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" + +#: src/lib/media/picker.shared.ts:32 +msgid "Only image files are supported" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 +msgid "Only WebVTT (.vtt) files are supported" +msgstr "" + +#: src/components/Lists.tsx:95 +msgid "Oops, something went wrong!" +msgstr "" + +#: src/components/Lists.tsx:174 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 +#: src/components/StarterPack/ProfileStarterPacks.tsx:341 +#: src/screens/Settings/AppPasswords.tsx:59 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:106 +#: src/view/screens/Profile.tsx:125 +msgid "Oops!" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:278 +msgid "Open" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:284 +msgid "Open avatar creator" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:368 +#: src/screens/Messages/components/ChatListItem.tsx:369 +msgid "Open conversation options" +msgstr "" + +#: src/components/Layout/Header/index.tsx:159 +msgid "Open drawer menu" +msgstr "" + +#: src/screens/Messages/components/MessageInput.web.tsx:181 +#: src/view/com/composer/Composer.tsx:1325 +msgid "Open emoji picker" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:191 +msgid "Open feed info screen" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:291 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:296 +msgid "Open feed options menu" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:27 +msgid "Open full emoji list" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/components/dms/ActionsWrapper.tsx:35 +msgid "Open message options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:453 +msgid "Open moderation debug page" +msgstr "" + +#: src/screens/Moderation/index.tsx:233 +msgid "Open muted words and tags settings" +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:119 +msgid "Open pack" +msgstr "" + +#: src/components/PostControls/PostMenu/index.tsx:62 +msgid "Open post options menu" +msgstr "" + +#: src/components/live/LiveStatusDialog.tsx:189 +#: src/components/live/LiveStatusDialog.tsx:203 +msgid "Open profile" +msgstr "" + +#: src/components/PostControls/ShareMenu/index.tsx:87 +msgid "Open share menu" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:566 +msgid "Open starter pack menu" +msgstr "" + +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 +msgid "Open storybook page" +msgstr "" + +#: src/screens/Settings/Settings.tsx:439 +msgid "Open system log" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:167 +msgid "Opens {numItems} options" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:62 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:61 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "" + +#: src/view/screens/Log.tsx:59 +msgid "Opens additional details for a debug entry" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:44 +msgid "Opens alt text dialog" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +msgid "Opens camera on device" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:43 +msgid "Opens captions and alt text dialog" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:129 +msgid "Opens change handle dialog" +msgstr "" + +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 +msgid "Opens composer" +msgstr "" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 +msgid "Opens device photo gallery" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1326 +msgid "Opens emoji picker" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:49 +#: src/view/com/auth/SplashScreen.web.tsx:111 +msgid "Opens flow to create a new Bluesky account" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:63 +#: src/view/com/auth/SplashScreen.web.tsx:125 +msgid "Opens flow to sign in to your existing Bluesky account" +msgstr "" + +#: src/view/com/composer/photos/SelectGifBtn.tsx:36 +msgid "Opens GIF select dialog" +msgstr "" + +#: src/screens/Settings/Settings.tsx:237 +msgid "Opens helpdesk in browser" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:173 +msgid "Opens list of invite codes" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:576 +msgid "Opens live status dialog" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:249 +msgid "Opens password reset form" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 +msgid "Opens this profile" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +msgid "Opens video picker" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:221 +#: src/components/ReportDialog/SubmitView.tsx:168 +msgid "Optionally provide additional information below:" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:299 +msgid "Options:" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 +msgid "Or combine these options:" +msgstr "" + +#: src/screens/Deactivated.tsx:200 +msgid "Or, continue with another account." +msgstr "" + +#: src/screens/Deactivated.tsx:187 +msgid "Or, sign in to one of your other accounts." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:52 +msgid "OTA status: ..." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:48 +msgid "OTA status: Available!" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:50 +msgid "OTA status: Error fetching update" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:54 +msgid "OTA status: None available" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27 +#: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:185 +msgid "Other" +msgstr "" + +#: src/components/AccountList.tsx:88 +msgid "Other account" +msgstr "" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:93 +msgid "Other..." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:348 +msgid "Our moderation team has received your report." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:28 +msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." +msgstr "" + +#: src/components/Lists.tsx:191 +#: src/view/screens/NotFound.tsx:47 +msgid "Page not found" +msgstr "" + +#: src/view/screens/NotFound.tsx:44 +msgid "Page Not Found" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 +#: src/view/com/modals/DeleteAccount.tsx:239 +#: src/view/com/modals/DeleteAccount.tsx:246 +msgid "Password" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:154 +msgid "Password Changed" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:99 +msgid "Password must be at least 8 characters long." +msgstr "" + +#: src/screens/Login/index.tsx:181 +msgid "Password updated" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:23 +msgid "Password updated!" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 +msgid "Pause" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 +msgid "Pause video" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:67 +#: src/screens/StarterPack/StarterPackScreen.tsx:189 +#: src/view/screens/ProfileList.tsx:170 +msgid "People" +msgstr "" + +#: src/Navigation.tsx:237 +msgid "People followed by @{0}" +msgstr "" + +#: src/Navigation.tsx:230 +msgid "People following @{0}" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "" + +#: src/lib/media/save-image.ts:51 +msgid "Permission to access your photo library was denied. Please enable it in your system settings." +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +msgid "Person toggle" +msgstr "" + +#: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:109 +msgid "Pets" +msgstr "" + +#: src/screens/Onboarding/state.ts:110 +msgid "Photography" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:169 +msgid "Pictures meant for adults." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:530 +msgid "Pin feed" +msgstr "" + +#: src/components/FeedCard.tsx:329 +msgid "Pin Feed" +msgstr "" + +#: src/view/screens/ProfileList.tsx:714 +msgid "Pin to home" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +msgid "Pin to Home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:411 +msgid "Pinned" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:160 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:174 +msgid "Pinned {0} to Home" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:131 +msgid "Pinned Feeds" +msgstr "" + +#: src/view/screens/ProfileList.tsx:361 +msgid "Pinned to your feeds" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 +msgid "Play" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 +msgid "Play {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 +msgid "Play video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 +msgid "Play Video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 +msgid "Plays or pauses the GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 +msgid "Plays or pauses the video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 +msgid "Plays the GIF" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 +msgid "Plays the video" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:115 +msgid "Please add any content warning labels that are applicable for the media you are posting." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + +#: src/screens/Signup/state.ts:286 +msgid "Please choose your handle." +msgstr "" + +#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/StepInfo/index.tsx:123 +msgid "Please choose your password." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:290 +msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." +msgstr "" + +#: src/screens/Signup/state.ts:301 +msgid "Please complete the verification captcha." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 +msgid "Please double-check that you have entered your email address correctly." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:58 +msgid "Please enter a password." +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:94 +msgid "Please enter a password. It must be at least 8 characters long." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114 +msgid "Please enter a unique name for this app password or use our randomly generated one." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:135 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145 +msgid "Please enter a valid code." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:148 +msgid "Please enter a valid email address." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:86 +msgid "Please enter a valid word, tag, or phrase to mute" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 +msgid "Please enter the code we sent to <0>{0} below." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:247 +msgid "Please enter the security code we sent to your previous email address." +msgstr "" + +#: src/screens/Signup/state.ts:262 +#: src/screens/Signup/StepInfo/index.tsx:94 +msgid "Please enter your email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:87 +msgid "Please enter your invite code." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:217 +msgid "Please enter your new email address." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:99 +msgid "Please enter your password" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:235 +msgid "Please enter your password as well:" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:94 +msgid "Please enter your username" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +msgid "Please explain why you think this label was incorrectly applied by {0}" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:110 +msgid "Please explain why you think your chats were incorrectly disabled" +msgstr "" + +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:31 +msgid "Please select a moderation service" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:28 +msgid "Please select a reason for this report" +msgstr "" + +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 +msgid "Please sign in as @{0}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62 +msgid "Please verify your email" +msgstr "" + +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" + +#: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:111 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235 +msgid "Politics" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:156 +msgid "Porn" +msgstr "" + +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 +msgctxt "description" +msgid "Post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1034 +msgctxt "action" +msgid "Post All" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 +msgid "Post by {0}" +msgstr "" + +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 +msgid "Post by @{0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 +msgctxt "toast" +msgid "Post deleted" +msgstr "" + +#: src/lib/api/index.ts:186 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 +#: src/screens/VideoFeed/index.tsx:529 +msgid "Post has been deleted" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:271 +msgid "Post hidden" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:107 +#: src/lib/moderation/useModerationCauseDescription.ts:106 +msgid "Post Hidden by Muted Word" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:110 +#: src/lib/moderation/useModerationCauseDescription.ts:115 +msgid "Post Hidden by You" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 +msgid "Post interaction settings" +msgstr "" + +#: src/Navigation.tsx:197 +#: src/screens/ModerationInteractionSettings/index.tsx:34 +msgid "Post Interaction Settings" +msgstr "" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:89 +msgid "Post language" +msgstr "" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:77 +msgid "Post Languages" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 +msgid "Post not found" +msgstr "" + +#: src/state/queries/pinned-post.ts:59 +msgctxt "toast" +msgid "Post pinned" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgctxt "toast" +msgid "Post unpinned" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 +#: src/screens/StarterPack/StarterPackScreen.tsx:191 +#: src/view/screens/Profile.tsx:225 +#: src/view/screens/ProfileList.tsx:170 +msgid "Posts" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:115 +msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 +msgid "Posts hidden" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:19 +msgid "Press to attempt reconnection" +msgstr "" + +#: src/components/Error.tsx:60 +#: src/components/Lists.tsx:100 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:47 +msgid "Press to retry" +msgstr "" + +#: src/components/KnownFollowers.tsx:129 +msgid "Press to view followers of this account that you also follow" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:150 +msgid "Previous image" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:120 +msgid "Primary Language" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 +msgid "Prioritize your Follows" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:110 +#: src/view/shell/desktop/RightNav.tsx:111 +msgid "Privacy" +msgstr "" + +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 +msgid "Privacy and security" +msgstr "" + +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 +msgid "Privacy and Security" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 +#: src/screens/Settings/AboutSettings.tsx:92 +#: src/screens/Settings/AboutSettings.tsx:95 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 +msgid "Privacy Policy" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1740 +msgid "Processing video..." +msgstr "" + +#: src/lib/api/index.ts:60 +#: src/screens/Login/ForgotPasswordForm.tsx:149 +msgid "Processing..." +msgstr "" + +#: src/view/screens/DebugMod.tsx:927 +#: src/view/screens/Profile.tsx:364 +msgid "profile" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 +#: src/view/shell/Drawer.tsx:76 +#: src/view/shell/Drawer.tsx:559 +msgid "Profile" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:196 +msgctxt "toast" +msgid "Profile updated" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:264 +msgid "Public" +msgstr "" + +#: src/view/com/lists/MyLists.tsx:77 +msgid "Public, sharable lists of users to mute or block in bulk." +msgstr "" + +#: src/view/com/lists/MyLists.tsx:72 +msgid "Public, sharable lists which can be used to drive feeds." +msgstr "" + +#. Accessibility label for button to publish a single post +#: src/view/com/composer/Composer.tsx:1016 +msgid "Publish post" +msgstr "" + +#. Accessibility label for button to publish multiple posts in a thread +#: src/view/com/composer/Composer.tsx:1009 +msgid "Publish posts" +msgstr "" + +#. Accessibility label for button to publish multiple replies in a thread +#: src/view/com/composer/Composer.tsx:994 +msgid "Publish replies" +msgstr "" + +#. Accessibility label for button to publish a single reply +#: src/view/com/composer/Composer.tsx:1001 +msgid "Publish reply" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:134 +msgid "QR code copied to your clipboard!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:112 +msgid "QR code has been downloaded!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:113 +msgid "QR code saved to your camera roll!" +msgstr "" + +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 +msgid "Quote post" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 +msgid "Quote post was re-attached" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 +msgid "Quote post was successfully detached" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 +msgid "Quote posts disabled" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 +msgid "Quote settings" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:154 +#: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +msgid "Quotes" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 +msgid "Quotes of this post" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 +msgid "Random (aka \"Poster's Roulette\")" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:600 +msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 +msgid "Re-attach quote" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.tsx:85 +msgid "React with {emoji}" +msgstr "" + +#: src/screens/Deactivated.tsx:141 +msgid "Reactivate your account" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 +msgid "Read blog post" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:966 +msgid "Read less" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:966 +msgid "Read more" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:173 +msgid "Read the Bluesky blog" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 +msgid "Read the Bluesky Privacy Policy" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 +msgid "Read the Bluesky Terms of Service" +msgstr "" + +#: src/screens/Takendown.tsx:162 +#: src/screens/Takendown.tsx:170 +msgid "Reason for appeal" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:212 +msgid "Reason:" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:49 +msgid "Recent Searches" +msgstr "" + +#: src/screens/Search/modules/ExploreRecommendations.tsx:54 +msgid "Recommended" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:20 +msgid "Reconnect" +msgstr "" + +#. Reject a chat request, this opens a menu with options +#: src/screens/Messages/components/RequestButtons.tsx:124 +msgid "Reject" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:112 +msgid "Reject chat request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 +msgid "Reload conversations" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 +#: src/components/dialogs/MutedWords.tsx:438 +#: src/components/FeedCard.tsx:343 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 +#: src/screens/Settings/Settings.tsx:662 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 +msgid "Remove" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 +msgid "Remove {displayName} from starter pack" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:94 +msgid "Remove {historyItem}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 +msgid "Remove account" +msgstr "" + +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +msgid "Remove attachment" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 +msgid "Remove Avatar" +msgstr "" + +#: src/view/com/util/UserBanner.tsx:186 +#: src/view/com/util/UserBanner.tsx:189 +msgid "Remove Banner" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:209 +msgid "Remove embed" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:116 +#: src/view/com/posts/FeedShutdownMsg.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 +msgid "Remove feed" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 +msgid "Remove feed?" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/view/screens/ProfileList.tsx:528 +#: src/view/screens/SavedFeeds.tsx:350 +msgid "Remove from my feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:654 +msgid "Remove from quick access?" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:170 +#: src/screens/List/ListHiddenScreen.tsx:174 +msgid "Remove from saved feeds" +msgstr "" + +#: src/components/FeedCard.tsx:338 +msgid "Remove from your feeds?" +msgstr "" + +#: src/view/com/composer/photos/Gallery.tsx:204 +msgid "Remove image" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:240 +#: src/components/live/EditLiveDialog.tsx:247 +msgid "Remove live status" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:523 +msgid "Remove mute word from your list" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:167 +msgid "Remove profile" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 +msgid "Remove repost" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:261 +msgid "Remove subtitle file" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 +msgid "Remove this feed from your saved feeds" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157 +msgid "Remove user from list" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:46 +#: src/components/verification/VerificationsDialog.tsx:247 +#: src/view/com/profile/ProfileMenu.tsx:336 +#: src/view/com/profile/ProfileMenu.tsx:339 +msgid "Remove verification" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:44 +msgid "Remove your verification for this account?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:208 +msgid "Removed by author" +msgstr "" + +#: src/components/Post/Embed/index.tsx:206 +msgid "Removed by you" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 +msgid "Removed from list" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:94 +msgid "Removed from saved feeds" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:122 +#: src/view/com/posts/FeedShutdownMsg.tsx:44 +#: src/view/screens/ProfileList.tsx:392 +msgid "Removed from your feeds" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:32 +msgid "Removed verification" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:129 +#: src/view/com/posts/FeedShutdownMsg.tsx:133 +msgid "Replace with Discover" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/view/screens/Profile.tsx:226 +msgid "Replies" +msgstr "" + +#: src/components/WhoCanReply.tsx:79 +msgid "Replies disabled" +msgstr "" + +#: src/components/WhoCanReply.tsx:247 +msgid "Replies to this post are disabled." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1032 +msgctxt "action" +msgid "Reply" +msgstr "" + +#. Accessibility label for the reply button, verb form followed by number of replies and noun form +#: src/components/PostControls/index.tsx:207 +msgid "Reply ({0, plural, one {# reply} other {# replies}})" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:116 +#: src/lib/moderation/useModerationCauseDescription.ts:125 +msgid "Reply Hidden by Thread Author" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:115 +#: src/lib/moderation/useModerationCauseDescription.ts:124 +msgid "Reply Hidden by You" +msgstr "" + +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +msgid "Reply settings" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 +msgid "Reply settings are chosen by the author of the thread" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 +msgid "Reply sorting" +msgstr "" + +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 +msgctxt "description" +msgid "Reply to <0><1/>" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:593 +msgctxt "description" +msgid "Reply to a blocked post" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:595 +msgctxt "description" +msgid "Reply to a post" +msgstr "" + +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 +msgctxt "description" +msgid "Reply to you" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 +msgctxt "toast" +msgid "Reply visibility updated" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 +msgid "Reply was successfully hidden" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:166 +#: src/components/dms/MessagesListBlockedFooter.tsx:85 +#: src/components/dms/MessagesListBlockedFooter.tsx:92 +msgid "Report" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:403 +#: src/view/com/profile/ProfileMenu.tsx:406 +msgid "Report account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:255 +#: src/components/dms/ConvoMenu.tsx:258 +#: src/components/dms/ReportConversationPrompt.tsx:17 +#: src/screens/Messages/components/RequestButtons.tsx:155 +#: src/screens/Messages/components/RequestButtons.tsx:158 +msgid "Report conversation" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:71 +#: src/components/moderation/ReportDialog/index.tsx:198 +#: src/components/ReportDialog/index.tsx:44 +msgid "Report dialog" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 +msgid "Report feed" +msgstr "" + +#: src/view/screens/ProfileList.tsx:570 +msgid "Report list" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:164 +msgid "Report message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 +msgid "Report post" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:630 +#: src/screens/StarterPack/StarterPackScreen.tsx:633 +msgid "Report starter pack" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:345 +msgid "Report submitted" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:41 +msgid "Report this content" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:31 +#: src/components/ReportDialog/SelectReportOptionView.tsx:54 +msgid "Report this feed" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:25 +#: src/components/ReportDialog/SelectReportOptionView.tsx:51 +msgid "Report this list" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:59 +#: src/components/dms/ReportDialog.tsx:180 +#: src/components/moderation/ReportDialog/copy.ts:43 +#: src/components/ReportDialog/SelectReportOptionView.tsx:60 +msgid "Report this message" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:19 +#: src/components/ReportDialog/SelectReportOptionView.tsx:48 +msgid "Report this post" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:37 +#: src/components/ReportDialog/SelectReportOptionView.tsx:57 +msgid "Report this starter pack" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:13 +#: src/components/ReportDialog/SelectReportOptionView.tsx:45 +msgid "Report this user" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 +msgctxt "action" +msgid "Repost" +msgstr "" + +#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form +#: src/components/PostControls/RepostButton.tsx:76 +msgid "Repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:144 +#: src/components/PostControls/RepostButton.web.tsx:43 +#: src/components/PostControls/RepostButton.web.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:561 +msgid "Repost or quote post" +msgstr "" + +#: src/screens/Post/PostRepostedBy.tsx:38 +msgid "Reposted By" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:351 +msgid "Reposted by {0}" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:370 +msgid "Reposted by <0><1/>" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 +msgid "Reposted by you" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 +msgid "Reposts of this post" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:253 +#: src/view/com/modals/ChangePassword.tsx:255 +msgid "Request Code" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 +msgid "Require alt text before posting" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96 +msgid "Require an email code to sign in to your account." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:181 +msgid "Required for this provider" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40 +msgid "Resend" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 +msgid "Resend email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:130 +msgid "Resend Email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 +msgid "Resend Verification Email" +msgstr "" + +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/view/com/modals/ChangePassword.tsx:197 +msgid "Reset code" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:204 +msgid "Reset Code" +msgstr "" + +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 +msgid "Reset onboarding state" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:80 +msgid "Reset password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:324 +msgid "Retries signing in" +msgstr "" + +#: src/view/com/util/error/ErrorMessage.tsx:62 +#: src/view/com/util/error/ErrorScreen.tsx:99 +msgid "Retries the last action, which errored out" +msgstr "" + +#: src/components/dms/MessageItem.tsx:321 +#: src/components/Error.tsx:65 +#: src/components/Lists.tsx:111 +#: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 +#: src/components/StarterPack/ProfileStarterPacks.tsx:346 +#: src/screens/Login/LoginForm.tsx:323 +#: src/screens/Login/LoginForm.tsx:330 +#: src/screens/Messages/ChatList.tsx:280 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Messages/Inbox.tsx:218 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 +#: src/screens/Signup/BackNextButtons.tsx:53 +#: src/view/com/util/error/ErrorMessage.tsx:60 +#: src/view/com/util/error/ErrorScreen.tsx:97 +msgid "Retry" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:226 +msgid "Retry loading report options" +msgstr "" + +#: src/components/Error.tsx:73 +#: src/screens/List/ListHiddenScreen.tsx:219 +#: src/screens/StarterPack/StarterPackScreen.tsx:767 +msgid "Return to previous page" +msgstr "" + +#: src/view/screens/NotFound.tsx:61 +msgid "Returns to home page" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:93 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:559 +#: src/screens/VideoFeed/index.tsx:1142 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileList.tsx:1039 +msgid "Returns to previous page" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:304 +msgid "Returns to the previous step" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:121 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 +#: src/components/live/EditLiveDialog.tsx:216 +#: src/components/live/EditLiveDialog.tsx:223 +#: src/components/StarterPack/QrCodeDialog.tsx:192 +#: src/screens/Profile/Header/EditProfileDialog.tsx:243 +#: src/screens/Profile/Header/EditProfileDialog.tsx:257 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:262 +#: src/view/com/composer/GifAltText.tsx:193 +#: src/view/com/composer/GifAltText.tsx:202 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:75 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 +#: src/view/com/modals/CreateOrEditList.tsx:315 +#: src/view/screens/SavedFeeds.tsx:117 +msgid "Save" +msgstr "" + +#: src/view/com/lightbox/ImageViewing/index.tsx:610 +#: src/view/com/modals/CreateOrEditList.tsx:323 +msgctxt "action" +msgid "Save" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:115 +msgid "Save birthday" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 +msgid "Save changes" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:131 +#: src/components/StarterPack/ShareDialog.tsx:138 +msgid "Save image" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:104 +msgid "Save image crop" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:248 +msgid "Save new handle" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:186 +msgid "Save QR code" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +msgid "Save to my feeds" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:172 +msgid "Saved Feeds" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:132 +#: src/view/screens/ProfileList.tsx:372 +msgid "Saved to your feeds" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:105 +msgid "Saves image crop settings" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:33 +#: src/components/NewskieDialog.tsx:105 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 +msgid "Say hello!" +msgstr "" + +#: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:112 +msgid "Science" +msgstr "" + +#: src/view/screens/ProfileList.tsx:996 +msgid "Scroll to top" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:514 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/screens/Search/Shell.tsx:307 +#: src/screens/Search/Shell.tsx:464 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 +msgid "Search" +msgstr "" + +#: src/Navigation.tsx:256 +#: src/screens/Profile/ProfileSearch.tsx:37 +msgid "Search @{0}'s posts" +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:683 +msgid "Search by name or interest" +msgstr "" + +#: src/view/screens/Feeds.tsx:444 +msgid "Search feeds" +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:524 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135 +msgid "Search for \"{interestsDisplayName}\"{activeText}" +msgstr "" + +#: src/view/shell/desktop/Search.tsx:131 +msgid "Search for \"{query}\"" +msgstr "" + +#: src/screens/Search/components/AutocompleteResults.tsx:45 +msgid "Search for \"{searchText}\"" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:513 +msgid "Search for feeds that you want to suggest to others." +msgstr "" + +#: src/screens/Search/Explore.tsx:360 +msgid "Search for more accounts" +msgstr "" + +#: src/screens/Search/Explore.tsx:437 +msgid "Search for more feeds" +msgstr "" + +#: src/screens/Search/Shell.tsx:334 +msgid "Search for posts, users, or feeds" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:178 +msgid "Search GIFs" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:36 +msgid "Search my posts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:263 +#: src/view/com/profile/ProfileMenu.tsx:266 +msgid "Search posts" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/ProgressGuide/FollowDialog.tsx:702 +msgid "Search profiles" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:179 +msgid "Search Tenor" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:38 +msgid "Search..." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:535 +#: src/components/ProgressGuide/FollowDialog.tsx:703 +msgid "Searches for profiles" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:243 +msgid "Security step required" +msgstr "" + +#: src/components/RichTextTag.tsx:111 +msgid "See {tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:124 +msgid "See {tag} posts by user" +msgstr "" + +#: src/components/RichTextTag.tsx:118 +msgid "See #{tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:132 +msgid "See #{tag} posts by user" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:178 +msgid "See jobs at Bluesky" +msgstr "" + +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 +msgid "See this guide" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 +msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" +msgstr "" + +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 +msgid "Select a color" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:77 +msgid "Select account" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:60 +msgid "Select an app language" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +msgid "Select an avatar" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 +msgid "Select an emoji" +msgstr "" + +#: src/components/Select/index.tsx:204 +msgid "Select an option" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:98 +msgid "Select app language" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:164 +msgid "Select content languages" +msgstr "" + +#: src/components/live/GoLiveDialog.tsx:179 +msgid "Select duration" +msgstr "" + +#: src/screens/Login/index.tsx:144 +msgid "Select from an existing account" +msgstr "" + +#: src/view/com/composer/photos/SelectGifBtn.tsx:35 +msgid "Select GIF" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:307 +msgid "Select GIF \"{0}\"" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:142 +msgid "Select how long to mute this word for." +msgstr "" + +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:248 +msgid "Select language..." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:178 +msgid "Select languages" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:310 +msgid "Select moderation service" +msgstr "" + +#: src/components/ReportDialog/SelectLabelerView.tsx:28 +msgid "Select moderator" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:131 +msgid "Select primary language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 +msgid "Select subtitle file (.vtt)" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83 +msgid "Select the {emojiName} emoji as your avatar" +msgstr "" + +#: src/components/ReportDialog/SubmitView.tsx:141 +msgid "Select the moderation service(s) to report to" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:74 +msgid "Select video" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:242 +msgid "Select what content this mute word should apply to." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:91 +msgid "Select which language to use for the app's user interface." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:157 +msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:274 +msgid "Select your date of birth" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Settings/InterestsSettings.tsx:161 +msgid "Select your interests from the options below" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:124 +msgid "Select your preferred language for translations in your feed." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 +msgid "Selects option {0} of {numItems}" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:38 +msgid "Send a neat website!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 +#: src/view/com/modals/DeleteAccount.tsx:145 +msgid "Send email" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:158 +msgctxt "action" +msgid "Send Email" +msgstr "" + +#: src/view/shell/Drawer.tsx:350 +msgid "Send feedback" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:192 +#: src/screens/Messages/components/MessageInput.web.tsx:235 +msgid "Send message" +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 +msgid "Send post to {name}" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 +msgid "Send post to..." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:271 +#: src/components/dms/ReportDialog.tsx:274 +#: src/components/ReportDialog/SubmitView.tsx:221 +#: src/components/ReportDialog/SubmitView.tsx:225 +msgid "Send report" +msgstr "" + +#: src/components/ReportDialog/SelectLabelerView.tsx:42 +msgid "Send report to {0}" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:649 +msgid "Send report to {title}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 +msgid "Send verification email" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 +msgid "Send via direct message" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:147 +msgid "Sends email with confirmation code for account deletion" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:167 +msgid "Server address" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:178 +msgid "Set app icon to {0}" +msgstr "" + +#: src/screens/Moderation/index.tsx:333 +msgid "Set birthdate" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:106 +msgid "Set new password" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:47 +msgid "Set up your account" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:107 +msgid "Sets email for password reset" +msgstr "" + +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 +msgid "Settings" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:102 +msgctxt "toast" +msgid "Settings saved" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:173 +msgid "Sexual activity or erotic nudity." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:38 +msgid "Sexually Suggestive" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:182 +#: src/screens/Hashtag.tsx:126 +#: src/screens/StarterPack/StarterPackScreen.tsx:433 +#: src/screens/Topic.tsx:102 +#: src/view/screens/ProfileList.tsx:513 +msgid "Share" +msgstr "" + +#: src/view/com/lightbox/ImageViewing/index.tsx:619 +msgctxt "action" +msgid "Share" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:37 +msgid "Share a cool story!" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:36 +msgid "Share a fun fact!" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:485 +msgid "Share anyway" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 +msgid "Share author DID" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 +#: src/components/StarterPack/ShareDialog.tsx:104 +#: src/components/StarterPack/ShareDialog.tsx:111 +msgid "Share link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:68 +msgid "Share link dialog" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 +msgid "Share post at:// URI" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:115 +#: src/components/StarterPack/ShareDialog.tsx:126 +msgid "Share QR code" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:474 +msgid "Share this feed" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:426 +msgid "Share this starter pack" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:80 +msgid "Share this starter pack and help people join your community on Bluesky." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/screens/StarterPack/StarterPackScreen.tsx:611 +#: src/screens/StarterPack/StarterPackScreen.tsx:619 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:256 +msgid "Share via..." +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:34 +msgid "Share your favorite feed!" +msgstr "" + +#: src/Navigation.tsx:315 +msgid "Shared Preferences Tester" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 +msgid "Show" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 +msgid "Show alt text" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/screens/List/ListHiddenScreen.tsx:190 +#: src/screens/VideoFeed/index.tsx:628 +#: src/screens/VideoFeed/index.tsx:634 +msgid "Show anyway" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:27 +#: src/lib/moderation/useLabelBehaviorDescription.ts:63 +msgid "Show badge" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:61 +msgid "Show badge and filter from feeds" +msgstr "" + +#: src/components/dialogs/Embed.tsx:129 +msgid "Show customization options" +msgstr "" + +#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 +msgid "Show hidden replies" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 +msgid "Show less like this" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:186 +msgid "Show list anyway" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:51 +msgid "Show More" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 +msgid "Show more like this" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "" + +#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 +msgid "Show muted replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 +msgid "Show quote posts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 +msgid "Show replies" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 +msgid "Show replies as" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:285 +msgid "Show replies as threaded" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 +msgid "Show replies by people you follow before all other replies" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 +msgid "Show reply for everyone" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 +msgid "Show reposts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 +msgid "Show samples of your saved feeds in your Following feed" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:58 +msgid "Show warning" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:56 +msgid "Show warning and filter from feeds" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 +msgid "Shows information about when this post was created" +msgstr "" + +#: src/screens/Settings/Settings.tsx:125 +msgid "Shows other accounts you can switch to" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 +msgid "Shows the content" +msgstr "" + +#: src/components/dialogs/Signin.tsx:97 +#: src/components/dialogs/Signin.tsx:99 +#: src/screens/Login/index.tsx:122 +#: src/screens/Login/index.tsx:143 +#: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 +#: src/view/com/auth/SplashScreen.tsx:61 +#: src/view/com/auth/SplashScreen.tsx:69 +#: src/view/com/auth/SplashScreen.web.tsx:123 +#: src/view/com/auth/SplashScreen.web.tsx:131 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 +msgid "Sign in" +msgstr "" + +#: src/components/AccountList.tsx:129 +msgid "Sign in as {0}" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:80 +msgid "Sign in as..." +msgstr "" + +#: src/screens/Deactivated.tsx:203 +#: src/screens/Deactivated.tsx:209 +msgid "Sign in or create an account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:75 +msgid "Sign in or create your account to join the conversation!" +msgstr "" + +#: src/components/AccountList.tsx:68 +msgid "Sign in to account that is not listed" +msgstr "" + +#: src/components/dialogs/Signin.tsx:46 +msgid "Sign in to Bluesky or create a new account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 +#: src/screens/SignupQueued.tsx:93 +#: src/screens/SignupQueued.tsx:96 +#: src/screens/Takendown.tsx:85 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 +msgid "Sign out" +msgstr "" + +#: src/screens/Takendown.tsx:88 +msgid "Sign Out" +msgstr "" + +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 +msgid "Sign out?" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:91 +#: src/lib/moderation/useGlobalLabelStrings.ts:28 +msgid "Sign-in Required" +msgstr "" + +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 +msgid "Signed in as @{0}" +msgstr "" + +#: src/components/FeedInterstitials.tsx:389 +msgid "Similar accounts" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:201 +msgid "Skip" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:228 +msgid "Skip this flow" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:167 +msgid "Smaller" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 +msgid "Snoozes the reminder" +msgstr "" + +#: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:100 +msgid "Software Dev" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:120 +msgid "Some of your verifications are invalid." +msgstr "" + +#: src/components/FeedInterstitials.tsx:529 +msgid "Some other feeds you might like" +msgstr "" + +#: src/components/WhoCanReply.tsx:80 +msgid "Some people can reply" +msgstr "" + +#: src/components/dms/MessageItem.tsx:148 +msgid "Someone reacted {0}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:241 +msgid "Someone reacted {0} to {1}" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:76 +msgid "Something wasn't quite right with the data you're trying to report. Please contact support." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:144 +msgid "Something went wrong" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 +#: src/components/moderation/ReportDialog/index.tsx:223 +#: src/screens/Deactivated.tsx:94 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 +msgid "Something went wrong, please try again" +msgstr "" + +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 +msgid "Something went wrong, please try again." +msgstr "" + +#: src/components/Lists.tsx:175 +msgid "Something went wrong!" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:178 +msgid "Something went wrong. Please try again." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +msgid "Something wrong? Let us know." +msgstr "" + +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 +msgid "Sorry! Your session expired. Please sign in again." +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 +msgid "Sort replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 +msgid "Sort replies by" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 +msgid "Sort replies to the same post by:" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:178 +#: src/components/moderation/ModerationDetailsDialog.tsx:186 +msgid "Source: <0>{sourceName}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:72 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:85 +#: src/lib/moderation/useReportOptions.ts:72 +#: src/lib/moderation/useReportOptions.ts:85 +msgid "Spam" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:55 +#: src/lib/moderation/useReportOptions.ts:55 +msgid "Spam; excessive mentions or replies" +msgstr "" + +#: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:113 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 +msgid "Sports" +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 +msgid "Start a conversation, and it will appear here." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:74 +msgid "Start a new chat" +msgstr "" + +#: src/view/screens/ProfileList.tsx:846 +#: src/view/screens/ProfileList.tsx:967 +msgid "Start adding people" +msgstr "" + +#: src/view/screens/ProfileList.tsx:853 +#: src/view/screens/ProfileList.tsx:974 +msgid "Start adding people!" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:382 +msgid "Start chat with {displayName}" +msgstr "" + +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 +msgid "Starter Pack" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:90 +msgid "Starter pack by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 +msgid "Starter pack by <0/>" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:89 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:731 +msgid "Starter pack is invalid" +msgstr "" + +#: src/screens/Search/Explore.tsx:628 +#: src/view/screens/Profile.tsx:231 +msgid "Starter Packs" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:266 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:100 +#: src/screens/Settings/AboutSettings.tsx:103 +msgid "Status Page" +msgstr "" + +#: src/screens/Signup/index.tsx:163 +msgid "Step {0} of {1}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:393 +msgid "Storage cleared, you need to restart the app now." +msgstr "" + +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 +msgid "Storybook" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 +#: src/components/moderation/LabelsOnMeDialog.tsx:324 +#: src/components/moderation/LabelsOnMeDialog.tsx:325 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 +msgid "Submit" +msgstr "" + +#: src/screens/Takendown.tsx:70 +msgid "Submit appeal" +msgstr "" + +#: src/screens/Takendown.tsx:76 +msgid "Submit Appeal" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 +msgid "Submit report" +msgstr "" + +#: src/view/screens/ProfileList.tsx:741 +msgid "Subscribe" +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:231 +msgid "Subscribe to @{0} to use these labels:" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 +msgid "Subscribe to Labeler" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201 +msgid "Subscribe to this labeler" +msgstr "" + +#: src/view/screens/ProfileList.tsx:737 +msgid "Subscribe to this list" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:286 +msgid "Success!" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:36 +msgid "Successfully verified" +msgstr "" + +#: src/screens/Search/Explore.tsx:357 +msgid "Suggested Accounts" +msgstr "" + +#: src/components/FeedInterstitials.tsx:391 +msgid "Suggested for you" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:144 +#: src/view/com/composer/labels/LabelsBtn.tsx:147 +msgid "Suggestive" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 +msgctxt "Name of app icon variant" +msgid "Sunrise" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 +msgctxt "Name of app icon variant" +msgid "Sunset" +msgstr "" + +#: src/Navigation.tsx:325 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 +msgid "Support" +msgstr "" + +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 +msgid "Switch account" +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 +msgid "Switch Account" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:109 +msgid "Switch accounts" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:293 +msgid "Switch to {0}" +msgstr "" + +#: src/components/dialogs/Embed.tsx:157 +#: src/components/dialogs/Embed.tsx:159 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 +msgid "System" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:107 +#: src/screens/Settings/AboutSettings.tsx:110 +#: src/screens/Settings/Settings.tsx:441 +msgid "System log" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:282 +msgid "Tags only" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:54 +#: src/components/ContextMenu/Backdrop.ios.tsx:80 +#: src/components/ContextMenu/Backdrop.tsx:46 +msgid "Tap to close context menu" +msgstr "" + +#: src/components/ProgressGuide/Toast.tsx:156 +msgid "Tap to dismiss" +msgstr "" + +#: src/state/shell/progress-guide.tsx:233 +msgid "Task complete - 10 follows!" +msgstr "" + +#: src/state/shell/progress-guide.tsx:223 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:64 +msgid "Teach our algorithm what you like" +msgstr "" + +#: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:114 +msgid "Tech" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:35 +msgid "Tell a joke!" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:377 +msgid "Tell us a bit about yourself" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:69 +msgid "Tell us a little more" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:116 +#: src/view/shell/desktop/RightNav.tsx:117 +msgid "Terms" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 +#: src/screens/Settings/AboutSettings.tsx:84 +#: src/screens/Settings/AboutSettings.tsx:87 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 +msgid "Terms of Service" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:60 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:99 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:107 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 +#: src/lib/moderation/useReportOptions.ts:60 +#: src/lib/moderation/useReportOptions.ts:99 +#: src/lib/moderation/useReportOptions.ts:107 +#: src/lib/moderation/useReportOptions.ts:115 +msgid "Terms used violate community standards" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:266 +msgid "Text & tags" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:229 +msgid "Text field" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:288 +#: src/screens/Messages/components/ChatDisabled.tsx:108 +msgid "Text input field" +msgstr "" + +#: src/view/com/posts/ShowLessFollowup.tsx:39 +msgid "Thank you for your feedback! It has been sent to the feed operator." +msgstr "" + +#: src/components/ReportDialog/SubmitView.tsx:83 +msgid "Thank you. Your report has been sent." +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:487 +msgid "That contains the following:" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:110 +#: src/screens/StarterPack/StarterPackScreen.tsx:111 +#: src/screens/StarterPack/StarterPackScreen.tsx:155 +#: src/screens/StarterPack/StarterPackScreen.tsx:156 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 +msgid "That starter pack could not be found." +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:132 +msgid "That's all, folks!" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1114 +msgid "That's everything!" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 +#: src/view/com/profile/ProfileMenu.tsx:461 +msgid "The account will be able to interact with you after unblocking." +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:41 +#: src/screens/Settings/AppIconSettings/index.tsx:222 +msgid "The app will be restarted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:119 +#: src/lib/moderation/useModerationCauseDescription.ts:128 +msgid "The author of this thread has hidden this reply." +msgstr "" + +#: src/screens/Moderation/index.tsx:407 +msgid "The Bluesky web application" +msgstr "" + +#: src/view/screens/CommunityGuidelines.tsx:38 +msgid "The Community Guidelines have been moved to <0/>" +msgstr "" + +#: src/view/screens/CopyrightPolicy.tsx:35 +msgid "The Copyright Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:102 +msgid "The Discover feed" +msgstr "" + +#: src/state/shell/progress-guide.tsx:224 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 +msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:67 +msgid "The feed has been replaced with Discover." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:59 +msgid "The following labels were applied to your account." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:60 +msgid "The following labels were applied to your content." +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:42 +msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 +msgid "The post may have been deleted." +msgstr "" + +#: src/view/screens/PrivacyPolicy.tsx:35 +msgid "The Privacy Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:40 +#: src/lib/strings/errors.ts:18 +msgid "The server appears to be experiencing issues. Please try again in a few moments." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:741 +msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." +msgstr "" + +#: src/components/ContextMenu/index.tsx:433 +msgid "The subject of the context menu" +msgstr "" + +#: src/view/screens/Support.tsx:37 +msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." +msgstr "" + +#: src/view/screens/TermsOfService.tsx:35 +msgid "The Terms of Service have been moved to" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 +msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:154 +msgid "Theme" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 +msgid "There is no time limit for account deactivation, come back any time." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:227 +msgid "There was an issue connecting to Tenor." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/view/screens/ProfileList.tsx:375 +#: src/view/screens/ProfileList.tsx:394 +#: src/view/screens/SavedFeeds.tsx:93 +msgid "There was an issue contacting the server" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:418 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:130 +msgid "There was an issue fetching notifications. Tap here to try again." +msgstr "" + +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 +msgid "There was an issue fetching posts. Tap here to try again." +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:151 +msgid "There was an issue fetching the list. Tap here to try again." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:60 +msgid "There was an issue fetching your app passwords" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:151 +#: src/view/com/lists/ProfileLists.tsx:150 +msgid "There was an issue fetching your lists. Tap here to try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:107 +msgid "There was an issue fetching your service info" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:259 +#: src/components/ReportDialog/SubmitView.tsx:88 +msgid "There was an issue sending your report. Please check your internet connection." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101 +#: src/view/com/profile/ProfileMenu.tsx:128 +#: src/view/com/profile/ProfileMenu.tsx:138 +#: src/view/com/profile/ProfileMenu.tsx:152 +#: src/view/com/profile/ProfileMenu.tsx:162 +#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/view/com/profile/ProfileMenu.tsx:187 +msgid "There was an issue! {0}" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 +#: src/screens/List/ListHiddenScreen.tsx:63 +#: src/screens/List/ListHiddenScreen.tsx:77 +#: src/screens/List/ListHiddenScreen.tsx:99 +#: src/view/screens/ProfileList.tsx:411 +#: src/view/screens/ProfileList.tsx:429 +#: src/view/screens/ProfileList.tsx:447 +#: src/view/screens/ProfileList.tsx:465 +msgid "There was an issue. Please check your internet connection and try again." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 +msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" +msgstr "" + +#: src/screens/SignupQueued.tsx:130 +msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 +msgid "These settings only apply to the Following feed." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:111 +msgid "This {screenDescription} has been flagged:" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:87 +msgid "This account has a checkmark because it's been verified by trusted sources." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:92 +msgid "This account has one or more attempted verifications, but it is not currently verified." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:106 +msgid "This account has requested that users sign in to view their profile." +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:34 +msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:55 +msgid "This action can be undone at any time." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:271 +msgid "This appeal will be sent to <0>{sourceName}." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:104 +msgid "This appeal will be sent to Bluesky's moderation service." +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:18 +msgid "This chat was disconnected" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:19 +msgid "This content has been hidden by the moderators." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:24 +msgid "This content has received a general warning from moderators." +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:63 +msgid "This content is hosted by {0}. Do you want to enable external media?" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:84 +#: src/lib/moderation/useModerationCauseDescription.ts:84 +msgid "This content is not available because one of the users involved has blocked the other." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 +msgid "This content is not viewable without a Bluesky account." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:362 +msgid "This conversation is with a deleted or a deactivated account. Press for options" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:156 +msgid "This email is already associated with your account." +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:96 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:49 +msgid "This feature is not available while using an app password. Please sign in with your main password." +msgstr "" + +#: src/lib/strings/errors.ts:21 +msgid "This feature is not available while using an App Password. Please sign in with your main password." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 +msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:38 +msgid "This feed is empty! You may need to follow more users or tune your language settings." +msgstr "" + +#: src/components/StarterPack/Main/PostsList.tsx:36 +#: src/screens/Profile/ProfileFeed/index.tsx:192 +#: src/view/screens/ProfileList.tsx:843 +msgid "This feed is empty." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:99 +msgid "This feed is no longer online. We are showing <0>Discover instead." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:593 +msgid "This handle is reserved. Please try a different one." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:41 +msgid "This information is not shared with other users." +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:189 +#: src/components/live/GoLiveDialog.tsx:160 +msgid "This is not a valid link" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:168 +msgid "This label was applied by the author." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:165 +msgid "This label was applied by you." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:218 +msgid "This labeler hasn't declared what labels it publishes, and may not be active." +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:79 +msgid "This link is taking you to the following website:" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:151 +msgid "This list – created by <0>{0} – contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:146 +msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/view/screens/ProfileList.tsx:962 +msgid "This list is empty." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:40 +msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 +msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." +msgstr "" + +#: src/components/WhoCanReply.tsx:240 +msgid "This post has an unknown type of threadgate on it. Your app may be out of date." +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:171 +msgid "This post has been deleted." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 +msgid "This post will be hidden from feeds and threads. This cannot be undone." +msgstr "" + +#: src/view/com/composer/Composer.tsx:463 +msgid "This post's author has disabled quote posts." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:482 +msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 +msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:66 +msgid "This service has not provided terms of service or a privacy policy." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:456 +msgid "This should create a domain record at:" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:93 +msgid "This user does not have a display name, and therefore cannot be verified." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:95 +msgid "This user doesn't have any followers." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:68 +msgid "This user has blocked you" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:79 +#: src/lib/moderation/useModerationCauseDescription.ts:75 +msgid "This user has blocked you. You cannot view their content." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:30 +msgid "This user has requested that their content only be shown to signed-in users." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:59 +msgid "This user is included in the <0>{0} list which you have blocked." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:91 +msgid "This user is included in the <0>{0} list which you have muted." +msgstr "" + +#: src/components/NewskieDialog.tsx:65 +msgid "This user is new here. Press for more info about when they joined." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:95 +msgid "This user isn't following anyone." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:435 +msgid "This will delete \"{0}\" from your muted words. You can always add it back later." +msgstr "" + +#: src/screens/Settings/Settings.tsx:656 +msgid "This will remove @{0} from the quick access list." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 +msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 +msgid "Thread options" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:68 +#: src/screens/Settings/ContentAndMediaSettings.tsx:71 +msgid "Thread preferences" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 +msgid "Thread Preferences" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 +msgid "Threaded" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:276 +msgid "Threaded mode" +msgstr "" + +#: src/Navigation.tsx:368 +msgid "Threads Preferences" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 +msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:99 +msgid "To disable the email 2FA method, please verify your access to the email address." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215 +msgid "To disable your email 2FA method, please verify your access to <0>{0}" +msgstr "" + +#: src/components/dms/ReportConversationPrompt.tsx:19 +msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." +msgstr "" + +#: src/components/ReportDialog/SelectLabelerView.tsx:31 +msgid "To whom would you like to send this report?" +msgstr "" + +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:263 +msgid "Toggle dropdown" +msgstr "" + +#: src/screens/Moderation/index.tsx:384 +msgid "Toggle to enable or disable adult content" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 +msgid "Toggles the sound" +msgstr "" + +#: src/screens/Hashtag.tsx:84 +#: src/screens/Search/SearchResults.tsx:47 +#: src/screens/Topic.tsx:71 +msgid "Top" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:543 +msgid "Topic" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 +msgid "Translate" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "" + +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 +msgid "Trending" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending Videos" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138 +msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." +msgstr "" + +#: src/view/com/util/error/ErrorScreen.tsx:103 +msgctxt "action" +msgid "Try again" +msgstr "" + +#: src/screens/Onboarding/state.ts:115 +msgid "TV" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 +msgid "Two-factor authentication (2FA)" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:153 +msgid "Type your message here" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:432 +msgid "Type:" +msgstr "" + +#: src/lib/hooks/useCleanError.ts:27 +#: src/lib/strings/errors.ts:11 +msgid "Unable to connect. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:79 +#: src/screens/Login/LoginForm.tsx:169 +#: src/screens/Login/SetNewPasswordForm.tsx:81 +#: src/screens/Signup/index.tsx:76 +#: src/view/com/modals/ChangePassword.tsx:71 +#: src/view/com/modals/ChangePassword.tsx:117 +msgid "Unable to contact your service. Please check your Internet connection." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:673 +msgid "Unable to delete" +msgstr "" + +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:97 +#: src/components/dms/MessagesListBlockedFooter.tsx:104 +#: src/components/dms/MessagesListBlockedFooter.tsx:112 +#: src/components/dms/MessagesListBlockedFooter.tsx:119 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:473 +#: src/view/screens/ProfileList.tsx:723 +msgid "Unblock" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +msgctxt "action" +msgid "Unblock" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:247 +#: src/components/dms/ConvoMenu.tsx:250 +#: src/view/com/profile/ProfileMenu.tsx:383 +#: src/view/com/profile/ProfileMenu.tsx:389 +msgid "Unblock account" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 +#: src/view/com/profile/ProfileMenu.tsx:455 +msgid "Unblock Account?" +msgstr "" + +#: src/view/screens/ProfileList.tsx:620 +msgid "Unblock list" +msgstr "" + +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 +msgid "Undo repost" +msgstr "" + +#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun +#: src/components/PostControls/RepostButton.tsx:66 +msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#: src/view/com/profile/FollowButton.tsx:63 +msgctxt "action" +msgid "Unfollow" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +msgid "Unfollow {0}" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:283 +#: src/view/com/profile/ProfileMenu.tsx:293 +msgid "Unfollow account" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:831 +msgid "Unfollows the user" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:372 +msgid "Unfortunately, none of your subscribed labelers supports this report type." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:206 +msgid "Unknown verifier" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:518 +msgid "Unlike" +msgstr "" + +#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun +#: src/components/PostControls/index.tsx:243 +msgid "Unlike ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +msgctxt "video" +msgid "Unmute" +msgstr "" + +#: src/view/screens/ProfileList.tsx:730 +msgid "Unmute" +msgstr "" + +#: src/components/RichTextTag.tsx:140 +#: src/components/RichTextTag.tsx:153 +msgid "Unmute {tag}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 +#: src/view/com/profile/ProfileMenu.tsx:362 +#: src/view/com/profile/ProfileMenu.tsx:368 +msgid "Unmute account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:236 +msgid "Unmute conversation" +msgstr "" + +#: src/view/screens/ProfileList.tsx:605 +msgid "Unmute list" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 +msgid "Unmute thread" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 +msgid "Unmute video" +msgstr "" + +#: src/view/screens/ProfileList.tsx:714 +msgid "Unpin" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:530 +msgid "Unpin feed" +msgstr "" + +#: src/components/FeedCard.tsx:320 +msgid "Unpin Feed" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:310 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +msgid "Unpin from home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 +msgid "Unpin from profile" +msgstr "" + +#: src/view/screens/ProfileList.tsx:585 +msgid "Unpin moderation list" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:163 +msgid "Unpinned {0} from Home" +msgstr "" + +#: src/view/screens/ProfileList.tsx:362 +msgid "Unpinned from your feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 +msgid "Unsnooze email reminder" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233 +msgid "Unsubscribe" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:198 +#: src/screens/List/ListHiddenScreen.tsx:208 +msgid "Unsubscribe from list" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200 +msgid "Unsubscribe from this labeler" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:86 +msgid "Unsubscribed from list" +msgstr "" + +#: src/view/com/composer/Composer.tsx:814 +msgid "Unsupported video type" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:48 +msgid "Unsupported video type: {0}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:77 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:90 +#: src/lib/moderation/useReportOptions.ts:77 +#: src/lib/moderation/useReportOptions.ts:90 +msgid "Unwanted Sexual Content" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:58 +#: src/screens/Settings/components/OTAInfo.tsx:74 +msgid "Update" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:312 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 +msgid "Update email" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:526 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:547 +msgid "Update to {domain}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:203 +msgid "Update your email" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +msgctxt "toast" +msgid "Updating quote attachment failed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 +msgctxt "toast" +msgid "Updating reply visibility failed" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:194 +msgid "Updating..." +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:288 +msgid "Upload a photo instead" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:472 +msgid "Upload a text file to:" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 +#: src/view/com/util/UserBanner.tsx:157 +#: src/view/com/util/UserBanner.tsx:160 +msgid "Upload from Camera" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:486 +#: src/view/com/util/UserBanner.tsx:174 +msgid "Upload from Files" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 +#: src/view/com/util/UserBanner.tsx:168 +#: src/view/com/util/UserBanner.tsx:172 +msgid "Upload from Library" +msgstr "" + +#: src/lib/api/index.ts:302 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1737 +msgid "Uploading video..." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:67 +msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:558 +msgid "Use default provider" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:77 +#: src/components/dialogs/InAppBrowserConsent.tsx:83 +msgid "Use in-app browser" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:102 +#: src/screens/Settings/ContentAndMediaSettings.tsx:108 +msgid "Use in-app browser to open links" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:87 +#: src/components/dialogs/InAppBrowserConsent.tsx:93 +msgid "Use my default browser" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:53 +msgid "Use recommended" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:190 +msgid "Use this to sign in to the other app along with your handle." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:201 +msgid "Used by:" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:324 +msgctxt "toast" +msgid "User blocked" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:71 +#: src/lib/moderation/useModerationCauseDescription.ts:63 +msgid "User Blocked" +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:55 +msgid "User Blocked by \"{0}\"" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:27 +msgid "User blocked by list" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:57 +msgid "User Blocked by List" +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:73 +msgid "User Blocking You" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:77 +msgid "User Blocks You" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:214 +msgid "User list by {0}" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +msgid "User list by you" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:174 +msgctxt "toast" +msgid "User list created" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:160 +msgctxt "toast" +msgid "User list updated" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:201 +msgid "Username or email address" +msgstr "" + +#: src/components/WhoCanReply.tsx:303 +msgid "users followed by <0>@{0}" +msgstr "" + +#: src/components/WhoCanReply.tsx:290 +msgid "users following <0>@{0}" +msgstr "" + +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 +msgid "Users I follow" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 +msgid "Users in \"{0}\"" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 +msgid "Users you follow" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:438 +msgid "Value:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:39 +msgid "Verification failed, please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:297 +msgid "Verification settings" +msgstr "" + +#: src/Navigation.tsx:205 +#: src/screens/Moderation/VerificationSettings.tsx:32 +msgid "Verification Settings" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:41 +msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:103 +msgid "Verified by:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:84 +#: src/components/verification/VerificationCreatePrompt.tsx:86 +#: src/view/com/profile/ProfileMenu.tsx:346 +#: src/view/com/profile/ProfileMenu.tsx:349 +msgid "Verify account" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" +msgid "Verify code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:528 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:549 +msgid "Verify DNS Record" +msgstr "" + +#. Dialog title when a user is verifying their email address by entering a code they have been sent +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 +msgid "Verify email code" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 +msgid "Verify email dialog" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:529 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:551 +msgid "Verify Text File" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:51 +msgid "Verify this account?" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 +msgid "Verify your email" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:126 +#: src/screens/Settings/AboutSettings.tsx:155 +msgid "Version {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 +msgid "Video" +msgstr "" + +#: src/view/com/composer/state/video.ts:358 +msgid "Video failed to process" +msgstr "" + +#: src/Navigation.tsx:599 +msgid "Video Feed" +msgstr "" + +#: src/components/VideoPostCard.tsx:122 +msgid "Video from {0}: {text}" +msgstr "" + +#: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:103 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237 +msgid "Video Games" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1072 +msgid "Video is paused" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1072 +msgid "Video is playing" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 +msgid "Video not found." +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:98 +msgid "Video settings" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1747 +msgid "Video uploaded" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +msgid "Video: {0}" +msgstr "" + +#: src/view/screens/Profile.tsx:228 +msgid "Videos" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:42 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:55 +msgid "Videos must be less than 3 minutes long" +msgstr "" + +#: src/screens/Profile/Header/Shell.tsx:211 +msgid "View {0}'s avatar" +msgstr "" + +#: src/components/ProfileCard.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Search/components/SearchProfileCard.tsx:36 +#: src/screens/VideoFeed/index.tsx:790 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 +msgid "View {0}'s profile" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:181 +msgid "View {displayName}'s profile" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:480 +msgid "View blocked user's profile" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:100 +msgid "View blogpost for more details" +msgstr "" + +#: src/view/screens/Log.tsx:57 +msgid "View debug entry" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:137 +#: src/screens/VideoFeed/index.tsx:656 +#: src/screens/VideoFeed/index.tsx:674 +msgid "View details" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:132 +msgid "View details for reporting a copyright violation" +msgstr "" + +#: src/view/com/posts/ViewFullThread.tsx:59 +msgid "View full thread" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:46 +msgid "View information about these labels" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 +msgid "View more" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 +#: src/view/com/util/PostMeta.tsx:91 +#: src/view/com/util/PostMeta.tsx:128 +msgid "View profile" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 +msgid "View the avatar" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:164 +msgid "View the labeling service provided by @{0}" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:99 +msgid "View this user's verifications" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:489 +msgid "View users who like this feed" +msgstr "" + +#: src/components/VideoPostCard.tsx:399 +msgid "View video" +msgstr "" + +#: src/screens/Moderation/index.tsx:277 +msgid "View your blocked accounts" +msgstr "" + +#: src/screens/Moderation/index.tsx:217 +msgid "View your default post interaction settings" +msgstr "" + +#: src/view/com/home/HomeHeaderLayout.web.tsx:56 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 +msgid "View your feeds and explore more" +msgstr "" + +#: src/screens/Moderation/index.tsx:247 +msgid "View your moderation lists" +msgstr "" + +#: src/screens/Moderation/index.tsx:262 +msgid "View your muted accounts" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:98 +msgid "View your verifications" +msgstr "" + +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 +msgid "Views full image" +msgstr "" + +#: src/components/VideoPostCard.tsx:121 +msgid "Views video in immersive mode" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "" + +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 +msgid "Volume" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:142 +#: src/lib/moderation/useLabelBehaviorDescription.ts:17 +#: src/lib/moderation/useLabelBehaviorDescription.ts:22 +msgid "Warn" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:48 +msgid "Warn content" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:46 +msgid "Warn content and filter from feeds" +msgstr "" + +#: src/components/live/LiveStatusDialog.tsx:156 +#: src/components/live/LiveStatusDialog.tsx:169 +msgid "Watch now" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "" + +#: src/screens/Hashtag.tsx:205 +msgid "We couldn't find any results for that hashtag." +msgstr "" + +#: src/screens/Topic.tsx:178 +msgid "We couldn't find any results for that topic." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:145 +msgid "We couldn't load this conversation" +msgstr "" + +#: src/screens/SignupQueued.tsx:160 +msgid "We estimate {estimatedTime} until your account is ready." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 +msgid "We have sent another verification email to <0>{0}." +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:256 +msgid "We hope you have a wonderful time. Remember, Bluesky is:" +msgstr "" + +#: src/view/com/posts/DiscoverFallbackHeader.tsx:29 +msgid "We ran out of posts from your follows. Here's the latest from <0/>." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:154 +msgid "We recommend selecting at least two interests." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 +msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/view/com/composer/state/video.ts:419 +msgid "We were unable to determine if you are allowed to upload videos. Please try again." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:52 +msgid "We were unable to load your birth date preferences. Please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:464 +msgid "We were unable to load your configured labelers at this time." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:129 +msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." +msgstr "" + +#: src/screens/SignupQueued.tsx:164 +msgid "We will let you know when your account is ready." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 +msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:134 +msgid "We'll use this to help customize your experience." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:107 +#: src/components/ProgressGuide/FollowDialog.tsx:172 +msgid "We're having network issues, try again" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 +msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." +msgstr "" + +#: src/screens/Signup/index.tsx:123 +msgid "We're so excited to have you join us!" +msgstr "" + +#: src/view/screens/ProfileList.tsx:117 +msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:378 +msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:285 +msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." +msgstr "" + +#: src/view/com/composer/Composer.tsx:460 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + +#: src/components/Lists.tsx:195 +#: src/view/screens/NotFound.tsx:50 +msgid "We're sorry! We can't find the page you were looking for." +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343 +msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + +#: src/screens/Deactivated.tsx:125 +msgid "Welcome back!" +msgstr "" + +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:126 +msgid "What are your interests?" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:41 +msgid "What do you want to call your starter pack?" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:38 +#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/composer/Composer.tsx:777 +msgid "What's up?" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146 +msgid "When you tap on a check, you’ll see which organizations have granted verification." +msgstr "" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80 +msgid "Which languages are used in this post?" +msgstr "" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:79 +msgid "Which languages would you like to see in your algorithmic feeds?" +msgstr "" + +#: src/components/WhoCanReply.tsx:192 +msgid "Who can interact with this post?" +msgstr "" + +#: src/components/WhoCanReply.tsx:97 +msgid "Who can reply" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127 +msgid "Who can verify?" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:79 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 +msgid "Whoops!" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:125 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 +msgid "Whoops! Trending videos failed to load." +msgstr "" + +#: src/screens/Takendown.tsx:173 +msgid "Why are you appealing?" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:42 +msgid "Why should this content be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:32 +#: src/components/ReportDialog/SelectReportOptionView.tsx:55 +msgid "Why should this feed be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:26 +#: src/components/ReportDialog/SelectReportOptionView.tsx:52 +msgid "Why should this list be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:44 +#: src/components/ReportDialog/SelectReportOptionView.tsx:61 +msgid "Why should this message be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:20 +#: src/components/ReportDialog/SelectReportOptionView.tsx:49 +msgid "Why should this post be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:38 +#: src/components/ReportDialog/SelectReportOptionView.tsx:58 +msgid "Why should this starter pack be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:14 +#: src/components/ReportDialog/SelectReportOptionView.tsx:46 +msgid "Why should this user be reviewed?" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:154 +#: src/screens/Messages/components/MessageInput.web.tsx:214 +msgid "Write a message" +msgstr "" + +#: src/view/com/composer/Composer.tsx:872 +msgid "Write post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 +msgid "Write your reply" +msgstr "" + +#: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:116 +msgid "Writers" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:356 +msgid "Wrong DID returned from server. Received: {0}" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:153 +#: src/components/live/GoLiveDialog.tsx:129 +msgid "www.mylivestream.tv" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87 +msgid "Yes" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 +msgid "Yes, deactivate" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:685 +msgid "Yes, delete this starter pack" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 +msgid "Yes, detach" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 +msgid "Yes, hide" +msgstr "" + +#: src/screens/Deactivated.tsx:147 +msgid "Yes, reactivate my account" +msgstr "" + +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "" + +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:59 +msgid "You are a trusted verifier" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:45 +msgid "You are creating an account on" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + +#: src/screens/SignupQueued.tsx:157 +msgid "You are in line." +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:119 +#: src/components/live/EditLiveDialog.tsx:124 +msgid "You are Live" +msgstr "" + +#: src/components/live/queries.ts:211 +msgid "You are no longer live" +msgstr "" + +#: src/components/live/queries.ts:35 +msgid "You are not allowed to go live" +msgstr "" + +#: src/view/com/composer/state/video.ts:412 +msgid "You are not allowed to upload videos." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:94 +msgid "You are not following anyone." +msgstr "" + +#: src/components/live/queries.ts:156 +msgid "You are now live!" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:64 +msgid "You are verified" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:355 +msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:208 +msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:45 +msgid "You can adjust your interests at any time from \"Content and media\" settings." +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 +msgid "You can also discover new Custom Feeds to follow." +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:198 +msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 +msgid "You can continue ongoing conversations regardless of which setting you choose." +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + +#: src/screens/Login/index.tsx:182 +#: src/screens/Login/PasswordUpdatedForm.tsx:26 +msgid "You can now sign in with your new password." +msgstr "" + +#: src/screens/Deactivated.tsx:133 +msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 +msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." +msgstr "" + +#: src/components/interstitials/Trending.tsx:130 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 +msgid "You can update this later from your settings." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:94 +msgid "You do not have any followers." +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:109 +msgid "You don't follow any users who follow @{name}." +msgstr "" + +#: src/screens/Messages/Inbox.tsx:241 +msgid "You don't have any chat requests at the moment." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:67 +msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:145 +msgid "You don't have any pinned feeds." +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:185 +msgid "You don't have any saved feeds." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:273 +msgid "You have blocked the author or you have been blocked by the author." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:66 +msgid "You have blocked this user" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:73 +#: src/lib/moderation/useModerationCauseDescription.ts:57 +#: src/lib/moderation/useModerationCauseDescription.ts:65 +msgid "You have blocked this user. You cannot view their content." +msgstr "" + +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:49 +#: src/screens/Login/SetNewPasswordForm.tsx:95 +#: src/view/com/modals/ChangePassword.tsx:87 +#: src/view/com/modals/ChangePassword.tsx:133 +msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:116 +msgid "You have hidden this post" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:111 +msgid "You have hidden this post." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:104 +#: src/lib/moderation/useModerationCauseDescription.ts:99 +msgid "You have muted this account." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:93 +msgid "You have muted this user" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:301 +msgid "You have no conversations yet. Start one!" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:139 +msgid "You have no feeds." +msgstr "" + +#: src/view/com/lists/MyLists.tsx:81 +#: src/view/com/lists/ProfileLists.tsx:135 +msgid "You have no lists." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:164 +msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:179 +msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." +msgstr "" + +#: src/components/Lists.tsx:58 +msgid "You have reached the end" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187 +msgid "You have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/lib/media/video/upload.shared.ts:56 +msgid "You have temporarily reached the limit for video uploads. Please try again later." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:263 +msgid "You haven't created a starter pack yet!" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:398 +msgid "You haven't muted any words or tags yet" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:118 +#: src/lib/moderation/useModerationCauseDescription.ts:127 +msgid "You hid this reply." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:79 +msgid "You may appeal non-self labels if you feel they were placed in error." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:84 +msgid "You may appeal these labels if you feel they were placed in error." +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:76 +msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}" +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:95 +msgid "You may only add up to 3 feeds" +msgstr "" + +#: src/lib/media/picker.shared.ts:25 +msgid "You may only select up to 4 images" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:136 +msgid "You must be 13 years of age or older to create an account." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:334 +msgid "You must be following at least seven other people to generate a starter pack." +msgstr "" + +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:61 +msgid "You must grant access to your photo library to save a QR code" +msgstr "" + +#: src/components/ReportDialog/SubmitView.tsx:211 +msgid "You must select at least one labeler for a report" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 +msgid "You need to verify your email address before you can enable email 2FA." +msgstr "" + +#: src/screens/Deactivated.tsx:128 +msgid "You previously deactivated @{0}." +msgstr "" + +#: src/screens/Settings/Settings.tsx:404 +msgid "You probably want to restart the app now." +msgstr "" + +#: src/components/dms/MessageItem.tsx:135 +msgid "You reacted {0}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:218 +msgid "You reacted {0} to {1}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 +msgid "You will be signed out of all your accounts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 +msgid "You will no longer receive notifications for this thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 +msgid "You will now receive notifications for this thread" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:108 +msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:154 +msgid "You: {0}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:183 +msgid "You: {defaultEmbeddedContentMessage}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:176 +msgid "You: {short}" +msgstr "" + +#: src/screens/Signup/index.tsx:139 +msgid "You'll follow the suggested users and feeds once you finish creating your account!" +msgstr "" + +#: src/screens/Signup/index.tsx:144 +msgid "You'll follow the suggested users once you finish creating your account!" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:236 +msgid "You'll follow these people and {0} others" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 +msgid "You'll follow these people right away" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 +msgid "You'll stay updated with these feeds" +msgstr "" + +#: src/screens/SignupQueued.tsx:127 +msgid "You're in line" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:253 +msgid "You're ready to go!" +msgstr "" + +#: src/screens/Deactivated.tsx:89 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 +msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:108 +#: src/lib/moderation/useModerationCauseDescription.ts:108 +msgid "You've chosen to hide a word or tag within this post." +msgstr "" + +#: src/state/shell/progress-guide.tsx:234 +msgid "You've found some people to follow" +msgstr "" + +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 +msgid "You've reached the end of your feed! Find some more accounts to follow." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:58 +msgid "You've reached the maximum number of requests allowed. Please try again later." +msgstr "" + +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 +msgid "You've reached your daily limit for video uploads (too many bytes)" +msgstr "" + +#: src/view/com/composer/state/video.ts:427 +msgid "You've reached your daily limit for video uploads (too many videos)" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1123 +msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" +msgstr "" + +#: src/screens/Signup/index.tsx:173 +msgid "Your account" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:84 +msgid "Your account has been deleted" +msgstr "" + +#: src/screens/Takendown.tsx:146 +msgid "Your account has been suspended" +msgstr "" + +#: src/view/com/composer/state/video.ts:431 +msgid "Your account is not yet old enough to upload videos. Please try again later." +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:67 +msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." +msgstr "" + +#: src/screens/Takendown.tsx:214 +msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error." +msgstr "" + +#: src/screens/Takendown.tsx:154 +msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:261 +msgid "Your birth date" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 +msgid "Your browser does not support the video format. Please try a different browser." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:25 +msgid "Your chats have been disabled" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:69 +msgid "Your choice will be remembered for future links. You can change it at any time in settings." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:513 +msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:51 +#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/StepInfo/index.tsx:101 +#: src/view/com/modals/ChangePassword.tsx:55 +msgid "Your email appears to be invalid." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65 +msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." +msgstr "" + +#: src/state/shell/progress-guide.tsx:213 +msgid "Your first like!" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 +msgid "Your followers" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:43 +msgid "Your following feed is empty! Follow more users to see what's happening." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:240 +msgid "Your full handle will be <0>@{0}" +msgstr "" + +#: src/Navigation.tsx:515 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:67 +#: src/screens/Settings/ContentAndMediaSettings.tsx:92 +#: src/screens/Settings/ContentAndMediaSettings.tsx:95 +#: src/screens/Settings/InterestsSettings.tsx:42 +msgid "Your interests" +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:123 +msgctxt "toast" +msgid "Your interests have been updated!" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:94 +msgid "Your interests help us find what you like!" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:369 +msgid "Your muted words" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:169 +msgid "Your password has been changed successfully!" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:130 +msgid "Your password must be at least 8 characters long." +msgstr "" + +#: src/view/com/composer/Composer.tsx:522 +msgid "Your post has been published" +msgstr "" + +#: src/view/com/composer/Composer.tsx:519 +msgid "Your posts have been published" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:268 +msgid "Your posts, likes, and blocks are public. Mutes are private." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 +msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "" + +#: src/view/com/composer/Composer.tsx:521 +msgid "Your reply has been published" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:394 +msgid "Your report will be sent to <0>{0}." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:200 +msgid "Your report will be sent to the Bluesky Moderation Service" +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:56 +msgid "Your selected interests help us serve you content you care about." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:65 +msgid "Your verifications" +msgstr "" + diff --git a/src/locale/locales/ast/messages.po b/src/locale/locales/ast/messages.po index 4b9bf09175..a9b9548940 100644 --- a/src/locale/locales/ast/messages.po +++ b/src/locale/locales/ast/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ast\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: Asturian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,7 +27,7 @@ msgstr "" msgid "(contains embedded content)" msgstr "(contién elementos incrustaos)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(ensin direición de corréu)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# republicación} other {# republicaciones}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# segundu} other {# segundos}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -90,17 +90,18 @@ msgstr "" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {siguidor} other {siguidores}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {préstame} other {préstames}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {préstame} other {préstames}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {publicación} other {publicaciones}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {cita} other {cites}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {republicación} other {republicaciones}}" @@ -135,6 +138,10 @@ msgstr "{0} <0> n'<1>etiquetes" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>en <1>testu y etiquetes" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "" @@ -143,11 +150,15 @@ msgstr "" msgid "{0} is not a valid URL" msgstr "" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} xunióse esta selmana" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} de {1}" @@ -164,8 +175,16 @@ msgstr "" msgid "{0} reacted {1} to {2}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "Avatar de: {0}" @@ -197,12 +216,12 @@ msgstr "{0} m" msgid "{0}s" msgstr "{0} s" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Paquete d'iniciación de: {displayName}" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {hores}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minutu} other {minutos}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} siguiéronte" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} prestó-yos la publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} republicaron la publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} rexistróse col to paquete d'iniciación" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} siguióte" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} siguióte tamién" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "A {firstAuthorLink} prestó-y el to feed personalizáu" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "A {firstAuthorLink} prestó-y la publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} republicó la publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} rexistróse col to paquete d'iniciación" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} siguiéronte" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "A {firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} prestó-yos la publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} republicaron la publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} siguióte" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} siguióte tamién" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "A {firstAuthorName} prestó-y la publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} republicó la publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} rexistróse col to paquete d'iniciación" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "Sigue a {following}" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "Nun se puen unviar mensaxes a {handle}" @@ -392,7 +410,7 @@ msgstr "" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -432,12 +450,12 @@ msgstr "" msgid "+{computedTotal}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} y {2, plural, one {# más} other {# más}} inclúinse nel paquete d'iniciación" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} y {2, plural, one {# más} other {# más}} inclúinse nel paquete d'iniciación" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {siguidor} other {siguidores}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "{1, plural, one {Sigue a} other {Sigue a}} <0>{0}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} y <1><2>{1} inclúinse nel paquete d'iniciación" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} inclúise nel to paquete d'iniciación" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} miembros" @@ -466,11 +484,11 @@ msgstr "<0>{0} miembros" msgid "<0>{date} at {time}" msgstr "<0>{date}, {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Tu y <1><2>{0} tais incluyíos nel paquete d'iniciación" @@ -503,10 +521,14 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Tocante a" @@ -524,25 +546,25 @@ msgstr "" msgid "Accept Request" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Accesibilidá" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Configuración d'accesibilidá" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Cuenta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "" msgid "Account Muted by List" msgstr "" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Quitóse la cuenta del accesu rápidu" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Amestar" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Amiesta {0} más pa siguir" @@ -634,8 +666,8 @@ msgstr "" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "" msgid "Add alt text (optional)" msgstr "" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Amestar otra cuenta" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Amestar otra publicación" @@ -670,8 +702,8 @@ msgstr "Crear una contraseña d'aplicación" msgid "Add emoji reaction" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "" @@ -683,7 +715,7 @@ msgstr "" msgid "Add muted words and tags" msgstr "" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Amestar una publicación nueva" @@ -704,7 +736,7 @@ msgstr "" msgid "Add recommended feeds" msgstr "Amestar los feeds aconseyaos" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "¡Amiesta dalgunos feeds al paquete d'iniciación!" @@ -725,10 +757,6 @@ msgstr "" msgid "Add to lists" msgstr "Amestar a llistes" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Amestar a los mios feeds" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "" @@ -738,11 +766,11 @@ msgstr "" msgid "Added to list" msgstr "Amestóse a la llista" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Amestóse a los mios feeds" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "" @@ -750,18 +778,18 @@ msgstr "" msgid "Adult" msgstr "P'adultos" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Conteníu p'adultos" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "El conteníu p'adultos namás se pue activar pela web en <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "El conteníu p'adultos ta desactiváu." @@ -770,16 +798,32 @@ msgstr "El conteníu p'adultos ta desactiváu." msgid "Adult Content labels" msgstr "Etiquetes de conteníu p'adultos" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Opciones avanzaes" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Too" @@ -793,7 +837,7 @@ msgstr "" msgid "All languages" msgstr "Toles llingües" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Tolos feeds que guardesti, nun llugar." @@ -802,16 +846,21 @@ msgstr "Tolos feeds que guardesti, nun llugar." msgid "Allow access to your direct messages" msgstr "Permitir l'accesu a los mensaxes direutos" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Permitir los mensaxes nuevos de:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Permitir les rempuestes de:" @@ -828,13 +877,13 @@ msgstr "¿Yá tienes un códigu?" msgid "Already signed in as @{0}" msgstr "Yá aniciesti la sesión como @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "Testu alternativu" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Testu alternativu" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "El testu alternativu describe imáxenes pa persones ciegues o con problemes de visión y ayuda a dar contestu a tol mundu." @@ -861,27 +910,19 @@ msgstr "" msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Unvióse un mensaxe a {0}. Inclúi un códigu de confirmación que pues introducir abaxo." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "¡Unvióse un mensaxe! Introduz abaxo'l códigu de confirmación que s'inclúi nelli." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Prodúxose un error" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Prodúxose un error" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Prodúxose un error mentanto se comprimía'l videu." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "" @@ -889,11 +930,11 @@ msgstr "" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Prodúxose un error mentanto se xeneraba'l paquete d'iniciación. ¿Quies volver tentalo?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Prodúxose un error mentanto se cargaba'l videu. Volvi tentalo dempués." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Prodúxose un error mentanto se cargaba'l videu. Volvi tentalo." @@ -910,7 +951,7 @@ msgstr "Prodúxose un error mentanto se seleicionaba'l videu" msgid "An error occurred while trying to follow all" msgstr "Prodúxose un error al tentar de siguir a toles cuentes" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Prodúxose un error mentanto se xubía'l videu." @@ -934,8 +975,8 @@ msgstr "Prodúxose un error al tentar d'abrir la charra" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "prodúxose un error desconocíu" msgid "an unknown labeler" msgstr "un etiquetador desconocíu" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "y" @@ -963,10 +1004,14 @@ msgstr "y" msgid "Animals" msgstr "Animales" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "GIF animáu" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "" @@ -980,7 +1025,13 @@ msgstr "Comportamientu antisocial" msgid "Anybody can interact" msgstr "Tol mundu pue interactuar" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "Los nomes de les contraseñes d'aplicación namás puen contener lletres msgid "App password names must be at least 4 characters long" msgstr "Los nomes de les contraseñes d'aplicación han tener polo menos 4 caráuteres de llongura" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Contraseñes d'aplicación" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Contraseñes d'aplicación" @@ -1053,10 +1104,10 @@ msgstr "" msgid "Appeal this decision" msgstr "Apellar esta decisión" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Aspeutu" @@ -1065,12 +1116,20 @@ msgstr "Aspeutu" msgid "Apply default recommended feeds" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Archivóse la publicación" @@ -1078,7 +1137,7 @@ msgstr "Archivóse la publicación" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "¿De xuru que quies desaniciar la contraseña d'aplicación «{0}»?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "" @@ -1098,19 +1157,15 @@ msgstr "" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "¿De xuru que quies quitar «{0}» de los tos feeds?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "¿De xuru que quies quitar esti elementu de los tos feeds?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "¿De xuru que quies escartar esti borrador?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "¿De xuru que quies escartar esta publicación?" @@ -1131,29 +1186,26 @@ msgstr "Arte" msgid "Artistic or non-erotic nudity." msgstr "Desnudos artísticos o que nun son eróticos." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Ye de 3 caráuteres polo menos" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Les opciones de reproducción automática treslladáronse a <0>Configuración del conteníu multimedia." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Reproducir automáticamente vídeos y GIFs" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Reproducir automáticamente vídeos y GIFs" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Atrás" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "" @@ -1195,28 +1247,44 @@ msgstr "Enantes de crear un paquete d'iniciación, tienes de verificar primero l msgid "Before you can accept this chat request, you must first verify your email." msgstr "" +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Aniversariu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "" msgid "Block account" msgstr "Bloquiar la cuenta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "¿Quies bloquiar la cuenta?" @@ -1262,20 +1330,20 @@ msgstr "" msgid "Block User" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Bloquióse" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Cuentes bloquiaes" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Cuentes bloquiaes" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Les cuentes bloquiaes nun puen responder nos tos filos, mentante nin interactuar contigo de nenguna forma." @@ -1284,11 +1352,11 @@ msgstr "Les cuentes bloquiaes nun puen responder nos tos filos, mentante nin int msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Les cuentes bloquiaes nun puen responder nos tos filos, mentante nin interactuar contigo de nenguna forma. Tampoco vas ver el so conteníu nin ellos el de to." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Bloquióse la publicación." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "El bloquéu nun impide qu'esti etiquetador aplique etiquetes a la to cuenta." @@ -1309,11 +1377,12 @@ msgstr "Blogue" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky nun pue verificar l'autenticidá de la data indicada." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1347,6 +1416,14 @@ msgstr "Bluesky nun va amosar el perfil nin les publicaciones a los usuarios que msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "" msgid "Books" msgstr "Llibros" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Restolar más cuentes na páxina «Esploración»" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Restolar más feeds na páxina «Esploración»" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Restolar más suxerencies" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Restolar más suxerencies na páxina «Esploración»" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Negocios" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Por «{0}»" @@ -1428,15 +1502,23 @@ msgstr "Por «{0}»" msgid "By <0>{0}" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Al crear una cuenta aceptes la <0>política de privacidá." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Al crear una cuenta aceptes los <0>términos del serviciu y la <1>política de privacidá." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Al crear una cuenta aceptes los <0>términos del serviciu." @@ -1448,14 +1530,17 @@ msgstr "" msgid "Camera" msgstr "Cámara" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Cámara" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Encaboxar" @@ -1500,11 +1582,7 @@ msgstr "" msgid "Cancel image crop" msgstr "" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Anular la cita" @@ -1516,14 +1594,10 @@ msgstr "" msgid "Cancel search" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Nun se pue interactuar con un usuariu bloquiáu" @@ -1553,17 +1627,12 @@ msgstr "" msgid "Change app language" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Cambéu del identificador" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "" @@ -1579,14 +1648,6 @@ msgstr "" msgid "Change report reason" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Confirmación de la direición de corréu" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "" @@ -1596,10 +1657,15 @@ msgstr "" msgid "Changes hosting provider" msgstr "" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Charra" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Silencióse la charra" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Configuración de la charra" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Configuración de les charres" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "La charra dexó de tar silenciada" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "" @@ -1661,7 +1738,7 @@ msgstr "" msgid "Choose domain verification method" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Seleición de feeds" @@ -1669,7 +1746,7 @@ msgstr "Seleición de feeds" msgid "Choose for me" msgstr "Escoyer por min" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Escueyi persones" @@ -1685,23 +1762,23 @@ msgstr "" msgid "Choose your account provider" msgstr "" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "¡Escueyi les llinies temporales que quieras! Feeds creaos pola comunidá que t'ayuden a atopar el conteníu que te presta pola vida." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Escueyi una contraseña" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "L'identificador" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "" @@ -1714,23 +1791,27 @@ msgstr "" msgid "Clear search query" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Calca pa desactivar les cites d'esta publicación." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Calca pa activar les cites d'esta publicación." @@ -1750,14 +1831,16 @@ msgstr "Clima" msgid "Clip 🐴 clop 🐴" msgstr "Tocotó 🐴 tocotó 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Tocotó 🐴 tocotó 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Zarrar" @@ -1789,13 +1876,15 @@ msgstr "Zarrar l'alerta" msgid "Close bottom drawer" msgstr "Zarrar el caxón baxeru" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Zarrar el diálogu" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "" @@ -1804,7 +1893,7 @@ msgstr "" msgid "Close emoji picker" msgstr "" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "" @@ -1822,7 +1911,7 @@ msgstr "Zarrar el visor d'imáxenes" msgid "Close menu" msgstr "" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Zarrar esti diálogu" @@ -1830,7 +1919,7 @@ msgstr "Zarrar esti diálogu" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "" @@ -1843,16 +1932,16 @@ msgstr "" msgid "Closes viewer for header image" msgstr "Zarra'l visor de la imaxe de la testera" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Contrayer la llista d'usuarios" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Contrái la llista d'usuarios d'una notificación apurrida" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Mou de color" @@ -1870,7 +1959,8 @@ msgstr "Comedia" msgid "Comics" msgstr "Cómics" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Pautes de la Comunidá" @@ -1879,38 +1969,34 @@ msgstr "Pautes de la Comunidá" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Completa'l retu" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Comprimiendo'l videu…" -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Configuróse nes <0>opciones de moderación." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "" msgid "Confirm delete account" msgstr "" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "" msgid "Confirmation code" msgstr "Códigu de confirmación" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Códigu de confirmación" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Conectando…" -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "" @@ -1977,7 +2069,8 @@ msgstr "" msgid "Content Blocked" msgstr "" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "" @@ -2006,10 +2099,12 @@ msgstr "" msgid "Content warnings" msgstr "" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Siguir" msgid "Continue as {0} (currently signed in)" msgstr "" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Siguir col filu…" @@ -2029,6 +2129,10 @@ msgstr "Siguir col filu…" msgid "Continue to next step" msgstr "Dir al pasu siguiente" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Copióse" msgid "Copied build version to clipboard" msgstr "La versión de la compilación copióse nel cartafueyu" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "" msgid "Copy" msgstr "Copiar" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Copiar la contraseña d'aplicación" @@ -2087,8 +2187,8 @@ msgstr "Copiar la contraseña d'aplicación" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "" @@ -2120,10 +2220,10 @@ msgstr "Copiar l'enllaz" msgid "Copy link to list" msgstr "Copiar l'enllaz de la llista" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Copiar l'enllaz de la publicación" @@ -2136,18 +2236,18 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Copiar el testu del mensaxe" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Copiar el testu de la publicación" @@ -2159,11 +2259,25 @@ msgstr "Copiar el códigu QR" msgid "Copy TXT record value" msgstr "Copiar el valor de rexistru TXT" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Política de derechos d'autor" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "Nun se pudo silenciar la charra" msgid "Could not process your video" msgstr "Nun se pudo procesar el videu" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Crear" @@ -2195,7 +2317,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "" @@ -2205,21 +2327,22 @@ msgstr "" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Crear una cuenta" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Creación d'una cuenta" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "" @@ -2241,7 +2364,7 @@ msgstr "" msgid "Create new account" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "" @@ -2268,7 +2391,7 @@ msgstr "Personalizáu" msgid "Customization options" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Personaliza quién pue interactuar con esta publicación." @@ -2278,12 +2401,12 @@ msgstr "" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Escuru" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Escuru" @@ -2292,21 +2415,21 @@ msgstr "Escuru" msgid "Dark mode" msgstr "Mou escuru" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Estilu escuru" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Data de nacencia" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Desactivación de la cuenta" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "" @@ -2314,7 +2437,7 @@ msgstr "" msgid "Debug panel" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "La predeterminada" @@ -2322,8 +2445,8 @@ msgstr "La predeterminada" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "" msgid "Delete" msgstr "Desaniciar" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Desaniciar la cuenta" @@ -2355,7 +2478,7 @@ msgstr "¿Quies desaniciar la contraseña d'aplicación?" msgid "Delete chat" msgstr "" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "" @@ -2370,7 +2493,7 @@ msgstr "" msgid "Delete Conversation" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Desaniciar pa min" @@ -2378,11 +2501,11 @@ msgstr "Desaniciar pa min" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "" @@ -2390,9 +2513,9 @@ msgstr "" msgid "Delete my account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Desaniciar la publicación" @@ -2409,11 +2532,11 @@ msgstr "¿Quies desaniciar el paquete d'iniciación?" msgid "Delete this list?" msgstr "¿Quies desaniciar esta llista?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "¿Quies desaniciar esti artículu?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "" @@ -2422,15 +2545,20 @@ msgstr "" msgid "Deleted Account" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Descripción" @@ -2447,12 +2575,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Testu alternativu descriptivu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Separtar la cita" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "¿Quies separtar la cita?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Diálogu: configura quién pue interactuar con esta publicación" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Lleve" @@ -2492,27 +2620,27 @@ msgstr "" msgid "Disable Email 2FA" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Desactivar la rempuesta háptica" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Desactivar los sotítulos" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Desactivóse" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Escartar" @@ -2520,11 +2648,11 @@ msgstr "Escartar" msgid "Discard changes?" msgstr "¿Quies escartar los cambeos?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "¿Quies escartar el borrador?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "¿Quies escartar la publicación?" @@ -2542,7 +2670,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Descubri feeds nuevos" @@ -2550,7 +2678,7 @@ msgstr "Descubri feeds nuevos" msgid "Dismiss" msgstr "" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Escartar l'error" @@ -2562,26 +2690,26 @@ msgstr "" msgid "Dismiss interests" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Amosar los indicadores de testu alternativu más grandes" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Nome visible" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Nome visible" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "El nome visible ye mui llongu" @@ -2603,15 +2731,11 @@ msgstr "" msgid "Does not include nudity." msgstr "Nun inclúin desnudos." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Nun comienza nin acaba per un guión" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "¡Verificóse'l dominiu!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -2619,6 +2743,15 @@ msgstr "" msgid "Don't see an email? <0>Click here to resend." msgstr "" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "" msgid "Double tap to close the dialog" msgstr "" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "" @@ -2673,7 +2806,7 @@ msgstr "" msgid "Download CAR file" msgstr "Baxar el ficheru CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "" @@ -2689,18 +2822,10 @@ msgstr "p. exem. alicia" msgid "e.g. Alice Lastname" msgstr "" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "p. exem. Alicia Hevia" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "p. exem. alicia.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "p. exem. Artista, amante de los animales y adicta a los llibros." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "p. exem. desnudos artísticos." @@ -2725,10 +2850,11 @@ msgstr "p. exem. Usuarios que respuenden de contino con anuncios." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "" -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Editar" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Editar" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Editar l'avatar" @@ -2749,12 +2875,12 @@ msgstr "Editar los feeds" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Editar la imaxe" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Editar la configuración de les interaiciones" @@ -2776,33 +2902,33 @@ msgstr "" msgid "Edit Moderation List" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Edición de los mios feeds" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Edición del mio perfil" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Edición de les persones" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Edición del perfil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Editar el perfil" @@ -2814,19 +2940,11 @@ msgstr "" msgid "Edit User List" msgstr "Edición de la llista d'usuarios" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "" @@ -2839,8 +2957,8 @@ msgstr "Educación" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "" -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "Direición de corréu" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "" @@ -2865,10 +2983,6 @@ msgstr "" msgid "Email sent!" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "" @@ -2883,8 +2997,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Incrustar la publicación" @@ -2892,7 +3006,7 @@ msgstr "Incrustar la publicación" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incrusta esta publicación nel to sitiu web. Namás copia'l fragmentu de testu siguiente y apiégalu nel códigu HTML del sitiu web." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "" @@ -2906,7 +3020,7 @@ msgstr "Activar" msgid "Enable {0} only" msgstr "Activar namás «{0}»" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Activar el conteníu p'adultos" @@ -2919,16 +3033,20 @@ msgstr "" msgid "Enable external media" msgstr "Activar el conteníu multimedia esternu" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Activar los reproductores multimedia de:" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Activar los avisos prioritarios" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "" @@ -2941,17 +3059,14 @@ msgstr "" msgid "Enable trending topics" msgstr "" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "" - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Activóse" @@ -2963,7 +3078,7 @@ msgstr "Fin del feed" msgid "Ensure you have selected a language for each subtitle file." msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Introduz una pallabra o etiqueta" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Introducción d'un códigu" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Introduz la to direición de corréu electrónicu" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Introduz abaxo la to direición de corréu nueva." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "" @@ -3022,7 +3129,7 @@ msgstr "" msgid "Enter your username and password" msgstr "Introduz l'identificador y la contraseña de to" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "" @@ -3030,16 +3137,28 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Error" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Prodúxose un error mentanto se guardaba'l ficheru" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "" @@ -3047,27 +3166,34 @@ msgstr "" msgid "Error:" msgstr "Error:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Tol mundu" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Tol mundu pue responder" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Tol mundu pue responder a esta publicación." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Tol mundu" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "" @@ -3106,24 +3232,28 @@ msgstr "" msgid "Expand alt text" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Configuración esperimental" @@ -3153,15 +3283,15 @@ msgstr "" msgid "Explicit sexual images." msgstr "Imáxenes sexuales esplícites." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Esportar los mios datos" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Conteníu multimedia esternu" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "El conteníu multimedia esternu pue permitir que los sitios web recueyan información de ti y del preséu. Nun s'unvia nin se solicita nenguna información hasta que nun primas el botón «Reproducir»." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Preferencies del conteníu multimedia esternu" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "" @@ -3211,8 +3341,8 @@ msgstr "La creación de la contraseña d'aplicación falló. Volvi tentalo." msgid "Failed to create conversation" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "La creación del paquete d'iniciación falló" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "El desaniciu del mensaxe falló" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "El desaniciu de la publicación falló. Volvi tentalo" @@ -3238,8 +3368,8 @@ msgstr "El desaniciu de la publicación falló. Volvi tentalo" msgid "Failed to delete starter pack" msgstr "El desaniciu del paquete d'iniciación falló" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "" @@ -3250,14 +3380,32 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "La carga de les preferencies de los feeds falló" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "La carga de los GIFs falló" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "La carga de los mensaxes anteriores falló" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "La carga de los feeds suxeríos falló" msgid "Failed to load suggested follows" msgstr "La carga de los perfiles suxeríos falló" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Nun se pudo fixar la publicación" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "" @@ -3291,15 +3439,11 @@ msgstr "" msgid "Failed to save image: {0}" msgstr "Nun se pudo guardar la imaxe: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Nun se pudo guardar les preferencies de los avisos. Volvi tentalo" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "" @@ -3318,7 +3462,7 @@ msgstr "" msgid "Failed to submit appeal, please try again." msgstr "L'unviu de l'apellación falló. Volvi tentalo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "" @@ -3335,7 +3479,11 @@ msgstr "" msgid "Failed to update feeds" msgstr "L'anovamientu de los feeds falló" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "L'anovamientu de la configuración falló" @@ -3354,15 +3502,23 @@ msgstr "" msgid "Failed to verify handle. Please try again." msgstr "La verificación del identificador falló. Volvi tentalo." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Feed" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Feed de {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "" @@ -3371,35 +3527,39 @@ msgstr "" msgid "Feed toggle" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Opinar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "¡Unvióse la opinión!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Feeds" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Los feeds son algoritmos personalizaos que los usuarios creen con poco conocimientu de programación. <0/> pa consiguir más información." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "¡Anováronse los feeds!" @@ -3428,6 +3588,14 @@ msgstr "" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "" @@ -3448,7 +3616,7 @@ msgstr "" msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "" @@ -3456,17 +3624,17 @@ msgstr "" msgid "Fitness" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Flexible" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Siguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "" @@ -3518,7 +3686,7 @@ msgstr "" msgid "Follow all" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Siguir tamién" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Siguir tamién" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Siguidores de @{0} que conoces" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Siguidores que conoces" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Siguiendo" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Siguiendo" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "" @@ -3579,8 +3751,8 @@ msgstr "" msgid "Following feed preferences" msgstr "Preferencies del feed «Siguiendo»" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Preferencies del feed «Siguiendo»" @@ -3592,11 +3764,11 @@ msgstr "Síguete" msgid "Follows You" msgstr "Síguete" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Fonte" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Tamañu de la fonte" @@ -3613,7 +3785,7 @@ msgstr "Por motivos de seguranza, tenemos d'unviate un códigu de confirmación msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Por motivos de seguranza, nun vas ser a volver vela. Si pierdes esta contraseña, vas tener de xenerar una nueva." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Pa tener la meyor esperiencia, aconseyamos usar la fonte del estilu." @@ -3643,11 +3815,15 @@ msgstr "¿Escaeciéstila?" msgid "Frequently Posts Unwanted Content" msgstr "Publica conteníu non deseáu frecuentemente" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "De @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "" @@ -3660,14 +3836,68 @@ msgstr "Galería" msgid "Generate a starter pack" msgstr "Xeneración d'un paquete d'iniciación" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "" @@ -3688,14 +3918,16 @@ msgstr "Pon cara al perfil" msgid "Glaring violations of law or terms of service" msgstr "Incumplimientos evidentes de la llei o de los términos del serviciu" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "" @@ -3779,8 +4017,8 @@ msgstr "Conteníu gráficu" msgid "Half way there!" msgstr "¡Tas a metá de camín!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Identificador" @@ -3797,7 +4035,7 @@ msgstr "¡L'identificador camudó!" msgid "Handle too long. Please try a shorter one." msgstr "L'identificador ye mui llongu. Prueba con otru." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Función háptica" @@ -3806,7 +4044,7 @@ msgstr "Función háptica" msgid "Harassment, trolling, or intolerance" msgstr "Acosu, troléu o intolerancia" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Etiqueta" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "" -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "¿Tienes dalgún problema?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Ayuda" @@ -3839,8 +4077,13 @@ msgstr "Ayuda a que les persones sepan que nun yes un robó xubiendo una semeya msgid "Here is your app password!" msgstr "¡Equí tienes la contraseña d'aplicación!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "" @@ -3848,16 +4091,16 @@ msgstr "" msgid "Hidden by your moderation settings." msgstr "" -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "" msgid "Hide" msgstr "Esconder" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Esconder" @@ -3875,18 +4118,18 @@ msgstr "Esconder" msgid "Hide customization options" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Escondeme la publicación" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Esconder la rempuesta pa tol mundu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Escondeme la rempuesta" @@ -3894,12 +4137,12 @@ msgstr "Escondeme la rempuesta" msgid "Hide this card" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "¿Quies esconder esta publicación?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "¿Quies esconder esta rempuesta?" @@ -3913,11 +4156,11 @@ msgstr "" msgid "Hide trending topics?" msgstr "¿Quies esconder los temes en tendencia?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "¿Quies esconder los vídeos en tendencia?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Esconder la llista d'usuarios" @@ -3926,32 +4169,32 @@ msgstr "Esconder la llista d'usuarios" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Umm… Prodúxose dalgún tipu d'error al conectase col sirvidor del feed. Coménta-ylo al propietariu del sirvidor." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Umm… El sirvidor del feed nun paez tar bien configuráu. Coménta-ylo al propietariu del sirvidor." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Umm… El sirvidor del feed nun paez tar conectáu. Coménta-ylo al propietariu del sirvidor." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Umm… El sirvidor del feed fornió una rempuesta incorreuta. Coménta-ylo al propietariu del sirvidor." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Umm… Tenemos problemes p'atopar esti feed. Ye posible que lu desaniciaren." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Umm… Paez que tenemos problemes pa cargar estos datos. Consulta abaxo los detalles y si sigue'l problema, ponte en contautu con nós." @@ -3959,15 +4202,15 @@ msgstr "Umm… Paez que tenemos problemes pa cargar estos datos. Consulta abaxo msgid "Hmmmm, we couldn't load that moderation service." msgstr "Umm… Nun pudimos cargar el serviciu de moderación." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Aniciu" @@ -3984,10 +4227,10 @@ msgstr "Agospiador" msgid "Hot" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Les rempuestes más populares primero" @@ -3996,10 +4239,6 @@ msgstr "Les rempuestes más populares primero" msgid "How should we open this link?" msgstr "¿Cómo habríemos abrir esti enllaz?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Entiéndolo" msgid "If alt text is long, toggles alt text expanded state" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Entá nun yes una persona adulta según les lleis del to país, el to tutor llegal ha lleer estos términos nel to nome." @@ -4031,11 +4270,11 @@ msgstr "Si desanicies esta llista, nun vas ser a recuperala." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Si tienes un dominiu pues usalu como identificador. Esto permítete verificar la to identidá. <0>Conoz más equí." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Si quites esta publicación, nun vas ser a recuperala." @@ -4047,6 +4286,10 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Si quies camudar la contraseña, vamos unviate un códigu pa verificar qu'esta cuenta ye de to." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "" @@ -4091,13 +4334,41 @@ msgstr "Suplantación d'identidá o afirmaciones falses tocante a la identidá o msgid "Impersonation, misinformation, or false claims" msgstr "Suplantación d'identidá, desinformación o afirmaciones falses" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Enllaces esplícitos o mensaxes que nun son afayadizos" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "" @@ -4105,7 +4376,7 @@ msgstr "" msgid "Incorrect username or password" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "" @@ -4113,7 +4384,7 @@ msgstr "" msgid "Input confirmation code for account deletion" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "" @@ -4129,10 +4400,14 @@ msgstr "" msgid "Interaction limited" msgstr "Llendóse la interaición" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "" msgid "Invalid handle. Please try a different one." msgstr "L'identificador ye inválidu. Prueba con otru." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "" @@ -4158,7 +4433,7 @@ msgstr "" msgid "Invite a Friend" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Códigu d'invitación" @@ -4186,15 +4461,15 @@ msgstr "" msgid "Invites, but personal" msgstr "Invitaciones, mas personales" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "¡Namás tas tu! Amiesta más persones al paquete d'iniciación buscando arriba." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "ID de trabayu: {0}" @@ -4220,11 +4495,27 @@ msgstr "Xúnite a la conversación" msgid "Journalism" msgstr "Periodismu" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "" @@ -4237,7 +4528,7 @@ msgstr "Etiquetes" msgid "Labels added" msgstr "Amestáronse les etiquetes" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -4253,22 +4544,30 @@ msgstr "" msgid "Language selection" msgstr "Seleición de llingua" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Configuración de llingua" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Llingües" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Grande" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Lo último" @@ -4282,7 +4581,6 @@ msgstr "saber más" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "" @@ -4290,6 +4588,10 @@ msgstr "" msgid "Learn More" msgstr "" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Saber más tocante a Bluesky" @@ -4298,15 +4600,23 @@ msgstr "Saber más tocante a Bluesky" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Saber más tocante a la moderación que s'aplicó a esti conteníu." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Saber más tocante a esta alvertencia" @@ -4316,12 +4626,16 @@ msgstr "Saber más tocante a esta alvertencia" msgid "Learn more about verification on Bluesky" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Saber más tocante a qué ye público en Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Saber más." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Colar de la conversación" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Nun actives nenguna pa veles toes." +msgid "Leave them all unselected to see any language." +msgstr "" -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "" @@ -4370,7 +4685,7 @@ msgstr "¡Vamos!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Claru" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Dar préstame" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -4397,6 +4712,10 @@ msgstr "10 préstames" msgid "Like 10 posts to train the Discover feed" msgstr "" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "" @@ -4405,8 +4724,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "A quién-y prestó" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "A quién-y prestó" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, one {Prestó-y a # usuariu} other {Prestó-yos a # usuarios}}" @@ -4428,20 +4747,36 @@ msgstr "{0, plural, one {Prestó-y a # usuariu} other {Prestó-yos a # usuarios} msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, one {Prestó-y a # usuariu} other {Prestó-yos a # usuarios}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Préstames" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Préstames d'esta publicación" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Socesión llinial" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Bloquióse la llista" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Llista de {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Llistes" @@ -4537,7 +4876,7 @@ msgstr "Cargar más" msgid "Load more suggested feeds" msgstr "Cargar más feeds suxeríos" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Cargar los avisos nuevos" @@ -4552,11 +4891,11 @@ msgstr "Cargar les publicaciones nueves" msgid "Loading..." msgstr "Cargando…" -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Rexistru" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logotipu de <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Logotipu de <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "" @@ -4597,7 +4936,7 @@ msgstr "" msgid "Make one for me" msgstr "Crear unu por min" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "" @@ -4606,7 +4945,7 @@ msgstr "" msgid "Manage saved feeds" msgstr "Xestionar los feeds guardaos" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "" @@ -4614,9 +4953,9 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "" @@ -4625,15 +4964,13 @@ msgstr "" msgid "Mark as read" msgstr "Marcar como lleíu" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "" @@ -4645,19 +4982,26 @@ msgstr "Conteníu multimedia" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Elementos multimedia que puen molestar o nun ser afayadizos pa dalgunos públicos." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Usuarios mentaos" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Menciones" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Menú" @@ -4665,7 +5009,7 @@ msgstr "Menú" msgid "Message {0}" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Desanicióse'l mensaxe" @@ -4674,11 +5018,11 @@ msgstr "Desanicióse'l mensaxe" msgid "Message deleted" msgstr "Desanicióse'l mensaxe" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Mensaxe del sirvidor: {0}" @@ -4691,19 +5035,23 @@ msgstr "" msgid "Message is too long" msgstr "El mensaxe ye mui llongu" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Mensaxes" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Cuenta engañosa" msgid "Misleading Post" msgstr "Publicación engañosa" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderación" @@ -4725,17 +5073,17 @@ msgstr "Moderación" msgid "Moderation details" msgstr "" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Anovóse la llista de moderación" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Llistes de moderación" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Llistes de moderación" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Ferramientes de moderación" @@ -4775,7 +5123,7 @@ msgstr "Ferramientes de moderación" msgid "Moderator has chosen to set a general warning on the content." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Más" @@ -4790,13 +5138,13 @@ msgstr "Más feeds" msgid "More options" msgstr "Más opciones" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Lo que más presta primero" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Les rempuestes que más prestaron primero" @@ -4808,8 +5156,8 @@ msgstr "Filmes" msgid "Music" msgstr "Música" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Desactivar el volume" @@ -4819,8 +5167,8 @@ msgstr "Desactivar el volume" msgid "Mute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "" msgid "Mute this word until you unmute it" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Silenciar el filu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Silenciar pallabres y etiquetes" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Cuentes silenciaes" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Cuentes silenciaes" @@ -4898,7 +5246,7 @@ msgstr "" msgid "Muted by \"{0}\"" msgstr "" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Pallabres y etiquetes silenciaes" @@ -4911,7 +5259,7 @@ msgstr "" msgid "My Birthday" msgstr "El mio aniversariu" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Los mios feeds" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Natura" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "" @@ -4958,11 +5306,11 @@ msgstr "" msgid "Navigates to your profile" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "¿Precises camudala?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "¿Precises informar d'un incumplimientu de derechos d'autor?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Nueva" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Charra nueva" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Mensaxes nuevos" msgid "New Moderation List" msgstr "Llista de moderación nueva" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Contraseña nueva" @@ -5029,7 +5396,7 @@ msgstr "Contraseña nueva" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Publicación nueva" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Publicación nueva" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "" @@ -5054,10 +5429,14 @@ msgstr "" msgid "New User List" msgstr "Llista d'usuarios nueva" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Les rempuestes nueves primero" @@ -5071,15 +5450,15 @@ msgstr "Noticies" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "Ensin panel de DNS" msgid "No expiry set" msgstr "" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Nun s'atopó nengún GIF destacáu. Pue haber dalgún problema con Tenor." @@ -5119,32 +5498,35 @@ msgstr "" msgid "No likes yet" msgstr "Nun hai nengún préstame" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Yá nun sigues a {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Nun hai nengún mensaxe" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "¡Nun hai nengún avisu!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Naide" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Naide más que l'autor pue citar esta publicación." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Nun hai nenguna publicación." @@ -5171,7 +5553,7 @@ msgstr "Nun hai nengún resultáu" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Nun s'atopó nengún resultáu" @@ -5179,9 +5561,9 @@ msgstr "Nun s'atopó nengún resultáu" msgid "No results found for \"{query}\"" msgstr "Nun s'atopó nengún resultáu pa: {query}" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Nun s'atopó nengún resultáu pa: {query}" @@ -5189,7 +5571,7 @@ msgstr "Nun s'atopó nengún resultáu pa: {query}" msgid "No results." msgstr "" -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Nun s'atopó nengún resultáu de busca pa «{search}»." @@ -5198,7 +5580,7 @@ msgstr "Nun s'atopó nengún resultáu de busca pa «{search}»." msgid "No thanks" msgstr "Non, gracies" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Naide" @@ -5223,59 +5605,76 @@ msgstr "Nun s'atopó a naide. Prueba a buscar otra cuenta." msgid "Non-sexual Nudity" msgstr "" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Nun s'atopó" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Nota sobre compartir" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Equí nun hai nada" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Configuración de los avisos" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Soníos d'avisu" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Soníos d'avisu" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Avisos" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "agora" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Desnudos o conteníu p'adultos que nun s'etiquetó como tal" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Non" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "¡Oh, non!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "D'acuerdu" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Les rempuestes antigües primero" @@ -5331,19 +5736,19 @@ msgstr "Les rempuestes antigües primero" msgid "on<0><1/><2><3/>" msgstr "" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "A unu o más GIFs fálta-yos el testu alternativu." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "A una o más imáxenes fálta-yos el testu alternativu." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "A unu o más vídeos fálta-yos el testu alternativu." @@ -5351,13 +5756,15 @@ msgstr "A unu o más vídeos fálta-yos el testu alternativu." msgid "Only .jpg and .png files are supported" msgstr "Namás son compatibles los ficheros .jpg y .png" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "" -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Contién namás lletres, númberos y guiones" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "" msgid "Only WebVTT (.vtt) files are supported" msgstr "Namás son compatibles los ficheros WebVTT (.vtt)" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "¡Meca! Prodúxose dalgún error." -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "¡Meca!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Abrir el selector de fustaxes" @@ -5416,7 +5822,7 @@ msgstr "" msgid "Open full emoji list" msgstr "" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "" @@ -5424,11 +5830,11 @@ msgstr "" msgid "Open message options" msgstr "" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "" @@ -5453,16 +5859,16 @@ msgstr "" msgid "Open starter pack menu" msgstr "" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Abre {numItems} opciones" @@ -5490,11 +5896,11 @@ msgstr "Abre la cámara del preséu" msgid "Opens captions and alt text dialog" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Abre'l compositor" @@ -5502,7 +5908,7 @@ msgstr "Abre'l compositor" msgid "Opens device photo gallery" msgstr "Abre la galería de semeyes del preséu" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "" @@ -5520,15 +5926,19 @@ msgstr "" msgid "Opens GIF select dialog" msgstr "Abre'l diálogu de seleición de GIFs" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Abre la llista de códigos d'invitación" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "" @@ -5536,12 +5946,8 @@ msgstr "" msgid "Opens password reset form" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Abre'l sitiu web enllaciáu" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Abre esti perfil" @@ -5558,7 +5964,7 @@ msgstr "Opcionalmente, forni más información abaxo:" msgid "Options:" msgstr "Opciones:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "O combina con estes opciones:" @@ -5600,6 +6006,10 @@ msgstr "Otra cuenta" msgid "Other..." msgstr "Otra llingua…" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "" @@ -5608,7 +6018,7 @@ msgstr "" msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Los moderadores revisaron los informes y decidieron desactivate l'accesu a les charres de Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Nun s'atopó la páxina" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Nun s'atopó la páxina" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Anovóse la contraseña" msgid "Password updated!" msgstr "¡Anovóse la configuración!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Persones" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Persones siguíes por @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Persones que siguen a @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "" @@ -5704,12 +6119,12 @@ msgstr "Fixar nel aniciu" msgid "Pin to Home" msgstr "Fixar nel aniciu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Fixar nel to perfil" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Fixóse" @@ -5718,7 +6133,7 @@ msgstr "Fixóse" msgid "Pinned {0} to Home" msgstr "Fixesti «{0}» nel aniciu" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Feeds fixaos" @@ -5726,38 +6141,38 @@ msgstr "Feeds fixaos" msgid "Pinned to your feeds" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Reproduz el GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "" @@ -5765,12 +6180,16 @@ msgstr "" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Escueyi un identificador." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Escueyi una contraseña." @@ -5782,7 +6201,8 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Completa'l captcha de verificación." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "" @@ -5804,6 +6224,7 @@ msgstr "Introduz un nome únicu pa esta contraseña d'aplicación o usa'l xener msgid "Please enter a valid code." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "" @@ -5812,7 +6233,11 @@ msgstr "" msgid "Please enter a valid word, tag, or phrase to mute" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "" #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Introduz la to direición de corréu eletrónicu." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Introduz el to códigu d'invitación." @@ -5853,6 +6278,19 @@ msgstr "" msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Desplica por qué pienses que les charres se desactivaron incorreutamente" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "" @@ -5870,8 +6308,8 @@ msgstr "" msgid "Please verify your email" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" msgstr "" #: src/screens/Onboarding/index.tsx:34 @@ -5884,33 +6322,38 @@ msgstr "Política" msgid "Porn" msgstr "Pornu" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Publicar" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Publicar" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Publicar" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Publicar too" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "" @@ -5919,11 +6362,14 @@ msgstr "" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "La xuba de la publicación falló. Comprueba la conexón a internet y volvi tentalo." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "" @@ -5937,11 +6383,11 @@ msgstr "" msgid "Post Hidden by You" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Configuración de les interaiciones de la publicación" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "" @@ -5954,8 +6400,10 @@ msgstr "Llingua de la publicación" msgid "Post Languages" msgstr "Llingües de la publicación" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Nun s'atopó la publicación" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Lliberóse la publicación" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Publicaciones" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Escondiéronse les publicaciones" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Enllaz potencialmente engañosu" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Guardóse la preferencia" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Primi pa tentar de volver conectate" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Primi pa retentalo" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Primi pa ver los siguidores d'esta cuenta que tamién te siguen" @@ -6015,40 +6469,46 @@ msgstr "Imaxe anterior" msgid "Primary Language" msgstr "Llingua primaria" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Avisos prioritarios" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Privacidá" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Privacidá y seguranza" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacidá y seguranza" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Política de privacidá" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Procesando'l videu…" @@ -6062,15 +6522,14 @@ msgstr "Procesando…" msgid "profile" msgstr "perfil" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Perfil" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Anovóse'l perfil" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "¡El códigu QR copióse nel cartafueyu!" @@ -6119,44 +6594,52 @@ msgstr "" msgid "QR code saved to your camera roll!" msgstr "¡El códigu QR guardóse nel carrete!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Citar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "La cita volvió axuntase" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "La cita separtóse correutamente" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Desactiváronse les cites" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Configuración de les cites" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Cites" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Cites d'esta publicación" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Aleatories (como la ruleta d'un casinu)" @@ -6164,8 +6647,8 @@ msgstr "Aleatories (como la ruleta d'un casinu)" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "" @@ -6177,30 +6660,42 @@ msgstr "" msgid "Reactivate your account" msgstr "" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "" @@ -6213,6 +6708,14 @@ msgstr "" msgid "Reason:" msgstr "Motivu:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Busques de recién" @@ -6234,8 +6737,8 @@ msgstr "" msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Volver cargar les conversaciones" @@ -6244,10 +6747,9 @@ msgstr "Volver cargar les conversaciones" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Quitar" @@ -6259,17 +6761,17 @@ msgstr "" msgid "Remove {historyItem}" msgstr "" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Quitar la cuenta" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Quitar l'avatar" @@ -6284,24 +6786,22 @@ msgstr "" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "¿Quies quitar el feed?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Quitar de los mios feeds" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "" @@ -6332,12 +6831,8 @@ msgstr "" msgid "Remove profile" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Quitar la republicación" @@ -6345,7 +6840,7 @@ msgstr "Quitar la republicación" msgid "Remove subtitle file" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "" @@ -6364,11 +6859,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "" @@ -6377,10 +6872,6 @@ msgstr "" msgid "Removed from list" msgstr "Quitóse de la llista" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Quitóse de los mios feeds" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Quitóse de los feeds guardaos" @@ -6395,34 +6886,36 @@ msgstr "Quitóse de los tos feeds" msgid "Removed verification" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Rempuestes" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "" -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Responder" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -6436,50 +6929,55 @@ msgstr "" msgid "Reply Hidden by You" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Configuración de les rempuestes" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "En rempuesta a <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Respondióte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Anovóse la visibilidá de les rempuestes" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "La rempuesta escondióse correutamente" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Informar del feed" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Informar de la publicación" @@ -6567,25 +7065,26 @@ msgstr "" msgid "Report this user" msgstr "" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Republicar" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Republicar" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Reespubluzar o citar" @@ -6594,26 +7093,38 @@ msgstr "Reespubluzar o citar" msgid "Reposted By" msgstr "Quién republicó" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "{0} republicó" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "<0><1/> republicó" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Republiquesti" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Republicaciones d'esta publicación" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" msgstr "" #: src/view/com/modals/ChangePassword.tsx:253 @@ -6621,8 +7132,8 @@ msgstr "" msgid "Request Code" msgstr "Solicitar un códigu" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Riquir un testu alternativu enantes de publicar" @@ -6630,7 +7141,7 @@ msgstr "Riquir un testu alternativu enantes de publicar" msgid "Require an email code to sign in to your account." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "" @@ -6642,10 +7153,6 @@ msgstr "" msgid "Resend" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "" msgid "Resend Verification Email" msgstr "" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "" @@ -6667,8 +7180,8 @@ msgstr "" msgid "Reset Code" msgstr "" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "" @@ -6687,21 +7200,23 @@ msgstr "Volvi tentar la última aición, la que produxo l'error" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Retentar" @@ -6721,19 +7236,19 @@ msgstr "" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Guardar" @@ -6762,15 +7276,13 @@ msgstr "Guardar" msgid "Save birthday" msgstr "" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Guardar los cambeos" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Guardar los cambeos" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "" msgid "Save to my feeds" msgstr "Guardar nos mios feeds" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Feeds guardaos" @@ -6802,18 +7314,14 @@ msgstr "Feeds guardaos" msgid "Saved to your feeds" msgstr "Guardóse nos tos feeds" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "¡Saluda!" @@ -6826,16 +7334,16 @@ msgstr "Ciencia" msgid "Scroll to top" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Buscar" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -6861,7 +7369,7 @@ msgstr "Buscar «{query}»" msgid "Search for \"{searchText}\"" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Busca feeds que quieras suxerir a otres persones." @@ -6877,10 +7385,14 @@ msgstr "" msgid "Search for posts, users, or feeds" msgstr "" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "" @@ -6890,12 +7402,12 @@ msgstr "" msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Buscar en Tenor" @@ -6903,7 +7415,7 @@ msgstr "Buscar en Tenor" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "" @@ -6912,10 +7424,6 @@ msgstr "" msgid "Security step required" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "" @@ -6936,14 +7444,31 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Consulta esta guía" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" @@ -6988,7 +7513,7 @@ msgstr "Seleiciona una cuenta esistente" msgid "Select GIF" msgstr "" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "" @@ -6996,6 +7521,11 @@ msgstr "" msgid "Select how long to mute this word for." msgstr "" +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "" @@ -7004,7 +7534,7 @@ msgstr "" msgid "Select languages" msgstr "Seleicionar llingües" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "" @@ -7045,12 +7575,12 @@ msgstr "" msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Seleiciona qué llingües quies qu'incluyan los feeds a los que te soscribiesti. Si nun seleiciones nenguna, van amosase toles llingües." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "" @@ -7058,7 +7588,11 @@ msgstr "" msgid "Select your preferred language for translations in your feed." msgstr "Seleiciona la llingua que prefieres pa les traducciones del feed." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "" @@ -7066,17 +7600,9 @@ msgstr "" msgid "Send a neat website!" msgstr "¡Unvia un sitiu web curiosu!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Unviar un mensaxe per corréu electrónicu" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "" @@ -7095,7 +7621,7 @@ msgstr "" msgid "Send message" msgstr "" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "" @@ -7114,20 +7640,20 @@ msgstr "Unviar l'informe" msgid "Send report to {0}" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Unviar per mensaxe direutu" @@ -7143,7 +7669,7 @@ msgstr "Direición del sirvidor" msgid "Set app icon to {0}" msgstr "" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "" @@ -7159,13 +7685,57 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Configuración" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "¡Comparti una historia interesante!" msgid "Share a fun fact!" msgstr "¡Comparti un fechu graciosu!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Compartir de toes toes" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "" @@ -7247,8 +7812,8 @@ msgstr "" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Comparti esti paquete d'iniciación y ayuda a la xente a xunise a la to comunidá en Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "" msgid "Share your favorite feed!" msgstr "¡Comparti'l to feed preferíu!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Comparte'l sitiu web enllaciáu" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Amosar" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Amosar el testu alternativu" @@ -7303,8 +7864,8 @@ msgstr "" msgid "Show hidden replies" msgstr "Amosar les rempuestes escondíes" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Amosar menos d'esto" @@ -7312,55 +7873,63 @@ msgstr "Amosar menos d'esto" msgid "Show list anyway" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Amosar más" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Amosar más d'esto" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Amosar les cites" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Amosar les rempuestes" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Amosar les rempuestes como" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Amosar les republicaciones" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "" @@ -7372,16 +7941,17 @@ msgstr "" msgid "Show warning and filter from feeds" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "" @@ -7390,14 +7960,15 @@ msgstr "" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "" msgid "Sign in to Bluesky or create a new account" msgstr "" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Zarrar la sesión" @@ -7444,8 +8020,8 @@ msgstr "Zarrar la sesión" msgid "Sign Out" msgstr "" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "¿Quies zarrar la sesión?" @@ -7459,12 +8035,12 @@ msgstr "" msgid "Signed in as @{0}" msgstr "Aniciesti la sesión como @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Cuentes asemeyaes" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Saltar" @@ -7472,12 +8048,11 @@ msgstr "Saltar" msgid "Skip this flow" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Pequeña" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "" @@ -7490,11 +8065,11 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Dalgunes persones puen responder" @@ -7510,10 +8085,11 @@ msgstr "" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "" -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Prodúxose dalgún error" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Prodúxose dalgún error, volvi tentalo" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Prodúxose dalgún error, volvi tentalo." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "¡Prodúxose dalgún error!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "" @@ -7539,20 +8118,23 @@ msgstr "" msgid "Something wrong? Let us know." msgstr "¿Hai daqué mal? Coméntanoslo." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "La sesión caducó. Volvi aniciala." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "" @@ -7579,7 +8161,7 @@ msgstr "" msgid "Sports" msgstr "Deportes" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "" @@ -7601,9 +8183,9 @@ msgstr "Amestar persones" msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Paquete d'iniciación" @@ -7611,12 +8193,12 @@ msgstr "Paquete d'iniciación" msgid "Starter pack by {0}" msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "" @@ -7638,19 +8220,21 @@ msgstr "Los paquetes d'iniciación déxente compartir fácilmente los feeds y le msgid "Status Page" msgstr "Páxina d'estáu" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Pasu {0} de {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Borróse l'almacenamientu y agora tienes de reaniciar l'aplicación." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "" @@ -7676,10 +8260,14 @@ msgstr "" msgid "Subscribe" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "" @@ -7692,8 +8280,12 @@ msgstr "" msgid "Subscribe to this list" msgstr "" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "" @@ -7705,7 +8297,7 @@ msgstr "" msgid "Suggested Accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Suxerencies pa ti" @@ -7714,26 +8306,26 @@ msgstr "Suxerencies pa ti" msgid "Suggestive" msgstr "Suxerente" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Cambiar de cuenta" @@ -7742,24 +8334,24 @@ msgstr "Cambiar de cuenta" msgid "Switch Account" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Del sistema" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Rexistru del sistema" @@ -7767,6 +8359,18 @@ msgstr "Rexistru del sistema" msgid "Tags only" msgstr "Namás etiquetes" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "" msgid "Terms" msgstr "Términos" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Términos del serviciu" @@ -7848,10 +8454,6 @@ msgstr "Campu pa introducir testu" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "¡Gracies! Verificóse la direición de corréu electrónicu." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Gracies. Unvióse l'informe." @@ -7864,28 +8466,28 @@ msgstr "Gracies, verifiquesti la direición de corréu correutamente. Pues zarra msgid "That contains the following:" msgstr "Que contenga lo siguiente:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Esi identificador yá ta asignáu." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Nun se pudo atopar esi paquete d'iniciación." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Alón." -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "La cuenta va ser a interactuar contigo dempués de desbloquiala." @@ -7900,7 +8502,7 @@ msgstr "Va reaniciase l'aplicación" msgid "The author of this thread has hidden this reply." msgstr "L'autor d'esti filu escondió esta rempuesta." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "L'aplicación web de Bluesky" @@ -7920,10 +8522,6 @@ msgstr "El feed «Descubrimientu»" msgid "The Discover feed now knows what you like" msgstr "Agora'l feed «Descubrimientu» sabe qué te presta" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "" - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "La esperiencia ye meyor na aplicación. Baxa Bluesky agora y llevámoste a onde lo dexesti." @@ -7944,8 +8542,16 @@ msgstr "Aplicáronse les etiquetes siguientes al to conteníu." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "Va predeterminase la configuración siguiente pa cuando crees publicaciones. Pues editala pa una publicación dende'l compositor." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Ye posible que la publicación se desaniciare." @@ -7953,9 +8559,10 @@ msgstr "Ye posible que la publicación se desaniciare." msgid "The Privacy Policy has been moved to <0/>" msgstr "La política de privacidá treslladóse a <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "El videu seleicionáu supera los 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "" #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "Los términos del serviciu treslladáronse a" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "El códigu de verificación que forniesti ye inválidu. Asegúrate de qu'usesti l'enllaz de verificación correutu o solicita unu nuevu." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Del estilu" @@ -7990,14 +8597,14 @@ msgstr "Del estilu" msgid "There is no time limit for account deactivation, come back any time." msgstr "" -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Hebo un problema al conectase con Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Hebo un problema al conectase col sirvidor" @@ -8006,17 +8613,12 @@ msgstr "Hebo un problema al conectase col sirvidor" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Hebo un problema al conectase col sirvidor. Comprueba la conexón a internet y volvi tentalo." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Hebo un problema al conectase col to sirvidor" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Hebo un problema al catar los avisos. Toca equí pa volver tentalo." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Hebo un problema al catar les publicaciones. Toca equí pa volver tentalo." @@ -8037,7 +8639,7 @@ msgstr "Hebo un problema al catar les tos llistes. Toca equí pa volver tentalo. msgid "There was an issue fetching your service info" msgstr "Hebo un problema al catar la información del serviciu" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Hebo un problema al quitar esti feed. Comprueba la conexón a internet y volvi tentalo." @@ -8052,9 +8654,9 @@ msgstr "Hebo un problema al unviar l'informe. Comprueba la conexón a internet." msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Hebo un error al anovar los feeds. Comprueba la conexón a internet y volvi tentalo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Hebo un error al anovar los feeds. Comprueba la conexón a internet y vo msgid "There was an issue! {0}" msgstr "¡Hebo un problema! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "¡Hebo un problema! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Hebo un problema. Comprueba la conexón a internet y volvi tentalo." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Hebo un problema inesperáu na aplicación. ¡Coméntanos si te pasó!" @@ -8089,7 +8691,7 @@ msgstr "Hebo un problema inesperáu na aplicación. ¡Coméntanos si te pasó!" msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "¡Hebo una cantidá escomanada d'usuarios nuevos en Bluesky! Vamos activar la cuenta namás que podamos." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Esta configuración namás s'aplica al feed «Siguiendo»." @@ -8146,7 +8748,7 @@ msgstr "«{0}» agospia esti conteníu. ¿Quies activar el conteníu multimedia msgid "This content is not available because one of the users involved has blocked the other." msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Esti conteníu nun se pue ver ensin una cuenta de Bluesky." @@ -8158,6 +8760,10 @@ msgstr "Esta conversación ye con una cuenta desaniciada o desactivada. Primi pa msgid "This email is already associated with your account." msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Esta función ta en beta. Pues lleer más información tocante a les esportaciones de depósitos <0>nesta entrada del blogue." @@ -8170,7 +8776,7 @@ msgstr "" msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Esta función nun ta disponible mentanto uses una contraseña d'aplicación. Anicia la sesión cola contraseña principal." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Esti feed ta recibiendo munchu tránsitu y nun ta disponible temporalmente. Volvi tentalo dempués." @@ -8209,11 +8815,11 @@ msgstr "L'autor aplicó esta etiqueta." msgid "This label was applied by you." msgstr "Apliquesti esta etiqueta." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Esti etiquetador nun declaró qué etiquetes publica y ye posible que nun tea activu." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Esti enllaz llévate al sitiu web siguiente:" @@ -8233,29 +8839,28 @@ msgstr "Esta llista ta balera." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Esti serviciu de moderación nun ta disponible. Consulta abaxo los detalles y si sigue'l problema, ponte en contautu con nós." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Indicóse qu'esta publicación se creó'l <0>{0} mas la primer vegada que se creó en Bluesky foi'l <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Esta publicación contién un tipu desconocíu de «threadgate». Ye posible que l'aplicación nun tea anovada." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Desanicióse esta publicación." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Esta publicación nun va apaecer nos feeds nin nos filos. Esta aición nun se pue desfacer." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "L'autor d'esta publicación desactivó les cites." @@ -8263,11 +8868,11 @@ msgstr "L'autor d'esta publicación desactivó les cites." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Esti serviciu nun fornió los términos del serviciu nin una política de privacidá." @@ -8275,6 +8880,10 @@ msgstr "Esti serviciu nun fornió los términos del serviciu nin una política d msgid "This should create a domain record at:" msgstr "Esto habría crear un rexistru de dominiu en:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" @@ -8316,16 +8925,18 @@ msgstr "Esti usuariu nun sigue a naide." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "" -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Esta aición va quitar la publicación d'esta cita pa tolos usuarios y va sustituyila con un espaciu acutáu." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "" @@ -8334,24 +8945,27 @@ msgstr "" msgid "Thread preferences" msgstr "Peferencies de los filos" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Preferencies de los filos" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Filos" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Preferencies de los filos" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "" @@ -8376,42 +8990,56 @@ msgstr "¿A quién quies unviar esti informe?" msgid "Today" msgstr "Güei" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Lo destacao" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Tema" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Traducir" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "En tendencia" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Vídeos en tendencia" @@ -8428,14 +9056,10 @@ msgstr "Retentar" msgid "TV" msgstr "TV" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Autenticación en dos pasos (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Teclexa l'identificador que quies" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Escribi'l to mensaxe equí" @@ -8453,7 +9077,7 @@ msgstr "Nun ye posible conectase. Comprueba la conexón a internet y volvi tenta #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "" msgid "Unable to delete" msgstr "Nun ye posible desaniciar" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "" @@ -8486,7 +9126,7 @@ msgstr "" msgid "Unblock account" msgstr "Desbloquiar la cuenta" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "¿Quies desbloquiar la cuenta?" @@ -8495,13 +9135,13 @@ msgstr "¿Quies desbloquiar la cuenta?" msgid "Unblock list" msgstr "" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Desfacer la republicación" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Dexar de siguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "" @@ -8523,7 +9163,7 @@ msgstr "" msgid "Unfollows the user" msgstr "Dexa de siguir al usuariu" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "" @@ -8555,8 +9195,8 @@ msgstr "" msgid "Unmute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Dexar de silenciar la conversación" msgid "Unmute list" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Dexar de silenciar el filu" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "" @@ -8597,8 +9237,8 @@ msgstr "" msgid "Unpin from home" msgstr "Lliberar del aniciu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Lliberar del perfil" @@ -8614,8 +9254,8 @@ msgstr "Lliberésti'l feed «{0}» del aniciu" msgid "Unpinned from your feeds" msgstr "Lliberóse de los tos feeds" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "" @@ -8636,7 +9276,7 @@ msgstr "Dase de baxa d'esti etiquetador" msgid "Unsubscribed from list" msgstr "Diéstite de baxa d'esta llista" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "" @@ -8662,8 +9302,8 @@ msgstr "" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "" @@ -8676,17 +9316,17 @@ msgstr "" msgid "Update your email" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "L'anovamientu del elementu axuntu de la cita falló" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "L'anovamientu de la visibilidá de la rempuesta falló" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Anovando…" @@ -8698,20 +9338,20 @@ msgstr "Xubir una semeya" msgid "Upload a text file to:" msgstr "Xubi un ficheru de testu a:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Xubir dende Cámara" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Xubir dende Ficheros" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Xubir dende Biblioteca" msgid "Uploading images..." msgstr "Xubiendo les imáxenes…" -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Xubiendo la miniatura del enllaz…" -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Xubiendo'l videu…" @@ -8761,6 +9401,10 @@ msgstr "Usar lo aconseyao" msgid "Use this to sign in to the other app along with your handle." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Anovóse la llista d'usuarios" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Identificador o direición de corréu" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "usuarios siguíos por <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Usuarios que sigo" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "" @@ -8846,11 +9502,11 @@ msgstr "Valor:" msgid "Verification failed, please try again." msgstr "" -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "" @@ -8870,8 +9526,15 @@ msgstr "" msgid "Verify account" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "" @@ -8880,21 +9543,20 @@ msgstr "" msgid "Verify DNS Record" msgstr "Verificar el rexistru DNS" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Verificar el ficheru de testu" msgid "Verify this account?" msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Verificar la direición de corréu" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Verificación de la direición de corréu" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Versión {appVersion}" +msgid "Version {0}" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Videu" @@ -8928,7 +9598,7 @@ msgstr "Videu" msgid "Video failed to process" msgstr "Nun se pudo procesar el videu" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "" @@ -8942,15 +9612,15 @@ msgstr "" msgid "Video Games" msgstr "Videoxuegos" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Nun s'atopó'l videu." @@ -8958,11 +9628,11 @@ msgstr "Nun s'atopó'l videu." msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Xubióse'l videu" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Videu: {0}" @@ -8979,11 +9649,11 @@ msgstr "" msgid "View {0}'s avatar" msgstr "Ver l'avatar de {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Ver el perfil de {0}" @@ -8991,7 +9661,7 @@ msgstr "Ver el perfil de {0}" msgid "View {displayName}'s profile" msgstr "Ver el perfil de: {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "" @@ -9009,7 +9679,6 @@ msgstr "Ver la entrada de depuración" msgid "View details" msgstr "Ver los detalles" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Ver los detalles pa informar d'un incumplimientu de los derechos d'autor" @@ -9022,23 +9691,23 @@ msgstr "Ver el filu completu" msgid "View information about these labels" msgstr "Ver la información d'estes etiquetes" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Ver más" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Ver el perfil" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "" @@ -9054,28 +9723,28 @@ msgstr "" msgid "View users who like this feed" msgstr "Ver a qué usuarios-yos prestó esti feed" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Ver les cuentes que bloquiesti" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Ver les tos llistes de moderación" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "" @@ -9083,8 +9752,8 @@ msgstr "" msgid "View your verifications" msgstr "" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "" @@ -9092,16 +9761,20 @@ msgstr "" msgid "Views video in immersive mode" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Volume" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "" msgid "Watch now" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "" + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "Nun pudimos atopar nengún resultáu pa esa etiqueta." @@ -9128,7 +9809,7 @@ msgstr "Nun pudimos atopar nengún resultáu pa esa etiqueta." msgid "We couldn't find any results for that topic." msgstr "Nun pudimos atopar nengún resultáu pa esi tema." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Nun pudimos cargar esta conversación" @@ -9136,6 +9817,10 @@ msgstr "Nun pudimos cargar esta conversación" msgid "We estimate {estimatedTime} until your account is ready." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Unviémoste otru mensaxes de verificación a <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "Esperamos que lo pases podre. Recuerda que Bluesky ye:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Escosemos les publicaciones de los perfiles que sigues. Equí tienes lo último de: <0/>" -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Nun fuimos a determinar si tienes permisu pa xubir vídeos. Volvi tentalo." @@ -9164,10 +9849,14 @@ msgstr "Nun fuimos a determinar si tienes permisu pa xubir vídeos. Volvi tental msgid "We were unable to load your birth date preferences. Please try again." msgstr "" -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "Nesti momentu nun fuimos a cargar los etiquetadores configuraos." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "" @@ -9176,7 +9865,7 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "Vamos avisate cuando la cuenta tea preparada." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -9184,6 +9873,22 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "Vamos usar esta información pa personalizar la to esperiencia." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Tenemos problemes de rede. Volvi tentalo" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "¡Allégranos muncho tenete con nós!" @@ -9205,15 +9910,15 @@ msgstr "Nun fuimos a resolver esta llista. Si sigue'l problema, ponte en contaut msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Nesti momentu nun fuimos a cargar la llista de pallabres silenciaes. Volvi tentalo." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "La busca nun se completó. Volvi tentalo nunos minutos." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Desanicióse la publicación a la que tas respondiendo." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Nun podemos atopar la páxina que buscabes." @@ -9222,6 +9927,26 @@ msgstr "Nun podemos atopar la páxina que buscabes." msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Namás pues soscribite a venti etiquetadores y yá algamesti esa llende." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "" @@ -9240,7 +9965,7 @@ msgstr "¿Cómo quies llamar al paquete d'iniciación?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "¿Que pasó?" @@ -9256,11 +9981,11 @@ msgstr "¿Qué llingües s'usaron nesta publicación?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "¿Quién pue interactuar con esta publicación?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Quién pue responder" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "¡Meca!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "¡Meca! La carga de los vídeos en tendencia falló." @@ -9322,12 +10047,12 @@ msgstr "¿Por qué habría revisase esti usuariu?" msgid "Write a message" msgstr "" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Escribir una rempuesta" @@ -9358,11 +10083,11 @@ msgstr "Sí, desactivar" msgid "Yes, delete this starter pack" msgstr "Sí, desanicialu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Sí, separtar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Sí, esconder" @@ -9378,6 +10103,10 @@ msgstr "Ayeri" msgid "You" msgstr "Tu" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "" @@ -9386,6 +10115,10 @@ msgstr "" msgid "You are creating an account on" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "" @@ -9403,7 +10136,7 @@ msgstr "" msgid "You are not allowed to go live" msgstr "" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Nun tienes permisu pa xubir vídeos." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "" @@ -9441,10 +10173,18 @@ msgstr "Tamién pues siguir los feeds personalizaos nuevos que descubras." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Tamién pues desactivar temporalmente la cuenta y volver activala en cualesquier momentu." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Pues siguir coles conversaciones que tengas en cursu independientemente de la opción qu'escueyas." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Yá pues aniciar la sesión cola contraseña nueva." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Pues volver activar la cuenta pa siguir aniciando la sesión. El perfil y les publicaciones van ser visibles pa otros usuarios." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "" #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "" @@ -9472,7 +10212,7 @@ msgstr "Nun te sigue nenguna cuenta." msgid "You don't follow any users who follow @{name}." msgstr "Nun sigues a nengún usuariu que sigua a @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "" @@ -9480,15 +10220,15 @@ msgstr "" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "¡Nun tienes nengún códigu d'invitación! Vamos unviate dalgún cuando lleves un tiempu en Bluesky." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Nun tienes nengún feed fixáu." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Nun tienes nengún feed guardáu." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Bloquiesti al autor o l'autor bloquióte." @@ -9502,6 +10242,10 @@ msgstr "Bloquiesti a esti usuariu" msgid "You have blocked this user. You cannot view their content." msgstr "Bloquiesti a esti usuariu. Nun pues ver el so conteníu." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Silenciesti esta cuenta." msgid "You have muted this user" msgstr "Silenciesti esti usuariu" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Nun tienes nenguna conversación. ¡Anicia una!" @@ -9547,7 +10291,7 @@ msgstr "Nun bloquiesti nenguna cuenta. Pa bloquiar una, ve al so perfil y seleic msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Nun silenciesti nenguna cuenta. Pa silenciar una, ve al so perfil y seleiciona «Silenciar la cuenta» nel menú de la so cuenta." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Aportesti a la fin" @@ -9572,6 +10316,10 @@ msgstr "Nun silenciesti nenguna pallabra nin etiqueta" msgid "You hid this reply." msgstr "Escondiesti esta rempuesta." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "" @@ -9592,7 +10340,7 @@ msgstr "Namás pues amestar hasta 3 feeds" msgid "You may only select up to 4 images" msgstr "Namás pues seleicionar hasta 4 imáxenes" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "" @@ -9600,6 +10348,14 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Tienes de siguir a, polo menos, siete persones más pa xenerar un paquete d'iniciación." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Tienes de conceder l'accesu a la biblioteca de semeyes pa guardar un códigu QR" @@ -9608,6 +10364,11 @@ msgstr "Tienes de conceder l'accesu a la biblioteca de semeyes pa guardar un có msgid "You must select at least one labeler for a report" msgstr "Tienes de seleicionar polo menos un etiquetador pa informar" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "" @@ -9616,7 +10377,7 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "Desactivesti @{0} anteriormente." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "" @@ -9628,16 +10389,20 @@ msgstr "" msgid "You reacted {0} to {1}" msgstr "" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Vas zarrar la sesión de toles cuentes." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Yá nun vas recibir avisos d'esti filu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Agora vas recibir avisos d'esti filu" @@ -9657,11 +10422,11 @@ msgstr "Tu: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Tu: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Namás qu'acabes de crear la cuenta, vas siguir a los usuarios y feeds suxeríos." -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Namás qu'acabes de crear la cuenta, vas sigur a los usuarios suxeríos." @@ -9673,9 +10438,9 @@ msgstr "Vas siguir a estes persones y a {0} más" msgid "You'll follow these people right away" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Vas recibir un mensaxe en <0>{0} pa verificar que yes tu." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "Escoyesti esconder una pallabra o una etiqueta d'esta publicación." msgid "You've found some people to follow" msgstr "" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "¡Algamesti la fin del feed! Atopa dalgunes cuentes más y síguiles." @@ -9711,19 +10480,23 @@ msgstr "¡Algamesti la fin del feed! Atopa dalgunes cuentes más y síguiles." msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Algamesti la llende diaria de vídeos xubíos (milenta bytes)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Algamesti la llende diaria de vídeos xubíos (milenta vídeos)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "La cuenta" @@ -9735,7 +10508,7 @@ msgstr "Desanicióse la cuenta" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "La cuenta nun tien abonda antigüedá como pa xubir vídeos. Volvi tentalo dempués." @@ -9751,11 +10524,11 @@ msgstr "Detectóse que la cuenta incumplió los <0>términos del serviciu de Blu msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "Unvióse l'apellación. Si s'acepta, vas recibir un mensaxe per corréu electrónicu." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Data de nacencia" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "El restolador nun ye compatible col formatu del videu. Prueba con otru restolador." @@ -9771,13 +10544,15 @@ msgstr "" msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "L'identificador actual <0>{0} vas tenelu acutáu. Pues volver usalu en cualesquier momentu dende esta cuenta." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "La direición de corréu paez ser inválida." @@ -9786,15 +10561,11 @@ msgstr "La direición de corréu paez ser inválida." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "La direición de corréu nun se verificó. Facelo ye un pasu mui importante qu'aconseyamos." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "¡El to primer préstame!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "" @@ -9806,19 +10577,15 @@ msgstr "¡El feed siguiente ta baleru! Sigui a más usuarios pa ver qué pasó." msgid "Your full handle will be <0>@{0}" msgstr "L'identificador completu va ser <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "" @@ -9835,15 +10602,15 @@ msgstr "Pallabres que silenciesti" msgid "Your password has been changed successfully!" msgstr "¡Camudesti la contraseña correutamente!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Publicóse la entrada" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Publicáronse les entraes" @@ -9851,15 +10618,19 @@ msgstr "Publicáronse les entraes" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Los préstames, les publicaciones y los bloqueos de to son públicos. Lo que silencies ye privao." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "El perfil, les publicaciones, los feeds y les llistes yá nun van ser visibles pa otros usuarios de Bluesky. Pues volver activar la cuenta en cualesquier momentu aniciando la sesión." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Publicóse la rempuesta" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -9867,7 +10638,7 @@ msgstr "" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "L'informe va unviase al serviciu de moderación de Bluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "" diff --git a/src/locale/locales/az/messages.po b/src/locale/locales/az/messages.po new file mode 100644 index 0000000000..e09669457a --- /dev/null +++ b/src/locale/locales/az/messages.po @@ -0,0 +1,10648 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-11-05 16:01-0800\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: az\n" +"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-08-12 00:28\n" +"Last-Translator: \n" +"Language-Team: Azerbaijani\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: az\n" +"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n" +"X-Crowdin-File-ID: 11\n" + +#: src/components/ProgressGuide/FollowDialog.tsx:516 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127 +msgid "(active)" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:160 +msgid "(contains embedded content)" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:69 +msgid "(no email)" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:169 +msgid "{0, plural, one {# day} other {# days}}" +msgstr "" + +#: src/screens/Profile/ProfileFollowers.tsx:40 +msgid "{0, plural, one {# follower} other {# followers}}" +msgstr "" + +#: src/screens/Profile/ProfileFollows.tsx:40 +msgid "{0, plural, one {# following} other {# following}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:159 +msgid "{0, plural, one {# hour} other {# hours}}" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:53 +msgid "{0, plural, one {# label has} other {# labels have}} been placed on this account" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:62 +msgid "{0, plural, one {# label has} other {# labels have}} been placed on this content" +msgstr "" + +#: src/screens/Post/PostLikedBy.tsx:41 +msgid "{0, plural, one {# like} other {# likes}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:149 +msgid "{0, plural, one {# minute} other {# minutes}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:180 +msgid "{0, plural, one {# month} other {# months}}" +msgstr "" + +#: src/screens/Post/PostQuotes.tsx:41 +msgid "{0, plural, one {# quote} other {# quotes}}" +msgstr "" + +#: src/screens/Post/PostRepostedBy.tsx:41 +msgid "{0, plural, one {# repost} other {# reposts}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:139 +msgid "{0, plural, one {# second} other {# seconds}}" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 +msgid "{0, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#. How many months have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:182 +msgid "{0, plural, one {#mo} other {#mo}}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:444 +#: src/screens/Profile/Header/Metrics.tsx:22 +msgid "{0, plural, one {follower} other {followers}}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/screens/Profile/Header/Metrics.tsx:26 +msgid "{0, plural, one {following} other {following}}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 +msgid "{0, plural, one {like} other {likes}}" +msgstr "" + +#: src/screens/Profile/Header/Metrics.tsx:58 +msgid "{0, plural, one {post} other {posts}}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 +msgid "{0, plural, one {quote} other {quotes}}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 +msgid "{0, plural, one {repost} other {reposts}}" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82 +msgid "{0, plural, other {{1} posts}}" +msgstr "" + +#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack +#: src/screens/StarterPack/StarterPackScreen.tsx:490 +msgid "{0, plural, other {# people have}} used this starter pack!" +msgstr "" + +#. Pattern: {wordValue} in tags +#: src/components/dialogs/MutedWords.tsx:475 +msgid "{0} <0>in <1>tags" +msgstr "" + +#. Pattern: {wordValue} in text, tags +#: src/components/dialogs/MutedWords.tsx:465 +msgid "{0} <0>in <1>text & tags" +msgstr "" + +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + +#: src/components/live/LiveStatusDialog.tsx:68 +msgid "{0} is live" +msgstr "" + +#: src/components/live/queries.ts:39 +msgid "{0} is not a valid URL" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 +msgid "{0} joined this week" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 +msgid "{0} of {1}" +msgstr "" + +#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field +#: src/screens/StarterPack/Wizard/StepDetails.tsx:55 +msgid "{0} out of 50" +msgstr "" + +#: src/components/dms/MessageItem.tsx:143 +msgid "{0} reacted {1}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:231 +msgid "{0} reacted {1} to {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 +msgid "{0}'s avatar" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:74 +msgid "{0}'s favorite feeds and people - join me!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:46 +msgid "{0}'s starter pack" +msgstr "" + +#. How many days have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:171 +msgid "{0}d" +msgstr "" + +#. How many hours have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:161 +msgid "{0}h" +msgstr "" + +#. How many minutes have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:151 +msgid "{0}m" +msgstr "" + +#. How many seconds have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:141 +msgid "{0}s" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:402 +msgid "{count, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#: src/lib/generate-starterpack.ts:111 +#: src/screens/StarterPack/Wizard/index.tsx:184 +msgid "{displayName}'s Starter Pack" +msgstr "" + +#: src/screens/SignupQueued.tsx:216 +msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" +msgstr "" + +#: src/screens/SignupQueued.tsx:222 +msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:353 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:379 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:272 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:484 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:457 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:296 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:508 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:403 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:432 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:365 +msgid "{firstAuthorLink} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:342 +msgid "{firstAuthorLink} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:391 +msgid "{firstAuthorLink} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:284 +msgid "{firstAuthorLink} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:496 +msgid "{firstAuthorLink} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:469 +msgid "{firstAuthorLink} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:308 +msgid "{firstAuthorLink} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:520 +msgid "{firstAuthorLink} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:415 +msgid "{firstAuthorLink} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:444 +msgid "{firstAuthorLink} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:346 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:372 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:265 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:477 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:450 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:289 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:501 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:396 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:425 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:351 +msgid "{firstAuthorName} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:341 +msgid "{firstAuthorName} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:377 +msgid "{firstAuthorName} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:270 +msgid "{firstAuthorName} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:482 +msgid "{firstAuthorName} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:455 +msgid "{firstAuthorName} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:294 +msgid "{firstAuthorName} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:506 +msgid "{firstAuthorName} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:401 +msgid "{firstAuthorName} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:430 +msgid "{firstAuthorName} verified you" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:572 +msgid "{following} following" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:413 +msgid "{handle} can't be messaged" +msgstr "" + +#: src/components/live/utils.ts:15 +msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" +msgstr "" + +#: src/components/live/utils.ts:19 +msgid "{hours, plural, one {# hour} other {# hours}}" +msgstr "" + +#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack +#: src/components/StarterPack/StarterPackCard.tsx:101 +msgid "{joinedAllTimeCount, plural, other {# users have}} joined!" +msgstr "" + +#: src/components/live/utils.ts:10 +msgid "{minutes, plural, one {# minute} other {# minutes}}" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 +msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#: src/components/NewskieDialog.tsx:116 +msgid "{profileName} joined Bluesky {0} ago" +msgstr "" + +#: src/components/NewskieDialog.tsx:111 +msgid "{profileName} joined Bluesky using a starter pack {0} ago" +msgstr "" + +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111 +msgid "{rank}." +msgstr "" + +#. trending topic time spent trending. should be as short as possible to fit in a pill +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206 +msgid "{type}h ago" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:60 +msgid "{userName} is a trusted verifier" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:67 +msgid "{userName} is verified" +msgstr "" + +#. Possessive, meaning "the verifications of {userName}" +#: src/components/verification/VerificationsDialog.tsx:69 +msgid "{userName}'s verifications" +msgstr "" + +#. Indicates the number of additional profiles are in the Starter Pack e.g. +12 +#: src/screens/Search/components/StarterPackCard.tsx:249 +msgid "+{computedTotal}" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:488 +msgctxt "profiles" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:541 +msgctxt "feeds" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#: src/view/shell/Drawer.tsx:116 +msgid "<0>{0} {1, plural, one {follower} other {followers}}" +msgstr "" + +#: src/view/shell/Drawer.tsx:127 +msgid "<0>{0} {1, plural, one {following} other {following}}" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:529 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:522 +msgid "<0>{0} is included in your starter pack" +msgstr "" + +#: src/components/WhoCanReply.tsx:319 +msgid "<0>{0} members" +msgstr "" + +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:479 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + +#: src/screens/Profile/Header/Handle.tsx:53 +msgid "⚠Invalid Handle" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:193 +msgid "24 hours" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:268 +msgid "2FA Confirmation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:232 +msgid "30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:217 +msgid "7 days" +msgstr "" + +#. If last message does not contain text, fall back to "{user} reacted to {a message}" +#: src/screens/Messages/components/ChatListItem.tsx:210 +msgid "a message" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91 +msgid "A new form of verification" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#: src/Navigation.tsx:523 +#: src/screens/Settings/AboutSettings.tsx:75 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 +msgid "About" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/RequestButtons.tsx:259 +msgid "Accept" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:249 +msgid "Accept chat request" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/RequestListItem.tsx:42 +msgid "Accept Request" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 +msgid "Accessibility" +msgstr "" + +#: src/Navigation.tsx:382 +msgid "Accessibility Settings" +msgstr "" + +#: src/Navigation.tsx:398 +#: src/screens/Login/LoginForm.tsx:194 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 +msgid "Account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/view/com/profile/ProfileMenu.tsx:158 +msgctxt "toast" +msgid "Account blocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:171 +msgctxt "toast" +msgid "Account followed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 +#: src/view/com/profile/ProfileMenu.tsx:134 +msgctxt "toast" +msgid "Account muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:103 +#: src/lib/moderation/useModerationCauseDescription.ts:98 +msgid "Account Muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:89 +msgid "Account Muted by List" +msgstr "" + +#: src/screens/Settings/Settings.tsx:624 +msgid "Account options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:660 +msgid "Account removed from quick access" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128 +#: src/view/com/profile/ProfileMenu.tsx:148 +msgctxt "toast" +msgid "Account unblocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:183 +msgctxt "toast" +msgid "Account unfollowed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 +#: src/view/com/profile/ProfileMenu.tsx:124 +msgctxt "toast" +msgid "Account unmuted" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:96 +msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 +#: src/components/dialogs/MutedWords.tsx:328 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +msgid "Add" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:572 +msgid "Add {0} more to continue" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Add {displayName} to starter pack" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:107 +#: src/view/com/composer/labels/LabelsBtn.tsx:112 +msgid "Add a content warning" +msgstr "" + +#: src/components/live/GoLiveDialog.tsx:101 +msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event." +msgstr "" + +#: src/view/screens/ProfileList.tsx:924 +#: src/view/screens/ProfileList.tsx:942 +msgid "Add a user to this list" +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:55 +#: src/screens/Deactivated.tsx:192 +msgid "Add account" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:210 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 +msgid "Add alt text" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +msgid "Add alt text (optional)" +msgstr "" + +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 +msgid "Add another account" +msgstr "" + +#: src/view/com/composer/Composer.tsx:776 +msgid "Add another post" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 +msgid "Add app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:75 +#: src/screens/Settings/AppPasswords.tsx:83 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:111 +msgid "Add App Password" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.web.tsx:35 +msgid "Add emoji reaction" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 +msgid "Add more details (optional)" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:321 +msgid "Add mute word with chosen settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:112 +msgid "Add muted words and tags" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1340 +msgid "Add new post" +msgstr "" + +#: src/view/screens/ProfileList.tsx:932 +#: src/view/screens/ProfileList.tsx:950 +msgid "Add people" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79 +msgid "Add people to list" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:55 +msgid "Add Reaction" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:99 +msgid "Add recommended feeds" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:510 +msgid "Add some feeds to your starter pack!" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:41 +msgid "Add the default feed of only people you follow" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:406 +msgid "Add the following DNS record to your domain:" +msgstr "" + +#: src/components/FeedCard.tsx:305 +msgid "Add this feed to your feeds" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:305 +#: src/view/com/profile/ProfileMenu.tsx:308 +msgid "Add to lists" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 +msgid "Add user to list" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 +msgid "Added to list" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:421 +msgid "Additional details (limit 300 characters)" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:159 +msgid "Adult" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:116 +#: src/lib/moderation/useGlobalLabelStrings.ts:34 +#: src/lib/moderation/useModerationCauseDescription.ts:148 +#: src/view/com/composer/labels/LabelsBtn.tsx:127 +msgid "Adult Content" +msgstr "" + +#: src/screens/Moderation/index.tsx:404 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:247 +msgid "Adult content is disabled." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:138 +#: src/view/com/composer/labels/LabelsBtn.tsx:196 +msgid "Adult Content labels" +msgstr "" + +#: src/screens/Moderation/index.tsx:454 +msgid "Advanced" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +msgid "alice@example.com" +msgstr "" + +#: src/view/screens/Notifications.tsx:88 +msgid "All" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:386 +msgid "All accounts have been followed!" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:64 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:99 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:101 +msgid "All languages" +msgstr "" + +#: src/view/screens/Feeds.tsx:707 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:146 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:153 +msgid "Allow access to your direct messages" +msgstr "" + +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 +msgid "Allow new messages from" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 +msgid "Allow quote posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +msgid "Allow replies from:" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:200 +msgid "Allows access to direct messages" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/view/com/modals/ChangePassword.tsx:182 +msgid "Already have a code?" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:43 +msgid "Already signed in as @{0}" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:188 +msgid "ALT" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:54 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 +#: src/view/com/composer/videos/SubtitleDialog.tsx:40 +#: src/view/com/composer/videos/SubtitleDialog.tsx:55 +#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:105 +msgid "Alt text" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 +msgid "Alt Text" +msgstr "" + +#: src/view/com/composer/photos/Gallery.tsx:260 +msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93 +msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:266 +msgid "An error has occurred" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 +msgid "An error occurred" +msgstr "" + +#: src/view/com/composer/state/video.ts:400 +msgid "An error occurred while compressing the video." +msgstr "" + +#: src/state/queries/explore-feed-previews.tsx:173 +msgid "An error occurred while fetching the feed." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 +msgid "An error occurred while generating your starter pack. Want to try again?" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 +msgid "An error occurred while loading the video. Please try again later." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 +msgid "An error occurred while loading the video. Please try again." +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:72 +msgid "An error occurred while saving the QR code!" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:63 +msgid "An error occurred while selecting the video" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:374 +msgid "An error occurred while trying to follow all" +msgstr "" + +#: src/view/com/composer/state/video.ts:441 +msgid "An error occurred while uploading the video." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84 +#: src/components/verification/VerifierDialog.tsx:86 +msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28 +#: src/lib/moderation/useReportOptions.ts:28 +msgid "An issue not included in these options" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:38 +msgid "An issue occurred starting the chat" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +msgid "An issue occurred while trying to open the chat" +msgstr "" + +#: src/components/hooks/useFollowMethods.ts:35 +#: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 +#: src/view/com/profile/FollowButton.tsx:38 +#: src/view/com/profile/FollowButton.tsx:48 +msgid "An issue occurred, please try again." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118 +msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:185 +msgid "an unknown error occurred" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:134 +#: src/lib/moderation/useModerationCauseDescription.ts:144 +msgid "an unknown labeler" +msgstr "" + +#: src/components/WhoCanReply.tsx:340 +msgid "and" +msgstr "" + +#: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:94 +msgid "Animals" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 +msgid "Animated GIF" +msgstr "" + +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 +msgid "Announcing verification on Bluesky" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33 +#: src/lib/moderation/useReportOptions.ts:33 +msgid "Anti-Social Behavior" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +msgid "Anybody can interact" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 +#: src/screens/Settings/AppIconSettings/index.tsx:67 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 +msgid "App Icon" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:87 +msgid "App Language" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:122 +msgid "App Password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:147 +msgctxt "toast" +msgid "App password deleted" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84 +msgid "App password name must be unique" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 +msgid "App password names can only contain letters, numbers, spaces, dashes, and underscores" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 +msgid "App password names must be at least 4 characters long" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 +msgid "App passwords" +msgstr "" + +#: src/Navigation.tsx:350 +#: src/screens/Settings/AppPasswords.tsx:51 +msgid "App Passwords" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:150 +#: src/components/moderation/LabelsOnMeDialog.tsx:153 +msgid "Appeal" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:268 +msgid "Appeal \"{0}\" label" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: src/screens/Messages/components/ChatDisabled.tsx:91 +msgctxt "toast" +msgid "Appeal submitted" +msgstr "" + +#: src/screens/Takendown.tsx:111 +#: src/screens/Takendown.tsx:144 +msgid "Appeal suspension" +msgstr "" + +#: src/screens/Takendown.tsx:114 +msgid "Appeal Suspension" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 +msgid "Appeal this decision" +msgstr "" + +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 +msgid "Appearance" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 +#: src/screens/Home/NoFeedsPinned.tsx:93 +msgid "Apply default recommended feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 +msgid "Archived from {0}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 +msgid "Archived post" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:209 +msgid "Are you sure you want to delete the app password \"{0}\"?" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:183 +msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:657 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:86 +msgid "Are you sure you want to discard your changes?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:46 +msgid "Are you sure you want to leave this conversation?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:45 +msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." +msgstr "" + +#: src/components/FeedCard.tsx:340 +msgid "Are you sure you want to remove this from your feeds?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:725 +msgid "Are you sure you'd like to discard this draft?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:910 +msgid "Are you sure you'd like to discard this post?" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:433 +msgid "Are you sure?" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74 +msgid "Are you writing in <0>{suggestedLanguageName}?" +msgstr "" + +#: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:95 +msgid "Art" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:171 +msgid "Artistic or non-erotic nudity." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 +msgid "Assign topic for algo" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 +msgctxt "Name of app icon variant" +msgid "Aurora" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:116 +#: src/screens/Settings/ContentAndMediaSettings.tsx:122 +msgid "Autoplay videos and GIFs" +msgstr "" + +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:84 +#: src/components/moderation/LabelsOnMeDialog.tsx:315 +#: src/components/moderation/LabelsOnMeDialog.tsx:316 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 +#: src/screens/Login/ForgotPasswordForm.tsx:129 +#: src/screens/Login/LoginForm.tsx:310 +#: src/screens/Login/LoginForm.tsx:316 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:158 +#: src/screens/Signup/BackNextButtons.tsx:41 +#: src/screens/StarterPack/Wizard/index.tsx:303 +msgid "Back" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:259 +msgid "Back to Chats" +msgstr "" + +#: src/view/screens/Lists.tsx:53 +#: src/view/screens/ModerationModlists.tsx:53 +msgid "Before creating a list, you must first verify your email." +msgstr "" + +#: src/lib/hooks/useOpenComposer.tsx:14 +msgid "Before creating a post or replying, you must first verify your email." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:245 +msgid "Before creating a starter pack, you must first verify your email." +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:235 +msgid "Before you can accept this chat request, you must first verify your email." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/MessageProfileButton.tsx:58 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 +msgid "Before you can message another user, you must first verify your email." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:103 +#: src/screens/Settings/AccountSettings.tsx:140 +msgid "Birthday" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:473 +msgid "Block" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:247 +#: src/components/dms/ConvoMenu.tsx:250 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 +#: src/screens/Messages/components/RequestButtons.tsx:144 +#: src/screens/Messages/components/RequestButtons.tsx:146 +#: src/view/com/profile/ProfileMenu.tsx:384 +#: src/view/com/profile/ProfileMenu.tsx:391 +msgid "Block account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 +#: src/view/com/profile/ProfileMenu.tsx:456 +msgid "Block Account?" +msgstr "" + +#: src/view/screens/ProfileList.tsx:669 +msgid "Block accounts" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:317 +msgid "Block and Delete" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:352 +msgid "Block and/or delete this conversation" +msgstr "" + +#: src/view/screens/ProfileList.tsx:789 +msgid "Block list" +msgstr "" + +#: src/screens/Messages/components/ChatStatusInfo.tsx:46 +msgid "Block or report" +msgstr "" + +#: src/view/screens/ProfileList.tsx:784 +msgid "Block these accounts?" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:356 +#: src/components/dms/ReportDialog.tsx:359 +msgid "Block user" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:323 +msgid "Block User" +msgstr "" + +#: src/components/Post/Embed/index.tsx:180 +msgid "Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:282 +msgid "Blocked accounts" +msgstr "" + +#: src/Navigation.tsx:191 +#: src/view/screens/ModerationBlockedAccounts.tsx:104 +msgid "Blocked Accounts" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 +#: src/view/com/profile/ProfileMenu.tsx:468 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:190 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:488 +msgid "Blocked post." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:203 +msgid "Blocking does not prevent this labeler from placing labels on your account." +msgstr "" + +#: src/view/screens/ProfileList.tsx:786 +msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:465 +msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:175 +msgid "Blog" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:136 +#: src/view/com/auth/server-input/index.tsx:137 +msgid "Bluesky" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 +msgid "Bluesky cannot confirm the authenticity of the claimed date." +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 +msgctxt "Name of app icon variant" +msgid "Bluesky Classic™" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:212 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:149 +msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." +msgstr "" + +#: src/components/ProgressGuide/List.tsx:53 +#: src/components/ProgressGuide/List.tsx:70 +msgid "Bluesky is better with friends!" +msgstr "" + +#: src/screens/Takendown.tsx:217 +msgid "Bluesky Social Terms of Service" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:310 +msgid "Bluesky will choose a set of recommended accounts from people in your network." +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:99 +msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132 +msgid "Bluesky will proactively verify notable and authentic accounts." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:99 +msgid "Bluesky+" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:102 +msgid "Bluesky+ icons" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:53 +msgid "Blur images" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:51 +msgid "Blur images and filter from feeds" +msgstr "" + +#: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:96 +msgid "Books" +msgstr "" + +#: src/components/FeedInterstitials.tsx:435 +msgid "Browse more accounts on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:566 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:575 +msgid "Browse more suggestions on the Explore page" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 +msgid "Browse other feeds" +msgstr "" + +#: src/components/TrendingTopics.tsx:178 +msgid "Browse posts about {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:186 +msgid "Browse posts tagged with {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:195 +msgid "Browse starter pack {displayName}" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93 +msgid "Browse topic {0}" +msgstr "" + +#: src/components/TrendingTopics.tsx:232 +msgid "Browse topic {displayName}" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:170 +msgid "Business" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:62 +#: src/components/moderation/ReportDialog/index.tsx:683 +#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/Explore.tsx:930 +msgid "By {0}" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +msgid "By <0>{0}" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:78 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:98 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:105 +msgid "By you" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +msgid "Camera" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 +#: src/components/dialogs/InAppBrowserConsent.tsx:98 +#: src/components/dialogs/InAppBrowserConsent.tsx:104 +#: src/components/live/GoLiveDialog.tsx:247 +#: src/components/live/GoLiveDialog.tsx:253 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 +#: src/components/Prompt.tsx:143 +#: src/components/Prompt.tsx:145 +#: src/screens/Deactivated.tsx:158 +#: src/screens/Profile/Header/EditProfileDialog.tsx:225 +#: src/screens/Profile/Header/EditProfileDialog.tsx:233 +#: src/screens/Search/Shell.tsx:349 +#: src/screens/Settings/AppIconSettings/index.tsx:44 +#: src/screens/Settings/AppIconSettings/index.tsx:225 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:78 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:85 +#: src/screens/Settings/Settings.tsx:289 +#: src/screens/Takendown.tsx:99 +#: src/screens/Takendown.tsx:102 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:43 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:52 +#: src/view/com/modals/ChangePassword.tsx:279 +#: src/view/com/modals/ChangePassword.tsx:282 +#: src/view/com/modals/CreateOrEditList.tsx:333 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/shell/desktop/LeftNav.tsx:212 +msgid "Cancel" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:338 +#: src/view/com/modals/DeleteAccount.tsx:170 +#: src/view/com/modals/DeleteAccount.tsx:278 +msgctxt "action" +msgid "Cancel" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:166 +#: src/view/com/modals/DeleteAccount.tsx:274 +msgid "Cancel account deletion" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:94 +msgid "Cancel image crop" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:203 +msgid "Cancel quote post" +msgstr "" + +#: src/screens/Deactivated.tsx:152 +msgid "Cancel reactivation and sign out" +msgstr "" + +#: src/screens/Search/Shell.tsx:341 +msgid "Cancel search" +msgstr "" + +#: src/components/PostControls/index.tsx:101 +#: src/components/PostControls/index.tsx:132 +#: src/components/PostControls/index.tsx:160 +#: src/state/shell/composer/index.tsx:91 +msgid "Cannot interact with a blocked user" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:132 +msgid "Captions (.vtt)" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:40 +#: src/view/com/composer/videos/SubtitleDialog.tsx:55 +msgid "Captions & alt text" +msgstr "" + +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Change" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:39 +msgid "Change app icon" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:38 +#: src/screens/Settings/AppIconSettings/index.tsx:221 +msgid "Change app icon to \"{0}\"" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:40 +msgid "Change app language" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:94 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:98 +msgid "Change Handle" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:325 +msgid "Change moderation service" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:153 +msgid "Change Password" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85 +msgid "Change post language to {suggestedLanguageName}" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:244 +msgid "Change report reason" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:216 +msgid "Changes app icon" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:49 +#: src/components/forms/HostingProvider.tsx:69 +msgid "Changes hosting provider" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 +msgid "Chat" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:78 +#: src/screens/Messages/components/RequestButtons.tsx:304 +msgctxt "toast" +msgid "Chat deleted" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:176 +msgctxt "toast" +msgid "Chat muted" +msgstr "" + +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 +msgid "Chat request inbox" +msgstr "" + +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 +msgid "Chat requests" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:75 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 +msgid "Chat settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 +msgid "Chat Settings" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:178 +msgctxt "toast" +msgid "Chat unmuted" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 +msgid "Chats" +msgstr "" + +#: src/screens/SignupQueued.tsx:78 +#: src/screens/SignupQueued.tsx:82 +msgid "Check my status" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:301 +msgid "Check your email for a sign in code and enter it here." +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:213 +msgid "Check your inbox for an email with the confirmation code to enter below:" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:389 +msgid "Choose domain verification method" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:200 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 +msgid "Choose for me" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:196 +msgid "Choose People" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:298 +msgid "Choose the algorithms that power your custom feeds." +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 +msgid "Choose this color as your avatar" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:130 +msgid "Choose your account provider" +msgstr "" + +#: src/view/screens/Feeds.tsx:733 +msgid "Choose your own timeline! Feeds built by the community help you find content you love." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:245 +msgid "Choose your password" +msgstr "" + +#: src/screens/Signup/index.tsx:175 +msgid "Choose your username" +msgstr "" + +#: src/screens/Settings/Settings.tsx:490 +msgid "Clear all storage data" +msgstr "" + +#: src/screens/Settings/Settings.tsx:492 +msgid "Clear all storage data (restart after this)" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:116 +#: src/screens/Settings/AboutSettings.tsx:120 +msgid "Clear image cache" +msgstr "" + +#: src/components/forms/SearchInput.tsx:70 +msgid "Clear search query" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + +#: src/view/screens/Support.tsx:41 +msgid "click here" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 +msgid "Click here to restart the verification process." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 +msgid "Click here to update your email" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 +msgid "Click to disable quote posts of this post." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 +msgid "Click to enable quote posts of this post." +msgstr "" + +#: src/components/RichTextTag.tsx:54 +msgid "Click to open tag menu for {tag}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:317 +msgid "Click to retry failed message" +msgstr "" + +#: src/screens/Onboarding/index.tsx:32 +msgid "Climate" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:39 +msgid "Clip 🐴 clop 🐴" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 +#: src/components/dialogs/SearchablePeopleList.tsx:295 +#: src/components/dms/EmojiPopup.android.tsx:58 +#: src/components/dms/ReportDialog.tsx:381 +#: src/components/dms/ReportDialog.tsx:390 +#: src/components/live/EditLiveDialog.tsx:229 +#: src/components/live/EditLiveDialog.tsx:235 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 +#: src/components/ProgressGuide/FollowDialog.tsx:386 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: src/components/verification/VerificationsDialog.tsx:144 +#: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 +#: src/view/com/modals/ChangePassword.tsx:279 +#: src/view/com/modals/ChangePassword.tsx:282 +msgid "Close" +msgstr "" + +#: src/components/Dialog/index.web.tsx:111 +#: src/components/Dialog/index.web.tsx:259 +msgid "Close active dialog" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:31 +msgid "Close alert" +msgstr "" + +#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 +msgid "Close bottom drawer" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 +#: src/components/verification/VerificationsDialog.tsx:136 +#: src/components/verification/VerifierDialog.tsx:136 +msgid "Close dialog" +msgstr "" + +#: src/view/shell/index.web.tsx:100 +msgid "Close drawer menu" +msgstr "" + +#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136 +#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172 +msgid "Close emoji picker" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:170 +msgid "Close GIF dialog" +msgstr "" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:31 +msgid "Close image" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:109 +msgid "Close image viewer" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:53 +#: src/components/ContextMenu/Backdrop.ios.tsx:79 +#: src/components/ContextMenu/Backdrop.tsx:45 +msgid "Close menu" +msgstr "" + +#: src/components/Menu/index.tsx:344 +msgid "Close this dialog" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:32 +msgid "Closes password update alert" +msgstr "" + +#: src/view/com/composer/Composer.tsx:973 +msgid "Closes post composer and discards post draft" +msgstr "" + +#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137 +#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173 +msgid "Closes the emoji picker" +msgstr "" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:32 +msgid "Closes viewer for header image" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:591 +msgid "Collapse list of users" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:805 +msgid "Collapses list of users for a given notification" +msgstr "" + +#: src/components/dialogs/Embed.tsx:154 +#: src/screens/Settings/AppearanceSettings.tsx:96 +msgid "Color mode" +msgstr "" + +#: src/components/dialogs/Embed.tsx:151 +msgid "Color theme" +msgstr "" + +#: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:97 +msgid "Comedy" +msgstr "" + +#: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:98 +msgid "Comics" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 +#: src/view/screens/CommunityGuidelines.tsx:34 +msgid "Community Guidelines" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:311 +msgid "Complete onboarding and start using your account" +msgstr "" + +#: src/screens/Signup/index.tsx:177 +msgid "Complete the challenge" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:519 +msgid "Compose new post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:874 +msgid "Compose posts up to {0, plural, other {# characters}} in length" +msgstr "" + +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 +msgid "Compose reply" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1734 +msgid "Compressing video..." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:88 +msgid "Configure content filtering setting for category: {name}" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:249 +msgid "Configured in <0>moderation settings." +msgstr "" + +#: src/components/Prompt.tsx:186 +#: src/components/Prompt.tsx:189 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188 +msgid "Confirm" +msgstr "" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34 +msgid "Confirm content language settings" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:264 +msgid "Confirm delete account" +msgstr "" + +#: src/screens/Moderation/index.tsx:330 +msgid "Confirm your age:" +msgstr "" + +#: src/screens/Moderation/index.tsx:321 +msgid "Confirm your birthdate" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 +#: src/screens/Login/LoginForm.tsx:274 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 +#: src/view/com/modals/DeleteAccount.tsx:220 +#: src/view/com/modals/DeleteAccount.tsx:226 +msgid "Confirmation code" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:337 +msgid "Connecting..." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 +msgid "Contact support" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:51 +msgid "Content & Media" +msgstr "" + +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 +msgid "Content and media" +msgstr "" + +#: src/Navigation.tsx:507 +msgid "Content and Media" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:18 +msgid "Content Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 +msgid "Content filters" +msgstr "" + +#: src/screens/Search/modules/ExploreRecommendations.tsx:59 +msgid "Content from across the network we think you might like." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:153 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76 +msgid "Content Languages" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:82 +#: src/lib/moderation/useModerationCauseDescription.ts:82 +msgid "Content Not Available" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:50 +#: src/components/moderation/ScreenHider.tsx:93 +#: src/lib/moderation/useGlobalLabelStrings.ts:22 +#: src/lib/moderation/useModerationCauseDescription.ts:45 +msgid "Content Warning" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:60 +msgid "Content warnings" +msgstr "" + +#: src/components/Menu/index.web.tsx:91 +msgid "Context menu backdrop, click to close the menu." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:276 +msgid "Continue" +msgstr "" + +#: src/components/AccountList.tsx:128 +msgid "Continue as {0} (currently signed in)" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 +#: src/view/com/post-thread/PostThreadLoadMore.tsx:60 +msgid "Continue thread..." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:273 +#: src/screens/Signup/BackNextButtons.tsx:60 +msgid "Continue to next step" +msgstr "" + +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:318 +#: src/components/dms/ReportDialog.tsx:321 +msgctxt "toast" +msgid "Conversation deleted" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:196 +msgid "Conversation deleted" +msgstr "" + +#: src/screens/Onboarding/index.tsx:41 +msgid "Cooking" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:183 +msgid "Copied" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:151 +msgid "Copied build version to clipboard" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 +#: src/lib/sharing.ts:25 +#: src/lib/sharing.ts:41 +#: src/view/com/modals/InviteCodes.tsx:153 +msgid "Copied to clipboard" +msgstr "" + +#: src/components/dialogs/Embed.tsx:201 +#: src/screens/Settings/components/CopyButton.tsx:66 +msgid "Copied!" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:127 +msgid "Copies build version to clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:182 +msgid "Copy" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 +msgid "Copy App Password" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:421 +#: src/view/com/profile/ProfileMenu.tsx:424 +msgid "Copy at:// URI" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 +msgid "Copy author DID" +msgstr "" + +#: src/components/dialogs/Embed.tsx:189 +#: src/components/dialogs/Embed.tsx:206 +msgid "Copy code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:491 +#: src/view/com/profile/ProfileMenu.tsx:430 +#: src/view/com/profile/ProfileMenu.tsx:433 +msgid "Copy DID" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:424 +msgid "Copy host" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:617 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:111 +msgid "Copy Link" +msgstr "" + +#: src/view/screens/ProfileList.tsx:513 +msgid "Copy link to list" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 +msgid "Copy link to post" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:254 +msgid "Copy link to profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Copy link to starter pack" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 +msgid "Copy message text" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 +msgid "Copy post at:// URI" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +msgid "Copy post text" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:176 +msgid "Copy QR code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:445 +msgid "Copy TXT record value" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 +#: src/view/screens/CopyrightPolicy.tsx:31 +msgid "Copyright Policy" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:35 +#: src/components/dms/ReportDialog.tsx:310 +msgid "Could not leave chat" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:83 +msgid "Could not load feed" +msgstr "" + +#: src/view/screens/ProfileList.tsx:1029 +msgid "Could not load list" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:182 +msgid "Could not mute chat" +msgstr "" + +#: src/view/com/composer/videos/VideoPreview.web.tsx:66 +msgid "Could not process your video" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:300 +msgid "Create" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:160 +msgid "Create a QR code for a starter pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:178 +#: src/components/StarterPack/ProfileStarterPacks.tsx:287 +#: src/Navigation.tsx:588 +msgid "Create a starter pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:274 +msgid "Create a starter pack for me" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:55 +#: src/view/com/auth/SplashScreen.web.tsx:117 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 +msgid "Create account" +msgstr "" + +#: src/screens/Signup/index.tsx:122 +msgid "Create Account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:86 +#: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 +msgid "Create an account" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310 +msgid "Create an account without using this starter pack" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:290 +msgid "Create an avatar instead" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:185 +msgid "Create another" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:47 +#: src/view/com/auth/SplashScreen.web.tsx:109 +msgid "Create new account" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:585 +#: src/components/ReportDialog/SelectReportOptionView.tsx:99 +msgid "Create report for {0}" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:174 +msgid "Created {0}" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:127 +msgid "Creator has been blocked" +msgstr "" + +#: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:99 +msgid "Culture" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:142 +#: src/view/com/auth/server-input/index.tsx:143 +msgid "Custom" +msgstr "" + +#: src/components/dialogs/Embed.tsx:144 +msgid "Customization options" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 +msgid "Customize who can interact with this post." +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:56 +msgid "Customizes your Bluesky experience" +msgstr "" + +#: src/components/dialogs/Embed.tsx:167 +#: src/components/dialogs/Embed.tsx:169 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 +msgid "Dark" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 +msgctxt "Name of app icon variant" +msgid "Dark" +msgstr "" + +#: src/view/screens/Debug.tsx:69 +msgid "Dark mode" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:121 +msgid "Dark theme" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:273 +msgid "Date of birth" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 +msgid "Deactivate account" +msgstr "" + +#: src/screens/Settings/Settings.tsx:455 +msgid "Debug Moderation" +msgstr "" + +#: src/view/screens/Debug.tsx:89 +msgid "Debug panel" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:171 +msgid "Default" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:75 +msgid "Default icons" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/screens/Messages/components/ChatStatusInfo.tsx:55 +#: src/screens/Settings/AppPasswords.tsx:212 +#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:688 +#: src/screens/StarterPack/StarterPackScreen.tsx:760 +#: src/view/screens/ProfileList.tsx:768 +msgid "Delete" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 +msgid "Delete account" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:101 +msgid "Delete Account <0>\"<1>{0}<2>\"" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:187 +msgid "Delete app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:207 +msgid "Delete app password?" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:316 +#: src/screens/Messages/components/RequestButtons.tsx:323 +msgid "Delete chat" +msgstr "" + +#: src/screens/Settings/Settings.tsx:462 +msgid "Delete chat declaration record" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:362 +#: src/components/dms/ReportDialog.tsx:365 +#: src/screens/Messages/components/RequestButtons.tsx:136 +#: src/screens/Messages/components/RequestButtons.tsx:139 +msgid "Delete conversation" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:320 +msgid "Delete Conversation" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:158 +msgid "Delete for me" +msgstr "" + +#: src/view/screens/ProfileList.tsx:556 +msgid "Delete list" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:181 +msgid "Delete message" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:156 +msgid "Delete message for me" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:267 +msgid "Delete my account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 +msgid "Delete post" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/screens/StarterPack/StarterPackScreen.tsx:751 +msgid "Delete starter pack" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:654 +msgid "Delete starter pack?" +msgstr "" + +#: src/view/screens/ProfileList.tsx:763 +msgid "Delete this list?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +msgid "Delete this post?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:173 +msgid "Deleted" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:160 +#: src/screens/Messages/components/ChatListItem.tsx:128 +msgid "Deleted Account" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 +msgid "Deleted post." +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:369 +#: src/view/com/modals/CreateOrEditList.tsx:278 +#: src/view/com/modals/CreateOrEditList.tsx:299 +msgid "Description" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:389 +msgid "Description is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:390 +msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 +msgid "Descriptive alt text" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 +msgid "Detach quote" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 +msgid "Detach quote post?" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:140 +msgctxt "toast" +msgid "Developer mode disabled" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:134 +msgctxt "toast" +msgid "Developer mode enabled" +msgstr "" + +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 +msgid "Developer options" +msgstr "" + +#: src/components/WhoCanReply.tsx:188 +msgid "Dialog: adjust who can interact with this post" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:125 +msgid "Dim" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242 +msgid "Disable 2FA" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157 +msgid "Disable email 2FA" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89 +msgid "Disable Email 2FA" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 +msgid "Disable haptic feedback" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 +msgid "Disable subtitles" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:32 +#: src/lib/moderation/useLabelBehaviorDescription.ts:42 +#: src/lib/moderation/useLabelBehaviorDescription.ts:68 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 +msgid "Disabled" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:88 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 +msgid "Discard" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:85 +msgid "Discard changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:724 +msgid "Discard draft?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:909 +msgid "Discard post?" +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:87 +#: src/screens/Settings/components/PwiOptOut.tsx:91 +msgid "Discourage apps from showing my account to logged-out users" +msgstr "" + +#: src/screens/Search/Explore.tsx:434 +msgid "Discover Feeds" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 +msgid "Discover new custom feeds" +msgstr "" + +#: src/view/screens/Feeds.tsx:730 +msgid "Discover New Feeds" +msgstr "" + +#: src/components/Dialog/index.tsx:321 +msgid "Dismiss" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1658 +msgid "Dismiss error" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:42 +msgid "Dismiss getting started guide" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 +msgid "Dismiss interests" +msgstr "" + +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 +msgid "Dismiss this section" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 +msgid "Display larger alt text badges" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:326 +#: src/screens/Profile/Header/EditProfileDialog.tsx:376 +msgid "Display name" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:339 +msgid "Display name is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:340 +msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:392 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:394 +msgid "DNS Panel" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:302 +msgid "Do not apply this mute word to users you follow" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:39 +msgid "Does not include nudity." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:507 +msgid "Domain verified!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 +msgid "Don't have a code or need a new one? <0>Click here." +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37 +msgid "Don't see an email? <0>Click here to resend." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:115 +#: src/components/dialogs/BirthDateSettings.tsx:121 +#: src/components/dms/ReportDialog.tsx:314 +#: src/components/forms/DateField/index.tsx:103 +#: src/components/forms/DateField/index.tsx:109 +#: src/components/Select/index.tsx:183 +#: src/components/Select/index.tsx:190 +#: src/screens/Onboarding/StepProfile/index.tsx:328 +#: src/screens/Onboarding/StepProfile/index.tsx:331 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 +#: src/view/com/auth/server-input/index.tsx:232 +#: src/view/com/auth/server-input/index.tsx:233 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:168 +#: src/view/com/composer/videos/SubtitleDialog.tsx:178 +#: src/view/com/modals/CropImage.web.tsx:112 +#: src/view/com/modals/InviteCodes.tsx:81 +#: src/view/com/modals/InviteCodes.tsx:124 +msgid "Done" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 +msgctxt "action" +msgid "Done" +msgstr "" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:42 +msgid "Done{extraText}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:161 +msgid "Double tap or long press the message to add a reaction" +msgstr "" + +#: src/components/Dialog/index.tsx:322 +msgid "Double tap to close the dialog" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1080 +msgid "Double tap to like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 +msgid "Download Bluesky" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:79 +#: src/screens/Settings/components/ExportCarDialog.tsx:84 +msgid "Download CAR file" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:344 +msgid "Drop to add images" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:153 +msgid "Duration:" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:230 +msgid "e.g. alice" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:327 +msgid "e.g. Alice Lastname" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:376 +msgid "e.g. alice.com" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:43 +msgid "E.g. artistic nudes." +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:261 +msgid "e.g. Great Posters" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:262 +msgid "e.g. Spammers" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:290 +msgid "e.g. The posters who never miss." +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:291 +msgid "e.g. Users that repeatedly reply with ads." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:97 +msgid "Each code works once. You'll receive more invite codes periodically." +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 +#: src/screens/StarterPack/StarterPackScreen.tsx:588 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 +msgid "Edit" +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:180 +#: src/view/com/lists/ListMembers.tsx:186 +msgctxt "action" +msgid "Edit" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:439 +#: src/view/com/util/UserBanner.tsx:119 +msgid "Edit avatar" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 +msgid "Edit Feeds" +msgstr "" + +#: src/view/com/composer/photos/EditImageDialog.web.tsx:85 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:89 +#: src/view/com/composer/photos/Gallery.tsx:195 +msgid "Edit image" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 +msgid "Edit interaction settings" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:98 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 +msgid "Edit interests" +msgstr "" + +#: src/view/screens/ProfileList.tsx:544 +msgid "Edit list details" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:317 +#: src/view/com/profile/ProfileMenu.tsx:323 +msgid "Edit live status" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:228 +msgid "Edit Moderation List" +msgstr "" + +#: src/Navigation.tsx:355 +#: src/view/screens/Feeds.tsx:518 +msgid "Edit My Feeds" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 +msgid "Edit People" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 +msgid "Edit post interaction settings" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/EditProfileDialog.tsx:281 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 +msgid "Edit profile" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +msgid "Edit Profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:580 +msgid "Edit starter pack" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:223 +msgid "Edit User List" +msgstr "" + +#: src/components/WhoCanReply.tsx:97 +msgid "Edit who can reply" +msgstr "" + +#: src/Navigation.tsx:593 +msgid "Edit your starter pack" +msgstr "" + +#: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:101 +msgid "Education" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:141 +msgid "Either the creator of this list has blocked you or you have blocked the creator." +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 +msgid "Email" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64 +msgctxt "toast" +msgid "Email 2FA disabled" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 +msgid "Email 2FA enabled" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:93 +msgid "Email address" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 +msgid "Email Resent" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208 +msgid "Email sent!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 +msgid "Email verification complete!" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 +msgid "Email Verified" +msgstr "" + +#: src/components/dialogs/Embed.tsx:181 +msgid "Embed HTML code" +msgstr "" + +#: src/components/dialogs/Embed.tsx:104 +#: src/components/dialogs/Embed.tsx:108 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 +msgid "Embed post" +msgstr "" + +#: src/components/dialogs/Embed.tsx:112 +msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +msgid "Embedded video player" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111 +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Enable" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:100 +msgid "Enable {0} only" +msgstr "" + +#: src/screens/Moderation/index.tsx:381 +msgid "Enable adult content" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92 +msgid "Enable email 2FA" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 +msgid "Enable external media" +msgstr "" + +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 +msgid "Enable media players for" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 +msgid "Enable subtitles" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:93 +msgid "Enable this source only" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:132 +#: src/screens/Settings/ContentAndMediaSettings.tsx:146 +msgid "Enable trending topics" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 +#: src/screens/Settings/ContentAndMediaSettings.tsx:167 +msgid "Enable trending videos in your Discover feed" +msgstr "" + +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 +msgid "Enabled" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:113 +msgid "End of feed" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:158 +msgid "Ensure you have selected a language for each subtitle file." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:147 +msgid "Enter a password" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:128 +msgid "Enter a word or tag" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 +msgid "Enter code" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 +msgid "Enter fullscreen" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:165 +msgid "Enter the code you received to change your password." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:370 +msgid "Enter the domain you want to use" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:113 +msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:218 +msgid "Enter the username or email address you used when you created your account" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:104 +msgid "Enter your birth date" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:217 +msgid "Enter your email address" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:243 +msgid "Enter your password" +msgstr "" + +#: src/screens/Login/index.tsx:123 +msgid "Enter your username and password" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 +msgid "Enters full screen" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239 +msgid "Entertainment" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1743 +#: src/view/com/util/error/ErrorScreen.tsx:42 +msgid "Error" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:47 +msgid "Error occurred while saving file" +msgstr "" + +#: src/screens/Signup/StepCaptcha/index.tsx:124 +msgid "Error receiving captcha response." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:183 +msgid "Error:" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:144 +msgid "Error: {error}" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 +msgid "Everybody" +msgstr "" + +#: src/components/WhoCanReply.tsx:77 +msgid "Everybody can reply" +msgstr "" + +#: src/components/WhoCanReply.tsx:245 +msgid "Everybody can reply to this post." +msgstr "" + +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 +msgid "Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 +#: src/lib/moderation/useReportOptions.ts:73 +msgid "Excessive mentions or replies" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:86 +#: src/lib/moderation/useReportOptions.ts:86 +msgid "Excessive or unwanted messages" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:311 +msgid "Exclude users you follow" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:514 +msgid "Excludes users you follow" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 +msgid "Exit fullscreen" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:275 +msgid "Exits account deletion process" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:95 +msgid "Exits image cropping process" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:110 +msgid "Exits image view" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:184 +msgid "Expand alt text" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:592 +msgid "Expand list of users" +msgstr "" + +#: src/view/com/composer/ComposerReplyTo.tsx:91 +msgid "Expand or collapse the full post you are replying to" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 +msgid "Expands or collapses post text" +msgstr "" + +#: src/lib/api/index.ts:418 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 +msgid "Experimental" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:500 +msgid "Expired" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:502 +msgid "Expires {0}" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:199 +#: src/components/moderation/ModerationDetailsDialog.tsx:208 +msgid "Expires in {0}" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:131 +msgid "Expires in {0} at {1}" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:47 +#: src/lib/moderation/useGlobalLabelStrings.ts:51 +msgid "Explicit or potentially disturbing media." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:35 +msgid "Explicit sexual images." +msgstr "" + +#: src/Navigation.tsx:750 +#: src/screens/Search/Shell.tsx:307 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 +msgid "Explore" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 +msgid "Export my data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:62 +msgid "Export My Data" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:84 +#: src/screens/Settings/ContentAndMediaSettings.tsx:87 +msgid "External media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 +msgid "External Media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 +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:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 +msgid "External Media Preferences" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:220 +msgctxt "toast" +msgid "Failed to accept chat" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:67 +#: src/components/dms/MessageContextMenu.tsx:99 +msgid "Failed to add emoji reaction" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:587 +msgid "Failed to change handle. Please try again." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:173 +msgid "Failed to create app password. Please try again." +msgstr "" + +#: src/components/dms/MessageProfileButton.tsx:36 +msgid "Failed to create conversation" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 +msgid "Failed to create starter pack" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:184 +msgid "Failed to create the list. Check your internet connection and try again." +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:64 +#: src/screens/Messages/components/RequestButtons.tsx:291 +msgctxt "toast" +msgid "Failed to delete chat" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:79 +msgid "Failed to delete message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +msgid "Failed to delete post, please try again" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:722 +msgid "Failed to delete starter pack" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 +msgid "Failed to load conversations" +msgstr "" + +#: src/screens/Search/Explore.tsx:470 +#: src/screens/Search/Explore.tsx:522 +#: src/screens/Search/Explore.tsx:560 +#: src/screens/Search/Explore.tsx:599 +msgid "Failed to load feeds preferences" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:226 +msgid "Failed to load GIFs" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:23 +msgid "Failed to load past messages" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + +#: src/screens/Search/Explore.tsx:463 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:553 +#: src/screens/Search/Explore.tsx:592 +msgid "Failed to load suggested feeds" +msgstr "" + +#: src/screens/Search/Explore.tsx:373 +msgid "Failed to load suggested follows" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 +msgid "Failed to mark all requests as read" +msgstr "" + +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:61 +#: src/components/dms/MessageContextMenu.tsx:93 +msgid "Failed to remove emoji reaction" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:34 +msgid "Failed to remove verification" +msgstr "" + +#: src/lib/media/save-image.ts:28 +msgid "Failed to save image: {0}" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:108 +msgid "Failed to save settings. Please try again." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:132 +msgctxt "toast" +msgid "Failed to save your interests." +msgstr "" + +#: src/components/dms/MessageItem.tsx:310 +msgid "Failed to send" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136 +msgid "Failed to send email, please try again." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/screens/Messages/components/ChatDisabled.tsx:87 +msgid "Failed to submit appeal, please try again." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +msgid "Failed to toggle thread mute, please try again" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83 +msgid "Failed to update email 2FA settings" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:195 +msgid "Failed to update email, please try again." +msgstr "" + +#: src/components/FeedCard.tsx:285 +msgid "Failed to update feeds" +msgstr "" + +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 +msgid "Failed to update settings" +msgstr "" + +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 +msgid "Failed to upload video" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168 +msgid "Failed to verify email, please try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:360 +msgid "Failed to verify handle. Please try again." +msgstr "" + +#: src/Navigation.tsx:290 +msgid "Feed" +msgstr "" + +#: src/components/FeedCard.tsx:139 +#: src/view/com/feeds/FeedSourceCard.tsx:150 +msgid "Feed by {0}" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:354 +msgid "Feed menu" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +msgid "Feed toggle" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:102 +#: src/view/shell/desktop/RightNav.tsx:103 +#: src/view/shell/Drawer.tsx:357 +msgid "Feedback" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 +msgctxt "toast" +msgid "Feedback sent!" +msgstr "" + +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 +#: src/screens/StarterPack/StarterPackScreen.tsx:190 +#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Profile.tsx:230 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 +msgid "Feeds" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:206 +msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." +msgstr "" + +#: src/components/FeedCard.tsx:282 +#: src/view/screens/SavedFeeds.tsx:86 +msgctxt "toast" +msgid "Feeds updated!" +msgstr "" + +#: src/screens/Search/modules/ExploreRecommendations.tsx:65 +msgid "Feeds we think you might like." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:58 +msgid "Fetch update" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:43 +msgid "File saved successfully!" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:66 +msgid "Filter from feeds" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:97 +msgid "Filter search by language" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:70 +msgid "Filter search by language (currently: {currentLanguageLabel})" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:314 +msgid "Finalizing" +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:48 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 +msgid "Find accounts to follow" +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:77 +#: src/components/ProgressGuide/FollowDialog.tsx:87 +#: src/components/ProgressGuide/FollowDialog.tsx:374 +msgid "Find people to follow" +msgstr "" + +#: src/screens/Search/Shell.tsx:476 +msgid "Find posts, users, and feeds on Bluesky" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:201 +msgid "Finish" +msgstr "" + +#: src/screens/Onboarding/index.tsx:35 +msgid "Fitness" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 +msgctxt "Name of app icon variant" +msgid "Flat Black" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +msgctxt "Name of app icon variant" +msgid "Flat Blue" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 +msgctxt "Name of app icon variant" +msgid "Flat White" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:294 +msgid "Flexible" +msgstr "" + +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 +#: src/screens/VideoFeed/index.tsx:850 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 +msgid "Follow" +msgstr "" + +#: src/view/com/profile/FollowButton.tsx:72 +msgctxt "action" +msgid "Follow" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 +msgid "Follow {0}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:827 +msgid "Follow {handle}" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:52 +#: src/state/shell/progress-guide.tsx:229 +msgid "Follow 10 accounts" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:69 +msgid "Follow 7 accounts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:284 +#: src/view/com/profile/ProfileMenu.tsx:295 +msgid "Follow account" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:438 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 +msgid "Follow all" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 +msgid "Follow Back" +msgstr "" + +#: src/view/com/profile/FollowButton.tsx:81 +msgctxt "action" +msgid "Follow Back" +msgstr "" + +#: src/components/KnownFollowers.tsx:238 +msgid "Followed by <0>{0}" +msgstr "" + +#: src/components/KnownFollowers.tsx:224 +msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" +msgstr "" + +#: src/components/KnownFollowers.tsx:211 +msgid "Followed by <0>{0} and <1>{1}" +msgstr "" + +#: src/components/KnownFollowers.tsx:193 +msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" +msgstr "" + +#: src/Navigation.tsx:244 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:104 +#: src/screens/Profile/KnownFollowers.tsx:121 +msgid "Followers you know" +msgstr "" + +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 +#: src/screens/VideoFeed/index.tsx:848 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 +msgid "Following" +msgstr "" + +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "" + +#: src/components/ProfileCard.tsx:474 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 +msgid "Following {0}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:826 +msgid "Following {handle}" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:76 +#: src/screens/Settings/ContentAndMediaSettings.tsx:79 +msgid "Following feed preferences" +msgstr "" + +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 +msgid "Following Feed Preferences" +msgstr "" + +#: src/screens/Profile/Header/Handle.tsx:32 +msgid "Follows you" +msgstr "" + +#: src/components/Pills.tsx:175 +msgid "Follows You" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "Font" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:163 +msgid "Font size" +msgstr "" + +#: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:102 +msgid "Food" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:125 +msgid "For security reasons, we'll need to send a confirmation code to your email address." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:209 +msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:145 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94 +msgid "For You" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:178 +msgid "Forever" +msgstr "" + +#: src/screens/Login/index.tsx:153 +#: src/screens/Login/index.tsx:168 +msgid "Forgot Password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:248 +msgid "Forgot password?" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:259 +msgid "Forgot?" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:54 +#: src/lib/moderation/useReportOptions.ts:54 +msgid "Frequently Posts Unwanted Content" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + +#: src/screens/Hashtag.tsx:120 +msgid "From @{sanitizedAuthor}" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:330 +msgctxt "from-feed" +msgid "From <0/>" +msgstr "" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 +msgid "Gallery" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 +msgid "Generate a starter pack" +msgstr "" + +#: src/view/shell/Drawer.tsx:361 +msgid "Get help" +msgstr "" + +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 +msgid "Get started" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:35 +msgid "Getting started" +msgstr "" + +#: src/components/MediaPreview.tsx:116 +msgid "GIF" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:232 +msgid "Give your profile a face" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39 +#: src/lib/moderation/useReportOptions.ts:39 +msgid "Glaring violations of law or terms of service" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 +#: src/components/Layout/Header/index.tsx:127 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/screens/Messages/Inbox.tsx:249 +#: src/screens/Profile/ProfileFeed/index.tsx:92 +#: src/screens/VideoFeed/components/Header.tsx:163 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileList.tsx:1038 +msgid "Go back" +msgstr "" + +#: src/components/Error.tsx:78 +#: src/screens/List/ListHiddenScreen.tsx:224 +#: src/screens/Profile/ErrorState.tsx:62 +#: src/screens/Profile/ErrorState.tsx:66 +#: src/screens/Profile/ProfileFeed/index.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:773 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileList.tsx:1043 +msgid "Go Back" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:192 +#: src/components/ReportDialog/SelectReportOptionView.tsx:78 +#: src/components/ReportDialog/SubmitView.tsx:110 +#: src/screens/Onboarding/Layout.tsx:99 +#: src/screens/Onboarding/Layout.tsx:188 +#: src/screens/Signup/BackNextButtons.tsx:35 +msgid "Go back to previous step" +msgstr "" + +#: src/view/screens/NotFound.tsx:57 +msgid "Go home" +msgstr "" + +#: src/view/screens/NotFound.tsx:56 +msgid "Go Home" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:318 +#: src/view/com/profile/ProfileMenu.tsx:325 +msgid "Go live" +msgstr "" + +#: src/components/live/GoLiveDialog.tsx:93 +#: src/components/live/GoLiveDialog.tsx:98 +#: src/components/live/GoLiveDialog.tsx:232 +#: src/components/live/GoLiveDialog.tsx:241 +msgid "Go Live" +msgstr "" + +#: src/components/live/GoLiveDialog.tsx:174 +msgid "Go live for" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:221 +msgid "Go to {firstAuthorName}'s profile" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:360 +msgid "Go to conversation with {0}" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:165 +#: src/view/com/modals/ChangePassword.tsx:179 +msgid "Go to next" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:227 +msgid "Go to profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:224 +msgid "Go to user's profile" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/lib/moderation/useGlobalLabelStrings.ts:50 +#: src/view/com/composer/labels/LabelsBtn.tsx:201 +#: src/view/com/composer/labels/LabelsBtn.tsx:204 +msgid "Graphic Media" +msgstr "" + +#: src/state/shell/progress-guide.tsx:218 +#: src/state/shell/progress-guide.tsx:228 +msgid "Half way there!" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 +msgid "Handle" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:591 +msgid "Handle already taken. Please try a different one." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:195 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:344 +msgid "Handle changed!" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:595 +msgid "Handle too long. Please try a shorter one." +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:85 +msgid "Haptics" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:34 +#: src/lib/moderation/useReportOptions.ts:34 +msgid "Harassment, trolling, or intolerance" +msgstr "" + +#: src/Navigation.tsx:538 +msgid "Hashtag" +msgstr "" + +#: src/components/RichTextTag.tsx:51 +msgid "Hashtag {tag}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 +msgid "Have a code? <0>Click here." +msgstr "" + +#: src/screens/Signup/index.tsx:210 +msgid "Having trouble?" +msgstr "" + +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 +#: src/view/shell/desktop/RightNav.tsx:120 +#: src/view/shell/desktop/RightNav.tsx:121 +#: src/view/shell/Drawer.tsx:370 +msgid "Help" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:235 +msgid "Help people know you're not a bot by uploading a picture or creating an avatar." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:187 +msgid "Here is your app password!" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + +#: src/components/VideoPostCard.tsx:178 +#: src/components/VideoPostCard.tsx:460 +msgid "Hidden" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:625 +msgid "Hidden by your moderation settings." +msgstr "" + +#: src/components/ListCard.tsx:132 +msgid "Hidden list" +msgstr "" + +#: src/components/interstitials/Trending.tsx:131 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 +#: src/lib/moderation/useLabelBehaviorDescription.ts:15 +#: src/lib/moderation/useLabelBehaviorDescription.ts:20 +#: src/lib/moderation/useLabelBehaviorDescription.ts:25 +#: src/lib/moderation/useLabelBehaviorDescription.ts:30 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110 +msgid "Hide" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:812 +msgctxt "action" +msgid "Hide" +msgstr "" + +#: src/components/dialogs/Embed.tsx:128 +msgid "Hide customization options" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 +msgid "Hide post for me" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 +msgid "Hide reply for everyone" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 +msgid "Hide reply for me" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:110 +msgid "Hide this card" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +msgid "Hide this post?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +msgid "Hide this reply?" +msgstr "" + +#: src/components/interstitials/Trending.tsx:113 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62 +msgid "Hide trending topics" +msgstr "" + +#: src/components/interstitials/Trending.tsx:129 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108 +msgid "Hide trending topics?" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:136 +msgid "Hide trending videos?" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:803 +msgid "Hide user list" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:85 +#: src/screens/Moderation/VerificationSettings.tsx:94 +msgid "Hide verification badges" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 +msgid "Hides the content" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 +msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 +msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 +msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 +msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 +msgid "Hmm, we're having trouble finding this feed. It may have been deleted." +msgstr "" + +#: src/screens/Moderation/index.tsx:59 +msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:31 +msgid "Hmmmm, we couldn't load that moderation service." +msgstr "" + +#: src/view/com/composer/state/video.ts:415 +msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" +msgstr "" + +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 +msgid "Home" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:417 +msgid "Host:" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:184 +msgid "Hosting provider" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194 +msgid "Hot" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 +msgid "Hot replies first" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:62 +#: src/components/dialogs/InAppBrowserConsent.tsx:66 +msgid "How should we open this link?" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 +msgid "I have a code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:280 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:286 +msgid "I have my own domain" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:57 +#: src/components/dms/ReportConversationPrompt.tsx:21 +msgid "I understand" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:186 +msgid "If alt text is long, toggles alt text expanded state" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:142 +msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." +msgstr "" + +#: src/view/screens/ProfileList.tsx:765 +msgid "If you delete this list, you won't be able to recover it." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:267 +msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 +msgid "If you need to update your email, <0>click here." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +msgid "If you remove this post, you won't be able to recover it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:208 +msgid "If you update your email address, email 2FA will be disabled." +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:160 +msgid "If you want to change your password, we will send you a code to verify that this is your account." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:208 +msgid "If you're a developer, you can host your own server." +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 +msgid "If you're trying to change your handle or email, do so before you deactivate." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:38 +#: src/lib/moderation/useReportOptions.ts:38 +msgid "Illegal and Urgent" +msgstr "" + +#: src/view/com/util/images/Gallery.tsx:71 +msgid "Image" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:64 +msgid "Image cache cleared" +msgstr "" + +#. Android-only toast message which includes amount of space freed using localized number formatting +#: src/screens/Settings/AboutSettings.tsx:50 +msgid "Image cache cleared, freed {0}" +msgstr "" + +#: src/lib/media/save-image.ts:26 +msgid "Image saved" +msgstr "" + +#: src/lib/media/save-image.ts:45 +msgid "Images cannot be saved unless permission is granted to access your photo library." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49 +#: src/lib/moderation/useReportOptions.ts:49 +msgid "Impersonation or false claims about identity or affiliation" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:68 +#: src/lib/moderation/useReportOptions.ts:68 +msgid "Impersonation, misinformation, or false claims" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 +#: src/lib/moderation/useReportOptions.ts:91 +msgid "Inappropriate messages or explicit links" +msgstr "" + +#. Title message shown in chat requests inbox when it's empty +#: src/screens/Messages/Inbox.tsx:229 +msgid "Inbox zero!" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:164 +msgid "Incorrect username or password" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:133 +msgid "Input code sent to your email for password reset" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:228 +msgid "Input confirmation code for account deletion" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:159 +msgid "Input new password" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:247 +msgid "Input password for account deletion" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:289 +msgid "Input the code which has been emailed to you" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 +msgid "Interaction limited" +msgstr "" + +#: src/screens/Moderation/index.tsx:222 +msgid "Interaction settings" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:156 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 +msgid "Invalid 2FA confirmation code." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:597 +msgid "Invalid handle. Please try a different one." +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:347 +msgid "Invalid or unsupported post record" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:73 +msgid "Invalid report subject" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 +msgid "Invalid Verification Code" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:94 +msgid "Invite a Friend" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:167 +msgid "Invite code" +msgstr "" + +#: src/screens/Signup/state.ts:339 +msgid "Invite code not accepted. Check that you input it correctly and try again." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:171 +msgid "Invite codes: {0} available" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:170 +msgid "Invite codes: 1 available" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:77 +msgid "Invite people to this starter pack!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:34 +msgid "Invite your friends to follow your favorite feeds and people" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:31 +msgid "Invites, but personal" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:293 +msgid "It's correct" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:474 +msgid "It's just you right now! Add more people to your starter pack by searching above." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1677 +msgid "Job ID: {0}" +msgstr "" + +#. Link to a page with job openings at Bluesky +#: src/view/com/auth/SplashScreen.web.tsx:180 +msgid "Jobs" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211 +#: src/screens/StarterPack/StarterPackScreen.tsx:466 +#: src/screens/StarterPack/StarterPackScreen.tsx:477 +msgid "Join Bluesky" +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:68 +#: src/view/shell/NavSignupCard.tsx:40 +msgid "Join the conversation" +msgstr "" + +#: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:104 +msgid "Journalism" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 +msgid "Labeled by {0}." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:232 +msgid "Labeled by the author." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:75 +#: src/view/screens/Profile.tsx:223 +msgid "Labels" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:73 +msgid "Labels added" +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:194 +msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:72 +msgid "Labels on your account" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:74 +msgid "Labels on your content" +msgstr "" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:107 +msgid "Language selection" +msgstr "" + +#: src/Navigation.tsx:217 +msgid "Language Settings" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:78 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 +msgid "Languages" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:175 +msgid "Larger" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + +#: src/screens/Hashtag.tsx:95 +#: src/screens/Search/SearchResults.tsx:57 +#: src/screens/Topic.tsx:77 +msgid "Latest" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:271 +msgid "learn more" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:165 +#: src/components/verification/VerifierDialog.tsx:132 +#: src/screens/Moderation/VerificationSettings.tsx:47 +#: src/screens/Profile/Header/EditProfileDialog.tsx:359 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:212 +msgid "Learn more" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:140 +msgid "Learn More" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:168 +msgid "Learn more about Bluesky" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:218 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:152 +msgid "Learn more about the moderation applied to this content" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:218 +msgid "Learn more about the moderation applied to this content." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 +#: src/components/moderation/ScreenHider.tsx:127 +msgid "Learn more about this warning" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:150 +#: src/components/verification/VerifierDialog.tsx:117 +msgid "Learn more about verification on Bluesky" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 +msgid "Learn more about what is public on Bluesky." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 +#: src/view/com/auth/server-input/index.tsx:220 +msgid "Learn more." +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:48 +msgid "Leave" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:74 +#: src/components/dms/MessagesListBlockedFooter.tsx:81 +msgid "Leave chat" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:203 +#: src/components/dms/ConvoMenu.tsx:206 +#: src/components/dms/ConvoMenu.tsx:266 +#: src/components/dms/ConvoMenu.tsx:269 +#: src/components/dms/LeaveConvoPrompt.tsx:42 +msgid "Leave conversation" +msgstr "" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 +msgid "Leave them all unselected to see any language." +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 +msgid "Leaving Bluesky" +msgstr "" + +#: src/screens/SignupQueued.tsx:155 +msgid "left to go." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:323 +msgid "Let me choose" +msgstr "" + +#: src/screens/Login/index.tsx:154 +#: src/screens/Login/index.tsx:169 +msgid "Let's get your password reset!" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:314 +msgid "Let's go!" +msgstr "" + +#: src/components/dialogs/Embed.tsx:162 +#: src/components/dialogs/Embed.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:104 +msgid "Light" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:14 +msgctxt "Name of app icon variant" +msgid "Light" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:518 +msgid "Like" +msgstr "" + +#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form +#: src/components/PostControls/index.tsx:253 +msgid "Like ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:63 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:214 +#: src/state/shell/progress-guide.tsx:219 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 +msgid "Like this feed" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272 +msgid "Like this labeler" +msgstr "" + +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 +msgid "Liked by" +msgstr "" + +#: src/screens/Post/PostLikedBy.tsx:38 +#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 +msgid "Liked By" +msgstr "" + +#: src/components/FeedCard.tsx:218 +#: src/view/com/feeds/FeedSourceCard.tsx:172 +msgid "Liked by {0, plural, one {# user} other {# users}}" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:96 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:493 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306 +msgid "Liked by {likeCount, plural, one {# user} other {# users}}" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/view/screens/Profile.tsx:229 +msgid "Likes" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 +msgid "Likes on this post" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 +msgid "Linear" +msgstr "" + +#: src/Navigation.tsx:250 +msgid "List" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:239 +msgid "List Avatar" +msgstr "" + +#: src/view/screens/ProfileList.tsx:438 +msgctxt "toast" +msgid "List blocked" +msgstr "" + +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 +msgid "List by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 +msgid "List by <0/>" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 +msgid "List by you" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + +#: src/view/screens/ProfileList.tsx:485 +msgctxt "toast" +msgid "List deleted" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:129 +msgid "List has been hidden" +msgstr "" + +#: src/view/screens/ProfileList.tsx:176 +msgid "List Hidden" +msgstr "" + +#: src/view/screens/ProfileList.tsx:402 +msgctxt "toast" +msgid "List muted" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:253 +msgid "List Name" +msgstr "" + +#: src/view/screens/ProfileList.tsx:456 +msgctxt "toast" +msgid "List unblocked" +msgstr "" + +#: src/view/screens/ProfileList.tsx:420 +msgctxt "toast" +msgid "List unmuted" +msgstr "" + +#: src/Navigation.tsx:171 +#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Profile.tsx:224 +#: src/view/screens/Profile.tsx:232 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 +msgid "Lists" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:39 +msgid "Lists blocking this user:" +msgstr "" + +#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters +#: src/components/live/LiveIndicator.tsx:46 +msgid "LIVE" +msgstr "" + +#: src/components/live/LiveStatusDialog.tsx:215 +msgid "Live feature is in beta testing" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:148 +#: src/components/live/EditLiveDialog.tsx:152 +#: src/components/live/GoLiveDialog.tsx:124 +#: src/components/live/GoLiveDialog.tsx:128 +msgid "Live link" +msgstr "" + +#: src/screens/Search/Explore.tsx:86 +msgid "Load more" +msgstr "" + +#: src/screens/Search/Explore.tsx:504 +#: src/screens/Search/Explore.tsx:581 +msgid "Load more suggested feeds" +msgstr "" + +#: src/view/screens/Notifications.tsx:278 +msgid "Load new notifications" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:224 +#: src/screens/Profile/Sections/Feed.tsx:98 +#: src/view/com/feeds/FeedPage.tsx:155 +#: src/view/screens/ProfileList.tsx:878 +msgid "Load new posts" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61 +msgid "Loading..." +msgstr "" + +#: src/Navigation.tsx:320 +msgid "Log" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 +msgid "Logged-out visibility" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:130 +msgid "Logo by @sawaratsuki.bsky.social" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:127 +#: src/view/shell/Drawer.tsx:672 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#: src/components/RichTextTag.tsx:53 +msgid "Long press to open tag menu for #{tag}" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:122 +msgid "Looks like XXXXX-XXXXX" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39 +msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:83 +msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:37 +msgid "Looks like you're missing a following feed. <0>Click here to add one." +msgstr "" + +#: src/components/dialogs/EmailDialog/index.tsx:41 +msgid "Make adjustments to email settings for your account" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +msgid "Make one for me" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:85 +msgid "Make sure this is where you intend to go!" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:60 +#: src/screens/Settings/ContentAndMediaSettings.tsx:63 +msgid "Manage saved feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:292 +msgid "Manage verification settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:108 +msgid "Manage your muted words and tags" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 +msgid "Mark all as read" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:215 +#: src/components/dms/ConvoMenu.tsx:218 +msgid "Mark as read" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 +msgid "Marked all as read" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 +msgid "Maybe later" +msgstr "" + +#: src/view/screens/Profile.tsx:227 +msgid "Media" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:210 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 +msgid "mentioned users" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 +msgid "Mentioned users" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 +msgid "Mentions" +msgstr "" + +#: src/components/Menu/index.tsx:111 +msgid "Menu" +msgstr "" + +#: src/components/dms/MessageProfileButton.tsx:96 +msgid "Message {0}" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:77 +msgctxt "toast" +msgid "Message deleted" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:197 +msgid "Message deleted" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:125 +msgid "Message from @{0}: {1}" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 +msgid "Message from server: {0}" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:152 +msgid "Message input field" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:79 +#: src/screens/Messages/components/MessageInput.web.tsx:60 +msgid "Message is too long" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:123 +msgid "Message options" +msgstr "" + +#: src/Navigation.tsx:760 +msgid "Messages" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 +msgctxt "Name of app icon variant" +msgid "Midnight" +msgstr "" + +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 +#: src/lib/moderation/useReportOptions.ts:47 +msgid "Misleading Account" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:67 +#: src/lib/moderation/useReportOptions.ts:67 +msgid "Misleading Post" +msgstr "" + +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 +msgid "Moderation" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:138 +msgid "Moderation details" +msgstr "" + +#: src/components/ListCard.tsx:151 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 +msgid "Moderation list by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 +msgid "Moderation list by <0/>" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 +msgid "Moderation list by you" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:175 +msgctxt "toast" +msgid "Moderation list created" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:161 +msgctxt "toast" +msgid "Moderation list updated" +msgstr "" + +#: src/screens/Moderation/index.tsx:252 +msgid "Moderation lists" +msgstr "" + +#: src/Navigation.tsx:181 +#: src/view/screens/ModerationModlists.tsx:65 +msgid "Moderation Lists" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:252 +msgid "moderation settings" +msgstr "" + +#: src/Navigation.tsx:310 +msgid "Moderation states" +msgstr "" + +#: src/screens/Moderation/index.tsx:206 +msgid "Moderation tools" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:52 +#: src/lib/moderation/useModerationCauseDescription.ts:47 +msgid "Moderator has chosen to set a general warning on the content." +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:727 +msgid "More" +msgstr "" + +#: src/view/shell/desktop/Feeds.tsx:102 +#: src/view/shell/desktop/Feeds.tsx:105 +msgid "More feeds" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:220 +#: src/view/com/profile/ProfileMenu.tsx:226 +#: src/view/screens/ProfileList.tsx:750 +msgid "More options" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:228 +msgid "Most-liked first" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 +msgid "Most-liked replies first" +msgstr "" + +#: src/screens/Onboarding/state.ts:105 +msgid "Movies" +msgstr "" + +#: src/screens/Onboarding/state.ts:106 +msgid "Music" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 +msgctxt "video" +msgid "Mute" +msgstr "" + +#: src/components/RichTextTag.tsx:140 +#: src/components/RichTextTag.tsx:153 +msgid "Mute {tag}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 +#: src/view/com/profile/ProfileMenu.tsx:363 +#: src/view/com/profile/ProfileMenu.tsx:370 +msgid "Mute account" +msgstr "" + +#: src/view/screens/ProfileList.tsx:657 +msgid "Mute accounts" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:232 +#: src/components/dms/ConvoMenu.tsx:238 +msgid "Mute conversation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:253 +msgid "Mute in:" +msgstr "" + +#: src/view/screens/ProfileList.tsx:779 +msgid "Mute list" +msgstr "" + +#: src/view/screens/ProfileList.tsx:774 +msgid "Mute these accounts?" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:185 +msgid "Mute this word for 24 hours" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:224 +msgid "Mute this word for 30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:209 +msgid "Mute this word for 7 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:258 +msgid "Mute this word in post text and tags" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:274 +msgid "Mute this word in tags only" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:170 +msgid "Mute this word until you unmute it" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 +msgid "Mute thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 +msgid "Mute words & tags" +msgstr "" + +#: src/screens/Moderation/index.tsx:267 +msgid "Muted accounts" +msgstr "" + +#: src/Navigation.tsx:186 +#: src/view/screens/ModerationMutedAccounts.tsx:118 +msgid "Muted Accounts" +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:204 +msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:92 +msgid "Muted by \"{0}\"" +msgstr "" + +#: src/screens/Moderation/index.tsx:237 +msgid "Muted words & tags" +msgstr "" + +#: src/view/screens/ProfileList.tsx:776 +msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:35 +#: src/components/dialogs/BirthDateSettings.tsx:38 +msgid "My Birthday" +msgstr "" + +#: src/view/screens/Feeds.tsx:704 +msgid "My Feeds" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:268 +msgid "Name" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:133 +msgid "Name is required" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:59 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:98 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:106 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:114 +#: src/lib/moderation/useReportOptions.ts:59 +#: src/lib/moderation/useReportOptions.ts:98 +#: src/lib/moderation/useReportOptions.ts:106 +#: src/lib/moderation/useReportOptions.ts:114 +msgid "Name or Description Violates Community Standards" +msgstr "" + +#: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:107 +msgid "Nature" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:130 +#: src/components/StarterPack/StarterPackCard.tsx:160 +msgid "Navigate to {0}" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:131 +msgid "Navigate to starter pack" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:344 +#: src/view/com/modals/ChangePassword.tsx:180 +msgid "Navigates to the next screen" +msgstr "" + +#: src/view/shell/Drawer.tsx:77 +msgid "Navigates to your profile" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:271 +#: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:128 +msgid "Need to report a copyright violation?" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:282 +msgid "Never lose access to your followers or data." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:567 +msgid "Nevermind, create a handle for me" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199 +msgid "New" +msgstr "" + +#: src/view/screens/Lists.tsx:77 +#: src/view/screens/ModerationModlists.tsx:77 +msgctxt "action" +msgid "New" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:67 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 +msgid "New chat" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:222 +msgid "New email address" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 +msgid "New Feature" +msgstr "" + +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:221 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:229 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:375 +msgid "New handle" +msgstr "" + +#: src/view/screens/Lists.tsx:69 +#: src/view/screens/ModerationModlists.tsx:69 +msgid "New list" +msgstr "" + +#: src/components/dms/NewMessagesPill.tsx:92 +msgid "New messages" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:230 +msgid "New Moderation List" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:141 +#: src/view/com/modals/ChangePassword.tsx:224 +msgid "New password" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:229 +msgid "New Password" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:241 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Notifications.tsx:167 +#: src/view/screens/Profile.tsx:510 +#: src/view/screens/ProfileList.tsx:250 +#: src/view/screens/ProfileList.tsx:288 +msgid "New post" +msgstr "" + +#: src/view/com/feeds/FeedPage.tsx:166 +msgctxt "action" +msgid "New post" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:527 +msgctxt "action" +msgid "New Post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/components/NewskieDialog.tsx:83 +msgid "New user info dialog" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:225 +msgid "New User List" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 +msgid "Newest replies first" +msgstr "" + +#: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:108 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241 +msgid "News" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:137 +#: src/screens/Login/ForgotPasswordForm.tsx:143 +#: src/screens/Login/LoginForm.tsx:343 +#: src/screens/Login/LoginForm.tsx:350 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 +#: src/screens/Signup/BackNextButtons.tsx:67 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 +#: src/view/com/modals/ChangePassword.tsx:265 +#: src/view/com/modals/ChangePassword.tsx:267 +msgid "Next" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:169 +msgid "Next image" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:108 +msgid "No app passwords yet" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:397 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:399 +msgid "No DNS Panel" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:140 +msgid "No expiry set" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:232 +msgid "No featured GIFs found. There may be an issue with Tenor." +msgstr "" + +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:119 +msgid "No feeds found. Try searching for something else." +msgstr "" + +#: src/components/live/LinkPreview.tsx:63 +msgid "No image" +msgstr "" + +#: src/components/LikedByList.tsx:84 +#: src/view/com/post-thread/PostLikedBy.tsx:84 +msgid "No likes yet" +msgstr "" + +#: src/components/ProfileCard.tsx:496 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 +msgid "No longer following {0}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:139 +msgid "No messages yet" +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:122 +msgid "No notifications yet!" +msgstr "" + +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 +msgid "No one" +msgstr "" + +#: src/components/WhoCanReply.tsx:269 +msgid "No one but the author can quote this post." +msgstr "" + +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:66 +msgid "No posts yet." +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:105 +msgid "No quotes yet" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:90 +msgid "No reposts yet" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:172 +msgid "No result" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:223 +#: src/components/ProgressGuide/FollowDialog.tsx:212 +msgid "No results" +msgstr "" + +#: src/screens/Search/Explore.tsx:786 +msgid "No results for \"{0}\"." +msgstr "" + +#: src/components/Lists.tsx:190 +msgid "No results found" +msgstr "" + +#: src/view/screens/Feeds.tsx:473 +msgid "No results found for \"{query}\"" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 +msgid "No results found for {query}" +msgstr "" + +#: src/screens/Search/Explore.tsx:790 +msgid "No results." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:230 +msgid "No search results found for \"{search}\"." +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 +msgid "No thanks" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 +msgid "Nobody" +msgstr "" + +#: src/components/LikedByList.tsx:86 +#: src/view/com/post-thread/PostLikedBy.tsx:86 +msgid "Nobody has liked this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:107 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:92 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:104 +msgid "Nobody was found. Try searching for someone else." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:42 +msgid "Non-sexual Nudity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 +msgid "Not followed by anyone you're following" +msgstr "" + +#: src/Navigation.tsx:166 +#: src/view/screens/Profile.tsx:125 +msgid "Not Found" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:480 +msgid "Note about sharing" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 +msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 +msgid "Nothing here" +msgstr "" + +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 +msgid "Notification settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:139 +msgid "Notification sounds" +msgstr "" + +#: src/screens/Messages/Settings.tsx:136 +msgid "Notification Sounds" +msgstr "" + +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 +msgid "Notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:135 +msgid "now" +msgstr "" + +#: src/components/dms/MessageItem.tsx:274 +msgid "Now" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:150 +#: src/view/com/composer/labels/LabelsBtn.tsx:153 +msgid "Nudity" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:78 +#: src/lib/moderation/useReportOptions.ts:78 +msgid "Nudity or adult content not labeled as such" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 +msgid "Off" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 +msgid "Oh no!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:124 +msgid "Oh no! Something went wrong." +msgstr "" + +#. Confirm button text. +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:48 +#: src/screens/Settings/AppIconSettings/index.tsx:48 +#: src/screens/Settings/AppIconSettings/index.tsx:229 +msgid "OK" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:37 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 +msgid "Okay" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 +msgid "Oldest replies first" +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:82 +msgid "on<0><1/><2><3/>" +msgstr "" + +#: src/screens/Settings/Settings.tsx:388 +msgid "Onboarding reset" +msgstr "" + +#: src/view/com/composer/Composer.tsx:347 +msgid "One or more GIFs is missing alt text." +msgstr "" + +#: src/view/com/composer/Composer.tsx:344 +msgid "One or more images is missing alt text." +msgstr "" + +#: src/view/com/composer/Composer.tsx:354 +msgid "One or more videos is missing alt text." +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:115 +msgid "Only .jpg and .png files are supported" +msgstr "" + +#: src/components/WhoCanReply.tsx:249 +msgid "Only {0} can reply." +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" + +#: src/lib/media/picker.shared.ts:32 +msgid "Only image files are supported" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 +msgid "Only WebVTT (.vtt) files are supported" +msgstr "" + +#: src/components/Lists.tsx:95 +msgid "Oops, something went wrong!" +msgstr "" + +#: src/components/Lists.tsx:174 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 +#: src/components/StarterPack/ProfileStarterPacks.tsx:341 +#: src/screens/Settings/AppPasswords.tsx:59 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:106 +#: src/view/screens/Profile.tsx:125 +msgid "Oops!" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:278 +msgid "Open" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:284 +msgid "Open avatar creator" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:368 +#: src/screens/Messages/components/ChatListItem.tsx:369 +msgid "Open conversation options" +msgstr "" + +#: src/components/Layout/Header/index.tsx:159 +msgid "Open drawer menu" +msgstr "" + +#: src/screens/Messages/components/MessageInput.web.tsx:181 +#: src/view/com/composer/Composer.tsx:1325 +msgid "Open emoji picker" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:191 +msgid "Open feed info screen" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:291 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:296 +msgid "Open feed options menu" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:27 +msgid "Open full emoji list" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/components/dms/ActionsWrapper.tsx:35 +msgid "Open message options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:453 +msgid "Open moderation debug page" +msgstr "" + +#: src/screens/Moderation/index.tsx:233 +msgid "Open muted words and tags settings" +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:119 +msgid "Open pack" +msgstr "" + +#: src/components/PostControls/PostMenu/index.tsx:62 +msgid "Open post options menu" +msgstr "" + +#: src/components/live/LiveStatusDialog.tsx:189 +#: src/components/live/LiveStatusDialog.tsx:203 +msgid "Open profile" +msgstr "" + +#: src/components/PostControls/ShareMenu/index.tsx:87 +msgid "Open share menu" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:566 +msgid "Open starter pack menu" +msgstr "" + +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 +msgid "Open storybook page" +msgstr "" + +#: src/screens/Settings/Settings.tsx:439 +msgid "Open system log" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:167 +msgid "Opens {numItems} options" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:62 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:61 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "" + +#: src/view/screens/Log.tsx:59 +msgid "Opens additional details for a debug entry" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:44 +msgid "Opens alt text dialog" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +msgid "Opens camera on device" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:43 +msgid "Opens captions and alt text dialog" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:129 +msgid "Opens change handle dialog" +msgstr "" + +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 +msgid "Opens composer" +msgstr "" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 +msgid "Opens device photo gallery" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1326 +msgid "Opens emoji picker" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:49 +#: src/view/com/auth/SplashScreen.web.tsx:111 +msgid "Opens flow to create a new Bluesky account" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:63 +#: src/view/com/auth/SplashScreen.web.tsx:125 +msgid "Opens flow to sign in to your existing Bluesky account" +msgstr "" + +#: src/view/com/composer/photos/SelectGifBtn.tsx:36 +msgid "Opens GIF select dialog" +msgstr "" + +#: src/screens/Settings/Settings.tsx:237 +msgid "Opens helpdesk in browser" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:173 +msgid "Opens list of invite codes" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:576 +msgid "Opens live status dialog" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:249 +msgid "Opens password reset form" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 +msgid "Opens this profile" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +msgid "Opens video picker" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:221 +#: src/components/ReportDialog/SubmitView.tsx:168 +msgid "Optionally provide additional information below:" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:299 +msgid "Options:" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 +msgid "Or combine these options:" +msgstr "" + +#: src/screens/Deactivated.tsx:200 +msgid "Or, continue with another account." +msgstr "" + +#: src/screens/Deactivated.tsx:187 +msgid "Or, sign in to one of your other accounts." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:52 +msgid "OTA status: ..." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:48 +msgid "OTA status: Available!" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:50 +msgid "OTA status: Error fetching update" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:54 +msgid "OTA status: None available" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27 +#: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:185 +msgid "Other" +msgstr "" + +#: src/components/AccountList.tsx:88 +msgid "Other account" +msgstr "" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:93 +msgid "Other..." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:348 +msgid "Our moderation team has received your report." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:28 +msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." +msgstr "" + +#: src/components/Lists.tsx:191 +#: src/view/screens/NotFound.tsx:47 +msgid "Page not found" +msgstr "" + +#: src/view/screens/NotFound.tsx:44 +msgid "Page Not Found" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 +#: src/view/com/modals/DeleteAccount.tsx:239 +#: src/view/com/modals/DeleteAccount.tsx:246 +msgid "Password" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:154 +msgid "Password Changed" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:99 +msgid "Password must be at least 8 characters long." +msgstr "" + +#: src/screens/Login/index.tsx:181 +msgid "Password updated" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:23 +msgid "Password updated!" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 +msgid "Pause" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 +msgid "Pause video" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:67 +#: src/screens/StarterPack/StarterPackScreen.tsx:189 +#: src/view/screens/ProfileList.tsx:170 +msgid "People" +msgstr "" + +#: src/Navigation.tsx:237 +msgid "People followed by @{0}" +msgstr "" + +#: src/Navigation.tsx:230 +msgid "People following @{0}" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "" + +#: src/lib/media/save-image.ts:51 +msgid "Permission to access your photo library was denied. Please enable it in your system settings." +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +msgid "Person toggle" +msgstr "" + +#: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:109 +msgid "Pets" +msgstr "" + +#: src/screens/Onboarding/state.ts:110 +msgid "Photography" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:169 +msgid "Pictures meant for adults." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:530 +msgid "Pin feed" +msgstr "" + +#: src/components/FeedCard.tsx:329 +msgid "Pin Feed" +msgstr "" + +#: src/view/screens/ProfileList.tsx:714 +msgid "Pin to home" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +msgid "Pin to Home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:411 +msgid "Pinned" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:160 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:174 +msgid "Pinned {0} to Home" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:131 +msgid "Pinned Feeds" +msgstr "" + +#: src/view/screens/ProfileList.tsx:361 +msgid "Pinned to your feeds" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 +msgid "Play" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 +msgid "Play {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 +msgid "Play video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 +msgid "Play Video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 +msgid "Plays or pauses the GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 +msgid "Plays or pauses the video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 +msgid "Plays the GIF" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 +msgid "Plays the video" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:115 +msgid "Please add any content warning labels that are applicable for the media you are posting." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + +#: src/screens/Signup/state.ts:286 +msgid "Please choose your handle." +msgstr "" + +#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/StepInfo/index.tsx:123 +msgid "Please choose your password." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:290 +msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." +msgstr "" + +#: src/screens/Signup/state.ts:301 +msgid "Please complete the verification captcha." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 +msgid "Please double-check that you have entered your email address correctly." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:58 +msgid "Please enter a password." +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:94 +msgid "Please enter a password. It must be at least 8 characters long." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114 +msgid "Please enter a unique name for this app password or use our randomly generated one." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:135 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145 +msgid "Please enter a valid code." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:148 +msgid "Please enter a valid email address." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:86 +msgid "Please enter a valid word, tag, or phrase to mute" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 +msgid "Please enter the code we sent to <0>{0} below." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:247 +msgid "Please enter the security code we sent to your previous email address." +msgstr "" + +#: src/screens/Signup/state.ts:262 +#: src/screens/Signup/StepInfo/index.tsx:94 +msgid "Please enter your email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:87 +msgid "Please enter your invite code." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:217 +msgid "Please enter your new email address." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:99 +msgid "Please enter your password" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:235 +msgid "Please enter your password as well:" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:94 +msgid "Please enter your username" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +msgid "Please explain why you think this label was incorrectly applied by {0}" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:110 +msgid "Please explain why you think your chats were incorrectly disabled" +msgstr "" + +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:31 +msgid "Please select a moderation service" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:28 +msgid "Please select a reason for this report" +msgstr "" + +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 +msgid "Please sign in as @{0}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62 +msgid "Please verify your email" +msgstr "" + +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" + +#: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:111 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235 +msgid "Politics" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:156 +msgid "Porn" +msgstr "" + +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 +msgctxt "description" +msgid "Post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1034 +msgctxt "action" +msgid "Post All" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 +msgid "Post by {0}" +msgstr "" + +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 +msgid "Post by @{0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 +msgctxt "toast" +msgid "Post deleted" +msgstr "" + +#: src/lib/api/index.ts:186 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 +#: src/screens/VideoFeed/index.tsx:529 +msgid "Post has been deleted" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:271 +msgid "Post hidden" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:107 +#: src/lib/moderation/useModerationCauseDescription.ts:106 +msgid "Post Hidden by Muted Word" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:110 +#: src/lib/moderation/useModerationCauseDescription.ts:115 +msgid "Post Hidden by You" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 +msgid "Post interaction settings" +msgstr "" + +#: src/Navigation.tsx:197 +#: src/screens/ModerationInteractionSettings/index.tsx:34 +msgid "Post Interaction Settings" +msgstr "" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:89 +msgid "Post language" +msgstr "" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:77 +msgid "Post Languages" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 +msgid "Post not found" +msgstr "" + +#: src/state/queries/pinned-post.ts:59 +msgctxt "toast" +msgid "Post pinned" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgctxt "toast" +msgid "Post unpinned" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 +#: src/screens/StarterPack/StarterPackScreen.tsx:191 +#: src/view/screens/Profile.tsx:225 +#: src/view/screens/ProfileList.tsx:170 +msgid "Posts" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:115 +msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 +msgid "Posts hidden" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:19 +msgid "Press to attempt reconnection" +msgstr "" + +#: src/components/Error.tsx:60 +#: src/components/Lists.tsx:100 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:47 +msgid "Press to retry" +msgstr "" + +#: src/components/KnownFollowers.tsx:129 +msgid "Press to view followers of this account that you also follow" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:150 +msgid "Previous image" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:120 +msgid "Primary Language" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 +msgid "Prioritize your Follows" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:110 +#: src/view/shell/desktop/RightNav.tsx:111 +msgid "Privacy" +msgstr "" + +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 +msgid "Privacy and security" +msgstr "" + +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 +msgid "Privacy and Security" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 +#: src/screens/Settings/AboutSettings.tsx:92 +#: src/screens/Settings/AboutSettings.tsx:95 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 +msgid "Privacy Policy" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1740 +msgid "Processing video..." +msgstr "" + +#: src/lib/api/index.ts:60 +#: src/screens/Login/ForgotPasswordForm.tsx:149 +msgid "Processing..." +msgstr "" + +#: src/view/screens/DebugMod.tsx:927 +#: src/view/screens/Profile.tsx:364 +msgid "profile" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 +#: src/view/shell/Drawer.tsx:76 +#: src/view/shell/Drawer.tsx:559 +msgid "Profile" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:196 +msgctxt "toast" +msgid "Profile updated" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:264 +msgid "Public" +msgstr "" + +#: src/view/com/lists/MyLists.tsx:77 +msgid "Public, sharable lists of users to mute or block in bulk." +msgstr "" + +#: src/view/com/lists/MyLists.tsx:72 +msgid "Public, sharable lists which can be used to drive feeds." +msgstr "" + +#. Accessibility label for button to publish a single post +#: src/view/com/composer/Composer.tsx:1016 +msgid "Publish post" +msgstr "" + +#. Accessibility label for button to publish multiple posts in a thread +#: src/view/com/composer/Composer.tsx:1009 +msgid "Publish posts" +msgstr "" + +#. Accessibility label for button to publish multiple replies in a thread +#: src/view/com/composer/Composer.tsx:994 +msgid "Publish replies" +msgstr "" + +#. Accessibility label for button to publish a single reply +#: src/view/com/composer/Composer.tsx:1001 +msgid "Publish reply" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:134 +msgid "QR code copied to your clipboard!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:112 +msgid "QR code has been downloaded!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:113 +msgid "QR code saved to your camera roll!" +msgstr "" + +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 +msgid "Quote post" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 +msgid "Quote post was re-attached" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 +msgid "Quote post was successfully detached" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 +msgid "Quote posts disabled" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 +msgid "Quote settings" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:154 +#: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +msgid "Quotes" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 +msgid "Quotes of this post" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 +msgid "Random (aka \"Poster's Roulette\")" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:600 +msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 +msgid "Re-attach quote" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.tsx:85 +msgid "React with {emoji}" +msgstr "" + +#: src/screens/Deactivated.tsx:141 +msgid "Reactivate your account" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 +msgid "Read blog post" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:966 +msgid "Read less" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:966 +msgid "Read more" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:173 +msgid "Read the Bluesky blog" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 +msgid "Read the Bluesky Privacy Policy" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 +msgid "Read the Bluesky Terms of Service" +msgstr "" + +#: src/screens/Takendown.tsx:162 +#: src/screens/Takendown.tsx:170 +msgid "Reason for appeal" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:212 +msgid "Reason:" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:49 +msgid "Recent Searches" +msgstr "" + +#: src/screens/Search/modules/ExploreRecommendations.tsx:54 +msgid "Recommended" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:20 +msgid "Reconnect" +msgstr "" + +#. Reject a chat request, this opens a menu with options +#: src/screens/Messages/components/RequestButtons.tsx:124 +msgid "Reject" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:112 +msgid "Reject chat request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 +msgid "Reload conversations" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 +#: src/components/dialogs/MutedWords.tsx:438 +#: src/components/FeedCard.tsx:343 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 +#: src/screens/Settings/Settings.tsx:662 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 +msgid "Remove" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 +msgid "Remove {displayName} from starter pack" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:94 +msgid "Remove {historyItem}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 +msgid "Remove account" +msgstr "" + +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +msgid "Remove attachment" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 +msgid "Remove Avatar" +msgstr "" + +#: src/view/com/util/UserBanner.tsx:186 +#: src/view/com/util/UserBanner.tsx:189 +msgid "Remove Banner" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:209 +msgid "Remove embed" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:116 +#: src/view/com/posts/FeedShutdownMsg.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 +msgid "Remove feed" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 +msgid "Remove feed?" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/view/screens/ProfileList.tsx:528 +#: src/view/screens/SavedFeeds.tsx:350 +msgid "Remove from my feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:654 +msgid "Remove from quick access?" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:170 +#: src/screens/List/ListHiddenScreen.tsx:174 +msgid "Remove from saved feeds" +msgstr "" + +#: src/components/FeedCard.tsx:338 +msgid "Remove from your feeds?" +msgstr "" + +#: src/view/com/composer/photos/Gallery.tsx:204 +msgid "Remove image" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:240 +#: src/components/live/EditLiveDialog.tsx:247 +msgid "Remove live status" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:523 +msgid "Remove mute word from your list" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:167 +msgid "Remove profile" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 +msgid "Remove repost" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:261 +msgid "Remove subtitle file" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 +msgid "Remove this feed from your saved feeds" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157 +msgid "Remove user from list" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:46 +#: src/components/verification/VerificationsDialog.tsx:247 +#: src/view/com/profile/ProfileMenu.tsx:336 +#: src/view/com/profile/ProfileMenu.tsx:339 +msgid "Remove verification" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:44 +msgid "Remove your verification for this account?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:208 +msgid "Removed by author" +msgstr "" + +#: src/components/Post/Embed/index.tsx:206 +msgid "Removed by you" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 +msgid "Removed from list" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:94 +msgid "Removed from saved feeds" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:122 +#: src/view/com/posts/FeedShutdownMsg.tsx:44 +#: src/view/screens/ProfileList.tsx:392 +msgid "Removed from your feeds" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:32 +msgid "Removed verification" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:129 +#: src/view/com/posts/FeedShutdownMsg.tsx:133 +msgid "Replace with Discover" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/view/screens/Profile.tsx:226 +msgid "Replies" +msgstr "" + +#: src/components/WhoCanReply.tsx:79 +msgid "Replies disabled" +msgstr "" + +#: src/components/WhoCanReply.tsx:247 +msgid "Replies to this post are disabled." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1032 +msgctxt "action" +msgid "Reply" +msgstr "" + +#. Accessibility label for the reply button, verb form followed by number of replies and noun form +#: src/components/PostControls/index.tsx:207 +msgid "Reply ({0, plural, one {# reply} other {# replies}})" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:116 +#: src/lib/moderation/useModerationCauseDescription.ts:125 +msgid "Reply Hidden by Thread Author" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:115 +#: src/lib/moderation/useModerationCauseDescription.ts:124 +msgid "Reply Hidden by You" +msgstr "" + +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +msgid "Reply settings" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 +msgid "Reply settings are chosen by the author of the thread" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 +msgid "Reply sorting" +msgstr "" + +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 +msgctxt "description" +msgid "Reply to <0><1/>" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:593 +msgctxt "description" +msgid "Reply to a blocked post" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:595 +msgctxt "description" +msgid "Reply to a post" +msgstr "" + +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 +msgctxt "description" +msgid "Reply to you" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 +msgctxt "toast" +msgid "Reply visibility updated" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 +msgid "Reply was successfully hidden" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:166 +#: src/components/dms/MessagesListBlockedFooter.tsx:85 +#: src/components/dms/MessagesListBlockedFooter.tsx:92 +msgid "Report" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:403 +#: src/view/com/profile/ProfileMenu.tsx:406 +msgid "Report account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:255 +#: src/components/dms/ConvoMenu.tsx:258 +#: src/components/dms/ReportConversationPrompt.tsx:17 +#: src/screens/Messages/components/RequestButtons.tsx:155 +#: src/screens/Messages/components/RequestButtons.tsx:158 +msgid "Report conversation" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:71 +#: src/components/moderation/ReportDialog/index.tsx:198 +#: src/components/ReportDialog/index.tsx:44 +msgid "Report dialog" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 +msgid "Report feed" +msgstr "" + +#: src/view/screens/ProfileList.tsx:570 +msgid "Report list" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:164 +msgid "Report message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 +msgid "Report post" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:630 +#: src/screens/StarterPack/StarterPackScreen.tsx:633 +msgid "Report starter pack" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:345 +msgid "Report submitted" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:41 +msgid "Report this content" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:31 +#: src/components/ReportDialog/SelectReportOptionView.tsx:54 +msgid "Report this feed" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:25 +#: src/components/ReportDialog/SelectReportOptionView.tsx:51 +msgid "Report this list" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:59 +#: src/components/dms/ReportDialog.tsx:180 +#: src/components/moderation/ReportDialog/copy.ts:43 +#: src/components/ReportDialog/SelectReportOptionView.tsx:60 +msgid "Report this message" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:19 +#: src/components/ReportDialog/SelectReportOptionView.tsx:48 +msgid "Report this post" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:37 +#: src/components/ReportDialog/SelectReportOptionView.tsx:57 +msgid "Report this starter pack" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:13 +#: src/components/ReportDialog/SelectReportOptionView.tsx:45 +msgid "Report this user" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 +msgctxt "action" +msgid "Repost" +msgstr "" + +#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form +#: src/components/PostControls/RepostButton.tsx:76 +msgid "Repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:144 +#: src/components/PostControls/RepostButton.web.tsx:43 +#: src/components/PostControls/RepostButton.web.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:561 +msgid "Repost or quote post" +msgstr "" + +#: src/screens/Post/PostRepostedBy.tsx:38 +msgid "Reposted By" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:351 +msgid "Reposted by {0}" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:370 +msgid "Reposted by <0><1/>" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 +msgid "Reposted by you" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 +msgid "Reposts of this post" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:253 +#: src/view/com/modals/ChangePassword.tsx:255 +msgid "Request Code" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 +msgid "Require alt text before posting" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96 +msgid "Require an email code to sign in to your account." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:181 +msgid "Required for this provider" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40 +msgid "Resend" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 +msgid "Resend email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:130 +msgid "Resend Email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 +msgid "Resend Verification Email" +msgstr "" + +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/view/com/modals/ChangePassword.tsx:197 +msgid "Reset code" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:204 +msgid "Reset Code" +msgstr "" + +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 +msgid "Reset onboarding state" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:80 +msgid "Reset password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:324 +msgid "Retries signing in" +msgstr "" + +#: src/view/com/util/error/ErrorMessage.tsx:62 +#: src/view/com/util/error/ErrorScreen.tsx:99 +msgid "Retries the last action, which errored out" +msgstr "" + +#: src/components/dms/MessageItem.tsx:321 +#: src/components/Error.tsx:65 +#: src/components/Lists.tsx:111 +#: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 +#: src/components/StarterPack/ProfileStarterPacks.tsx:346 +#: src/screens/Login/LoginForm.tsx:323 +#: src/screens/Login/LoginForm.tsx:330 +#: src/screens/Messages/ChatList.tsx:280 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Messages/Inbox.tsx:218 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 +#: src/screens/Signup/BackNextButtons.tsx:53 +#: src/view/com/util/error/ErrorMessage.tsx:60 +#: src/view/com/util/error/ErrorScreen.tsx:97 +msgid "Retry" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:226 +msgid "Retry loading report options" +msgstr "" + +#: src/components/Error.tsx:73 +#: src/screens/List/ListHiddenScreen.tsx:219 +#: src/screens/StarterPack/StarterPackScreen.tsx:767 +msgid "Return to previous page" +msgstr "" + +#: src/view/screens/NotFound.tsx:61 +msgid "Returns to home page" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:93 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:559 +#: src/screens/VideoFeed/index.tsx:1142 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileList.tsx:1039 +msgid "Returns to previous page" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:304 +msgid "Returns to the previous step" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:121 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 +#: src/components/live/EditLiveDialog.tsx:216 +#: src/components/live/EditLiveDialog.tsx:223 +#: src/components/StarterPack/QrCodeDialog.tsx:192 +#: src/screens/Profile/Header/EditProfileDialog.tsx:243 +#: src/screens/Profile/Header/EditProfileDialog.tsx:257 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:262 +#: src/view/com/composer/GifAltText.tsx:193 +#: src/view/com/composer/GifAltText.tsx:202 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:75 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 +#: src/view/com/modals/CreateOrEditList.tsx:315 +#: src/view/screens/SavedFeeds.tsx:117 +msgid "Save" +msgstr "" + +#: src/view/com/lightbox/ImageViewing/index.tsx:610 +#: src/view/com/modals/CreateOrEditList.tsx:323 +msgctxt "action" +msgid "Save" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:115 +msgid "Save birthday" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 +msgid "Save changes" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:131 +#: src/components/StarterPack/ShareDialog.tsx:138 +msgid "Save image" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:104 +msgid "Save image crop" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:248 +msgid "Save new handle" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:186 +msgid "Save QR code" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +msgid "Save to my feeds" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:172 +msgid "Saved Feeds" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:132 +#: src/view/screens/ProfileList.tsx:372 +msgid "Saved to your feeds" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:105 +msgid "Saves image crop settings" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:33 +#: src/components/NewskieDialog.tsx:105 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 +msgid "Say hello!" +msgstr "" + +#: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:112 +msgid "Science" +msgstr "" + +#: src/view/screens/ProfileList.tsx:996 +msgid "Scroll to top" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:514 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/screens/Search/Shell.tsx:307 +#: src/screens/Search/Shell.tsx:464 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 +msgid "Search" +msgstr "" + +#: src/Navigation.tsx:256 +#: src/screens/Profile/ProfileSearch.tsx:37 +msgid "Search @{0}'s posts" +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:683 +msgid "Search by name or interest" +msgstr "" + +#: src/view/screens/Feeds.tsx:444 +msgid "Search feeds" +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:524 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135 +msgid "Search for \"{interestsDisplayName}\"{activeText}" +msgstr "" + +#: src/view/shell/desktop/Search.tsx:131 +msgid "Search for \"{query}\"" +msgstr "" + +#: src/screens/Search/components/AutocompleteResults.tsx:45 +msgid "Search for \"{searchText}\"" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:513 +msgid "Search for feeds that you want to suggest to others." +msgstr "" + +#: src/screens/Search/Explore.tsx:360 +msgid "Search for more accounts" +msgstr "" + +#: src/screens/Search/Explore.tsx:437 +msgid "Search for more feeds" +msgstr "" + +#: src/screens/Search/Shell.tsx:334 +msgid "Search for posts, users, or feeds" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:178 +msgid "Search GIFs" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:36 +msgid "Search my posts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:263 +#: src/view/com/profile/ProfileMenu.tsx:266 +msgid "Search posts" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/ProgressGuide/FollowDialog.tsx:702 +msgid "Search profiles" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:179 +msgid "Search Tenor" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:38 +msgid "Search..." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:535 +#: src/components/ProgressGuide/FollowDialog.tsx:703 +msgid "Searches for profiles" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:243 +msgid "Security step required" +msgstr "" + +#: src/components/RichTextTag.tsx:111 +msgid "See {tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:124 +msgid "See {tag} posts by user" +msgstr "" + +#: src/components/RichTextTag.tsx:118 +msgid "See #{tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:132 +msgid "See #{tag} posts by user" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:178 +msgid "See jobs at Bluesky" +msgstr "" + +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 +msgid "See this guide" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 +msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" +msgstr "" + +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 +msgid "Select a color" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:77 +msgid "Select account" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:60 +msgid "Select an app language" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +msgid "Select an avatar" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 +msgid "Select an emoji" +msgstr "" + +#: src/components/Select/index.tsx:204 +msgid "Select an option" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:98 +msgid "Select app language" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:164 +msgid "Select content languages" +msgstr "" + +#: src/components/live/GoLiveDialog.tsx:179 +msgid "Select duration" +msgstr "" + +#: src/screens/Login/index.tsx:144 +msgid "Select from an existing account" +msgstr "" + +#: src/view/com/composer/photos/SelectGifBtn.tsx:35 +msgid "Select GIF" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:307 +msgid "Select GIF \"{0}\"" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:142 +msgid "Select how long to mute this word for." +msgstr "" + +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:248 +msgid "Select language..." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:178 +msgid "Select languages" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:310 +msgid "Select moderation service" +msgstr "" + +#: src/components/ReportDialog/SelectLabelerView.tsx:28 +msgid "Select moderator" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:131 +msgid "Select primary language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 +msgid "Select subtitle file (.vtt)" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83 +msgid "Select the {emojiName} emoji as your avatar" +msgstr "" + +#: src/components/ReportDialog/SubmitView.tsx:141 +msgid "Select the moderation service(s) to report to" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:74 +msgid "Select video" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:242 +msgid "Select what content this mute word should apply to." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:91 +msgid "Select which language to use for the app's user interface." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:157 +msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:274 +msgid "Select your date of birth" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Settings/InterestsSettings.tsx:161 +msgid "Select your interests from the options below" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:124 +msgid "Select your preferred language for translations in your feed." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 +msgid "Selects option {0} of {numItems}" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:38 +msgid "Send a neat website!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 +#: src/view/com/modals/DeleteAccount.tsx:145 +msgid "Send email" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:158 +msgctxt "action" +msgid "Send Email" +msgstr "" + +#: src/view/shell/Drawer.tsx:350 +msgid "Send feedback" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:192 +#: src/screens/Messages/components/MessageInput.web.tsx:235 +msgid "Send message" +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 +msgid "Send post to {name}" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 +msgid "Send post to..." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:271 +#: src/components/dms/ReportDialog.tsx:274 +#: src/components/ReportDialog/SubmitView.tsx:221 +#: src/components/ReportDialog/SubmitView.tsx:225 +msgid "Send report" +msgstr "" + +#: src/components/ReportDialog/SelectLabelerView.tsx:42 +msgid "Send report to {0}" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:649 +msgid "Send report to {title}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 +msgid "Send verification email" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 +msgid "Send via direct message" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:147 +msgid "Sends email with confirmation code for account deletion" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:167 +msgid "Server address" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:178 +msgid "Set app icon to {0}" +msgstr "" + +#: src/screens/Moderation/index.tsx:333 +msgid "Set birthdate" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:106 +msgid "Set new password" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:47 +msgid "Set up your account" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:107 +msgid "Sets email for password reset" +msgstr "" + +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 +msgid "Settings" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:102 +msgctxt "toast" +msgid "Settings saved" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:173 +msgid "Sexual activity or erotic nudity." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:38 +msgid "Sexually Suggestive" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:182 +#: src/screens/Hashtag.tsx:126 +#: src/screens/StarterPack/StarterPackScreen.tsx:433 +#: src/screens/Topic.tsx:102 +#: src/view/screens/ProfileList.tsx:513 +msgid "Share" +msgstr "" + +#: src/view/com/lightbox/ImageViewing/index.tsx:619 +msgctxt "action" +msgid "Share" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:37 +msgid "Share a cool story!" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:36 +msgid "Share a fun fact!" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:485 +msgid "Share anyway" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 +msgid "Share author DID" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 +#: src/components/StarterPack/ShareDialog.tsx:104 +#: src/components/StarterPack/ShareDialog.tsx:111 +msgid "Share link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:68 +msgid "Share link dialog" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 +msgid "Share post at:// URI" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:115 +#: src/components/StarterPack/ShareDialog.tsx:126 +msgid "Share QR code" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:474 +msgid "Share this feed" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:426 +msgid "Share this starter pack" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:80 +msgid "Share this starter pack and help people join your community on Bluesky." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/screens/StarterPack/StarterPackScreen.tsx:611 +#: src/screens/StarterPack/StarterPackScreen.tsx:619 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:256 +msgid "Share via..." +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:34 +msgid "Share your favorite feed!" +msgstr "" + +#: src/Navigation.tsx:315 +msgid "Shared Preferences Tester" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 +msgid "Show" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 +msgid "Show alt text" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/screens/List/ListHiddenScreen.tsx:190 +#: src/screens/VideoFeed/index.tsx:628 +#: src/screens/VideoFeed/index.tsx:634 +msgid "Show anyway" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:27 +#: src/lib/moderation/useLabelBehaviorDescription.ts:63 +msgid "Show badge" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:61 +msgid "Show badge and filter from feeds" +msgstr "" + +#: src/components/dialogs/Embed.tsx:129 +msgid "Show customization options" +msgstr "" + +#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 +msgid "Show hidden replies" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 +msgid "Show less like this" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:186 +msgid "Show list anyway" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:51 +msgid "Show More" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 +msgid "Show more like this" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "" + +#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 +msgid "Show muted replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 +msgid "Show quote posts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 +msgid "Show replies" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 +msgid "Show replies as" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:285 +msgid "Show replies as threaded" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 +msgid "Show replies by people you follow before all other replies" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 +msgid "Show reply for everyone" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 +msgid "Show reposts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 +msgid "Show samples of your saved feeds in your Following feed" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:58 +msgid "Show warning" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:56 +msgid "Show warning and filter from feeds" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 +msgid "Shows information about when this post was created" +msgstr "" + +#: src/screens/Settings/Settings.tsx:125 +msgid "Shows other accounts you can switch to" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 +msgid "Shows the content" +msgstr "" + +#: src/components/dialogs/Signin.tsx:97 +#: src/components/dialogs/Signin.tsx:99 +#: src/screens/Login/index.tsx:122 +#: src/screens/Login/index.tsx:143 +#: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 +#: src/view/com/auth/SplashScreen.tsx:61 +#: src/view/com/auth/SplashScreen.tsx:69 +#: src/view/com/auth/SplashScreen.web.tsx:123 +#: src/view/com/auth/SplashScreen.web.tsx:131 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 +msgid "Sign in" +msgstr "" + +#: src/components/AccountList.tsx:129 +msgid "Sign in as {0}" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:80 +msgid "Sign in as..." +msgstr "" + +#: src/screens/Deactivated.tsx:203 +#: src/screens/Deactivated.tsx:209 +msgid "Sign in or create an account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:75 +msgid "Sign in or create your account to join the conversation!" +msgstr "" + +#: src/components/AccountList.tsx:68 +msgid "Sign in to account that is not listed" +msgstr "" + +#: src/components/dialogs/Signin.tsx:46 +msgid "Sign in to Bluesky or create a new account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 +#: src/screens/SignupQueued.tsx:93 +#: src/screens/SignupQueued.tsx:96 +#: src/screens/Takendown.tsx:85 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 +msgid "Sign out" +msgstr "" + +#: src/screens/Takendown.tsx:88 +msgid "Sign Out" +msgstr "" + +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 +msgid "Sign out?" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:91 +#: src/lib/moderation/useGlobalLabelStrings.ts:28 +msgid "Sign-in Required" +msgstr "" + +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 +msgid "Signed in as @{0}" +msgstr "" + +#: src/components/FeedInterstitials.tsx:389 +msgid "Similar accounts" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:201 +msgid "Skip" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:228 +msgid "Skip this flow" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:167 +msgid "Smaller" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 +msgid "Snoozes the reminder" +msgstr "" + +#: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:100 +msgid "Software Dev" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:120 +msgid "Some of your verifications are invalid." +msgstr "" + +#: src/components/FeedInterstitials.tsx:529 +msgid "Some other feeds you might like" +msgstr "" + +#: src/components/WhoCanReply.tsx:80 +msgid "Some people can reply" +msgstr "" + +#: src/components/dms/MessageItem.tsx:148 +msgid "Someone reacted {0}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:241 +msgid "Someone reacted {0} to {1}" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:76 +msgid "Something wasn't quite right with the data you're trying to report. Please contact support." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:144 +msgid "Something went wrong" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 +#: src/components/moderation/ReportDialog/index.tsx:223 +#: src/screens/Deactivated.tsx:94 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 +msgid "Something went wrong, please try again" +msgstr "" + +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 +msgid "Something went wrong, please try again." +msgstr "" + +#: src/components/Lists.tsx:175 +msgid "Something went wrong!" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:178 +msgid "Something went wrong. Please try again." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +msgid "Something wrong? Let us know." +msgstr "" + +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 +msgid "Sorry! Your session expired. Please sign in again." +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 +msgid "Sort replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 +msgid "Sort replies by" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 +msgid "Sort replies to the same post by:" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:178 +#: src/components/moderation/ModerationDetailsDialog.tsx:186 +msgid "Source: <0>{sourceName}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:72 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:85 +#: src/lib/moderation/useReportOptions.ts:72 +#: src/lib/moderation/useReportOptions.ts:85 +msgid "Spam" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:55 +#: src/lib/moderation/useReportOptions.ts:55 +msgid "Spam; excessive mentions or replies" +msgstr "" + +#: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:113 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 +msgid "Sports" +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 +msgid "Start a conversation, and it will appear here." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:74 +msgid "Start a new chat" +msgstr "" + +#: src/view/screens/ProfileList.tsx:846 +#: src/view/screens/ProfileList.tsx:967 +msgid "Start adding people" +msgstr "" + +#: src/view/screens/ProfileList.tsx:853 +#: src/view/screens/ProfileList.tsx:974 +msgid "Start adding people!" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:382 +msgid "Start chat with {displayName}" +msgstr "" + +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 +msgid "Starter Pack" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:90 +msgid "Starter pack by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 +msgid "Starter pack by <0/>" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:89 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:731 +msgid "Starter pack is invalid" +msgstr "" + +#: src/screens/Search/Explore.tsx:628 +#: src/view/screens/Profile.tsx:231 +msgid "Starter Packs" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:266 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:100 +#: src/screens/Settings/AboutSettings.tsx:103 +msgid "Status Page" +msgstr "" + +#: src/screens/Signup/index.tsx:163 +msgid "Step {0} of {1}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:393 +msgid "Storage cleared, you need to restart the app now." +msgstr "" + +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 +msgid "Storybook" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 +#: src/components/moderation/LabelsOnMeDialog.tsx:324 +#: src/components/moderation/LabelsOnMeDialog.tsx:325 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 +msgid "Submit" +msgstr "" + +#: src/screens/Takendown.tsx:70 +msgid "Submit appeal" +msgstr "" + +#: src/screens/Takendown.tsx:76 +msgid "Submit Appeal" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 +msgid "Submit report" +msgstr "" + +#: src/view/screens/ProfileList.tsx:741 +msgid "Subscribe" +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:231 +msgid "Subscribe to @{0} to use these labels:" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 +msgid "Subscribe to Labeler" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201 +msgid "Subscribe to this labeler" +msgstr "" + +#: src/view/screens/ProfileList.tsx:737 +msgid "Subscribe to this list" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:286 +msgid "Success!" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:36 +msgid "Successfully verified" +msgstr "" + +#: src/screens/Search/Explore.tsx:357 +msgid "Suggested Accounts" +msgstr "" + +#: src/components/FeedInterstitials.tsx:391 +msgid "Suggested for you" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:144 +#: src/view/com/composer/labels/LabelsBtn.tsx:147 +msgid "Suggestive" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 +msgctxt "Name of app icon variant" +msgid "Sunrise" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 +msgctxt "Name of app icon variant" +msgid "Sunset" +msgstr "" + +#: src/Navigation.tsx:325 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 +msgid "Support" +msgstr "" + +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 +msgid "Switch account" +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 +msgid "Switch Account" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:109 +msgid "Switch accounts" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:293 +msgid "Switch to {0}" +msgstr "" + +#: src/components/dialogs/Embed.tsx:157 +#: src/components/dialogs/Embed.tsx:159 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 +msgid "System" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:107 +#: src/screens/Settings/AboutSettings.tsx:110 +#: src/screens/Settings/Settings.tsx:441 +msgid "System log" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:282 +msgid "Tags only" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:54 +#: src/components/ContextMenu/Backdrop.ios.tsx:80 +#: src/components/ContextMenu/Backdrop.tsx:46 +msgid "Tap to close context menu" +msgstr "" + +#: src/components/ProgressGuide/Toast.tsx:156 +msgid "Tap to dismiss" +msgstr "" + +#: src/state/shell/progress-guide.tsx:233 +msgid "Task complete - 10 follows!" +msgstr "" + +#: src/state/shell/progress-guide.tsx:223 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:64 +msgid "Teach our algorithm what you like" +msgstr "" + +#: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:114 +msgid "Tech" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:35 +msgid "Tell a joke!" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:377 +msgid "Tell us a bit about yourself" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:69 +msgid "Tell us a little more" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:116 +#: src/view/shell/desktop/RightNav.tsx:117 +msgid "Terms" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 +#: src/screens/Settings/AboutSettings.tsx:84 +#: src/screens/Settings/AboutSettings.tsx:87 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 +msgid "Terms of Service" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:60 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:99 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:107 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 +#: src/lib/moderation/useReportOptions.ts:60 +#: src/lib/moderation/useReportOptions.ts:99 +#: src/lib/moderation/useReportOptions.ts:107 +#: src/lib/moderation/useReportOptions.ts:115 +msgid "Terms used violate community standards" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:266 +msgid "Text & tags" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:229 +msgid "Text field" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:288 +#: src/screens/Messages/components/ChatDisabled.tsx:108 +msgid "Text input field" +msgstr "" + +#: src/view/com/posts/ShowLessFollowup.tsx:39 +msgid "Thank you for your feedback! It has been sent to the feed operator." +msgstr "" + +#: src/components/ReportDialog/SubmitView.tsx:83 +msgid "Thank you. Your report has been sent." +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:487 +msgid "That contains the following:" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:110 +#: src/screens/StarterPack/StarterPackScreen.tsx:111 +#: src/screens/StarterPack/StarterPackScreen.tsx:155 +#: src/screens/StarterPack/StarterPackScreen.tsx:156 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 +msgid "That starter pack could not be found." +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:132 +msgid "That's all, folks!" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1114 +msgid "That's everything!" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 +#: src/view/com/profile/ProfileMenu.tsx:461 +msgid "The account will be able to interact with you after unblocking." +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:41 +#: src/screens/Settings/AppIconSettings/index.tsx:222 +msgid "The app will be restarted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:119 +#: src/lib/moderation/useModerationCauseDescription.ts:128 +msgid "The author of this thread has hidden this reply." +msgstr "" + +#: src/screens/Moderation/index.tsx:407 +msgid "The Bluesky web application" +msgstr "" + +#: src/view/screens/CommunityGuidelines.tsx:38 +msgid "The Community Guidelines have been moved to <0/>" +msgstr "" + +#: src/view/screens/CopyrightPolicy.tsx:35 +msgid "The Copyright Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:102 +msgid "The Discover feed" +msgstr "" + +#: src/state/shell/progress-guide.tsx:224 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 +msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:67 +msgid "The feed has been replaced with Discover." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:59 +msgid "The following labels were applied to your account." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:60 +msgid "The following labels were applied to your content." +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:42 +msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 +msgid "The post may have been deleted." +msgstr "" + +#: src/view/screens/PrivacyPolicy.tsx:35 +msgid "The Privacy Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:40 +#: src/lib/strings/errors.ts:18 +msgid "The server appears to be experiencing issues. Please try again in a few moments." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:741 +msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." +msgstr "" + +#: src/components/ContextMenu/index.tsx:433 +msgid "The subject of the context menu" +msgstr "" + +#: src/view/screens/Support.tsx:37 +msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." +msgstr "" + +#: src/view/screens/TermsOfService.tsx:35 +msgid "The Terms of Service have been moved to" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 +msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:154 +msgid "Theme" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 +msgid "There is no time limit for account deactivation, come back any time." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:227 +msgid "There was an issue connecting to Tenor." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/view/screens/ProfileList.tsx:375 +#: src/view/screens/ProfileList.tsx:394 +#: src/view/screens/SavedFeeds.tsx:93 +msgid "There was an issue contacting the server" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:418 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:130 +msgid "There was an issue fetching notifications. Tap here to try again." +msgstr "" + +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 +msgid "There was an issue fetching posts. Tap here to try again." +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:151 +msgid "There was an issue fetching the list. Tap here to try again." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:60 +msgid "There was an issue fetching your app passwords" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:151 +#: src/view/com/lists/ProfileLists.tsx:150 +msgid "There was an issue fetching your lists. Tap here to try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:107 +msgid "There was an issue fetching your service info" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:259 +#: src/components/ReportDialog/SubmitView.tsx:88 +msgid "There was an issue sending your report. Please check your internet connection." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101 +#: src/view/com/profile/ProfileMenu.tsx:128 +#: src/view/com/profile/ProfileMenu.tsx:138 +#: src/view/com/profile/ProfileMenu.tsx:152 +#: src/view/com/profile/ProfileMenu.tsx:162 +#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/view/com/profile/ProfileMenu.tsx:187 +msgid "There was an issue! {0}" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 +#: src/screens/List/ListHiddenScreen.tsx:63 +#: src/screens/List/ListHiddenScreen.tsx:77 +#: src/screens/List/ListHiddenScreen.tsx:99 +#: src/view/screens/ProfileList.tsx:411 +#: src/view/screens/ProfileList.tsx:429 +#: src/view/screens/ProfileList.tsx:447 +#: src/view/screens/ProfileList.tsx:465 +msgid "There was an issue. Please check your internet connection and try again." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 +msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" +msgstr "" + +#: src/screens/SignupQueued.tsx:130 +msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 +msgid "These settings only apply to the Following feed." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:111 +msgid "This {screenDescription} has been flagged:" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:87 +msgid "This account has a checkmark because it's been verified by trusted sources." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:92 +msgid "This account has one or more attempted verifications, but it is not currently verified." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:106 +msgid "This account has requested that users sign in to view their profile." +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:34 +msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:55 +msgid "This action can be undone at any time." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:271 +msgid "This appeal will be sent to <0>{sourceName}." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:104 +msgid "This appeal will be sent to Bluesky's moderation service." +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:18 +msgid "This chat was disconnected" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:19 +msgid "This content has been hidden by the moderators." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:24 +msgid "This content has received a general warning from moderators." +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:63 +msgid "This content is hosted by {0}. Do you want to enable external media?" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:84 +#: src/lib/moderation/useModerationCauseDescription.ts:84 +msgid "This content is not available because one of the users involved has blocked the other." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 +msgid "This content is not viewable without a Bluesky account." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:362 +msgid "This conversation is with a deleted or a deactivated account. Press for options" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:156 +msgid "This email is already associated with your account." +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:96 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:49 +msgid "This feature is not available while using an app password. Please sign in with your main password." +msgstr "" + +#: src/lib/strings/errors.ts:21 +msgid "This feature is not available while using an App Password. Please sign in with your main password." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 +msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:38 +msgid "This feed is empty! You may need to follow more users or tune your language settings." +msgstr "" + +#: src/components/StarterPack/Main/PostsList.tsx:36 +#: src/screens/Profile/ProfileFeed/index.tsx:192 +#: src/view/screens/ProfileList.tsx:843 +msgid "This feed is empty." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:99 +msgid "This feed is no longer online. We are showing <0>Discover instead." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:593 +msgid "This handle is reserved. Please try a different one." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:41 +msgid "This information is not shared with other users." +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:189 +#: src/components/live/GoLiveDialog.tsx:160 +msgid "This is not a valid link" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:168 +msgid "This label was applied by the author." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:165 +msgid "This label was applied by you." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:218 +msgid "This labeler hasn't declared what labels it publishes, and may not be active." +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:79 +msgid "This link is taking you to the following website:" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:151 +msgid "This list – created by <0>{0} – contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:146 +msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/view/screens/ProfileList.tsx:962 +msgid "This list is empty." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:40 +msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 +msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." +msgstr "" + +#: src/components/WhoCanReply.tsx:240 +msgid "This post has an unknown type of threadgate on it. Your app may be out of date." +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:171 +msgid "This post has been deleted." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 +msgid "This post will be hidden from feeds and threads. This cannot be undone." +msgstr "" + +#: src/view/com/composer/Composer.tsx:463 +msgid "This post's author has disabled quote posts." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:482 +msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 +msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:66 +msgid "This service has not provided terms of service or a privacy policy." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:456 +msgid "This should create a domain record at:" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:93 +msgid "This user does not have a display name, and therefore cannot be verified." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:95 +msgid "This user doesn't have any followers." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:68 +msgid "This user has blocked you" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:79 +#: src/lib/moderation/useModerationCauseDescription.ts:75 +msgid "This user has blocked you. You cannot view their content." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:30 +msgid "This user has requested that their content only be shown to signed-in users." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:59 +msgid "This user is included in the <0>{0} list which you have blocked." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:91 +msgid "This user is included in the <0>{0} list which you have muted." +msgstr "" + +#: src/components/NewskieDialog.tsx:65 +msgid "This user is new here. Press for more info about when they joined." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:95 +msgid "This user isn't following anyone." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:435 +msgid "This will delete \"{0}\" from your muted words. You can always add it back later." +msgstr "" + +#: src/screens/Settings/Settings.tsx:656 +msgid "This will remove @{0} from the quick access list." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 +msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 +msgid "Thread options" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:68 +#: src/screens/Settings/ContentAndMediaSettings.tsx:71 +msgid "Thread preferences" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 +msgid "Thread Preferences" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 +msgid "Threaded" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:276 +msgid "Threaded mode" +msgstr "" + +#: src/Navigation.tsx:368 +msgid "Threads Preferences" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 +msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:99 +msgid "To disable the email 2FA method, please verify your access to the email address." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215 +msgid "To disable your email 2FA method, please verify your access to <0>{0}" +msgstr "" + +#: src/components/dms/ReportConversationPrompt.tsx:19 +msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." +msgstr "" + +#: src/components/ReportDialog/SelectLabelerView.tsx:31 +msgid "To whom would you like to send this report?" +msgstr "" + +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:263 +msgid "Toggle dropdown" +msgstr "" + +#: src/screens/Moderation/index.tsx:384 +msgid "Toggle to enable or disable adult content" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 +msgid "Toggles the sound" +msgstr "" + +#: src/screens/Hashtag.tsx:84 +#: src/screens/Search/SearchResults.tsx:47 +#: src/screens/Topic.tsx:71 +msgid "Top" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:543 +msgid "Topic" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 +msgid "Translate" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "" + +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 +msgid "Trending" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending Videos" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138 +msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." +msgstr "" + +#: src/view/com/util/error/ErrorScreen.tsx:103 +msgctxt "action" +msgid "Try again" +msgstr "" + +#: src/screens/Onboarding/state.ts:115 +msgid "TV" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 +msgid "Two-factor authentication (2FA)" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:153 +msgid "Type your message here" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:432 +msgid "Type:" +msgstr "" + +#: src/lib/hooks/useCleanError.ts:27 +#: src/lib/strings/errors.ts:11 +msgid "Unable to connect. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:79 +#: src/screens/Login/LoginForm.tsx:169 +#: src/screens/Login/SetNewPasswordForm.tsx:81 +#: src/screens/Signup/index.tsx:76 +#: src/view/com/modals/ChangePassword.tsx:71 +#: src/view/com/modals/ChangePassword.tsx:117 +msgid "Unable to contact your service. Please check your Internet connection." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:673 +msgid "Unable to delete" +msgstr "" + +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:97 +#: src/components/dms/MessagesListBlockedFooter.tsx:104 +#: src/components/dms/MessagesListBlockedFooter.tsx:112 +#: src/components/dms/MessagesListBlockedFooter.tsx:119 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:473 +#: src/view/screens/ProfileList.tsx:723 +msgid "Unblock" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +msgctxt "action" +msgid "Unblock" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:247 +#: src/components/dms/ConvoMenu.tsx:250 +#: src/view/com/profile/ProfileMenu.tsx:383 +#: src/view/com/profile/ProfileMenu.tsx:389 +msgid "Unblock account" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 +#: src/view/com/profile/ProfileMenu.tsx:455 +msgid "Unblock Account?" +msgstr "" + +#: src/view/screens/ProfileList.tsx:620 +msgid "Unblock list" +msgstr "" + +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 +msgid "Undo repost" +msgstr "" + +#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun +#: src/components/PostControls/RepostButton.tsx:66 +msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#: src/view/com/profile/FollowButton.tsx:63 +msgctxt "action" +msgid "Unfollow" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +msgid "Unfollow {0}" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:283 +#: src/view/com/profile/ProfileMenu.tsx:293 +msgid "Unfollow account" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:831 +msgid "Unfollows the user" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:372 +msgid "Unfortunately, none of your subscribed labelers supports this report type." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:206 +msgid "Unknown verifier" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:518 +msgid "Unlike" +msgstr "" + +#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun +#: src/components/PostControls/index.tsx:243 +msgid "Unlike ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +msgctxt "video" +msgid "Unmute" +msgstr "" + +#: src/view/screens/ProfileList.tsx:730 +msgid "Unmute" +msgstr "" + +#: src/components/RichTextTag.tsx:140 +#: src/components/RichTextTag.tsx:153 +msgid "Unmute {tag}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 +#: src/view/com/profile/ProfileMenu.tsx:362 +#: src/view/com/profile/ProfileMenu.tsx:368 +msgid "Unmute account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:236 +msgid "Unmute conversation" +msgstr "" + +#: src/view/screens/ProfileList.tsx:605 +msgid "Unmute list" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 +msgid "Unmute thread" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 +msgid "Unmute video" +msgstr "" + +#: src/view/screens/ProfileList.tsx:714 +msgid "Unpin" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:530 +msgid "Unpin feed" +msgstr "" + +#: src/components/FeedCard.tsx:320 +msgid "Unpin Feed" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:310 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +msgid "Unpin from home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 +msgid "Unpin from profile" +msgstr "" + +#: src/view/screens/ProfileList.tsx:585 +msgid "Unpin moderation list" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:163 +msgid "Unpinned {0} from Home" +msgstr "" + +#: src/view/screens/ProfileList.tsx:362 +msgid "Unpinned from your feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 +msgid "Unsnooze email reminder" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233 +msgid "Unsubscribe" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:198 +#: src/screens/List/ListHiddenScreen.tsx:208 +msgid "Unsubscribe from list" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200 +msgid "Unsubscribe from this labeler" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:86 +msgid "Unsubscribed from list" +msgstr "" + +#: src/view/com/composer/Composer.tsx:814 +msgid "Unsupported video type" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:48 +msgid "Unsupported video type: {0}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:77 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:90 +#: src/lib/moderation/useReportOptions.ts:77 +#: src/lib/moderation/useReportOptions.ts:90 +msgid "Unwanted Sexual Content" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:58 +#: src/screens/Settings/components/OTAInfo.tsx:74 +msgid "Update" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:312 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 +msgid "Update email" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:526 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:547 +msgid "Update to {domain}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:203 +msgid "Update your email" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +msgctxt "toast" +msgid "Updating quote attachment failed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 +msgctxt "toast" +msgid "Updating reply visibility failed" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:194 +msgid "Updating..." +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:288 +msgid "Upload a photo instead" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:472 +msgid "Upload a text file to:" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 +#: src/view/com/util/UserBanner.tsx:157 +#: src/view/com/util/UserBanner.tsx:160 +msgid "Upload from Camera" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:486 +#: src/view/com/util/UserBanner.tsx:174 +msgid "Upload from Files" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 +#: src/view/com/util/UserBanner.tsx:168 +#: src/view/com/util/UserBanner.tsx:172 +msgid "Upload from Library" +msgstr "" + +#: src/lib/api/index.ts:302 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1737 +msgid "Uploading video..." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:67 +msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:558 +msgid "Use default provider" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:77 +#: src/components/dialogs/InAppBrowserConsent.tsx:83 +msgid "Use in-app browser" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:102 +#: src/screens/Settings/ContentAndMediaSettings.tsx:108 +msgid "Use in-app browser to open links" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:87 +#: src/components/dialogs/InAppBrowserConsent.tsx:93 +msgid "Use my default browser" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:53 +msgid "Use recommended" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:190 +msgid "Use this to sign in to the other app along with your handle." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:201 +msgid "Used by:" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:324 +msgctxt "toast" +msgid "User blocked" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:71 +#: src/lib/moderation/useModerationCauseDescription.ts:63 +msgid "User Blocked" +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:55 +msgid "User Blocked by \"{0}\"" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:27 +msgid "User blocked by list" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:57 +msgid "User Blocked by List" +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:73 +msgid "User Blocking You" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:77 +msgid "User Blocks You" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:214 +msgid "User list by {0}" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +msgid "User list by you" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:174 +msgctxt "toast" +msgid "User list created" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:160 +msgctxt "toast" +msgid "User list updated" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:201 +msgid "Username or email address" +msgstr "" + +#: src/components/WhoCanReply.tsx:303 +msgid "users followed by <0>@{0}" +msgstr "" + +#: src/components/WhoCanReply.tsx:290 +msgid "users following <0>@{0}" +msgstr "" + +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 +msgid "Users I follow" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 +msgid "Users in \"{0}\"" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 +msgid "Users you follow" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:438 +msgid "Value:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:39 +msgid "Verification failed, please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:297 +msgid "Verification settings" +msgstr "" + +#: src/Navigation.tsx:205 +#: src/screens/Moderation/VerificationSettings.tsx:32 +msgid "Verification Settings" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:41 +msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:103 +msgid "Verified by:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:84 +#: src/components/verification/VerificationCreatePrompt.tsx:86 +#: src/view/com/profile/ProfileMenu.tsx:346 +#: src/view/com/profile/ProfileMenu.tsx:349 +msgid "Verify account" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" +msgid "Verify code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:528 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:549 +msgid "Verify DNS Record" +msgstr "" + +#. Dialog title when a user is verifying their email address by entering a code they have been sent +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 +msgid "Verify email code" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 +msgid "Verify email dialog" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:529 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:551 +msgid "Verify Text File" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:51 +msgid "Verify this account?" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 +msgid "Verify your email" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:126 +#: src/screens/Settings/AboutSettings.tsx:155 +msgid "Version {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 +msgid "Video" +msgstr "" + +#: src/view/com/composer/state/video.ts:358 +msgid "Video failed to process" +msgstr "" + +#: src/Navigation.tsx:599 +msgid "Video Feed" +msgstr "" + +#: src/components/VideoPostCard.tsx:122 +msgid "Video from {0}: {text}" +msgstr "" + +#: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:103 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237 +msgid "Video Games" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1072 +msgid "Video is paused" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1072 +msgid "Video is playing" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 +msgid "Video not found." +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:98 +msgid "Video settings" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1747 +msgid "Video uploaded" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +msgid "Video: {0}" +msgstr "" + +#: src/view/screens/Profile.tsx:228 +msgid "Videos" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:42 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:55 +msgid "Videos must be less than 3 minutes long" +msgstr "" + +#: src/screens/Profile/Header/Shell.tsx:211 +msgid "View {0}'s avatar" +msgstr "" + +#: src/components/ProfileCard.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Search/components/SearchProfileCard.tsx:36 +#: src/screens/VideoFeed/index.tsx:790 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 +msgid "View {0}'s profile" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:181 +msgid "View {displayName}'s profile" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:480 +msgid "View blocked user's profile" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:100 +msgid "View blogpost for more details" +msgstr "" + +#: src/view/screens/Log.tsx:57 +msgid "View debug entry" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:137 +#: src/screens/VideoFeed/index.tsx:656 +#: src/screens/VideoFeed/index.tsx:674 +msgid "View details" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:132 +msgid "View details for reporting a copyright violation" +msgstr "" + +#: src/view/com/posts/ViewFullThread.tsx:59 +msgid "View full thread" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:46 +msgid "View information about these labels" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 +msgid "View more" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 +#: src/view/com/util/PostMeta.tsx:91 +#: src/view/com/util/PostMeta.tsx:128 +msgid "View profile" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 +msgid "View the avatar" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:164 +msgid "View the labeling service provided by @{0}" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:99 +msgid "View this user's verifications" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:489 +msgid "View users who like this feed" +msgstr "" + +#: src/components/VideoPostCard.tsx:399 +msgid "View video" +msgstr "" + +#: src/screens/Moderation/index.tsx:277 +msgid "View your blocked accounts" +msgstr "" + +#: src/screens/Moderation/index.tsx:217 +msgid "View your default post interaction settings" +msgstr "" + +#: src/view/com/home/HomeHeaderLayout.web.tsx:56 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 +msgid "View your feeds and explore more" +msgstr "" + +#: src/screens/Moderation/index.tsx:247 +msgid "View your moderation lists" +msgstr "" + +#: src/screens/Moderation/index.tsx:262 +msgid "View your muted accounts" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:98 +msgid "View your verifications" +msgstr "" + +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 +msgid "Views full image" +msgstr "" + +#: src/components/VideoPostCard.tsx:121 +msgid "Views video in immersive mode" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "" + +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 +msgid "Volume" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:142 +#: src/lib/moderation/useLabelBehaviorDescription.ts:17 +#: src/lib/moderation/useLabelBehaviorDescription.ts:22 +msgid "Warn" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:48 +msgid "Warn content" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:46 +msgid "Warn content and filter from feeds" +msgstr "" + +#: src/components/live/LiveStatusDialog.tsx:156 +#: src/components/live/LiveStatusDialog.tsx:169 +msgid "Watch now" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "" + +#: src/screens/Hashtag.tsx:205 +msgid "We couldn't find any results for that hashtag." +msgstr "" + +#: src/screens/Topic.tsx:178 +msgid "We couldn't find any results for that topic." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:145 +msgid "We couldn't load this conversation" +msgstr "" + +#: src/screens/SignupQueued.tsx:160 +msgid "We estimate {estimatedTime} until your account is ready." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 +msgid "We have sent another verification email to <0>{0}." +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:256 +msgid "We hope you have a wonderful time. Remember, Bluesky is:" +msgstr "" + +#: src/view/com/posts/DiscoverFallbackHeader.tsx:29 +msgid "We ran out of posts from your follows. Here's the latest from <0/>." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:154 +msgid "We recommend selecting at least two interests." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 +msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/view/com/composer/state/video.ts:419 +msgid "We were unable to determine if you are allowed to upload videos. Please try again." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:52 +msgid "We were unable to load your birth date preferences. Please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:464 +msgid "We were unable to load your configured labelers at this time." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:129 +msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." +msgstr "" + +#: src/screens/SignupQueued.tsx:164 +msgid "We will let you know when your account is ready." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 +msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:134 +msgid "We'll use this to help customize your experience." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:107 +#: src/components/ProgressGuide/FollowDialog.tsx:172 +msgid "We're having network issues, try again" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 +msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." +msgstr "" + +#: src/screens/Signup/index.tsx:123 +msgid "We're so excited to have you join us!" +msgstr "" + +#: src/view/screens/ProfileList.tsx:117 +msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:378 +msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:285 +msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." +msgstr "" + +#: src/view/com/composer/Composer.tsx:460 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + +#: src/components/Lists.tsx:195 +#: src/view/screens/NotFound.tsx:50 +msgid "We're sorry! We can't find the page you were looking for." +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343 +msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + +#: src/screens/Deactivated.tsx:125 +msgid "Welcome back!" +msgstr "" + +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:126 +msgid "What are your interests?" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:41 +msgid "What do you want to call your starter pack?" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:38 +#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/composer/Composer.tsx:777 +msgid "What's up?" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146 +msgid "When you tap on a check, you’ll see which organizations have granted verification." +msgstr "" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80 +msgid "Which languages are used in this post?" +msgstr "" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:79 +msgid "Which languages would you like to see in your algorithmic feeds?" +msgstr "" + +#: src/components/WhoCanReply.tsx:192 +msgid "Who can interact with this post?" +msgstr "" + +#: src/components/WhoCanReply.tsx:97 +msgid "Who can reply" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127 +msgid "Who can verify?" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:79 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 +msgid "Whoops!" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:125 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 +msgid "Whoops! Trending videos failed to load." +msgstr "" + +#: src/screens/Takendown.tsx:173 +msgid "Why are you appealing?" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:42 +msgid "Why should this content be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:32 +#: src/components/ReportDialog/SelectReportOptionView.tsx:55 +msgid "Why should this feed be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:26 +#: src/components/ReportDialog/SelectReportOptionView.tsx:52 +msgid "Why should this list be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:44 +#: src/components/ReportDialog/SelectReportOptionView.tsx:61 +msgid "Why should this message be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:20 +#: src/components/ReportDialog/SelectReportOptionView.tsx:49 +msgid "Why should this post be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:38 +#: src/components/ReportDialog/SelectReportOptionView.tsx:58 +msgid "Why should this starter pack be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:14 +#: src/components/ReportDialog/SelectReportOptionView.tsx:46 +msgid "Why should this user be reviewed?" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:154 +#: src/screens/Messages/components/MessageInput.web.tsx:214 +msgid "Write a message" +msgstr "" + +#: src/view/com/composer/Composer.tsx:872 +msgid "Write post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 +msgid "Write your reply" +msgstr "" + +#: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:116 +msgid "Writers" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:356 +msgid "Wrong DID returned from server. Received: {0}" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:153 +#: src/components/live/GoLiveDialog.tsx:129 +msgid "www.mylivestream.tv" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87 +msgid "Yes" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 +msgid "Yes, deactivate" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:685 +msgid "Yes, delete this starter pack" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 +msgid "Yes, detach" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 +msgid "Yes, hide" +msgstr "" + +#: src/screens/Deactivated.tsx:147 +msgid "Yes, reactivate my account" +msgstr "" + +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "" + +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:59 +msgid "You are a trusted verifier" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:45 +msgid "You are creating an account on" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + +#: src/screens/SignupQueued.tsx:157 +msgid "You are in line." +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:119 +#: src/components/live/EditLiveDialog.tsx:124 +msgid "You are Live" +msgstr "" + +#: src/components/live/queries.ts:211 +msgid "You are no longer live" +msgstr "" + +#: src/components/live/queries.ts:35 +msgid "You are not allowed to go live" +msgstr "" + +#: src/view/com/composer/state/video.ts:412 +msgid "You are not allowed to upload videos." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:94 +msgid "You are not following anyone." +msgstr "" + +#: src/components/live/queries.ts:156 +msgid "You are now live!" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:64 +msgid "You are verified" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:355 +msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:208 +msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:45 +msgid "You can adjust your interests at any time from \"Content and media\" settings." +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 +msgid "You can also discover new Custom Feeds to follow." +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:198 +msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 +msgid "You can continue ongoing conversations regardless of which setting you choose." +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + +#: src/screens/Login/index.tsx:182 +#: src/screens/Login/PasswordUpdatedForm.tsx:26 +msgid "You can now sign in with your new password." +msgstr "" + +#: src/screens/Deactivated.tsx:133 +msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 +msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." +msgstr "" + +#: src/components/interstitials/Trending.tsx:130 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 +msgid "You can update this later from your settings." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:94 +msgid "You do not have any followers." +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:109 +msgid "You don't follow any users who follow @{name}." +msgstr "" + +#: src/screens/Messages/Inbox.tsx:241 +msgid "You don't have any chat requests at the moment." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:67 +msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:145 +msgid "You don't have any pinned feeds." +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:185 +msgid "You don't have any saved feeds." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:273 +msgid "You have blocked the author or you have been blocked by the author." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:66 +msgid "You have blocked this user" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:73 +#: src/lib/moderation/useModerationCauseDescription.ts:57 +#: src/lib/moderation/useModerationCauseDescription.ts:65 +msgid "You have blocked this user. You cannot view their content." +msgstr "" + +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:49 +#: src/screens/Login/SetNewPasswordForm.tsx:95 +#: src/view/com/modals/ChangePassword.tsx:87 +#: src/view/com/modals/ChangePassword.tsx:133 +msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:116 +msgid "You have hidden this post" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:111 +msgid "You have hidden this post." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:104 +#: src/lib/moderation/useModerationCauseDescription.ts:99 +msgid "You have muted this account." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:93 +msgid "You have muted this user" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:301 +msgid "You have no conversations yet. Start one!" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:139 +msgid "You have no feeds." +msgstr "" + +#: src/view/com/lists/MyLists.tsx:81 +#: src/view/com/lists/ProfileLists.tsx:135 +msgid "You have no lists." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:164 +msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:179 +msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." +msgstr "" + +#: src/components/Lists.tsx:58 +msgid "You have reached the end" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187 +msgid "You have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/lib/media/video/upload.shared.ts:56 +msgid "You have temporarily reached the limit for video uploads. Please try again later." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:263 +msgid "You haven't created a starter pack yet!" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:398 +msgid "You haven't muted any words or tags yet" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:118 +#: src/lib/moderation/useModerationCauseDescription.ts:127 +msgid "You hid this reply." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:79 +msgid "You may appeal non-self labels if you feel they were placed in error." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:84 +msgid "You may appeal these labels if you feel they were placed in error." +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:76 +msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}" +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:95 +msgid "You may only add up to 3 feeds" +msgstr "" + +#: src/lib/media/picker.shared.ts:25 +msgid "You may only select up to 4 images" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:136 +msgid "You must be 13 years of age or older to create an account." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:334 +msgid "You must be following at least seven other people to generate a starter pack." +msgstr "" + +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:61 +msgid "You must grant access to your photo library to save a QR code" +msgstr "" + +#: src/components/ReportDialog/SubmitView.tsx:211 +msgid "You must select at least one labeler for a report" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 +msgid "You need to verify your email address before you can enable email 2FA." +msgstr "" + +#: src/screens/Deactivated.tsx:128 +msgid "You previously deactivated @{0}." +msgstr "" + +#: src/screens/Settings/Settings.tsx:404 +msgid "You probably want to restart the app now." +msgstr "" + +#: src/components/dms/MessageItem.tsx:135 +msgid "You reacted {0}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:218 +msgid "You reacted {0} to {1}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 +msgid "You will be signed out of all your accounts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 +msgid "You will no longer receive notifications for this thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 +msgid "You will now receive notifications for this thread" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:108 +msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:154 +msgid "You: {0}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:183 +msgid "You: {defaultEmbeddedContentMessage}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:176 +msgid "You: {short}" +msgstr "" + +#: src/screens/Signup/index.tsx:139 +msgid "You'll follow the suggested users and feeds once you finish creating your account!" +msgstr "" + +#: src/screens/Signup/index.tsx:144 +msgid "You'll follow the suggested users once you finish creating your account!" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:236 +msgid "You'll follow these people and {0} others" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 +msgid "You'll follow these people right away" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 +msgid "You'll stay updated with these feeds" +msgstr "" + +#: src/screens/SignupQueued.tsx:127 +msgid "You're in line" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:253 +msgid "You're ready to go!" +msgstr "" + +#: src/screens/Deactivated.tsx:89 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 +msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:108 +#: src/lib/moderation/useModerationCauseDescription.ts:108 +msgid "You've chosen to hide a word or tag within this post." +msgstr "" + +#: src/state/shell/progress-guide.tsx:234 +msgid "You've found some people to follow" +msgstr "" + +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 +msgid "You've reached the end of your feed! Find some more accounts to follow." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:58 +msgid "You've reached the maximum number of requests allowed. Please try again later." +msgstr "" + +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 +msgid "You've reached your daily limit for video uploads (too many bytes)" +msgstr "" + +#: src/view/com/composer/state/video.ts:427 +msgid "You've reached your daily limit for video uploads (too many videos)" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1123 +msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" +msgstr "" + +#: src/screens/Signup/index.tsx:173 +msgid "Your account" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:84 +msgid "Your account has been deleted" +msgstr "" + +#: src/screens/Takendown.tsx:146 +msgid "Your account has been suspended" +msgstr "" + +#: src/view/com/composer/state/video.ts:431 +msgid "Your account is not yet old enough to upload videos. Please try again later." +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:67 +msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." +msgstr "" + +#: src/screens/Takendown.tsx:214 +msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error." +msgstr "" + +#: src/screens/Takendown.tsx:154 +msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:261 +msgid "Your birth date" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 +msgid "Your browser does not support the video format. Please try a different browser." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:25 +msgid "Your chats have been disabled" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:69 +msgid "Your choice will be remembered for future links. You can change it at any time in settings." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:513 +msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:51 +#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/StepInfo/index.tsx:101 +#: src/view/com/modals/ChangePassword.tsx:55 +msgid "Your email appears to be invalid." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65 +msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." +msgstr "" + +#: src/state/shell/progress-guide.tsx:213 +msgid "Your first like!" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 +msgid "Your followers" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:43 +msgid "Your following feed is empty! Follow more users to see what's happening." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:240 +msgid "Your full handle will be <0>@{0}" +msgstr "" + +#: src/Navigation.tsx:515 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:67 +#: src/screens/Settings/ContentAndMediaSettings.tsx:92 +#: src/screens/Settings/ContentAndMediaSettings.tsx:95 +#: src/screens/Settings/InterestsSettings.tsx:42 +msgid "Your interests" +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:123 +msgctxt "toast" +msgid "Your interests have been updated!" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:94 +msgid "Your interests help us find what you like!" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:369 +msgid "Your muted words" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:169 +msgid "Your password has been changed successfully!" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:130 +msgid "Your password must be at least 8 characters long." +msgstr "" + +#: src/view/com/composer/Composer.tsx:522 +msgid "Your post has been published" +msgstr "" + +#: src/view/com/composer/Composer.tsx:519 +msgid "Your posts have been published" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:268 +msgid "Your posts, likes, and blocks are public. Mutes are private." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 +msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "" + +#: src/view/com/composer/Composer.tsx:521 +msgid "Your reply has been published" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:394 +msgid "Your report will be sent to <0>{0}." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:200 +msgid "Your report will be sent to the Bluesky Moderation Service" +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:56 +msgid "Your selected interests help us serve you content you care about." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:65 +msgid "Your verifications" +msgstr "" + diff --git a/src/locale/locales/bn/messages.po b/src/locale/locales/bn/messages.po new file mode 100644 index 0000000000..f0f3a0af65 --- /dev/null +++ b/src/locale/locales/bn/messages.po @@ -0,0 +1,10648 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-11-05 16:01-0800\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: bn\n" +"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-08-12 00:28\n" +"Last-Translator: \n" +"Language-Team: Bengali\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: bn\n" +"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n" +"X-Crowdin-File-ID: 11\n" + +#: src/components/ProgressGuide/FollowDialog.tsx:516 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127 +msgid "(active)" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:160 +msgid "(contains embedded content)" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:69 +msgid "(no email)" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:169 +msgid "{0, plural, one {# day} other {# days}}" +msgstr "" + +#: src/screens/Profile/ProfileFollowers.tsx:40 +msgid "{0, plural, one {# follower} other {# followers}}" +msgstr "" + +#: src/screens/Profile/ProfileFollows.tsx:40 +msgid "{0, plural, one {# following} other {# following}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:159 +msgid "{0, plural, one {# hour} other {# hours}}" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:53 +msgid "{0, plural, one {# label has} other {# labels have}} been placed on this account" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:62 +msgid "{0, plural, one {# label has} other {# labels have}} been placed on this content" +msgstr "" + +#: src/screens/Post/PostLikedBy.tsx:41 +msgid "{0, plural, one {# like} other {# likes}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:149 +msgid "{0, plural, one {# minute} other {# minutes}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:180 +msgid "{0, plural, one {# month} other {# months}}" +msgstr "" + +#: src/screens/Post/PostQuotes.tsx:41 +msgid "{0, plural, one {# quote} other {# quotes}}" +msgstr "" + +#: src/screens/Post/PostRepostedBy.tsx:41 +msgid "{0, plural, one {# repost} other {# reposts}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:139 +msgid "{0, plural, one {# second} other {# seconds}}" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 +msgid "{0, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#. How many months have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:182 +msgid "{0, plural, one {#mo} other {#mo}}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:444 +#: src/screens/Profile/Header/Metrics.tsx:22 +msgid "{0, plural, one {follower} other {followers}}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/screens/Profile/Header/Metrics.tsx:26 +msgid "{0, plural, one {following} other {following}}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 +msgid "{0, plural, one {like} other {likes}}" +msgstr "" + +#: src/screens/Profile/Header/Metrics.tsx:58 +msgid "{0, plural, one {post} other {posts}}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 +msgid "{0, plural, one {quote} other {quotes}}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 +msgid "{0, plural, one {repost} other {reposts}}" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82 +msgid "{0, plural, other {{1} posts}}" +msgstr "" + +#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack +#: src/screens/StarterPack/StarterPackScreen.tsx:490 +msgid "{0, plural, other {# people have}} used this starter pack!" +msgstr "" + +#. Pattern: {wordValue} in tags +#: src/components/dialogs/MutedWords.tsx:475 +msgid "{0} <0>in <1>tags" +msgstr "" + +#. Pattern: {wordValue} in text, tags +#: src/components/dialogs/MutedWords.tsx:465 +msgid "{0} <0>in <1>text & tags" +msgstr "" + +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + +#: src/components/live/LiveStatusDialog.tsx:68 +msgid "{0} is live" +msgstr "" + +#: src/components/live/queries.ts:39 +msgid "{0} is not a valid URL" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 +msgid "{0} joined this week" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 +msgid "{0} of {1}" +msgstr "" + +#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field +#: src/screens/StarterPack/Wizard/StepDetails.tsx:55 +msgid "{0} out of 50" +msgstr "" + +#: src/components/dms/MessageItem.tsx:143 +msgid "{0} reacted {1}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:231 +msgid "{0} reacted {1} to {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 +msgid "{0}'s avatar" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:74 +msgid "{0}'s favorite feeds and people - join me!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:46 +msgid "{0}'s starter pack" +msgstr "" + +#. How many days have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:171 +msgid "{0}d" +msgstr "" + +#. How many hours have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:161 +msgid "{0}h" +msgstr "" + +#. How many minutes have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:151 +msgid "{0}m" +msgstr "" + +#. How many seconds have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:141 +msgid "{0}s" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:402 +msgid "{count, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#: src/lib/generate-starterpack.ts:111 +#: src/screens/StarterPack/Wizard/index.tsx:184 +msgid "{displayName}'s Starter Pack" +msgstr "" + +#: src/screens/SignupQueued.tsx:216 +msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" +msgstr "" + +#: src/screens/SignupQueued.tsx:222 +msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:353 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:379 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:272 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:484 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:457 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:296 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:508 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:403 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:432 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:365 +msgid "{firstAuthorLink} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:342 +msgid "{firstAuthorLink} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:391 +msgid "{firstAuthorLink} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:284 +msgid "{firstAuthorLink} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:496 +msgid "{firstAuthorLink} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:469 +msgid "{firstAuthorLink} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:308 +msgid "{firstAuthorLink} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:520 +msgid "{firstAuthorLink} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:415 +msgid "{firstAuthorLink} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:444 +msgid "{firstAuthorLink} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:346 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:372 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:265 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:477 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:450 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:289 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:501 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:396 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:425 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:351 +msgid "{firstAuthorName} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:341 +msgid "{firstAuthorName} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:377 +msgid "{firstAuthorName} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:270 +msgid "{firstAuthorName} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:482 +msgid "{firstAuthorName} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:455 +msgid "{firstAuthorName} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:294 +msgid "{firstAuthorName} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:506 +msgid "{firstAuthorName} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:401 +msgid "{firstAuthorName} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:430 +msgid "{firstAuthorName} verified you" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:572 +msgid "{following} following" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:413 +msgid "{handle} can't be messaged" +msgstr "" + +#: src/components/live/utils.ts:15 +msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" +msgstr "" + +#: src/components/live/utils.ts:19 +msgid "{hours, plural, one {# hour} other {# hours}}" +msgstr "" + +#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack +#: src/components/StarterPack/StarterPackCard.tsx:101 +msgid "{joinedAllTimeCount, plural, other {# users have}} joined!" +msgstr "" + +#: src/components/live/utils.ts:10 +msgid "{minutes, plural, one {# minute} other {# minutes}}" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 +msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#: src/components/NewskieDialog.tsx:116 +msgid "{profileName} joined Bluesky {0} ago" +msgstr "" + +#: src/components/NewskieDialog.tsx:111 +msgid "{profileName} joined Bluesky using a starter pack {0} ago" +msgstr "" + +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111 +msgid "{rank}." +msgstr "" + +#. trending topic time spent trending. should be as short as possible to fit in a pill +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206 +msgid "{type}h ago" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:60 +msgid "{userName} is a trusted verifier" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:67 +msgid "{userName} is verified" +msgstr "" + +#. Possessive, meaning "the verifications of {userName}" +#: src/components/verification/VerificationsDialog.tsx:69 +msgid "{userName}'s verifications" +msgstr "" + +#. Indicates the number of additional profiles are in the Starter Pack e.g. +12 +#: src/screens/Search/components/StarterPackCard.tsx:249 +msgid "+{computedTotal}" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:488 +msgctxt "profiles" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:541 +msgctxt "feeds" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#: src/view/shell/Drawer.tsx:116 +msgid "<0>{0} {1, plural, one {follower} other {followers}}" +msgstr "" + +#: src/view/shell/Drawer.tsx:127 +msgid "<0>{0} {1, plural, one {following} other {following}}" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:529 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:522 +msgid "<0>{0} is included in your starter pack" +msgstr "" + +#: src/components/WhoCanReply.tsx:319 +msgid "<0>{0} members" +msgstr "" + +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:479 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + +#: src/screens/Profile/Header/Handle.tsx:53 +msgid "⚠Invalid Handle" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:193 +msgid "24 hours" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:268 +msgid "2FA Confirmation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:232 +msgid "30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:217 +msgid "7 days" +msgstr "" + +#. If last message does not contain text, fall back to "{user} reacted to {a message}" +#: src/screens/Messages/components/ChatListItem.tsx:210 +msgid "a message" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91 +msgid "A new form of verification" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#: src/Navigation.tsx:523 +#: src/screens/Settings/AboutSettings.tsx:75 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 +msgid "About" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/RequestButtons.tsx:259 +msgid "Accept" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:249 +msgid "Accept chat request" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/RequestListItem.tsx:42 +msgid "Accept Request" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 +msgid "Accessibility" +msgstr "" + +#: src/Navigation.tsx:382 +msgid "Accessibility Settings" +msgstr "" + +#: src/Navigation.tsx:398 +#: src/screens/Login/LoginForm.tsx:194 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 +msgid "Account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/view/com/profile/ProfileMenu.tsx:158 +msgctxt "toast" +msgid "Account blocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:171 +msgctxt "toast" +msgid "Account followed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 +#: src/view/com/profile/ProfileMenu.tsx:134 +msgctxt "toast" +msgid "Account muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:103 +#: src/lib/moderation/useModerationCauseDescription.ts:98 +msgid "Account Muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:89 +msgid "Account Muted by List" +msgstr "" + +#: src/screens/Settings/Settings.tsx:624 +msgid "Account options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:660 +msgid "Account removed from quick access" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128 +#: src/view/com/profile/ProfileMenu.tsx:148 +msgctxt "toast" +msgid "Account unblocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:183 +msgctxt "toast" +msgid "Account unfollowed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 +#: src/view/com/profile/ProfileMenu.tsx:124 +msgctxt "toast" +msgid "Account unmuted" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:96 +msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 +#: src/components/dialogs/MutedWords.tsx:328 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +msgid "Add" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:572 +msgid "Add {0} more to continue" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Add {displayName} to starter pack" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:107 +#: src/view/com/composer/labels/LabelsBtn.tsx:112 +msgid "Add a content warning" +msgstr "" + +#: src/components/live/GoLiveDialog.tsx:101 +msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event." +msgstr "" + +#: src/view/screens/ProfileList.tsx:924 +#: src/view/screens/ProfileList.tsx:942 +msgid "Add a user to this list" +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:55 +#: src/screens/Deactivated.tsx:192 +msgid "Add account" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:210 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 +msgid "Add alt text" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +msgid "Add alt text (optional)" +msgstr "" + +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 +msgid "Add another account" +msgstr "" + +#: src/view/com/composer/Composer.tsx:776 +msgid "Add another post" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 +msgid "Add app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:75 +#: src/screens/Settings/AppPasswords.tsx:83 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:111 +msgid "Add App Password" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.web.tsx:35 +msgid "Add emoji reaction" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 +msgid "Add more details (optional)" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:321 +msgid "Add mute word with chosen settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:112 +msgid "Add muted words and tags" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1340 +msgid "Add new post" +msgstr "" + +#: src/view/screens/ProfileList.tsx:932 +#: src/view/screens/ProfileList.tsx:950 +msgid "Add people" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79 +msgid "Add people to list" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:55 +msgid "Add Reaction" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:99 +msgid "Add recommended feeds" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:510 +msgid "Add some feeds to your starter pack!" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:41 +msgid "Add the default feed of only people you follow" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:406 +msgid "Add the following DNS record to your domain:" +msgstr "" + +#: src/components/FeedCard.tsx:305 +msgid "Add this feed to your feeds" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:305 +#: src/view/com/profile/ProfileMenu.tsx:308 +msgid "Add to lists" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 +msgid "Add user to list" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 +msgid "Added to list" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:421 +msgid "Additional details (limit 300 characters)" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:159 +msgid "Adult" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:116 +#: src/lib/moderation/useGlobalLabelStrings.ts:34 +#: src/lib/moderation/useModerationCauseDescription.ts:148 +#: src/view/com/composer/labels/LabelsBtn.tsx:127 +msgid "Adult Content" +msgstr "" + +#: src/screens/Moderation/index.tsx:404 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:247 +msgid "Adult content is disabled." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:138 +#: src/view/com/composer/labels/LabelsBtn.tsx:196 +msgid "Adult Content labels" +msgstr "" + +#: src/screens/Moderation/index.tsx:454 +msgid "Advanced" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +msgid "alice@example.com" +msgstr "" + +#: src/view/screens/Notifications.tsx:88 +msgid "All" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:386 +msgid "All accounts have been followed!" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:64 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:99 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:101 +msgid "All languages" +msgstr "" + +#: src/view/screens/Feeds.tsx:707 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:146 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:153 +msgid "Allow access to your direct messages" +msgstr "" + +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 +msgid "Allow new messages from" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 +msgid "Allow quote posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +msgid "Allow replies from:" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:200 +msgid "Allows access to direct messages" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/view/com/modals/ChangePassword.tsx:182 +msgid "Already have a code?" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:43 +msgid "Already signed in as @{0}" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:188 +msgid "ALT" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:54 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 +#: src/view/com/composer/videos/SubtitleDialog.tsx:40 +#: src/view/com/composer/videos/SubtitleDialog.tsx:55 +#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:105 +msgid "Alt text" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 +msgid "Alt Text" +msgstr "" + +#: src/view/com/composer/photos/Gallery.tsx:260 +msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93 +msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:266 +msgid "An error has occurred" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 +msgid "An error occurred" +msgstr "" + +#: src/view/com/composer/state/video.ts:400 +msgid "An error occurred while compressing the video." +msgstr "" + +#: src/state/queries/explore-feed-previews.tsx:173 +msgid "An error occurred while fetching the feed." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 +msgid "An error occurred while generating your starter pack. Want to try again?" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 +msgid "An error occurred while loading the video. Please try again later." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 +msgid "An error occurred while loading the video. Please try again." +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:72 +msgid "An error occurred while saving the QR code!" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:63 +msgid "An error occurred while selecting the video" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:374 +msgid "An error occurred while trying to follow all" +msgstr "" + +#: src/view/com/composer/state/video.ts:441 +msgid "An error occurred while uploading the video." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84 +#: src/components/verification/VerifierDialog.tsx:86 +msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28 +#: src/lib/moderation/useReportOptions.ts:28 +msgid "An issue not included in these options" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:38 +msgid "An issue occurred starting the chat" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +msgid "An issue occurred while trying to open the chat" +msgstr "" + +#: src/components/hooks/useFollowMethods.ts:35 +#: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 +#: src/view/com/profile/FollowButton.tsx:38 +#: src/view/com/profile/FollowButton.tsx:48 +msgid "An issue occurred, please try again." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118 +msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:185 +msgid "an unknown error occurred" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:134 +#: src/lib/moderation/useModerationCauseDescription.ts:144 +msgid "an unknown labeler" +msgstr "" + +#: src/components/WhoCanReply.tsx:340 +msgid "and" +msgstr "" + +#: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:94 +msgid "Animals" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 +msgid "Animated GIF" +msgstr "" + +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 +msgid "Announcing verification on Bluesky" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33 +#: src/lib/moderation/useReportOptions.ts:33 +msgid "Anti-Social Behavior" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +msgid "Anybody can interact" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 +#: src/screens/Settings/AppIconSettings/index.tsx:67 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 +msgid "App Icon" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:87 +msgid "App Language" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:122 +msgid "App Password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:147 +msgctxt "toast" +msgid "App password deleted" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84 +msgid "App password name must be unique" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 +msgid "App password names can only contain letters, numbers, spaces, dashes, and underscores" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 +msgid "App password names must be at least 4 characters long" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 +msgid "App passwords" +msgstr "" + +#: src/Navigation.tsx:350 +#: src/screens/Settings/AppPasswords.tsx:51 +msgid "App Passwords" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:150 +#: src/components/moderation/LabelsOnMeDialog.tsx:153 +msgid "Appeal" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:268 +msgid "Appeal \"{0}\" label" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: src/screens/Messages/components/ChatDisabled.tsx:91 +msgctxt "toast" +msgid "Appeal submitted" +msgstr "" + +#: src/screens/Takendown.tsx:111 +#: src/screens/Takendown.tsx:144 +msgid "Appeal suspension" +msgstr "" + +#: src/screens/Takendown.tsx:114 +msgid "Appeal Suspension" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 +msgid "Appeal this decision" +msgstr "" + +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 +msgid "Appearance" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 +#: src/screens/Home/NoFeedsPinned.tsx:93 +msgid "Apply default recommended feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 +msgid "Archived from {0}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 +msgid "Archived post" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:209 +msgid "Are you sure you want to delete the app password \"{0}\"?" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:183 +msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:657 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:86 +msgid "Are you sure you want to discard your changes?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:46 +msgid "Are you sure you want to leave this conversation?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:45 +msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." +msgstr "" + +#: src/components/FeedCard.tsx:340 +msgid "Are you sure you want to remove this from your feeds?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:725 +msgid "Are you sure you'd like to discard this draft?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:910 +msgid "Are you sure you'd like to discard this post?" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:433 +msgid "Are you sure?" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74 +msgid "Are you writing in <0>{suggestedLanguageName}?" +msgstr "" + +#: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:95 +msgid "Art" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:171 +msgid "Artistic or non-erotic nudity." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 +msgid "Assign topic for algo" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 +msgctxt "Name of app icon variant" +msgid "Aurora" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:116 +#: src/screens/Settings/ContentAndMediaSettings.tsx:122 +msgid "Autoplay videos and GIFs" +msgstr "" + +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:84 +#: src/components/moderation/LabelsOnMeDialog.tsx:315 +#: src/components/moderation/LabelsOnMeDialog.tsx:316 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 +#: src/screens/Login/ForgotPasswordForm.tsx:129 +#: src/screens/Login/LoginForm.tsx:310 +#: src/screens/Login/LoginForm.tsx:316 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:158 +#: src/screens/Signup/BackNextButtons.tsx:41 +#: src/screens/StarterPack/Wizard/index.tsx:303 +msgid "Back" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:259 +msgid "Back to Chats" +msgstr "" + +#: src/view/screens/Lists.tsx:53 +#: src/view/screens/ModerationModlists.tsx:53 +msgid "Before creating a list, you must first verify your email." +msgstr "" + +#: src/lib/hooks/useOpenComposer.tsx:14 +msgid "Before creating a post or replying, you must first verify your email." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:245 +msgid "Before creating a starter pack, you must first verify your email." +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:235 +msgid "Before you can accept this chat request, you must first verify your email." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/MessageProfileButton.tsx:58 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 +msgid "Before you can message another user, you must first verify your email." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:103 +#: src/screens/Settings/AccountSettings.tsx:140 +msgid "Birthday" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:473 +msgid "Block" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:247 +#: src/components/dms/ConvoMenu.tsx:250 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 +#: src/screens/Messages/components/RequestButtons.tsx:144 +#: src/screens/Messages/components/RequestButtons.tsx:146 +#: src/view/com/profile/ProfileMenu.tsx:384 +#: src/view/com/profile/ProfileMenu.tsx:391 +msgid "Block account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 +#: src/view/com/profile/ProfileMenu.tsx:456 +msgid "Block Account?" +msgstr "" + +#: src/view/screens/ProfileList.tsx:669 +msgid "Block accounts" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:317 +msgid "Block and Delete" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:352 +msgid "Block and/or delete this conversation" +msgstr "" + +#: src/view/screens/ProfileList.tsx:789 +msgid "Block list" +msgstr "" + +#: src/screens/Messages/components/ChatStatusInfo.tsx:46 +msgid "Block or report" +msgstr "" + +#: src/view/screens/ProfileList.tsx:784 +msgid "Block these accounts?" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:356 +#: src/components/dms/ReportDialog.tsx:359 +msgid "Block user" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:323 +msgid "Block User" +msgstr "" + +#: src/components/Post/Embed/index.tsx:180 +msgid "Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:282 +msgid "Blocked accounts" +msgstr "" + +#: src/Navigation.tsx:191 +#: src/view/screens/ModerationBlockedAccounts.tsx:104 +msgid "Blocked Accounts" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 +#: src/view/com/profile/ProfileMenu.tsx:468 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:190 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:488 +msgid "Blocked post." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:203 +msgid "Blocking does not prevent this labeler from placing labels on your account." +msgstr "" + +#: src/view/screens/ProfileList.tsx:786 +msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:465 +msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:175 +msgid "Blog" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:136 +#: src/view/com/auth/server-input/index.tsx:137 +msgid "Bluesky" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 +msgid "Bluesky cannot confirm the authenticity of the claimed date." +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 +msgctxt "Name of app icon variant" +msgid "Bluesky Classic™" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:212 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:149 +msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." +msgstr "" + +#: src/components/ProgressGuide/List.tsx:53 +#: src/components/ProgressGuide/List.tsx:70 +msgid "Bluesky is better with friends!" +msgstr "" + +#: src/screens/Takendown.tsx:217 +msgid "Bluesky Social Terms of Service" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:310 +msgid "Bluesky will choose a set of recommended accounts from people in your network." +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:99 +msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132 +msgid "Bluesky will proactively verify notable and authentic accounts." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:99 +msgid "Bluesky+" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:102 +msgid "Bluesky+ icons" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:53 +msgid "Blur images" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:51 +msgid "Blur images and filter from feeds" +msgstr "" + +#: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:96 +msgid "Books" +msgstr "" + +#: src/components/FeedInterstitials.tsx:435 +msgid "Browse more accounts on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:566 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:575 +msgid "Browse more suggestions on the Explore page" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 +msgid "Browse other feeds" +msgstr "" + +#: src/components/TrendingTopics.tsx:178 +msgid "Browse posts about {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:186 +msgid "Browse posts tagged with {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:195 +msgid "Browse starter pack {displayName}" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93 +msgid "Browse topic {0}" +msgstr "" + +#: src/components/TrendingTopics.tsx:232 +msgid "Browse topic {displayName}" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:170 +msgid "Business" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:62 +#: src/components/moderation/ReportDialog/index.tsx:683 +#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/Explore.tsx:930 +msgid "By {0}" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +msgid "By <0>{0}" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:78 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:98 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:105 +msgid "By you" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +msgid "Camera" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 +#: src/components/dialogs/InAppBrowserConsent.tsx:98 +#: src/components/dialogs/InAppBrowserConsent.tsx:104 +#: src/components/live/GoLiveDialog.tsx:247 +#: src/components/live/GoLiveDialog.tsx:253 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 +#: src/components/Prompt.tsx:143 +#: src/components/Prompt.tsx:145 +#: src/screens/Deactivated.tsx:158 +#: src/screens/Profile/Header/EditProfileDialog.tsx:225 +#: src/screens/Profile/Header/EditProfileDialog.tsx:233 +#: src/screens/Search/Shell.tsx:349 +#: src/screens/Settings/AppIconSettings/index.tsx:44 +#: src/screens/Settings/AppIconSettings/index.tsx:225 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:78 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:85 +#: src/screens/Settings/Settings.tsx:289 +#: src/screens/Takendown.tsx:99 +#: src/screens/Takendown.tsx:102 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:43 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:52 +#: src/view/com/modals/ChangePassword.tsx:279 +#: src/view/com/modals/ChangePassword.tsx:282 +#: src/view/com/modals/CreateOrEditList.tsx:333 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/shell/desktop/LeftNav.tsx:212 +msgid "Cancel" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:338 +#: src/view/com/modals/DeleteAccount.tsx:170 +#: src/view/com/modals/DeleteAccount.tsx:278 +msgctxt "action" +msgid "Cancel" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:166 +#: src/view/com/modals/DeleteAccount.tsx:274 +msgid "Cancel account deletion" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:94 +msgid "Cancel image crop" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:203 +msgid "Cancel quote post" +msgstr "" + +#: src/screens/Deactivated.tsx:152 +msgid "Cancel reactivation and sign out" +msgstr "" + +#: src/screens/Search/Shell.tsx:341 +msgid "Cancel search" +msgstr "" + +#: src/components/PostControls/index.tsx:101 +#: src/components/PostControls/index.tsx:132 +#: src/components/PostControls/index.tsx:160 +#: src/state/shell/composer/index.tsx:91 +msgid "Cannot interact with a blocked user" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:132 +msgid "Captions (.vtt)" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:40 +#: src/view/com/composer/videos/SubtitleDialog.tsx:55 +msgid "Captions & alt text" +msgstr "" + +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Change" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:39 +msgid "Change app icon" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:38 +#: src/screens/Settings/AppIconSettings/index.tsx:221 +msgid "Change app icon to \"{0}\"" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:40 +msgid "Change app language" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:94 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:98 +msgid "Change Handle" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:325 +msgid "Change moderation service" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:153 +msgid "Change Password" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85 +msgid "Change post language to {suggestedLanguageName}" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:244 +msgid "Change report reason" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:216 +msgid "Changes app icon" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:49 +#: src/components/forms/HostingProvider.tsx:69 +msgid "Changes hosting provider" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 +msgid "Chat" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:78 +#: src/screens/Messages/components/RequestButtons.tsx:304 +msgctxt "toast" +msgid "Chat deleted" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:176 +msgctxt "toast" +msgid "Chat muted" +msgstr "" + +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 +msgid "Chat request inbox" +msgstr "" + +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 +msgid "Chat requests" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:75 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 +msgid "Chat settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 +msgid "Chat Settings" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:178 +msgctxt "toast" +msgid "Chat unmuted" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 +msgid "Chats" +msgstr "" + +#: src/screens/SignupQueued.tsx:78 +#: src/screens/SignupQueued.tsx:82 +msgid "Check my status" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:301 +msgid "Check your email for a sign in code and enter it here." +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:213 +msgid "Check your inbox for an email with the confirmation code to enter below:" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:389 +msgid "Choose domain verification method" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:200 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 +msgid "Choose for me" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:196 +msgid "Choose People" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:298 +msgid "Choose the algorithms that power your custom feeds." +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 +msgid "Choose this color as your avatar" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:130 +msgid "Choose your account provider" +msgstr "" + +#: src/view/screens/Feeds.tsx:733 +msgid "Choose your own timeline! Feeds built by the community help you find content you love." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:245 +msgid "Choose your password" +msgstr "" + +#: src/screens/Signup/index.tsx:175 +msgid "Choose your username" +msgstr "" + +#: src/screens/Settings/Settings.tsx:490 +msgid "Clear all storage data" +msgstr "" + +#: src/screens/Settings/Settings.tsx:492 +msgid "Clear all storage data (restart after this)" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:116 +#: src/screens/Settings/AboutSettings.tsx:120 +msgid "Clear image cache" +msgstr "" + +#: src/components/forms/SearchInput.tsx:70 +msgid "Clear search query" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + +#: src/view/screens/Support.tsx:41 +msgid "click here" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 +msgid "Click here to restart the verification process." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 +msgid "Click here to update your email" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 +msgid "Click to disable quote posts of this post." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 +msgid "Click to enable quote posts of this post." +msgstr "" + +#: src/components/RichTextTag.tsx:54 +msgid "Click to open tag menu for {tag}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:317 +msgid "Click to retry failed message" +msgstr "" + +#: src/screens/Onboarding/index.tsx:32 +msgid "Climate" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:39 +msgid "Clip 🐴 clop 🐴" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 +#: src/components/dialogs/SearchablePeopleList.tsx:295 +#: src/components/dms/EmojiPopup.android.tsx:58 +#: src/components/dms/ReportDialog.tsx:381 +#: src/components/dms/ReportDialog.tsx:390 +#: src/components/live/EditLiveDialog.tsx:229 +#: src/components/live/EditLiveDialog.tsx:235 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 +#: src/components/ProgressGuide/FollowDialog.tsx:386 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: src/components/verification/VerificationsDialog.tsx:144 +#: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 +#: src/view/com/modals/ChangePassword.tsx:279 +#: src/view/com/modals/ChangePassword.tsx:282 +msgid "Close" +msgstr "" + +#: src/components/Dialog/index.web.tsx:111 +#: src/components/Dialog/index.web.tsx:259 +msgid "Close active dialog" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:31 +msgid "Close alert" +msgstr "" + +#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 +msgid "Close bottom drawer" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 +#: src/components/verification/VerificationsDialog.tsx:136 +#: src/components/verification/VerifierDialog.tsx:136 +msgid "Close dialog" +msgstr "" + +#: src/view/shell/index.web.tsx:100 +msgid "Close drawer menu" +msgstr "" + +#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136 +#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172 +msgid "Close emoji picker" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:170 +msgid "Close GIF dialog" +msgstr "" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:31 +msgid "Close image" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:109 +msgid "Close image viewer" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:53 +#: src/components/ContextMenu/Backdrop.ios.tsx:79 +#: src/components/ContextMenu/Backdrop.tsx:45 +msgid "Close menu" +msgstr "" + +#: src/components/Menu/index.tsx:344 +msgid "Close this dialog" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:32 +msgid "Closes password update alert" +msgstr "" + +#: src/view/com/composer/Composer.tsx:973 +msgid "Closes post composer and discards post draft" +msgstr "" + +#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137 +#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173 +msgid "Closes the emoji picker" +msgstr "" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:32 +msgid "Closes viewer for header image" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:591 +msgid "Collapse list of users" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:805 +msgid "Collapses list of users for a given notification" +msgstr "" + +#: src/components/dialogs/Embed.tsx:154 +#: src/screens/Settings/AppearanceSettings.tsx:96 +msgid "Color mode" +msgstr "" + +#: src/components/dialogs/Embed.tsx:151 +msgid "Color theme" +msgstr "" + +#: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:97 +msgid "Comedy" +msgstr "" + +#: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:98 +msgid "Comics" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 +#: src/view/screens/CommunityGuidelines.tsx:34 +msgid "Community Guidelines" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:311 +msgid "Complete onboarding and start using your account" +msgstr "" + +#: src/screens/Signup/index.tsx:177 +msgid "Complete the challenge" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:519 +msgid "Compose new post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:874 +msgid "Compose posts up to {0, plural, other {# characters}} in length" +msgstr "" + +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 +msgid "Compose reply" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1734 +msgid "Compressing video..." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:88 +msgid "Configure content filtering setting for category: {name}" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:249 +msgid "Configured in <0>moderation settings." +msgstr "" + +#: src/components/Prompt.tsx:186 +#: src/components/Prompt.tsx:189 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188 +msgid "Confirm" +msgstr "" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34 +msgid "Confirm content language settings" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:264 +msgid "Confirm delete account" +msgstr "" + +#: src/screens/Moderation/index.tsx:330 +msgid "Confirm your age:" +msgstr "" + +#: src/screens/Moderation/index.tsx:321 +msgid "Confirm your birthdate" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 +#: src/screens/Login/LoginForm.tsx:274 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 +#: src/view/com/modals/DeleteAccount.tsx:220 +#: src/view/com/modals/DeleteAccount.tsx:226 +msgid "Confirmation code" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:337 +msgid "Connecting..." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 +msgid "Contact support" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:51 +msgid "Content & Media" +msgstr "" + +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 +msgid "Content and media" +msgstr "" + +#: src/Navigation.tsx:507 +msgid "Content and Media" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:18 +msgid "Content Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 +msgid "Content filters" +msgstr "" + +#: src/screens/Search/modules/ExploreRecommendations.tsx:59 +msgid "Content from across the network we think you might like." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:153 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76 +msgid "Content Languages" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:82 +#: src/lib/moderation/useModerationCauseDescription.ts:82 +msgid "Content Not Available" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:50 +#: src/components/moderation/ScreenHider.tsx:93 +#: src/lib/moderation/useGlobalLabelStrings.ts:22 +#: src/lib/moderation/useModerationCauseDescription.ts:45 +msgid "Content Warning" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:60 +msgid "Content warnings" +msgstr "" + +#: src/components/Menu/index.web.tsx:91 +msgid "Context menu backdrop, click to close the menu." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:276 +msgid "Continue" +msgstr "" + +#: src/components/AccountList.tsx:128 +msgid "Continue as {0} (currently signed in)" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 +#: src/view/com/post-thread/PostThreadLoadMore.tsx:60 +msgid "Continue thread..." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:273 +#: src/screens/Signup/BackNextButtons.tsx:60 +msgid "Continue to next step" +msgstr "" + +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:318 +#: src/components/dms/ReportDialog.tsx:321 +msgctxt "toast" +msgid "Conversation deleted" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:196 +msgid "Conversation deleted" +msgstr "" + +#: src/screens/Onboarding/index.tsx:41 +msgid "Cooking" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:183 +msgid "Copied" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:151 +msgid "Copied build version to clipboard" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 +#: src/lib/sharing.ts:25 +#: src/lib/sharing.ts:41 +#: src/view/com/modals/InviteCodes.tsx:153 +msgid "Copied to clipboard" +msgstr "" + +#: src/components/dialogs/Embed.tsx:201 +#: src/screens/Settings/components/CopyButton.tsx:66 +msgid "Copied!" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:127 +msgid "Copies build version to clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:182 +msgid "Copy" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 +msgid "Copy App Password" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:421 +#: src/view/com/profile/ProfileMenu.tsx:424 +msgid "Copy at:// URI" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 +msgid "Copy author DID" +msgstr "" + +#: src/components/dialogs/Embed.tsx:189 +#: src/components/dialogs/Embed.tsx:206 +msgid "Copy code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:491 +#: src/view/com/profile/ProfileMenu.tsx:430 +#: src/view/com/profile/ProfileMenu.tsx:433 +msgid "Copy DID" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:424 +msgid "Copy host" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:617 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:111 +msgid "Copy Link" +msgstr "" + +#: src/view/screens/ProfileList.tsx:513 +msgid "Copy link to list" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 +msgid "Copy link to post" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:254 +msgid "Copy link to profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Copy link to starter pack" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 +msgid "Copy message text" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 +msgid "Copy post at:// URI" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +msgid "Copy post text" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:176 +msgid "Copy QR code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:445 +msgid "Copy TXT record value" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 +#: src/view/screens/CopyrightPolicy.tsx:31 +msgid "Copyright Policy" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:35 +#: src/components/dms/ReportDialog.tsx:310 +msgid "Could not leave chat" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:83 +msgid "Could not load feed" +msgstr "" + +#: src/view/screens/ProfileList.tsx:1029 +msgid "Could not load list" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:182 +msgid "Could not mute chat" +msgstr "" + +#: src/view/com/composer/videos/VideoPreview.web.tsx:66 +msgid "Could not process your video" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:300 +msgid "Create" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:160 +msgid "Create a QR code for a starter pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:178 +#: src/components/StarterPack/ProfileStarterPacks.tsx:287 +#: src/Navigation.tsx:588 +msgid "Create a starter pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:274 +msgid "Create a starter pack for me" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:55 +#: src/view/com/auth/SplashScreen.web.tsx:117 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 +msgid "Create account" +msgstr "" + +#: src/screens/Signup/index.tsx:122 +msgid "Create Account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:86 +#: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 +msgid "Create an account" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310 +msgid "Create an account without using this starter pack" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:290 +msgid "Create an avatar instead" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:185 +msgid "Create another" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:47 +#: src/view/com/auth/SplashScreen.web.tsx:109 +msgid "Create new account" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:585 +#: src/components/ReportDialog/SelectReportOptionView.tsx:99 +msgid "Create report for {0}" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:174 +msgid "Created {0}" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:127 +msgid "Creator has been blocked" +msgstr "" + +#: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:99 +msgid "Culture" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:142 +#: src/view/com/auth/server-input/index.tsx:143 +msgid "Custom" +msgstr "" + +#: src/components/dialogs/Embed.tsx:144 +msgid "Customization options" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 +msgid "Customize who can interact with this post." +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:56 +msgid "Customizes your Bluesky experience" +msgstr "" + +#: src/components/dialogs/Embed.tsx:167 +#: src/components/dialogs/Embed.tsx:169 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 +msgid "Dark" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 +msgctxt "Name of app icon variant" +msgid "Dark" +msgstr "" + +#: src/view/screens/Debug.tsx:69 +msgid "Dark mode" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:121 +msgid "Dark theme" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:273 +msgid "Date of birth" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 +msgid "Deactivate account" +msgstr "" + +#: src/screens/Settings/Settings.tsx:455 +msgid "Debug Moderation" +msgstr "" + +#: src/view/screens/Debug.tsx:89 +msgid "Debug panel" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:171 +msgid "Default" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:75 +msgid "Default icons" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/screens/Messages/components/ChatStatusInfo.tsx:55 +#: src/screens/Settings/AppPasswords.tsx:212 +#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:688 +#: src/screens/StarterPack/StarterPackScreen.tsx:760 +#: src/view/screens/ProfileList.tsx:768 +msgid "Delete" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 +msgid "Delete account" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:101 +msgid "Delete Account <0>\"<1>{0}<2>\"" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:187 +msgid "Delete app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:207 +msgid "Delete app password?" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:316 +#: src/screens/Messages/components/RequestButtons.tsx:323 +msgid "Delete chat" +msgstr "" + +#: src/screens/Settings/Settings.tsx:462 +msgid "Delete chat declaration record" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:362 +#: src/components/dms/ReportDialog.tsx:365 +#: src/screens/Messages/components/RequestButtons.tsx:136 +#: src/screens/Messages/components/RequestButtons.tsx:139 +msgid "Delete conversation" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:320 +msgid "Delete Conversation" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:158 +msgid "Delete for me" +msgstr "" + +#: src/view/screens/ProfileList.tsx:556 +msgid "Delete list" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:181 +msgid "Delete message" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:156 +msgid "Delete message for me" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:267 +msgid "Delete my account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 +msgid "Delete post" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/screens/StarterPack/StarterPackScreen.tsx:751 +msgid "Delete starter pack" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:654 +msgid "Delete starter pack?" +msgstr "" + +#: src/view/screens/ProfileList.tsx:763 +msgid "Delete this list?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +msgid "Delete this post?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:173 +msgid "Deleted" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:160 +#: src/screens/Messages/components/ChatListItem.tsx:128 +msgid "Deleted Account" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 +msgid "Deleted post." +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:369 +#: src/view/com/modals/CreateOrEditList.tsx:278 +#: src/view/com/modals/CreateOrEditList.tsx:299 +msgid "Description" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:389 +msgid "Description is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:390 +msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 +msgid "Descriptive alt text" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 +msgid "Detach quote" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 +msgid "Detach quote post?" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:140 +msgctxt "toast" +msgid "Developer mode disabled" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:134 +msgctxt "toast" +msgid "Developer mode enabled" +msgstr "" + +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 +msgid "Developer options" +msgstr "" + +#: src/components/WhoCanReply.tsx:188 +msgid "Dialog: adjust who can interact with this post" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:125 +msgid "Dim" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242 +msgid "Disable 2FA" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157 +msgid "Disable email 2FA" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89 +msgid "Disable Email 2FA" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 +msgid "Disable haptic feedback" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 +msgid "Disable subtitles" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:32 +#: src/lib/moderation/useLabelBehaviorDescription.ts:42 +#: src/lib/moderation/useLabelBehaviorDescription.ts:68 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 +msgid "Disabled" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:88 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 +msgid "Discard" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:85 +msgid "Discard changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:724 +msgid "Discard draft?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:909 +msgid "Discard post?" +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:87 +#: src/screens/Settings/components/PwiOptOut.tsx:91 +msgid "Discourage apps from showing my account to logged-out users" +msgstr "" + +#: src/screens/Search/Explore.tsx:434 +msgid "Discover Feeds" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 +msgid "Discover new custom feeds" +msgstr "" + +#: src/view/screens/Feeds.tsx:730 +msgid "Discover New Feeds" +msgstr "" + +#: src/components/Dialog/index.tsx:321 +msgid "Dismiss" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1658 +msgid "Dismiss error" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:42 +msgid "Dismiss getting started guide" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 +msgid "Dismiss interests" +msgstr "" + +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 +msgid "Dismiss this section" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 +msgid "Display larger alt text badges" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:326 +#: src/screens/Profile/Header/EditProfileDialog.tsx:376 +msgid "Display name" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:339 +msgid "Display name is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:340 +msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:392 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:394 +msgid "DNS Panel" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:302 +msgid "Do not apply this mute word to users you follow" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:39 +msgid "Does not include nudity." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:507 +msgid "Domain verified!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 +msgid "Don't have a code or need a new one? <0>Click here." +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37 +msgid "Don't see an email? <0>Click here to resend." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:115 +#: src/components/dialogs/BirthDateSettings.tsx:121 +#: src/components/dms/ReportDialog.tsx:314 +#: src/components/forms/DateField/index.tsx:103 +#: src/components/forms/DateField/index.tsx:109 +#: src/components/Select/index.tsx:183 +#: src/components/Select/index.tsx:190 +#: src/screens/Onboarding/StepProfile/index.tsx:328 +#: src/screens/Onboarding/StepProfile/index.tsx:331 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 +#: src/view/com/auth/server-input/index.tsx:232 +#: src/view/com/auth/server-input/index.tsx:233 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:168 +#: src/view/com/composer/videos/SubtitleDialog.tsx:178 +#: src/view/com/modals/CropImage.web.tsx:112 +#: src/view/com/modals/InviteCodes.tsx:81 +#: src/view/com/modals/InviteCodes.tsx:124 +msgid "Done" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 +msgctxt "action" +msgid "Done" +msgstr "" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:42 +msgid "Done{extraText}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:161 +msgid "Double tap or long press the message to add a reaction" +msgstr "" + +#: src/components/Dialog/index.tsx:322 +msgid "Double tap to close the dialog" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1080 +msgid "Double tap to like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 +msgid "Download Bluesky" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:79 +#: src/screens/Settings/components/ExportCarDialog.tsx:84 +msgid "Download CAR file" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:344 +msgid "Drop to add images" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:153 +msgid "Duration:" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:230 +msgid "e.g. alice" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:327 +msgid "e.g. Alice Lastname" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:376 +msgid "e.g. alice.com" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:43 +msgid "E.g. artistic nudes." +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:261 +msgid "e.g. Great Posters" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:262 +msgid "e.g. Spammers" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:290 +msgid "e.g. The posters who never miss." +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:291 +msgid "e.g. Users that repeatedly reply with ads." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:97 +msgid "Each code works once. You'll receive more invite codes periodically." +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 +#: src/screens/StarterPack/StarterPackScreen.tsx:588 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 +msgid "Edit" +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:180 +#: src/view/com/lists/ListMembers.tsx:186 +msgctxt "action" +msgid "Edit" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:439 +#: src/view/com/util/UserBanner.tsx:119 +msgid "Edit avatar" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 +msgid "Edit Feeds" +msgstr "" + +#: src/view/com/composer/photos/EditImageDialog.web.tsx:85 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:89 +#: src/view/com/composer/photos/Gallery.tsx:195 +msgid "Edit image" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 +msgid "Edit interaction settings" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:98 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 +msgid "Edit interests" +msgstr "" + +#: src/view/screens/ProfileList.tsx:544 +msgid "Edit list details" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:317 +#: src/view/com/profile/ProfileMenu.tsx:323 +msgid "Edit live status" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:228 +msgid "Edit Moderation List" +msgstr "" + +#: src/Navigation.tsx:355 +#: src/view/screens/Feeds.tsx:518 +msgid "Edit My Feeds" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 +msgid "Edit People" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 +msgid "Edit post interaction settings" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/EditProfileDialog.tsx:281 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 +msgid "Edit profile" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +msgid "Edit Profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:580 +msgid "Edit starter pack" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:223 +msgid "Edit User List" +msgstr "" + +#: src/components/WhoCanReply.tsx:97 +msgid "Edit who can reply" +msgstr "" + +#: src/Navigation.tsx:593 +msgid "Edit your starter pack" +msgstr "" + +#: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:101 +msgid "Education" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:141 +msgid "Either the creator of this list has blocked you or you have blocked the creator." +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 +msgid "Email" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64 +msgctxt "toast" +msgid "Email 2FA disabled" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 +msgid "Email 2FA enabled" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:93 +msgid "Email address" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 +msgid "Email Resent" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208 +msgid "Email sent!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 +msgid "Email verification complete!" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 +msgid "Email Verified" +msgstr "" + +#: src/components/dialogs/Embed.tsx:181 +msgid "Embed HTML code" +msgstr "" + +#: src/components/dialogs/Embed.tsx:104 +#: src/components/dialogs/Embed.tsx:108 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 +msgid "Embed post" +msgstr "" + +#: src/components/dialogs/Embed.tsx:112 +msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +msgid "Embedded video player" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111 +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Enable" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:100 +msgid "Enable {0} only" +msgstr "" + +#: src/screens/Moderation/index.tsx:381 +msgid "Enable adult content" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92 +msgid "Enable email 2FA" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 +msgid "Enable external media" +msgstr "" + +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 +msgid "Enable media players for" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 +msgid "Enable subtitles" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:93 +msgid "Enable this source only" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:132 +#: src/screens/Settings/ContentAndMediaSettings.tsx:146 +msgid "Enable trending topics" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 +#: src/screens/Settings/ContentAndMediaSettings.tsx:167 +msgid "Enable trending videos in your Discover feed" +msgstr "" + +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 +msgid "Enabled" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:113 +msgid "End of feed" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:158 +msgid "Ensure you have selected a language for each subtitle file." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:147 +msgid "Enter a password" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:128 +msgid "Enter a word or tag" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 +msgid "Enter code" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 +msgid "Enter fullscreen" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:165 +msgid "Enter the code you received to change your password." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:370 +msgid "Enter the domain you want to use" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:113 +msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:218 +msgid "Enter the username or email address you used when you created your account" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:104 +msgid "Enter your birth date" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:217 +msgid "Enter your email address" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:243 +msgid "Enter your password" +msgstr "" + +#: src/screens/Login/index.tsx:123 +msgid "Enter your username and password" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 +msgid "Enters full screen" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239 +msgid "Entertainment" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1743 +#: src/view/com/util/error/ErrorScreen.tsx:42 +msgid "Error" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:47 +msgid "Error occurred while saving file" +msgstr "" + +#: src/screens/Signup/StepCaptcha/index.tsx:124 +msgid "Error receiving captcha response." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:183 +msgid "Error:" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:144 +msgid "Error: {error}" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 +msgid "Everybody" +msgstr "" + +#: src/components/WhoCanReply.tsx:77 +msgid "Everybody can reply" +msgstr "" + +#: src/components/WhoCanReply.tsx:245 +msgid "Everybody can reply to this post." +msgstr "" + +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 +msgid "Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 +#: src/lib/moderation/useReportOptions.ts:73 +msgid "Excessive mentions or replies" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:86 +#: src/lib/moderation/useReportOptions.ts:86 +msgid "Excessive or unwanted messages" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:311 +msgid "Exclude users you follow" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:514 +msgid "Excludes users you follow" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 +msgid "Exit fullscreen" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:275 +msgid "Exits account deletion process" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:95 +msgid "Exits image cropping process" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:110 +msgid "Exits image view" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:184 +msgid "Expand alt text" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:592 +msgid "Expand list of users" +msgstr "" + +#: src/view/com/composer/ComposerReplyTo.tsx:91 +msgid "Expand or collapse the full post you are replying to" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 +msgid "Expands or collapses post text" +msgstr "" + +#: src/lib/api/index.ts:418 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 +msgid "Experimental" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:500 +msgid "Expired" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:502 +msgid "Expires {0}" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:199 +#: src/components/moderation/ModerationDetailsDialog.tsx:208 +msgid "Expires in {0}" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:131 +msgid "Expires in {0} at {1}" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:47 +#: src/lib/moderation/useGlobalLabelStrings.ts:51 +msgid "Explicit or potentially disturbing media." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:35 +msgid "Explicit sexual images." +msgstr "" + +#: src/Navigation.tsx:750 +#: src/screens/Search/Shell.tsx:307 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 +msgid "Explore" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 +msgid "Export my data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:62 +msgid "Export My Data" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:84 +#: src/screens/Settings/ContentAndMediaSettings.tsx:87 +msgid "External media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 +msgid "External Media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 +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:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 +msgid "External Media Preferences" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:220 +msgctxt "toast" +msgid "Failed to accept chat" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:67 +#: src/components/dms/MessageContextMenu.tsx:99 +msgid "Failed to add emoji reaction" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:587 +msgid "Failed to change handle. Please try again." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:173 +msgid "Failed to create app password. Please try again." +msgstr "" + +#: src/components/dms/MessageProfileButton.tsx:36 +msgid "Failed to create conversation" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 +msgid "Failed to create starter pack" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:184 +msgid "Failed to create the list. Check your internet connection and try again." +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:64 +#: src/screens/Messages/components/RequestButtons.tsx:291 +msgctxt "toast" +msgid "Failed to delete chat" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:79 +msgid "Failed to delete message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +msgid "Failed to delete post, please try again" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:722 +msgid "Failed to delete starter pack" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 +msgid "Failed to load conversations" +msgstr "" + +#: src/screens/Search/Explore.tsx:470 +#: src/screens/Search/Explore.tsx:522 +#: src/screens/Search/Explore.tsx:560 +#: src/screens/Search/Explore.tsx:599 +msgid "Failed to load feeds preferences" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:226 +msgid "Failed to load GIFs" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:23 +msgid "Failed to load past messages" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + +#: src/screens/Search/Explore.tsx:463 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:553 +#: src/screens/Search/Explore.tsx:592 +msgid "Failed to load suggested feeds" +msgstr "" + +#: src/screens/Search/Explore.tsx:373 +msgid "Failed to load suggested follows" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 +msgid "Failed to mark all requests as read" +msgstr "" + +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:61 +#: src/components/dms/MessageContextMenu.tsx:93 +msgid "Failed to remove emoji reaction" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:34 +msgid "Failed to remove verification" +msgstr "" + +#: src/lib/media/save-image.ts:28 +msgid "Failed to save image: {0}" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:108 +msgid "Failed to save settings. Please try again." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:132 +msgctxt "toast" +msgid "Failed to save your interests." +msgstr "" + +#: src/components/dms/MessageItem.tsx:310 +msgid "Failed to send" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136 +msgid "Failed to send email, please try again." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/screens/Messages/components/ChatDisabled.tsx:87 +msgid "Failed to submit appeal, please try again." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +msgid "Failed to toggle thread mute, please try again" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83 +msgid "Failed to update email 2FA settings" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:195 +msgid "Failed to update email, please try again." +msgstr "" + +#: src/components/FeedCard.tsx:285 +msgid "Failed to update feeds" +msgstr "" + +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 +msgid "Failed to update settings" +msgstr "" + +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 +msgid "Failed to upload video" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168 +msgid "Failed to verify email, please try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:360 +msgid "Failed to verify handle. Please try again." +msgstr "" + +#: src/Navigation.tsx:290 +msgid "Feed" +msgstr "" + +#: src/components/FeedCard.tsx:139 +#: src/view/com/feeds/FeedSourceCard.tsx:150 +msgid "Feed by {0}" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:354 +msgid "Feed menu" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +msgid "Feed toggle" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:102 +#: src/view/shell/desktop/RightNav.tsx:103 +#: src/view/shell/Drawer.tsx:357 +msgid "Feedback" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 +msgctxt "toast" +msgid "Feedback sent!" +msgstr "" + +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 +#: src/screens/StarterPack/StarterPackScreen.tsx:190 +#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Profile.tsx:230 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 +msgid "Feeds" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:206 +msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." +msgstr "" + +#: src/components/FeedCard.tsx:282 +#: src/view/screens/SavedFeeds.tsx:86 +msgctxt "toast" +msgid "Feeds updated!" +msgstr "" + +#: src/screens/Search/modules/ExploreRecommendations.tsx:65 +msgid "Feeds we think you might like." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:58 +msgid "Fetch update" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:43 +msgid "File saved successfully!" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:66 +msgid "Filter from feeds" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:97 +msgid "Filter search by language" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:70 +msgid "Filter search by language (currently: {currentLanguageLabel})" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:314 +msgid "Finalizing" +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:48 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 +msgid "Find accounts to follow" +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:77 +#: src/components/ProgressGuide/FollowDialog.tsx:87 +#: src/components/ProgressGuide/FollowDialog.tsx:374 +msgid "Find people to follow" +msgstr "" + +#: src/screens/Search/Shell.tsx:476 +msgid "Find posts, users, and feeds on Bluesky" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:201 +msgid "Finish" +msgstr "" + +#: src/screens/Onboarding/index.tsx:35 +msgid "Fitness" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 +msgctxt "Name of app icon variant" +msgid "Flat Black" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +msgctxt "Name of app icon variant" +msgid "Flat Blue" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 +msgctxt "Name of app icon variant" +msgid "Flat White" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:294 +msgid "Flexible" +msgstr "" + +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 +#: src/screens/VideoFeed/index.tsx:850 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 +msgid "Follow" +msgstr "" + +#: src/view/com/profile/FollowButton.tsx:72 +msgctxt "action" +msgid "Follow" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 +msgid "Follow {0}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:827 +msgid "Follow {handle}" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:52 +#: src/state/shell/progress-guide.tsx:229 +msgid "Follow 10 accounts" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:69 +msgid "Follow 7 accounts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:284 +#: src/view/com/profile/ProfileMenu.tsx:295 +msgid "Follow account" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:438 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 +msgid "Follow all" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 +msgid "Follow Back" +msgstr "" + +#: src/view/com/profile/FollowButton.tsx:81 +msgctxt "action" +msgid "Follow Back" +msgstr "" + +#: src/components/KnownFollowers.tsx:238 +msgid "Followed by <0>{0}" +msgstr "" + +#: src/components/KnownFollowers.tsx:224 +msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" +msgstr "" + +#: src/components/KnownFollowers.tsx:211 +msgid "Followed by <0>{0} and <1>{1}" +msgstr "" + +#: src/components/KnownFollowers.tsx:193 +msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" +msgstr "" + +#: src/Navigation.tsx:244 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:104 +#: src/screens/Profile/KnownFollowers.tsx:121 +msgid "Followers you know" +msgstr "" + +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 +#: src/screens/VideoFeed/index.tsx:848 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 +msgid "Following" +msgstr "" + +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "" + +#: src/components/ProfileCard.tsx:474 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 +msgid "Following {0}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:826 +msgid "Following {handle}" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:76 +#: src/screens/Settings/ContentAndMediaSettings.tsx:79 +msgid "Following feed preferences" +msgstr "" + +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 +msgid "Following Feed Preferences" +msgstr "" + +#: src/screens/Profile/Header/Handle.tsx:32 +msgid "Follows you" +msgstr "" + +#: src/components/Pills.tsx:175 +msgid "Follows You" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "Font" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:163 +msgid "Font size" +msgstr "" + +#: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:102 +msgid "Food" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:125 +msgid "For security reasons, we'll need to send a confirmation code to your email address." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:209 +msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:145 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94 +msgid "For You" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:178 +msgid "Forever" +msgstr "" + +#: src/screens/Login/index.tsx:153 +#: src/screens/Login/index.tsx:168 +msgid "Forgot Password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:248 +msgid "Forgot password?" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:259 +msgid "Forgot?" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:54 +#: src/lib/moderation/useReportOptions.ts:54 +msgid "Frequently Posts Unwanted Content" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + +#: src/screens/Hashtag.tsx:120 +msgid "From @{sanitizedAuthor}" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:330 +msgctxt "from-feed" +msgid "From <0/>" +msgstr "" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 +msgid "Gallery" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 +msgid "Generate a starter pack" +msgstr "" + +#: src/view/shell/Drawer.tsx:361 +msgid "Get help" +msgstr "" + +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 +msgid "Get started" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:35 +msgid "Getting started" +msgstr "" + +#: src/components/MediaPreview.tsx:116 +msgid "GIF" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:232 +msgid "Give your profile a face" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39 +#: src/lib/moderation/useReportOptions.ts:39 +msgid "Glaring violations of law or terms of service" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 +#: src/components/Layout/Header/index.tsx:127 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/screens/Messages/Inbox.tsx:249 +#: src/screens/Profile/ProfileFeed/index.tsx:92 +#: src/screens/VideoFeed/components/Header.tsx:163 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileList.tsx:1038 +msgid "Go back" +msgstr "" + +#: src/components/Error.tsx:78 +#: src/screens/List/ListHiddenScreen.tsx:224 +#: src/screens/Profile/ErrorState.tsx:62 +#: src/screens/Profile/ErrorState.tsx:66 +#: src/screens/Profile/ProfileFeed/index.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:773 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileList.tsx:1043 +msgid "Go Back" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:192 +#: src/components/ReportDialog/SelectReportOptionView.tsx:78 +#: src/components/ReportDialog/SubmitView.tsx:110 +#: src/screens/Onboarding/Layout.tsx:99 +#: src/screens/Onboarding/Layout.tsx:188 +#: src/screens/Signup/BackNextButtons.tsx:35 +msgid "Go back to previous step" +msgstr "" + +#: src/view/screens/NotFound.tsx:57 +msgid "Go home" +msgstr "" + +#: src/view/screens/NotFound.tsx:56 +msgid "Go Home" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:318 +#: src/view/com/profile/ProfileMenu.tsx:325 +msgid "Go live" +msgstr "" + +#: src/components/live/GoLiveDialog.tsx:93 +#: src/components/live/GoLiveDialog.tsx:98 +#: src/components/live/GoLiveDialog.tsx:232 +#: src/components/live/GoLiveDialog.tsx:241 +msgid "Go Live" +msgstr "" + +#: src/components/live/GoLiveDialog.tsx:174 +msgid "Go live for" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:221 +msgid "Go to {firstAuthorName}'s profile" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:360 +msgid "Go to conversation with {0}" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:165 +#: src/view/com/modals/ChangePassword.tsx:179 +msgid "Go to next" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:227 +msgid "Go to profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:224 +msgid "Go to user's profile" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/lib/moderation/useGlobalLabelStrings.ts:50 +#: src/view/com/composer/labels/LabelsBtn.tsx:201 +#: src/view/com/composer/labels/LabelsBtn.tsx:204 +msgid "Graphic Media" +msgstr "" + +#: src/state/shell/progress-guide.tsx:218 +#: src/state/shell/progress-guide.tsx:228 +msgid "Half way there!" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 +msgid "Handle" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:591 +msgid "Handle already taken. Please try a different one." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:195 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:344 +msgid "Handle changed!" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:595 +msgid "Handle too long. Please try a shorter one." +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:85 +msgid "Haptics" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:34 +#: src/lib/moderation/useReportOptions.ts:34 +msgid "Harassment, trolling, or intolerance" +msgstr "" + +#: src/Navigation.tsx:538 +msgid "Hashtag" +msgstr "" + +#: src/components/RichTextTag.tsx:51 +msgid "Hashtag {tag}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 +msgid "Have a code? <0>Click here." +msgstr "" + +#: src/screens/Signup/index.tsx:210 +msgid "Having trouble?" +msgstr "" + +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 +#: src/view/shell/desktop/RightNav.tsx:120 +#: src/view/shell/desktop/RightNav.tsx:121 +#: src/view/shell/Drawer.tsx:370 +msgid "Help" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:235 +msgid "Help people know you're not a bot by uploading a picture or creating an avatar." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:187 +msgid "Here is your app password!" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + +#: src/components/VideoPostCard.tsx:178 +#: src/components/VideoPostCard.tsx:460 +msgid "Hidden" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:625 +msgid "Hidden by your moderation settings." +msgstr "" + +#: src/components/ListCard.tsx:132 +msgid "Hidden list" +msgstr "" + +#: src/components/interstitials/Trending.tsx:131 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 +#: src/lib/moderation/useLabelBehaviorDescription.ts:15 +#: src/lib/moderation/useLabelBehaviorDescription.ts:20 +#: src/lib/moderation/useLabelBehaviorDescription.ts:25 +#: src/lib/moderation/useLabelBehaviorDescription.ts:30 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110 +msgid "Hide" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:812 +msgctxt "action" +msgid "Hide" +msgstr "" + +#: src/components/dialogs/Embed.tsx:128 +msgid "Hide customization options" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 +msgid "Hide post for me" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 +msgid "Hide reply for everyone" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 +msgid "Hide reply for me" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:110 +msgid "Hide this card" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +msgid "Hide this post?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +msgid "Hide this reply?" +msgstr "" + +#: src/components/interstitials/Trending.tsx:113 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62 +msgid "Hide trending topics" +msgstr "" + +#: src/components/interstitials/Trending.tsx:129 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108 +msgid "Hide trending topics?" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:136 +msgid "Hide trending videos?" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:803 +msgid "Hide user list" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:85 +#: src/screens/Moderation/VerificationSettings.tsx:94 +msgid "Hide verification badges" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 +msgid "Hides the content" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 +msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 +msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 +msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 +msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 +msgid "Hmm, we're having trouble finding this feed. It may have been deleted." +msgstr "" + +#: src/screens/Moderation/index.tsx:59 +msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:31 +msgid "Hmmmm, we couldn't load that moderation service." +msgstr "" + +#: src/view/com/composer/state/video.ts:415 +msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" +msgstr "" + +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 +msgid "Home" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:417 +msgid "Host:" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:184 +msgid "Hosting provider" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194 +msgid "Hot" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 +msgid "Hot replies first" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:62 +#: src/components/dialogs/InAppBrowserConsent.tsx:66 +msgid "How should we open this link?" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 +msgid "I have a code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:280 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:286 +msgid "I have my own domain" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:57 +#: src/components/dms/ReportConversationPrompt.tsx:21 +msgid "I understand" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:186 +msgid "If alt text is long, toggles alt text expanded state" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:142 +msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." +msgstr "" + +#: src/view/screens/ProfileList.tsx:765 +msgid "If you delete this list, you won't be able to recover it." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:267 +msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 +msgid "If you need to update your email, <0>click here." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +msgid "If you remove this post, you won't be able to recover it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:208 +msgid "If you update your email address, email 2FA will be disabled." +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:160 +msgid "If you want to change your password, we will send you a code to verify that this is your account." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:208 +msgid "If you're a developer, you can host your own server." +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 +msgid "If you're trying to change your handle or email, do so before you deactivate." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:38 +#: src/lib/moderation/useReportOptions.ts:38 +msgid "Illegal and Urgent" +msgstr "" + +#: src/view/com/util/images/Gallery.tsx:71 +msgid "Image" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:64 +msgid "Image cache cleared" +msgstr "" + +#. Android-only toast message which includes amount of space freed using localized number formatting +#: src/screens/Settings/AboutSettings.tsx:50 +msgid "Image cache cleared, freed {0}" +msgstr "" + +#: src/lib/media/save-image.ts:26 +msgid "Image saved" +msgstr "" + +#: src/lib/media/save-image.ts:45 +msgid "Images cannot be saved unless permission is granted to access your photo library." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49 +#: src/lib/moderation/useReportOptions.ts:49 +msgid "Impersonation or false claims about identity or affiliation" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:68 +#: src/lib/moderation/useReportOptions.ts:68 +msgid "Impersonation, misinformation, or false claims" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 +#: src/lib/moderation/useReportOptions.ts:91 +msgid "Inappropriate messages or explicit links" +msgstr "" + +#. Title message shown in chat requests inbox when it's empty +#: src/screens/Messages/Inbox.tsx:229 +msgid "Inbox zero!" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:164 +msgid "Incorrect username or password" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:133 +msgid "Input code sent to your email for password reset" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:228 +msgid "Input confirmation code for account deletion" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:159 +msgid "Input new password" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:247 +msgid "Input password for account deletion" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:289 +msgid "Input the code which has been emailed to you" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 +msgid "Interaction limited" +msgstr "" + +#: src/screens/Moderation/index.tsx:222 +msgid "Interaction settings" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:156 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 +msgid "Invalid 2FA confirmation code." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:597 +msgid "Invalid handle. Please try a different one." +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:347 +msgid "Invalid or unsupported post record" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:73 +msgid "Invalid report subject" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 +msgid "Invalid Verification Code" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:94 +msgid "Invite a Friend" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:167 +msgid "Invite code" +msgstr "" + +#: src/screens/Signup/state.ts:339 +msgid "Invite code not accepted. Check that you input it correctly and try again." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:171 +msgid "Invite codes: {0} available" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:170 +msgid "Invite codes: 1 available" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:77 +msgid "Invite people to this starter pack!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:34 +msgid "Invite your friends to follow your favorite feeds and people" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:31 +msgid "Invites, but personal" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:293 +msgid "It's correct" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:474 +msgid "It's just you right now! Add more people to your starter pack by searching above." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1677 +msgid "Job ID: {0}" +msgstr "" + +#. Link to a page with job openings at Bluesky +#: src/view/com/auth/SplashScreen.web.tsx:180 +msgid "Jobs" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211 +#: src/screens/StarterPack/StarterPackScreen.tsx:466 +#: src/screens/StarterPack/StarterPackScreen.tsx:477 +msgid "Join Bluesky" +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:68 +#: src/view/shell/NavSignupCard.tsx:40 +msgid "Join the conversation" +msgstr "" + +#: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:104 +msgid "Journalism" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 +msgid "Labeled by {0}." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:232 +msgid "Labeled by the author." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:75 +#: src/view/screens/Profile.tsx:223 +msgid "Labels" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:73 +msgid "Labels added" +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:194 +msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:72 +msgid "Labels on your account" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:74 +msgid "Labels on your content" +msgstr "" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:107 +msgid "Language selection" +msgstr "" + +#: src/Navigation.tsx:217 +msgid "Language Settings" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:78 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 +msgid "Languages" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:175 +msgid "Larger" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + +#: src/screens/Hashtag.tsx:95 +#: src/screens/Search/SearchResults.tsx:57 +#: src/screens/Topic.tsx:77 +msgid "Latest" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:271 +msgid "learn more" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:165 +#: src/components/verification/VerifierDialog.tsx:132 +#: src/screens/Moderation/VerificationSettings.tsx:47 +#: src/screens/Profile/Header/EditProfileDialog.tsx:359 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:212 +msgid "Learn more" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:140 +msgid "Learn More" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:168 +msgid "Learn more about Bluesky" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:218 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:152 +msgid "Learn more about the moderation applied to this content" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:218 +msgid "Learn more about the moderation applied to this content." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 +#: src/components/moderation/ScreenHider.tsx:127 +msgid "Learn more about this warning" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:150 +#: src/components/verification/VerifierDialog.tsx:117 +msgid "Learn more about verification on Bluesky" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 +msgid "Learn more about what is public on Bluesky." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 +#: src/view/com/auth/server-input/index.tsx:220 +msgid "Learn more." +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:48 +msgid "Leave" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:74 +#: src/components/dms/MessagesListBlockedFooter.tsx:81 +msgid "Leave chat" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:203 +#: src/components/dms/ConvoMenu.tsx:206 +#: src/components/dms/ConvoMenu.tsx:266 +#: src/components/dms/ConvoMenu.tsx:269 +#: src/components/dms/LeaveConvoPrompt.tsx:42 +msgid "Leave conversation" +msgstr "" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 +msgid "Leave them all unselected to see any language." +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 +msgid "Leaving Bluesky" +msgstr "" + +#: src/screens/SignupQueued.tsx:155 +msgid "left to go." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:323 +msgid "Let me choose" +msgstr "" + +#: src/screens/Login/index.tsx:154 +#: src/screens/Login/index.tsx:169 +msgid "Let's get your password reset!" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:314 +msgid "Let's go!" +msgstr "" + +#: src/components/dialogs/Embed.tsx:162 +#: src/components/dialogs/Embed.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:104 +msgid "Light" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:14 +msgctxt "Name of app icon variant" +msgid "Light" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:518 +msgid "Like" +msgstr "" + +#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form +#: src/components/PostControls/index.tsx:253 +msgid "Like ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:63 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:214 +#: src/state/shell/progress-guide.tsx:219 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 +msgid "Like this feed" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272 +msgid "Like this labeler" +msgstr "" + +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 +msgid "Liked by" +msgstr "" + +#: src/screens/Post/PostLikedBy.tsx:38 +#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 +msgid "Liked By" +msgstr "" + +#: src/components/FeedCard.tsx:218 +#: src/view/com/feeds/FeedSourceCard.tsx:172 +msgid "Liked by {0, plural, one {# user} other {# users}}" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:96 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:493 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306 +msgid "Liked by {likeCount, plural, one {# user} other {# users}}" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/view/screens/Profile.tsx:229 +msgid "Likes" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 +msgid "Likes on this post" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 +msgid "Linear" +msgstr "" + +#: src/Navigation.tsx:250 +msgid "List" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:239 +msgid "List Avatar" +msgstr "" + +#: src/view/screens/ProfileList.tsx:438 +msgctxt "toast" +msgid "List blocked" +msgstr "" + +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 +msgid "List by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 +msgid "List by <0/>" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 +msgid "List by you" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + +#: src/view/screens/ProfileList.tsx:485 +msgctxt "toast" +msgid "List deleted" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:129 +msgid "List has been hidden" +msgstr "" + +#: src/view/screens/ProfileList.tsx:176 +msgid "List Hidden" +msgstr "" + +#: src/view/screens/ProfileList.tsx:402 +msgctxt "toast" +msgid "List muted" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:253 +msgid "List Name" +msgstr "" + +#: src/view/screens/ProfileList.tsx:456 +msgctxt "toast" +msgid "List unblocked" +msgstr "" + +#: src/view/screens/ProfileList.tsx:420 +msgctxt "toast" +msgid "List unmuted" +msgstr "" + +#: src/Navigation.tsx:171 +#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Profile.tsx:224 +#: src/view/screens/Profile.tsx:232 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 +msgid "Lists" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:39 +msgid "Lists blocking this user:" +msgstr "" + +#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters +#: src/components/live/LiveIndicator.tsx:46 +msgid "LIVE" +msgstr "" + +#: src/components/live/LiveStatusDialog.tsx:215 +msgid "Live feature is in beta testing" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:148 +#: src/components/live/EditLiveDialog.tsx:152 +#: src/components/live/GoLiveDialog.tsx:124 +#: src/components/live/GoLiveDialog.tsx:128 +msgid "Live link" +msgstr "" + +#: src/screens/Search/Explore.tsx:86 +msgid "Load more" +msgstr "" + +#: src/screens/Search/Explore.tsx:504 +#: src/screens/Search/Explore.tsx:581 +msgid "Load more suggested feeds" +msgstr "" + +#: src/view/screens/Notifications.tsx:278 +msgid "Load new notifications" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:224 +#: src/screens/Profile/Sections/Feed.tsx:98 +#: src/view/com/feeds/FeedPage.tsx:155 +#: src/view/screens/ProfileList.tsx:878 +msgid "Load new posts" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61 +msgid "Loading..." +msgstr "" + +#: src/Navigation.tsx:320 +msgid "Log" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 +msgid "Logged-out visibility" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:130 +msgid "Logo by @sawaratsuki.bsky.social" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:127 +#: src/view/shell/Drawer.tsx:672 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#: src/components/RichTextTag.tsx:53 +msgid "Long press to open tag menu for #{tag}" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:122 +msgid "Looks like XXXXX-XXXXX" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39 +msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:83 +msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:37 +msgid "Looks like you're missing a following feed. <0>Click here to add one." +msgstr "" + +#: src/components/dialogs/EmailDialog/index.tsx:41 +msgid "Make adjustments to email settings for your account" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +msgid "Make one for me" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:85 +msgid "Make sure this is where you intend to go!" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:60 +#: src/screens/Settings/ContentAndMediaSettings.tsx:63 +msgid "Manage saved feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:292 +msgid "Manage verification settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:108 +msgid "Manage your muted words and tags" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 +msgid "Mark all as read" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:215 +#: src/components/dms/ConvoMenu.tsx:218 +msgid "Mark as read" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 +msgid "Marked all as read" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 +msgid "Maybe later" +msgstr "" + +#: src/view/screens/Profile.tsx:227 +msgid "Media" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:210 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 +msgid "mentioned users" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 +msgid "Mentioned users" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 +msgid "Mentions" +msgstr "" + +#: src/components/Menu/index.tsx:111 +msgid "Menu" +msgstr "" + +#: src/components/dms/MessageProfileButton.tsx:96 +msgid "Message {0}" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:77 +msgctxt "toast" +msgid "Message deleted" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:197 +msgid "Message deleted" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:125 +msgid "Message from @{0}: {1}" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 +msgid "Message from server: {0}" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:152 +msgid "Message input field" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:79 +#: src/screens/Messages/components/MessageInput.web.tsx:60 +msgid "Message is too long" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:123 +msgid "Message options" +msgstr "" + +#: src/Navigation.tsx:760 +msgid "Messages" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 +msgctxt "Name of app icon variant" +msgid "Midnight" +msgstr "" + +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 +#: src/lib/moderation/useReportOptions.ts:47 +msgid "Misleading Account" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:67 +#: src/lib/moderation/useReportOptions.ts:67 +msgid "Misleading Post" +msgstr "" + +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 +msgid "Moderation" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:138 +msgid "Moderation details" +msgstr "" + +#: src/components/ListCard.tsx:151 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 +msgid "Moderation list by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 +msgid "Moderation list by <0/>" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 +msgid "Moderation list by you" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:175 +msgctxt "toast" +msgid "Moderation list created" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:161 +msgctxt "toast" +msgid "Moderation list updated" +msgstr "" + +#: src/screens/Moderation/index.tsx:252 +msgid "Moderation lists" +msgstr "" + +#: src/Navigation.tsx:181 +#: src/view/screens/ModerationModlists.tsx:65 +msgid "Moderation Lists" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:252 +msgid "moderation settings" +msgstr "" + +#: src/Navigation.tsx:310 +msgid "Moderation states" +msgstr "" + +#: src/screens/Moderation/index.tsx:206 +msgid "Moderation tools" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:52 +#: src/lib/moderation/useModerationCauseDescription.ts:47 +msgid "Moderator has chosen to set a general warning on the content." +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:727 +msgid "More" +msgstr "" + +#: src/view/shell/desktop/Feeds.tsx:102 +#: src/view/shell/desktop/Feeds.tsx:105 +msgid "More feeds" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:220 +#: src/view/com/profile/ProfileMenu.tsx:226 +#: src/view/screens/ProfileList.tsx:750 +msgid "More options" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:228 +msgid "Most-liked first" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 +msgid "Most-liked replies first" +msgstr "" + +#: src/screens/Onboarding/state.ts:105 +msgid "Movies" +msgstr "" + +#: src/screens/Onboarding/state.ts:106 +msgid "Music" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 +msgctxt "video" +msgid "Mute" +msgstr "" + +#: src/components/RichTextTag.tsx:140 +#: src/components/RichTextTag.tsx:153 +msgid "Mute {tag}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 +#: src/view/com/profile/ProfileMenu.tsx:363 +#: src/view/com/profile/ProfileMenu.tsx:370 +msgid "Mute account" +msgstr "" + +#: src/view/screens/ProfileList.tsx:657 +msgid "Mute accounts" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:232 +#: src/components/dms/ConvoMenu.tsx:238 +msgid "Mute conversation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:253 +msgid "Mute in:" +msgstr "" + +#: src/view/screens/ProfileList.tsx:779 +msgid "Mute list" +msgstr "" + +#: src/view/screens/ProfileList.tsx:774 +msgid "Mute these accounts?" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:185 +msgid "Mute this word for 24 hours" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:224 +msgid "Mute this word for 30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:209 +msgid "Mute this word for 7 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:258 +msgid "Mute this word in post text and tags" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:274 +msgid "Mute this word in tags only" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:170 +msgid "Mute this word until you unmute it" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 +msgid "Mute thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 +msgid "Mute words & tags" +msgstr "" + +#: src/screens/Moderation/index.tsx:267 +msgid "Muted accounts" +msgstr "" + +#: src/Navigation.tsx:186 +#: src/view/screens/ModerationMutedAccounts.tsx:118 +msgid "Muted Accounts" +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:204 +msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:92 +msgid "Muted by \"{0}\"" +msgstr "" + +#: src/screens/Moderation/index.tsx:237 +msgid "Muted words & tags" +msgstr "" + +#: src/view/screens/ProfileList.tsx:776 +msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:35 +#: src/components/dialogs/BirthDateSettings.tsx:38 +msgid "My Birthday" +msgstr "" + +#: src/view/screens/Feeds.tsx:704 +msgid "My Feeds" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:268 +msgid "Name" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:133 +msgid "Name is required" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:59 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:98 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:106 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:114 +#: src/lib/moderation/useReportOptions.ts:59 +#: src/lib/moderation/useReportOptions.ts:98 +#: src/lib/moderation/useReportOptions.ts:106 +#: src/lib/moderation/useReportOptions.ts:114 +msgid "Name or Description Violates Community Standards" +msgstr "" + +#: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:107 +msgid "Nature" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:130 +#: src/components/StarterPack/StarterPackCard.tsx:160 +msgid "Navigate to {0}" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:131 +msgid "Navigate to starter pack" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:344 +#: src/view/com/modals/ChangePassword.tsx:180 +msgid "Navigates to the next screen" +msgstr "" + +#: src/view/shell/Drawer.tsx:77 +msgid "Navigates to your profile" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:271 +#: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:128 +msgid "Need to report a copyright violation?" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:282 +msgid "Never lose access to your followers or data." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:567 +msgid "Nevermind, create a handle for me" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199 +msgid "New" +msgstr "" + +#: src/view/screens/Lists.tsx:77 +#: src/view/screens/ModerationModlists.tsx:77 +msgctxt "action" +msgid "New" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:67 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 +msgid "New chat" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:222 +msgid "New email address" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 +msgid "New Feature" +msgstr "" + +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:221 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:229 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:375 +msgid "New handle" +msgstr "" + +#: src/view/screens/Lists.tsx:69 +#: src/view/screens/ModerationModlists.tsx:69 +msgid "New list" +msgstr "" + +#: src/components/dms/NewMessagesPill.tsx:92 +msgid "New messages" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:230 +msgid "New Moderation List" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:141 +#: src/view/com/modals/ChangePassword.tsx:224 +msgid "New password" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:229 +msgid "New Password" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:241 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Notifications.tsx:167 +#: src/view/screens/Profile.tsx:510 +#: src/view/screens/ProfileList.tsx:250 +#: src/view/screens/ProfileList.tsx:288 +msgid "New post" +msgstr "" + +#: src/view/com/feeds/FeedPage.tsx:166 +msgctxt "action" +msgid "New post" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:527 +msgctxt "action" +msgid "New Post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/components/NewskieDialog.tsx:83 +msgid "New user info dialog" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:225 +msgid "New User List" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 +msgid "Newest replies first" +msgstr "" + +#: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:108 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241 +msgid "News" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:137 +#: src/screens/Login/ForgotPasswordForm.tsx:143 +#: src/screens/Login/LoginForm.tsx:343 +#: src/screens/Login/LoginForm.tsx:350 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 +#: src/screens/Signup/BackNextButtons.tsx:67 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 +#: src/view/com/modals/ChangePassword.tsx:265 +#: src/view/com/modals/ChangePassword.tsx:267 +msgid "Next" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:169 +msgid "Next image" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:108 +msgid "No app passwords yet" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:397 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:399 +msgid "No DNS Panel" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:140 +msgid "No expiry set" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:232 +msgid "No featured GIFs found. There may be an issue with Tenor." +msgstr "" + +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:119 +msgid "No feeds found. Try searching for something else." +msgstr "" + +#: src/components/live/LinkPreview.tsx:63 +msgid "No image" +msgstr "" + +#: src/components/LikedByList.tsx:84 +#: src/view/com/post-thread/PostLikedBy.tsx:84 +msgid "No likes yet" +msgstr "" + +#: src/components/ProfileCard.tsx:496 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 +msgid "No longer following {0}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:139 +msgid "No messages yet" +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:122 +msgid "No notifications yet!" +msgstr "" + +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 +msgid "No one" +msgstr "" + +#: src/components/WhoCanReply.tsx:269 +msgid "No one but the author can quote this post." +msgstr "" + +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:66 +msgid "No posts yet." +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:105 +msgid "No quotes yet" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:90 +msgid "No reposts yet" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:172 +msgid "No result" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:223 +#: src/components/ProgressGuide/FollowDialog.tsx:212 +msgid "No results" +msgstr "" + +#: src/screens/Search/Explore.tsx:786 +msgid "No results for \"{0}\"." +msgstr "" + +#: src/components/Lists.tsx:190 +msgid "No results found" +msgstr "" + +#: src/view/screens/Feeds.tsx:473 +msgid "No results found for \"{query}\"" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 +msgid "No results found for {query}" +msgstr "" + +#: src/screens/Search/Explore.tsx:790 +msgid "No results." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:230 +msgid "No search results found for \"{search}\"." +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 +msgid "No thanks" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 +msgid "Nobody" +msgstr "" + +#: src/components/LikedByList.tsx:86 +#: src/view/com/post-thread/PostLikedBy.tsx:86 +msgid "Nobody has liked this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:107 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:92 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:104 +msgid "Nobody was found. Try searching for someone else." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:42 +msgid "Non-sexual Nudity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 +msgid "Not followed by anyone you're following" +msgstr "" + +#: src/Navigation.tsx:166 +#: src/view/screens/Profile.tsx:125 +msgid "Not Found" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:480 +msgid "Note about sharing" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 +msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 +msgid "Nothing here" +msgstr "" + +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 +msgid "Notification settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:139 +msgid "Notification sounds" +msgstr "" + +#: src/screens/Messages/Settings.tsx:136 +msgid "Notification Sounds" +msgstr "" + +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 +msgid "Notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:135 +msgid "now" +msgstr "" + +#: src/components/dms/MessageItem.tsx:274 +msgid "Now" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:150 +#: src/view/com/composer/labels/LabelsBtn.tsx:153 +msgid "Nudity" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:78 +#: src/lib/moderation/useReportOptions.ts:78 +msgid "Nudity or adult content not labeled as such" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 +msgid "Off" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 +msgid "Oh no!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:124 +msgid "Oh no! Something went wrong." +msgstr "" + +#. Confirm button text. +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:48 +#: src/screens/Settings/AppIconSettings/index.tsx:48 +#: src/screens/Settings/AppIconSettings/index.tsx:229 +msgid "OK" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:37 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 +msgid "Okay" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 +msgid "Oldest replies first" +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:82 +msgid "on<0><1/><2><3/>" +msgstr "" + +#: src/screens/Settings/Settings.tsx:388 +msgid "Onboarding reset" +msgstr "" + +#: src/view/com/composer/Composer.tsx:347 +msgid "One or more GIFs is missing alt text." +msgstr "" + +#: src/view/com/composer/Composer.tsx:344 +msgid "One or more images is missing alt text." +msgstr "" + +#: src/view/com/composer/Composer.tsx:354 +msgid "One or more videos is missing alt text." +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:115 +msgid "Only .jpg and .png files are supported" +msgstr "" + +#: src/components/WhoCanReply.tsx:249 +msgid "Only {0} can reply." +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" + +#: src/lib/media/picker.shared.ts:32 +msgid "Only image files are supported" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 +msgid "Only WebVTT (.vtt) files are supported" +msgstr "" + +#: src/components/Lists.tsx:95 +msgid "Oops, something went wrong!" +msgstr "" + +#: src/components/Lists.tsx:174 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 +#: src/components/StarterPack/ProfileStarterPacks.tsx:341 +#: src/screens/Settings/AppPasswords.tsx:59 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:106 +#: src/view/screens/Profile.tsx:125 +msgid "Oops!" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:278 +msgid "Open" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:284 +msgid "Open avatar creator" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:368 +#: src/screens/Messages/components/ChatListItem.tsx:369 +msgid "Open conversation options" +msgstr "" + +#: src/components/Layout/Header/index.tsx:159 +msgid "Open drawer menu" +msgstr "" + +#: src/screens/Messages/components/MessageInput.web.tsx:181 +#: src/view/com/composer/Composer.tsx:1325 +msgid "Open emoji picker" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:191 +msgid "Open feed info screen" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:291 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:296 +msgid "Open feed options menu" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:27 +msgid "Open full emoji list" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/components/dms/ActionsWrapper.tsx:35 +msgid "Open message options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:453 +msgid "Open moderation debug page" +msgstr "" + +#: src/screens/Moderation/index.tsx:233 +msgid "Open muted words and tags settings" +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:119 +msgid "Open pack" +msgstr "" + +#: src/components/PostControls/PostMenu/index.tsx:62 +msgid "Open post options menu" +msgstr "" + +#: src/components/live/LiveStatusDialog.tsx:189 +#: src/components/live/LiveStatusDialog.tsx:203 +msgid "Open profile" +msgstr "" + +#: src/components/PostControls/ShareMenu/index.tsx:87 +msgid "Open share menu" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:566 +msgid "Open starter pack menu" +msgstr "" + +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 +msgid "Open storybook page" +msgstr "" + +#: src/screens/Settings/Settings.tsx:439 +msgid "Open system log" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:167 +msgid "Opens {numItems} options" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:62 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:61 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "" + +#: src/view/screens/Log.tsx:59 +msgid "Opens additional details for a debug entry" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:44 +msgid "Opens alt text dialog" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +msgid "Opens camera on device" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:43 +msgid "Opens captions and alt text dialog" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:129 +msgid "Opens change handle dialog" +msgstr "" + +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 +msgid "Opens composer" +msgstr "" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 +msgid "Opens device photo gallery" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1326 +msgid "Opens emoji picker" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:49 +#: src/view/com/auth/SplashScreen.web.tsx:111 +msgid "Opens flow to create a new Bluesky account" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:63 +#: src/view/com/auth/SplashScreen.web.tsx:125 +msgid "Opens flow to sign in to your existing Bluesky account" +msgstr "" + +#: src/view/com/composer/photos/SelectGifBtn.tsx:36 +msgid "Opens GIF select dialog" +msgstr "" + +#: src/screens/Settings/Settings.tsx:237 +msgid "Opens helpdesk in browser" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:173 +msgid "Opens list of invite codes" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:576 +msgid "Opens live status dialog" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:249 +msgid "Opens password reset form" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 +msgid "Opens this profile" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +msgid "Opens video picker" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:221 +#: src/components/ReportDialog/SubmitView.tsx:168 +msgid "Optionally provide additional information below:" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:299 +msgid "Options:" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 +msgid "Or combine these options:" +msgstr "" + +#: src/screens/Deactivated.tsx:200 +msgid "Or, continue with another account." +msgstr "" + +#: src/screens/Deactivated.tsx:187 +msgid "Or, sign in to one of your other accounts." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:52 +msgid "OTA status: ..." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:48 +msgid "OTA status: Available!" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:50 +msgid "OTA status: Error fetching update" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:54 +msgid "OTA status: None available" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27 +#: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:185 +msgid "Other" +msgstr "" + +#: src/components/AccountList.tsx:88 +msgid "Other account" +msgstr "" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:93 +msgid "Other..." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:348 +msgid "Our moderation team has received your report." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:28 +msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." +msgstr "" + +#: src/components/Lists.tsx:191 +#: src/view/screens/NotFound.tsx:47 +msgid "Page not found" +msgstr "" + +#: src/view/screens/NotFound.tsx:44 +msgid "Page Not Found" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 +#: src/view/com/modals/DeleteAccount.tsx:239 +#: src/view/com/modals/DeleteAccount.tsx:246 +msgid "Password" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:154 +msgid "Password Changed" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:99 +msgid "Password must be at least 8 characters long." +msgstr "" + +#: src/screens/Login/index.tsx:181 +msgid "Password updated" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:23 +msgid "Password updated!" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 +msgid "Pause" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 +msgid "Pause video" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:67 +#: src/screens/StarterPack/StarterPackScreen.tsx:189 +#: src/view/screens/ProfileList.tsx:170 +msgid "People" +msgstr "" + +#: src/Navigation.tsx:237 +msgid "People followed by @{0}" +msgstr "" + +#: src/Navigation.tsx:230 +msgid "People following @{0}" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "" + +#: src/lib/media/save-image.ts:51 +msgid "Permission to access your photo library was denied. Please enable it in your system settings." +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +msgid "Person toggle" +msgstr "" + +#: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:109 +msgid "Pets" +msgstr "" + +#: src/screens/Onboarding/state.ts:110 +msgid "Photography" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:169 +msgid "Pictures meant for adults." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:530 +msgid "Pin feed" +msgstr "" + +#: src/components/FeedCard.tsx:329 +msgid "Pin Feed" +msgstr "" + +#: src/view/screens/ProfileList.tsx:714 +msgid "Pin to home" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +msgid "Pin to Home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:411 +msgid "Pinned" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:160 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:174 +msgid "Pinned {0} to Home" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:131 +msgid "Pinned Feeds" +msgstr "" + +#: src/view/screens/ProfileList.tsx:361 +msgid "Pinned to your feeds" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 +msgid "Play" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 +msgid "Play {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 +msgid "Play video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 +msgid "Play Video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 +msgid "Plays or pauses the GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 +msgid "Plays or pauses the video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 +msgid "Plays the GIF" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 +msgid "Plays the video" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:115 +msgid "Please add any content warning labels that are applicable for the media you are posting." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + +#: src/screens/Signup/state.ts:286 +msgid "Please choose your handle." +msgstr "" + +#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/StepInfo/index.tsx:123 +msgid "Please choose your password." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:290 +msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." +msgstr "" + +#: src/screens/Signup/state.ts:301 +msgid "Please complete the verification captcha." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 +msgid "Please double-check that you have entered your email address correctly." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:58 +msgid "Please enter a password." +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:94 +msgid "Please enter a password. It must be at least 8 characters long." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114 +msgid "Please enter a unique name for this app password or use our randomly generated one." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:135 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145 +msgid "Please enter a valid code." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:148 +msgid "Please enter a valid email address." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:86 +msgid "Please enter a valid word, tag, or phrase to mute" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 +msgid "Please enter the code we sent to <0>{0} below." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:247 +msgid "Please enter the security code we sent to your previous email address." +msgstr "" + +#: src/screens/Signup/state.ts:262 +#: src/screens/Signup/StepInfo/index.tsx:94 +msgid "Please enter your email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:87 +msgid "Please enter your invite code." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:217 +msgid "Please enter your new email address." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:99 +msgid "Please enter your password" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:235 +msgid "Please enter your password as well:" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:94 +msgid "Please enter your username" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +msgid "Please explain why you think this label was incorrectly applied by {0}" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:110 +msgid "Please explain why you think your chats were incorrectly disabled" +msgstr "" + +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:31 +msgid "Please select a moderation service" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:28 +msgid "Please select a reason for this report" +msgstr "" + +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 +msgid "Please sign in as @{0}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62 +msgid "Please verify your email" +msgstr "" + +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" + +#: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:111 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235 +msgid "Politics" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:156 +msgid "Porn" +msgstr "" + +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 +msgctxt "description" +msgid "Post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1034 +msgctxt "action" +msgid "Post All" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 +msgid "Post by {0}" +msgstr "" + +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 +msgid "Post by @{0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 +msgctxt "toast" +msgid "Post deleted" +msgstr "" + +#: src/lib/api/index.ts:186 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 +#: src/screens/VideoFeed/index.tsx:529 +msgid "Post has been deleted" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:271 +msgid "Post hidden" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:107 +#: src/lib/moderation/useModerationCauseDescription.ts:106 +msgid "Post Hidden by Muted Word" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:110 +#: src/lib/moderation/useModerationCauseDescription.ts:115 +msgid "Post Hidden by You" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 +msgid "Post interaction settings" +msgstr "" + +#: src/Navigation.tsx:197 +#: src/screens/ModerationInteractionSettings/index.tsx:34 +msgid "Post Interaction Settings" +msgstr "" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:89 +msgid "Post language" +msgstr "" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:77 +msgid "Post Languages" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 +msgid "Post not found" +msgstr "" + +#: src/state/queries/pinned-post.ts:59 +msgctxt "toast" +msgid "Post pinned" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgctxt "toast" +msgid "Post unpinned" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 +#: src/screens/StarterPack/StarterPackScreen.tsx:191 +#: src/view/screens/Profile.tsx:225 +#: src/view/screens/ProfileList.tsx:170 +msgid "Posts" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:115 +msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 +msgid "Posts hidden" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:19 +msgid "Press to attempt reconnection" +msgstr "" + +#: src/components/Error.tsx:60 +#: src/components/Lists.tsx:100 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:47 +msgid "Press to retry" +msgstr "" + +#: src/components/KnownFollowers.tsx:129 +msgid "Press to view followers of this account that you also follow" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:150 +msgid "Previous image" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:120 +msgid "Primary Language" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 +msgid "Prioritize your Follows" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:110 +#: src/view/shell/desktop/RightNav.tsx:111 +msgid "Privacy" +msgstr "" + +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 +msgid "Privacy and security" +msgstr "" + +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 +msgid "Privacy and Security" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 +#: src/screens/Settings/AboutSettings.tsx:92 +#: src/screens/Settings/AboutSettings.tsx:95 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 +msgid "Privacy Policy" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1740 +msgid "Processing video..." +msgstr "" + +#: src/lib/api/index.ts:60 +#: src/screens/Login/ForgotPasswordForm.tsx:149 +msgid "Processing..." +msgstr "" + +#: src/view/screens/DebugMod.tsx:927 +#: src/view/screens/Profile.tsx:364 +msgid "profile" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 +#: src/view/shell/Drawer.tsx:76 +#: src/view/shell/Drawer.tsx:559 +msgid "Profile" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:196 +msgctxt "toast" +msgid "Profile updated" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:264 +msgid "Public" +msgstr "" + +#: src/view/com/lists/MyLists.tsx:77 +msgid "Public, sharable lists of users to mute or block in bulk." +msgstr "" + +#: src/view/com/lists/MyLists.tsx:72 +msgid "Public, sharable lists which can be used to drive feeds." +msgstr "" + +#. Accessibility label for button to publish a single post +#: src/view/com/composer/Composer.tsx:1016 +msgid "Publish post" +msgstr "" + +#. Accessibility label for button to publish multiple posts in a thread +#: src/view/com/composer/Composer.tsx:1009 +msgid "Publish posts" +msgstr "" + +#. Accessibility label for button to publish multiple replies in a thread +#: src/view/com/composer/Composer.tsx:994 +msgid "Publish replies" +msgstr "" + +#. Accessibility label for button to publish a single reply +#: src/view/com/composer/Composer.tsx:1001 +msgid "Publish reply" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:134 +msgid "QR code copied to your clipboard!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:112 +msgid "QR code has been downloaded!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:113 +msgid "QR code saved to your camera roll!" +msgstr "" + +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 +msgid "Quote post" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 +msgid "Quote post was re-attached" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 +msgid "Quote post was successfully detached" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 +msgid "Quote posts disabled" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 +msgid "Quote settings" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:154 +#: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +msgid "Quotes" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 +msgid "Quotes of this post" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 +msgid "Random (aka \"Poster's Roulette\")" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:600 +msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 +msgid "Re-attach quote" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.tsx:85 +msgid "React with {emoji}" +msgstr "" + +#: src/screens/Deactivated.tsx:141 +msgid "Reactivate your account" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 +msgid "Read blog post" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:966 +msgid "Read less" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:966 +msgid "Read more" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:173 +msgid "Read the Bluesky blog" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 +msgid "Read the Bluesky Privacy Policy" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 +msgid "Read the Bluesky Terms of Service" +msgstr "" + +#: src/screens/Takendown.tsx:162 +#: src/screens/Takendown.tsx:170 +msgid "Reason for appeal" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:212 +msgid "Reason:" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:49 +msgid "Recent Searches" +msgstr "" + +#: src/screens/Search/modules/ExploreRecommendations.tsx:54 +msgid "Recommended" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:20 +msgid "Reconnect" +msgstr "" + +#. Reject a chat request, this opens a menu with options +#: src/screens/Messages/components/RequestButtons.tsx:124 +msgid "Reject" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:112 +msgid "Reject chat request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 +msgid "Reload conversations" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 +#: src/components/dialogs/MutedWords.tsx:438 +#: src/components/FeedCard.tsx:343 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 +#: src/screens/Settings/Settings.tsx:662 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 +msgid "Remove" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 +msgid "Remove {displayName} from starter pack" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:94 +msgid "Remove {historyItem}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 +msgid "Remove account" +msgstr "" + +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +msgid "Remove attachment" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 +msgid "Remove Avatar" +msgstr "" + +#: src/view/com/util/UserBanner.tsx:186 +#: src/view/com/util/UserBanner.tsx:189 +msgid "Remove Banner" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:209 +msgid "Remove embed" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:116 +#: src/view/com/posts/FeedShutdownMsg.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 +msgid "Remove feed" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 +msgid "Remove feed?" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/view/screens/ProfileList.tsx:528 +#: src/view/screens/SavedFeeds.tsx:350 +msgid "Remove from my feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:654 +msgid "Remove from quick access?" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:170 +#: src/screens/List/ListHiddenScreen.tsx:174 +msgid "Remove from saved feeds" +msgstr "" + +#: src/components/FeedCard.tsx:338 +msgid "Remove from your feeds?" +msgstr "" + +#: src/view/com/composer/photos/Gallery.tsx:204 +msgid "Remove image" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:240 +#: src/components/live/EditLiveDialog.tsx:247 +msgid "Remove live status" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:523 +msgid "Remove mute word from your list" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:167 +msgid "Remove profile" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 +msgid "Remove repost" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:261 +msgid "Remove subtitle file" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 +msgid "Remove this feed from your saved feeds" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157 +msgid "Remove user from list" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:46 +#: src/components/verification/VerificationsDialog.tsx:247 +#: src/view/com/profile/ProfileMenu.tsx:336 +#: src/view/com/profile/ProfileMenu.tsx:339 +msgid "Remove verification" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:44 +msgid "Remove your verification for this account?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:208 +msgid "Removed by author" +msgstr "" + +#: src/components/Post/Embed/index.tsx:206 +msgid "Removed by you" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 +msgid "Removed from list" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:94 +msgid "Removed from saved feeds" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:122 +#: src/view/com/posts/FeedShutdownMsg.tsx:44 +#: src/view/screens/ProfileList.tsx:392 +msgid "Removed from your feeds" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:32 +msgid "Removed verification" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:129 +#: src/view/com/posts/FeedShutdownMsg.tsx:133 +msgid "Replace with Discover" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/view/screens/Profile.tsx:226 +msgid "Replies" +msgstr "" + +#: src/components/WhoCanReply.tsx:79 +msgid "Replies disabled" +msgstr "" + +#: src/components/WhoCanReply.tsx:247 +msgid "Replies to this post are disabled." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1032 +msgctxt "action" +msgid "Reply" +msgstr "" + +#. Accessibility label for the reply button, verb form followed by number of replies and noun form +#: src/components/PostControls/index.tsx:207 +msgid "Reply ({0, plural, one {# reply} other {# replies}})" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:116 +#: src/lib/moderation/useModerationCauseDescription.ts:125 +msgid "Reply Hidden by Thread Author" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:115 +#: src/lib/moderation/useModerationCauseDescription.ts:124 +msgid "Reply Hidden by You" +msgstr "" + +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +msgid "Reply settings" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 +msgid "Reply settings are chosen by the author of the thread" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 +msgid "Reply sorting" +msgstr "" + +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 +msgctxt "description" +msgid "Reply to <0><1/>" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:593 +msgctxt "description" +msgid "Reply to a blocked post" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:595 +msgctxt "description" +msgid "Reply to a post" +msgstr "" + +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 +msgctxt "description" +msgid "Reply to you" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 +msgctxt "toast" +msgid "Reply visibility updated" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 +msgid "Reply was successfully hidden" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:166 +#: src/components/dms/MessagesListBlockedFooter.tsx:85 +#: src/components/dms/MessagesListBlockedFooter.tsx:92 +msgid "Report" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:403 +#: src/view/com/profile/ProfileMenu.tsx:406 +msgid "Report account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:255 +#: src/components/dms/ConvoMenu.tsx:258 +#: src/components/dms/ReportConversationPrompt.tsx:17 +#: src/screens/Messages/components/RequestButtons.tsx:155 +#: src/screens/Messages/components/RequestButtons.tsx:158 +msgid "Report conversation" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:71 +#: src/components/moderation/ReportDialog/index.tsx:198 +#: src/components/ReportDialog/index.tsx:44 +msgid "Report dialog" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 +msgid "Report feed" +msgstr "" + +#: src/view/screens/ProfileList.tsx:570 +msgid "Report list" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:164 +msgid "Report message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 +msgid "Report post" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:630 +#: src/screens/StarterPack/StarterPackScreen.tsx:633 +msgid "Report starter pack" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:345 +msgid "Report submitted" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:41 +msgid "Report this content" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:31 +#: src/components/ReportDialog/SelectReportOptionView.tsx:54 +msgid "Report this feed" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:25 +#: src/components/ReportDialog/SelectReportOptionView.tsx:51 +msgid "Report this list" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:59 +#: src/components/dms/ReportDialog.tsx:180 +#: src/components/moderation/ReportDialog/copy.ts:43 +#: src/components/ReportDialog/SelectReportOptionView.tsx:60 +msgid "Report this message" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:19 +#: src/components/ReportDialog/SelectReportOptionView.tsx:48 +msgid "Report this post" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:37 +#: src/components/ReportDialog/SelectReportOptionView.tsx:57 +msgid "Report this starter pack" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:13 +#: src/components/ReportDialog/SelectReportOptionView.tsx:45 +msgid "Report this user" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 +msgctxt "action" +msgid "Repost" +msgstr "" + +#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form +#: src/components/PostControls/RepostButton.tsx:76 +msgid "Repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:144 +#: src/components/PostControls/RepostButton.web.tsx:43 +#: src/components/PostControls/RepostButton.web.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:561 +msgid "Repost or quote post" +msgstr "" + +#: src/screens/Post/PostRepostedBy.tsx:38 +msgid "Reposted By" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:351 +msgid "Reposted by {0}" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:370 +msgid "Reposted by <0><1/>" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 +msgid "Reposted by you" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 +msgid "Reposts of this post" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:253 +#: src/view/com/modals/ChangePassword.tsx:255 +msgid "Request Code" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 +msgid "Require alt text before posting" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96 +msgid "Require an email code to sign in to your account." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:181 +msgid "Required for this provider" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40 +msgid "Resend" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 +msgid "Resend email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:130 +msgid "Resend Email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 +msgid "Resend Verification Email" +msgstr "" + +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/view/com/modals/ChangePassword.tsx:197 +msgid "Reset code" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:204 +msgid "Reset Code" +msgstr "" + +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 +msgid "Reset onboarding state" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:80 +msgid "Reset password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:324 +msgid "Retries signing in" +msgstr "" + +#: src/view/com/util/error/ErrorMessage.tsx:62 +#: src/view/com/util/error/ErrorScreen.tsx:99 +msgid "Retries the last action, which errored out" +msgstr "" + +#: src/components/dms/MessageItem.tsx:321 +#: src/components/Error.tsx:65 +#: src/components/Lists.tsx:111 +#: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 +#: src/components/StarterPack/ProfileStarterPacks.tsx:346 +#: src/screens/Login/LoginForm.tsx:323 +#: src/screens/Login/LoginForm.tsx:330 +#: src/screens/Messages/ChatList.tsx:280 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Messages/Inbox.tsx:218 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 +#: src/screens/Signup/BackNextButtons.tsx:53 +#: src/view/com/util/error/ErrorMessage.tsx:60 +#: src/view/com/util/error/ErrorScreen.tsx:97 +msgid "Retry" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:226 +msgid "Retry loading report options" +msgstr "" + +#: src/components/Error.tsx:73 +#: src/screens/List/ListHiddenScreen.tsx:219 +#: src/screens/StarterPack/StarterPackScreen.tsx:767 +msgid "Return to previous page" +msgstr "" + +#: src/view/screens/NotFound.tsx:61 +msgid "Returns to home page" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:93 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:559 +#: src/screens/VideoFeed/index.tsx:1142 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileList.tsx:1039 +msgid "Returns to previous page" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:304 +msgid "Returns to the previous step" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:121 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 +#: src/components/live/EditLiveDialog.tsx:216 +#: src/components/live/EditLiveDialog.tsx:223 +#: src/components/StarterPack/QrCodeDialog.tsx:192 +#: src/screens/Profile/Header/EditProfileDialog.tsx:243 +#: src/screens/Profile/Header/EditProfileDialog.tsx:257 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:262 +#: src/view/com/composer/GifAltText.tsx:193 +#: src/view/com/composer/GifAltText.tsx:202 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:75 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 +#: src/view/com/modals/CreateOrEditList.tsx:315 +#: src/view/screens/SavedFeeds.tsx:117 +msgid "Save" +msgstr "" + +#: src/view/com/lightbox/ImageViewing/index.tsx:610 +#: src/view/com/modals/CreateOrEditList.tsx:323 +msgctxt "action" +msgid "Save" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:115 +msgid "Save birthday" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 +msgid "Save changes" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:131 +#: src/components/StarterPack/ShareDialog.tsx:138 +msgid "Save image" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:104 +msgid "Save image crop" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:248 +msgid "Save new handle" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:186 +msgid "Save QR code" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +msgid "Save to my feeds" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:172 +msgid "Saved Feeds" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:132 +#: src/view/screens/ProfileList.tsx:372 +msgid "Saved to your feeds" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:105 +msgid "Saves image crop settings" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:33 +#: src/components/NewskieDialog.tsx:105 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 +msgid "Say hello!" +msgstr "" + +#: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:112 +msgid "Science" +msgstr "" + +#: src/view/screens/ProfileList.tsx:996 +msgid "Scroll to top" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:514 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/screens/Search/Shell.tsx:307 +#: src/screens/Search/Shell.tsx:464 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 +msgid "Search" +msgstr "" + +#: src/Navigation.tsx:256 +#: src/screens/Profile/ProfileSearch.tsx:37 +msgid "Search @{0}'s posts" +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:683 +msgid "Search by name or interest" +msgstr "" + +#: src/view/screens/Feeds.tsx:444 +msgid "Search feeds" +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:524 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135 +msgid "Search for \"{interestsDisplayName}\"{activeText}" +msgstr "" + +#: src/view/shell/desktop/Search.tsx:131 +msgid "Search for \"{query}\"" +msgstr "" + +#: src/screens/Search/components/AutocompleteResults.tsx:45 +msgid "Search for \"{searchText}\"" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:513 +msgid "Search for feeds that you want to suggest to others." +msgstr "" + +#: src/screens/Search/Explore.tsx:360 +msgid "Search for more accounts" +msgstr "" + +#: src/screens/Search/Explore.tsx:437 +msgid "Search for more feeds" +msgstr "" + +#: src/screens/Search/Shell.tsx:334 +msgid "Search for posts, users, or feeds" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:178 +msgid "Search GIFs" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:36 +msgid "Search my posts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:263 +#: src/view/com/profile/ProfileMenu.tsx:266 +msgid "Search posts" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/ProgressGuide/FollowDialog.tsx:702 +msgid "Search profiles" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:179 +msgid "Search Tenor" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:38 +msgid "Search..." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:535 +#: src/components/ProgressGuide/FollowDialog.tsx:703 +msgid "Searches for profiles" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:243 +msgid "Security step required" +msgstr "" + +#: src/components/RichTextTag.tsx:111 +msgid "See {tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:124 +msgid "See {tag} posts by user" +msgstr "" + +#: src/components/RichTextTag.tsx:118 +msgid "See #{tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:132 +msgid "See #{tag} posts by user" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:178 +msgid "See jobs at Bluesky" +msgstr "" + +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 +msgid "See this guide" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 +msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" +msgstr "" + +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 +msgid "Select a color" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:77 +msgid "Select account" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:60 +msgid "Select an app language" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +msgid "Select an avatar" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 +msgid "Select an emoji" +msgstr "" + +#: src/components/Select/index.tsx:204 +msgid "Select an option" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:98 +msgid "Select app language" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:164 +msgid "Select content languages" +msgstr "" + +#: src/components/live/GoLiveDialog.tsx:179 +msgid "Select duration" +msgstr "" + +#: src/screens/Login/index.tsx:144 +msgid "Select from an existing account" +msgstr "" + +#: src/view/com/composer/photos/SelectGifBtn.tsx:35 +msgid "Select GIF" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:307 +msgid "Select GIF \"{0}\"" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:142 +msgid "Select how long to mute this word for." +msgstr "" + +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:248 +msgid "Select language..." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:178 +msgid "Select languages" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:310 +msgid "Select moderation service" +msgstr "" + +#: src/components/ReportDialog/SelectLabelerView.tsx:28 +msgid "Select moderator" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:131 +msgid "Select primary language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 +msgid "Select subtitle file (.vtt)" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83 +msgid "Select the {emojiName} emoji as your avatar" +msgstr "" + +#: src/components/ReportDialog/SubmitView.tsx:141 +msgid "Select the moderation service(s) to report to" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:74 +msgid "Select video" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:242 +msgid "Select what content this mute word should apply to." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:91 +msgid "Select which language to use for the app's user interface." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:157 +msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:274 +msgid "Select your date of birth" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Settings/InterestsSettings.tsx:161 +msgid "Select your interests from the options below" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:124 +msgid "Select your preferred language for translations in your feed." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 +msgid "Selects option {0} of {numItems}" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:38 +msgid "Send a neat website!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 +#: src/view/com/modals/DeleteAccount.tsx:145 +msgid "Send email" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:158 +msgctxt "action" +msgid "Send Email" +msgstr "" + +#: src/view/shell/Drawer.tsx:350 +msgid "Send feedback" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:192 +#: src/screens/Messages/components/MessageInput.web.tsx:235 +msgid "Send message" +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 +msgid "Send post to {name}" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 +msgid "Send post to..." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:271 +#: src/components/dms/ReportDialog.tsx:274 +#: src/components/ReportDialog/SubmitView.tsx:221 +#: src/components/ReportDialog/SubmitView.tsx:225 +msgid "Send report" +msgstr "" + +#: src/components/ReportDialog/SelectLabelerView.tsx:42 +msgid "Send report to {0}" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:649 +msgid "Send report to {title}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 +msgid "Send verification email" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 +msgid "Send via direct message" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:147 +msgid "Sends email with confirmation code for account deletion" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:167 +msgid "Server address" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:178 +msgid "Set app icon to {0}" +msgstr "" + +#: src/screens/Moderation/index.tsx:333 +msgid "Set birthdate" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:106 +msgid "Set new password" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:47 +msgid "Set up your account" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:107 +msgid "Sets email for password reset" +msgstr "" + +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 +msgid "Settings" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:102 +msgctxt "toast" +msgid "Settings saved" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:173 +msgid "Sexual activity or erotic nudity." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:38 +msgid "Sexually Suggestive" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:182 +#: src/screens/Hashtag.tsx:126 +#: src/screens/StarterPack/StarterPackScreen.tsx:433 +#: src/screens/Topic.tsx:102 +#: src/view/screens/ProfileList.tsx:513 +msgid "Share" +msgstr "" + +#: src/view/com/lightbox/ImageViewing/index.tsx:619 +msgctxt "action" +msgid "Share" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:37 +msgid "Share a cool story!" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:36 +msgid "Share a fun fact!" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:485 +msgid "Share anyway" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 +msgid "Share author DID" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 +#: src/components/StarterPack/ShareDialog.tsx:104 +#: src/components/StarterPack/ShareDialog.tsx:111 +msgid "Share link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:68 +msgid "Share link dialog" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 +msgid "Share post at:// URI" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:115 +#: src/components/StarterPack/ShareDialog.tsx:126 +msgid "Share QR code" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:474 +msgid "Share this feed" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:426 +msgid "Share this starter pack" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:80 +msgid "Share this starter pack and help people join your community on Bluesky." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/screens/StarterPack/StarterPackScreen.tsx:611 +#: src/screens/StarterPack/StarterPackScreen.tsx:619 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:256 +msgid "Share via..." +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:34 +msgid "Share your favorite feed!" +msgstr "" + +#: src/Navigation.tsx:315 +msgid "Shared Preferences Tester" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 +msgid "Show" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 +msgid "Show alt text" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/screens/List/ListHiddenScreen.tsx:190 +#: src/screens/VideoFeed/index.tsx:628 +#: src/screens/VideoFeed/index.tsx:634 +msgid "Show anyway" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:27 +#: src/lib/moderation/useLabelBehaviorDescription.ts:63 +msgid "Show badge" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:61 +msgid "Show badge and filter from feeds" +msgstr "" + +#: src/components/dialogs/Embed.tsx:129 +msgid "Show customization options" +msgstr "" + +#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 +msgid "Show hidden replies" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 +msgid "Show less like this" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:186 +msgid "Show list anyway" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:51 +msgid "Show More" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 +msgid "Show more like this" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "" + +#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 +msgid "Show muted replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 +msgid "Show quote posts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 +msgid "Show replies" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 +msgid "Show replies as" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:285 +msgid "Show replies as threaded" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 +msgid "Show replies by people you follow before all other replies" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 +msgid "Show reply for everyone" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 +msgid "Show reposts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 +msgid "Show samples of your saved feeds in your Following feed" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:58 +msgid "Show warning" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:56 +msgid "Show warning and filter from feeds" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 +msgid "Shows information about when this post was created" +msgstr "" + +#: src/screens/Settings/Settings.tsx:125 +msgid "Shows other accounts you can switch to" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 +msgid "Shows the content" +msgstr "" + +#: src/components/dialogs/Signin.tsx:97 +#: src/components/dialogs/Signin.tsx:99 +#: src/screens/Login/index.tsx:122 +#: src/screens/Login/index.tsx:143 +#: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 +#: src/view/com/auth/SplashScreen.tsx:61 +#: src/view/com/auth/SplashScreen.tsx:69 +#: src/view/com/auth/SplashScreen.web.tsx:123 +#: src/view/com/auth/SplashScreen.web.tsx:131 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 +msgid "Sign in" +msgstr "" + +#: src/components/AccountList.tsx:129 +msgid "Sign in as {0}" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:80 +msgid "Sign in as..." +msgstr "" + +#: src/screens/Deactivated.tsx:203 +#: src/screens/Deactivated.tsx:209 +msgid "Sign in or create an account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:75 +msgid "Sign in or create your account to join the conversation!" +msgstr "" + +#: src/components/AccountList.tsx:68 +msgid "Sign in to account that is not listed" +msgstr "" + +#: src/components/dialogs/Signin.tsx:46 +msgid "Sign in to Bluesky or create a new account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 +#: src/screens/SignupQueued.tsx:93 +#: src/screens/SignupQueued.tsx:96 +#: src/screens/Takendown.tsx:85 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 +msgid "Sign out" +msgstr "" + +#: src/screens/Takendown.tsx:88 +msgid "Sign Out" +msgstr "" + +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 +msgid "Sign out?" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:91 +#: src/lib/moderation/useGlobalLabelStrings.ts:28 +msgid "Sign-in Required" +msgstr "" + +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 +msgid "Signed in as @{0}" +msgstr "" + +#: src/components/FeedInterstitials.tsx:389 +msgid "Similar accounts" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:201 +msgid "Skip" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:228 +msgid "Skip this flow" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:167 +msgid "Smaller" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 +msgid "Snoozes the reminder" +msgstr "" + +#: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:100 +msgid "Software Dev" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:120 +msgid "Some of your verifications are invalid." +msgstr "" + +#: src/components/FeedInterstitials.tsx:529 +msgid "Some other feeds you might like" +msgstr "" + +#: src/components/WhoCanReply.tsx:80 +msgid "Some people can reply" +msgstr "" + +#: src/components/dms/MessageItem.tsx:148 +msgid "Someone reacted {0}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:241 +msgid "Someone reacted {0} to {1}" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:76 +msgid "Something wasn't quite right with the data you're trying to report. Please contact support." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:144 +msgid "Something went wrong" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 +#: src/components/moderation/ReportDialog/index.tsx:223 +#: src/screens/Deactivated.tsx:94 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 +msgid "Something went wrong, please try again" +msgstr "" + +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 +msgid "Something went wrong, please try again." +msgstr "" + +#: src/components/Lists.tsx:175 +msgid "Something went wrong!" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:178 +msgid "Something went wrong. Please try again." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +msgid "Something wrong? Let us know." +msgstr "" + +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 +msgid "Sorry! Your session expired. Please sign in again." +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 +msgid "Sort replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 +msgid "Sort replies by" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 +msgid "Sort replies to the same post by:" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:178 +#: src/components/moderation/ModerationDetailsDialog.tsx:186 +msgid "Source: <0>{sourceName}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:72 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:85 +#: src/lib/moderation/useReportOptions.ts:72 +#: src/lib/moderation/useReportOptions.ts:85 +msgid "Spam" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:55 +#: src/lib/moderation/useReportOptions.ts:55 +msgid "Spam; excessive mentions or replies" +msgstr "" + +#: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:113 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 +msgid "Sports" +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 +msgid "Start a conversation, and it will appear here." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:74 +msgid "Start a new chat" +msgstr "" + +#: src/view/screens/ProfileList.tsx:846 +#: src/view/screens/ProfileList.tsx:967 +msgid "Start adding people" +msgstr "" + +#: src/view/screens/ProfileList.tsx:853 +#: src/view/screens/ProfileList.tsx:974 +msgid "Start adding people!" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:382 +msgid "Start chat with {displayName}" +msgstr "" + +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 +msgid "Starter Pack" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:90 +msgid "Starter pack by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 +msgid "Starter pack by <0/>" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:89 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:731 +msgid "Starter pack is invalid" +msgstr "" + +#: src/screens/Search/Explore.tsx:628 +#: src/view/screens/Profile.tsx:231 +msgid "Starter Packs" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:266 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:100 +#: src/screens/Settings/AboutSettings.tsx:103 +msgid "Status Page" +msgstr "" + +#: src/screens/Signup/index.tsx:163 +msgid "Step {0} of {1}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:393 +msgid "Storage cleared, you need to restart the app now." +msgstr "" + +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 +msgid "Storybook" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 +#: src/components/moderation/LabelsOnMeDialog.tsx:324 +#: src/components/moderation/LabelsOnMeDialog.tsx:325 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 +msgid "Submit" +msgstr "" + +#: src/screens/Takendown.tsx:70 +msgid "Submit appeal" +msgstr "" + +#: src/screens/Takendown.tsx:76 +msgid "Submit Appeal" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 +msgid "Submit report" +msgstr "" + +#: src/view/screens/ProfileList.tsx:741 +msgid "Subscribe" +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:231 +msgid "Subscribe to @{0} to use these labels:" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 +msgid "Subscribe to Labeler" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201 +msgid "Subscribe to this labeler" +msgstr "" + +#: src/view/screens/ProfileList.tsx:737 +msgid "Subscribe to this list" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:286 +msgid "Success!" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:36 +msgid "Successfully verified" +msgstr "" + +#: src/screens/Search/Explore.tsx:357 +msgid "Suggested Accounts" +msgstr "" + +#: src/components/FeedInterstitials.tsx:391 +msgid "Suggested for you" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:144 +#: src/view/com/composer/labels/LabelsBtn.tsx:147 +msgid "Suggestive" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 +msgctxt "Name of app icon variant" +msgid "Sunrise" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 +msgctxt "Name of app icon variant" +msgid "Sunset" +msgstr "" + +#: src/Navigation.tsx:325 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 +msgid "Support" +msgstr "" + +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 +msgid "Switch account" +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 +msgid "Switch Account" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:109 +msgid "Switch accounts" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:293 +msgid "Switch to {0}" +msgstr "" + +#: src/components/dialogs/Embed.tsx:157 +#: src/components/dialogs/Embed.tsx:159 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 +msgid "System" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:107 +#: src/screens/Settings/AboutSettings.tsx:110 +#: src/screens/Settings/Settings.tsx:441 +msgid "System log" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:282 +msgid "Tags only" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:54 +#: src/components/ContextMenu/Backdrop.ios.tsx:80 +#: src/components/ContextMenu/Backdrop.tsx:46 +msgid "Tap to close context menu" +msgstr "" + +#: src/components/ProgressGuide/Toast.tsx:156 +msgid "Tap to dismiss" +msgstr "" + +#: src/state/shell/progress-guide.tsx:233 +msgid "Task complete - 10 follows!" +msgstr "" + +#: src/state/shell/progress-guide.tsx:223 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:64 +msgid "Teach our algorithm what you like" +msgstr "" + +#: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:114 +msgid "Tech" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:35 +msgid "Tell a joke!" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:377 +msgid "Tell us a bit about yourself" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:69 +msgid "Tell us a little more" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:116 +#: src/view/shell/desktop/RightNav.tsx:117 +msgid "Terms" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 +#: src/screens/Settings/AboutSettings.tsx:84 +#: src/screens/Settings/AboutSettings.tsx:87 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 +msgid "Terms of Service" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:60 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:99 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:107 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 +#: src/lib/moderation/useReportOptions.ts:60 +#: src/lib/moderation/useReportOptions.ts:99 +#: src/lib/moderation/useReportOptions.ts:107 +#: src/lib/moderation/useReportOptions.ts:115 +msgid "Terms used violate community standards" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:266 +msgid "Text & tags" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:229 +msgid "Text field" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:288 +#: src/screens/Messages/components/ChatDisabled.tsx:108 +msgid "Text input field" +msgstr "" + +#: src/view/com/posts/ShowLessFollowup.tsx:39 +msgid "Thank you for your feedback! It has been sent to the feed operator." +msgstr "" + +#: src/components/ReportDialog/SubmitView.tsx:83 +msgid "Thank you. Your report has been sent." +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:487 +msgid "That contains the following:" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:110 +#: src/screens/StarterPack/StarterPackScreen.tsx:111 +#: src/screens/StarterPack/StarterPackScreen.tsx:155 +#: src/screens/StarterPack/StarterPackScreen.tsx:156 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 +msgid "That starter pack could not be found." +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:132 +msgid "That's all, folks!" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1114 +msgid "That's everything!" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 +#: src/view/com/profile/ProfileMenu.tsx:461 +msgid "The account will be able to interact with you after unblocking." +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:41 +#: src/screens/Settings/AppIconSettings/index.tsx:222 +msgid "The app will be restarted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:119 +#: src/lib/moderation/useModerationCauseDescription.ts:128 +msgid "The author of this thread has hidden this reply." +msgstr "" + +#: src/screens/Moderation/index.tsx:407 +msgid "The Bluesky web application" +msgstr "" + +#: src/view/screens/CommunityGuidelines.tsx:38 +msgid "The Community Guidelines have been moved to <0/>" +msgstr "" + +#: src/view/screens/CopyrightPolicy.tsx:35 +msgid "The Copyright Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:102 +msgid "The Discover feed" +msgstr "" + +#: src/state/shell/progress-guide.tsx:224 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 +msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:67 +msgid "The feed has been replaced with Discover." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:59 +msgid "The following labels were applied to your account." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:60 +msgid "The following labels were applied to your content." +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:42 +msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 +msgid "The post may have been deleted." +msgstr "" + +#: src/view/screens/PrivacyPolicy.tsx:35 +msgid "The Privacy Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:40 +#: src/lib/strings/errors.ts:18 +msgid "The server appears to be experiencing issues. Please try again in a few moments." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:741 +msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." +msgstr "" + +#: src/components/ContextMenu/index.tsx:433 +msgid "The subject of the context menu" +msgstr "" + +#: src/view/screens/Support.tsx:37 +msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." +msgstr "" + +#: src/view/screens/TermsOfService.tsx:35 +msgid "The Terms of Service have been moved to" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 +msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:154 +msgid "Theme" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 +msgid "There is no time limit for account deactivation, come back any time." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:227 +msgid "There was an issue connecting to Tenor." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/view/screens/ProfileList.tsx:375 +#: src/view/screens/ProfileList.tsx:394 +#: src/view/screens/SavedFeeds.tsx:93 +msgid "There was an issue contacting the server" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:418 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:130 +msgid "There was an issue fetching notifications. Tap here to try again." +msgstr "" + +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 +msgid "There was an issue fetching posts. Tap here to try again." +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:151 +msgid "There was an issue fetching the list. Tap here to try again." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:60 +msgid "There was an issue fetching your app passwords" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:151 +#: src/view/com/lists/ProfileLists.tsx:150 +msgid "There was an issue fetching your lists. Tap here to try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:107 +msgid "There was an issue fetching your service info" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:259 +#: src/components/ReportDialog/SubmitView.tsx:88 +msgid "There was an issue sending your report. Please check your internet connection." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101 +#: src/view/com/profile/ProfileMenu.tsx:128 +#: src/view/com/profile/ProfileMenu.tsx:138 +#: src/view/com/profile/ProfileMenu.tsx:152 +#: src/view/com/profile/ProfileMenu.tsx:162 +#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/view/com/profile/ProfileMenu.tsx:187 +msgid "There was an issue! {0}" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 +#: src/screens/List/ListHiddenScreen.tsx:63 +#: src/screens/List/ListHiddenScreen.tsx:77 +#: src/screens/List/ListHiddenScreen.tsx:99 +#: src/view/screens/ProfileList.tsx:411 +#: src/view/screens/ProfileList.tsx:429 +#: src/view/screens/ProfileList.tsx:447 +#: src/view/screens/ProfileList.tsx:465 +msgid "There was an issue. Please check your internet connection and try again." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 +msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" +msgstr "" + +#: src/screens/SignupQueued.tsx:130 +msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 +msgid "These settings only apply to the Following feed." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:111 +msgid "This {screenDescription} has been flagged:" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:87 +msgid "This account has a checkmark because it's been verified by trusted sources." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:92 +msgid "This account has one or more attempted verifications, but it is not currently verified." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:106 +msgid "This account has requested that users sign in to view their profile." +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:34 +msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:55 +msgid "This action can be undone at any time." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:271 +msgid "This appeal will be sent to <0>{sourceName}." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:104 +msgid "This appeal will be sent to Bluesky's moderation service." +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:18 +msgid "This chat was disconnected" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:19 +msgid "This content has been hidden by the moderators." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:24 +msgid "This content has received a general warning from moderators." +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:63 +msgid "This content is hosted by {0}. Do you want to enable external media?" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:84 +#: src/lib/moderation/useModerationCauseDescription.ts:84 +msgid "This content is not available because one of the users involved has blocked the other." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 +msgid "This content is not viewable without a Bluesky account." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:362 +msgid "This conversation is with a deleted or a deactivated account. Press for options" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:156 +msgid "This email is already associated with your account." +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:96 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:49 +msgid "This feature is not available while using an app password. Please sign in with your main password." +msgstr "" + +#: src/lib/strings/errors.ts:21 +msgid "This feature is not available while using an App Password. Please sign in with your main password." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 +msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:38 +msgid "This feed is empty! You may need to follow more users or tune your language settings." +msgstr "" + +#: src/components/StarterPack/Main/PostsList.tsx:36 +#: src/screens/Profile/ProfileFeed/index.tsx:192 +#: src/view/screens/ProfileList.tsx:843 +msgid "This feed is empty." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:99 +msgid "This feed is no longer online. We are showing <0>Discover instead." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:593 +msgid "This handle is reserved. Please try a different one." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:41 +msgid "This information is not shared with other users." +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:189 +#: src/components/live/GoLiveDialog.tsx:160 +msgid "This is not a valid link" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:168 +msgid "This label was applied by the author." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:165 +msgid "This label was applied by you." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:218 +msgid "This labeler hasn't declared what labels it publishes, and may not be active." +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:79 +msgid "This link is taking you to the following website:" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:151 +msgid "This list – created by <0>{0} – contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:146 +msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/view/screens/ProfileList.tsx:962 +msgid "This list is empty." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:40 +msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 +msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." +msgstr "" + +#: src/components/WhoCanReply.tsx:240 +msgid "This post has an unknown type of threadgate on it. Your app may be out of date." +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:171 +msgid "This post has been deleted." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 +msgid "This post will be hidden from feeds and threads. This cannot be undone." +msgstr "" + +#: src/view/com/composer/Composer.tsx:463 +msgid "This post's author has disabled quote posts." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:482 +msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 +msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:66 +msgid "This service has not provided terms of service or a privacy policy." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:456 +msgid "This should create a domain record at:" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:93 +msgid "This user does not have a display name, and therefore cannot be verified." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:95 +msgid "This user doesn't have any followers." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:68 +msgid "This user has blocked you" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:79 +#: src/lib/moderation/useModerationCauseDescription.ts:75 +msgid "This user has blocked you. You cannot view their content." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:30 +msgid "This user has requested that their content only be shown to signed-in users." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:59 +msgid "This user is included in the <0>{0} list which you have blocked." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:91 +msgid "This user is included in the <0>{0} list which you have muted." +msgstr "" + +#: src/components/NewskieDialog.tsx:65 +msgid "This user is new here. Press for more info about when they joined." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:95 +msgid "This user isn't following anyone." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:435 +msgid "This will delete \"{0}\" from your muted words. You can always add it back later." +msgstr "" + +#: src/screens/Settings/Settings.tsx:656 +msgid "This will remove @{0} from the quick access list." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 +msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 +msgid "Thread options" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:68 +#: src/screens/Settings/ContentAndMediaSettings.tsx:71 +msgid "Thread preferences" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 +msgid "Thread Preferences" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 +msgid "Threaded" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:276 +msgid "Threaded mode" +msgstr "" + +#: src/Navigation.tsx:368 +msgid "Threads Preferences" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 +msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:99 +msgid "To disable the email 2FA method, please verify your access to the email address." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215 +msgid "To disable your email 2FA method, please verify your access to <0>{0}" +msgstr "" + +#: src/components/dms/ReportConversationPrompt.tsx:19 +msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." +msgstr "" + +#: src/components/ReportDialog/SelectLabelerView.tsx:31 +msgid "To whom would you like to send this report?" +msgstr "" + +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:263 +msgid "Toggle dropdown" +msgstr "" + +#: src/screens/Moderation/index.tsx:384 +msgid "Toggle to enable or disable adult content" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 +msgid "Toggles the sound" +msgstr "" + +#: src/screens/Hashtag.tsx:84 +#: src/screens/Search/SearchResults.tsx:47 +#: src/screens/Topic.tsx:71 +msgid "Top" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:543 +msgid "Topic" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 +msgid "Translate" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "" + +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 +msgid "Trending" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending Videos" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138 +msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." +msgstr "" + +#: src/view/com/util/error/ErrorScreen.tsx:103 +msgctxt "action" +msgid "Try again" +msgstr "" + +#: src/screens/Onboarding/state.ts:115 +msgid "TV" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 +msgid "Two-factor authentication (2FA)" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:153 +msgid "Type your message here" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:432 +msgid "Type:" +msgstr "" + +#: src/lib/hooks/useCleanError.ts:27 +#: src/lib/strings/errors.ts:11 +msgid "Unable to connect. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:79 +#: src/screens/Login/LoginForm.tsx:169 +#: src/screens/Login/SetNewPasswordForm.tsx:81 +#: src/screens/Signup/index.tsx:76 +#: src/view/com/modals/ChangePassword.tsx:71 +#: src/view/com/modals/ChangePassword.tsx:117 +msgid "Unable to contact your service. Please check your Internet connection." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:673 +msgid "Unable to delete" +msgstr "" + +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:97 +#: src/components/dms/MessagesListBlockedFooter.tsx:104 +#: src/components/dms/MessagesListBlockedFooter.tsx:112 +#: src/components/dms/MessagesListBlockedFooter.tsx:119 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:473 +#: src/view/screens/ProfileList.tsx:723 +msgid "Unblock" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +msgctxt "action" +msgid "Unblock" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:247 +#: src/components/dms/ConvoMenu.tsx:250 +#: src/view/com/profile/ProfileMenu.tsx:383 +#: src/view/com/profile/ProfileMenu.tsx:389 +msgid "Unblock account" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 +#: src/view/com/profile/ProfileMenu.tsx:455 +msgid "Unblock Account?" +msgstr "" + +#: src/view/screens/ProfileList.tsx:620 +msgid "Unblock list" +msgstr "" + +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 +msgid "Undo repost" +msgstr "" + +#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun +#: src/components/PostControls/RepostButton.tsx:66 +msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#: src/view/com/profile/FollowButton.tsx:63 +msgctxt "action" +msgid "Unfollow" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +msgid "Unfollow {0}" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:283 +#: src/view/com/profile/ProfileMenu.tsx:293 +msgid "Unfollow account" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:831 +msgid "Unfollows the user" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:372 +msgid "Unfortunately, none of your subscribed labelers supports this report type." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:206 +msgid "Unknown verifier" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:518 +msgid "Unlike" +msgstr "" + +#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun +#: src/components/PostControls/index.tsx:243 +msgid "Unlike ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +msgctxt "video" +msgid "Unmute" +msgstr "" + +#: src/view/screens/ProfileList.tsx:730 +msgid "Unmute" +msgstr "" + +#: src/components/RichTextTag.tsx:140 +#: src/components/RichTextTag.tsx:153 +msgid "Unmute {tag}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 +#: src/view/com/profile/ProfileMenu.tsx:362 +#: src/view/com/profile/ProfileMenu.tsx:368 +msgid "Unmute account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:236 +msgid "Unmute conversation" +msgstr "" + +#: src/view/screens/ProfileList.tsx:605 +msgid "Unmute list" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 +msgid "Unmute thread" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 +msgid "Unmute video" +msgstr "" + +#: src/view/screens/ProfileList.tsx:714 +msgid "Unpin" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:530 +msgid "Unpin feed" +msgstr "" + +#: src/components/FeedCard.tsx:320 +msgid "Unpin Feed" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:310 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +msgid "Unpin from home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 +msgid "Unpin from profile" +msgstr "" + +#: src/view/screens/ProfileList.tsx:585 +msgid "Unpin moderation list" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:163 +msgid "Unpinned {0} from Home" +msgstr "" + +#: src/view/screens/ProfileList.tsx:362 +msgid "Unpinned from your feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 +msgid "Unsnooze email reminder" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233 +msgid "Unsubscribe" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:198 +#: src/screens/List/ListHiddenScreen.tsx:208 +msgid "Unsubscribe from list" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200 +msgid "Unsubscribe from this labeler" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:86 +msgid "Unsubscribed from list" +msgstr "" + +#: src/view/com/composer/Composer.tsx:814 +msgid "Unsupported video type" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:48 +msgid "Unsupported video type: {0}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:77 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:90 +#: src/lib/moderation/useReportOptions.ts:77 +#: src/lib/moderation/useReportOptions.ts:90 +msgid "Unwanted Sexual Content" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:58 +#: src/screens/Settings/components/OTAInfo.tsx:74 +msgid "Update" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:312 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 +msgid "Update email" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:526 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:547 +msgid "Update to {domain}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:203 +msgid "Update your email" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +msgctxt "toast" +msgid "Updating quote attachment failed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 +msgctxt "toast" +msgid "Updating reply visibility failed" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:194 +msgid "Updating..." +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:288 +msgid "Upload a photo instead" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:472 +msgid "Upload a text file to:" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 +#: src/view/com/util/UserBanner.tsx:157 +#: src/view/com/util/UserBanner.tsx:160 +msgid "Upload from Camera" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:486 +#: src/view/com/util/UserBanner.tsx:174 +msgid "Upload from Files" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 +#: src/view/com/util/UserBanner.tsx:168 +#: src/view/com/util/UserBanner.tsx:172 +msgid "Upload from Library" +msgstr "" + +#: src/lib/api/index.ts:302 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1737 +msgid "Uploading video..." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:67 +msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:558 +msgid "Use default provider" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:77 +#: src/components/dialogs/InAppBrowserConsent.tsx:83 +msgid "Use in-app browser" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:102 +#: src/screens/Settings/ContentAndMediaSettings.tsx:108 +msgid "Use in-app browser to open links" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:87 +#: src/components/dialogs/InAppBrowserConsent.tsx:93 +msgid "Use my default browser" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:53 +msgid "Use recommended" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:190 +msgid "Use this to sign in to the other app along with your handle." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:201 +msgid "Used by:" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:324 +msgctxt "toast" +msgid "User blocked" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:71 +#: src/lib/moderation/useModerationCauseDescription.ts:63 +msgid "User Blocked" +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:55 +msgid "User Blocked by \"{0}\"" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:27 +msgid "User blocked by list" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:57 +msgid "User Blocked by List" +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:73 +msgid "User Blocking You" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:77 +msgid "User Blocks You" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:214 +msgid "User list by {0}" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +msgid "User list by you" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:174 +msgctxt "toast" +msgid "User list created" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:160 +msgctxt "toast" +msgid "User list updated" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:201 +msgid "Username or email address" +msgstr "" + +#: src/components/WhoCanReply.tsx:303 +msgid "users followed by <0>@{0}" +msgstr "" + +#: src/components/WhoCanReply.tsx:290 +msgid "users following <0>@{0}" +msgstr "" + +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 +msgid "Users I follow" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 +msgid "Users in \"{0}\"" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 +msgid "Users you follow" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:438 +msgid "Value:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:39 +msgid "Verification failed, please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:297 +msgid "Verification settings" +msgstr "" + +#: src/Navigation.tsx:205 +#: src/screens/Moderation/VerificationSettings.tsx:32 +msgid "Verification Settings" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:41 +msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:103 +msgid "Verified by:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:84 +#: src/components/verification/VerificationCreatePrompt.tsx:86 +#: src/view/com/profile/ProfileMenu.tsx:346 +#: src/view/com/profile/ProfileMenu.tsx:349 +msgid "Verify account" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" +msgid "Verify code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:528 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:549 +msgid "Verify DNS Record" +msgstr "" + +#. Dialog title when a user is verifying their email address by entering a code they have been sent +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 +msgid "Verify email code" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 +msgid "Verify email dialog" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:529 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:551 +msgid "Verify Text File" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:51 +msgid "Verify this account?" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 +msgid "Verify your email" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:126 +#: src/screens/Settings/AboutSettings.tsx:155 +msgid "Version {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 +msgid "Video" +msgstr "" + +#: src/view/com/composer/state/video.ts:358 +msgid "Video failed to process" +msgstr "" + +#: src/Navigation.tsx:599 +msgid "Video Feed" +msgstr "" + +#: src/components/VideoPostCard.tsx:122 +msgid "Video from {0}: {text}" +msgstr "" + +#: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:103 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237 +msgid "Video Games" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1072 +msgid "Video is paused" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1072 +msgid "Video is playing" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 +msgid "Video not found." +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:98 +msgid "Video settings" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1747 +msgid "Video uploaded" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +msgid "Video: {0}" +msgstr "" + +#: src/view/screens/Profile.tsx:228 +msgid "Videos" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:42 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:55 +msgid "Videos must be less than 3 minutes long" +msgstr "" + +#: src/screens/Profile/Header/Shell.tsx:211 +msgid "View {0}'s avatar" +msgstr "" + +#: src/components/ProfileCard.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Search/components/SearchProfileCard.tsx:36 +#: src/screens/VideoFeed/index.tsx:790 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 +msgid "View {0}'s profile" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:181 +msgid "View {displayName}'s profile" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:480 +msgid "View blocked user's profile" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:100 +msgid "View blogpost for more details" +msgstr "" + +#: src/view/screens/Log.tsx:57 +msgid "View debug entry" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:137 +#: src/screens/VideoFeed/index.tsx:656 +#: src/screens/VideoFeed/index.tsx:674 +msgid "View details" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:132 +msgid "View details for reporting a copyright violation" +msgstr "" + +#: src/view/com/posts/ViewFullThread.tsx:59 +msgid "View full thread" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:46 +msgid "View information about these labels" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 +msgid "View more" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 +#: src/view/com/util/PostMeta.tsx:91 +#: src/view/com/util/PostMeta.tsx:128 +msgid "View profile" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 +msgid "View the avatar" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:164 +msgid "View the labeling service provided by @{0}" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:99 +msgid "View this user's verifications" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:489 +msgid "View users who like this feed" +msgstr "" + +#: src/components/VideoPostCard.tsx:399 +msgid "View video" +msgstr "" + +#: src/screens/Moderation/index.tsx:277 +msgid "View your blocked accounts" +msgstr "" + +#: src/screens/Moderation/index.tsx:217 +msgid "View your default post interaction settings" +msgstr "" + +#: src/view/com/home/HomeHeaderLayout.web.tsx:56 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 +msgid "View your feeds and explore more" +msgstr "" + +#: src/screens/Moderation/index.tsx:247 +msgid "View your moderation lists" +msgstr "" + +#: src/screens/Moderation/index.tsx:262 +msgid "View your muted accounts" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:98 +msgid "View your verifications" +msgstr "" + +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 +msgid "Views full image" +msgstr "" + +#: src/components/VideoPostCard.tsx:121 +msgid "Views video in immersive mode" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "" + +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 +msgid "Volume" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:142 +#: src/lib/moderation/useLabelBehaviorDescription.ts:17 +#: src/lib/moderation/useLabelBehaviorDescription.ts:22 +msgid "Warn" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:48 +msgid "Warn content" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:46 +msgid "Warn content and filter from feeds" +msgstr "" + +#: src/components/live/LiveStatusDialog.tsx:156 +#: src/components/live/LiveStatusDialog.tsx:169 +msgid "Watch now" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "" + +#: src/screens/Hashtag.tsx:205 +msgid "We couldn't find any results for that hashtag." +msgstr "" + +#: src/screens/Topic.tsx:178 +msgid "We couldn't find any results for that topic." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:145 +msgid "We couldn't load this conversation" +msgstr "" + +#: src/screens/SignupQueued.tsx:160 +msgid "We estimate {estimatedTime} until your account is ready." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 +msgid "We have sent another verification email to <0>{0}." +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:256 +msgid "We hope you have a wonderful time. Remember, Bluesky is:" +msgstr "" + +#: src/view/com/posts/DiscoverFallbackHeader.tsx:29 +msgid "We ran out of posts from your follows. Here's the latest from <0/>." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:154 +msgid "We recommend selecting at least two interests." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 +msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/view/com/composer/state/video.ts:419 +msgid "We were unable to determine if you are allowed to upload videos. Please try again." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:52 +msgid "We were unable to load your birth date preferences. Please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:464 +msgid "We were unable to load your configured labelers at this time." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:129 +msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." +msgstr "" + +#: src/screens/SignupQueued.tsx:164 +msgid "We will let you know when your account is ready." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 +msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:134 +msgid "We'll use this to help customize your experience." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:107 +#: src/components/ProgressGuide/FollowDialog.tsx:172 +msgid "We're having network issues, try again" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 +msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." +msgstr "" + +#: src/screens/Signup/index.tsx:123 +msgid "We're so excited to have you join us!" +msgstr "" + +#: src/view/screens/ProfileList.tsx:117 +msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:378 +msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:285 +msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." +msgstr "" + +#: src/view/com/composer/Composer.tsx:460 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + +#: src/components/Lists.tsx:195 +#: src/view/screens/NotFound.tsx:50 +msgid "We're sorry! We can't find the page you were looking for." +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343 +msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + +#: src/screens/Deactivated.tsx:125 +msgid "Welcome back!" +msgstr "" + +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:126 +msgid "What are your interests?" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:41 +msgid "What do you want to call your starter pack?" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:38 +#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/composer/Composer.tsx:777 +msgid "What's up?" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146 +msgid "When you tap on a check, you’ll see which organizations have granted verification." +msgstr "" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80 +msgid "Which languages are used in this post?" +msgstr "" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:79 +msgid "Which languages would you like to see in your algorithmic feeds?" +msgstr "" + +#: src/components/WhoCanReply.tsx:192 +msgid "Who can interact with this post?" +msgstr "" + +#: src/components/WhoCanReply.tsx:97 +msgid "Who can reply" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127 +msgid "Who can verify?" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:79 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 +msgid "Whoops!" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:125 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 +msgid "Whoops! Trending videos failed to load." +msgstr "" + +#: src/screens/Takendown.tsx:173 +msgid "Why are you appealing?" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:42 +msgid "Why should this content be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:32 +#: src/components/ReportDialog/SelectReportOptionView.tsx:55 +msgid "Why should this feed be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:26 +#: src/components/ReportDialog/SelectReportOptionView.tsx:52 +msgid "Why should this list be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:44 +#: src/components/ReportDialog/SelectReportOptionView.tsx:61 +msgid "Why should this message be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:20 +#: src/components/ReportDialog/SelectReportOptionView.tsx:49 +msgid "Why should this post be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:38 +#: src/components/ReportDialog/SelectReportOptionView.tsx:58 +msgid "Why should this starter pack be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:14 +#: src/components/ReportDialog/SelectReportOptionView.tsx:46 +msgid "Why should this user be reviewed?" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:154 +#: src/screens/Messages/components/MessageInput.web.tsx:214 +msgid "Write a message" +msgstr "" + +#: src/view/com/composer/Composer.tsx:872 +msgid "Write post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 +msgid "Write your reply" +msgstr "" + +#: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:116 +msgid "Writers" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:356 +msgid "Wrong DID returned from server. Received: {0}" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:153 +#: src/components/live/GoLiveDialog.tsx:129 +msgid "www.mylivestream.tv" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87 +msgid "Yes" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 +msgid "Yes, deactivate" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:685 +msgid "Yes, delete this starter pack" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 +msgid "Yes, detach" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 +msgid "Yes, hide" +msgstr "" + +#: src/screens/Deactivated.tsx:147 +msgid "Yes, reactivate my account" +msgstr "" + +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "" + +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:59 +msgid "You are a trusted verifier" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:45 +msgid "You are creating an account on" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + +#: src/screens/SignupQueued.tsx:157 +msgid "You are in line." +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:119 +#: src/components/live/EditLiveDialog.tsx:124 +msgid "You are Live" +msgstr "" + +#: src/components/live/queries.ts:211 +msgid "You are no longer live" +msgstr "" + +#: src/components/live/queries.ts:35 +msgid "You are not allowed to go live" +msgstr "" + +#: src/view/com/composer/state/video.ts:412 +msgid "You are not allowed to upload videos." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:94 +msgid "You are not following anyone." +msgstr "" + +#: src/components/live/queries.ts:156 +msgid "You are now live!" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:64 +msgid "You are verified" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:355 +msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:208 +msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:45 +msgid "You can adjust your interests at any time from \"Content and media\" settings." +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 +msgid "You can also discover new Custom Feeds to follow." +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:198 +msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 +msgid "You can continue ongoing conversations regardless of which setting you choose." +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + +#: src/screens/Login/index.tsx:182 +#: src/screens/Login/PasswordUpdatedForm.tsx:26 +msgid "You can now sign in with your new password." +msgstr "" + +#: src/screens/Deactivated.tsx:133 +msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 +msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." +msgstr "" + +#: src/components/interstitials/Trending.tsx:130 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 +msgid "You can update this later from your settings." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:94 +msgid "You do not have any followers." +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:109 +msgid "You don't follow any users who follow @{name}." +msgstr "" + +#: src/screens/Messages/Inbox.tsx:241 +msgid "You don't have any chat requests at the moment." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:67 +msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:145 +msgid "You don't have any pinned feeds." +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:185 +msgid "You don't have any saved feeds." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:273 +msgid "You have blocked the author or you have been blocked by the author." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:66 +msgid "You have blocked this user" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:73 +#: src/lib/moderation/useModerationCauseDescription.ts:57 +#: src/lib/moderation/useModerationCauseDescription.ts:65 +msgid "You have blocked this user. You cannot view their content." +msgstr "" + +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:49 +#: src/screens/Login/SetNewPasswordForm.tsx:95 +#: src/view/com/modals/ChangePassword.tsx:87 +#: src/view/com/modals/ChangePassword.tsx:133 +msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:116 +msgid "You have hidden this post" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:111 +msgid "You have hidden this post." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:104 +#: src/lib/moderation/useModerationCauseDescription.ts:99 +msgid "You have muted this account." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:93 +msgid "You have muted this user" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:301 +msgid "You have no conversations yet. Start one!" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:139 +msgid "You have no feeds." +msgstr "" + +#: src/view/com/lists/MyLists.tsx:81 +#: src/view/com/lists/ProfileLists.tsx:135 +msgid "You have no lists." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:164 +msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:179 +msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." +msgstr "" + +#: src/components/Lists.tsx:58 +msgid "You have reached the end" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187 +msgid "You have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/lib/media/video/upload.shared.ts:56 +msgid "You have temporarily reached the limit for video uploads. Please try again later." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:263 +msgid "You haven't created a starter pack yet!" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:398 +msgid "You haven't muted any words or tags yet" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:118 +#: src/lib/moderation/useModerationCauseDescription.ts:127 +msgid "You hid this reply." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:79 +msgid "You may appeal non-self labels if you feel they were placed in error." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:84 +msgid "You may appeal these labels if you feel they were placed in error." +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:76 +msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}" +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:95 +msgid "You may only add up to 3 feeds" +msgstr "" + +#: src/lib/media/picker.shared.ts:25 +msgid "You may only select up to 4 images" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:136 +msgid "You must be 13 years of age or older to create an account." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:334 +msgid "You must be following at least seven other people to generate a starter pack." +msgstr "" + +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:61 +msgid "You must grant access to your photo library to save a QR code" +msgstr "" + +#: src/components/ReportDialog/SubmitView.tsx:211 +msgid "You must select at least one labeler for a report" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 +msgid "You need to verify your email address before you can enable email 2FA." +msgstr "" + +#: src/screens/Deactivated.tsx:128 +msgid "You previously deactivated @{0}." +msgstr "" + +#: src/screens/Settings/Settings.tsx:404 +msgid "You probably want to restart the app now." +msgstr "" + +#: src/components/dms/MessageItem.tsx:135 +msgid "You reacted {0}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:218 +msgid "You reacted {0} to {1}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 +msgid "You will be signed out of all your accounts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 +msgid "You will no longer receive notifications for this thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 +msgid "You will now receive notifications for this thread" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:108 +msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:154 +msgid "You: {0}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:183 +msgid "You: {defaultEmbeddedContentMessage}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:176 +msgid "You: {short}" +msgstr "" + +#: src/screens/Signup/index.tsx:139 +msgid "You'll follow the suggested users and feeds once you finish creating your account!" +msgstr "" + +#: src/screens/Signup/index.tsx:144 +msgid "You'll follow the suggested users once you finish creating your account!" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:236 +msgid "You'll follow these people and {0} others" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 +msgid "You'll follow these people right away" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 +msgid "You'll stay updated with these feeds" +msgstr "" + +#: src/screens/SignupQueued.tsx:127 +msgid "You're in line" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:253 +msgid "You're ready to go!" +msgstr "" + +#: src/screens/Deactivated.tsx:89 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 +msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:108 +#: src/lib/moderation/useModerationCauseDescription.ts:108 +msgid "You've chosen to hide a word or tag within this post." +msgstr "" + +#: src/state/shell/progress-guide.tsx:234 +msgid "You've found some people to follow" +msgstr "" + +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 +msgid "You've reached the end of your feed! Find some more accounts to follow." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:58 +msgid "You've reached the maximum number of requests allowed. Please try again later." +msgstr "" + +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 +msgid "You've reached your daily limit for video uploads (too many bytes)" +msgstr "" + +#: src/view/com/composer/state/video.ts:427 +msgid "You've reached your daily limit for video uploads (too many videos)" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1123 +msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" +msgstr "" + +#: src/screens/Signup/index.tsx:173 +msgid "Your account" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:84 +msgid "Your account has been deleted" +msgstr "" + +#: src/screens/Takendown.tsx:146 +msgid "Your account has been suspended" +msgstr "" + +#: src/view/com/composer/state/video.ts:431 +msgid "Your account is not yet old enough to upload videos. Please try again later." +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:67 +msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." +msgstr "" + +#: src/screens/Takendown.tsx:214 +msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error." +msgstr "" + +#: src/screens/Takendown.tsx:154 +msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:261 +msgid "Your birth date" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 +msgid "Your browser does not support the video format. Please try a different browser." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:25 +msgid "Your chats have been disabled" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:69 +msgid "Your choice will be remembered for future links. You can change it at any time in settings." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:513 +msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:51 +#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/StepInfo/index.tsx:101 +#: src/view/com/modals/ChangePassword.tsx:55 +msgid "Your email appears to be invalid." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65 +msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." +msgstr "" + +#: src/state/shell/progress-guide.tsx:213 +msgid "Your first like!" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 +msgid "Your followers" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:43 +msgid "Your following feed is empty! Follow more users to see what's happening." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:240 +msgid "Your full handle will be <0>@{0}" +msgstr "" + +#: src/Navigation.tsx:515 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:67 +#: src/screens/Settings/ContentAndMediaSettings.tsx:92 +#: src/screens/Settings/ContentAndMediaSettings.tsx:95 +#: src/screens/Settings/InterestsSettings.tsx:42 +msgid "Your interests" +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:123 +msgctxt "toast" +msgid "Your interests have been updated!" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:94 +msgid "Your interests help us find what you like!" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:369 +msgid "Your muted words" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:169 +msgid "Your password has been changed successfully!" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:130 +msgid "Your password must be at least 8 characters long." +msgstr "" + +#: src/view/com/composer/Composer.tsx:522 +msgid "Your post has been published" +msgstr "" + +#: src/view/com/composer/Composer.tsx:519 +msgid "Your posts have been published" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:268 +msgid "Your posts, likes, and blocks are public. Mutes are private." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 +msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "" + +#: src/view/com/composer/Composer.tsx:521 +msgid "Your reply has been published" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:394 +msgid "Your report will be sent to <0>{0}." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:200 +msgid "Your report will be sent to the Bluesky Moderation Service" +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:56 +msgid "Your selected interests help us serve you content you care about." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:65 +msgid "Your verifications" +msgstr "" + diff --git a/src/locale/locales/ca/messages.po b/src/locale/locales/ca/messages.po index c31a2a690b..5af0138485 100644 --- a/src/locale/locales/ca/messages.po +++ b/src/locale/locales/ca/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ca\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 01:46\n" "Last-Translator: \n" "Language-Team: Catalan\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,7 +27,7 @@ msgstr "(actiu)" msgid "(contains embedded content)" msgstr "(té contingut incrustat)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(sense correu)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# republicació} other {# republicacions}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# segon} other {# segons}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# element sense llegir} other {# elements sense llegir}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {# element sense llegir} other {# elements sense llegir} msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {# mes} other {# mesos}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {seguidor} other {seguidors}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {seguint} other {seguint}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {m'agrada} other {m'agrades}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {m'agrada} other {m'agrades}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {publicació} other {publicacions}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {citació} other {citacions}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {republicació} other {republicacions}}" @@ -135,6 +138,10 @@ msgstr "{0} <0>en <1>etiquetes" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>en <1>text i etiquetes" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} seguint" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "{0} emet en directe" @@ -143,11 +150,15 @@ msgstr "{0} emet en directe" msgid "{0} is not a valid URL" msgstr "{0} no és una adreça URL vàlida" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "{0} no està disponible" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} s'han unit aquesta setmana" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} de {1}" @@ -164,8 +175,16 @@ msgstr "{0} ha reaccionat amb {1}" msgid "{0} reacted {1} to {2}" msgstr "{0} ha reaccionat amb {1} a {2}" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0}, un canal de {1}, li ha agradat a {2}" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0}, una llista de {1}" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "Avatar de {0}" @@ -197,12 +216,12 @@ msgstr "{0} min" msgid "{0}s" msgstr "{0} s" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# element sense llegir} other {# elements sense llegir}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Starter Pack de: {displayName}" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {hores}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minut} other {minuts}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} t'han seguit" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} els ha agradat el teu canal personalitzat" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} els ha agradat la teva publicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} els ha agradat la teva republicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} han tret la seva verificació del teu compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} han republicat la teva publicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} han republicat la teva republicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} s'han registrat amb el teu starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} t'han verificat" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} t'ha seguit" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} t'ha seguit de tornada" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} li ha agradat el teu canal personalitzat" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} li ha agradat la teva publicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} li ha agradat la teva republicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} ha tret la seva verificació del teu compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} ha republicat la teva publicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} ha republicat la teva republicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} s'ha registrat amb el teu starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} t'ha verificat" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} t'han seguit" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} els ha agradat el teu canal personalitzat" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} els ha agradat la teva publicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} els ha agradat la teva republicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} han tret la seva verificació del teu compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} han republicat la teva publicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} han republicat la teva republicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} s'han registrat amb el teu starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} i{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} t'han verificat" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} t'ha seguit" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} t'ha seguit de tornada" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} li ha agradat el teu canal personalitzat" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} li ha agradat la teva publicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} li ha agradat la teva republicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} ha tret la seva verificació del teu compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} ha republicat la teva publicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} ha republicat la teva republicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} s'ha registrat amb el teu starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} t'ha verificat" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} seguint" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "No es poden enviar missatges a {handle}" @@ -392,7 +410,7 @@ msgstr "{joinedAllTimeCount, plural, one {}other {# usuaris s'han}} unit!" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "{minutes, plural, one {# minut} other {# minuts}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# element sense llegir} other {# elements sense llegir}}" @@ -432,12 +450,12 @@ msgstr "Verificacions de {userName}" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, i {2, plural, one {# altre} other {# altres}} estan inclosos al teu starter pack" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, i {2, plural, one {# altre} other {# altres}} estan inclosos al teu starter pack" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {seguidor} other {seguidors}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {seguint} other {seguint}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} i<1> <2>{1} estan inclosos al teu starter pack" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} està inclòs al teu starter pack" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} membres" @@ -466,11 +484,11 @@ msgstr "<0>{0} membres" msgid "<0>{date} at {time}" msgstr "<0>{date} a les {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Experimental: Quan aquesta preferència està activada, només rebràs notificacions de respostes i citacions dels usuaris que segueixes. Continuarem afegint més controls aquí amb el temps." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<0>Inicia la sessió<1> o <2>crea un compte<3> <4>per cercar notícies, esports, política, jocs de paraules i tot el que passa a Bluesky." -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Tu i<1> <2>{0} esteu inclosos al teu starter pack" @@ -503,10 +521,14 @@ msgstr "un missatge" msgid "A new form of verification" msgstr "Una nova forma de verificació" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "Una captura de pantalla d'una pàgina de perfil amb una icona de campana al costat del botó de seguir, que indica la funció de notificacions de nova activitat." + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Sobre" @@ -524,25 +546,25 @@ msgstr "Accepta la sol·licitud de xat" msgid "Accept Request" msgstr "Accepta la sol·licitud" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Accessibilitat" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Configuració d'accessibilitat" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Compte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Compte seguit" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Compte silenciat" msgid "Account Muted by List" msgstr "Compte silenciat per una llista" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Opcions del compte" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Compte eliminat de l'accés ràpid" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Compte no seguit" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Compte no silenciat" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Els comptes amb una marca de verificació blava<0><1/>poden verificar-ne altres. Bluesky selecciona aquests verificadors de confiança." +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "Activitat d'altres persones" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "Notificacions d'activitat" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Afegeix" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Afegeix-ne {0} més per a continuar" @@ -634,8 +666,8 @@ msgstr "Afegeix un compte" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Afegeix text alternatiu" msgid "Add alt text (optional)" msgstr "Afegeix text alternatiu (opcional)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Afegeix un altre compte" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Afegeix una altra publicació" @@ -670,8 +702,8 @@ msgstr "Afegeix una contrasenya d'aplicació" msgid "Add emoji reaction" msgstr "Afegeix una reacció d'emoji" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Afegeix més detalls (opcional)" @@ -683,7 +715,7 @@ msgstr "Afegeix la paraula silenciada amb la configuració escollida" msgid "Add muted words and tags" msgstr "Afegeix les paraules i etiquetes silenciades" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Afegeix una nova publicació" @@ -704,7 +736,7 @@ msgstr "Afegeix una reacció" msgid "Add recommended feeds" msgstr "Afegeix els canals recomanats" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Afegiu alguns canals al teu starter pack" @@ -725,10 +757,6 @@ msgstr "Afegeix aquest canal als teus canals" msgid "Add to lists" msgstr "Afegeix a les llistes" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Afegeix als meus canals" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "Afegeix usuaris a la llista" @@ -738,11 +766,11 @@ msgstr "Afegeix usuaris a la llista" msgid "Added to list" msgstr "Afegit a la llista" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Afegit als meus canals" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "Detalls addicionals (límit de 1000 caràcters)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Detalls addicionals (límit de 300 caràcters)" @@ -750,18 +778,18 @@ msgstr "Detalls addicionals (límit de 300 caràcters)" msgid "Adult" msgstr "Adults" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Contingut per a adults" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "El contingut per a adults només es pot activar a través del web a <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "El contingut per a adults està deshabilitat." @@ -770,16 +798,32 @@ msgstr "El contingut per a adults està deshabilitat." msgid "Adult Content labels" msgstr "Etiquetes de contingut per a adults" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Avançat" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "Garantia d'edat" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "No s'ha pogut enviar la sol·licitud de garantia d'edat. Torna-ho a intentar." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "S'ha enviat la sol·licitud de garantia d'edat" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "La garantia d'edat només triga uns minuts" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "josepmaria@exemple.cat" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Totes" @@ -793,7 +837,7 @@ msgstr "S'han seguit tots els comptes!" msgid "All languages" msgstr "Tots els idiomes" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Tots els canals que has desat, en un sol lloc." @@ -802,16 +846,21 @@ msgstr "Tots els canals que has desat, en un sol lloc." msgid "Allow access to your direct messages" msgstr "Permet l'accés als teus missatges directes" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Permet missatges nou de" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "Permet que altres persones rebin notificacions de les teves publicacions" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Permet citacions" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Permet respostes de:" @@ -828,13 +877,13 @@ msgstr "Ja tens un codi?" msgid "Already signed in as @{0}" msgstr "Ja estàs registrat com a @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "Text alternatiu" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Text alternatiu" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "El text alternatiu descriu les imatges per a les persones cegues o amb problemes de visió, i ajuda donar context a tothom." @@ -861,27 +910,19 @@ msgstr "El text alternatiu sortirà retallat. {MAX_ALT_TEXT, plural, one {}other msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "S'ha enviat un correu a {0}. Inclou un codi de confirmació que has d'entrar aquí sota." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "S'ha enviat un correu a la teva adreça prèvia, {currentEmail}. Inclou un codi de confirmació que has d'entrar aquí sota." - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "S'ha enviat un correu. Entra el codi de confirmació que t'ha arribat per correu." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Hi ha hagut un error" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Hi ha hagut un error" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Hi ha hagut un error mentre es comprimia el vídeo." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "S'ha produït un error en anar a buscar el canal." @@ -889,11 +930,11 @@ msgstr "S'ha produït un error en anar a buscar el canal." msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "S'ha produït un error en generar el teu starter pack. Vols tornar-ho a provar?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Hi ha hagut un error mentre es carregava el vídeo. Prova-ho més tard." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Hi ha hagut un error mentre es carregava el vídeo. Prova-ho més tard." @@ -910,7 +951,7 @@ msgstr "Hi ha hagut un error mentre es seleccionava el vídeo" msgid "An error occurred while trying to follow all" msgstr "S'ha produït un error en intentar seguir-ho tot" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Hi ha hagut un error mentre es pujava el vídeo." @@ -934,8 +975,8 @@ msgstr "Hi ha hagut un problema en provar d'obrir el xat" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "hi ha hagut un problema desconegut" msgid "an unknown labeler" msgstr "un etiquetador desconegut" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "i" @@ -963,10 +1004,14 @@ msgstr "i" msgid "Animals" msgstr "Animals" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "GIF animat" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "Comunicat" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "Anunciant la verificació a Bluesky" @@ -980,7 +1025,13 @@ msgstr "Comportament antisocial" msgid "Anybody can interact" msgstr "Qualsevol pot interactuar" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "Qualsevol que em segueixi" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "Els noms de contrasenyes d'aplicació només poden contenir lletres, nú msgid "App password names must be at least 4 characters long" msgstr "Els noms de contrasenyes d'aplicació han de tenir almenys 4 caràcters" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Contrasenyes de l'aplicació" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Contrasenyes de l'aplicació" @@ -1053,10 +1104,10 @@ msgstr "Apel·la la suspensió" msgid "Appeal this decision" msgstr "Apel·la aquesta decisió" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Aparença" @@ -1065,12 +1116,20 @@ msgstr "Aparença" msgid "Apply default recommended feeds" msgstr "Aplica els canals recomanats per defecte" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "Aplica la petició d'integració Pull Request" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Arxivat del dia {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Publicació arxivada" @@ -1078,7 +1137,7 @@ msgstr "Publicació arxivada" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Segur que voleu suprimir la contrasenya de l'aplicació \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Estàs segur que vols esborrar aquest missatge? El missatge s'esborrarà per a tu, però no per als altres participants." @@ -1098,19 +1157,15 @@ msgstr "Segur que vols abandonar la conversa?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Estàs segur que vols abandonar aquesta conversa? Els missatges s'esborraran per a tu, però no per a l'altre participant." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Confirmes que vols eliminar {0} dels teus canals?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Segur que vols eliminar-ho dels teus canals?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Confirmes que vols descartar aquest esborrany?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Estàs segur que vols descartar aquesta publicació?" @@ -1131,29 +1186,26 @@ msgstr "Art" msgid "Artistic or non-erotic nudity." msgstr "Nuesa artística o no eròtica." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "Assigna un tema per a l'algoritme" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Almenys 3 caràcters" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Les opcions de reproducció automàtica s'han mogut a la <0>Configuració de contingut i multimèdia." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Reprodueix automàticament vídeos i GIFs" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "Disponible" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Reprodueix automàticament vídeos i GIFs" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Endarrere" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Torna als xats" @@ -1195,28 +1247,44 @@ msgstr "Abans de crear un starter pack, primer has de verificar el teu correu." msgid "Before you can accept this chat request, you must first verify your email." msgstr "Abans d'acceptar aquest xat, primer has de verificar el teu correu." +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "Abans de poder rebre notificacions de les publicacions de {name}, primer has de verificar el teu correu electrònic." + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "Abans de poder enviar missatges a un altre usuari, primer has de verificar el teu correu." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "Comença" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "Comença el procés de garantia d'edat" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "Comença el procés de garantia d'edat emplenant els següents camps." + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Aniversari" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Bloqueja" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Bloqueja" msgid "Block account" msgstr "Bloqueja el compte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Vols bloquejar el compte?" @@ -1262,20 +1330,20 @@ msgstr "Bloqueja l'usuari" msgid "Block User" msgstr "Bloqueja l'usuari" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Bloquejada" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Comptes bloquejats" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Comptes bloquejats" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 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." @@ -1284,11 +1352,11 @@ msgstr "Els comptes bloquejats no poden respondre cap fil teu, ni anomenar-te ni msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Els comptes bloquejats no poden respondre a cap fil teu, ni anomenar-te ni interactuar amb tu de cap manera. No veuràs mai el seu contingut ni ells el teu." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Publicació bloquejada." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "El bloqueig no evita que aquest etiquetador apliqui etiquetes al teu compte." @@ -1309,11 +1377,12 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky no pot confirmar l'autenticitat de la data declarada." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1347,6 +1416,14 @@ msgstr "Bluesky no mostrarà el teu perfil ni les publicacions als usuaris que n msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky verificarà de manera proactiva comptes notables i autèntics." +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "Directrius de la comunitat de Bluesky" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "Directrius actualitzades de la comunitat de Bluesky" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Difumina les imatges i filtra-ho dels canals" msgid "Books" msgstr "Llibres" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Explora més comptes a la pàgina Explora" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Explora més canals a la pàgina Explora" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Explora més recomanacions" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Explora més recomanacions a la pàgina Explora" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Negocis" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Per {0}" @@ -1428,15 +1502,23 @@ msgstr "Per {0}" msgid "By <0>{0}" msgstr "Per <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "En fer clic a \"Continua\", reconeixes que entens i acceptes aquestes actualitzacions." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "En continuar, acceptes les <0>Condicions d'ús de KWS i reconeixes que KWS emmagatzemarà el teu estat verificat amb la teva adreça electrònica codificada amb hash d'acord amb la <1>Política de privadesa de KWS. Això vol dir que no hauràs de tornar a verificar-ho la pròxima vegada que utilitzis aquest correu electrònic per a altres aplicacions, jocs i serveis amb tecnologia KWS." + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Creant un compte indiques que estàs d'acord amb la <0>Política de privadesa." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Creant un compte indiques que estàs d'acord amb les <0>Condicions del servei i amb la <0>Política de privadesa." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Creant un compte indiques que estàs d'acord amb les <0>Condicions del servei." @@ -1448,14 +1530,17 @@ msgstr "Per tu" msgid "Camera" msgstr "Càmera" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Càmera" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Cancel·la" @@ -1500,11 +1582,7 @@ msgstr "Cancel·la la supressió del compte" msgid "Cancel image crop" msgstr "Cancel·la la retallada de la imatge" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Cancel·la l'edició del perfil" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Cancel·la la citació de la publicació" @@ -1516,14 +1594,10 @@ msgstr "Cancel·la la reactivació i surt" msgid "Cancel search" msgstr "Cancel·la la cerca" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Cancel·la obrir la web enllaçada" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "No pots interactuar amb un usuari bloquejat" @@ -1553,17 +1627,12 @@ msgstr "Canvia la icona de l'aplicació a \"{0}\\" msgid "Change app language" msgstr "Canvia l'idioma de l'aplicació" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Canvia l'adreça de correu" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Canvia l'identificador" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Canvia el servei de moderació" @@ -1579,14 +1648,6 @@ msgstr "Canvia l'idioma de la publicació a {suggestedLanguageName}" msgid "Change report reason" msgstr "Canvia" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Canvia el teu correu" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Canvia la teva adreça de correu" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Canvia la icona de l'aplicació" @@ -1596,10 +1657,15 @@ msgstr "Canvia la icona de l'aplicació" msgid "Changes hosting provider" msgstr "Canvia el proveïdor d'allotjament" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "Canvis desats" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Xat" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Xat esborrat" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "Missatges del xat - silenciats" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "Missatges del xat - amb so" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Xat silenciat" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "Safata de sol·licituds de xat" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Sol·licituds de xat" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Configuració del xat" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Configuració del xat" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Xat no silenciat" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Xats" @@ -1661,7 +1738,7 @@ msgstr "Comprova el teu correu per a rebre el codi de confirmació i entra'l aqu msgid "Choose domain verification method" msgstr "Tria el mètode de verificació del domini" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Tria els canals" @@ -1669,7 +1746,7 @@ msgstr "Tria els canals" msgid "Choose for me" msgstr "Tria per mi" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Tria les persones" @@ -1685,23 +1762,23 @@ msgstr "Tria aquest color com el teu avatar" msgid "Choose your account provider" msgstr "Tria el teu proveïdor de compte" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Tria la teva pròpia línia de temps! Els canals creats per la comunitat t'ajuden a trobar el contingut que t'agrada." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Tria la teva contrasenya" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "El teu identificador d'usuari" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Esborra totes les dades emmagatzemades" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Esborra totes les dades emmagatzemades (i després reinicia)" @@ -1714,23 +1791,27 @@ msgstr "Esborra la memòria cau d'imatges" msgid "Clear search query" msgstr "Esborra la cerca" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "Fes clic per obtenir informació" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "clica aquí" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "Fes clic aquí per reiniciar el procés de verificació." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "Fes clic aquí per actualitzar el teu correu" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Clica per a deshabilitar les citacions d'aquesta publicació." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Clica per a habilitar les citacions d'aquesta publicació." @@ -1750,14 +1831,16 @@ msgstr "Clima" msgid "Clip 🐴 clop 🐴" msgstr "Clop 🐴 clop 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Clop 🐴 clop 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Tanca" @@ -1789,13 +1876,15 @@ msgstr "Tanca l'advertència" msgid "Close bottom drawer" msgstr "Tanca el calaix inferior" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Tanca el diàleg" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Tanca el menú lateral" @@ -1804,7 +1893,7 @@ msgstr "Tanca el menú lateral" msgid "Close emoji picker" msgstr "Tanca el selector d'emojis" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Tanca el diàleg de GIF" @@ -1822,7 +1911,7 @@ msgstr "Tanca el visor d'imatges" msgid "Close menu" msgstr "Tanca el menú" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Tanca aquest diàleg" @@ -1830,7 +1919,7 @@ msgstr "Tanca aquest diàleg" msgid "Closes password update alert" msgstr "Tanca l'alerta d'actualització de contrasenya" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "Tanca l'editor de la publicació i descarta l'esborrany" @@ -1843,16 +1932,16 @@ msgstr "Tanca el selector d'emojis" msgid "Closes viewer for header image" msgstr "Tanca la visualització de la imatge de la capçalera" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Plega la llista d'usuaris" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Plega la llista d'usuaris per una notificació concreta" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Mode de color" @@ -1870,7 +1959,8 @@ msgstr "Comèdia" msgid "Comics" msgstr "Còmics" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Directrius de la comunitat" @@ -1879,38 +1969,34 @@ msgstr "Directrius de la comunitat" msgid "Complete onboarding and start using your account" msgstr "Finalitza el registre i comença a utilitzar el teu compte" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Completa la prova" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Crea una nova publicació" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Crear publicacions de fins a {0, plural, one {}other {# caràcters}} de longitud" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Redacta una resposta" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Comprimint el vídeo..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Configura els filtres de continguts per la categoria: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Configurat a <0>configuració de moderació." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Confirma la configuració de l'idioma del contingut" msgid "Confirm delete account" msgstr "Confirma l'eliminació del compte" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Confirma la teva edat:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Confirma la teva data de naixement" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Confirma la teva data de naixement" msgid "Confirmation code" msgstr "Codi de confirmació" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Codi de confirmació" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Connectant…" -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "Problema de connexió" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "Contacta amb el nostre equip de moderació" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Contacta amb suport" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "Contacteu-nos" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Contingut i multimèdia" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Contingut i multimèdia" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Contingut i multimèdia" @@ -1977,7 +2069,8 @@ msgstr "Contingut i multimèdia" msgid "Content Blocked" msgstr "Contingut bloquejat" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Filtres de contingut" @@ -2006,10 +2099,12 @@ msgstr "Advertència del contingut" msgid "Content warnings" msgstr "Advertències del contingut" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Teló de fons del menú contextual, fes clic per a tancar-lo." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Continua" msgid "Continue as {0} (currently signed in)" msgstr "Continua com a {0} (sessió actual)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "Continua el fil" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Continua el fil..." @@ -2029,6 +2129,10 @@ msgstr "Continua el fil..." msgid "Continue to next step" msgstr "Continua" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "Conversa" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Copiat" msgid "Copied build version to clipboard" msgstr "Número de versió copiat en memòria" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Copia la versió de construcció al porta-retalls" msgid "Copy" msgstr "Copia" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "Copia de totes maneres" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Copia la contrasenya d'aplicació" @@ -2087,8 +2187,8 @@ msgstr "Copia la contrasenya d'aplicació" msgid "Copy at:// URI" msgstr "Copia at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Copia DID de l'autor" @@ -2120,10 +2220,10 @@ msgstr "Copia l'enllaç" msgid "Copy link to list" msgstr "Copia l'enllaç a la llista" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Copia l'enllaç a la publicació" @@ -2136,18 +2236,18 @@ msgstr "Copia l'enllaç al perfil" msgid "Copy link to starter pack" msgstr "Copia l'enllaç a l'starter pack" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Copia el text del missatge" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Copia at:// URI de la publicació" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Copia el text de la publicació" @@ -2159,11 +2259,25 @@ msgstr "Copia el codi QR" msgid "Copy TXT record value" msgstr "Copia el valor del registre TXT" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Política de drets d'autor" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "No s'ha pogut connectar al canal personalitzat" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "No s'ha pogut connectar al servei de canals" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "No s'ha pogut trobar el perfil" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "No s'ha pogut silenciar el xat" msgid "Could not process your video" msgstr "No s'ha pogut processar el teu vídeo" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "No s'han pogut desar els canvis: {0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "No s'ha pogut actualitzar la configuració de notificacions" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Crea" @@ -2195,7 +2317,7 @@ msgstr "Crea un codi QR per a un starter pack" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Crea un starter pack" @@ -2205,21 +2327,22 @@ msgstr "Crea un starter pack per a mi" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Registra't" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Crea un compte" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Crea un compte" @@ -2241,7 +2364,7 @@ msgstr "Crea'n un altre" msgid "Create new account" msgstr "Crea un nou compte" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Crea un informe per a {0}" @@ -2268,7 +2391,7 @@ msgstr "Personalitzat" msgid "Customization options" msgstr "Opcions de personalització" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Personalitza qui pot interactuar amb aquesta publicació." @@ -2278,12 +2401,12 @@ msgstr "Personalitza la teva experiència a Bluesky" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Fosc" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Fosc" @@ -2292,21 +2415,21 @@ msgstr "Fosc" msgid "Dark mode" msgstr "Mode fosc" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Tema fosc" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Data de naixement" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Desactiva el compte" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Moderació de depuració" @@ -2314,7 +2437,7 @@ msgstr "Moderació de depuració" msgid "Debug panel" msgstr "Panell de depuració" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Per defecte" @@ -2322,8 +2445,8 @@ msgstr "Per defecte" msgid "Default icons" msgstr "Icones per defecte" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Icones per defecte" msgid "Delete" msgstr "Elimina" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Elimina el compte" @@ -2355,7 +2478,7 @@ msgstr "Vols eliminar la contrasenya d'aplicació?" msgid "Delete chat" msgstr "Elimina el xat" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Suprimeix el registre de declaració de xat" @@ -2370,7 +2493,7 @@ msgstr "Elimina la conversa" msgid "Delete Conversation" msgstr "Elimina la conversa" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Elimina-ho per mi" @@ -2378,11 +2501,11 @@ msgstr "Elimina-ho per mi" msgid "Delete list" msgstr "Elimina la llista" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Elimina el missatge" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Elimina el missatge per mi" @@ -2390,9 +2513,9 @@ msgstr "Elimina el missatge per mi" msgid "Delete my account" msgstr "Elimina el meu compte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Elimina la publicació" @@ -2409,11 +2532,11 @@ msgstr "Vols eliminar l'starter pack?" msgid "Delete this list?" msgstr "Vols eliminar aquesta llista?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Vols eliminar aquesta publicació?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Eliminat" @@ -2422,15 +2545,20 @@ msgstr "Eliminat" msgid "Deleted Account" msgstr "Compte eliminat" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "Llista eliminada" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Publicació eliminada." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Descripció" @@ -2447,12 +2575,12 @@ msgstr "La descripció és massa llarga. {DESCRIPTION_MAX_GRAPHEMES, plural, one msgid "Descriptive alt text" msgstr "Text alternatiu descriptiu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Desenganxa la citació" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Vols desenganxar la citació?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Mode desenvolupador habilitat" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Opcions de desenvolupador" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Diàleg: ajusta qui pot interactuar amb aquesta publicació" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Tènue" @@ -2492,27 +2620,27 @@ msgstr "Deshabilita la verificació en dos passos per correu" msgid "Disable Email 2FA" msgstr "Desactiva el correu 2FA" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Desactiva la retroalimentació hàptica" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Deshabilita els subtítols" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Desactivat" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Descarta" @@ -2520,11 +2648,11 @@ msgstr "Descarta" msgid "Discard changes?" msgstr "Vols descartar els canvis?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Vols descartar l'esborrany?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Vols descartar la publicació?" @@ -2542,7 +2670,7 @@ msgstr "Descobreix canals" msgid "Discover new custom feeds" msgstr "Descobreix nous canals personalitzats" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Descobreix nous canals" @@ -2550,7 +2678,7 @@ msgstr "Descobreix nous canals" msgid "Dismiss" msgstr "Descarta" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Descarta l'error" @@ -2562,26 +2690,26 @@ msgstr "Ignora la guia d'inici" msgid "Dismiss interests" msgstr "Descarta interessos" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "Descarta el missatge" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Amaga aquesta secció" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Mostra insígnies de text alternatiu més grans" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Nom mostrat" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Nom mostrat" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "El nom de visualització és massa llarg" @@ -2603,15 +2731,11 @@ msgstr "No silenciïs aquesta paraula als usuaris que segueixo" msgid "Does not include nudity." msgstr "No inclou nuesa." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "No comença ni acaba amb un guionet" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Domini verificat!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "No tens un codi o en necessites un? <0>Clica aquí." @@ -2619,6 +2743,15 @@ msgstr "No tens un codi o en necessites un? <0>Clica aquí." msgid "Don't see an email? <0>Click here to resend." msgstr "No has rebut el correu? <0>Clica aquí per a reenviar-lo." +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "No ho tornis a mostrar" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "No pateixis! Tots els missatges i la configuració existents es desen i estaran disponibles un cop s'hagi verificat que ets adult." + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "Fes un toc doble o premeu llargament el missatge per a afegir una reacci msgid "Double tap to close the dialog" msgstr "Fes doble toc per tancar el diàleg" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Fes dos tocs per a fer m'agrada" @@ -2673,7 +2806,7 @@ msgstr "Descarrega Bluesky" msgid "Download CAR file" msgstr "Descarrega el fitxer CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Deixa anar a afegir imatges" @@ -2689,18 +2822,10 @@ msgstr "p. ex. jordi" msgid "e.g. Alice Lastname" msgstr "p. ex. Jordi Cognom" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "p. ex. Jordi Guix" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "p. ex. jordi.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "p. ex. Artista, amant dels gossos i amant de la lectura." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "p. ex. nuesa artística." @@ -2725,10 +2850,11 @@ msgstr "p. ex. Usuaris que sempre responen amb anuncis." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Cada codi funciona un cop. Rebràs més codis d'invitació periòdicament." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Edita" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Edita" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Edita l'avatar" @@ -2749,12 +2875,12 @@ msgstr "Edita els canals" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Edita la imatge" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Edita les preferències de les interaccions" @@ -2776,33 +2902,33 @@ msgstr "Edita l'estat en directe" msgid "Edit Moderation List" msgstr "Edita la llista de moderació" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Edita els meus canals" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Edita el meu perfil" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "Edita les notificacions de {0}" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Edita les persones" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Edita les preferències de les interaccions a la publicació" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Edita el perfil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Edita el perfil" @@ -2814,19 +2940,11 @@ msgstr "Edita l'starter pack" msgid "Edit User List" msgstr "Edita la llista d'usuaris" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Edita qui pot respondre" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Edita el teu nom mostrat" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Edita la descripció del teu perfil" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Edita el teu starter pack" @@ -2839,8 +2957,8 @@ msgstr "Ensenyament" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "El creador d'aquesta llista t'ha bloquejat o l'has bloquejat tu." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "Correu" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "Correu 2FA desactivat" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "Correu 2FA activat" @@ -2865,10 +2983,6 @@ msgstr "S'ha tornat a enviar el correu" msgid "Email sent!" msgstr "Correu enviat!" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "Correu actualitzat!" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "Verificació per correu completada!" @@ -2883,8 +2997,8 @@ msgstr "Incrusta el codi HTML" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Incrusta la publicació" @@ -2892,7 +3006,7 @@ msgstr "Incrusta la publicació" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incrusta aquesta publicació al teu lloc web. Copia el fragment següent i enganxa'l al codi HTML del teu lloc web." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Incrusta el reproductor de vídeo" @@ -2906,7 +3020,7 @@ msgstr "Habilita" msgid "Enable {0} only" msgstr "Habilita només {0}" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Habilita el contingut per a adults" @@ -2919,16 +3033,20 @@ msgstr "Habilita la verificació en dos passos per correu" msgid "Enable external media" msgstr "Habilita els continguts externs" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Habilita reproductors de contingut per" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Activa les notificacions prioritàries" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "Activa les notificacions per a un compte visitant el seu perfil i prement la <0>icona de la campana <1/>." -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "Activa les notificacions push" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Habilita els subtítols" @@ -2941,17 +3059,14 @@ msgstr "Habilita només per aquesta font" msgid "Enable trending topics" msgstr "Activa els temes del moment " +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Activa els vídeos populars al canal Discover" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Activa els vídeos populars al canal Discover." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Habilitat" @@ -2963,7 +3078,7 @@ msgstr "Fi del canal" msgid "Ensure you have selected a language for each subtitle file." msgstr "Assegura't que has seleccionat un idioma per a cada fitxer de subtítols." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Introdueix una contrasenya" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Introdueix una lletra o etiqueta" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "Entra el codi" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Entra el codi" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Entra a pantalla completa" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Introdueix la teva data de naixement" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Introdueix el teu correu" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Introdueix el teu nou correu a continuació." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Introdueix la teva contrasenya" @@ -3022,7 +3129,7 @@ msgstr "Introdueix la teva contrasenya" msgid "Enter your username and password" msgstr "Introdueix el teu usuari i contrasenya" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Canvia a pantalla completa" @@ -3030,16 +3137,28 @@ msgstr "Canvia a pantalla completa" msgid "Entertainment" msgstr "Entreteniment" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Error" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "Error carregant la publicació" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "S'ha produït un error en carregar la preferència" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "Missatge d'error" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Ha ocorregut un error en desar el fitxer" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Error en rebre la resposta al captcha." @@ -3047,27 +3166,34 @@ msgstr "Error en rebre la resposta al captcha." msgid "Error:" msgstr "Error:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "Error: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Tothom" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Tothom pot respondre" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Tothom pot respondre a aquesta publicació." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Tothom" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "Tota la resta" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Exclou els usuaris que segueixes" msgid "Excludes users you follow" msgstr "Exclou els usuaris que segueixes" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Surt de la pantalla completa" @@ -3106,24 +3232,28 @@ msgstr "Surt de la visualització de la imatge" msgid "Expand alt text" msgstr "Expandeix el text alternatiu" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Expandeix la llista d'usuaris" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Expandeix o replega la publicació completa a la qual estàs responent" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "Expandeix el text de la publicació" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Amplia o redueix el text de la publicació" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "S'esperava que l'uri es resolgués en un registre" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Experimental" @@ -3153,15 +3283,15 @@ msgstr "Contingut explícit o potencialment pertorbador." msgid "Explicit sexual images." msgstr "Imatges sexuals explícites." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "Explora" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Exporta les meves dades" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Contingut extern" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 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:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Preferència del contingut extern" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "No s'ha pogut acceptar el xat" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "No s'ha pogut afegir la reacció d'emoji" @@ -3211,8 +3341,8 @@ msgstr "No s'ha pogut crear la contrasenya d'aplicació. Torna-ho a provar." msgid "Failed to create conversation" msgstr "No s'ha pogut crear la conversa" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "No s'ha pogut crear l'starter pack" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "No s'ha pogut esborrar el xat" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "No s'ha pogut esborrar el missatge" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "No s'ha pogut esborrar la publicació, torna-ho a provar" @@ -3238,8 +3368,8 @@ msgstr "No s'ha pogut esborrar la publicació, torna-ho a provar" msgid "Failed to delete starter pack" msgstr "No s'ha pogut eliminar l'starter pack" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "No s'han pogut carregar les converses" @@ -3250,14 +3380,32 @@ msgstr "No s'han pogut carregar les converses" msgid "Failed to load feeds preferences" msgstr "No s'han pogut carregar les preferències dels canals" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "No s'han pogut carregar els GIF" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "No s'ha pogut carregar la configuració de notificacions." + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "No s'han pogut carregar els missatges anteriors" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "No s'ha pogut carregar la preferència." + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "No s'han pogut carregar els canals suggerits" msgid "Failed to load suggested follows" msgstr "No s'han pogut carregar els comptes suggerits" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "No s'han pogut marcar totes les sol·licituds com a llegides" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "No s'ha pogut fixar la publicació" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "No s'ha pogut eliminar la reacció d'emoji" @@ -3291,15 +3439,11 @@ msgstr "No s'ha pogut eliminar la verificació" msgid "Failed to save image: {0}" msgstr "Error en desar la imatge: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Error en desar les preferències de les notificacions, torna-ho a provar" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "No s'ha pogut desar la configuració. Torna-ho a provar." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "No s'han pogut desar els teus interessos." @@ -3318,7 +3462,7 @@ msgstr "No s'ha pogut enviar el correu. Torna-ho a provar." msgid "Failed to submit appeal, please try again." msgstr "No s'ha pogut enviar l'apel·lació, torna-ho a provar." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "No s'ha pogut desactivar el silenci del fil; torneu-ho a provar" @@ -3335,7 +3479,11 @@ msgstr "No s'ha pogut actualitzar el correu. Torna-ho a provar." msgid "Failed to update feeds" msgstr "No s'han pogut actualitzar els canals" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "No s'ha pogut actualitzar la declaració de notificació" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "No s'ha pogut actualitzar la configuració" @@ -3354,15 +3502,23 @@ msgstr "No s'ha pogut verificar el correu. Torna-ho a provar." msgid "Failed to verify handle. Please try again." msgstr "No s'ha pogut verificar l'identificador. Torna-ho a provar." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Canal" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Canal per {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "Creador del canal" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "Identificador del canal" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Menú del canal" @@ -3371,35 +3527,39 @@ msgstr "Menú del canal" msgid "Feed toggle" msgstr "Alterna el canal" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "Canal no disponible" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Comentaris" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Comentaris enviats!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Canals" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 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/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Canals actualitzats!" @@ -3428,6 +3588,14 @@ msgstr "Filtra la cerca per idioma" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtra la cerca per idioma (actualment: {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "Filtra qui pot optar per rebre notificacions de la teva activitat" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "Filtra de qui reps notificacions" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Finalitzant" @@ -3448,7 +3616,7 @@ msgstr "Troba gent per seguir" msgid "Find posts, users, and feeds on Bluesky" msgstr "Troba publicacions, usuaris i canals a Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Finalitza" @@ -3456,17 +3624,17 @@ msgstr "Finalitza" msgid "Fitness" msgstr "Exercici" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Negre pla" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Blau pla" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Blanc pla" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Flexible" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Segueix" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Segueix {0}" @@ -3518,7 +3686,7 @@ msgstr "Segueix el compte" msgid "Follow all" msgstr "Segueix-los a tots" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Segueix" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Segueix" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Seguit per <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Seguit per <0>{0} i {1, plural, one {# altre} other {# altres}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Seguit per <0>{0} i <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Seguit per <0>{0}, <1>{1}, i {2, plural, one {# altre} other {# altres}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Seguidors de @{0} que coneixes" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Seguidors que coneixes" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Seguint" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Seguint" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Seguint {0}" @@ -3579,8 +3751,8 @@ msgstr "Seguint {handle}" msgid "Following feed preferences" msgstr "Preferències del canal Seguint" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Preferències del canal Seguint" @@ -3592,11 +3764,11 @@ msgstr "Et segueix" msgid "Follows You" msgstr "Et segueix" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Tipus de lletra" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Mida de la lletra" @@ -3613,7 +3785,7 @@ msgstr "Per motius de seguretat necessitem enviar-te un codi de confirmació al msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Per motius de seguretat, no podràs tornar a veure això. Si perds aquesta contrasenya d'aplicació, n'hauràs de generar una de nova." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Per obtenir la millor experiència, et recomanem utilitzar el tipus de lletra del tema." @@ -3643,11 +3815,15 @@ msgstr "Oblidada?" msgid "Frequently Posts Unwanted Content" msgstr "Publica contingut no desitjat freqüentment" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "De" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "De @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "De <0/>" @@ -3660,14 +3836,68 @@ msgstr "Galeria" msgid "Generate a starter pack" msgstr "Genera un starter pack" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Aconsegueix ajuda" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "Rep notificacions quan la gent et segueixi." + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "Rep notificacions quan a la gent li agradin les publicacions que has republicat." + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "Rep notificacions quan a la gent li agradin les teves publicacions." + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "Rep notificacions quan la gent et mencioni." + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "Rep notificacions quan la gent citi les teves publicacions." + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "Rep notificacions quan la gent respongui a les teves publicacions." + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "Rep notificacions quan la gent republiqui publicacions que has republicat." + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "Rep notificacions quan la gent republiqui les teves publicacions." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "Rep notificacions sobre noves publicacions" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Rep notificacions sobre publicacions i respostes dels comptes que triïs." + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "Rep notificacions de les noves publicacions de {name}" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "Rep notificacions de l'activitat d'aquest compte" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "Rep una notificació quan {name} publiqui" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "Rep notificacions quan algú publiqui" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "Comença" @@ -3688,14 +3918,16 @@ msgstr "Posa una cara al teu perfil" msgid "Glaring violations of law or terms of service" msgstr "Infraccions flagrants de la llei o les condicions del servei" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "Emet en directe" msgid "Go live for" msgstr "Emet en directe durant" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "Vés al perfil de {firstAuthorName}" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "Ves a la configuració del compte" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Ves a la conversa amb {0}" @@ -3779,8 +4017,8 @@ msgstr "Mitjans gràfics" msgid "Half way there!" msgstr "Ja ets a mig camí!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Identificador" @@ -3797,7 +4035,7 @@ msgstr "S'ha canviat l'identificador!" msgid "Handle too long. Please try a shorter one." msgstr "L'identificador és massa llarg. Si us plau, prova'n un de més curt." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Hàptics" @@ -3806,7 +4044,7 @@ msgstr "Hàptics" msgid "Harassment, trolling, or intolerance" msgstr "Assetjament, troleig o intolerància" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Etiqueta" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Etiqueta: {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "Tens un codi?<0>Clica aquí." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Tens problemes?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Ajuda" @@ -3839,8 +4077,13 @@ msgstr "Ajuda la gent a saber que no ets un bot penjant una imatge o creant un a msgid "Here is your app password!" msgstr "Aquí tens la teva contrasenya d'aplicació!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "Hola 👋" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Amagat" @@ -3848,16 +4091,16 @@ msgstr "Amagat" msgid "Hidden by your moderation settings." msgstr "Amagat per la teva configuració de moderació." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Llista amagada" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Llista amagada" msgid "Hide" msgstr "Amaga" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Amaga" @@ -3875,18 +4118,18 @@ msgstr "Amaga" msgid "Hide customization options" msgstr "Amaga les opcions de personalització" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Amaga'm aquesta publicació" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Amaga la resposta per a tothom" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Amaga'm la resposta" @@ -3894,12 +4137,12 @@ msgstr "Amaga'm la resposta" msgid "Hide this card" msgstr "Amaga aquesta targeta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Vols amagar aquesta entrada?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Vols amagar aquesta resposta?" @@ -3913,11 +4156,11 @@ msgstr "Amaga els temes del moment" msgid "Hide trending topics?" msgstr "Vols amagar els temes del moment?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Vols amagar els vídeos populars?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Amaga la llista d'usuaris" @@ -3926,32 +4169,32 @@ msgstr "Amaga la llista d'usuaris" msgid "Hide verification badges" msgstr "Amaga les insígnies de verificació" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Amaga el contingut" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "S'ha produït algun error quan s'intentava connectar amb el servidor del canal. Avisa al propietari del canal d'aquest problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Sembla que el servidor del canal està mal configurat. Avisa al propietari del canal d'aquest problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Sembla que el servidor del canal està sense connexió. Avisa al propietari del canal d'aquest problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "El servidor del canal ha donat una resposta incorrecta. Avisa al propietari del canal d'aquest problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Tenim problemes per a trobar aquest canal. Potser ha estat eliminat." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Tenim problemes per a carregar aquestes dades. Mira a continuació per a veure més detalls. Contacta amb nosaltres si aquest problema continua." @@ -3959,15 +4202,15 @@ msgstr "Tenim problemes per a carregar aquestes dades. Mira a continuació per a msgid "Hmmmm, we couldn't load that moderation service." msgstr "No podem carregar el servei de moderació." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Espera! A poc a poc estem donant accés al vídeo i encara estàs a la cua. Torna més tard!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Inici" @@ -3984,10 +4227,10 @@ msgstr "Proveïdor d'allotjament" msgid "Hot" msgstr "Candent" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Respostes candents primer" @@ -3996,10 +4239,6 @@ msgstr "Respostes candents primer" msgid "How should we open this link?" msgstr "Com hem d'obrir aquest enllaç?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Ho entenc" msgid "If alt text is long, toggles alt text expanded state" msgstr "Si el text alternatiu és llarg, canvia l'estat expandit del text alternatiu" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Si encara no ets un adult segons les lleis del teu país, el teu tutor legal haurà de llegir aquests Termes en el teu lloc." @@ -4031,11 +4270,11 @@ msgstr "Si esborres aquesta llista no la podràs recuperar." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Si tens el teu propi domini, pots utilitzar-lo com a identificador. Això et permet autoverificar la teva identitat – <0>més informació." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "Si necessites actualitzar el teu correu, <0>clica aquí." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Si esborres aquesta publicació no la podràs recuperar." @@ -4047,6 +4286,10 @@ msgstr "Si actualitzes el teu correu, es deshabilitarà la verificació en dos p msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Si vols canviar la contrasenya t'enviarem un codi per a verificar que aquest compte és teu." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "Si vols restringir qui pot rebre notificacions de l'activitat del teu compte, pots canviar-ho a <0>Configuració → Privacitat i seguretat." + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "Si ets desenvolupador, pots allotjar el teu propi servidor." @@ -4091,13 +4334,41 @@ msgstr "Suplantació d'identitat o afirmacions falses sobre identitat o afiliaci msgid "Impersonation, misinformation, or false claims" msgstr "Suplantació d'identitat, desinformació o afirmacions falses" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "Integrades a l'aplicació" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "Notificacions integrades a l'aplicació" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "Integrades a l'aplicació, tothom" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "Integrades a l'aplicació, gent a qui segueixes" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "Integrades a l'aplicació, push" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "Integrades a l'aplicació, push, tothom" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "Integrades a l'aplicació, push, gent a qui segueixes" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Missatges inapropiats o enllaços explícits" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "La safata està buida" @@ -4105,7 +4376,7 @@ msgstr "La safata està buida" msgid "Incorrect username or password" msgstr "Nom d'usuari o contrasenya incorrectes" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Introdueix el codi que s'ha enviat al teu correu per a restablir la contrasenya" @@ -4113,7 +4384,7 @@ msgstr "Introdueix el codi que s'ha enviat al teu correu per a restablir la cont msgid "Input confirmation code for account deletion" msgstr "Introdueix el codi de confirmació per a eliminar el compte" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Introdueix una nova contrasenya" @@ -4129,10 +4400,14 @@ msgstr "Introdueix el codi que has rebut per correu" msgid "Interaction limited" msgstr "Interacció limitada" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Configuració de les interaccions" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "Introducció a les notificacions d'activitat" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "El codi de confirmació 2FA no és vàlid." msgid "Invalid handle. Please try a different one." msgstr "Identificador no vàlid. Si us plau, prova'n un altre." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Registre de publicació no vàlid o no admès" @@ -4158,7 +4433,7 @@ msgstr "Codi de verificació invàlid" msgid "Invite a Friend" msgstr "Convida un amic" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Codi d'invitació" @@ -4186,15 +4461,15 @@ msgstr "Convida els teus amics a seguir els teus canals i persones preferides" msgid "Invites, but personal" msgstr "Convida a Bluesky de manera més personalitzada" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "És correcte" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Ara només ets tu! Afegeix més persones al teu starter pack cercant a dalt." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "Identificador de la tasca: {0}" @@ -4220,11 +4495,27 @@ msgstr "Uneix-te a la conversa" msgid "Journalism" msgstr "Periodisme" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "Mantingueu-me informat/da" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "Política de privacitat de KWS" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "Condicions d'ús de KWS" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "Lloc web de KWS" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Etiquetat per {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Etiquetat per l'autor." @@ -4237,7 +4528,7 @@ msgstr "Etiquetes" msgid "Labels added" msgstr "Etiquetes afegides" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Les etiquetes són anotacions sobre els usuaris i el contingut. Poden ser utilitzades per a ocultar, advertir i categoritzar la xarxa." @@ -4253,22 +4544,30 @@ msgstr "Etiquetes al teu contingut" msgid "Language selection" msgstr "Tria l'idioma" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Configuració d'idioma" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Idiomes" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Més gran" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "Última iniciació fa {timeAgo}" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "Última iniciació ara mateix" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "El més recent" @@ -4282,7 +4581,6 @@ msgstr "més informació" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "Més informació" @@ -4290,6 +4588,10 @@ msgstr "Més informació" msgid "Learn More" msgstr "Més informació" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "Més informació sobre la garantia d'edat" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Més informació sobre Bluesky" @@ -4298,15 +4600,23 @@ msgstr "Més informació sobre Bluesky" msgid "Learn more about self hosting your PDS." msgstr "Més informació sobre com allotjament el teu PDS." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "Més informació sobre la moderació que s'ha aplicat a aquesta publicació" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Més informació sobre la moderació que s'ha aplicat a aquest contingut." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "Aprèn més sobre aquests canvis i com compartir les teves opinions amb nosaltres <0>llegint la nostra entrada de blog" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Aprèn més sobre aquests canvis i com compartir les teves opinions amb nosaltres llegint la nostra entrada de blog." + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Més informació d'aquesta advertència" @@ -4316,12 +4626,16 @@ msgstr "Més informació d'aquesta advertència" msgid "Learn more about verification on Bluesky" msgstr "Més informació sobre la verificació a Bluesky" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Més informació sobre què és públic a Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "Més informació a la <0>configuració del compte." + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Més informació." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Surt de la conversa" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Deixa'ls tots sense marcar per a veure tots els idiomes." +msgid "Leave them all unselected to see any language." +msgstr "Deixa'ls tots sense seleccionar per a veure tots els idiomes." -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Sortint de Bluesky" @@ -4370,7 +4685,7 @@ msgstr "Som-hi!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Clar" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "M'agrada" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "M'agrada ({0, plural, one {# m'agrada} other {# m'agrades}})" @@ -4397,6 +4712,10 @@ msgstr "Fes m'agrada a 10 publicacions" msgid "Like 10 posts to train the Discover feed" msgstr "Fes m'agrada a 10 publicacions per a entrenar el canal Discover" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "Notificacions de \"M'agrada\"" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Fes m'agrada a aquest canal" @@ -4405,8 +4724,8 @@ msgstr "Fes m'agrada a aquest canal" msgid "Like this labeler" msgstr "Fes m'agrada a aquest etiquetador" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Li ha agradat a" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Li ha agradat a" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Li ha agradat a {0, plural, one {# usuari} other {# usuaris}}" @@ -4428,20 +4747,36 @@ msgstr "Li ha agradat a {0, plural, one {# usuari} other {# usuaris}}" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Li ha agradat a {likeCount, plural, one {# usuari} other {# usuaris}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "M'agrades" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "M'agrades de les teves republicacions" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "Notificacions de m'agrades de les teves republicacions" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "M'agrades a aquesta publicació" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Lineal" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Llista" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Llista bloquejada" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Llista per {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "Llista per <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Llista teva" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "Creador de la llista" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Llista no silenciada" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Llistes" @@ -4537,7 +4876,7 @@ msgstr "Carrega'n més" msgid "Load more suggested feeds" msgstr "Carrega més canals suggerits" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Carrega noves notificacions" @@ -4552,11 +4891,11 @@ msgstr "Carrega noves publicacions" msgid "Loading..." msgstr "Carregant…" -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Registre" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Visibilitat pels usuaris no connectats" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo per @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo per <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Logo per <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Prem llargament per a obrir el menú d'etiquetes per a #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Té l'aspecte XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "Fes ajustaments a la configuració del correu del teu compte" msgid "Make one for me" msgstr "Fes-ne un per mi" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Assegura't que és aquí on vols anar!" @@ -4606,7 +4945,7 @@ msgstr "Assegura't que és aquí on vols anar!" msgid "Manage saved feeds" msgstr "Gestiona els canals desats" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "Gestiona la configuració de verificació" @@ -4614,9 +4953,9 @@ msgstr "Gestiona la configuració de verificació" msgid "Manage your muted words and tags" msgstr "Gestiona les teves etiquetes i paraules silenciades" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "Marca-ho tot com a llegit" @@ -4625,39 +4964,44 @@ msgstr "Marca-ho tot com a llegit" msgid "Mark as read" msgstr "Marca com a llegit" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "S'ha marcat tot com a llegit" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "Potser més tard" #: src/view/screens/Profile.tsx:227 msgid "Media" -msgstr "Contingut" +msgstr "Imatges" #: src/view/com/composer/labels/LabelsBtn.tsx:210 msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Continguts que poden ser inquietants o inadequats per a alguns públics." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "Notificacions de mencions" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "usuaris mencionats" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Usuaris mencionats" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Mencions" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Menú" @@ -4665,7 +5009,7 @@ msgstr "Menú" msgid "Message {0}" msgstr "Missatge {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Missatge esborrat" @@ -4674,11 +5018,11 @@ msgstr "Missatge esborrat" msgid "Message deleted" msgstr "Missatge esborrat" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "Missatge de @ {0}: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Missatge del servidor: {0}" @@ -4691,19 +5035,23 @@ msgstr "Camp d'entrada del missatge" msgid "Message is too long" msgstr "El missatge és massa llarg" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "Opcions del missatge" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Missatges" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Mitjanit" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "Notificacions diverses" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Compte enganyós" msgid "Misleading Post" msgstr "Publicació enganyosa" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderació" @@ -4725,17 +5073,17 @@ msgstr "Moderació" msgid "Moderation details" msgstr "Detalls de la moderació" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Llista de moderació per {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Llista de moderació per <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Llista de moderació teva" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "S'ha actualitzat la llista de moderació" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Llistes de moderació" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Llistes de moderació" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "preferències de moderació" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Estats de moderació" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Eines de moderació" @@ -4775,7 +5123,7 @@ msgstr "Eines de moderació" msgid "Moderator has chosen to set a general warning on the content." msgstr "El moderador ha decidit establir un advertiment general sobre el contingut." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Més" @@ -4790,13 +5138,13 @@ msgstr "Més canals" msgid "More options" msgstr "Més opcions" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Amb més m'agrada primer" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Respostes amb més m'agrada primer" @@ -4808,8 +5156,8 @@ msgstr "Pel·lícules" msgid "Music" msgstr "Música" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Silencia" @@ -4819,8 +5167,8 @@ msgstr "Silencia" msgid "Mute {tag}" msgstr "Silencia {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Silencia aquesta paraula només a les etiquetes" msgid "Mute this word until you unmute it" msgstr "Silencia aquesta paraula fins que digui prou" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Silencia el fil de debat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Silencia paraules i etiquetes" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Comptes silenciats" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Comptes silenciats" @@ -4898,7 +5246,7 @@ msgstr "Les publicacions dels comptes silenciats seran eliminats del teu canal i msgid "Muted by \"{0}\"" msgstr "Silenciat per \"{0}\"" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Paraules i etiquetes silenciades" @@ -4911,7 +5259,7 @@ msgstr "Silenciar és privat. Els comptes silenciats poden interactuar amb tu, p msgid "My Birthday" msgstr "El meu aniversari" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Els meus canals" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Natura" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "ves a {0}" @@ -4958,11 +5306,11 @@ msgstr "Navega a la pantalla següent" msgid "Navigates to your profile" msgstr "Navega al teu perfil" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Necessites canviar-lo?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "Has d'informar d'una infracció dels drets d'autor, una sol·licitud legal o un problema de compliment normatiu?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Necessites informar d'una infracció dels drets d'autor?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Nova" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "Nou {postsCount, plural, one {publicació} other{publicacions}} de {firstAuthorLink}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "Nou {postsCount, plural, one {publicació} other{publicacions}} de {firstAuthorName}" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Xat nou" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "Adreça de correu nova" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "Funció nova" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "Notificacions de nou seguidor" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "Nous seguidors" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Nous missatges" msgid "New Moderation List" msgstr "Nova llista de moderació" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Nova contrasenya" @@ -5029,7 +5396,7 @@ msgstr "Nova contrasenya" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Nova publicació" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Nova publicació" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Noves publicacions de {firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Noves publicacions de {firstAuthorName} i{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}}" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Diàleg d'informació d'usuari nou" @@ -5054,10 +5429,14 @@ msgstr "Diàleg d'informació d'usuari nou" msgid "New User List" msgstr "Nova llista d'usuaris" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Les respostes més noves primer" @@ -5071,15 +5450,15 @@ msgstr "Notícies" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "No hi ha panell de DNS" msgid "No expiry set" msgstr "Sense caducitat definida" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "No s'han trobat GIF destacats. Pot haver-hi un problema amb Tenor." @@ -5119,32 +5498,35 @@ msgstr "Sense imatge" msgid "No likes yet" msgstr "Encara no té cap m'agrada" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Ja no segueixes a {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "No pot contenir més de {MAX_SERVICE_HANDLE_LENGTH, plural, one {}other {# caràcters}}" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Encara no tens cap missatge" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Encara no tens cap notificació" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Ningú" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Ningú més que l'autor pot citar aquesta publicació." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "No hi ha publicacions aquí" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Encara no hi ha publicacions." @@ -5171,7 +5553,7 @@ msgstr "Cap resultat" msgid "No results for \"{0}\"." msgstr "No s'han trobat resultats per \"{0}\"." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "No s'han trobat resultats" @@ -5179,9 +5561,9 @@ msgstr "No s'han trobat resultats" msgid "No results found for \"{query}\"" msgstr "No s'han trobat resultats per \"{query}\"" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "No s'han trobat resultats per {query}" @@ -5189,7 +5571,7 @@ msgstr "No s'han trobat resultats per {query}" msgid "No results." msgstr "Cap resultat." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "No s'han trobat resultats de cerca per a \"{search}\"." @@ -5198,7 +5580,7 @@ msgstr "No s'han trobat resultats de cerca per a \"{search}\"." msgid "No thanks" msgstr "No, gràcies" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Ningú" @@ -5223,59 +5605,76 @@ msgstr "No s'ha trobat ningú. Intenta cercar algú altre." msgid "Non-sexual Nudity" msgstr "Nuesa no sexual" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "Cap" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "No el segueix ningú a qui segueixes" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "No s'ha trobat" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Nota sobre compartir" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "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/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "Nota: Aquesta publicació només és visible per als usuaris que han iniciat la sessió." + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Aquí no hi ha res" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Filtres de les notificacions" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Configuració de les notificacions" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Configuració de les notificacions" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Sons de les notificacions" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Sons de les notificacions" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Notificacions" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "Notificacions per a tota la resta, com ara quan algú s'uneix a través d'un dels teus Starter Packs." + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "ara" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Nuesa o contingut per a adults no etiquetat com a tal" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Apagat" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Ostres!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "D'acord" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "D'acord" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Respostes més antigues primer" @@ -5331,19 +5736,19 @@ msgstr "Respostes més antigues primer" msgid "on<0><1/><2><3/>" msgstr "en<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Restableix la incorporació" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "Falta el text alternatiu a un o més GIFs." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Falta el text alternatiu a una o més imatges." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Falta el text alternatiu a un o més videos." @@ -5351,13 +5756,15 @@ msgstr "Falta el text alternatiu a un o més videos." msgid "Only .jpg and .png files are supported" msgstr "Només s'accepten fitxers .jpg i .png" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Només {0} poden respondre." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Només pot tenir lletres, nombres i guionets" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "Només seguidors que segueixo" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Només s'admeten fitxers d'imatge" msgid "Only WebVTT (.vtt) files are supported" msgstr "Només s'admeten fitxers WebVTT (.vtt)" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Ostres, alguna cosa ha anat malament!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Ostres!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Obre el menú del calaix" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Obre el selector d'emojis" @@ -5416,7 +5822,7 @@ msgstr "Obre el menú de les opcions del canal" msgid "Open full emoji list" msgstr "Obre la llista completa d'emojis" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Obre l'enllaç a {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Obre l'enllaç a {niceUrl}" msgid "Open message options" msgstr "Obre les opcions dels missatges" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Obre la pàgina de depuració de moderació" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Obre la configuració de les paraules i etiquetes silenciades" @@ -5453,16 +5859,16 @@ msgstr "Obre el menú de compatir" msgid "Open starter pack menu" msgstr "Obre el menú de l'starter pack" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Obre la pàgina d'historial" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Obre el registre del sistema" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Obre {numItems} opcions" @@ -5490,11 +5896,11 @@ msgstr "Obre la càmera del dispositiu" msgid "Opens captions and alt text dialog" msgstr "Obre el diàleg de subtítols i text alternatiu" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Obre el diàleg de canvi d'identificador" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Obre el compositor" @@ -5502,7 +5908,7 @@ msgstr "Obre el compositor" msgid "Opens device photo gallery" msgstr "Obre la galeria fotogràfica del dispositiu" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Obre el selector d'emojis" @@ -5520,15 +5926,19 @@ msgstr "Obre el procés per a iniciar sessió a un compte existent de Bluesky" msgid "Opens GIF select dialog" msgstr "Obre el diàleg per a triar GIF" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Obre el centre d'ajuda al navegador" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "Obre l'enllaç {0}" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Obre la llista de codis d'invitació" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "Obre el quadre de diàleg d'estat en directe" @@ -5536,12 +5946,8 @@ msgstr "Obre el quadre de diàleg d'estat en directe" msgid "Opens password reset form" msgstr "Obre el formulari de restabliment de la contrasenya" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Obre la web enllaçada" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Obre aquest perfil" @@ -5558,7 +5964,7 @@ msgstr "Opcionalment, proporciona informació addicional a continuació:" msgid "Options:" msgstr "Opcions:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "O combina aquestes opcions:" @@ -5600,6 +6006,10 @@ msgstr "Un altre compte" msgid "Other..." msgstr "Un altre…" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "La nostra entrada de blog" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "L'equip de moderació ha rebut la denúncia." @@ -5608,7 +6018,7 @@ msgstr "L'equip de moderació ha rebut la denúncia." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "L'equip de moderació ha revisat els informes i ha decidit desactivar-te l'accés als xats a Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Pàgina no trobada" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Pàgina no trobada" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Contrasenya actualitzada" msgid "Password updated!" msgstr "Contrasenya actualitzada!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Posa en pausa" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Posa en pausa el vídeo" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Gent" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Persones seguides per @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Persones seguint a @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "Gent que segueixo" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "S'ha denegat el permís per accedir a la teva biblioteca de fotos. Si us plau, activa-ho a la configuració del sistema." @@ -5704,12 +6119,12 @@ msgstr "Fixa a l'inici" msgid "Pin to Home" msgstr "Fixa a l'Inici" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Fixa-ho al teu perfil" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Fixat" @@ -5718,7 +6133,7 @@ msgstr "Fixat" msgid "Pinned {0} to Home" msgstr "{0} fixat a l'inici" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Canals de notícies fixats" @@ -5726,38 +6141,38 @@ msgstr "Canals de notícies fixats" msgid "Pinned to your feeds" msgstr "Fixat als teus canals" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Reprodueix" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Reprodueix {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Reprodueix el vídeo" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Reprodueix el vídeo" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Reprodueix o posa en pausa el GIF" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Reprodueix o posa en pausa el GIF" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Reprodueix el GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Reprodueix el vídeo" @@ -5765,12 +6180,16 @@ msgstr "Reprodueix el vídeo" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "Afegeix les etiquetes d'advertència de contingut aplicables als continguts multimèdia que publiques." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "Consulta la safata d'entrada del teu correu electrònic per obtenir més instruccions. Pot trigar un minut o dos a arribar." + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Tria el teu identificador." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Tria la teva contrasenya." @@ -5782,7 +6201,8 @@ msgstr "Fes clic a l'enllaç del correu que us acabem d'enviar per verificar la msgid "Please complete the verification captcha." msgstr "Completa el captcha de verificació." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Si us plau, comprova que has introduït la teva adreça de correu electrònic correctament." @@ -5804,6 +6224,7 @@ msgstr "Introdueix un nom únic per aquesta contrasenya d'aplicació o fes servi msgid "Please enter a valid code." msgstr "Introdueix un codi vàlid." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "Introdueix una adreça de correu vàlida." @@ -5812,7 +6233,11 @@ msgstr "Introdueix una adreça de correu vàlida." msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Introdueix una paraula, una etiqueta o una frase vàlida per a silenciar" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "Introdueix una adreça electrònica vàlida i no temporal. És possible que hagis d'accedir a aquesta adreça electrònica en el futur." + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "Introdueix el codi que t'hem enviat a <0>{0} a continuació." @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "Introdueix el codi de seguretat que et vam enviar a la teva adreça de correu anterior." #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Introdueix el teu correu." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Entra el teu codi d'invitació." @@ -5853,6 +6278,19 @@ msgstr "Explica per què creieu que aquesta etiqueta ha estat aplicada incorrect msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Expliqueu per què creus que els teus xats s'han desactivat incorrectament" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "Torna enrere o activa aquest element per tornar a l'inici del contingut actiu." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "Proporciona qualsevol detall addicional que creguis que els moderadors puguin necessitar per tal d'avaluar correctament el teu estat de garantia d'edat." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "Selecciona un idioma" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "Selecciona un servei de moderació" @@ -5870,9 +6308,9 @@ msgstr "Inicia sessió com a @{0}" msgid "Please verify your email" msgstr "Verifica el teu correu" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Verifica el teu correu" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "Escriu el teu missatge a continuació:" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Política" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Publica" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Publica" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Publica" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Publica-ho tot" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "Publicació bloquejada" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Publicació per {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Publicació per @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Publicació eliminada" @@ -5919,11 +6362,14 @@ msgstr "Publicació eliminada" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "No s'ha pogut penjar la publicació. Comprova la tevaa connexió a Internet i torna-ho a provar." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "La publicació s'ha eliminat" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Publicació amagada" @@ -5937,11 +6383,11 @@ msgstr "Publicació amagada per una paraula silenciada" msgid "Post Hidden by You" msgstr "Publicació amagada per tu" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Configuració de les interaccions de la publicació" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Configuració de les interaccions de la publicació" @@ -5954,8 +6400,10 @@ msgstr "Idioma de la publicació" msgid "Post Languages" msgstr "Idiomes de les publicacions" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Publicació no trobada" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Publicació sense fixar" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Publicacions" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Les publicacions es poden silenciar segons el seu text, les seves etiquetes o ambdues coses. Recomanem evitar les paraules habituals que apareixen en moltes publicacions, ja que pot provocar que no es mostri cap publicació." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Publicacions amagades" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "Publicacions, Respostes" + +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" msgstr "Enllaç potencialment enganyós" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Preferència desada" +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "Avís d'enllaç potencialment enganyós" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Prem per provar de connectar de nou" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Prem per a tornar-ho a provar" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Prem per veure els seguidors d'aquest compte que també segueixes" @@ -6015,40 +6469,46 @@ msgstr "Imatge anterior" msgid "Primary Language" msgstr "Idioma principal" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Prioritza els usuaris que segueixes" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Notificacions prioritàries" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Privacitat" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Privadesa i seguretat" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privadesa i seguretat" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "Configuració de privadesa i seguretat" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Política de privacitat" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Processant el vídeo..." @@ -6062,15 +6522,14 @@ msgstr "Processant…" msgid "profile" msgstr "perfil" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Perfil" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Perfil actualitzat" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Llistes públiques i compartibles que es poden utilitzar per generar feeds." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "Publica la publicació" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "Publica les publicacions" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "Publica les respostes" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "Publica la resposta" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "Push" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "Notificacions push" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "Push, tothom" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "Push, gent a qui segueixes" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "Codi QR copiat en memòria!" @@ -6119,44 +6594,52 @@ msgstr "Codi QR descarregat!" msgid "QR code saved to your camera roll!" msgstr "Codi QR desat a la teva galeria" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "Notificacions de citacions" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Cita la publicació" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "La publicació citada s'ha tornat a enganxar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "La publicació citada s'ha desenganxat amb èxit" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "S'han deshabilitat les citacions" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Configuració de les citacions" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Citacions" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Citacions d'aquesta publicació" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Aleatori (també conegut com a \"Poster's Roulette\")" @@ -6164,8 +6647,8 @@ msgstr "Aleatori (també conegut com a \"Poster's Roulette\")" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Has superat el límit – has intentat canviar l'identificador massa vegades en poc temps. Si us plau, espera un minut abans de tornar-ho a provar." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Torna a enganxar la citació" @@ -6177,30 +6660,42 @@ msgstr "Reacciona amb {emoji}" msgid "Reactivate your account" msgstr "Torna a activar el teu compte" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "Llegeix {0} {1, plural, one {resposta} other {respostes}} més" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Llegeix la publicació del blog" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Mostra'n menys" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Mostra'n més" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "Llegeix més respostes" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "Llegeix la publicació del nostre blog" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Llegeix el blog de Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Llegeix la política de privacitat de Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Llegeix els termes de servei de Bluesky" @@ -6213,6 +6708,14 @@ msgstr "Motiu de l'apel·lació" msgid "Reason:" msgstr "Raó:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "Rebre notificacions integrades a l'aplicació" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "Rebre notificacions push" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Cerques recents" @@ -6234,8 +6737,8 @@ msgstr "Rebutja" msgid "Reject chat request" msgstr "Rebutja la sol·licitud de xat" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Carrega les converses de nou" @@ -6244,10 +6747,9 @@ msgstr "Carrega les converses de nou" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Elimina" @@ -6259,17 +6761,17 @@ msgstr "Elimina a {displayName} de l'starter pack" msgid "Remove {historyItem}" msgstr "Elimina {historyItem}" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Elimina el compte" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Elimina l'adjunt" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Elimina l'avatar" @@ -6284,24 +6786,22 @@ msgstr "Elimina l'incrustat" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Elimina el canal" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Vols eliminar el canal?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Elimina dels meus canals" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Vols eliminar-lo de l'accés ràpid?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "Elimina'l dels canals desats" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "Vols eliminar-lo dels teus canals?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Elimina la imatge" @@ -6332,12 +6831,8 @@ msgstr "Elimina la paraula silenciada de la teva llista" msgid "Remove profile" msgstr "Elimina el perfil" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Elimina la citació" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Elimina la republicació" @@ -6345,7 +6840,7 @@ msgstr "Elimina la republicació" msgid "Remove subtitle file" msgstr "Eliminar el fitxer de subtítols" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Elimina aquest canal dels meus canals" @@ -6364,11 +6859,11 @@ msgstr "Elimina la verificació" msgid "Remove your verification for this account?" msgstr "Vols eliminar la teva verificació d'aquest compte?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Eliminat per l'autor" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Tu l'has eliminat" @@ -6377,10 +6872,6 @@ msgstr "Tu l'has eliminat" msgid "Removed from list" msgstr "Elimina de la llista" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Eliminat dels meus canals" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Eliminat dels canals desats" @@ -6395,34 +6886,36 @@ msgstr "Eliminat dels teus canals" msgid "Removed verification" msgstr "Verificació eliminada" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Elimina la publicació amb la citació" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Canvia amb Discover" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Respostes" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Respostes deshabilitades" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Les respostes a aquesta publicació estan deshabilitades." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Respon" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Respostes ({0, plural, one {# resposta} other {# respostes}})" @@ -6436,50 +6929,55 @@ msgstr "Aquesta resposta ha estat amagada per l'autor del fil de debat" msgid "Reply Hidden by You" msgstr "Has amagat aquesta resposta" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "Notificacions de respostes" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Configuració de les respostes" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "La configuració de les respostes la tria l'autor del fil de debat" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Ordenació de respostes" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Resposta a <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Resposta a una publicació bloquejada" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Resposta a una publicació" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Resposta a tu mateix" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "S'ha actualitzat la visibilitat de la resposta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "La resposta s'ha amagat amb èxit" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Informa del canal" msgid "Report list" msgstr "Denuncia la llista" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Informa del missatge" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Informa de la publicació" @@ -6567,25 +7065,26 @@ msgstr "Informa sobre aquest starter pack" msgid "Report this user" msgstr "Informa d'aquest usuari" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Republica" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Republica" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Republica ({0, plural, one {# republicació} other {# republicacions}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "Notificacions de republicacions" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Republica o cita la publicació" @@ -6594,35 +7093,47 @@ msgstr "Republica o cita la publicació" msgid "Reposted By" msgstr "Republicat per" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Republicat per {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Republicat per <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Republicat per tu" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "Republicacions" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Republicacions d'aquesta publicació" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "Demana un canvi" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "Republicacions de les teves republicacions" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "Notificacions de les republicacions de les teves republicacions" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "Demana un codi" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Requereix un text alternatiu abans de publicar" @@ -6630,7 +7141,7 @@ msgstr "Requereix un text alternatiu abans de publicar" msgid "Require an email code to sign in to your account." msgstr "Sol·licita el codi de correu per a iniciar sessió al teu compte." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Requerit per aquest proveïdor" @@ -6642,10 +7153,6 @@ msgstr "Obligatori a la teva regió" msgid "Resend" msgstr "Torna'l a enviar" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Torna a enviar el correu" msgid "Resend Verification Email" msgstr "Torna a enviar el correu de verificació" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "Restableix el toc de subscripció a l'activitat" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Codi de restabliment" @@ -6667,8 +7180,8 @@ msgstr "Codi de restabliment" msgid "Reset Code" msgstr "Codi de restabliment" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Restableix l'estat de la incorporació" @@ -6687,21 +7200,23 @@ msgstr "Torna a intentar l'última acció, que ha donat error" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Torna-ho a provar" @@ -6721,19 +7236,19 @@ msgstr "Torna a la pàgina d'inici" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Torna a la pàgina anterior" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Ves al pas anterior" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Ves al pas anterior" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Desa" @@ -6762,15 +7276,13 @@ msgstr "Desa" msgid "Save birthday" msgstr "Desa la data de naixement" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Desa els canvis" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Desa els canvis" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Desa el codi QR" msgid "Save to my feeds" msgstr "Desa-ho als meus canals" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Canals desats" @@ -6802,18 +7314,14 @@ msgstr "Canals desats" msgid "Saved to your feeds" msgstr "S'ha desat als teus canals." -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Desa qualsevol canvi al teu perfil" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Desa la configuració de retall d'imatges" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Digues hola!" @@ -6826,16 +7334,16 @@ msgstr "Ciència" msgid "Scroll to top" msgstr "Desplaça't cap a dalt" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Cerca" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Cerca a les publicacions de @{0}" @@ -6861,7 +7369,7 @@ msgstr "Cerca per \"{query}\"" msgid "Search for \"{searchText}\"" msgstr "Cerca per \"{searchText}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Cerca canals que vulgueu suggerir als altres." @@ -6877,10 +7385,14 @@ msgstr "Cerca més canals" msgid "Search for posts, users, or feeds" msgstr "Cerca publicacions, usuaris o canals" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Cerca GIF" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "La cerca no està disponible actualment amb la sessió tancada" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Cerca a les meves publicacions" @@ -6890,12 +7402,12 @@ msgstr "Cerca a les meves publicacions" msgid "Search posts" msgstr "Cerca publicacions" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Cerca perfils" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Cerca Tenor" @@ -6903,7 +7415,7 @@ msgstr "Cerca Tenor" msgid "Search..." msgstr "Cerca..." -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Cerca perfils" @@ -6912,10 +7424,6 @@ msgstr "Cerca perfils" msgid "Security step required" msgstr "Es requereix un pas de seguretat" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Es requereix un pas de seguretat" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "Mostra les publicacions amb {tag}" @@ -6936,14 +7444,31 @@ msgstr "Mostra les publicacions amb #{tag} de l'usuari" msgid "See jobs at Bluesky" msgstr "Veure les feines a Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "Veure més" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "Veure més compte que et poden agradar" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "Veure més perfils suggerits a la pàgina Explora" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Consulta aquesta guia" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Cerca el control lliscant. Utilitza les tecles de fletxa per cercar cap endavant i cap enrere, i l'espai per reproduir/pausar" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "Selecciona {0}" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Selecciona un color" @@ -6988,7 +7513,7 @@ msgstr "Selecciona d'un compte existent" msgid "Select GIF" msgstr "Selecciona GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Selecciona GIF \"{0}\"" @@ -6996,6 +7521,11 @@ msgstr "Selecciona GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "Tria per quant temps s'ha de silenciar aquesta paraula." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "Selecciona l'idioma" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Selecciona l'idioma..." @@ -7004,7 +7534,7 @@ msgstr "Selecciona l'idioma..." msgid "Select languages" msgstr "Selecciona els idiomes" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "Selecciona un servei de moderació" @@ -7045,12 +7575,12 @@ msgstr "Selecciona quin idioma vols utilitzar per a la interfície d'usuari de l msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Selecciona quins idiomes vols que incloguin els canals a què estàs subscrit. Si no en selecciones cap, es mostraran tots." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Selecciona la teva data de naixement" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Selecciona els teus interessos d'entre aquestes opcions" @@ -7058,7 +7588,11 @@ msgstr "Selecciona els teus interessos d'entre aquestes opcions" msgid "Select your preferred language for translations in your feed." msgstr "Selecciona el teu idioma preferit per a les traduccions al teu canal." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "Selecciona els teus canals de notificació preferits" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "Selecciona l'opció {i} de {numItems}" @@ -7066,17 +7600,9 @@ msgstr "Selecciona l'opció {i} de {numItems}" msgid "Send a neat website!" msgstr "Envia un lloc web net!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "Envia confirmació" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Envia correu de confirmació" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Envia correu" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Envia correu" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Envia comentari" @@ -7095,7 +7621,7 @@ msgstr "Envia comentari" msgid "Send message" msgstr "Envia el missatge" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "Envia la publicació a {name}" @@ -7114,20 +7640,20 @@ msgstr "Envia informe" msgid "Send report to {0}" msgstr "Envia informe a {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "Envia l'informe a {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Envia un correu de verificació" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Envia per missatge directe" @@ -7143,7 +7669,7 @@ msgstr "Adreça del servidor" msgid "Set app icon to {0}" msgstr "Estableix la icona de l'aplicació a {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Estableix la data de naixement" @@ -7159,13 +7685,57 @@ msgstr "Configura el teu compte" msgid "Sets email for password reset" msgstr "Estableix un correu per a restablir la contrasenya" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Configuració" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "Configuració de l'activitat d'altres persones" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "Configuració per permetre que altres persones rebin notificacions de les teves publicacions" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "Configuració de les notificacions de \"m'agrada\"" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "Configuració de les notificacions de mencions" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "Configuració de les notificacions de nou seguidor" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "Configuració de les notificacions de tota la resta" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "Configuració de les notificacions de m'agrades a les teves republicacions" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "Configuració de les notificacions de republicacions de les teves republicacions" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "Configuració de les notificacions de citacions" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "Configuració de les notificacions de respostes" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "Configuració de les notificacions de republicacions" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "Comparteix una història interessant!" msgid "Share a fun fact!" msgstr "Comparteix una dada divertida!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Comparteix de totes maneres" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "Comparteix el DID de l'autor" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Comparteix l'enllaç" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Comparteix l'enllaç" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Diàleg de compartició de l'enllaç" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "Comparteix l'URI at:// de la publicació" @@ -7247,8 +7812,8 @@ msgstr "Comparteix aquest starter pack" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Comparteix aquest starter pack i ajuda la gent de la teva comunitat a unir-se a Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "Comparteix a través de..." msgid "Share your favorite feed!" msgstr "Comparteix el teu canal preferit!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Comprovador de preferències compartides" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Comparteix la web enllaçada" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Mostra" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Mostra el text alternatiu" @@ -7303,8 +7864,8 @@ msgstr "Mostra les opcions de personalització" msgid "Show hidden replies" msgstr "Mostra les respostes ocultes" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Mostra'n menys com aquest" @@ -7312,55 +7873,63 @@ msgstr "Mostra'n menys com aquest" msgid "Show list anyway" msgstr "Mostra la llista de totes maneres" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Mostra més" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Mostra'n més com aquest" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "Mostra més respostes" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Mostra les respostes silenciades" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "Mostra les respostes a les publicacions en una vista d'arbre en fils" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Mostra les publicacions citades" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Mostra les respostes" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Mostra les respostes com a" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Mostra les respostes com a fils" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Mostra les respostes dels comptes que segueixes abans que les altres" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Mostra la resposta a tothom" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Mostra republicacions" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Mostra mostres dels teus canals a Seguint" @@ -7372,16 +7941,17 @@ msgstr "Mostra l'advertiment" msgid "Show warning and filter from feeds" msgstr "Mostra l'advertiment i filtra-ho dels canals" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Mostra informació sobre quan es va crear aquesta publicació" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "Mostra altres comptes als quals pots canviar" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Mostra el contingut" @@ -7390,14 +7960,15 @@ msgstr "Mostra el contingut" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "Inicia sessió a un compte que no està llistat" msgid "Sign in to Bluesky or create a new account" msgstr "Inicia sessió o crea el teu compte" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "Inicia la sessió per veure la publicació" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Tanca sessió" @@ -7444,8 +8020,8 @@ msgstr "Tanca sessió" msgid "Sign Out" msgstr "Tanca la sessió" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Tancar la sessió?" @@ -7459,12 +8035,12 @@ msgstr "Es requereix iniciar sessió" msgid "Signed in as @{0}" msgstr "S'ha iniciat sessió com a @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Comptes semblants" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Salta aquest pas" @@ -7472,12 +8048,11 @@ msgstr "Salta aquest pas" msgid "Skip this flow" msgstr "Salta aquest flux" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Més petit" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "Posposa el recordatori" @@ -7490,11 +8065,11 @@ msgstr "Desenvolupament de programari" msgid "Some of your verifications are invalid." msgstr "Algunes de les teves verificacions no són vàlides." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Alguns altres canals que potser t'agradaran" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Algunes persones poden respondre" @@ -7510,10 +8085,11 @@ msgstr "Algú ha reaccionat amb {0} a {1}" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "Hi ha alguna cosa que no va bé amb les dades que intenteu informar. Contacteu amb suport." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Alguna cosa ha fallat" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Alguna cosa ha fallat, torna-ho a provar" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Alguna cosa ha fallat, torna-ho a provar." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Alguna cosa ha fallat." +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "Alguna cosa ha fallat, torna-ho a provar d'aquí una estona." + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "Alguna cosa ha fallat, torna-ho a provar." @@ -7539,20 +8118,23 @@ msgstr "Alguna cosa ha fallat, torna-ho a provar." msgid "Something wrong? Let us know." msgstr "Alguna cosa no va a l'hora? Fes-nos-ho saber." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "La teva sessió ha caducat. Torna a iniciar-la." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Ordena les respostes" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Ordena les respostes per" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Ordena les respostes a la mateixa publicació per:" @@ -7579,7 +8161,7 @@ msgstr "Brossa; excessives mencions o respostes" msgid "Sports" msgstr "Esports" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "Enceta una conversa i apareixerà aquí." @@ -7601,9 +8183,9 @@ msgstr "Comença a afegir gent" msgid "Start chat with {displayName}" msgstr "Comença un xat amb {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Starter pack" @@ -7611,12 +8193,12 @@ msgstr "Starter pack" msgid "Starter pack by {0}" msgstr "Starter pack de: {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Starter pack de <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Starter pack fet per tu" @@ -7638,19 +8220,21 @@ msgstr "Els starter packs et permeten compartir els teus canals i persones prefe msgid "Status Page" msgstr "Pàgina d'estat" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Pas {0} de {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "L'emmagatzematge s'ha esborrat, cal que reinicieu l'aplicació ara." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Historial" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Envia l'apel·lació" msgid "Submit Appeal" msgstr "Envia l'apel·lació" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "Envia l'informe" @@ -7676,10 +8260,14 @@ msgstr "Envia l'informe" msgid "Subscribe" msgstr "Subscriure's" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Subscriu-te a @{0} per a utilitzar aquestes etiquetes:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "Subscriu-te a l'activitat del compte" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Subscriu-te a l'etiquetador" @@ -7692,8 +8280,12 @@ msgstr "Subscriu-te a aquest etiquetador" msgid "Subscribe to this list" msgstr "Subscriure's a la llista" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "Verificat" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Verificat" @@ -7705,7 +8297,7 @@ msgstr "Verificat correctament" msgid "Suggested Accounts" msgstr "Comptes suggerits" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Suggeriments per tu" @@ -7714,26 +8306,26 @@ msgstr "Suggeriments per tu" msgid "Suggestive" msgstr "Suggerent" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Alba" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Ocàs" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Suport" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Canvia el compte" @@ -7742,24 +8334,24 @@ msgstr "Canvia el compte" msgid "Switch Account" msgstr "Canvia el compte" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Canvia de compte" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "Canvia a {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Sistema" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Registres del sistema" @@ -7767,6 +8359,18 @@ msgstr "Registres del sistema" msgid "Tags only" msgstr "Només etiquetes" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "Toca per obtenir informació" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "Toca per obtenir més informació" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "Toca per reconèixer que entens i acceptes aquestes actualitzacions i continuar utilitzant Bluesky" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Explica'ns una mica més" msgid "Terms" msgstr "Condicions" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Condicions del servei" @@ -7848,10 +8454,6 @@ msgstr "Camp d'introducció de text" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "Gràcies pels teus comentaris! S'han enviat a l'operador del canal." -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Gràcies, el teu correu està verificat." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Gràcies. El teu informe s'ha enviat." @@ -7864,28 +8466,28 @@ msgstr "Gràcies, has verificat correctament el teu correu. Pots tancar aquest d msgid "That contains the following:" msgstr "Això conté els següents:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Aquest identificador ja està agafat." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "No s'ha pogut trobar aquest starter pack." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "Aquest nom d'usuari ja està agafat" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Això és tot, amics!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "Això és tot!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "El compte podrà interactuar amb tu després del desbloqueig." @@ -7900,7 +8502,7 @@ msgstr ";'aplicació es reiniciarà" msgid "The author of this thread has hidden this reply." msgstr "L'autor d'aquest fil de debat ha amagat aquesta resposta." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "L'aplicació web de Bluesky" @@ -7920,10 +8522,6 @@ msgstr "El canal Discover" msgid "The Discover feed now knows what you like" msgstr "El canal Discover ara sap el que t'agrada" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "L'adreça de correu que has entrat és la mateixa que la que tens actualment." - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "L'experiència és millor a l'aplicació. Baixa Bluesky ara i tornarem a començar on ho vas deixar." @@ -7944,8 +8542,16 @@ msgstr "Les següents etiquetes s'han aplicat als teus continguts." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "La configuració serà la que s'aplicarà per defecte quan facis noves publicacions. Pots editar les preferències d'una publicació específica a la finestra d'edició." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "La legislació de la teva ubicació exigeix que verifiquis que ets adult abans d'accedir a certes funcions de Bluesky, com ara el contingut per a adults i els missatges directes." + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "La legislació de la teva ubicació exigeix que verifiquis que ets adult per accedir a certes funcionalitats. Toca per obtenir més informació." + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "És possible que la publicació s'hagi esborrat." @@ -7953,9 +8559,10 @@ msgstr "És possible que la publicació s'hagi esborrat." msgid "The Privacy Policy has been moved to <0/>" msgstr "La política de privacitat ha estat traslladada a <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "El vídeo seleccionat supera els 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "El vídeo seleccionat té una mida superior a 100 MB. Torna-ho a provar amb un fitxer més petit." #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "Les condicions del servei han estat traslladades a" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "El codi de verificació que has proporcionat no és vàlid. Assegura't que has utilitzat l'enllaç de verificació correcte o sol·licita'n un de nou." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Tema" @@ -7990,14 +8597,14 @@ msgstr "Tema" msgid "There is no time limit for account deactivation, come back any time." msgstr "No hi ha límit de temps per a la desactivació del compte, torna quan vulguis." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Hi ha hagut un problema per a connectar amb Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Hi ha hagut un problema per a contactar amb el servidor" @@ -8006,17 +8613,12 @@ msgstr "Hi ha hagut un problema per a contactar amb el servidor" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "S'ha produït un problema en contactar amb el servidor, comprova la teva connexió a Internet i torna-ho a provar." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Hi ha hagut un problema per a contactar amb el teu servidor" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Hi ha hagut un problema en obtenir les notificacions. Toca aquí per a tornar-ho a provar." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Hi ha hagut un problema en obtenir les notificacions. Toca aquí per a tornar-ho a provar." @@ -8037,7 +8639,7 @@ msgstr "Hi ha hagut un problema en obtenir les teves llistes. Toca aquí per a t msgid "There was an issue fetching your service info" msgstr "Hi ha hagut un problema en recuperar la informació del teu servei" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "S'ha produït un problema en eliminar aquest canal. Comprova la teva connexió a Internet i torna-ho a provar." @@ -8052,9 +8654,9 @@ msgstr "S'ha produït un problema en enviar el teu informe. Comprova la teva con msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "S'ha produït un problema actualitzant els teus canals. Comprova la teva connexió a Internet i torna-ho a provar." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "S'ha produït un problema actualitzant els teus canals. Comprova la teva msgid "There was an issue! {0}" msgstr "Hi ha hagut un problema! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Hi ha hagut un problema! {0}" 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." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "S'ha produït un problema inesperat a l'aplicació. Fes-nos saber si això t'ha passat a tu!" @@ -8089,7 +8691,7 @@ msgstr "S'ha produït un problema inesperat a l'aplicació. Fes-nos saber si aix msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Hi ha hagut una gran quantitat d'usuaris nous a Bluesky! Activarem el teu compte tan aviat com puguem." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Aquests paràmetres només s'apliquen al canal Seguint." @@ -8146,7 +8748,7 @@ msgstr "Aquest contingut està allotjat a {0}. Vols habilitat els continguts ext msgid "This content is not available because one of the users involved has blocked the other." msgstr "Aquest contingut no està disponible per culpa que un dels usuaris involucrats ha bloquejat a l'altre." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Aquest contingut no es pot veure sense un compte de Bluesky." @@ -8158,6 +8760,10 @@ msgstr "Aquesta conversa és amb un compte suprimit o desactivat. Prem per obten msgid "This email is already associated with your account." msgstr "Aquest correu ja està associat amb el teu compte." +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "Aquesta funció permet als usuaris rebre notificacions de les teves noves publicacions i respostes. Per a qui vols habilitar-ho?" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Aquesta funció està en versió beta. Podeu obtenir més informació sobre les exportacions de repositoris en <0>aquesta entrada de bloc." @@ -8170,7 +8776,7 @@ msgstr "Aquesta funció no està disponible mentre s'utilitza una contrasenya d' msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Aquesta funció no està disponible mentre s'utilitza una contrasenya d'aplicació. Inicieu la sessió amb la contrasenya principal." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Aquest canal està rebent moltes visites actualment i està temporalment inactiu. Prova-ho més tard." @@ -8209,11 +8815,11 @@ msgstr "Aquesta etiqueta ha estat aplicada per l'autor." msgid "This label was applied by you." msgstr "Aquesta etiqueta ha estat aplicada per tu." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Aquest etiquetador no ha declarat quines etiquetes publica i pot ser que no estigui actiu." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Aquest enllaç et porta a la web:" @@ -8233,29 +8839,28 @@ msgstr "Aquesta llista està buida." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Aquest servei de moderació no està disponible. Mira a continuació per a obtenir més detalls. Si aquest problema persisteix, posa't en contacte amb nosaltres." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Aquesta publicació afirma haver estat creada el <0>{0}, però va ser vista per primera vegada per Bluesky el <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Aquesta publicació té un tipus de threadgate desconegut. És possible que la teva aplicació estigui obsoleta." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Aquesta publicació ha estat esborrada." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Aquesta publicació només és visible per als usuaris que han iniciat sessió. No serà visible per a les persones que no hagin iniciat sessió." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "Aquesta publicació només és visible per als usuaris que han iniciat la sessió." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Aquesta publicació s'amagarà dels canals i fils. Això no es pot desfer." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "L'autor d'aquesta publicació ha deshabilitat les citacions." @@ -8263,11 +8868,11 @@ msgstr "L'autor d'aquesta publicació ha deshabilitat les citacions." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Aquest perfil només és visible per als usuaris que han iniciat sessió. No serà visible per a les persones que no hagin iniciat sessió." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Aquesta resposta s'ordenarà en una secció oculta a la part inferior del fil i silenciarà les notificacions de les respostes posteriors, tant per a tu com per als altres." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Aquest servei no ha proporcionat termes de servei ni una política de privadesa." @@ -8275,6 +8880,10 @@ msgstr "Aquest servei no ha proporcionat termes de servei ni una política de pr msgid "This should create a domain record at:" msgstr "Això hauria de crear un registre de domini a:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "Això només hauria de tardar uns minuts." + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Aquest usuari no té un nom de visualització i, per tant, no es pot verificar." @@ -8316,16 +8925,18 @@ msgstr "Aquest usuari no segueix a ningú." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Això suprimirà \"{0}\" de les teves paraules silenciades. Sempre el pots tornar a afegir més tard." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Això eliminarà @{0} de la llista d'accés ràpid." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Això eliminarà la teva publicació d'aquesta citació per a tots els usuaris i la substituirà per un marcador de posició." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Opcions dels fils de debat" @@ -8334,24 +8945,27 @@ msgstr "Opcions dels fils de debat" msgid "Thread preferences" msgstr "Preferències dels fils de debat" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Preferències dels fils de debat" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "En mode fils de debat" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Mode fils de debat" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Preferències dels fils de debat" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "Temps restant: {0, plural, one {# segon} other {# segons}}" @@ -8376,42 +8990,56 @@ msgstr "A qui vols enviar aquest informe?" msgid "Today" msgstr "Avui" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Commuta el menú desplegable" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Commuta per a habilitar o deshabilitar el contingut per a adults" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Commuta el so" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Superior" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "Primer les respostes principals" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Tema" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Tradueix" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "Vista d'arbre" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Tendència" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Vídeos populars" @@ -8428,14 +9056,10 @@ msgstr "Torna-ho a provar" msgid "TV" msgstr "Televisió" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Autenticació de dos factors (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Introdueix el teu identificador d'usuari" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Escriu aquí el teu missatge" @@ -8453,7 +9077,7 @@ msgstr "No s'ha pogut connectar. Comprova la teva connexió a Internet i torna-h #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "No es pot contactar amb el teu servei. Comprova la teva connexió a inte msgid "Unable to delete" msgstr "No s'ha pogut eliminar" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "Desaplica la petició d'integració Pull Request" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "Desaplica la petició d'integració Pull Request {currentChannel}" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "No disponible" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "Informació del canal no disponible" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Desbloqueja" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Desbloqueja" @@ -8486,7 +9126,7 @@ msgstr "Desbloqueja" msgid "Unblock account" msgstr "Desbloqueja el compte" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Vols desbloquejar el compte?" @@ -8495,13 +9135,13 @@ msgstr "Vols desbloquejar el compte?" msgid "Unblock list" msgstr "Desbloqueja la llista" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Desfés la republicació" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Desfés republicacions ({0, plural, one {# republicació} other {# republicacions}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Deixa de seguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Deixa de seguir a {0}" @@ -8523,7 +9163,7 @@ msgstr "Deixa de seguir el compte" msgid "Unfollows the user" msgstr "Deixa de seguir l'usuari" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Malauradament, cap dels vostres etiquetadora subscrits admet aquest tipus d'informe." @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "Desfés el m'agrada" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Desfés els m'agrades ({0, plural, one {# m'agrada} other {# m'agrades}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Deixa de silenciar" @@ -8555,8 +9195,8 @@ msgstr "Deixa de silenciar" msgid "Unmute {tag}" msgstr "Deixa de silenciar {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Deixa de silenciar la conversa" msgid "Unmute list" msgstr "Deixa de silenciar la llista" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Deixa de silenciar el fil de debat" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Deixa de silenciar el vídeo" @@ -8597,8 +9237,8 @@ msgstr "Deixa de fixar el canal" msgid "Unpin from home" msgstr "Deixa de fixar a l'inici" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "No fixis al perfil" @@ -8614,8 +9254,8 @@ msgstr "{0} ja no està fixat a l'inici" msgid "Unpinned from your feeds" msgstr "Ja no està fix als teus canals" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "Deixa de posposar el recordatori de correu" @@ -8636,7 +9276,7 @@ msgstr "Dona't de baixa d'aquest etiquetador" msgid "Unsubscribed from list" msgstr "T'has dona't de baixa de la llista" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Tipus de vídeo no compatible" @@ -8662,8 +9302,8 @@ msgstr "Actualitza <0>{displayName} a les Llistes" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "Actualitza el correu" @@ -8676,17 +9316,17 @@ msgstr "Actualitza a {domain}" msgid "Update your email" msgstr "Actualitza el teu correu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "No s'ha pogut actualitzar el fitxer adjunt de la citació" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "No s'ha pogut actualitzar la visibilitat de la resposta" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Actualitzant…" @@ -8698,20 +9338,20 @@ msgstr "Enlloc d'això, penja una foto" msgid "Upload a text file to:" msgstr "Puja un fitxer de text a:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Puja de la càmera" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Puja dels Fitxers" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Puja de la biblioteca" msgid "Uploading images..." msgstr "S'estan penjant imatges..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "S'està penjant la miniatura de l'enllaç..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "S'està penjant el vídeo..." @@ -8761,6 +9401,10 @@ msgstr "Utilitza els recomanats" msgid "Use this to sign in to the other app along with your handle." msgstr "Utilitza-ho per a iniciar sessió a l'altra aplicació, juntament amb el teu identificador." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "Fes servir l'adreça electrònica del teu compte o una altra adreça electrònica real que controlis, en cas que KWS o Bluesky necessitin contactar amb tu." + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Utilitzat per:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Llista d'usuaris actualitzada" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "El nom d'usuari no pot contenir més de {MAX_SERVICE_HANDLE_LENGTH, plural, one {}other {# caràcters}}" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "El nom d'usuari no pot començar ni acabar amb un guionet" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "El nom d'usuari només pot tenir lletres (a-z), nombres i guionets" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Nom d'usuari o correu" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "usuaris seguits per <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "usuaris seguint <0>@{0}" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Els usuaris als quals segueixo" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Usuaris a \"{0}\"" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Els usuaris als quals segueixes" @@ -8846,11 +9502,11 @@ msgstr "Valor:" msgid "Verification failed, please try again." msgstr "La verificació ha fallat, torna-ho a provar." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "Configuració de verificació" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "Configuració de verificació" @@ -8870,8 +9526,15 @@ msgstr "Verificat per:" msgid "Verify account" msgstr "Verifica el compte" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "Verifica de nou" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "Verifica el codi" @@ -8880,21 +9543,20 @@ msgstr "Verifica el codi" msgid "Verify DNS Record" msgstr "Verifica els registres de DNS" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "Verifica el correu" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "Verifica el codi del correu" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Diàleg de verificació del correu" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "Verifica ara" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Verifica el fitxer de text" msgid "Verify this account?" msgstr "Vols verificar aquest compte?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "Verifica la teva edat" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Verifica el teu correu" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Verifica el teu correu" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "Verificant" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "Verificant l'estat de la teva garantia d'edat" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Versió {appVersion}" +msgid "Version {0}" +msgstr "Versió {0}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Vídeo" @@ -8928,7 +9598,7 @@ msgstr "Vídeo" msgid "Video failed to process" msgstr "El vídeo no s'ha pogut processar" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Canal de vídeos" @@ -8942,15 +9612,15 @@ msgstr "Vídeo de: {0}: {text}" msgid "Video Games" msgstr "Videojocs" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Vídeo en pausa" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Vídeo en reproducció" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "No s'ha trobat el vídeo." @@ -8958,11 +9628,11 @@ msgstr "No s'ha trobat el vídeo." msgid "Video settings" msgstr "Configuració de vídeo" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Vídeo penjat" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Vídeo: {0}" @@ -8979,11 +9649,11 @@ msgstr "Els vídeos han de durar menys de 3 minuts" msgid "View {0}'s avatar" msgstr "Veure l'avatar de {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Veure el perfil de {0}" @@ -8991,7 +9661,7 @@ msgstr "Veure el perfil de {0}" msgid "View {displayName}'s profile" msgstr "Mostra el perfil de {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Veure el perfil de l'usuari bloquejat" @@ -9009,7 +9679,6 @@ msgstr "Veure el registre de depuració" msgid "View details" msgstr "Veure els detalls" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Mostra els detalls per a informar d'una infracció dels drets d'autor" @@ -9022,23 +9691,23 @@ msgstr "Veure el fil de debat complet" msgid "View information about these labels" msgstr "Mostra informació sobre aquestes etiquetes" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Mostra'n més" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Veure el perfil" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Veure l'avatar" @@ -9054,28 +9723,28 @@ msgstr "Veure les verificacions d'aquest usuari" msgid "View users who like this feed" msgstr "Veure els usuaris a qui els agrada aquest canal" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Reprodueix el vídeo" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Veure els teus comptes bloquejats" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "Veure la configuració de les interaccions per defecte a les teves publicacions" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Veure els teus canals i descobreix-ne més" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Veure les teves llistes de moderació" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Veure els teus comptes silenciats" @@ -9083,8 +9752,8 @@ msgstr "Veure els teus comptes silenciats" msgid "View your verifications" msgstr "Veure les teves verificacions" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Veure la imatge completa" @@ -9092,16 +9761,20 @@ msgstr "Veure la imatge completa" msgid "Views video in immersive mode" msgstr "Veure el vídeo en el mode immersiu" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "Visita el lloc web" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "Visita el lloc" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "Ves a la configuració de les notificacions" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Volum" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Adverteix del contingut i filtra-ho dels canals" msgid "Watch now" msgstr "Mira ara" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "No ens hem pogut connectar al servei que proporciona aquest canal personalitzat. Pot ser que no estigui disponible temporalment i tingui problemes, o que no estigui disponible permanentment." + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "No hem pogut trobar aquesta llista. Probablement s'ha suprimit." + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "No hem trobat cap resultat per a aquest hashtag." @@ -9128,7 +9809,7 @@ msgstr "No hem trobat cap resultat per a aquest hashtag." msgid "We couldn't find any results for that topic." msgstr "No hem trobat cap resultat per a aquest tema" -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "No hem pogut carregar aquesta conversa" @@ -9136,6 +9817,10 @@ msgstr "No hem pogut carregar aquesta conversa" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Calculem {estimatedTime} fins que el teu compte estigui llest." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "Ens hem associat amb <0>KWS per verificar que ets adult. Quan facis clic a \"Començar\", KWS comprovarà si has verificat prèviament la teva edat utilitzant aquesta adreça electrònica per a altres jocs/serveis impulsats per la tecnologia KWS. Si no és així, KWS t'enviarà per correu les instruccions per verificar la teva edat. Quan hagis acabat, tornaràs a la pàgina per continuar utilitzant Bluesky." + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Hem enviat un altre correu de verificació a <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "Esperem que t'ho passis pipa. Recorda que Bluesky és:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Ja no hi ha més publicacions dels usuaris que segueixes. Aquí n'hi ha altres de <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "Et recomanem que triïs almenys dos interessos." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Hem enviat un correu a <0>{0} amb un enllaç. Fes-hi clic per completar el procés de verificació del correu electrònic." -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "No hem pogut determinar si tens permís per pujar vídeos. Torna-ho a provar." @@ -9164,10 +9849,14 @@ msgstr "No hem pogut determinar si tens permís per pujar vídeos. Torna-ho a pr msgid "We were unable to load your birth date preferences. Please try again." msgstr "No hem pogut carregar les teves preferències de data de naixement. Torna-ho a provar." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "En aquest moment no hem pogut carregar els teus etiquetadors configurats." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "No hem pogut rebre la verificació a causa d'un problema de connexió. Pot arribar més tard. Si arriba, el teu compte s'actualitzarà automàticament." + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "No ens hem pogut connectar. Torna-ho a provar per a continuar configurant el teu compte. Si continua fallant, pots ometre aquest flux." @@ -9176,7 +9865,7 @@ msgstr "No ens hem pogut connectar. Torna-ho a provar per a continuar configuran msgid "We will let you know when your account is ready." msgstr "T'informarem quan el teu compte estigui llest." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Enviarem un correu a <0>{0} amb un enllaç. Fes-hi clic per completar el procés de verificació del correu electrònic." @@ -9184,6 +9873,22 @@ msgstr "Enviarem un correu a <0>{0} amb un enllaç. Fes-hi clic per completa msgid "We'll use this to help customize your experience." msgstr "Ho farem servir per a personalitzar la teva experiència." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "També estem actualitzant les nostres <0>Directrius de la comunitat i volem la vostra opinió! Aquestes noves directrius entraran en vigor el 15 d'octubre de 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "També estem actualitzant les nostres Directrius de la comunitat i volem la vostra opinió! Aquestes noves directrius entraran en vigor el 15 d'octubre de 2025." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "Estem confirmant la teva garantia d'edat amb els nostres servidors. Només serà un moment." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "Estem tenint problemes per inicialitzar el procés de garantia d'edat per al vostre compte. <0>Contacta amb l'assistència per obtenir ajuda." + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Tenim problemes de xarxa, torna-ho a provar" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Estem introduint una nova capa de verificació a Bluesky: una marca de verificació fàcil de veure." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Ens fa molta il·lusió que t'uneixis a nosaltres!" @@ -9205,15 +9910,15 @@ msgstr "Ho sentim, però no hem pogut resoldre aquesta llista. Si això continua msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Ho sentim, però no hem pogut carregar les teves paraules silenciades en aquest moment. Torna-ho a provar." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Ens sap greu, però la teva cerca no s'ha pogut fer. Prova-ho d'aquí una estona." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Ho sentim! La publicació a la qual estàs responent s'ha suprimit." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Ens sap greu! No podem trobar la pàgina que estàs cercant." @@ -9222,6 +9927,26 @@ msgstr "Ens sap greu! No podem trobar la pàgina que estàs cercant." msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Ho sentim! Només pots subscriure't a vint etiquetadors i has arribat al teu límit de vint." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "Estem actualitzant les nostres <0>Condicions del servei, <1>Política de privadesa i <2>Política de drets d'autor, amb vigència a partir del 15 de setembre de 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "Estem actualitzant les nostres polítiques" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "Estem actualitzant les nostres Condicions del servei, Política de privadesa< i Política de drets d'autor, amb vigència a partir del 15 de setembre de 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Estem actualitzant les nostres Condicions del servei, Política de privadesa i Política de drets d'autor, amb vigència a partir del 15 de setembre de 2025. També estem actualitzant les nostres Directrius de la comunitat i volem la teva opinió! Aquestes noves directrius entraran en vigor el 15 d'octubre de 2025. Més informació sobre aquests canvis i com compartir les teves opinions amb nosaltres llegint la nostra entrada de blog." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "Hem confirmat el teu estat de garantia d'edat. Ara pots tancar aquest quadre de diàleg." + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Bentornat!" @@ -9240,7 +9965,7 @@ msgstr "Com vols anomenar al teu starter pack?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Què hi ha de nou" @@ -9256,11 +9981,11 @@ msgstr "En quins idiomes està aquesta publicació?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Quins idiomes t'agradaria veure en els teus canals algorítmics?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Qui pot interactuar amb aquesta publicació?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Qui hi pot respondre" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "Qui pot verrificar?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Vaja!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "Vaja! No s'han pogut carregar els vídeos populars." @@ -9322,12 +10047,12 @@ msgstr "Per què s'hauria de revisar aquest usuari?" msgid "Write a message" msgstr "Escriu un missatge" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Escriu una publicació" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Escriu la teva resposta" @@ -9358,11 +10083,11 @@ msgstr "Sí, desactiva'l" msgid "Yes, delete this starter pack" msgstr "Sí, elimina aquest starter pack" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Sí, desenganxa'l" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Sí, amaga'l" @@ -9378,6 +10103,10 @@ msgstr "Ahir" msgid "You" msgstr "Tu" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "També acceptes les <0>Directrius de la comunitat de Bluesky. Una <1>versió actualitzada de les nostres Directrius de la comunitat entrarà en vigor el 15 d'octubre." + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "Ets un verificador de confiança" @@ -9386,6 +10115,10 @@ msgstr "Ets un verificador de confiança" msgid "You are creating an account on" msgstr "Estàs creant un compte a" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "Actualment no pots accedir al procés de garantia d'edat de Bluesky. Si creus que es tracta d'un error, <0>posa't en contacte amb el nostre equip de moderació." + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Estàs a la cua." @@ -9403,7 +10136,7 @@ msgstr "Ja no estàs emetent en directe" msgid "You are not allowed to go live" msgstr "No t'és permès emetre en directe" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "No t'és permès pujar vídeos." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "Estàs verificat" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "Estàs verificat. Perdràs el teu estat de verificació si canvies el nom de visualització. <0>Més informació." @@ -9441,10 +10173,18 @@ msgstr "També pots descobrir nous canals personalitzats per a seguir." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "També pots desactivar el teu compte temporalment i reactivar-lo en qualsevol moment." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "Pots triar si les notificacions dels xats tenen so en la configuració del xat en l'aplicació" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Pots continuar les converses en curs independentment de la configuració que triïs." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "Ara pots triar rebre notificacions quan publiquin persones específiques. Si hi ha algú de qui vols actualitzacions puntuals, vés al seu perfil i busca la nova icona de campana a prop del botó de seguir." + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Ara pots iniciar sessió amb la nova contrasenya." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Pots reactivar el teu compte per continuar iniciant la sessió. El teu perfil i les publicacions seran visibles per a altres usuaris." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "Pots establir la teva configuració per defecte a les interaccions a <0>Configuració→ Moderació→ Configuració d'interaccions." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Pots actualitzar-ho més tard des de la teva configuració." @@ -9472,7 +10212,7 @@ msgstr "No tens cap seguidor." msgid "You don't follow any users who follow @{name}." msgstr "No segueixes cap usuari que segueixi @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "No tens cap sol·licitud de xat ara mateix." @@ -9480,15 +10220,15 @@ msgstr "No tens cap sol·licitud de xat ara mateix." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Encara no tens codis d'invitació! Te n'enviarem quan portis una mica més de temps a Bluesky." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "No tens cap canal fixat." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "No tens cap canal desat." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Has bloquejat l'autor o has estat bloquejat per ell." @@ -9502,6 +10242,10 @@ msgstr "Has bloquejat aquest usuari" msgid "You have blocked this user. You cannot view their content." msgstr "Has bloquejat aquest usuari. No pots veure el seu contingut." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "Has desactivat completament les notificacions de resposta, cita i menció, de manera que aquesta pestanya ja no s'actualitzarà. Per ajustar-ho, visita la <0>configuració de notificacions." + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Has silenciat aquest compte." msgid "You have muted this user" msgstr "Has silenciat aquest usuari" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Encara no tens cap conversa. Comença'n una!" @@ -9547,7 +10291,7 @@ msgstr "Encara no has bloquejat cap compte. Per a bloquejar un compte, ves al se msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Encara no has silenciat cap compte. per a silenciar un compte, ves al seu perfil i selecciona \"Silencia el compte\" al menú del seu compte." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Has arribat al final" @@ -9572,6 +10316,10 @@ msgstr "Encara no has silenciat cap paraula ni etiqueta" msgid "You hid this reply." msgstr "Has amagat aquesta resposta." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "Ja vas iniciar aquest procés fa {0}. Els correus electrònics poden trigar fins a 5 minuts a arribar a la safata d'entrada. Espera uns minuts abans de tornar-ho a intentar." + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Pots apel·lar les etiquetes que no són pròpies si creus que s'han col·locat per error." @@ -9592,7 +10340,7 @@ msgstr "Només pots afegir 3 canals" msgid "You may only select up to 4 images" msgstr "Només podeu seleccionar fins a 4 imatges" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "Has de tenir 13 anys o més per a crear un compte." @@ -9600,6 +10348,14 @@ msgstr "Has de tenir 13 anys o més per a crear un compte." msgid "You must be following at least seven other people to generate a starter pack." msgstr "Has de seguir almenys set persones més per generar un starter pack." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "Has de completar la verificació d'edat per accedir a la configuració següent." + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "Has de completar la garantia d'edat per accedir a aquesta pantalla." + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Has de concedir accés a la teva galeria per desar un codi QR" @@ -9608,6 +10364,11 @@ msgstr "Has de concedir accés a la teva galeria per desar un codi QR" msgid "You must select at least one labeler for a report" msgstr "Has d'escollir almenys un etiquetador per a un informe" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "Has d'iniciar sessió per veure aquesta publicació." + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "Has de verificar el teu correu abans de poder habilitar la verificació en dos passos." @@ -9616,7 +10377,7 @@ msgstr "Has de verificar el teu correu abans de poder habilitar la verificació msgid "You previously deactivated @{0}." msgstr "Abans has desactivat @{0}." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "Segurament vols reiniciar l'aplicació ara." @@ -9628,16 +10389,20 @@ msgstr "Has reaccionat amb {0}" msgid "You reacted {0} to {1}" msgstr "Has reaccionat amb {0} a {1}" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Es tancarà la sessió de tots els teus comptes." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "Ja no rebràs més notificacions per a {0}" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Ja no rebràs més notificacions d'aquest debat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Ara rebràs notificacions d'aquest debat" @@ -9657,11 +10422,11 @@ msgstr "Tu: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Tu: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Seguiràs els usuaris i els canals suggerits un cop hagis acabat de crear el teu compte!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Seguiràs els usuaris suggerits un cop hagis acabat de crear el teu compte!" @@ -9673,9 +10438,9 @@ msgstr "Seguiràs aquestes persones i {0} altres" msgid "You'll follow these people right away" msgstr "Seguiràs a aquesta gent de seguida" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Rebràs un correu a <0>{0} per verificar que ets tu." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "Començaràs a rebre notificacions per a {0}!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "Has triat amagar una paraula o una etiqueta d'aquesta publicació." msgid "You've found some people to follow" msgstr "Has trobat algunes persones per seguir" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "Has arribat al final del contingut actiu." + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Has arribat al final del teu canal! Cerca alguns comptes més per a seguir." @@ -9711,19 +10480,23 @@ msgstr "Has arribat al final del teu canal! Cerca alguns comptes més per a segu msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Has arribat al nombre màxim de sol·licituds permeses. Torna-ho a provar més tard." -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "Has arribat a l'inici del contingut actiu." + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Has assolit el teu límit diari de pujades de vídeos (massa bytes)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Has assolit el teu límit diari de pujades de vídeos (massa vídeos)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "T'has acabat els vídeos. Potser és un bon moment per a fer un descans." -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "El teu compte" @@ -9735,7 +10508,7 @@ msgstr "El teu compte s'ha eliminat" msgid "Your account has been suspended" msgstr "S'ha suspès el teu compte" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "El teu compte encara no té l'edat suficient per penjar vídeos. Torna-ho a provar més tard." @@ -9751,11 +10524,11 @@ msgstr "S'ha detectat que el teu compte incompleix les <0>Condicions del servei msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "S'ha enviat l'apel·lació. Si s'accepta l'apel·lació, rebràs un correu electrònic." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "La teva data de naixement" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "El teu navegador no admet el format de vídeo. Prova amb un altre navegador." @@ -9771,13 +10544,15 @@ msgstr "La teva elecció es recordarà per a futurs enllaços. Pots canviar-la e msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "El teu identificador actual <0>{0} romandrà automàticament reservat per a tu. Pots tornar-hi en qualsevol moment des d'aquest compte." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "El teu correu s'ha actualitzat, però no ha estat verificat. En el pas següent cal que verifiquis el teu correu." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "El teu correu" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "El teu correu no sembla vàlid." @@ -9786,15 +10561,11 @@ msgstr "El teu correu no sembla vàlid." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "El teu correu encara no s'ha verificat. Verifica'l per gaudir de totes les funcions de Bluesky." -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "El teu correu encara no s'ha verificat. Et recomanem fer-ho per seguretat." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "El teu primer m'agrada!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "Els teus seguidors" @@ -9806,19 +10577,15 @@ msgstr "El teu canal de seguint està buit! Segueix a més usuaris per a saber q msgid "Your full handle will be <0>@{0}" msgstr "El teu identificador complet serà <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "El teu nom d'usuari complet serà <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "Els teus interessos" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "S'han actualitzat els teus interessos!" @@ -9835,15 +10602,15 @@ msgstr "Les teves paraules silenciades" msgid "Your password has been changed successfully!" msgstr "S'ha canviat la teva contrasenya!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "La contrasenya ha de tenir almenys 8 caràcters." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "S'ha publicat" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "S'han publicat les teves publicacions" @@ -9851,15 +10618,19 @@ msgstr "S'han publicat les teves publicacions" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Les teves publicacions, m'agrades i bloquejos són públics. Els comptes silenciats són privats." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "El teu idioma preferent" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "El teu perfil, publicacions, canals i llistes ja no seran visibles per a altres usuaris de Bluesky. Pots reactivar el teu compte en qualsevol moment iniciant sessió." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "S'ha publicat la teva resposta" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "El teu informe s'enviarà a <0>{0}." @@ -9867,7 +10638,7 @@ msgstr "El teu informe s'enviarà a <0>{0}." msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "El teu informe s'enviarà al servei de moderació de Bluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "Seleccionar els teus interessos ens ajuda a mostrar-te el contingut que t'importa." diff --git a/src/locale/locales/cy/messages.po b/src/locale/locales/cy/messages.po index 1a650a40f0..d90676f278 100644 --- a/src/locale/locales/cy/messages.po +++ b/src/locale/locales/cy/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: cy\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:41\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: Welsh\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))));\n" @@ -27,7 +27,7 @@ msgstr "(gweithredol)" msgid "(contains embedded content)" msgstr "(yn cynnwys cynnwys wedi'i fewnosod)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(dim e-bost)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# ailbostiad} other {# ailbostiad}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# eiliad} other {# eiliad}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# eitem heb ei ddarllen} other {# eitem heb ei ddarllen}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {# eitem heb ei ddarllen} other {# eitem heb ei ddarllen msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {#mis} other {#mis}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {dilynwr} other {dilynwr}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {yn dilyn} other {yn dilyn}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {hoffi} other {hoffi}}" @@ -108,46 +109,56 @@ msgstr "{0, plural, one {hoffi} other {hoffi}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {postiad} other {postiad}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {dyfyniad} other {dyfyniad}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" -msgstr "{0, plural, one {ailbostiad} other {ailbostiad}}" +msgstr "{0, plural, one {ail bostiad} other {ail bostiad}}" #: src/screens/Search/modules/ExploreTrendingTopics.tsx:82 msgid "{0, plural, other {{1} posts}}" -msgstr "" +msgstr "{0, plural, zero {} one {{1} postiad} two {{1} bostiad} few {{1} postiad} many {{1} postiad}other {{1} postiad}}" #. Number of users (always at least 25) who have joined Bluesky using a specific starter pack #: src/screens/StarterPack/StarterPackScreen.tsx:490 msgid "{0, plural, other {# people have}} used this starter pack!" -msgstr "" +msgstr "{0, plural, other {# person wedi}} defnyddio'r tecyn cychwyn hwn!" #. Pattern: {wordValue} in tags #: src/components/dialogs/MutedWords.tsx:475 msgid "{0} <0>in <1>tags" -msgstr "{0} <0>in <1>tagiau" +msgstr "{0} <0>yn <1>tagiau" #. Pattern: {wordValue} in text, tags #: src/components/dialogs/MutedWords.tsx:465 msgid "{0} <0>in <1>text & tags" -msgstr "{0} <0>in <1>testun a thagiau" +msgstr "{0} <0>yn <1>testun a thagiau" + +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} yn dilyn" #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" -msgstr "" +msgstr "Mae {0} yn fyw" #: src/components/live/queries.ts:39 msgid "{0} is not a valid URL" +msgstr "Nid yw {0} yn URL dilys" + +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "Ymunodd {0} yr wythnos hon" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} o {1}" @@ -158,14 +169,22 @@ msgstr "{0} allan 50" #: src/components/dms/MessageItem.tsx:143 msgid "{0} reacted {1}" -msgstr "" +msgstr "Ymatebodd {0} i {1}" #: src/screens/Messages/components/ChatListItem.tsx:231 msgid "{0} reacted {1} to {2}" -msgstr "" +msgstr "Ymatebodd {0} {1} i {2}" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0}, ffrwd gan {1}, hoffwyd gan {2}" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0}, rhestr gan {1}" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "afatar {0}" @@ -197,12 +216,12 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}e" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# eitem heb ei ddarllen} other {# eitemau heb eu darllen}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Pecyn Cychwyn {displayName}" @@ -214,185 +233,184 @@ msgstr "{estimatedTimeHrs, plural, one {awr} other {awr}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {munud} other {munud}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "Mae {firstAuthorLink} a <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other{{formattedAuthorsCount} arall}} wedi'ch dilyn chi" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "Mae {firstAuthorLink} a <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi hoffi eich llif cyfaddas" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "Mae {firstAuthorLink} a <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi hoffi eich postiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" +msgstr "Mae {firstAuthorLink} a <0>{additionalAuthorsCount, plural, zero {}one {{formattedAuthorsCount} arall} two {{formattedAuthorsCount} arall} few {{formattedAuthorsCount} arall} many {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi hoffi eich ail bostiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" -msgstr "" +msgstr "Mae {firstAuthorLink} a <0>{additionalAuthorsCount, plural, zero {}one {{formattedAuthorsCount} arall} two {{formattedAuthorsCount} arall} few {{formattedAuthorsCount} arall} many {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi tynnu eu dilysiad o'ch cyfrif" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "Mae {firstAuthorLink} ad <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi ailbostio eich postiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "Mae {firstAuthorLink} a <0>{additionalAuthorsCount, plural, zero {}one {{formattedAuthorsCount} arall} two {{formattedAuthorsCount} arall} few {{formattedAuthorsCount} arall} many {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi ail bostio eich ail bostiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "Mae {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi ymuno â'ch pecyn cychwyn" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" -msgstr "" +msgstr "Mae {firstAuthorLink} and <0>{additionalAuthorsCount, plural, zero {}one {{formattedAuthorsCount} arall} two {{formattedAuthorsCount} arall} few {{formattedAuthorsCount} arall} many {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi'ch dilysu" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "Mae {firstAuthorLink} wedi eich dilyn" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "Mae {firstAuthorLink} wedi eich dilyn yn ôl" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "Hoffodd {firstAuthorLink} eich ffrwd gyfaddas" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "Hoffodd {firstAuthorLink} eich postiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" -msgstr "" +msgstr "Mae {firstAuthorLink} wedi hoffi eich ail bostiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" -msgstr "" +msgstr "Mae {firstAuthorLink} wedi tynnu eu dilysiad o'ch cyfrif" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "Mae {firstAuthorLink} wedi ailbostio'ch postiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" -msgstr "" +msgstr "Mae {firstAuthorLink} wedi ail bostio eich ail bostiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "Mae {firstAuthorLink} wedi cofrestru gyda'ch pecyn cychwyn" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" -msgstr "" +msgstr "Mae {firstAuthorLink} wedi'ch dilysu" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi eich dilyn" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi hoffi eich ffrwd gyfaddas" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi hoffi eich postiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" +msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, zero {}one {{formattedAuthorsCount} arall} two {{formattedAuthorsCount} arall} few {{formattedAuthorsCount} arall} many {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi hoffi eich ail bostiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" -msgstr "" +msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, zero {}one {{formattedAuthorsCount} arall} two {{formattedAuthorsCount} arall} few {{formattedAuthorsCount} arall} many {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi tynnu eu dilysiad o'ch cyfrif" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" -msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi ailbostio eich postiad" +msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi ail bostio eich postiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, zero {}one {{formattedAuthorsCount} arall} two {{formattedAuthorsCount} arall} few {{formattedAuthorsCount} arall} many {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi ail bostio eich ail bostiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi ymuno â'ch pecyn cychwyn" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" -msgstr "" +msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, zero {}one {{formattedAuthorsCount} arall} two {{formattedAuthorsCount} arall} few {{formattedAuthorsCount} arall} many {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi'ch dilysu chi" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "Mae {firstAuthorName} wedi eich dilyn" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "Mae {firstAuthorName} wedi eich dilyn yn ôl" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "Hoffodd {firstAuthorName} eich ffrwd gyfaddas" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "Hoffodd {firstAuthorName} eich postiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" -msgstr "" +msgstr "Mae {firstAuthorName} wedi hoffi eich ail bostiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" -msgstr "" +msgstr "Mae {firstAuthorName} wedi tynnu eu dilysiad o'ch cyfrif" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "Mae {firstAuthorName} wedi ailbostio'ch postiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" -msgstr "" +msgstr "Mae {firstAuthorName} wedi ail bostio eich ail bostiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "Mae {firstAuthorName} wedi ymuno â'ch pecyn cychwyn" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" -msgstr "" +msgstr "Mae {firstAuthorName} wedi'ch gwirio" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} yn dilyn" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" -msgstr "Nid oes modd anfon neges at {handle}" +msgstr "Does dim modd anfon neges at {handle}" #: src/components/live/utils.ts:15 msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" -msgstr "" +msgstr "{hours, plural, zero {}one {# awr {minutesString}} two {# awr {minutesString}} few {# awr {minutesString}} many {# awr {minutesString}} other {# awr {minutesString}}}" #: src/components/live/utils.ts:19 msgid "{hours, plural, one {# hour} other {# hours}}" -msgstr "" +msgstr "{hours, plural, zero {}one {# awr} two {# awr} few {# awr} many {# hours} other {# awr}}" #. Number of users (always at least 50) who have joined Bluesky using a specific starter pack #: src/components/StarterPack/StarterPackCard.tsx:101 msgid "{joinedAllTimeCount, plural, other {# users have}} joined!" -msgstr "" +msgstr "{joinedAllTimeCount, plural, other {Mae # eraill}} wedi ymuno!" #: src/components/live/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" -msgstr "" +msgstr "{minutes, plural, zero {}one {# munud} two {# funud} few {# munud} many {# munud} other {# munud}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# eitem heb ei darllen} other {# eitem heb eu darllen}}" @@ -407,37 +425,37 @@ msgstr "Ymunodd {profileName} â Bluesky gan ddefnyddio pecyn cychwyn {0} yn ôl #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" #: src/screens/Search/modules/ExploreTrendingTopics.tsx:111 msgid "{rank}." -msgstr "" +msgstr "{rank}." #. trending topic time spent trending. should be as short as possible to fit in a pill #: src/screens/Search/modules/ExploreTrendingTopics.tsx:206 msgid "{type}h ago" -msgstr "" +msgstr "{type} awr yn ôl" #: src/components/verification/VerifierDialog.tsx:60 msgid "{userName} is a trusted verifier" -msgstr "" +msgstr "Mae {userName} yn ddilysydd dibynadwy" #: src/components/verification/VerificationsDialog.tsx:67 msgid "{userName} is verified" -msgstr "" +msgstr "Mae {userName} wedi'i ddilysu" #. Possessive, meaning "the verifications of {userName}" #: src/components/verification/VerificationsDialog.tsx:69 msgid "{userName}'s verifications" -msgstr "" +msgstr "Dilysiadau {userName}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 #: src/screens/Search/components/StarterPackCard.tsx:249 msgid "+{computedTotal}" -msgstr "" +msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "Mae <0>{0}, <1>{1}, a {2, plural, one {# arall} other {# arall}} wedi'u cynnwys yn eich pecyn cychwyn" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "Mae <0>{0}, <1>{1}, a {2, plural, one {# arall} other {# arall}} wedi'u cynnwys yn eich pecyn cychwyn" @@ -448,17 +466,17 @@ msgstr "<0>{0} {1, plural, one {dilynwr} other {dilynwyr}}" #: src/view/shell/Drawer.tsx:127 msgid "<0>{0} {1, plural, one {following} other {following}}" -msgstr "<0>{0} {1, plural, one {yn dilyn} other {yn dilyn}}" +msgstr "<0>{0} {1, plural, one {yn dilyn} other {yn dilyn}}Crybwyll" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "Mae <0>{0} a<1> <2>{1} wedi eu cynnwys yn eich pecyn cychwyn" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "Mae <0>{0} wedi'i gynnwys yn eich pecyn cychwyn" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} aelod" @@ -466,11 +484,11 @@ msgstr "<0>{0} aelod" msgid "<0>{date} at {time}" msgstr "<0>{date} am {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Arbrofol: Pan fydd y dewis hwn wedi'i alluogi, dim ond hysbysiadau ateb a dyfynnu y byddwch chi'n eu derbyn gan y defnyddwyr rydych chi'n eu dilyn. Byddwn yn parhau i ychwanegu mwy o reolaethau yma dros amser." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<0>Mewngofnodwch<1> neu <2>grëwch cyfrif<3> <4>i chwilio am newyddion, chwaraeon, gwleidyddiaeth, a phopeth arall sy'n digwydd ar Bluesky." -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "Rydych <0>chi a <1> <2>{0} wedi'ch cynnwys yn eich pecyn cychwyn" @@ -497,16 +515,20 @@ msgstr "7 diwrnod" #. If last message does not contain text, fall back to "{user} reacted to {a message}" #: src/screens/Messages/components/ChatListItem.tsx:210 msgid "a message" -msgstr "" +msgstr "neges" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91 msgid "A new form of verification" -msgstr "" +msgstr "Math newydd o ddilysu" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "Llun sgrin o dudalen proffil gydag eicon cloch wrth ymyl y botwm dilyn, yn dangos y nodwedd hysbysiadau gweithgaredd newydd." + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Ynghylch" @@ -524,25 +546,25 @@ msgstr "Derbyn cais am sgwrs" msgid "Accept Request" msgstr "Derbyn y cais" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Hygyrchedd" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Gosodiadau Hygyrchedd" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Cyfrif" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Cyfrif yn ei ddilyn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Wedi Tewi'r Cyfrif" msgid "Account Muted by List" msgstr "Cyfrif wedi'i Dewi gan y Rhestr" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Dewisiadau cyfrif" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Cyfrif wedi'i dynnu o fynediad cyflym" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Peidio dilyn y cyfrif" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -596,7 +618,17 @@ msgstr "Dad-dewi cyfrif" #: src/components/verification/VerifierDialog.tsx:96 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." -msgstr "" +msgstr "Mae cyfrifon gyda marc siec glas cregynog <0><1/> yn gallu dilysu eraill. Mae'r dilyswyr dibynadwy hyn yn cael eu dewis gan Bluesky." + +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "Gweithgaredd gan eraill" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "Hysbysiadau gweithgareddau" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 @@ -604,7 +636,7 @@ msgstr "" msgid "Add" msgstr "Ychwanegu" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Ychwanegu {0} arall i barhau" @@ -619,7 +651,7 @@ msgstr "Ychwanegu rhybudd cynnwys" #: src/components/live/GoLiveDialog.tsx:101 msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event." -msgstr "" +msgstr "Ychwanegwch statws byw dros dro at eich proffil. Pan fydd rhywun yn clicio ar eich afatar, byddan nhw'n gweld manylion eich digwyddiad byw." #: src/view/screens/ProfileList.tsx:924 #: src/view/screens/ProfileList.tsx:942 @@ -634,8 +666,8 @@ msgstr "Ychwanegu cyfrif" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Ychwanegu testun amgen" msgid "Add alt text (optional)" msgstr "Ychwanegu testun amgen (dewisol)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Ychwanegu cyfrif arall" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Ychwanegu postiad arall" @@ -668,10 +700,10 @@ msgstr "Ychwanegu Cyfrinair Apiau" #: src/components/dms/EmojiReactionPicker.web.tsx:35 msgid "Add emoji reaction" -msgstr "" +msgstr "Ychwanegu adwaith emoji" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Ychwanegu rhagor o fanylion (dewisol)" @@ -683,7 +715,7 @@ msgstr "Ychwanegu gair mud gyda'r gosodiadau a ddewiswyd" msgid "Add muted words and tags" msgstr "Ychwanegu geiriau a thagiau wedi'u tewi" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Ychwanegu post newydd" @@ -694,17 +726,17 @@ msgstr "Ychwanegu pobl" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79 msgid "Add people to list" -msgstr "" +msgstr "Ychwanegu pobl at y rhestr" #: src/components/dms/EmojiPopup.android.tsx:55 msgid "Add Reaction" -msgstr "" +msgstr "Ychwanegu Ymateb" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "Ychwanegu ffrydiau wedi'u hargymell" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Ychwanegu'r ychydig o lifau i'ch pecyn cychwyn!" @@ -723,26 +755,22 @@ msgstr "Ychwanegu'r ffrwd hon at eich ffrydiau" #: src/view/com/profile/ProfileMenu.tsx:305 #: src/view/com/profile/ProfileMenu.tsx:308 msgid "Add to lists" -msgstr "Ychwanegu at restrau" - -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Ychwanegu at fy ffrydiau" +msgstr "Ychwanegu at y rhestrau" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" -msgstr "" +msgstr "Ychwanegu defnyddiwr at y rhestr" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109 #: src/view/com/modals/UserAddRemoveLists.tsx:162 msgid "Added to list" msgstr "Ychwanegwyd at y rhestr" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Ychwanegwyd at fy ffrydiau" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "Manylion ychwanegol (terfyn o 1000 nod)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Manylion ychwanegol (terfyn o 300 nod)" @@ -750,18 +778,18 @@ msgstr "Manylion ychwanegol (terfyn o 300 nod)" msgid "Adult" msgstr "Oedolyn" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Cynnwys Oedolion" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Dim ond trwy'r We yn <0>bsky.app y mae modd galluogi cynnwys oedolion." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Mae cynnwys oedolion wedi'i analluogi." @@ -770,16 +798,32 @@ msgstr "Mae cynnwys oedolion wedi'i analluogi." msgid "Adult Content labels" msgstr "Labeli Cynnwys Oedolion" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Uwch" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "Sicrwydd Oed" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "Wedi methu anfon ymholiad sicrwydd oed, ceisiwch eto." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "Wedi cyflwyno ymholiad sicrwydd oed" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "Dim ond ychydig funudau fydd yr ymholiad Sicrwydd Oed yn ei gymryd" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" -msgstr "" +msgstr "alice@example.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Y Cyfan" @@ -793,7 +837,7 @@ msgstr "Mae'r holl gyfrifon wedi'u dilyn!" msgid "All languages" msgstr "Pob iaith" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Yr holl ffrydiau rydych wedi'u cadw, mewn un lle." @@ -802,16 +846,21 @@ msgstr "Yr holl ffrydiau rydych wedi'u cadw, mewn un lle." msgid "Allow access to your direct messages" msgstr "Caniatáu mynediad i'ch negeseuon uniongyrchol" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Caniatáu negeseuon newydd oddi wrth" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "Caniatáu i eraill gael clywed am eich postiadau" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Caniatáu postiadau dyfynnu" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Caniatáu atebion gan:" @@ -828,13 +877,13 @@ msgstr "Oes gennych chi god yn barod?" msgid "Already signed in as @{0}" msgstr "Eisoes wedi mewngofnodi fel @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "AMGEN" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,56 +893,48 @@ msgstr "AMGEN" msgid "Alt text" msgstr "Testun amgen" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Testun Amgen" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Mae testun amgan yn disgrifio delweddau ar gyfer defnyddwyr dall a rhai â golwg gwan, ac yn helpu i roi cyd-destun i bawb." #: src/view/com/composer/GifAltText.tsx:179 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}" -msgstr "" +msgstr "Bydd testun amgen yn cael ei gwtogi. {MAX_ALT_TEXT, plural, other {Limit: {0} nod.}}" #: src/screens/Settings/components/DisableEmail2FADialog.tsx:93 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Mae e-bost wedi'i anfon at {0}. Mae'n cynnwys cod cadarnhau y gallwch ei nodi isod." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Mae e-bost wedi'i anfon! Rhowch y cod cadarnhau sydd wedi'i gynnwys yn yr e-bost isod." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Digwyddodd gwall" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Digwyddodd gwall" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Digwyddodd gwall wrth gywasgu'r fideo." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." -msgstr "" +msgstr "Digwyddodd gwall wrth nôl y ffrwd." #: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Digwyddodd gwall wrth gynhyrchu'ch pecyn cychwyn. Eisiau ceisio eto?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Digwyddodd gwall wrth lwytho'r fideo. Ceisiwch eto yn nes ymlaen." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Digwyddodd gwall wrth lwytho'r fideo. Ceisiwch eto." @@ -910,14 +951,14 @@ msgstr "Digwyddodd gwall wrth ddewis y fideo" msgid "An error occurred while trying to follow all" msgstr "Digwyddodd gwall wrth geisio dilyn pob un" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Digwyddodd gwall wrth lwytho'r fideo i fyny." #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84 #: src/components/verification/VerifierDialog.tsx:86 msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts." -msgstr "" +msgstr "Darlun yn dangos bod Bluesky yn dewis dilyswyr dibynadwy, a dilyswyr dibynadwy yn eu tro yn gwirio cyfrifon defnyddwyr unigol." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28 #: src/lib/moderation/useReportOptions.ts:28 @@ -934,8 +975,8 @@ msgstr "Digwyddodd mater wrth geisio agor y sgwrs" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -943,7 +984,7 @@ msgstr "Digwyddodd mater, ceisiwch eto." #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118 msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name." -msgstr "" +msgstr "Darlun bras o iPhone yn dangos ap Bluesky ar agor i broffil defnyddiwr dilys gyda marc ticio nesaf at eu henw dangos." #: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" @@ -954,7 +995,7 @@ msgstr "digwyddodd gwall anhysbys" msgid "an unknown labeler" msgstr "labelwr anhysbys" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "a" @@ -963,13 +1004,17 @@ msgstr "a" msgid "Animals" msgstr "Anifeiliaid" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "GIF wedi'i hanimeiddio" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" -msgstr "" +msgstr "Mae dilysu nawr ar gael ar Bluesky" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33 #: src/lib/moderation/useReportOptions.ts:33 @@ -980,7 +1025,13 @@ msgstr "Ymddygiad Gwrthgymdeithasol" msgid "Anybody can interact" msgstr "Gall unrhyw un ryngweithio" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "Unrhyw un sy'n fy nilyn" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "Dim ond llythrennau, rhifau, bylchau, llinellau toriad a thanlinellau y msgid "App password names must be at least 4 characters long" msgstr "Rhaid i enwau cyfrinair ap fod o leiaf 4 nod" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Cyfrineiriau apiau" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Cyfrineiriau Apiau" @@ -1040,11 +1091,11 @@ msgstr "Apêl wedi'i chyflwyno" #: src/screens/Takendown.tsx:111 #: src/screens/Takendown.tsx:144 msgid "Appeal suspension" -msgstr "Atal apêl" +msgstr "Apelio yn erbyn yr atal" #: src/screens/Takendown.tsx:114 msgid "Appeal Suspension" -msgstr "Atal Apêl" +msgstr "Apelio yn erbyn yr Atal" #: src/screens/Messages/components/ChatDisabled.tsx:51 #: src/screens/Messages/components/ChatDisabled.tsx:53 @@ -1053,10 +1104,10 @@ msgstr "Atal Apêl" msgid "Appeal this decision" msgstr "Apelio'r penderfyniad hwn" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Gwedd" @@ -1065,12 +1116,20 @@ msgstr "Gwedd" msgid "Apply default recommended feeds" msgstr "Gosod y ffrydiau rhagosodedig sy'n cael eu hargymell" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "Gosod Cais Tynnu" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Wedi'i archifo o {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Post wedi'i archifo" @@ -1078,7 +1137,7 @@ msgstr "Post wedi'i archifo" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Ydych chi'n siŵr eich bod am ddileu cyfrinair ap \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Ydych chi'n siŵr eich bod am ddileu'r neges hon? Bydd y neges yn cael ei dileu i chi, ond nid ar gyfer y cyfranogwr arall." @@ -1098,19 +1157,15 @@ msgstr "Ydych chi'n siŵr eich bod eisiau gadael y sgwrs hon?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Ydych chi'n siŵr eich bod am adael y sgwrs hon? Bydd eich negeseuon yn cael eu dileu i chi, ond nid ar gyfer y cyfranogwr arall." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Ydych chi'n siŵr eich bod am dynnu {0} o'ch ffrydiau?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Ydych chi'n siŵr eich bod am dynnu hwn o'ch ffrydiau?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "A ydych yn siŵr yr hoffech gael gwared ar y drafft hwn?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Ydych chi'n siŵr yr hoffech chi gael gwared ar y postiad hwn?" @@ -1131,29 +1186,26 @@ msgstr "Celf" msgid "Artistic or non-erotic nudity." msgstr "Noethni artistig neu anerotig." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" -msgstr "" +msgstr "Neilltuo pwnc ar gyfer algo" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "O leiaf 3 nod" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Mae'r dewisiadau awtochwarae wedi'u symud i osodiadau <0>Cynnwys a Chyfryngau." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Awtochwarae fideos a GIFs" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Awtochwarae fideos a GIFs" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Nôl" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Nôl i Sgyrsiau" @@ -1184,7 +1236,7 @@ msgstr "Cyn creu rhestr, yn gyntaf rhaid i chi wirio'ch e-bost." #: src/lib/hooks/useOpenComposer.tsx:14 msgid "Before creating a post or replying, you must first verify your email." -msgstr "" +msgstr "Cyn creu postiad neu ateb, rhaid i chi ddilysu'ch e-bost yn gyntaf." #: src/components/StarterPack/ProfileStarterPacks.tsx:235 #: src/components/StarterPack/ProfileStarterPacks.tsx:245 @@ -1193,30 +1245,46 @@ msgstr "Cyn creu pecyn cychwyn, rhaid i chi wirio'ch e-bost yn gyntaf." #: src/screens/Messages/components/RequestButtons.tsx:235 msgid "Before you can accept this chat request, you must first verify your email." -msgstr "" +msgstr "Cyn y gallwch dderbyn y cais sgwrsio hwn, rhaid i chi ddilysu'ch e-bost yn gyntaf." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "Cyn i chi dderbyn hysbysiadau am bostiadau {name}, rhaid i chi yn gyntaf ddilysu eich e-bost." #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." -msgstr "" +msgstr "Cyn y gallwch anfon neges at ddefnyddiwr arall, rhaid i chi ddilysu'ch cyfeiriad e-bost yn gyntaf." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "Cychwyn" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "Cychwynnwch y broses sicrwydd oed" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "Cychwynnwch y broses sicrwydd oed drwy lanw'r meysydd isod." #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Penblwydd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Rhwystro" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Rhwystro" msgid "Block account" msgstr "Rhwystro cyfrif" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Rhwystro Cyfrif?" @@ -1262,33 +1330,33 @@ msgstr "Rhwystro defnyddiwr" msgid "Block User" msgstr "Rhwystro'r Defnyddiwr" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Ddim ar gael" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Cyfrifon wedi'u rhwystro" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Cyfrifon wedi'u Rhwystro" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." -msgstr "Nid oes modd i gyfrifon sydd wedi'u rhwystro ymateb yn eich trywyddau, eich crybwyllidau, na rhyngweithio â chi fel arall." +msgstr "Does dim modd i gyfrifon sydd wedi'u rhwystro ymateb yn eich trywyddau, eich crybwyllidau, na rhyngweithio â chi fel arall." #: src/view/screens/ModerationBlockedAccounts.tsx:190 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." -msgstr "Nid oes modd i gyfrifon sydd wedi'u rhwystro ymateb yn eich trywyddau, eich crybwylliadau, na rhyngweithio â chi fel arall. Fyddwch chi ddim yn gweld eu cynnwys a byddan nhw'n cael eu hatal rhag gweld eich un chi." +msgstr "Does dim modd i gyfrifon sydd wedi'u rhwystro ymateb yn eich trywyddau, eich crybwylliadau, na rhyngweithio â chi fel arall. Fyddwch chi ddim yn gweld eu cynnwys a byddan nhw'n cael eu hatal rhag gweld eich un chi." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Postiad wedi'i rwystro." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Nid yw rhwystro'n atal y labelwr hwn rhag gosod labeli ar eich cyfrif." @@ -1309,11 +1377,12 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." -msgstr "Nid yw Bluesky yn gallu cadarnhau dilysrwydd y dyddiad honedig." +msgstr "Dyw Bluesky ddim yn gallu cadarnhau dilysrwydd y dyddiad honedig." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic ™" @@ -1345,6 +1414,14 @@ msgstr "Ni fydd Bluesky yn dangos eich proffil na'ch postiadau i ddefnyddwyr syd #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132 msgid "Bluesky will proactively verify notable and authentic accounts." +msgstr "Bydd Bluesky yn rhagweithiol yn dilysu cyfrifon nodedig a dilys." + +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" msgstr "" #: src/screens/Settings/AppIconSettings/index.tsx:99 @@ -1368,23 +1445,20 @@ msgstr "Pylu delweddau a hidlo o ffrydiau" msgid "Books" msgstr "Llyfrau" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Porwch ragor o gyfrifon ar y dudalen Archwilio" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Porwch ragor o ffrydiau ar y dudalen Archwilio" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Pori ragor o awgrymiadau" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Porwch ragor o awgrymiadau ar y dudalen Archwilio" @@ -1407,7 +1481,7 @@ msgstr "Porwch becyn cychwyn {displayName}" #: src/screens/Search/modules/ExploreTrendingTopics.tsx:93 msgid "Browse topic {0}" -msgstr "" +msgstr "Porwi pwnc {0}" #: src/components/TrendingTopics.tsx:232 msgid "Browse topic {displayName}" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Busnes" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Gan {0}" @@ -1428,34 +1502,45 @@ msgstr "Gan {0}" msgid "By <0>{0}" msgstr "Gan <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "Drwy barhau, rydych yn cytuno i <0>Amodau Defnydd KWS ac yn cydnabod y bydd KWS yn cadw eich statws dilysedig gyda'ch cyfeiriad hashedig yn unol â <1>Pholisi Preifatrwydd KWS. Mae hyn yn golygu na fydd angen i chi ddilysu eto y tro nesaf y byddwch chi'n defnyddio'r e-bost hwn ar gyfer apiau eraill, gemau a gwasanaethau sy'n cael eu pweru gan dechnoleg KWS." + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Trwy greu cyfrif rydych yn cytuno i'r <0>Polisi Preifatrwydd." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Trwy greu cyfrif rydych yn cytuno i'r <0>Telerau Gwasanaeth a'r <1>Polisi Preifatrwydd." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Trwy greu cyfrif rydych yn cytuno i'r <0>Telerau Gwasanaeth." #: src/screens/Search/components/StarterPackCard.tsx:105 msgid "By you" -msgstr "" +msgstr "Gennych chi" #: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Camera" msgstr "Camera" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Camera" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Diddymu" @@ -1500,11 +1582,7 @@ msgstr "Canslo dileu'r cyfrif" msgid "Cancel image crop" msgstr "Diddymu'r tocio delwedd" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Diddymu'r golygu proffil" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Diddymu'r postiad dyfynnu" @@ -1516,14 +1594,10 @@ msgstr "Diddymu'r ailweithredu ac allgofnodi" msgid "Cancel search" msgstr "Diddymu'r chwilio" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Yn diddymu agor y wefan gysylltiedig" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Methu rhyngweithio â defnyddiwr sydd wedi'i rwystro" @@ -1551,19 +1625,14 @@ msgstr "Newid eicon ap i \"{0}\"" #: src/components/AppLanguageDropdown.tsx:40 msgid "Change app language" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Newid cyfeiriad e-bost" +msgstr "Newid iaith yr ap" #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Newid Enw Dangos" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Newid y gwasanaeth cymedroli" @@ -1579,14 +1648,6 @@ msgstr "Newid iaith postiad i {suggestedLanguageName}" msgid "Change report reason" msgstr "Newid y rheswm am adrodd" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Newid Eich E-bost" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Newidia dy gyfeiriad e-bost" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Yn newid eicon ap" @@ -1596,12 +1657,17 @@ msgstr "Yn newid eicon ap" msgid "Changes hosting provider" msgstr "Yn newid darparwr gwesteiwr" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "Newidiadau wedi'u cadw" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" -msgstr "Sgwrsio" +msgstr "Sgyrsiau" #: src/screens/Messages/components/RequestButtons.tsx:78 #: src/screens/Messages/components/RequestButtons.tsx:304 @@ -1609,38 +1675,49 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Wedi dileu'r sgwrs" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "Negeseuon sgyrsiau - tawel" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "Negeseuon sgyrsiau - sain" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Sgwrs wedi'i thewi" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "Dewch derbyn cais am sgwrs" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Ceisiadau am sgyrsiau" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" -msgstr "Gosodiadau sgwrsio" +msgstr "Gosodiadau sgyrsiau" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" -msgstr "Gosodiadau Sgwrsio" +msgstr "Gosodiadau Sgyrsiau" #: src/components/dms/ConvoMenu.tsx:178 msgctxt "toast" msgid "Chat unmuted" -msgstr "Dad-dewi sgwrsio" +msgstr "Dad-dewi sgyrsiau" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Sgyrsiau" @@ -1661,7 +1738,7 @@ msgstr "Gwiriwch eich blwch derbyn am e-bost gyda'r cod cadarnhau i'w roi isod:" msgid "Choose domain verification method" msgstr "Dewiswch ddull dilysu parth" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Dewiswch Ffrydiau" @@ -1669,7 +1746,7 @@ msgstr "Dewiswch Ffrydiau" msgid "Choose for me" msgstr "Dewiswch i mi" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Dewiswch Bobl" @@ -1685,52 +1762,56 @@ msgstr "Dewiswch y lliw hwn fel eich afatar" msgid "Choose your account provider" msgstr "Dewiswch ddarparwr eich cyfrif" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Dewiswch eich llinell amser eich hun! Mae ffrydiau adeiladwyd gan y gymuned yn eich helpu i ddod o hyd i gynnwys rydych yn ei hoffi." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Dewiswch eich cyfrinair" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Dewiswch eich enw defnyddiwr" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Clirio'r holl ddata storio" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Clirio'r holl ddata storio (ailgychwyn ar ôl hyn)" #: src/screens/Settings/AboutSettings.tsx:116 #: src/screens/Settings/AboutSettings.tsx:120 msgid "Clear image cache" -msgstr "" +msgstr "Clirio'r storfa delweddau" #: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" msgstr "Clirio'r ymholiad chwilio" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "Clicio am wybodaeth" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "cliciwch yma" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." -msgstr "" +msgstr "Cliciwch yma i ailgychwyn y broses ddilysu." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" -msgstr "" +msgstr "Cliciwch yma i ddiweddaru eich e-bost" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Cliciwch i analluogi dyfyniadau o'r postiad hwn." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Cliciwch i alluogi postiadau dyfynbris o'r postiad hon." @@ -1750,14 +1831,16 @@ msgstr "Hinsawdd" msgid "Clip 🐴 clop 🐴" msgstr "Clip 🐴 clop 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Clip 🐴 clop 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Cau" @@ -1789,13 +1876,15 @@ msgstr "Rhybudd cau" msgid "Close bottom drawer" msgstr "Cau'r y drôr gwaelod" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" -msgstr "Cau'r deialog" +msgstr "Cau'r ddeialog" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Cau'r ddewislen drôr" @@ -1804,9 +1893,9 @@ msgstr "Cau'r ddewislen drôr" msgid "Close emoji picker" msgstr "Cau'r dewisydd emoji" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" -msgstr "Cau'r deialog GIF" +msgstr "Cau'r ddeialog GIFau" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:31 msgid "Close image" @@ -1820,19 +1909,19 @@ msgstr "Cau'r golwg delwedd" #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 msgid "Close menu" -msgstr "" +msgstr "Caewch y ddewislen" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" -msgstr "Cau'r deialog hwn" +msgstr "Cau'r ddeialog hon" #: src/screens/Login/PasswordUpdatedForm.tsx:32 msgid "Closes password update alert" msgstr "Yn cau'r rhybudd diweddaru cyfrinair" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" -msgstr "" +msgstr "Yn cau cyfansoddwr postiad ac yn dileu postiad drafft" #: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137 #: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173 @@ -1843,16 +1932,16 @@ msgstr "Yn cau'r dewisydd emoji" msgid "Closes viewer for header image" msgstr "Yn cau'r golwg delwedd pennyn" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Lleihau'r rhestr o ddefnyddwyr" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Yn lleihau'r rhestr o ddefnyddwyr hysbysiad penodol" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Modd lliw" @@ -1870,7 +1959,8 @@ msgstr "Comedi" msgid "Comics" msgstr "Comics" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Canllawiau Cymunedol" @@ -1879,38 +1969,34 @@ msgstr "Canllawiau Cymunedol" msgid "Complete onboarding and start using your account" msgstr "Cwblhewch y cyflwyniad a dechreuwch ddefnyddio'ch cyfrif" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Cwblhewch yr her" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Cyfansoddi postiad newydd" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" -msgstr "" +msgstr "Cyfansoddwch bostiadau hyd at {0, plural, zero {} one {# nod} two {# nod} few {# characters} many {# nod}other {# nod}}" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Ysgrifennu ateb" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Yn cywasgu fideo..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Ffurfweddw gosodiad hidlo cynnwys ar gyfer categori: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Wedi'i ffurfweddu yn y <0>gosodiadau cymedroli." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,50 +2012,56 @@ msgstr "Cadarnhau gosodiadau iaith cynnwys" msgid "Confirm delete account" msgstr "Cadarnhau dileu cyfrif" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Cadarnhewch eich oedran:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Cadarnhewch eich dyddiad geni" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 #: src/view/com/modals/DeleteAccount.tsx:220 #: src/view/com/modals/DeleteAccount.tsx:226 msgid "Confirmation code" -msgstr "Cod cadarnhad" - -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Cod Cadarnhau" +msgstr "Cod cadarnhau" #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Yn cysylltu..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "Mater cysylltu" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "Cysylltwch â'n tîm cymedroli" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" -msgstr "Cysylltu â'n Chefnogaeth" +msgstr "Cysylltu â'n chefnogaeth" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "Cysylltwch â ni" #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Cynnwys a Chyfryngau" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Cynnwys a chyfryngau" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Cynnwys a Chyfryngau" @@ -1977,7 +2069,8 @@ msgstr "Cynnwys a Chyfryngau" msgid "Content Blocked" msgstr "Cynnwys wedi'i Rhwystro" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Hidlo cynnwys" @@ -2006,10 +2099,12 @@ msgstr "Rhybudd Cynnwys" msgid "Content warnings" msgstr "Rhybuddion cynnwys" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Cefndir ddewislen cyd-destun, cliciwch i gau'r ddewislen." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Parhau" msgid "Continue as {0} (currently signed in)" msgstr "Parhau fel {0} (wedi mewngofnodi ar hyn o bryd)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "Parhau'r edefyn" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Parhau â'r trywydd..." @@ -2029,6 +2129,10 @@ msgstr "Parhau â'r trywydd..." msgid "Continue to next step" msgstr "Ymlaen i'r cam nesaf" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "Sgwrs" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Wedi'i gopïo" msgid "Copied build version to clipboard" msgstr "Fersiwn adeiladu wedi'i gopïo i'r clipfwrdd" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Copïau adeiladu fersiwn i'r clipfwrdd" msgid "Copy" msgstr "Copïo" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Copïo Cyfrinair Ap" @@ -2087,8 +2187,8 @@ msgstr "Copïo Cyfrinair Ap" msgid "Copy at:// URI" msgstr "Copïwch yn: // URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Copïo DID awdur" @@ -2120,34 +2220,34 @@ msgstr "Copïo Dolen" msgid "Copy link to list" msgstr "Copïo dolen i'r rhestr" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Copïo dolen i'r postiad" #: src/view/com/profile/ProfileMenu.tsx:243 #: src/view/com/profile/ProfileMenu.tsx:254 msgid "Copy link to profile" -msgstr "" +msgstr "Copïo'r ddolen i'r proffil" #: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Copy link to starter pack" -msgstr "" +msgstr "Copïo'r ddolen i'r pecyn cychwyn" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Copïo testun neges" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Copïo postiad yn: // URI" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Copïo testun postiad" @@ -2159,11 +2259,25 @@ msgstr "Copïo cod QR" msgid "Copy TXT record value" msgstr "Copïo gwerth cofnod TXT" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Polisi Hawlfraint" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "Methu cysylltu i ffrwd gyfaddas" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "Methu cysylltu i wasanaeth ffrydio" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "Methu canfod proffil" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "Methu tewi sgwrs" msgid "Could not process your video" msgstr "Methu prosesu eich fideo" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "Methu cadw'r newidiadau: {0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "Wedi methu diweddaru gosodiadau hysbysu" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Creu" @@ -2195,7 +2317,7 @@ msgstr "Creu cod QR ar gyfer pecyn cychwyn" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Creu pecyn cychwyn" @@ -2205,28 +2327,29 @@ msgstr "Creu pecyn cychwyn i mi" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Creu cyfrif" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Creu Cyfrif" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Creu cyfrif" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:310 msgid "Create an account without using this starter pack" -msgstr "" +msgstr "Crëwch gyfrif heb ddefnyddio'r pecyn cychwyn hwn" #: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Create an avatar instead" @@ -2241,7 +2364,7 @@ msgstr "Creu un arall" msgid "Create new account" msgstr "Creu cyfrif newydd" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Creu adroddiad ar gyfer {0}" @@ -2268,7 +2391,7 @@ msgstr "Cyfaddas" msgid "Customization options" msgstr "Dewisiadau cyfaddasu" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Addasu pwy all ryngweithio â'r postiad hwn." @@ -2278,12 +2401,12 @@ msgstr "Yn addasu eich profiad Bluesky" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Tywyll" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Tywyll" @@ -2292,21 +2415,21 @@ msgstr "Tywyll" msgid "Dark mode" msgstr "Modd tywyll" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Thema dywyll" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Dyddiad geni" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Cau cyfrif" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Cymedroli Dadfygio" @@ -2314,7 +2437,7 @@ msgstr "Cymedroli Dadfygio" msgid "Debug panel" msgstr "Panel dadfygio" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Rhagosodiad" @@ -2322,8 +2445,8 @@ msgstr "Rhagosodiad" msgid "Default icons" msgstr "Eiconau rhagosodedig" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Eiconau rhagosodedig" msgid "Delete" msgstr "Dileu" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Dileu cyfrif" @@ -2355,7 +2478,7 @@ msgstr "Dileu cyfrinair ap?" msgid "Delete chat" msgstr "Dileu sgwrs" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Dileu cofnod datganiad sgwrs" @@ -2370,19 +2493,19 @@ msgstr "Dileu sgwrs" msgid "Delete Conversation" msgstr "Dileu Sgwrs" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Dileu i mi" #: src/view/screens/ProfileList.tsx:556 msgid "Delete list" -msgstr "" +msgstr "Dileu rhestr" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Dileu neges" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Dileu neges i mi" @@ -2390,9 +2513,9 @@ msgstr "Dileu neges i mi" msgid "Delete my account" msgstr "Dileu fy ngyfrif" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Dileu postiad" @@ -2409,11 +2532,11 @@ msgstr "Dileu pecyn cychwyn?" msgid "Delete this list?" msgstr "Dileu'r rhestr hon?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Dileu'r postiad hwn?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Dilëwyd" @@ -2422,15 +2545,20 @@ msgstr "Dilëwyd" msgid "Deleted Account" msgstr "Cyfrif wedi'i ddileu" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "Rhestr dilëwyd" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Postiad wedi'i ddileu." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Disgrifiad" @@ -2440,19 +2568,19 @@ msgstr "Mae'r disgrifiad yn rhy hir" #: src/screens/Profile/Header/EditProfileDialog.tsx:390 msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" -msgstr "" +msgstr "Mae'r disgrifiad yn rhy hir. {DESCRIPTION_MAX_GRAPHEMES, plural, other {Uchafswm y nodau yw #.}}" #: src/view/com/composer/GifAltText.tsx:150 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "Testun amgen disgrifiadol" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Datgysylltu dyfyniad" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Datgysylltu postiad dyfyniad?" @@ -2466,53 +2594,53 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Modd datblygwr wedi'i alluogi" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Dewisiadau datblygwr" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Deialog: addaswch pwy all ryngweithio â'r postiad hwn" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Tywyllu" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242 msgid "Disable 2FA" -msgstr "" +msgstr "Analluogi 2FA" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157 msgid "Disable email 2FA" -msgstr "" +msgstr "Analluogi e-bost 2FA" #: src/screens/Settings/components/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "Analluogi E-bost 2FA" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Analluogi adborth haptig" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Analluogi isdeitlau" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Analluogwyd" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Dileu" @@ -2520,11 +2648,11 @@ msgstr "Dileu" msgid "Discard changes?" msgstr "Dileu'r newidiadau?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Dileu'r drafft?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Dileu'r postiad?" @@ -2535,14 +2663,14 @@ msgstr "Gofynnwch i apiau beidio dangos fy nghyfrif i ddefnyddwyr sydd wedi allg #: src/screens/Search/Explore.tsx:434 msgid "Discover Feeds" -msgstr "" +msgstr "Darganfod Ffrydiau" #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" msgstr "Darganfod ffrydiau cyfaddas newydd" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Darganfod Ffrydiau Newydd" @@ -2550,7 +2678,7 @@ msgstr "Darganfod Ffrydiau Newydd" msgid "Dismiss" msgstr "Cau" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Cau'r gwall" @@ -2560,35 +2688,35 @@ msgstr "Cau'r canllaw cychwyn arni" #: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "Dismiss interests" +msgstr "Diystyru diddordebau" + +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:92 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Cau'r adran hon" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Dangos bathodynnau testun amgen mwy" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Enw dangos" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Enw Dangos" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Mae'r enw dangos yn rhy hir" #: src/screens/Profile/Header/EditProfileDialog.tsx:340 msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" -msgstr "" +msgstr "Mae'r enw dangos yn rhy hir. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {Uchafswm y nodau yw #.}}" #: src/screens/Settings/components/ChangeHandleDialog.tsx:392 #: src/screens/Settings/components/ChangeHandleDialog.tsx:394 @@ -2603,21 +2731,26 @@ msgstr "Peidiwch â gosod gair mud hwn i ddefnyddwyr rydych chi'n eu dilyn" msgid "Does not include nudity." msgstr "Nid yw'n cynnwys noethni." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Nid yw'n dechrau nac yn gorffen gyda chysylltnod" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Parth wedi'i wirio!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." -msgstr "" +msgstr "Dim cod gennych chi neu angen un newydd? <0>Cliciwch yma." #: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37 msgid "Don't see an email? <0>Click here to resend." -msgstr "" +msgstr "Ddim yn gweld e-bost? <0>Cliciwch yma i'w ail-anfon." + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "Peidio dangos hwn eto" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "Peidiwch â phoeni! Mae'r holl negeseuon a gosodiadau wedi'u cadw a byddan nhw ar gael ar ôl i chi gael eich dilysu eich bod yn oedolyn." #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 @@ -2654,13 +2787,13 @@ msgstr "Gorffen{extraText}" #: src/components/dms/MessageItem.tsx:161 msgid "Double tap or long press the message to add a reaction" -msgstr "" +msgstr "Tapio dwywaith neu bwyso'n hir i ychwanegu ymateb" #: src/components/Dialog/index.tsx:322 msgid "Double tap to close the dialog" msgstr "Tapiwch ddwywaith i gau'r ddeialog" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Tapio dwywaith i'w hoffi" @@ -2673,7 +2806,7 @@ msgstr "Llwythwch Bluesky i Lawr" msgid "Download CAR file" msgstr "Llwythwch ffeil CAR i lawr" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Gollwng i ychwanegu delweddau" @@ -2689,18 +2822,10 @@ msgstr "e.e. alys" msgid "e.g. Alice Lastname" msgstr "e.e. Alys Enwolaf" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "e.e. Alys Roberts" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "e.e. alys.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "e.e. Artist, caru cŵn a darllenydd brwd." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "E.e. noethlymunwyr artistig." @@ -2725,10 +2850,11 @@ msgstr "e.e. Defnyddwyr sy'n ateb dro ar ôl tro gyda hysbysebion." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Mae pob cod yn gweithio unwaith. Byddwch yn derbyn mwy o godau gwahoddiad o bryd i'w gilydd." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Golygu" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Golygu" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Golygu afatar" @@ -2749,19 +2875,19 @@ msgstr "Golygu Ffrydiau" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Golygu delwedd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Golygu gosodiadau rhyngweithio" #: src/screens/Search/modules/ExploreInterestsCard.tsx:98 #: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Edit interests" -msgstr "" +msgstr "Golygu diddordebau" #: src/view/screens/ProfileList.tsx:544 msgid "Edit list details" @@ -2770,39 +2896,39 @@ msgstr "Golygu manylion y rhestr" #: src/view/com/profile/ProfileMenu.tsx:317 #: src/view/com/profile/ProfileMenu.tsx:323 msgid "Edit live status" -msgstr "" +msgstr "Golygu statws byw" #: src/view/com/modals/CreateOrEditList.tsx:228 msgid "Edit Moderation List" msgstr "Golygu Rhestr Cymedroli" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Golygu Fy Ffrydiau" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Golygu fy mhroffil" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "Golygu hysbysiadau gan {0}" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Golygu Pobl" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Golygu gosodiadau rhyngweithio postiad" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Golygu proffil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Golygu Proffil" @@ -2814,19 +2940,11 @@ msgstr "Golygu pecyn cychwyn" msgid "Edit User List" msgstr "Golygu Rhestr Defnyddwyr" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Golygu pwy all ateb" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Golygu eich enw dangos" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Golygu eich disgrifiad proffil" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Golygu eich pecyn cychwyn" @@ -2839,8 +2957,8 @@ msgstr "Addysg" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "Naill ai mae crëwr y rhestr hon wedi'ch rhwystro chi neu rydych chi wedi rhwystro'r crëwr." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "E-bost" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "E-bost 2FA wedi'i analluogi" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "E-bost 2FA wedi'i alluogi" @@ -2863,19 +2981,15 @@ msgstr "E-bost wedi'i ail-anfon" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:208 msgid "Email sent!" -msgstr "" - -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "" +msgstr "Anfonwyd yr e-bost!" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" -msgstr "" +msgstr "Dilysu e-bost wedi'i gwblhau!" #: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" -msgstr "E-bost wedi'i Wirio" +msgstr "E-bost wedi'i Ddilysu" #: src/components/dialogs/Embed.tsx:181 msgid "Embed HTML code" @@ -2883,16 +2997,16 @@ msgstr "Mewnblannu cod HTML" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" -msgstr "Mewnblannu post" +msgstr "Mewnblannu postiad" #: src/components/dialogs/Embed.tsx:112 msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Mewnblanwch y postiad hon yn eich gwefan. Copïwch y pwt canlynol a'i gludo i god HTML eich gwefan." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Chwaraewr fideo wedi'i fewnblannu" @@ -2906,29 +3020,33 @@ msgstr "Galluogi" msgid "Enable {0} only" msgstr "Galluogi dim ond {0}" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Galluogi cynnwys oedolion" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92 msgid "Enable email 2FA" -msgstr "" +msgstr "Galluogi e-bost 2FA" #: src/components/dialogs/EmbedConsent.tsx:81 #: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "Galluogi cyfryngau allanol" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Galluogi chwaraewyr cyfryngau ar gyfer" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Galluogi hysbysiadau blaenoriaeth" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "Galluogwch hysbysiadau am gyfrif drwy fynd i'w proffil a phwyso'r <0>eicon cloch <1/>." -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "Galluogi gwthio hysbysiadau" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Galluogi isdeitlau" @@ -2941,17 +3059,14 @@ msgstr "Galluogi dim ond y ffynhonnell hon" msgid "Enable trending topics" msgstr "Galluogi pynciau tueddol" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Galluogi fideos tueddol yn eich ffrwd Darganfod" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Galluogi fideos tueddol yn eich ffrwd Darganfod." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Galluogwyd" @@ -2963,7 +3078,7 @@ msgstr "Diwedd y ffrwd" msgid "Ensure you have selected a language for each subtitle file." msgstr "Gwnewch yn siŵr eich bod wedi dewis iaith ar gyfer pob ffeil isdeitlau." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Rhowch gyfrinair" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Rhowch air neu dag" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" -msgstr "" +msgstr "Rhowch y cod" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Rhowch y Cod" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Mynd i'r sgrin lawn" @@ -2999,21 +3110,17 @@ msgstr "Rhowch yr e-bost a ddefnyddiwyd gennych i greu eich cyfrif. Byddwn yn an #: src/screens/Login/LoginForm.tsx:218 msgid "Enter the username or email address you used when you created your account" -msgstr "" +msgstr "Rhowch yr enw defnyddiwr neu'r cyfeiriad e-bost ddefnyddiwyd gennych pan wnaethoch chi greu eich cyfrif" #: src/components/dialogs/BirthDateSettings.tsx:104 msgid "Enter your birth date" msgstr "Nodwch eich dyddiad geni" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Rhowch eich cyfeiriad e-bost" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Rhowch eich cyfeiriad e-bost newydd isod." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Rhowch eich cyfrinair" @@ -3022,24 +3129,36 @@ msgstr "Rhowch eich cyfrinair" msgid "Enter your username and password" msgstr "Rhowch eich enw defnyddiwr a chyfrinair" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Yn mynd i'r sgrin lawn" #: src/screens/Search/modules/ExploreTrendingTopics.tsx:239 msgid "Entertainment" -msgstr "" +msgstr "Adloniant" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Gwall" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "Gwall wrth lwytho'r postiad" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "Gwall wrth lwytho dewis" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "Neges gwall" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Bu gwall wrth gadw ffeil" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Gwall wrth dderbyn ymateb captcha." @@ -3047,31 +3166,38 @@ msgstr "Gwall wrth dderbyn ymateb captcha." msgid "Error:" msgstr "Gwall:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" -msgstr "" +msgstr "Gwall: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Pawb" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Gall pawb ateb" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Gall pawb ateb i'r postiad hwn." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Pawb" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "Popeth arall" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" -msgstr "Gormod o grybwyll neu atebion" +msgstr "Gormod o grybwylliadau neu atebion" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:86 #: src/lib/moderation/useReportOptions.ts:86 @@ -3086,7 +3212,7 @@ msgstr "Eithrio defnyddwyr rydych yn eu dilyn" msgid "Excludes users you follow" msgstr "Yn eithrio defnyddwyr rydych yn eu dilyn" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Gadael y sgrin lawn" @@ -3106,24 +3232,28 @@ msgstr "Yn gadael golwg delwedd" msgid "Expand alt text" msgstr "Ehangu testun amgen" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Ehangu rhestr o ddefnyddwyr" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Ehangu neu leihau'r postiad llawn rydych yn ateb iddo" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "Estyn testun postiad" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Yn ehangu neu'n lleihau testun postiad" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" -msgstr "Disgwylir i uri ddatrys i gofnod" +msgstr "Yr uri disgwyliedig i ddatrys i gofnod" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Arbrofol" @@ -3142,7 +3272,7 @@ msgstr "Daw i ben ymhen {0}" #: src/components/live/EditLiveDialog.tsx:131 msgid "Expires in {0} at {1}" -msgstr "" +msgstr "Yn dod i ben {0} am {1}" #: src/lib/moderation/useGlobalLabelStrings.ts:47 #: src/lib/moderation/useGlobalLabelStrings.ts:51 @@ -3153,15 +3283,15 @@ msgstr "Cyfryngau di-noethol neu a allai beri gofid." msgid "Explicit sexual images." msgstr "Delweddau di-noethol amlwg." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" -msgstr "" +msgstr "Darganfod" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Allforio fy nata" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Cyfryngau Allanol" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Gall cyfryngau allanol ganiatáu i wefannau gasglu gwybodaeth amdanoch chi a'ch dyfais. Nid oes unrhyw wybodaeth yn cael ei anfon na gofyn amdano nes i chi bwyso'r botwm \"chwarae\"." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Dewisiadau Cyfryngau Allanol" @@ -3195,9 +3325,9 @@ msgid "Failed to accept chat" msgstr "Wedi methu derbyn y sgwrs" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" -msgstr "" +msgstr "Wedi methu ychwanegu emoji ymateb" #: src/screens/Settings/components/ChangeHandleDialog.tsx:587 msgid "Failed to change handle. Please try again." @@ -3211,8 +3341,8 @@ msgstr "Wedi methu creu cyfrinair ap. Ceisiwch eto." msgid "Failed to create conversation" msgstr "Wedi methu creu sgwrs" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Wedi methu creu pecyn cychwyn" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "Wedi methu dileu'r sgwrs" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Wedi methu dileu'r neges" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Wedi methu dileu postiad, ceisiwch eto" @@ -3238,8 +3368,8 @@ msgstr "Wedi methu dileu postiad, ceisiwch eto" msgid "Failed to delete starter pack" msgstr "Wedi methu dileu'r pecyn cychwyn" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "Wedi methu llwytho sgyrsiau" @@ -3250,27 +3380,45 @@ msgstr "Wedi methu llwytho sgyrsiau" msgid "Failed to load feeds preferences" msgstr "Wedi methu llwytho dewisiadau ffrydiau" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" -msgstr "Wedi methu llwytho GIFs" +msgstr "Wedi methu llwytho GIFau" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "Wedi methu llwytho gosodiadau hysbysu." #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Wedi methu llwytho'r negeseuon blaenorol" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "Methu llwytho dewis." + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 #: src/screens/Search/Explore.tsx:592 msgid "Failed to load suggested feeds" -msgstr "Wedi methu llwytho'r ffrydiau awgrymedig" +msgstr "Wedi methu llwytho'r ffrydiau awgrymwyd" #: src/screens/Search/Explore.tsx:373 msgid "Failed to load suggested follows" msgstr "Wedi methu llwytho'r awgrymiadau dilyn" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "Wedi methu nodi pob cais wedi'i ddarllen" @@ -3279,30 +3427,26 @@ msgid "Failed to pin post" msgstr "Wedi methu pinio post" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" -msgstr "" +msgstr "Wedi methu dileu emoji ymateb" #: src/components/verification/VerificationRemovePrompt.tsx:34 msgid "Failed to remove verification" -msgstr "" +msgstr "Wedi methu dileu'r dilysiad" #: src/lib/media/save-image.ts:28 msgid "Failed to save image: {0}" msgstr "Wedi methu cadw'r ddelwedd: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Wedi methu cadw dewisiadau hysbysiadau, ceisiwch eto" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "Wedi methu cadw'r gosodiadau. Ceisiwch eto." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." -msgstr "" +msgstr "Wedi methu cadw'ch diddordebau." #: src/components/dms/MessageItem.tsx:310 msgid "Failed to send" @@ -3311,31 +3455,35 @@ msgstr "Methwyd anfon" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122 #: src/components/dialogs/EmailDialog/screens/Verify.tsx:136 msgid "Failed to send email, please try again." -msgstr "" +msgstr "Wedi methu anfon e-bost, ceisiwch eto." #: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "Wedi methu cyflwyno apêl, ceisiwch eto." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Wedi methu toglo tewi'r edefyn, ceisiwch eto" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83 msgid "Failed to update email 2FA settings" -msgstr "" +msgstr "Wedi methu diweddaru gosodiadau 2FA e-bost" #: src/components/dialogs/EmailDialog/screens/Update.tsx:195 msgid "Failed to update email, please try again." -msgstr "" +msgstr "Wedi methu diweddaru'r e-bost, ceisiwch eto." #: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "Wedi methu diweddaru ffrydiau" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "Methu diweddaru datganiad hysbysiad" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Wedi methu diweddaru gosodiadau" @@ -3348,21 +3496,29 @@ msgstr "Wedi methu llwytho fideo i fyny" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:168 msgid "Failed to verify email, please try again." -msgstr "" +msgstr "Wedi methu dilysu'r e-bost, ceisiwch eto." #: src/screens/Settings/components/ChangeHandleDialog.tsx:360 msgid "Failed to verify handle. Please try again." msgstr "Wedi methu dilysu enw dangos. Ceisiwch eto." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Ffrwd" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Ffrwd gan {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "Crëwr ffrwd" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "Dynodydd ffrwd" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Dewislen ffrwd" @@ -3371,35 +3527,39 @@ msgstr "Dewislen ffrwd" msgid "Feed toggle" msgstr "Toglo ffrwd" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "Dyw'r ffrwd ddim ar gael" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Adborth" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Anfonwyd adborth!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Ffrydiau" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Mae ffrydiau yn algorithmau cyfaddas y mae defnyddwyr yn eu hadeiladu gydag ychydig o arbenigedd codio. <0/> am ragor o wybodaeth." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Diweddarwyd y ffrydiau!" @@ -3428,6 +3588,14 @@ msgstr "Hidlo'r chwiliad yn ôl iaith" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Hidlo chwiliad yn ôl iaith ( {currentLanguageLabel} - ar hyn o bryd)" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "Hidlo pwy all ddewis i dderbyn hysbysiadau am eich gweithgareddau" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "Hidlo gan bwy rydych yn derbyn hysbysiadau" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Yn cwblhau" @@ -3442,13 +3610,13 @@ msgstr "Dewch o hyd i gyfrifon i'w dilyn" #: src/components/ProgressGuide/FollowDialog.tsx:87 #: src/components/ProgressGuide/FollowDialog.tsx:374 msgid "Find people to follow" -msgstr "Ffeindio pobl i'w dilyn" +msgstr "Chwilio am bobl i'w dilyn" #: src/screens/Search/Shell.tsx:476 msgid "Find posts, users, and feeds on Bluesky" msgstr "Canfod postiadau, defnyddwyr a ffrydiau ar Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Gorffen" @@ -3456,17 +3624,17 @@ msgstr "Gorffen" msgid "Fitness" msgstr "Ffitrwydd" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Du Disglein" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Glas Disglein" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Gwyn Disglein" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Hyblyg" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Dilyn" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Dilynwch {0}" @@ -3518,7 +3686,7 @@ msgstr "Dilynwch y cyfrif" msgid "Follow all" msgstr "Dilynwch y cyfan" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Dilynwch Nôl" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Dilynwch Nôl" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Yn cael ei ddilyn gan <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Yn cael eu dilyn gan <0>{0} a {1, plural, one {# arall} other {# arall}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Yn cael ei ddilyn gan <0>{0} a <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Yn cael ei ddilyn gan <0>{0}, <1>{1}, and {2, plural, one {# arall} other {# arall}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Dilynwyr @{0} rydych chi'n eu hadnabod" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Dilynwyr rydych chi'n eu hadnabod" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Yn Dilyn" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Yn Dilyn" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Yn dilyn {0}" @@ -3577,12 +3749,12 @@ msgstr "Yn dilyn {handle}" #: src/screens/Settings/ContentAndMediaSettings.tsx:76 #: src/screens/Settings/ContentAndMediaSettings.tsx:79 msgid "Following feed preferences" -msgstr "Yn dilyn dewisiadau ffrydio" +msgstr "Dewisiadau ffrydio Yn Dilyn" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" -msgstr "Dilyn Dewisiadau Ffrydio" +msgstr "Dewisiadau Ffrydio Yn Dilyn" #: src/screens/Profile/Header/Handle.tsx:32 msgid "Follows you" @@ -3592,11 +3764,11 @@ msgstr "Yn eich dilyn chi" msgid "Follows You" msgstr "Yn Eich Dilyn Chi" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Ffont" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Maint ffont" @@ -3613,13 +3785,13 @@ msgstr "Am resymau diogelwch, bydd angen i ni anfon cod cadarnhau i'ch cyfeiriad msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Am resymau diogelwch, fyddwch chi ddim yn gallu gweld hwn eto. Os byddwch chi'n colli cyfrinair yr ap hwn, bydd angen i chi gynhyrchu un newydd." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "I gael y profiad gorau, rydym yn argymell defnyddio ffont y thema." #: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94 msgid "For You" -msgstr "" +msgstr "I Chi" #: src/components/dialogs/MutedWords.tsx:178 msgid "Forever" @@ -3628,7 +3800,7 @@ msgstr "Am Byth" #: src/screens/Login/index.tsx:153 #: src/screens/Login/index.tsx:168 msgid "Forgot Password" -msgstr "Wedi Anghofio'r Cyfrinair" +msgstr "Wedi anghofio'ch cyfrinair" #: src/screens/Login/LoginForm.tsx:248 msgid "Forgot password?" @@ -3643,11 +3815,15 @@ msgstr "Wedi anghofio?" msgid "Frequently Posts Unwanted Content" msgstr "Yn Postio Cynnwys Diangen yn Aml" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "Oddi wrth" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "Gan @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "Oddi wrth <0/>" @@ -3658,18 +3834,72 @@ msgstr "Oriel" #: src/components/StarterPack/ProfileStarterPacks.tsx:307 msgid "Generate a starter pack" -msgstr "Cynhyrchu pecyn cychwyn" +msgstr "Creu pecyn cychwyn" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Cael cymorth" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "Cael hysbysiadau pan fydd pobl yn eich dilyn." + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "Cael hysbysiadau pan fydd pobl yn hoffi postiadau rydych wedi'u hail bostio." + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "Cael hysbysiadau pan fydd pobl yn hoffi'ch postiadau." + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "Cael hysbysiadau pan fydd pobl yn eich crybwyll chi." + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "Cael hysbysiadau pan fydd pobl yn dyfynnu eich postiadau." + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "Cael hysbysiadau pan fydd pobl yn ateb i'ch postiadau." + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "Cael hysbysiadau pan fydd pobl yn ail bostio postiadau rydych wedi'u hail bostio." + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "Cael hysbysiadau pan fydd pobl yn ail bostio'ch postiadau chi." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "Cael gwybod am bostiadau newydd" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Cael gwybod am bostiadau ac atebion o'r cyfrifon rydych chi'u eu dewis." + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "Cael gwybod am bostiadau newydd gan {name}" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "Cael gwybod am weithgaredd y cyfrif hwn" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "Cael gwybod pan fydd {name} yn postio" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "Cael gwybod pan fydd rhywun yn postio" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" -msgstr "" +msgstr "Cychwyn arni" #: src/components/ProgressGuide/List.tsx:35 msgid "Getting started" @@ -3688,14 +3918,16 @@ msgstr "Rhowch wyneb i'ch proffil" msgid "Glaring violations of law or terms of service" msgstr "Torri cyfraith neu delerau gwasanaeth amlwg" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3733,22 +3965,28 @@ msgstr "Ewch Adref" #: src/view/com/profile/ProfileMenu.tsx:318 #: src/view/com/profile/ProfileMenu.tsx:325 msgid "Go live" -msgstr "" +msgstr "Ewch yn fyw" #: src/components/live/GoLiveDialog.tsx:93 #: src/components/live/GoLiveDialog.tsx:98 #: src/components/live/GoLiveDialog.tsx:232 #: src/components/live/GoLiveDialog.tsx:241 msgid "Go Live" -msgstr "" +msgstr "Ewch yn Fyw" #: src/components/live/GoLiveDialog.tsx:174 msgid "Go live for" -msgstr "" +msgstr "Ewch yn fyw am" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" -msgstr "" +msgstr "Ewch i broffil {firstAuthorName}" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "Ewch i'r gosodiadau cyfrif" #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" @@ -3779,8 +4017,8 @@ msgstr "Cyfryngau Graffig" msgid "Half way there!" msgstr "Hanner ffordd yno!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Enw Dangos" @@ -3797,7 +4035,7 @@ msgstr "Mae'r enw dangos wedi newid!" msgid "Handle too long. Please try a shorter one." msgstr "Mae'r enw dangos yn rhy hir. Rhowch gynnig ar un byrrach." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Hapteg" @@ -3806,7 +4044,7 @@ msgstr "Hapteg" msgid "Harassment, trolling, or intolerance" msgstr "Aflonyddu, trolio, neu anoddefgarwch" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Hashnod" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Hashnod {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." -msgstr "" +msgstr "Oes gennych chi god? <0>Cliciwch yma." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Yn cael trafferth?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Cymorth" @@ -3839,8 +4077,13 @@ msgstr "Helpwch bobl i wybod nad ydych chi'n bot trwy lwytho llun neu greu afata msgid "Here is your app password!" msgstr "Dyma gyfrinair eich ap!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Cuddiedig" @@ -3848,16 +4091,16 @@ msgstr "Cuddiedig" msgid "Hidden by your moderation settings." msgstr "Wedi'i guddio gan eich gosodiadau cymedroli." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Rhestr gudd" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Rhestr gudd" msgid "Hide" msgstr "Cuddio" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Cuddio" @@ -3875,31 +4118,31 @@ msgstr "Cuddio" msgid "Hide customization options" msgstr "Cuddio dewisiadau cyfaddasu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Cuddio postiad drosof fi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Cuddio ateb i bawb" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Cuddio ateb i mi" #: src/screens/Search/modules/ExploreInterestsCard.tsx:110 msgid "Hide this card" -msgstr "" +msgstr "Cuddio'r cerdyn hwn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Cuddio'r postiad hwn?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Cuddio'r ateb hwn?" @@ -3913,61 +4156,61 @@ msgstr "Cuddio pynciau tueddiadol" msgid "Hide trending topics?" msgstr "Cuddio pynciau tueddiadol?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Cuddio fideos tueddiadol?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Cuddio rhestr defnyddwyr" #: src/screens/Moderation/VerificationSettings.tsx:85 #: src/screens/Moderation/VerificationSettings.tsx:94 msgid "Hide verification badges" -msgstr "" +msgstr "Cuddio bathodynnau dilysu" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Yn cuddio'r cynnwys" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm, digwyddodd rhyw fath o broblem wrth gysylltu â'r gweinydd ffrydio. Rhowch wybod i berchennog y ffrwd am y mater hwn." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm, mae'n ymddangos bod y gweinydd ffrydio wedi'i gam ffurfweddu. Rhowch wybod i berchennog y ffrwd am y mater hwn." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm, mae'n ymddangos bod y gweinydd ffrydio all-lein. Rhowch wybod i berchennog y ffrwd am y mater hwn." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm, rhoddodd y gweinydd ffrydio ymateb gwael. Rhowch wybod i berchennog y ffrwd am y mater hwn." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, rydyn ni'n cael trafferth dod o hyd i'r ffrwd yma. Efallai ei fod wedi'i ddileu." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmmm, mae'n ymddangos ein bod yn cael trafferth llwytho'r data hwn. Gweler isod am ragor o fanylion. Os bydd y mater hwn yn parhau, cysylltwch â ni." #: src/screens/Profile/ErrorState.tsx:31 msgid "Hmmmm, we couldn't load that moderation service." -msgstr "Hmmmm, nid ydym wedi gallu llwytho'r gwasanaeth cymedroli hwnnw." +msgstr "Hmmmm, dydyn ni ddim wedi gallu llwytho'r gwasanaeth cymedroli hwnnw." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Daliwch ati! Rydyn ni'n rhoi mynediad i fideo yn raddol, ac rydych chi'n dal i aros yn unol. Dewch nôl cyn hir!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Cartref" @@ -3982,12 +4225,12 @@ msgstr "Darparwr gwesteio" #: src/screens/Search/modules/ExploreTrendingTopics.tsx:194 msgid "Hot" -msgstr "" +msgstr "Difyr" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Atebion difyrraf gyntaf" @@ -3996,10 +4239,6 @@ msgstr "Atebion difyrraf gyntaf" msgid "How should we open this link?" msgstr "Sut dylen ni agor y ddolen hon?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Rwy'n deall" msgid "If alt text is long, toggles alt text expanded state" msgstr "Os yw'r testun amgen yn hir, bydd y testun amgen yn toglo'r cyflwr estynedig" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Os nad ydych eto yn oedolyn yn unol â chyfreithiau eich gwlad, rhaid i'ch rhiant neu warcheidwad cyfreithiol ddarllen y Telerau hyn ar eich rhan." @@ -4029,24 +4268,28 @@ msgstr "Os byddwch yn dileu'r rhestr hon, fyddwch chi ddim yn gallu ei hadfer." #: src/screens/Settings/components/ChangeHandleDialog.tsx:267 msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." -msgstr "Os oes gennych chi'ch parth eich hun, gallwch chi ei ddefnyddio fel eich enw dangos. Mae hyn yn gadael i chi hunan-wirio eich hunaniaeth. <0> Dysgwch ragor yma." +msgstr "Os oes gennych chi'ch parth eich hun, gallwch chi ei ddefnyddio fel eich handlen. Mae hyn yn gadael i chi hunan-wirio eich hunaniaeth. <0> Dysgwch ragor yma." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." -msgstr "" +msgstr "Os oes angen i chi ddiweddaru eich e-bost, <0>cliciwch yma." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Os byddwch yn dileu'r postiad hwn, fyddwch chi ddim yn gallu ei gael yn ôl." #: src/components/dialogs/EmailDialog/screens/Update.tsx:208 msgid "If you update your email address, email 2FA will be disabled." -msgstr "" +msgstr "Os byddwch chi'n diweddaru eich cyfeiriad e-bost, bydd 2FA e-bost yn cael ei analluogi." #: src/view/com/modals/ChangePassword.tsx:160 msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Os ydych am newid eich cyfrinair, byddwn yn anfon cod atoch i wirio mai hwn yw eich cyfrif." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "Os ydych chi eisiau cyfyngu ar bwy sy'n gallu derbyn hysbysiadau am weithgaredd eich cyfrif, gallwch ei newid yn <0>Gosodiadau → Preifatrwydd a Diogelwch." + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "Os ydych chi'n ddatblygwr, gallwch chi gynnal eich gweinydd eich hun." @@ -4066,20 +4309,20 @@ msgstr "Delwedd" #: src/screens/Settings/AboutSettings.tsx:64 msgid "Image cache cleared" -msgstr "" +msgstr "Wedi gwagio'r storfa delweddau" #. Android-only toast message which includes amount of space freed using localized number formatting #: src/screens/Settings/AboutSettings.tsx:50 msgid "Image cache cleared, freed {0}" -msgstr "" +msgstr "Wedi gwagio'r storfa delweddau, rhyddhawyd {0}" #: src/lib/media/save-image.ts:26 msgid "Image saved" -msgstr "" +msgstr "Delwedd wedi'i chadw" #: src/lib/media/save-image.ts:45 msgid "Images cannot be saved unless permission is granted to access your photo library." -msgstr "" +msgstr "Does dim modd cadw delweddau oni bai fod caniatâd wedi'i roi i gael mynediad i'ch llyfrgell lluniau." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49 #: src/lib/moderation/useReportOptions.ts:49 @@ -4091,21 +4334,49 @@ msgstr "Dynwared neu honiadau ffug am hunaniaeth neu ymlyniad" msgid "Impersonation, misinformation, or false claims" msgstr "Dynwared, gwybodaeth anghywir, neu honiadau ffug" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "O fewn yr ap" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "Hysbysiadau o fewn yr ap" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "O fewn yr ap, Pawb" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "O fewn yr ap, Pobl rydych yn eu dilyn" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "O fewn yr ap, Gwthio" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "O fewn yr ap, Gwthio, Pawb" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "O fewn yr ap, Gwthio, Pobl rydych yn eu dilyn" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Negeseuon amhriodol neu ddolenni penodol" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" -msgstr "Dim blwch derbyn!" +msgstr "Dim yn y blwch derbyn!" #: src/screens/Login/LoginForm.tsx:164 msgid "Incorrect username or password" msgstr "Enw defnyddiwr neu gyfrinair anghywir" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Anfonwyd cod mewnbwn i'ch e-bost ar gyfer ailosod cyfrinair" @@ -4113,7 +4384,7 @@ msgstr "Anfonwyd cod mewnbwn i'ch e-bost ar gyfer ailosod cyfrinair" msgid "Input confirmation code for account deletion" msgstr "Cod mewnbynnu cadarnhad ar gyfer dileu cyfrif" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Mewnbynnu cyfrinair newydd" @@ -4127,12 +4398,16 @@ msgstr "Mewnbynnwch y cod sydd wedi'i e-bostio atoch" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 msgid "Interaction limited" -msgstr "Rhyngweithio yn gyfyngedig" +msgstr "Rhyngweithio cyfyngedig" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Gosodiadau rhyngweithio" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "Yn cyflwyno hysbysiadau gweithgaredd" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Cod cadarnhau 2FA annilys." msgid "Invalid handle. Please try a different one." msgstr "Enw dangos annilys. Rhowch gynnig ar un arall." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Cofnod postiad annilys neu heb ei gefnogi" @@ -4158,7 +4433,7 @@ msgstr "Cod Dilysu Annilys" msgid "Invite a Friend" msgstr "Gwahodd Ffrind" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Cod gwahodd" @@ -4186,15 +4461,15 @@ msgstr "Gwahoddwch eich ffrindiau i ddilyn eich hoff ffrydiau a phobl" msgid "Invites, but personal" msgstr "Gwahoddiadau, ond personol" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Mae'n gywir" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Dim ond chi ar hyn o bryd! Ychwanegwch fwy o bobl at eich pecyn cychwyn trwy chwilio uchod." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "ID gwaith: {0}" @@ -4220,11 +4495,27 @@ msgstr "Ymunwch â'r sgwrs" msgid "Journalism" msgstr "Newyddiaduraeth" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "Cadw fi'n gyfredol" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "Polisi Preifatrwydd KWS" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "Amodau Defnydd KWS" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "Gwefan KWS" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Wedi'i labelu gan {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Wedi'i labelu gan yr awdur." @@ -4237,7 +4528,7 @@ msgstr "Labeli" msgid "Labels added" msgstr "Labeli wedi'u hychwanegu" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Anodiadau ar ddefnyddwyr a chynnwys yw labeli. Mae modd eu defnyddio i guddio, rhybuddio, a chategoreiddio'r rhwydwaith." @@ -4253,22 +4544,30 @@ msgstr "Labeli ar eich cynnwys" msgid "Language selection" msgstr "Dewis iaith" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Gosodiadau Iaith" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Ieithoedd" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Mwy" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "Cychwynnwyd diwethaf {timeAgo} yn ôl" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "Newydd ei gychwyn" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Diweddaraf" @@ -4282,31 +4581,42 @@ msgstr "dysgu rhagor" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" -msgstr "" +msgstr "Dysgu rhagor" #: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" msgstr "Dysgu Rhagor" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "Rhagor o wybodaeth am sicrwydd oed" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Dysgwch ragor am Bluesky" #: src/view/com/auth/server-input/index.tsx:218 msgid "Learn more about self hosting your PDS." -msgstr "Dysgwch ragor am hunangynnal eich PDS." +msgstr "Dysgu rhagor am hunan westeio eich PDS." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" -msgstr "Dysgwch ragor am y cymedroli wedi'i osod i'r cynnwys hwn" +msgstr "Dysgu rhagor am y cymedroli wedi'i osod i'r cynnwys hwn" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." -msgstr "Dysgwch ragor am y cymedroli wedi'i osod i'r cynnwys hwn." +msgstr "Dysgu rhagor am y cymedroli wedi'i osod i'r cynnwys hwn." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Dysgwch ragor am y rhybudd hwn" @@ -4314,14 +4624,18 @@ msgstr "Dysgwch ragor am y rhybudd hwn" #: src/components/verification/VerificationsDialog.tsx:150 #: src/components/verification/VerifierDialog.tsx:117 msgid "Learn more about verification on Bluesky" -msgstr "" +msgstr "Dysgu rhagor am ddilysu ar Bluesky" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Dysgu rhagor am yr hyn sy'n gyhoeddus ar Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "Mae rhagor o wybodaeth yn eich <0>gosodiadau cyfrif" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Dysgu rhagor." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Gadael y sgwrs" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Gadael nhw i gyd heb eu ticio i weld unrhyw iaith." +msgid "Leave them all unselected to see any language." +msgstr "Gadael nhw i gyd heb eu dewis i weld unrhyw iaith." -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Gadael Bluesky" @@ -4370,7 +4685,7 @@ msgstr "Ffwrdd â ni!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Golau" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Hoffi" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Hoffi ({0, plural, one {# hoffi} other {# hoffi}})" @@ -4397,16 +4712,20 @@ msgstr "Hoffi 10 postiad" msgid "Like 10 posts to train the Discover feed" msgstr "Hoffi 10 postiad i hyfforddi'r ffrwd Darganfod" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "Hysbysiadau hoffi" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" -msgstr "Hoffi'r ffrwd hwn" +msgstr "Hoffi'r ffrwd hon" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272 msgid "Like this labeler" msgstr "Hoffi'r labelwr hwn" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Wedi'i hoffi gan" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Wedi'i Hoffi Gan" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Wedi'i hoffi gan {0, plural, one {# defnyddiwr} other {# defnyddiwr}}" @@ -4428,20 +4747,36 @@ msgstr "Wedi'i hoffi gan {0, plural, one {# defnyddiwr} other {# defnyddiwr}}" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Wedi'i hoffi gan {likeCount, plural, one {# defnyddiwr} other {# defnyddiwr}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Hoffi" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "Hoffi eich ail bostiadau" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "Hoffi eich hysbysiadau ail bostio" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Hoffi ar y postiad hwn" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Llinol" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Rhestr" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Rhestr wedi'i rhwystro" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Rhestru yn ôl {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "Rhestru yn ôl <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Rhestru gennych chi" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "Crëwr y rhestr" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4497,14 +4836,14 @@ msgstr "Rhestr wedi'i dadrwystro" #: src/view/screens/ProfileList.tsx:420 msgctxt "toast" msgid "List unmuted" -msgstr "Rhestr heb ei dewi" +msgstr "Rhestr heb ei thewi" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Rhestrau" @@ -4515,18 +4854,18 @@ msgstr "Rhestrau sy'n rhwystro'r defnyddiwr hwn:" #. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters #: src/components/live/LiveIndicator.tsx:46 msgid "LIVE" -msgstr "" +msgstr "BYW" #: src/components/live/LiveStatusDialog.tsx:215 msgid "Live feature is in beta testing" -msgstr "" +msgstr "Mae'r nodwedd fyw o fewn y prawf beta" #: src/components/live/EditLiveDialog.tsx:148 #: src/components/live/EditLiveDialog.tsx:152 #: src/components/live/GoLiveDialog.tsx:124 #: src/components/live/GoLiveDialog.tsx:128 msgid "Live link" -msgstr "" +msgstr "Cyswllt byw" #: src/screens/Search/Explore.tsx:86 msgid "Load more" @@ -4537,7 +4876,7 @@ msgstr "Llwytho rhagor" msgid "Load more suggested feeds" msgstr "Llwytho rhagor o ffrydiau wedi'u hawgrymu" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Llwytho hysbysiadau newydd" @@ -4550,13 +4889,13 @@ msgstr "Llwytho postiadau newydd" #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61 msgid "Loading..." -msgstr "Llwytho..." +msgstr "Yn llwytho..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Cofnod" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Gwelededd wedi allgofnodi" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo gan @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo gan <0>@sawaratsuki.bsky.social" @@ -4573,31 +4912,31 @@ msgstr "Logo gan <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Pwyswch yn hir i agor dewislen tag #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" -msgstr "Edrych fel XXXXX-XXXX" +msgstr "Yn edrych fel XXXXX-XXXX" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39 msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." -msgstr "Mae'n debyg nad ydych wedi cadw unrhyw ffrydio! Defnyddiwch ein hargymhellion neu bori rhagor isod." +msgstr "Mae'n ymddangos nad ydych wedi cadw unrhyw ffrydio! Defnyddiwch ein hargymhellion neu bori rhagor isod." #: src/screens/Home/NoFeedsPinned.tsx:83 msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" -msgstr "Mae'n edrych fel eich bod wedi dad-binio eich holl ffrydiau. Ond peidiwch â phoeni, gallwch ychwanegu rhai isod 😄" +msgstr "Mae'n ymddangos fel eich bod wedi dad-binio eich holl ffrydiau. Ond peidiwch â phoeni, gallwch chi ychwanegu rhai isod 😄" #: src/screens/Feeds/NoFollowingFeed.tsx:37 msgid "Looks like you're missing a following feed. <0>Click here to add one." -msgstr "Mae'n debyg eich bod chi'n colli'r ffrwd canlynol. <0>Cliciwch yma i ychwanegu un." +msgstr "Mae'n ymddangos eich bod chi'n colli'r ffrwd canlynol. <0>Cliciwch yma i ychwanegu un." #: src/components/dialogs/EmailDialog/index.tsx:41 msgid "Make adjustments to email settings for your account" -msgstr "" +msgstr "Gwnewch addasiadau i osodiadau e-bost eich cyfrif" #: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Make one for me" msgstr "Gwnewch un i mi" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Gwnewch yn siŵr mai dyma lle rydych chi'n bwriadu mynd!" @@ -4606,17 +4945,17 @@ msgstr "Gwnewch yn siŵr mai dyma lle rydych chi'n bwriadu mynd!" msgid "Manage saved feeds" msgstr "Rheoli ffrydiau wedi'u cadw" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" -msgstr "" +msgstr "Rheoli gosodiadau dilysu" #: src/components/dialogs/MutedWords.tsx:108 msgid "Manage your muted words and tags" msgstr "Rheoli eich geiriau a thagiau wedi'u tewi" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "Nodi'r cyfan fel wedi'u darllen" @@ -4625,17 +4964,15 @@ msgstr "Nodi'r cyfan fel wedi'u darllen" msgid "Mark as read" msgstr "Marcio fel weedi darllen" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" -msgstr "Wedi nodi'r cyfan fel wedi'u darllen" +msgstr "Wedi marcio'r cyfan fel wedi'u darllen" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" -msgstr "" +msgstr "Efallai yn nes ymlaen" #: src/view/screens/Profile.tsx:227 msgid "Media" @@ -4645,19 +4982,26 @@ msgstr "Cyfryngau" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Cyfryngau a all fod yn annymunol neu'n amhriodol i rai cynulleidfaoedd." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "Hysbysiadau crybwyll" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "defnyddwyr wedi'u crybwyll" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Defnyddwyr wedi'u crybwyll" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" -msgstr "Crybwyll" +msgstr "Crybwylliadau" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Dewislen" @@ -4665,7 +5009,7 @@ msgstr "Dewislen" msgid "Message {0}" msgstr "Neges {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Neges wedi'i dileu" @@ -4674,11 +5018,11 @@ msgstr "Neges wedi'i dileu" msgid "Message deleted" msgstr "Neges wedi'i dileu" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" -msgstr "" +msgstr "Neges gan @{0}: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Neges gan y gweinydd: {0}" @@ -4691,18 +5035,22 @@ msgstr "Maes mewnbwn neges" msgid "Message is too long" msgstr "Mae'r neges yn rhy hir" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" -msgstr "" +msgstr "Dewisiadau negeseuon" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Negeseuon" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" -msgstr "Ganol Nos" +msgstr "Canol Nos" + +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "Hysbysiadau amrywiol" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 @@ -4714,10 +5062,10 @@ msgstr "Cyfrif Camarweiniol" msgid "Misleading Post" msgstr "Postiad Camarweiniol" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Cymedroli" @@ -4725,17 +5073,17 @@ msgstr "Cymedroli" msgid "Moderation details" msgstr "Manylion cymedroli" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Rhestr cymedroli gan {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Rhestr cymedroli gan <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Rhestr cymedroli gennych chi" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Rhestr cymedroli wedi'i diweddaru" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Rhestrau cymedroli" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Rhestrau Cymedroli" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "gosodiadau cymedroli" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Cyflyrau cymedroli" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Offer cymedroli" @@ -4775,7 +5123,7 @@ msgstr "Offer cymedroli" msgid "Moderator has chosen to set a general warning on the content." msgstr "Mae'r cymedrolwr wedi dewis gosod rhybudd cyffredinol ar y cynnwys." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Rhagor" @@ -4790,13 +5138,13 @@ msgstr "Rhagor o ffrydiau" msgid "More options" msgstr "Rhagor o ddewisiadau" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Hoffi fwyaf yn gyntaf" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Atebion wedi'u hoffi fwyaf yn gyntaf" @@ -4808,8 +5156,8 @@ msgstr "Ffilmiau" msgid "Music" msgstr "Cerddoriaeth" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Tewi" @@ -4819,8 +5167,8 @@ msgstr "Tewi" msgid "Mute {tag}" msgstr "Tewi {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4865,27 +5213,27 @@ msgstr "Tewi'r gair hwn yn nhestun postiadau a thagiau" #: src/components/dialogs/MutedWords.tsx:274 msgid "Mute this word in tags only" -msgstr "Tewi'r gair hwn dim ond mewn tagiau" +msgstr "Dim ond tewi'r gair hwn mewn tagiau" #: src/components/dialogs/MutedWords.tsx:170 msgid "Mute this word until you unmute it" msgstr "Tewi'r gair hwn nes i chi ei ddad-dewi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Tewi edefyn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Tewi geiriau a thagiau" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Cyfrifon wedi'u tewi" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Cyfrifon Wedi'u Tewi" @@ -4898,9 +5246,9 @@ msgstr "Mae postiadau cyfrifon wedi'u tewi'n cael eu tynnu o'ch ffrydiau a'ch hy msgid "Muted by \"{0}\"" msgstr "Wedi'i dewi gan \"{0}\"" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" -msgstr "Geiriau wedi'u tewi a thagiau" +msgstr "Geiriau a thagiau wedi'u tewi" #: src/view/screens/ProfileList.tsx:776 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." @@ -4911,7 +5259,7 @@ msgstr "Mae tewi'n breifat. Gall cyfrifon wedi'u tewi rhyngweithio â chi, ond f msgid "My Birthday" msgstr "Fy Mhenblwydd" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Fy Ffrydiau" @@ -4940,13 +5288,13 @@ msgid "Nature" msgstr "Natur" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Llywiwch i {0}" #: src/components/StarterPack/StarterPackCard.tsx:131 msgid "Navigate to starter pack" -msgstr "" +msgstr "Ewch i'r pecyn cychwyn" #: src/screens/Login/ForgotPasswordForm.tsx:166 #: src/screens/Login/LoginForm.tsx:344 @@ -4958,11 +5306,11 @@ msgstr "Yn llywio i'r sgrin nesaf" msgid "Navigates to your profile" msgstr "Yn llywio i'ch proffil" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Angen ei newid?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "Angen adrodd ar fater torri hawlfraint, cais cyfreithiol, neu gydymffurfiad rheolaethol?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Angen rhoi gwybod am dorri hawlfraint?" @@ -4985,20 +5333,38 @@ msgctxt "action" msgid "New" msgstr "Newydd" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "{postsCount, plural, one {postiad} other {postiad}} newydd gan {firstAuthorLink}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "{postsCount, plural, one {postiad} other {postiad}} newydd gan {firstAuthorName}" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Sgwrs newydd" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" -msgstr "" +msgstr "Cyfeiriad e-bost newydd" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" -msgstr "" +msgstr "Nodwedd Newydd" + +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "Hysbysiadau dilynwr newydd" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "Dilynwyr newydd" #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 @@ -5019,6 +5385,7 @@ msgstr "Negeseuon newydd" msgid "New Moderation List" msgstr "Rhestr Cymedroli Newydd" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Cyfrinair newydd" @@ -5029,7 +5396,7 @@ msgstr "Cyfrinair newydd" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Postiad newydd" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Postiad Newydd" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Postiadau newydd gan {firstAuthorLink} a <0>{additionalAuthorsCount, plural, zero {}one {{formattedAuthorsCount} arall} two {{formattedAuthorsCount} arall} few {{formattedAuthorsCount} arall} many {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Postiadau newydd gan {firstAuthorName} a {additionalAuthorsCount, plural, zero {}one {{formattedAuthorsCount} arall} two {{formattedAuthorsCount} arall} few {{formattedAuthorsCount} arall} many {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}}" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Deialog manylion defnyddiwr newydd" @@ -5054,10 +5429,14 @@ msgstr "Deialog manylion defnyddiwr newydd" msgid "New User List" msgstr "Rhestr Defnyddwyr Newydd" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Atebion diweddaraf yn gyntaf" @@ -5071,15 +5450,15 @@ msgstr "Newyddion" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5100,9 +5479,9 @@ msgstr "Dim Panel DNS" #: src/components/live/EditLiveDialog.tsx:140 msgid "No expiry set" -msgstr "" +msgstr "Dim dyddiad dod i ben wedi'i osod" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Heb ganfod unrhyw GIFs dan sylw. Gall fod problem gyda Tenor." @@ -5112,39 +5491,42 @@ msgstr "Heb ganfod unrhyw ffrydiau. Ceisiwch chwilio am rywbeth arall." #: src/components/live/LinkPreview.tsx:63 msgid "No image" -msgstr "" +msgstr "Dim delwedd" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 msgid "No likes yet" msgstr "Dim hoffi eto" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Ddim yn dilyn {0} bellach" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Dim negeseuon eto" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Dim hysbysiadau eto!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Neb" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Gall neb ond yr awdur ddyfynnu'r postiad hon." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "Dim postiadau yma" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Dim postiadau eto." @@ -5169,9 +5551,9 @@ msgstr "Dim canlyniadau" #: src/screens/Search/Explore.tsx:786 msgid "No results for \"{0}\"." -msgstr "" +msgstr "Dim canlyniadau ar gyfer \"{0}\"." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Heb ganfod canlyniad" @@ -5179,17 +5561,17 @@ msgstr "Heb ganfod canlyniad" msgid "No results found for \"{query}\"" msgstr "Heb ganfod canlyniadau \"{query}\"" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Heb ganfod canlyniadau {query}" #: src/screens/Search/Explore.tsx:790 msgid "No results." -msgstr "" +msgstr "Dim canlyniadau." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Heb ganfod canlyniadau chwilio \"{search}\"." @@ -5198,7 +5580,7 @@ msgstr "Heb ganfod canlyniadau chwilio \"{search}\"." msgid "No thanks" msgstr "Dim diolch" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Neb" @@ -5223,59 +5605,76 @@ msgstr "Heb ddod o hyd i neb. Ceisiwch chwilio am rywun arall." msgid "Non-sexual Nudity" msgstr "Noethni nad yw'n rhywiol" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "Dim" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "Dim yn cael ei ddilyn gan neb rydych chi'n eu dilyn" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Heb ei Ganfod" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Nodyn am rannu" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nodyn: Mae Bluesky yn rhwydwaith agored a chyhoeddus. Dim ond yn cyfyngu ar welededd eich cynnwys ar ap a gwefan Bluesky y mae'r gosodiad hwn yn ei wneud. Efallai na fydd apiau eraill yn parchu'r gosodiad hwn. Mae'n bosibl y bydd eich cynnwys yn dal i gael ei ddangos i ddefnyddwyr sydd wedi allgofnodi gan apiau a gwefannau eraill." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "Sylw: Dim ond ar gyfer aelodau sydd wedi mewngofnodi mae'r postiad hwn yn weladwy." + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Dim byd yma" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Hidlyddion hysbysu" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Gosodiadau hysbysu" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Gosodiadau Hysbysiadau" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Seiniau hysbysu" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Seiniau Hysbysu" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Hysbysiadau" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "Hysbysiadau am bopeth arall, fel pan fydd rhywun yn ymuno drwy un o'r pecynnau cychwyn." + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "nawr" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Noethni neu gynnwys i oedolion heb ei labelu felly" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Wedi'i ddiffodd" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "O na!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "Iawn" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Iawn" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Atebion hynaf yn gyntaf" @@ -5331,19 +5736,19 @@ msgstr "Atebion hynaf yn gyntaf" msgid "on<0><1/><2><3/>" msgstr "ar <0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Ailosod cyflwyno" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." -msgstr "Does dim testun amgen ar un neu fwy GIF." +msgstr "Does dim testun amgen ar un neu fwy o GIFau." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Does dim testun amgen ar un neu fwy o fideos." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Does dim testun amgen ar un neu fwy o fideos." @@ -5351,13 +5756,15 @@ msgstr "Does dim testun amgen ar un neu fwy o fideos." msgid "Only .jpg and .png files are supported" msgstr "Dim ond ffeiliau .jpg a .png sy'n cael eu cefnogi" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Dim ond {0} all ateb." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Dim ond yn cynnwys llythrennau, rhifau, a chysylltnodau" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "Dim ond dilynwyr rwy'n eu dilyn" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,23 +5774,22 @@ msgstr "Dim ond ffeiliau delwedd sy'n cael eu cefnogi" msgid "Only WebVTT (.vtt) files are supported" msgstr "Dim ond ffeiliau WebVTT (.vtt) sy'n cael eu cefnogi" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Wps, aeth rhywbeth o'i le!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Wps!" #: src/screens/Onboarding/StepFinished.tsx:278 msgid "Open" -msgstr "Ar Agor" +msgstr "Agor" #: src/screens/Onboarding/StepProfile/index.tsx:284 msgid "Open avatar creator" @@ -5392,14 +5798,14 @@ msgstr "Agor y crëwr avatar" #: src/screens/Messages/components/ChatListItem.tsx:368 #: src/screens/Messages/components/ChatListItem.tsx:369 msgid "Open conversation options" -msgstr "Agor y dewisiadau sgwrsio" +msgstr "Agor dewisiadau sgyrsiau" #: src/components/Layout/Header/index.tsx:159 msgid "Open drawer menu" msgstr "Agor dewislen drôr" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Agor y dewisydd emojis" @@ -5414,9 +5820,9 @@ msgstr "Agor dewislen dewisiadau ffrwd" #: src/components/dms/EmojiPopup.android.tsx:27 msgid "Open full emoji list" -msgstr "" +msgstr "Agor rhestr emoji lawn" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Agor dolen i {niceUrl}" @@ -5424,17 +5830,17 @@ msgstr "Agor dolen i {niceUrl}" msgid "Open message options" msgstr "Agor dewisiadau neges" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Agor tudalen dadfygio cymedroli" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Agor gosodiadau geiriau wedi'u tewi a thagiau" #: src/screens/Search/components/StarterPackCard.tsx:119 msgid "Open pack" -msgstr "" +msgstr "Agor pecyn" #: src/components/PostControls/PostMenu/index.tsx:62 msgid "Open post options menu" @@ -5443,26 +5849,26 @@ msgstr "Agor dewislen dewisiadau ffrydiau" #: src/components/live/LiveStatusDialog.tsx:189 #: src/components/live/LiveStatusDialog.tsx:203 msgid "Open profile" -msgstr "" +msgstr "Agor proffil" #: src/components/PostControls/ShareMenu/index.tsx:87 msgid "Open share menu" -msgstr "" +msgstr "Agor y ddewislen rhannu" #: src/screens/StarterPack/StarterPackScreen.tsx:566 msgid "Open starter pack menu" msgstr "Agor dewislen pecyn cychwyn" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Agor tudalen llyfr stori" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Agor cofnod system" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Yn agor dewisiadau {numItems}" @@ -5490,11 +5896,11 @@ msgstr "Yn agor camera ar ddyfais" msgid "Opens captions and alt text dialog" msgstr "Yn agor deialog capsiynau a thestun amgen" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Yn agor deialog newid enw dangos" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Yn agor y cyfansoddwr" @@ -5502,7 +5908,7 @@ msgstr "Yn agor y cyfansoddwr" msgid "Opens device photo gallery" msgstr "Yn agor oriel luniau dyfais" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Yn agor y dewisydd emojis" @@ -5520,28 +5926,28 @@ msgstr "Yn agor llif i fewngofnodi i'ch cyfrif Bluesky presennol" msgid "Opens GIF select dialog" msgstr "Yn agor deialog dewis GIF" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Yn agor desg gymorth yn y porwr" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "Yn agor y ddolen {0}" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Yn agor rhestr o godau gwahoddiad" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" -msgstr "" +msgstr "Yn agor deialog statws byw" #: src/screens/Login/LoginForm.tsx:249 msgid "Opens password reset form" msgstr "Yn agor ffurflen ailosod cyfrinair" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Yn agor y wefan gysylltiedig" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Yn agor y proffil hwn" @@ -5558,7 +5964,7 @@ msgstr "Yn ddewisol, rhowch fanylion ychwanegol isod:" msgid "Options:" msgstr "Dewisiadau:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Neu gyfuno'r dewisiadau hyn:" @@ -5600,6 +6006,10 @@ msgstr "Cyfrif arall" msgid "Other..." msgstr "Arall..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "Mae'n tîm cymedroli wedi derbyn eich adroddiad." @@ -5608,7 +6018,7 @@ msgstr "Mae'n tîm cymedroli wedi derbyn eich adroddiad." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Mae'n cymedrolwyr wedi adolygu adroddiadau ac wedi penderfynu analluogi eich mynediad at sgyrsiau ar Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Heb ganfod y dudalen" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Tudalen Heb ei Chanfod" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,33 +6052,38 @@ msgstr "Cyfrinair wedi'i ddiweddaru" msgid "Password updated!" msgstr "Cyfrinair wedi'i ddiweddaru!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Oedi" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Oedi fideo" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Pobl" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Pobl yn cael eu dilyn gan @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Pobl yn dilyn @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "Pobl rwy'n eu dilyn" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." -msgstr "" +msgstr "Cafodd caniatâd i gael mynediad at eich lluniau ei wrthod. Galluogwch ef yng ngosodiadau eich system." #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" @@ -5690,11 +6105,11 @@ msgstr "Lluniau ar gyfer oedolion." #: src/screens/Profile/components/ProfileFeedHeader.tsx:523 #: src/screens/Profile/components/ProfileFeedHeader.tsx:530 msgid "Pin feed" -msgstr "Pinio frwd" +msgstr "Pinio'r frwd" #: src/components/FeedCard.tsx:329 msgid "Pin Feed" -msgstr "" +msgstr "Pinio Ffrwd" #: src/view/screens/ProfileList.tsx:714 msgid "Pin to home" @@ -5704,12 +6119,12 @@ msgstr "Pinio i cartref" msgid "Pin to Home" msgstr "Pinio i Cartref" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Pinio i'ch proffil" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Piniwyd" @@ -5718,7 +6133,7 @@ msgstr "Piniwyd" msgid "Pinned {0} to Home" msgstr "Wedi'i binio {0} i Cartref" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Ffrydiau wedi'u Pinio" @@ -5726,63 +6141,68 @@ msgstr "Ffrydiau wedi'u Pinio" msgid "Pinned to your feeds" msgstr "Wedi'i binio i'ch ffrydiau" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Chwarae" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Chwarae {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Chwarae fideo" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Chwarae Fideo" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Yn chwarae neu'n oedi'r GIF" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Yn chwarae neu'n oedi'r fideo" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Yn chwarae'r GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Yn chwarae'r fideo" #: src/view/com/composer/labels/LabelsBtn.tsx:115 msgid "Please add any content warning labels that are applicable for the media you are posting." -msgstr "" +msgstr "Ychwanegwch unrhyw labeli rhybudd cynnwys sy'n berthnasol i'r cyfryngau rydych chi'n eu postio." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "Gwiriwch eich blwch derbyn e-byst am gyfarwyddiadau pellach. Gall gymryd munud neu ddwy i gyrraedd." #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Dewiswch eich enw dangos." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Dewiswch eich cyfrinair." #: src/components/dialogs/EmailDialog/screens/Update.tsx:290 msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." -msgstr "" +msgstr "Cliciwch ar y ddolen yn yr e-bost a anfonwyd atoch i wirio'ch cyfeiriad e-bost newydd. Mae hwn yn gam pwysig i ganiatáu i chi barhau i fwynhau holl nodweddion Bluesky." #: src/screens/Signup/state.ts:301 msgid "Please complete the verification captcha." msgstr "Cwblhewch y captcha dilysu." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Gwiriwch ddwywaith eich bod wedi rhoi eich cyfeiriad e-bost yn gywir." @@ -5802,36 +6222,41 @@ msgstr "Rhowch enw unigryw ar gyfer y cyfrinair apiau hwn neu defnyddiwch un gyn #: src/components/dialogs/EmailDialog/screens/Update.tsx:135 #: src/components/dialogs/EmailDialog/screens/Verify.tsx:145 msgid "Please enter a valid code." -msgstr "" +msgstr "Rhowch god dilys." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." -msgstr "" +msgstr "Rhowch gyfeiriad e-bost dilys." #: src/components/dialogs/MutedWords.tsx:86 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Rhowch air, tag neu ymadrodd dilys i'w dewi" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "Rhowch gyfeiriad e-bost dilys, parhaol. Efallai y bydd angen i chi gael mynediad ato yn y dyfodol." + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." -msgstr "" +msgstr "Rhowch y cod a anfonwyd gennym at <0>{0} isod." #: src/components/dialogs/EmailDialog/screens/Update.tsx:247 msgid "Please enter the security code we sent to your previous email address." -msgstr "" +msgstr "Rhowch y cod diogelwch a anfonwyd gennym at eich cyfeiriad e-bost blaenorol." #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Rhowch eich e-bost." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Rhowch eich cod gwahodd." #: src/components/dialogs/EmailDialog/screens/Update.tsx:217 msgid "Please enter your new email address." -msgstr "" +msgstr "Rhowch eich cyfeiriad e-bost newydd." #: src/screens/Login/LoginForm.tsx:99 msgid "Please enter your password" @@ -5853,6 +6278,19 @@ msgstr "Eglurwch pam rydych chi'n meddwl bod y label hwn wedi'i osod yn anghywir msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Eglurwch pam rydych chi'n meddwl bod eich sgyrsiau wedi'u hanalluogi'n anghywir" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "Darparwch unrhyw fanylion pellach rydych yn teimlo y byddai o fudd i'r cymedrolwyr asesu'n effeithiol eich statws Sicrwydd Oed." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "Dewiswch iaith" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "Dewiswch wasanaeth cymedroli" @@ -5868,11 +6306,11 @@ msgstr "Mewngofnodwch fel @{0}" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62 msgid "Please verify your email" -msgstr "" +msgstr "Dilyswch eich e-bost" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Gwiriwch Eich E-bost" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "Ysgrifennwch eich neges isod:" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Gwleidyddiaeth" msgid "Porn" msgstr "Pornograffi" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Postiad" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" -msgstr "Postiad" +msgstr "Postio" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Postio" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Postio'r Cyfan" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "Postiad wedi'i rwystro" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Postiad gan {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Postiad gan @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Dilëwyd y postiad" @@ -5919,11 +6362,14 @@ msgstr "Dilëwyd y postiad" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Methodd y postiad a llwytho i fyny. Gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "Mae'r postiad wedi'i ddileu" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Postiad wedi'i guddio" @@ -5937,11 +6383,11 @@ msgstr "Postiad Wedi'i Guddio gan Air wedi'i Dewi" msgid "Post Hidden by You" msgstr "Postiad Wedi'i Guddio Gennych Chi" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Gosodiadau rhyngweithio postiadau" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Gosodiadau Rhyngweithio Postiadau" @@ -5952,10 +6398,12 @@ msgstr "Iaith postiad" #: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:77 msgid "Post Languages" -msgstr "Ieithoedd Postio" +msgstr "Ieithoedd Postiad" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Heb ganfod postiad" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Postiad wedi ei ddadbinio" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Postiadau" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Mae modd tewi postiadau ar sail eu testun, eu tagiau neu'r ddau. Rydym yn argymell osgoi geiriau cyffredin sy'n ymddangos mewn llawer o bostiadau, gan y gall arwain at atal pob postiad." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Postiadau wedi'u cuddio" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Dolen a allai fod yn Gamarweiniol" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "Postiadau, Atebion" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Dewis wedi'i gadw" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "Dolen camarweiniol posib" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "Rhybudd dolen camarweiniol posib" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Pwyswch i geisio ailgysylltu" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Pwyswch i ail gynnig" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Pwyswch i weld dilynwyr y cyfrif hwn rydych chi'n ei ddilyn hefyd" @@ -6015,40 +6469,46 @@ msgstr "Delwedd flaenorol" msgid "Primary Language" msgstr "Prif Iaith" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Blaenoriaethu'ch Dilynwyr" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Hysbysiadau blaenoriaeth" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Preifatrwydd" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Preifatrwydd a diogelwch" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Preifatrwydd a Diogelwch" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "Gosodiadau Preifatrwydd a Diogelwch" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Polisi Preifatwydd" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Yn prosesu fideo..." @@ -6062,15 +6522,14 @@ msgstr "Wrthi’n prosesu..." msgid "profile" msgstr "proffil" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Proffil" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Proffil wedi'i ddiweddaru" @@ -6088,75 +6547,99 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Rhestrau cyhoeddus, y mae modd eu rhannu a'u defnyddio i yrru ffrydiau." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" -msgstr "" +msgstr "Cyhoeddi postiad" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" -msgstr "" +msgstr "Cyhoeddi postiadau" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" -msgstr "" +msgstr "Cyhoeddi atebion" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" -msgstr "" +msgstr "Cyhoeddi ateb" + +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "Gwthio" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "Hysbysiadau gwthio" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "Gwthio, Pawb" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "Gwthio, Pobl rydych yn eu dilyn" #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" -msgstr "Cod QR wedi'i gopïo i'ch clipfwrdd!" +msgstr "Mae'r cod QR wedi'i gopïo i'ch clipfwrdd!" #: src/components/StarterPack/QrCodeDialog.tsx:112 msgid "QR code has been downloaded!" -msgstr "Cod QR wedi'i lwytho i lawr!" +msgstr "Mae'r cod QR wedi'i lwytho i lawr!" #: src/components/StarterPack/QrCodeDialog.tsx:113 msgid "QR code saved to your camera roll!" -msgstr "Cod QR wedi'i gadw ar rolyn eich ffolder lluniau!" +msgstr "Mae'r cod QR wedi'i gadw ar rolyn eich ffolder lluniau!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "Hysbysiadau dyfynnu" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Dyfyniad postiad" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "Ail-atodwyd postiad dyfyniad" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "Datgysylltwyd post dyfyniad yn llwyddiannus" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Analluogwyd postiadau dyfyniad" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Gosodiadau dyfynnu" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Dyfyniadau" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Dyfyniadau'r postiad hwn" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Ar hap (hy \"Hap y Postiwr\")" @@ -6164,43 +6647,55 @@ msgstr "Ar hap (hy \"Hap y Postiwr\")" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Wedi mynd y tu hwnt i derfyn y gyfradd – rydych wedi ceisio newid eich enw dangos yn rhy aml mewn cyfnod byr. Arhoswch funud cyn ceisio eto." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Ail-atodi dyfyniad" #: src/components/dms/EmojiReactionPicker.tsx:85 msgid "React with {emoji}" -msgstr "" +msgstr "Ymateb gyda {emoji}" #: src/screens/Deactivated.tsx:141 msgid "Reactivate your account" msgstr "Ail agorwch eich cyfrif" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "Darllen {0} yn rhagor o {1, plural, zero {}one {atebion} two {atebion} few {atebion} many {atebion} other {atebion}}" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" -msgstr "" +msgstr "Darllen postiad blog" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Darllen llai" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Darllen mwy" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "Darllen rhagor o atebion" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Darllenwch y blog Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Darllenwch Bolisi Preifatrwydd Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Darllenwch Delerau Gwasanaeth Bluesky" @@ -6213,6 +6708,14 @@ msgstr "Rheswm dros apelio" msgid "Reason:" msgstr "Rheswm:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "Derbyn hysbysiadau o fewn yr ap" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "Derbyn gwthio hysbysiadau" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Chwilio Diweddar" @@ -6234,8 +6737,8 @@ msgstr "Gwrthod" msgid "Reject chat request" msgstr "Gwrthod cais am sgwrs" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Ail-lwytho sgyrsiau" @@ -6244,10 +6747,9 @@ msgstr "Ail-lwytho sgyrsiau" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Tynnu" @@ -6259,19 +6761,19 @@ msgstr "Tynnu {displayName} o'r pecyn cychwyn" msgid "Remove {historyItem}" msgstr "Tynnu {historyItem}" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Tynnu cyfrif" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" -msgstr "Tynnu'r atodiad" +msgstr "Tynnu atodiad" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" -msgstr "Tynnu'r Afatar" +msgstr "Tynnu Afatar" #: src/view/com/util/UserBanner.tsx:186 #: src/view/com/util/UserBanner.tsx:189 @@ -6284,24 +6786,22 @@ msgstr "Tynnu mewblaniad" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Tynnu ffrwd" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Tynnu ffrwd?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Tynnu o fy ffrydiau" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Tynnu o fynediad cyflym?" @@ -6311,18 +6811,17 @@ msgid "Remove from saved feeds" msgstr "Tynnu o'r ffrydiau wedi'u cadw" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "Tynnu o'ch ffrydiau?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Tynnu delwedd" #: src/components/live/EditLiveDialog.tsx:240 #: src/components/live/EditLiveDialog.tsx:247 msgid "Remove live status" -msgstr "" +msgstr "Dileu statws byw" #: src/components/dialogs/MutedWords.tsx:523 msgid "Remove mute word from your list" @@ -6332,12 +6831,8 @@ msgstr "Tynnu'ry gair tewi oddi ar eich rhestr" msgid "Remove profile" msgstr "Dileu proffil" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Dileu dyfyniad" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Tynnu'r ailbostiad" @@ -6345,30 +6840,30 @@ msgstr "Tynnu'r ailbostiad" msgid "Remove subtitle file" msgstr "Tynnu ffeil is-deitl" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Tynnu'r ffrydiwr hwn o'ch ffrydiau wedi'u cadw" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157 msgid "Remove user from list" -msgstr "" +msgstr "Dileu defnyddiwr o'r rhestr" #: src/components/verification/VerificationRemovePrompt.tsx:46 #: src/components/verification/VerificationsDialog.tsx:247 #: src/view/com/profile/ProfileMenu.tsx:336 #: src/view/com/profile/ProfileMenu.tsx:339 msgid "Remove verification" -msgstr "" +msgstr "Dileu dilysu" #: src/components/verification/VerificationRemovePrompt.tsx:44 msgid "Remove your verification for this account?" -msgstr "" +msgstr "Dileu eich dilysiad ar gyfer y cyfrif hwn?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Wedi'i dynnu gan yr awdur" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Wedi'i ddileu gennych chi" @@ -6377,10 +6872,6 @@ msgstr "Wedi'i ddileu gennych chi" msgid "Removed from list" msgstr "Wedi'i dynnu o'r rhestr" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Wedi'i dynnu o fy ffrydiau" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Wedi'i dynnu o'r ffrydiau sydd wedi'u cadw" @@ -6393,36 +6884,38 @@ msgstr "Wedi'i dynnu o'ch ffrydiau" #: src/components/verification/VerificationRemovePrompt.tsx:32 msgid "Removed verification" -msgstr "" - -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Yn dileu postiad a ddyfynnwyd" +msgstr "Dilysiad wedi'i ddileu" #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Amnewid gyda Darganfod" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Atebion" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Analluogwyd atebion" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Mae atebion i'r postiad hwn wedi'u hanalluogi." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Ateb" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Ateb ({0, plural, one {# ateb} other {# ateb}})" @@ -6436,50 +6929,55 @@ msgstr "Ateb Wedi'i Guddio gan Awdur yr Edefyn" msgid "Reply Hidden by You" msgstr "Ateb Wedi'i Guddio Gennych Chi" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "Hysbysiadau ateb" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Gosodiadau ateb" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "Mae gosodiadau ateb yn cael eu dewis gan awdur yr edefyn" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Didoli atebion" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Ateb i <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Ateb i bostiad sydd wedi'i rwystro" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Ateb i bostiad" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Ateb i chi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Gwelededd ateb wedi'i ddiweddaru" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Cafodd yr ateb ei guddio'n llwyddiannus" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6511,14 +7009,14 @@ msgstr "Adrodd ar ffrwd" #: src/view/screens/ProfileList.tsx:570 msgid "Report list" -msgstr "" +msgstr "Rhestr adrodd" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Adrodd ar neges" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Adrodd ar bostiad" @@ -6567,25 +7065,26 @@ msgstr "Adrodd ar y pecyn cychwyn hwn" msgid "Report this user" msgstr "Adrodd ar y defnyddiwr hwn" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Ail-bostio" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Ail-bostio" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Ail-bostio ({0, plural, one {# ail-bostio} other {# ail-bostio}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "Hysbysiadau ail bostio" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Ail-bostio neu ddyfynnu postiad" @@ -6594,35 +7093,47 @@ msgstr "Ail-bostio neu ddyfynnu postiad" msgid "Reposted By" msgstr "Wedi ei Ail-bostio Gan" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Wedi'i ailbostio gan {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Wedi'i ail-bostio gan <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Wedi'i ail-bostio gennych chi" -#: src/view/com/post-thread/PostThreadItem.tsx:237 -msgid "Reposts of this post" -msgstr "Ail-bostio'r postiad hon" +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "Ail bostiadau" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "" +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 +msgid "Reposts of this post" +msgstr "Ail-bostiadau'r postiad hwn" + +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "Ail bostiadau eich ail bostiadau" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "Ail bostiadau eich hysbysiadau ail bostiadau" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "Gofyn am God" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Mae angen testun amgen cyn postio" @@ -6630,7 +7141,7 @@ msgstr "Mae angen testun amgen cyn postio" msgid "Require an email code to sign in to your account." msgstr "Mae angen cod e-bost i fewngofnodi i'ch cyfrif." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Yn ofynnol ar gyfer y darparwr hwn" @@ -6640,12 +7151,8 @@ msgstr "Yn ofynnol yn eich ardal" #: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40 msgid "Resend" -msgstr "" +msgstr "Ail-anfon" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Ail-anfon E-bost" msgid "Resend Verification Email" msgstr "Ail-anfon E-bost Dilysu" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "Ailosod anogaeth tanysgrifio i weithgaredd" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Ailosod cod" @@ -6667,8 +7180,8 @@ msgstr "Ailosod cod" msgid "Reset Code" msgstr "Cod Ailosod" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Ailosod cyflwr cyflwyno" @@ -6678,30 +7191,32 @@ msgstr "Ailosod cyfrinair" #: src/screens/Login/LoginForm.tsx:324 msgid "Retries signing in" -msgstr "Ceisiadau mewngofnodi" +msgstr "Yn ceisio mewngofnodi eto" #: src/view/com/util/error/ErrorMessage.tsx:62 #: src/view/com/util/error/ErrorScreen.tsx:99 msgid "Retries the last action, which errored out" -msgstr "Ceisiadau ar y weithred olaf, oedd wedi methu" +msgstr "Yn ceisio'r weithred olaf eto, oedd yn wallus" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Ceisio eto" @@ -6721,19 +7236,19 @@ msgstr "Yn mynd nôl i'r dudalen gartref" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Yn mynd nôl i'r dudalen flaenorol" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Yn mynd nôl i'r cam blaenorol" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Yn mynd nôl i'r cam blaenorol" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Cadw" @@ -6762,15 +7276,13 @@ msgstr "Cadw" msgid "Save birthday" msgstr "Cadw pen-blwydd" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Cadw'r newidiadau" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Cadw'r Newidiadau" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Cadw cod QR" msgid "Save to my feeds" msgstr "Cadw i fy ffrydiau" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Ffrydiau wedi'u Cadw" @@ -6802,18 +7314,14 @@ msgstr "Ffrydiau wedi'u Cadw" msgid "Saved to your feeds" msgstr "Wedi'i gadw i'ch ffrydiau" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Yn cadw unrhyw newidiadau i'ch proffil" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Yn cadw gosodiadau tocio delwedd" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Dywedwch helo!" @@ -6826,19 +7334,19 @@ msgstr "Gwyddoniaeth" msgid "Scroll to top" msgstr "Sgrolio i'r brig" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Chwilio" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" -msgstr "Chwiliwch bostiadau @{0}" +msgstr "Chwilio postiadau @{0}" #: src/components/ProgressGuide/FollowDialog.tsx:683 msgid "Search by name or interest" @@ -6861,25 +7369,29 @@ msgstr "Chwiliwch am \"{query}\"" msgid "Search for \"{searchText}\"" msgstr "Chwiliwch am \"{searchText}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Chwiliwch am ffrydiau rydych chi am eu hawgrymu i eraill." #: src/screens/Search/Explore.tsx:360 msgid "Search for more accounts" -msgstr "" +msgstr "Chwilio am ragor o gyfrifon" #: src/screens/Search/Explore.tsx:437 msgid "Search for more feeds" -msgstr "" +msgstr "Chwilio am ragor o ffrydiau" #: src/screens/Search/Shell.tsx:334 msgid "Search for posts, users, or feeds" msgstr "Chwiliwch am bostiadau, defnyddwyr, neu ffrydiau" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" -msgstr "Chwilio GIFs" +msgstr "Chwilio GIFau" + +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "Dyw chwilio ddim ar gael pan nad ydych wedi mewngofnodi" #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" @@ -6890,12 +7402,12 @@ msgstr "Chwiliwch fy mhostiadau" msgid "Search posts" msgstr "Chwiliwch am bostiadau" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" -msgstr "Chwiliwch broffiliau" +msgstr "Chwilio proffiliau" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Chwiliwch Tenor" @@ -6903,18 +7415,14 @@ msgstr "Chwiliwch Tenor" msgid "Search..." msgstr "Chwilio..." -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Chwilio am broffiliau" #: src/components/dialogs/EmailDialog/screens/Update.tsx:243 msgid "Security step required" -msgstr "" - -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Cam Diogelwch Angenrheidiol" +msgstr "Mae angen cam diogelwch" #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" @@ -6922,7 +7430,7 @@ msgstr "Gweld {tag} postiad" #: src/components/RichTextTag.tsx:124 msgid "See {tag} posts by user" -msgstr "Gweld {tag} postiad yn ôl defnyddiwr" +msgstr "Gweld {tag} postiadau yn ôl defnyddiwr" #: src/components/RichTextTag.tsx:118 msgid "See #{tag} posts" @@ -6936,14 +7444,31 @@ msgstr "Gweld #{tag} postiad yn ôl defnyddiwr" msgid "See jobs at Bluesky" msgstr "Gweld swyddi yn Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "Gweld rhagor" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "Gweld rhagor o gyfrifon efallai y byddwch yn eu hoffi" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "Gweld rhagor o broffiliau awgrymedig ar y dudalen Explore" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Gweld y canllaw hwn" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Llithrydd chwilio. Defnyddiwch y bysellau saeth i chwilio ymlaen ac yn ôl, a lle i chwarae/oedi" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Dewiswch liw" @@ -6954,7 +7479,7 @@ msgstr "Dewiswch gyfrif" #: src/components/AppLanguageDropdown.tsx:60 msgid "Select an app language" -msgstr "" +msgstr "Dewiswch iaith ap" #: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 msgid "Select an avatar" @@ -6966,11 +7491,11 @@ msgstr "Dewiswch emoji" #: src/components/Select/index.tsx:204 msgid "Select an option" -msgstr "" +msgstr "Dewis opsiwn" #: src/screens/Settings/LanguageSettings.tsx:98 msgid "Select app language" -msgstr "" +msgstr "Dewis iaith yr ap" #: src/screens/Settings/LanguageSettings.tsx:164 msgid "Select content languages" @@ -6978,7 +7503,7 @@ msgstr "Dewiswch ieithoedd cynnwys" #: src/components/live/GoLiveDialog.tsx:179 msgid "Select duration" -msgstr "" +msgstr "Dewis hyd" #: src/screens/Login/index.tsx:144 msgid "Select from an existing account" @@ -6988,7 +7513,7 @@ msgstr "Dewiswch o gyfrif sy'n bodoli" msgid "Select GIF" msgstr "Dewiswch GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Dewiswch GIF \"{0}\"" @@ -6996,6 +7521,11 @@ msgstr "Dewiswch GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "Dewiswch pa mor hir i dewi'r gair hwn." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "Dewiswch iaith" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Dewiswch iaith..." @@ -7004,7 +7534,7 @@ msgstr "Dewiswch iaith..." msgid "Select languages" msgstr "Dewiswch ieithoedd" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "Dewis gwasanaeth cymedroli" @@ -7014,7 +7544,7 @@ msgstr "Dewiswch gymedrolwr" #: src/screens/Settings/LanguageSettings.tsx:131 msgid "Select primary language" -msgstr "" +msgstr "Dewis prif iaith" #: src/view/com/composer/videos/SubtitleFilePicker.tsx:59 #: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 @@ -7045,12 +7575,12 @@ msgstr "Dewiswch pa iaith i'w defnyddio ar gyfer rhyngwyneb defnyddiwr yr ap." msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Dewiswch pa ieithoedd rydych chi am i'ch ffrydiau tanysgrifio eu cynnwys. Os fyddwch chi ddim yn dewis un, bydd pob iaith yn cael ei dangos." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Dewiswch eich dyddiad geni" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Dewiswch eich diddordebau o'r dewisiadau isod" @@ -7058,7 +7588,11 @@ msgstr "Dewiswch eich diddordebau o'r dewisiadau isod" msgid "Select your preferred language for translations in your feed." msgstr "Dewiswch eich dewis iaith cyfieithu'ch ffrydiau." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "Dewiswch eich hoff sianeli hysbysu" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "Yn dewis dewis {0} o {numItems}" @@ -7066,17 +7600,9 @@ msgstr "Yn dewis dewis {0} o {numItems}" msgid "Send a neat website!" msgstr "Anfonwch wefan dda!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Anfonwch e-bost cadarnhau" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Anfon e-bost" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Anfon E-bost" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Anfonwch adborth" @@ -7095,9 +7621,9 @@ msgstr "Anfonwch adborth" msgid "Send message" msgstr "Anfonwch neges" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" -msgstr "" +msgstr "Anfon postiad at {name}" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." @@ -7114,20 +7640,20 @@ msgstr "Anfon adroddiad" msgid "Send report to {0}" msgstr "Anfonwch adroddiad i {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "Anfon adroddiad at {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Anfonwch e-bost dilysu" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Anfonwch trwy neges uniongyrchol" @@ -7143,7 +7669,7 @@ msgstr "Cyfeiriad gweinydd" msgid "Set app icon to {0}" msgstr "Gosod eicon ap i {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Gosod dyddiad geni" @@ -7159,13 +7685,57 @@ msgstr "Gosodwch eich cyfrif" msgid "Sets email for password reset" msgstr "Yn gosod e-bost ar gyfer ailosod cyfrinair" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Gosodiadau" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "Gosodiadau gweithgareddau gan eraill" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "Gosodiadau ar gyfer caniatáu i eraill gael gwybod am eich postiadau" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "Gosodiadau hysbysiadau hoffi" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "Gosodiadau hysbysiadau crybwyll" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "Gosodiadau hysbysiadau dilynwr newydd" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "Gosodiadau hysbysiadau popeth arall" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "Gosodiadau hysbysiadau hoffi eich ail bostiadau" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "Gosodiadau hysbysiadau ail bostiadau eich ail bostiadau" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "Gosodiadau hysbysiadau dyfynnu" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "Gosodiadau hysbysiadau ateb" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "Gosodiadau hysbysiadau ail bostio" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,35 +7770,30 @@ msgstr "Rhannwch stori cŵl!" msgid "Share a fun fact!" msgstr "Rhannwch ffaith hwyliog!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Rhannwch beth bynnag" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" -msgstr "" +msgstr "Rhanwch DID awdur" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Rhannwch ddolen" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Rhannwch Ddolen" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Deialog rhannu dolen" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" -msgstr "" +msgstr "Rhannu postiad i:// URI" #: src/components/StarterPack/ShareDialog.tsx:115 #: src/components/StarterPack/ShareDialog.tsx:126 @@ -7247,34 +7812,30 @@ msgstr "Rhannwch y pecyn cychwyn hwn" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Rhannwch y pecyn cychwynnol hwn a helpwch bobl i ymuno â'ch cymuned ar Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 #: src/view/com/profile/ProfileMenu.tsx:256 msgid "Share via..." -msgstr "" +msgstr "Rhannu drwy..." #: src/components/dms/ChatEmptyPill.tsx:34 msgid "Share your favorite feed!" msgstr "Rhannwch eich hoff ffrwd!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Profwr Dewisiadau Rhannu" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Yn rhannu'r wefan gysylltiedig" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Dangos" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Dangos testun amgen" @@ -7303,8 +7864,8 @@ msgstr "Dangos dewisiadau cyfaddasu" msgid "Show hidden replies" msgstr "Dangos atebion cudd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Dangos llai fel hyn" @@ -7312,55 +7873,63 @@ msgstr "Dangos llai fel hyn" msgid "Show list anyway" msgstr "Dangos rhestr beth bynnag" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Dangos Rhagor" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Dangos rhagor fel hyn" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "Dangos rhagor o atebion" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Dangos atebion wedi'u tewi" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "Dangos atebion postiadau mewn golwg edefyn coeden" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Dangos postiadau dyfynnu" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Dangos atebion" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Dangos atebion fel" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Dangos atebion yn ôl eu edyfydd" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Dangos atebion gan bobl rydych chi'n eu dilyn cyn pob ateb arall" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Dangos ateb i bawb" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Dangos ailbostio" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Dangos samplau o'ch ffrydiau sydd wedi'u cadw yn eich ffrydiau Dilyn" @@ -7372,16 +7941,17 @@ msgstr "Dangos rhybudd" msgid "Show warning and filter from feeds" msgstr "Dangos rhybudd a hidlo o ffrydiau" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Yn dangos manylion pryd cafodd y postiad hwn ei chreu" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "Yn dangos cyfrifon eraill y gallwch newid iddyn nhw" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Yn dangos y cynnwys" @@ -7390,14 +7960,15 @@ msgstr "Yn dangos y cynnwys" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7414,7 +7985,7 @@ msgstr "Mewngofnodi fel..." #: src/screens/Deactivated.tsx:203 #: src/screens/Deactivated.tsx:209 msgid "Sign in or create an account" -msgstr "" +msgstr "Mewngofnodi neu greu cyfrif" #: src/components/dialogs/Signin.tsx:75 msgid "Sign in or create your account to join the conversation!" @@ -7428,15 +7999,20 @@ msgstr "Mewngofnodwch i gyfrif nad yw wedi'i restru" msgid "Sign in to Bluesky or create a new account" msgstr "Mewngofnodwch i Bluesky neu crëwch gyfrif newydd" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "Mewngofnodwch i weld y postiad" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Allgofnodi" @@ -7444,8 +8020,8 @@ msgstr "Allgofnodi" msgid "Sign Out" msgstr "Allgofnodi" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Allgofnodi?" @@ -7459,12 +8035,12 @@ msgstr "Mae Angen Mewngofnodi" msgid "Signed in as @{0}" msgstr "Wedi mewngofnodi fel @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Cyfrifon tebyg" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Hepgor" @@ -7472,14 +8048,13 @@ msgstr "Hepgor" msgid "Skip this flow" msgstr "Hepgor y llif hwn" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Llai" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" -msgstr "" +msgstr "Yn tewi'r nodyn atgoffa" #: src/screens/Onboarding/index.tsx:37 #: src/screens/Onboarding/state.ts:100 @@ -7488,32 +8063,33 @@ msgstr "Datblygwr Meddalwedd" #: src/components/verification/VerificationsDialog.tsx:120 msgid "Some of your verifications are invalid." -msgstr "" +msgstr "Mae rhai o'ch dilysiadau'n annilys." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Rhai ffrydiau eraill efallai y byddwch yn eu hoffi" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Gall rhai pobl ateb" #: src/components/dms/MessageItem.tsx:148 msgid "Someone reacted {0}" -msgstr "" +msgstr "Ymateb rhywun oedd {0}" #: src/screens/Messages/components/ChatListItem.tsx:241 msgid "Someone reacted {0} to {1}" -msgstr "" +msgstr "Ymateb rhywun oedd {0} i {1}" #: src/components/moderation/ReportDialog/index.tsx:76 msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "Doedd rhywbeth ddim yn hollol iawn gyda'r data rydych yn ceisio'i adrodd. Cysylltwch â'n cefnogaeth." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Aeth rhywbeth o'i le" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Aeth rhywbeth o'i le, ceisiwch eto" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Aeth rhywbeth o'i le, ceisiwch eto." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Aeth rhywbeth o'i le!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "Aeth rhywbeth o'i le. Ceisiwch eto cyn bo hir." + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "Aeth rhywbeth o'i le. Ceisiwch eto." @@ -7539,20 +8118,23 @@ msgstr "Aeth rhywbeth o'i le. Ceisiwch eto." msgid "Something wrong? Let us know." msgstr "Rhywbeth o'i le? Rhowch wybod i ni." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "Sori! Daeth eich sesiwn i ben. Mewngofnodwch eto." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Trefnu atebion" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Trefnu atebion yn ôl" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Trefnu atebion i'r un postiad yn ôl:" @@ -7579,13 +8161,13 @@ msgstr "Sbam; gormod o grybwylliadau neu atebion" msgid "Sports" msgstr "Chwaraeon" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." -msgstr "" +msgstr "Dechreuwch sgwrs, a bydd yn ymddangos yma." #: src/components/dms/dialogs/NewChatDialog.tsx:74 msgid "Start a new chat" -msgstr "Dechrau sgwrs newydd" +msgstr "Cychwyn sgwrs newydd" #: src/view/screens/ProfileList.tsx:846 #: src/view/screens/ProfileList.tsx:967 @@ -7601,9 +8183,9 @@ msgstr "Dechreuwch ychwanegu pobl!" msgid "Start chat with {displayName}" msgstr "Dechreuwch sgwrs gyda {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Pecyn Cychwyn" @@ -7611,12 +8193,12 @@ msgstr "Pecyn Cychwyn" msgid "Starter pack by {0}" msgstr "Pecyn cychwyn gan {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Pecyn cychwyn gan <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Pecyn cychwyn gennych chi" @@ -7638,19 +8220,21 @@ msgstr "Mae pecynnau cychwyn yn caniatáu i chi rannu gyda'ch ffrindiau eich hof msgid "Status Page" msgstr "Tudalen Statws" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Cam {0} o {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Storfa wedi'i chlirio, mae angen i chi ailgychwyn yr ap nawr." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Llyfr stori" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Cyflwyno apêl" msgid "Submit Appeal" msgstr "Cyflwyno Apêl" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "Cyflwyno adroddiad" @@ -7676,13 +8260,17 @@ msgstr "Cyflwyno adroddiad" msgid "Subscribe" msgstr "Tanysgrifio" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Tanysgrifiwch i @{0} i ddefnyddio'r labeli hyn:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "Tanysgrifio i weithgaredd cyfrif" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" -msgstr "Tanysgrifio i Labelwr" +msgstr "Tanysgrifiwch i Labelwr" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201 msgid "Subscribe to this labeler" @@ -7692,20 +8280,24 @@ msgstr "Tanysgrifiwch i'r labelwr hwn" msgid "Subscribe to this list" msgstr "Tanysgrifiwch i'r rhestr hon" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "Llwyddiant" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Llwyddiant!" #: src/components/verification/VerificationCreatePrompt.tsx:36 msgid "Successfully verified" -msgstr "" +msgstr "Wedi'i ddilysu'n llwyddiannus" #: src/screens/Search/Explore.tsx:357 msgid "Suggested Accounts" -msgstr "" +msgstr "Cyfrifon wedi'u Hawgrymu" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Awgrymiadau i chi" @@ -7714,26 +8306,26 @@ msgstr "Awgrymiadau i chi" msgid "Suggestive" msgstr "Awgrymiadol" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Codiad Haul" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Machlud Haul" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Cymorth" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Newid cyfrif" @@ -7742,24 +8334,24 @@ msgstr "Newid cyfrif" msgid "Switch Account" msgstr "Newid Cyfrif" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" -msgstr "Newid cyfrif" +msgstr "Newid cyfrifon" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "Newid i {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "System" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Cofnod system" @@ -7767,11 +8359,23 @@ msgstr "Cofnod system" msgid "Tags only" msgstr "Tagiau'n unig" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "Tapio am wybodaeth" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "Tapio am ragor o wybodaeth" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 msgid "Tap to close context menu" -msgstr "" +msgstr "Tapiwch i gau'r ddewislen cyd-destun" #: src/components/ProgressGuide/Toast.tsx:156 msgid "Tap to dismiss" @@ -7796,7 +8400,7 @@ msgstr "Technoleg" #: src/components/dms/ChatEmptyPill.tsx:35 msgid "Tell a joke!" -msgstr "Dweud jôc!" +msgstr "Dywedwch jôc!" #: src/screens/Profile/Header/EditProfileDialog.tsx:377 msgid "Tell us a bit about yourself" @@ -7809,14 +8413,16 @@ msgstr "Dywedwch ychydig mwy wrthym" #: src/view/shell/desktop/RightNav.tsx:116 #: src/view/shell/desktop/RightNav.tsx:117 msgid "Terms" -msgstr "Amodau" +msgstr "Telerau" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Telerau Gwasanaeth" @@ -7846,11 +8452,7 @@ msgstr "Maes mewnbwn testun" #: src/view/com/posts/ShowLessFollowup.tsx:39 msgid "Thank you for your feedback! It has been sent to the feed operator." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Diolch! Mae eich e-bost wedi'i ddilysu'n llwyddiannus." +msgstr "Diolch am eich adborth! Mae wedi cael ei anfon at weithredwr y ffrwd.i" #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." @@ -7864,28 +8466,28 @@ msgstr "Diolch, rydych chi wedi dilysu'ch cyfeiriad e-bost yn llwyddiannus. Gall msgid "That contains the following:" msgstr "Mae hynny’n cynnwys y canlynol:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Mae'r enw dangos hwnnw eisoes wedi'i gymryd." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." -msgstr "Nid oedd modd dod o hyd i'r pecyn cychwyn hwnnw." +msgstr "Doedd dim modd dod o hyd i'r pecyn cychwyn hwnnw." + +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Dyna i gyd, bobl!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "Dyna bopeth!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "Bydd y cyfrif yn gallu rhyngweithio â chi ar ôl ei ddadrwystro." @@ -7900,7 +8502,7 @@ msgstr "Bydd yr ap yn cael ei ailgychwyn" msgid "The author of this thread has hidden this reply." msgstr "Mae awdur yr edefyn hwn wedi cuddio'r ateb hwn." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Rhaglen gwe Bluesky" @@ -7920,10 +8522,6 @@ msgstr "Ffrwd Darganfod" msgid "The Discover feed now knows what you like" msgstr "Mae ffrwd Darganfod nawr yn gwybod beth rydych chi'n ei hoffi" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "" - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "Mae'r profiad yn well yn yr ap. Llwythwch Bluesky i lawr nawr a byddwn yn dod nôl lle roeddech chi." @@ -7944,8 +8542,16 @@ msgstr "Rhoddwyd y labeli canlynol ar eich cynnwys." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "Bydd y gosodiadau canlynol yn cael eu defnyddio fel eich rhagosodiadau wrth greu postiadau newydd. Gallwch olygu'r rhain ar gyfer postiadau penodol o'r cyfansoddwr." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "Mae'r gyfraith yn eich gwlad yn gofyn i chi ddilysu eich bod yn oedolyn cyn i chi gael mynediad ar rhai nodweddion, fel cynnwys oedolion a negesu uniongyrchol yn Bluesky." + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "Mae'r gyfraith yn eich gwlad yn gofyn i chi ddilysu eich bod yn oedolyn i gael mynediad at rhai nodweddion. Tapiwch i wybod mwy." + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Mae'n bosib bod y postiad wedi'i ddileu." @@ -7953,9 +8559,10 @@ msgstr "Mae'n bosib bod y postiad wedi'i ddileu." msgid "The Privacy Policy has been moved to <0/>" msgstr "Mae'r Polisi Preifatrwydd wedi'i symud i <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "Mae'r fideo hwn yn fwy na 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "Mae'r fideo hwn yn fwy na 100 MB. Ceisiwch eto gyda ffeil lai." #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7968,7 +8575,7 @@ msgstr "Mae'r pecyn cychwyn rydych chi'n ceisio ei weld yn annilys. Gallwch ddil #: src/components/ContextMenu/index.tsx:433 msgid "The subject of the context menu" -msgstr "" +msgstr "Testun y ddewislen cyd-destun" #: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." @@ -7982,7 +8589,7 @@ msgstr "Mae'r Telerau Gwasanaeth wedi'u symud i" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "Mae'r cod dilysu darparwyd gennych yn annilys. Gwnewch yn siŵr eich bod wedi defnyddio'r ddolen ddilysu gywir neu ofyn am un newydd." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Thema" @@ -7990,35 +8597,30 @@ msgstr "Thema" msgid "There is no time limit for account deactivation, come back any time." msgstr "Does dim terfyn amser ar gyfer agor cyfrif, dewch yn ôl unrhyw bryd." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." -msgstr "Roedd problem yn ymwneud â Tenor." +msgstr "Bu anhawster wrth ymwneud â Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" -msgstr "Roedd problem wrth gysylltu â'r gweinydd" +msgstr "Bu anhawster wrth gysylltu â'r gweinydd" #: src/screens/Profile/components/ProfileFeedHeader.tsx:418 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 msgid "There was an issue contacting the server, please check your internet connection and try again." -msgstr "Roedd problem wrth gysylltu â'r gweinydd, gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni." +msgstr "Bu anhawster wrth gysylltu â'r gweinydd, gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Roedd problem wrth gysylltu â'ch gweinydd" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." -msgstr "Roedd problem wrth geisio cael hysbysiadau. Tapiwch yma i geisio eto." +msgstr "Bu anhawster wrth geisio cael hysbysiadau. Tapiwch yma i geisio eto." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." -msgstr "Roedd problem wrth nôl postiadau. Tapiwch yma i geisio eto." +msgstr "Bu anhawster wrth nôl postiadau. Tapiwch yma i geisio eto." #: src/view/com/lists/ListMembers.tsx:151 msgid "There was an issue fetching the list. Tap here to try again." @@ -8026,7 +8628,7 @@ msgstr "Roedd problem wrth nôl y rhestr. Tapiwch yma i geisio eto." #: src/screens/Settings/AppPasswords.tsx:60 msgid "There was an issue fetching your app passwords" -msgstr "Roedd problem wrth nôl eich cyfrineiriau apiau" +msgstr "Bu anhawster wrth nôl eich cyfrineiriau apiau" #: src/view/com/feeds/ProfileFeedgens.tsx:151 #: src/view/com/lists/ProfileLists.tsx:150 @@ -8035,26 +8637,26 @@ msgstr "Roedd problem wrth nôl eich rhestrau. Tapiwch yma i geisio eto." #: src/screens/Settings/components/ChangeHandleDialog.tsx:107 msgid "There was an issue fetching your service info" -msgstr "Roedd problem wrth nôl eich manylion gwasanaeth" +msgstr "Bu anhawster wrth nôl eich manylion gwasanaeth" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." -msgstr "Roedd problem wrth ddileu'r ffrwd hwn. Gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni." +msgstr "Bu anhawster wrth ddileu'r ffrwd hwn. Gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni." #: src/components/dms/ReportDialog.tsx:259 #: src/components/ReportDialog/SubmitView.tsx:88 msgid "There was an issue sending your report. Please check your internet connection." -msgstr "Roedd problem wrth anfon eich adroddiad. Gwiriwch eich cysylltiad rhyngrwyd." +msgstr "Bu anhawster wrth anfon eich adroddiad. Gwiriwch eich cysylltiad rhyngrwyd." #: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:71 msgid "There was an issue updating your feeds, please check your internet connection and try again." -msgstr "Roedd problem wrth ddiweddaru'ch ffrydiau, gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni." +msgstr "Bu anhawster wrth ddiweddaru'ch ffrydiau, gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8067,9 +8669,9 @@ msgstr "Roedd problem wrth ddiweddaru'ch ffrydiau, gwiriwch eich cysylltiad rhyn #: src/view/com/profile/ProfileMenu.tsx:175 #: src/view/com/profile/ProfileMenu.tsx:187 msgid "There was an issue! {0}" -msgstr "Roedd problem! {0}" +msgstr "Bu anhawster! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Roedd problem! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Roedd problem. Gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Roedd problem annisgwyl yn y rhaglen. Rhowch wybod i ni os digwyddodd hyn i chi!" @@ -8089,7 +8691,7 @@ msgstr "Roedd problem annisgwyl yn y rhaglen. Rhowch wybod i ni os digwyddodd hy msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Mae yna ruthr o ddefnyddwyr newydd wedi bod i Bluesky! Byddwn yn agor eich cyfrif cyn gynted ag y gallwn." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Dim ond i'r ffrwd Dilyn mae'r gosodiadau hyn yn berthnasol." @@ -8099,11 +8701,11 @@ msgstr "Mae {screenDescription} hwn wedi'i fflagio:" #: src/components/verification/VerificationsDialog.tsx:87 msgid "This account has a checkmark because it's been verified by trusted sources." -msgstr "" +msgstr "Mae gan y cyfrif hwn farc tic oherwydd ei fod wedi'i ddilysu gan ffynonellau dibynadwy." #: src/components/verification/VerificationsDialog.tsx:92 msgid "This account has one or more attempted verifications, but it is not currently verified." -msgstr "" +msgstr "Mae un neu fwy o geisiadau dilysu wedi'u gwneud ar gyfer y cyfrif hwn, ond heb ei ddilysu ar hyn o bryd." #: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." @@ -8115,7 +8717,7 @@ msgstr "Mae'r cyfrif hwn wedi'i rwystro gan un neu fwy o'ch rhestrau safoni. I d #: src/components/verification/VerificationCreatePrompt.tsx:55 msgid "This action can be undone at any time." -msgstr "" +msgstr "Mae modd dadwneud y weithred hon unrhyw bryd." #: src/components/moderation/LabelsOnMeDialog.tsx:271 msgid "This appeal will be sent to <0>{sourceName}." @@ -8144,11 +8746,11 @@ msgstr "Mae'r cynnwys hwn yn cael ei letya gan {0}. Ydych chi am alluogi cyfryng #: src/components/moderation/ModerationDetailsDialog.tsx:84 #: src/lib/moderation/useModerationCauseDescription.ts:84 msgid "This content is not available because one of the users involved has blocked the other." -msgstr "Nid yw'r cynnwys hwn ar gael oherwydd bod un o'r defnyddwyr dan sylw wedi rhwystro'r llall." +msgstr "Dyw'r cynnwys hwn ddim ar gael oherwydd bod un o'r defnyddwyr dan sylw wedi rhwystro'r llall." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." -msgstr "Nid yw'r cynnwys hwn yn weladwy heb gyfrif Bluesky." +msgstr "Dyw'r cynnwys hwn ddim yn weladwy heb gyfrif Bluesky." #: src/screens/Messages/components/ChatListItem.tsx:362 msgid "This conversation is with a deleted or a deactivated account. Press for options" @@ -8156,21 +8758,25 @@ msgstr "Mae'r sgwrs hon gyda chyfrif sydd wedi'i ddileu neu wedi'i chau. Pwyswch #: src/components/dialogs/EmailDialog/screens/Update.tsx:156 msgid "This email is already associated with your account." -msgstr "" +msgstr "Mae'r cyfeiriad e-bost hwn eisoes wedi'i gysylltu â'ch cyfrif." + +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "Mae'r nodwedd hon yn caniatáu i ddefnyddwyr dderbyn hysbysiadau am eich postiadau ac atebion newydd. Pwy ydych chi eisiau eu galluogi ar eu cyfer?" #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." -msgstr "Mae'r nodwedd hon mewn beta. Gallwch ddarllen mwy am allforio storfeydd yn <0>y cofnod blog hwn." +msgstr "Nodwedd beta yw hon. Gallwch ddarllen mwy am allforio storfeydd yn <0>y cofnod blog hwn." #: src/lib/hooks/useCleanError.ts:49 msgid "This feature is not available while using an app password. Please sign in with your main password." -msgstr "" +msgstr "Dyw'r nodwedd hon ddim ar gael wrth ddefnyddio cyfrinair ap. Mewngofnodwch gyda'ch prif gyfrinair." #: src/lib/strings/errors.ts:21 msgid "This feature is not available while using an App Password. Please sign in with your main password." -msgstr "Nid yw'r nodwedd hon ar gael wrth ddefnyddio Cyfrinair Ap. Mewngofnodwch gyda'ch prif gyfrinair." +msgstr "Dyw'r nodwedd hon ddim ar gael wrth ddefnyddio Cyfrinair Ap. Mewngofnodwch gyda'ch prif gyfrinair." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Mae'r ffrwd hon yn brysur iawn ar hyn o bryd ac nid yw ar gael dros dro. Ceisiwch eto yn nes ymlaen." @@ -8186,11 +8792,11 @@ msgstr "Mae'r ffrwd hon yn wag." #: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." -msgstr "Nid yw'r ffrwd hon ar-lein bellach. Rydym yn dangos <0>Darganfod yn ei lle." +msgstr "Dyw'r ffrwd hon ddim ar-lein bellach. Rydym yn dangos <0>Discover yn ei lle." #: src/screens/Settings/components/ChangeHandleDialog.tsx:593 msgid "This handle is reserved. Please try a different one." -msgstr "Mae'r enw dangos hwn wedi'i gadw. Rhowch gynnig ar un arall." +msgstr "Mae'r handlen hon wedi'i chadw. Rhowch gynnig ar un arall." #: src/components/dialogs/BirthDateSettings.tsx:41 msgid "This information is not shared with other users." @@ -8199,7 +8805,7 @@ msgstr "Nid yw'r wybodaeth hon yn cael ei rhannu â defnyddwyr eraill." #: src/components/live/EditLiveDialog.tsx:189 #: src/components/live/GoLiveDialog.tsx:160 msgid "This is not a valid link" -msgstr "" +msgstr "Dyw hon ddim yn ddolen ddilys" #: src/components/moderation/ModerationDetailsDialog.tsx:168 msgid "This label was applied by the author." @@ -8209,11 +8815,11 @@ msgstr "Gosodwyd y label hwn gan yr awdur." msgid "This label was applied by you." msgstr "Gosodwyd y label hwn gennych chi." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." -msgstr "Nid yw'r labelwr hwn wedi datgan pa labeli y mae'n eu cyhoeddi, ac efallai na fydd yn weithredol." +msgstr "Dyw'r labelwr hwn ddim wedi datgan pa labeli y mae'n eu cyhoeddi, ac efallai na fydd yn weithredol." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Mae'r ddolen hon yn mynd â chi i'r wefan ganlynol:" @@ -8231,31 +8837,30 @@ msgstr "Mae'r rhestr hon yn wag." #: src/screens/Profile/ErrorState.tsx:40 msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." -msgstr "Nid yw'r gwasanaeth cymedroli hwn ar gael. Gweler isod am ragor o fanylion. Os bydd y mater hwn yn parhau, cysylltwch â ni." +msgstr "Dyw'r gwasanaeth cymedroli hwn ddim ar gael. Gweler isod am ragor o fanylion. Os bydd y mater hwn yn parhau, cysylltwch â ni." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Mae'r postiad hwn yn honni iddo gael ei greu ar <0>{0}, ond fe'i gwelwyd gyntaf gan Bluesky ar <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Mae gan y postiad hwn fath anhysbys o adwy edau arno. Mae'n bosibl bod eich ap yn rhy hen." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Mae'r postiad hwn wedi'i ddileu." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Dim ond i ddefnyddwyr sydd wedi mewngofnodi y mae'r postiad hwn yn weladwy. Ni fydd yn weladwy i bobl nad ydyn nhw wedi mewngofnodi." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "Dim ond ar gyfer aelodau sydd wedi mewngofnodi mae'r postiad hwn yn weladwy." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Bydd y postiad hwn yn cael ei guddio rhag ffrydiau ac edafedd. Nid oes modd dadwneud hyn." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "Mae awdur y postiad hwn wedi analluogi postiadau dyfyniadau." @@ -8263,25 +8868,29 @@ msgstr "Mae awdur y postiad hwn wedi analluogi postiadau dyfyniadau." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Mae'r proffil hwn yn weladwy dim ond i ddefnyddwyr sydd wedi mewngofnodi. Ni fydd yn weladwy i bobl nad ydyn nhw wedi mewngofnodi." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Bydd yr ateb hwn yn cael ei drefnu mewn adran gudd ar waelod eich edefyn a bydd yn tewi hysbysiadau ar gyfer atebion dilynol - i chi'ch hun ac i eraill." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." -msgstr "Nid yw'r gwasanaeth hwn wedi darparu telerau gwasanaeth na pholisi preifatrwydd." +msgstr "Dyw'r gwasanaeth hwn heb ddarparu telerau gwasanaeth na pholisi preifatrwydd." #: src/screens/Settings/components/ChangeHandleDialog.tsx:456 msgid "This should create a domain record at:" msgstr "Dylai hyn greu cofnod parth yn:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "Dylai gymryd dim ond ychydig funudau." + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." -msgstr "" +msgstr "Does gan y defnyddiwr hwn ddim enw dangos, ac felly does dim modd ei ddilysu." #: src/view/com/profile/ProfileFollowers.tsx:95 msgid "This user doesn't have any followers." -msgstr "Nid oes gan y defnyddiwr hwn unrhyw ddilynwyr." +msgstr "Does gan y defnyddiwr hwn ddim dilynwyr." #: src/components/dms/MessagesListBlockedFooter.tsx:68 msgid "This user has blocked you" @@ -8310,59 +8919,64 @@ msgstr "Mae'r defnyddiwr hwn yn newydd yma. Pwyswch am ragor o wybodaeth ynghylc #: src/view/com/profile/ProfileFollows.tsx:95 msgid "This user isn't following anyone." -msgstr "Nid yw'r defnyddiwr hwn yn dilyn unrhyw un." +msgstr "Dyw'r defnyddiwr hwn ddim yn dilyn unrhyw un." #: src/components/dialogs/MutedWords.tsx:435 msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Bydd hyn yn dileu \"{0}\" o'ch geiriau wedi'u tewi. Gallwch bob amser ei ychwanegu nôl yn ddiweddarach." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Bydd hyn yn tynnu @{0} o'r rhestr mynediad cyflym." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Bydd hyn yn tynnu'ch postiad o'r postiad dyfynnu hwn ar gyfer pob defnyddiwr, ac yn rhoi dalfan yn ei le." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" -msgstr "Dewisiadau edafedd" +msgstr "Opsiynau edafedd" #: src/screens/Settings/ContentAndMediaSettings.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:71 msgid "Thread preferences" msgstr "Dewisiadau edafedd" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Dewisiadau Edafedd" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Edafwyd" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Modd edafedd" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Dewisiadau Edafedd" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "Amser yn weddill: {0, plural, one {# eiliad} other {# eiliad}}" #: src/screens/Settings/components/DisableEmail2FADialog.tsx:99 msgid "To disable the email 2FA method, please verify your access to the email address." -msgstr "I analluogi'r dull e-bost 2FA, gwiriwch eich mynediad i'r cyfeiriad e-bost." +msgstr "I analluogi'r dull e-bost 2FA, dilyswch eich mynediad i'r cyfeiriad e-bost." #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215 msgid "To disable your email 2FA method, please verify your access to <0>{0}" -msgstr "" +msgstr "I analluogi eich dull 2FA e-bost, dilyswch eich mynediad i <0>{0}" #: src/components/dms/ReportConversationPrompt.tsx:19 msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." @@ -8376,48 +8990,62 @@ msgstr "At bwy hoffech chi anfon yr adroddiad hwn?" msgid "Today" msgstr "Heddiw" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" -msgstr "Toglo'r cwymplen" +msgstr "Toglo'r gwymplen" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Toglo i alluogi neu analluogi cynnwys oedolion" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Toglo'r sain" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Brig" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "Prif atebion yn gyntaf" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Pwnc" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Cyfieithu" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "Golwg coeden" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Y Tuedd" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Fideos Tueddol" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." -msgstr "" +msgstr "Mae ymddiriedaeth yn deillio o berthnasoedd, cymunedau, a chyd-destun sy'n cael eu rhannu, felly rydym hefyd yn galluogi <0>dilyswyr dibynadwy: sefydliadau sy'n gallu cyhoeddi dilysiad yn uniongyrchol." #: src/view/com/util/error/ErrorScreen.tsx:103 msgctxt "action" @@ -8428,14 +9056,10 @@ msgstr "Ceisia eto" msgid "TV" msgstr "Teledu" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Dilysu dau ffactor (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Teipiwch eich dewis o enw defnyddiwr" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Teipiwch eich neges yma" @@ -8453,7 +9077,7 @@ msgstr "Methu cysylltu. Gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Methu cysylltu â'ch gwasanaeth. Gwiriwch eich cysylltiad rhyngrwyd." msgid "Unable to delete" msgstr "Methu dileu" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "Dadosod Cais Tynnu" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "Dadosod Cais Tynnu {currentChannel}" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "Dim ar gael" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "Manylion ffrwd anhysbys" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Dadflocio" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Dadflocio" @@ -8486,22 +9126,22 @@ msgstr "Dadflocio" msgid "Unblock account" msgstr "Dadrwystro cyfrif" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Dadrwystro Cyfrif?" #: src/view/screens/ProfileList.tsx:620 msgid "Unblock list" -msgstr "" +msgstr "Rhestr ddadrwystro" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Dadwneud ail-bostio" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Dad-wneud ail-bostio ({0, plural, one {# ail-bostio} other {# ail-bostio}})" @@ -8510,38 +9150,38 @@ msgctxt "action" msgid "Unfollow" msgstr "Dad-ddilyn" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Dad-ddilyn {0}" #: src/view/com/profile/ProfileMenu.tsx:283 #: src/view/com/profile/ProfileMenu.tsx:293 msgid "Unfollow account" -msgstr "Yn dad-ddilyn y cyfrif" +msgstr "Dad-ddilyn y cyfrif" #: src/screens/VideoFeed/index.tsx:831 msgid "Unfollows the user" -msgstr "Yn dad-ddilyn y defnyddiwr" +msgstr "Dad-ddilyn defnyddiwr" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Yn anffodus, nid yw un o'ch labelwyr wedi'u tanysgrifio'n cefnogi'r math yma o adroddiad." #: src/components/verification/VerificationsDialog.tsx:206 msgid "Unknown verifier" -msgstr "" +msgstr "Dilysydd anhysbys" #: src/screens/Profile/components/ProfileFeedHeader.tsx:518 msgid "Unlike" msgstr "Dad-hoffi" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Dadhoffi ({0, plural, one {# hoffi} other {# hoffi}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Dad-dewi" @@ -8555,8 +9195,8 @@ msgstr "Dad-dewi" msgid "Unmute {tag}" msgstr "Dad-dewi {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8568,14 +9208,14 @@ msgstr "Dad-dewi sgwrs" #: src/view/screens/ProfileList.tsx:605 msgid "Unmute list" -msgstr "" +msgstr "Dad-dewi rhestr" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Dad-dewi'r edefyn" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Dad-dewi fideo" @@ -8590,15 +9230,15 @@ msgstr "Dad-binio ffrwd" #: src/components/FeedCard.tsx:320 msgid "Unpin Feed" -msgstr "" +msgstr "Dad-binio Ffrwd" #: src/screens/Profile/components/ProfileFeedHeader.tsx:310 #: src/screens/Profile/components/ProfileFeedHeader.tsx:312 msgid "Unpin from home" msgstr "Dad-bioio o'r cartref" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Dad-binio o'r proffil" @@ -8614,10 +9254,10 @@ msgstr "Wedi'i ddad-binio {0} o'r Cartref" msgid "Unpinned from your feeds" msgstr "Wedi'i ddad-binio o'ch ffrydiau" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" -msgstr "" +msgstr "Dad-gysgu atgoffwr e-bost" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233 msgid "Unsubscribe" @@ -8636,7 +9276,7 @@ msgstr "Dad-danysgrifio o'r labelwr hwn" msgid "Unsubscribed from list" msgstr "Wedi dad-danysgrifio o'r rhestr" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Math o fideo heb ei gefnogi" @@ -8662,10 +9302,10 @@ msgstr "Diweddaru <0>{displayName} yn y Rhestrau" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" -msgstr "" +msgstr "Diweddaru e-bost" #: src/screens/Settings/components/ChangeHandleDialog.tsx:526 #: src/screens/Settings/components/ChangeHandleDialog.tsx:547 @@ -8674,44 +9314,44 @@ msgstr "Diweddaru i {domain}" #: src/components/dialogs/EmailDialog/screens/Update.tsx:203 msgid "Update your email" -msgstr "" +msgstr "Diweddaru eich e-bost" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Wedi methu diweddaru atodiad dyfyniad" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Wedi methu diweddaru gwelededd ateb" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Yn diweddaru..." #: src/screens/Onboarding/StepProfile/index.tsx:288 msgid "Upload a photo instead" -msgstr "Llwythwch lun i fyny yn lle hynny" +msgstr "Llwytho lun i fyny yn lle hynny" #: src/screens/Settings/components/ChangeHandleDialog.tsx:472 msgid "Upload a text file to:" -msgstr "Llwythwch ffeil testun i fyny i:" +msgstr "Llwytho ffeil testun i fyny i:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" -msgstr "Llwythwch i fyny o'r Camera" +msgstr "Llwytho i fyny o'r Camera" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Llwytho i fyny o'r Ffeiliau" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Llwytho i fyny o'r Llyfrgell" msgid "Uploading images..." msgstr "Wrthi'n lwytho lluniau i fyny..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Wrthi'n lwytho dolen llun bach i fyny..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Wrthi'n llwytho fideo i fyny..." @@ -8741,17 +9381,17 @@ msgstr "Defnyddiwch y darparwr rhagosodedig" #: src/components/dialogs/InAppBrowserConsent.tsx:77 #: src/components/dialogs/InAppBrowserConsent.tsx:83 msgid "Use in-app browser" -msgstr "Defnyddiwch y porwr o fewn yr ap" +msgstr "Defnyddio'r porwr o fewn yr ap" #: src/screens/Settings/ContentAndMediaSettings.tsx:102 #: src/screens/Settings/ContentAndMediaSettings.tsx:108 msgid "Use in-app browser to open links" -msgstr "Defnyddiwch y porwr o fewn yr ap i agor dolenni" +msgstr "Defnyddio'r porwr o fewn yr ap i agor dolenni" #: src/components/dialogs/InAppBrowserConsent.tsx:87 #: src/components/dialogs/InAppBrowserConsent.tsx:93 msgid "Use my default browser" -msgstr "Defnyddiwch fy mhorwr rhagosodedig" +msgstr "Defnyddio fy mhorwr rhagosodedig" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:53 msgid "Use recommended" @@ -8759,7 +9399,11 @@ msgstr "Rydym yn argymell y rhain" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:190 msgid "Use this to sign in to the other app along with your handle." -msgstr "Defnyddiwch hwn i fewngofnodi i'r ap arall ynghyd â'ch enw dangos." +msgstr "Defnyddio hwn i fewngofnodi i'r ap arall ynghyd â'ch enw dangos." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "Defnyddiwch gyfrif e-bost eich cyfrif, neu gyfrif e-bost arall rydych yn ei reoli, rhag ofn y bydd KWS neu Bluesky angen cysylltu â chi." #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Rhestr defnyddwyr wedi'i diweddaru" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Enw defnyddiwr neu gyfeiriad e-bost" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "defnyddwyr yn cael eu dilyn gan <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "defnyddwyr yn dilyn <0>@{0}" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Defnyddwyr rwy'n eu dilyn" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Defnyddwyr yn \"{0}\"" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Defnyddwyr rydych chi'n eu dilyn" @@ -8844,83 +9500,97 @@ msgstr "Gwerth:" #: src/components/verification/VerificationCreatePrompt.tsx:39 msgid "Verification failed, please try again." -msgstr "" +msgstr "Methodd y dilysu, ceisiwch eto." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" -msgstr "" +msgstr "Gosodiadau dilysu" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" -msgstr "" +msgstr "Gosodiadau Dilysu" #: src/screens/Moderation/VerificationSettings.tsx:41 msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here." -msgstr "" +msgstr "Mae dilysiadau ar Bluesky yn gweithio'n wahanol i'r rhai ar lwyfannau eraill. <0> Dysgu ragor yma." #: src/components/verification/VerificationsDialog.tsx:103 msgid "Verified by:" -msgstr "" +msgstr "Wedi'i ddilysu gan:" #: src/components/verification/VerificationCreatePrompt.tsx:84 #: src/components/verification/VerificationCreatePrompt.tsx:86 #: src/view/com/profile/ProfileMenu.tsx:346 #: src/view/com/profile/ProfileMenu.tsx:349 msgid "Verify account" -msgstr "" +msgstr "Dilysu cyfrif" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "Dilysu eto" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "" #: src/screens/Settings/components/ChangeHandleDialog.tsx:528 #: src/screens/Settings/components/ChangeHandleDialog.tsx:549 msgid "Verify DNS Record" -msgstr "Gwirio Cofnod DNS" - -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "" +msgstr "Dilysu Cofnod DNS" +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" -msgstr "" +msgstr "Dilysu'r cod e-bost" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" -msgstr "Gwirio deialog e-bost" +msgstr "Dilysu'r ddeialog e-bost" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "Dilysu nawr" #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" -msgstr "Gwirio Ffeil Testun" +msgstr "Dilysu'r Ffeil Testun" #: src/components/verification/VerificationCreatePrompt.tsx:51 msgid "Verify this account?" -msgstr "" +msgstr "Dilysu'r cyfrif hwn?" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "Dilyswch eich oed" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" -msgstr "Gwiriwch eich e-bost" +msgstr "Dilysu'ch e-bost" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Gwiriwch eich e-bost" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "Wrthi'n dilysu" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "Wrthi'n dilysu eich statws sicrwydd oed" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Fersiwn {appVersion}" +msgid "Version {0}" +msgstr "Fersiwn {0}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Fideo" @@ -8928,7 +9598,7 @@ msgstr "Fideo" msgid "Video failed to process" msgstr "Methodd y fideo â phrosesu" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Ffrwd Fideo" @@ -8942,15 +9612,15 @@ msgstr "Fideo gan {0}: {text}" msgid "Video Games" msgstr "Gemau Fideo" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Fideo wedi'i atal" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Fideo yn chwarae" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Fideo heb ei ganfod." @@ -8958,11 +9628,11 @@ msgstr "Fideo heb ei ganfod." msgid "Video settings" msgstr "Gosodiadau fideo" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Fideo wedi'i lwytho i fyny" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Fideo: {0}" @@ -8979,11 +9649,11 @@ msgstr "Rhaid i fideo fod yn llai na 3 munud o hyd" msgid "View {0}'s avatar" msgstr "Gweld afatar {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Gweld proffil {0}" @@ -8991,7 +9661,7 @@ msgstr "Gweld proffil {0}" msgid "View {displayName}'s profile" msgstr "Gweld proffil {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Gweld proffil defnyddiwr sydd wedi'i rwystro" @@ -9009,7 +9679,6 @@ msgstr "Gweld cofnod dadfygio" msgid "View details" msgstr "Manylion" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Gweld manylion ar gyfer adrodd am dorri hawlfraint" @@ -9022,23 +9691,23 @@ msgstr "Gweld yr edefyn llawn" msgid "View information about these labels" msgstr "Gweld gwybodaeth am y labeli hyn" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Gweld mwy" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Gweld proffil" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Gweld yr afatar" @@ -9048,43 +9717,43 @@ msgstr "Gweld y gwasanaeth labelu sy'n cael ei ddarparu gan @{0}" #: src/components/verification/VerificationCheckButton.tsx:99 msgid "View this user's verifications" -msgstr "" +msgstr "Gweld dilysiadau'r defnyddiwr hwn" #: src/screens/Profile/components/ProfileFeedHeader.tsx:489 msgid "View users who like this feed" msgstr "Gweld defnyddwyr sy'n hoffi'r ffrwd hon" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Gweld fideo" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Gweld eich cyfrifon sydd wedi'u rhwystro" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" -msgstr "Gweld eich gosodiadau rhyngweithio post rhagosodedig" +msgstr "Gweld eich gosodiadau rhyngweithio postiadau rhagosodedig" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Gweld eich ffrydiau ac archwilio mwy" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Gweld eich rhestrau cymedroli" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Gweld eich cyfrifon wedi tewi" #: src/components/verification/VerificationCheckButton.tsx:98 msgid "View your verifications" -msgstr "" +msgstr "Gweld eich dilysiadau" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Yn gweld delwedd lawn" @@ -9092,16 +9761,20 @@ msgstr "Yn gweld delwedd lawn" msgid "Views video in immersive mode" msgstr "Yn gweld fideo yn y modd trochi" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "Mynd i'r Wefan" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "Mynd i'r wefan" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "Ewch i'ch gosodiadau hysbysu" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Sain" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9118,7 +9791,15 @@ msgstr "Rhybudd cynnwys a hidlydd o ffrydiau" #: src/components/live/LiveStatusDialog.tsx:156 #: src/components/live/LiveStatusDialog.tsx:169 msgid "Watch now" -msgstr "" +msgstr "Gwyliwch nawr" + +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "Doedd dim modd i ni gysylltu â'r gwasanaeth sy'n darparu'r ffrwd gyfaddas hon. Gall fod nad yw ar gael dros dro ac yn profi anawsterau, neu nad yw ar gael yn barhaol." + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "Doedd dim modd i ni ganfod y rhestr hon. Bosib ei bod wedi'i dileu." #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." @@ -9128,7 +9809,7 @@ msgstr "Methu ddod o hyd i ganlyniadau'r hashnod hwnnw." msgid "We couldn't find any results for that topic." msgstr "Methu ddod o hyd i ganlyniadau'r pwnc hwnnw." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Methu lwytho'r sgwrs hon" @@ -9136,6 +9817,10 @@ msgstr "Methu lwytho'r sgwrs hon" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Rydym yn amcangyfrif {estimatedTime} nes bod eich cyfrif yn barod." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "Rydym wedi partneru gyda <0>KWS i ddilysu eich bod yn oedolyn. Pan fyddwch yn clicio ar \"Cychwyn\" isod, bydd KWS yn gwirio os ydych wedi gwirio eich oed o'r blaen gan ddefnyddio'r cyfeiriad e-bost yma ar gyfer gemau/gwasanaethau eraill wedi'u pweru gan dechnoleg KWS. Os nad, bydd KWS yn e-bostio cyfarwyddiadau i chi ar gyfer dilysu eich oedran. Ar ôl i chi orffen, byddwch yn dychwelyd i barhau i ddefnyddio Bluesky." + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Rydym wedi anfon e-bost dilysu arall at <0>{0}." @@ -9148,42 +9833,62 @@ msgstr "Gobeithiwn y cewch amser bendigedig. Cofiwch, Bluesky yw:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Rydym wedi redeg allan o bostiadau o'ch dilynwyr. Dyma'r diweddaraf gan <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." -msgstr "" +msgstr "Rydym yn argymell dewis o leiaf ddau ddiddordeb." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." -msgstr "" +msgstr "Anfonwyd e-bost at <0>{0} sy'n cynnwys dolen. Cliciwch arno i gwblhau'r broses dilysu e-bost." -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." -msgstr "Nid oeddem yn gallu penderfynu a ydych yn cael llwytho fideos i fyny. Ceisiwch eto." +msgstr "Doedden ni ddim yn gallu penderfynu a ydych yn cael llwytho fideos i fyny. Ceisiwch eto." #: src/components/dialogs/BirthDateSettings.tsx:52 msgid "We were unable to load your birth date preferences. Please try again." -msgstr "Nid oeddem yn gallu llwytho eich dewisiadau dyddiad geni. Ceisiwch eto." +msgstr "Doedden ni ddim yn gallu llwytho eich dewisiadau dyddiad geni. Ceisiwch eto." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." -msgstr "Nid oeddem yn gallu llwytho eich labeli ffurfweddu ar hyn o bryd." +msgstr "Doedden ni ddim yn gallu llwytho eich labeli ffurfweddu ar hyn o bryd." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "Doedd dim modd i ni dderbyn y dilysiad oherwydd mater cysylltu. Gall gyrraedd yn hwyrach. Os fydd, bydd eich cyfrif yn diweddaru'n awtomatig." #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." -msgstr "Nid oeddem yn gallu cysylltu. Ceisiwch eto i barhau i osod eich cyfrif. Os bydd yn parhau i fethu, gallwch hepgor y llif hwn." +msgstr "Doedden ni ddim yn gallu cysylltu. Ceisiwch eto i barhau i osod eich cyfrif. Os bydd yn parhau i fethu, gallwch hepgor y llif hwn." #: src/screens/SignupQueued.tsx:164 msgid "We will let you know when your account is ready." msgstr "Byddwn yn rhoi gwybod i chi pan fydd eich cyfrif yn barod." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." -msgstr "" +msgstr "Byddwn yn anfon e-bost at <0>{0} sy'n cynnwys dolen. Cliciwch arno i gwblhau'r broses dilysu e-bost." #: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "Byddwn yn defnyddio hwn i helpu i addasu eich profiad." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "Rydym yn cadarnhau eich statws sicrwydd oed gyda'n gweinyddion. Dylai ddim cymryd mwy nag ychydig eiliadau." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "Rydym yn cael anawsterau cychwyn y broses sicrhau oed ar gyfer eich cyfrif. Cysylltwch â'n <0>cefnogaeth am gymorth." + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9191,9 +9896,9 @@ msgstr "Rydym yn cael problemau rhwydwaith, ceisiwch eto" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." -msgstr "" +msgstr "Rydyn ni'n cyflwyno haen newydd o ddilysu ar Bluesky - marc gwirio hawdd ei weld." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Rydym yn gyffrous iawn eich bod wedi ymuno â ni!" @@ -9205,15 +9910,15 @@ msgstr "Mae'n ddrwg gennym, ond nid oeddem yn gallu datrys y rhestr hon. Os bydd msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Mae'n ddrwg gennym, ond nid oeddem yn gallu llwytho eich geiriau wedi'u tewi ar hyn o bryd. Ceisiwch eto." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Mae'n ddrwg gennym, ond nid oedd modd cwblhau eich chwilio. Ceisiwch eto ymhen ychydig funudau." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Mae'n ddrwg gennym! Mae'r postiad rydych chi'n ymateb iddo wedi'i dileu." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Mae'n ddrwg gennym! Gallwn ni ddim dod o hyd i'r dudalen yr oeddech yn chwilio amdani." @@ -9222,6 +9927,26 @@ msgstr "Mae'n ddrwg gennym! Gallwn ni ddim dod o hyd i'r dudalen yr oeddech yn c msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Mae'n ddrwg gennym! Dim ond i ugain o labelwyr y gallwch chi danysgrifio, ac rydych chi wedi cyrraedd eich terfyn o ugain." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "Rydym yn cadarnhau eich statws sicrwydd oed. Gallwch gau'r ddeialog hon nawr." + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Croeso nôl!" @@ -9240,13 +9965,13 @@ msgstr "Beth ydych chi am ei alw'ch pecyn cychwyn?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Beth sy'n digwydd?" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146 msgid "When you tap on a check, you’ll see which organizations have granted verification." -msgstr "" +msgstr "Pan fyddwch chi'n tapio ar dic, gallwch weld pa sefydliadau sydd wedi rhoi dilysiad." #: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80 msgid "Which languages are used in this post?" @@ -9256,28 +9981,28 @@ msgstr "Pa ieithoedd sy'n cael eu defnyddio yn y postiad hon?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Pa ieithoedd hoffech chi eu gweld yn eich ffrydiau algorithmig?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Pwy all ryngweithio â'r postiad hwn?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Pwy all ateb" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127 msgid "Who can verify?" -msgstr "" +msgstr "Pwy sy'n gallu dilysu?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Wps!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." -msgstr "Wps! Methodd y fideos sy'n tueddu i lwytho." +msgstr "Wps! Methodd y fideos sy'n trendio i lwytho." #: src/screens/Takendown.tsx:173 msgid "Why are you appealing?" @@ -9322,12 +10047,12 @@ msgstr "Pam dylai'r defnyddiwr hwn gael ei adolygu?" msgid "Write a message" msgstr "Ysgrifennwch neges" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Ysgrifennwch bostiad" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Ysgrifennwch eich ateb" @@ -9343,7 +10068,7 @@ msgstr "DID anghywir wedi'i ddychwelyd o'r gweinydd. Derbyniwyd: {0}" #: src/components/live/EditLiveDialog.tsx:153 #: src/components/live/GoLiveDialog.tsx:129 msgid "www.mylivestream.tv" -msgstr "" +msgstr "www.mylivestream.tv" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:87 msgid "Yes" @@ -9358,17 +10083,17 @@ msgstr "Iawn, cau" msgid "Yes, delete this starter pack" msgstr "Iawn, dilëu'r pecyn cychwyn hwn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Iawn, datgysylltu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Iawn, cuddio" #: src/screens/Deactivated.tsx:147 msgid "Yes, reactivate my account" -msgstr "Iawn, ailagor fy nghyfrif" +msgstr "Iawn, ail agor fy nghyfrif" #: src/components/dms/DateDivider.tsx:46 msgid "Yesterday" @@ -9378,13 +10103,21 @@ msgstr "Ddoe" msgid "You" msgstr "Chi" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" -msgstr "" +msgstr "Rydych chi'n ddilysydd dibynadwy" #: src/components/forms/HostingProvider.tsx:45 msgid "You are creating an account on" -msgstr "" +msgstr "Rydych chi'n creu cyfrif ar" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "Does dim modd i chi gael mynediad at lif Sicrwydd Oed Bluesky. Cysylltwch â'n <0>tîm cymedroli os ydych yn teimlo fod hyn yn wall." #: src/screens/SignupQueued.tsx:157 msgid "You are in line." @@ -9393,19 +10126,19 @@ msgstr "Rydych mewn llinell." #: src/components/live/EditLiveDialog.tsx:119 #: src/components/live/EditLiveDialog.tsx:124 msgid "You are Live" -msgstr "" +msgstr "Rydych chi'n Fyw" #: src/components/live/queries.ts:211 msgid "You are no longer live" -msgstr "" +msgstr "Dydych chi ddim yn fyw mwyach" #: src/components/live/queries.ts:35 msgid "You are not allowed to go live" -msgstr "" +msgstr "Does dim caniatâd i chi fynd yn fyw" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." -msgstr "Nid oes caniatâd i chi lwytho fideos i fyny." +msgstr "Does dim caniatâd i chi lwytho fideos i fyny." #: src/view/com/profile/ProfileFollows.tsx:94 msgid "You are not following anyone." @@ -9413,24 +10146,23 @@ msgstr "Nid ydych yn dilyn unrhyw un." #: src/components/live/queries.ts:156 msgid "You are now live!" -msgstr "" +msgstr "Rydych chi nawr yn fyw!" #: src/components/verification/VerificationsDialog.tsx:64 msgid "You are verified" -msgstr "" +msgstr "Rydych chi wedi'ch dilysu" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." -msgstr "" +msgstr "Rydych chi wedi'ch dilysu. Byddwch yn colli eich statws dilysu os byddwch yn newid eich enw dangos. <0>Dysgu ragor." #: src/screens/Settings/components/ChangeHandleDialog.tsx:208 msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." -msgstr "" +msgstr "Rydych chi wedi'ch dilysu. Byddwch yn colli eich statws dilysu os byddwch yn newid eich handlen. <0>Dysgu ragor." #: src/screens/Search/modules/ExploreInterestsCard.tsx:45 msgid "You can adjust your interests at any time from \"Content and media\" settings." -msgstr "" +msgstr "Gallwch addasu eich diddordebau ar unrhyw adeg o osodiadau \"Cynnwys a chyfryngau\"." #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 @@ -9441,10 +10173,18 @@ msgstr "Gallwch hefyd ddarganfod Ffrydiau Cyfaddas newydd i'w dilyn." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Gallwch hefyd gau'ch cyfrif dros dro yn lle hynny, a'i ailagor unrhyw bryd." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "Gallwch ddewis os oes gan hysbysiadau sgyrsiau sain yn y gosodiadau sgwrsio o fewn yr ap" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Gallwch barhau â sgyrsiau parhaus beth bynnag yw'r gosodiad rydych chi'n ei ddewis." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "Gallwch nawr ddewis i gael gwybod pan fydd pobl benodol yn postio. Os oes 'na bobl rydych eisiau chi derbyn diweddariadau amser ganddyn nhw, ewch i'w proffil a chwilio am yr eicon cloch wrth eu botwm dilyn." + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,25 +10194,25 @@ msgstr "Gallwch nawr fewngofnodi gyda'ch cyfrinair newydd." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Gallwch ailagor eich cyfrif i barhau i fewngofnodi. Bydd defnyddwyr eraill yn gallu gweld eich proffil a'ch postiadau." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "Gallwch osod gosodiadau rhyngweithio rhagosodedig yn <0>Gosodiadau → Cymedroli → Gosodiadau rhyngweithio." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Gallwch ddiweddaru hwn yn ddiweddarach o'ch gosodiadau." #: src/view/com/profile/ProfileFollowers.tsx:94 msgid "You do not have any followers." -msgstr "Nid oes gennych unrhyw ddilynwyr." +msgstr "Does gennych chi ddim unrhyw ddilynwyr." #: src/screens/Profile/KnownFollowers.tsx:109 msgid "You don't follow any users who follow @{name}." msgstr "Nid ydych yn dilyn unrhyw ddefnyddwyr sy'n dilyn @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "Does gennych chi ddim ceisiadau sgyrsio ar hyn o bryd." @@ -9480,15 +10220,15 @@ msgstr "Does gennych chi ddim ceisiadau sgyrsio ar hyn o bryd." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Nid oes gennych unrhyw godau gwahoddiad eto! Byddwn yn anfon rhai atoch pan fyddwch wedi bod ar Bluesky am ychydig yn hirach." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Nid oes gennych unrhyw ffrydiau wedi'u pinio." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Nid oes gennych unrhyw ffrydiau wedi'u cadw." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Rydych wedi rhwystro'r awdur neu wedi cael eich rhwystro gan yr awdur." @@ -9502,6 +10242,10 @@ msgstr "Rydych wedi rhwystro'r defnyddiwr hwn" msgid "You have blocked this user. You cannot view their content." msgstr "Rydych wedi rhwystro'r defnyddiwr hwn. Allwch chi ddim gweld eu cynnwys." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "Rydych wedi analluogi hysbysiadau ateb, dyfynnu, a chrybwyll, felly ni fydd y tab hwn yn diweddaru. I newid hyn, ewch i'ch <0>gosodiadau hysbysu." + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,13 +10270,13 @@ msgstr "Rydych wedi tewi'r cyfrif hwn." msgid "You have muted this user" msgstr "Rydych wedi tewi'r defnyddiwr hwn" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Does gennych chi ddim sgyrsiau eto. Dechreuwch un!" #: src/view/com/feeds/ProfileFeedgens.tsx:139 msgid "You have no feeds." -msgstr "Nid oes gennych unrhyw ffrydiau." +msgstr "Does gennych chi ddim ddim ffrydiau." #: src/view/com/lists/MyLists.tsx:81 #: src/view/com/lists/ProfileLists.tsx:135 @@ -9541,19 +10285,19 @@ msgstr "Nid oes gennych unrhyw restrau." #: src/view/screens/ModerationBlockedAccounts.tsx:164 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." -msgstr "Nid ydych wedi rhwystro unrhyw gyfrifon eto. I rwystro cyfrif, ewch i'w proffil a dewiswch \"Rhwystro cyfrif\" o'r ddewislen ar eu cyfrif." +msgstr "Dydych chi ddim wedi rhwystro unrhyw gyfrifon eto. I rwystro cyfrif, ewch i'w proffil a dewiswch \"Rhwystro cyfrif\" o'r ddewislen ar eu cyfrif." #: src/view/screens/ModerationMutedAccounts.tsx:179 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." -msgstr "Nid ydych wedi tewi unrhyw gyfrifon eto. I dewi cyfrif, ewch i'w proffil a dewiswch \"Tewi cyfrif\" o'r ddewislen ar eu cyfrif." +msgstr "Dydych chi ddim wedi tewi unrhyw gyfrifon eto. I dewi cyfrif, ewch i'w proffil a dewiswch \"Tewi cyfrif\" o'r ddewislen ar eu cyfrif." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Rydych wedi cyrraedd y diwedd" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:187 msgid "You have successfully verified your email address. You can close this dialog." -msgstr "" +msgstr "Diolch, rydych chi wedi dilysu'ch cyfeiriad e-bost yn llwyddiannus. Gallwch chi gau'r ddeialog hon." #: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." @@ -9561,17 +10305,21 @@ msgstr "Rydych wedi cyrraedd y terfyn ar gyfer llwytho fideo i fyny dros dro. Ce #: src/components/StarterPack/ProfileStarterPacks.tsx:263 msgid "You haven't created a starter pack yet!" -msgstr "Nid ydych wedi creu pecyn cychwyn eto!" +msgstr "Dydych chi ddim wedi creu pecyn cychwyn eto!" #: src/components/dialogs/MutedWords.tsx:398 msgid "You haven't muted any words or tags yet" -msgstr "Nid ydych wedi tewi unrhyw eiriau na thagiau eto" +msgstr "Dydych chi ddim wedi tewi unrhyw eiriau na thagiau eto" #: src/components/moderation/ModerationDetailsDialog.tsx:118 #: src/lib/moderation/useModerationCauseDescription.ts:127 msgid "You hid this reply." msgstr "Rydych wedi cuddio'r ateb hwn." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "Rydych wedi cychwyn y llif hwn yn barod, {0} yn ôl. Gall gymryd hyd at 5 munud i'r e-bost gyrraedd eich blwch derbyn. Ystyriwch aros am ychydig cyn ceisio eto." + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Gallwch apelio yn erbyn labeli sydd ddim yn hunan-labeli os ydych yn teimlo iddyn nhw gael eu gosod ar gam." @@ -9582,7 +10330,7 @@ msgstr "Gallwch apelio yn erbyn y labeli hyn os teimlwch iddyn nhw gael eu gosod #: src/screens/StarterPack/Wizard/State.tsx:76 msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}" -msgstr "" +msgstr "Dim ond hyd at {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} proffil}} cewch chi ychwanegu" #: src/screens/StarterPack/Wizard/State.tsx:95 msgid "You may only add up to 3 feeds" @@ -9592,14 +10340,22 @@ msgstr "Dim ond hyd at 3 ffrwd y gallwch chi eu hychwanegu" msgid "You may only select up to 4 images" msgstr "Dim ond hyd at 4 delwedd y cewch chi eu dewis" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." -msgstr "" +msgstr "Rhaid i chi fod yn 13 oed neu'n hŷn i greu cyfrif." #: src/components/StarterPack/ProfileStarterPacks.tsx:334 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Rhaid i chi fod yn dilyn o leiaf saith o bobl eraill i gynhyrchu pecyn cychwyn." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "Mae'n rhaid i chi gwblhau'r drefn sicrwydd oed cyn cael mynediad ar y gosodiadau isod." + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "Mae'n rhaid i chi gwblhau'r drefn sicrwydd oed er mwyn cael mynediad at y sgrin hon." + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Rhaid i chi ganiatáu mynediad i'ch llyfrgell ffotograffau i gadw cod QR" @@ -9608,36 +10364,45 @@ msgstr "Rhaid i chi ganiatáu mynediad i'ch llyfrgell ffotograffau i gadw cod QR msgid "You must select at least one labeler for a report" msgstr "Rhaid i chi ddewis o leiaf un labelwr ar gyfer adroddiad" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "Rhaid i chi fewngofnodi i weld y postiad hwn." + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." -msgstr "" +msgstr "Mae angen i chi ddilysu'ch cyfeiriad e-bost cyn y gallwch alluogi 2FA e-bost." #: src/screens/Deactivated.tsx:128 msgid "You previously deactivated @{0}." msgstr "Rydych wedi cau @{0} yn flaenorol." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." -msgstr "" +msgstr "Mae'n debyg eich bod chi eisiau ailgychwyn yr ap nawr." #: src/components/dms/MessageItem.tsx:135 msgid "You reacted {0}" -msgstr "" +msgstr "Eich ymateb yw {0}" #: src/screens/Messages/components/ChatListItem.tsx:218 msgid "You reacted {0} to {1}" -msgstr "" +msgstr "Eich ymateb i {0} yw {1}" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Byddwch yn cael eich allgofnodi o'ch holl gyfrifon." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "Byddwch chi ddim yn derbyn hysbysiad gan {0} eto" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Fyddwch chi ddim yn derbyn hysbysiadau ar gyfer y trywydd hwn bellach" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Byddwch nawr yn derbyn hysbysiadau ar gyfer yr edefyn hwn" @@ -9657,11 +10422,11 @@ msgstr "Chi: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Chi: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Byddwch yn dilyn y defnyddwyr a'r ffrwd sy'n cael ei awgrymu ar ôl i chi orffen creu eich cyfrif!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Byddwch yn dilyn y defnyddwyr sy'n cael ei awgrymu ar ôl i chi orffen creu'ch cyfrif!" @@ -9673,9 +10438,9 @@ msgstr "Byddwch yn dilyn y bobl hyn a {0} arall" msgid "You'll follow these people right away" msgstr "Byddwch yn dilyn y bobl hyn ar unwaith" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Byddwch yn derbyn e-bost yn <0>{0} i wirio mai chi sydd yno." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "Byddwch chi'n cychwyn derbyn hysbysiadau gan {0}!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,27 +10468,35 @@ msgstr "Rydych wedi dewis cuddio gair neu dag o fewn y postiad hwn." msgid "You've found some people to follow" msgstr "Rydych wedi dod o hyd i rai pobl i'w dilyn" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Rydych wedi cyrraedd diwedd eich ffrwd! Dewch o hyd i ragor o gyfrifon i'w dilyn." #: src/lib/hooks/useCleanError.ts:58 msgid "You've reached the maximum number of requests allowed. Please try again later." +msgstr "Rydych chi wedi cyrraedd y nifer uchaf o geisiadau sy'n cael eu caniatáu. Rhowch gynnig arall arni yn nes ymlaen." + +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:421 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Rydych wedi cyrraedd terfyn dyddiol llwytho fideos i fyny (gormod o feitiau)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Rydych wedi cyrraedd terfyn dyddiol llwytho fideos i fyny (gormod o fideos)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Rydych wedi rhedeg allan o fideos i'w gwylio. Efallai ei fod yn amser da i gael newid bach?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Eich cyfrif" @@ -9735,7 +10508,7 @@ msgstr "Mae eich cyfrif wedi'i ddileu" msgid "Your account has been suspended" msgstr "Mae eich cyfrif wedi'i atal" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Nid yw eich cyfrif yn ddigon hen eto i lwytho fideos i fyny. Ceisiwch eto yn nes ymlaen." @@ -9751,11 +10524,11 @@ msgstr "Cafwyd bod eich cyfrif yn groes i <0>Delerau Gwasanaeth Cymdeithasol Blu msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "Mae eich apêl wedi'i chyflwyno. Os bydd eich apêl yn llwyddo, byddwch yn derbyn e-bost." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Eich dyddiad geni" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Nid yw eich porwr yn cefnogi'r fformat fideo. Rhowch gynnig ar borwr gwahanol." @@ -9765,36 +10538,34 @@ msgstr "Mae eich sgyrsiau wedi'u hanalluogi" #: src/components/dialogs/InAppBrowserConsent.tsx:69 msgid "Your choice will be remembered for future links. You can change it at any time in settings." -msgstr "" +msgstr "Bydd eich dewis yn cael ei gofio ar gyfer dolenni yn y dyfodol. Gallwch ei newid ar unrhyw adeg yn y gosodiadau." #: src/screens/Settings/components/ChangeHandleDialog.tsx:513 msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Bydd eich enw dangos presennol <0>{0} yn cael ei gadw'n awtomatig i chi. Gallwch newid yn ôl iddo unrhyw bryd o'r cyfrif hwn." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "Eich e-bost" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Mae'n ymddangos bod eich e-bost yn annilys." #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65 msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Nid yw eich e-bost wedi'i wirio eto. Mae hwn yn gam diogelwch pwysig yr ydym yn ei argymell." +msgstr "Dyw eich e-bost heb ei ddilysu eto. Dilyswch eich e-bost er mwyn mwynhau holl nodweddion Bluesky." #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "Eich hoffi cyntaf!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "Eich dilynwyr" @@ -9806,26 +10577,22 @@ msgstr "Mae'r ffrwd ganlynol yn wag! Dilynwch ragor ddefnyddwyr i weld beth sy'n msgid "Your full handle will be <0>@{0}" msgstr "Eich enw dangos llawn fydd <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "Eich enw defnyddiwr llawn fydd <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" -msgstr "" +msgstr "Eich diddordebau" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" -msgstr "" +msgstr "Mae eich diddordebau wedi'u diweddaru!" #: src/screens/Search/modules/ExploreInterestsCard.tsx:94 msgid "Your interests help us find what you like!" -msgstr "" +msgstr "Mae eich diddordebau yn ein helpu ni i ddod o hyd i'r hyn rydych chi'n ei hoffi!" #: src/components/dialogs/MutedWords.tsx:369 msgid "Your muted words" @@ -9835,15 +10602,15 @@ msgstr "Eich geiriau wedi'u tewi" msgid "Your password has been changed successfully!" msgstr "Mae eich cyfrinair wedi ei newid yn llwyddiannus!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "Rhaid i'ch cyfrinair fod o leiaf 8 nod." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Mae eich postiad wedi'i gyhoeddi" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Mae eich postiadau wedi'u cyhoeddi" @@ -9851,15 +10618,19 @@ msgstr "Mae eich postiadau wedi'u cyhoeddi" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Mae eich postiadau, eich hoff bethau a'ch rhwystrau yn gyhoeddus. Mae tewi'n breifat." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "Eich dewis iaith" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Ni fydd eich proffil, postiadau, ffrydiau a rhestrau bellach yn weladwy i ddefnyddwyr Bluesky eraill. Gallwch ail agor eich cyfrif unrhyw bryd trwy fewngofnodi." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Mae eich ateb wedi'i gyhoeddi" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "Bydd eich adroddiad yn cael ei anfon at <0>{0}." @@ -9867,10 +10638,10 @@ msgstr "Bydd eich adroddiad yn cael ei anfon at <0>{0}." msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Bydd eich adroddiad yn cael ei anfon at Wasanaeth Cymedroli Bluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." -msgstr "" +msgstr "Mae'r diddordebau rydych wedi'u dewis yn ein helpu i ddarparu cynnwys sy'n bwysig i chi." #: src/components/verification/VerificationsDialog.tsx:65 msgid "Your verifications" -msgstr "" +msgstr "Eich dilysiadau" diff --git a/src/locale/locales/da/messages.po b/src/locale/locales/da/messages.po index b4cae76cf8..0be5fd4727 100644 --- a/src/locale/locales/da/messages.po +++ b/src/locale/locales/da/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: da\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: Danish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,7 +27,7 @@ msgstr "(aktiv)" msgid "(contains embedded content)" msgstr "(indeholder indlejret indhold)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(ingen e-mail)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# deling} other {# delinger}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# sekund} other {# sekunder}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# ulæst besked} other {# ulæste beskeder}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {# ulæst besked} other {# ulæste beskeder}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {#md} other {#mdr}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {følger} other {følgere}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {følger} other {følger}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {like} other {likes}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {like} other {likes}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {opslag} other {opslag}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {citat} other {citater}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {deling} other {delinger}}" @@ -135,19 +138,27 @@ msgstr "{0} <0>i <1>tags" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>i <1>tekst og tags" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} følger" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" -msgstr "" +msgstr "{0} er live" #: src/components/live/queries.ts:39 msgid "{0} is not a valid URL" msgstr "{0} er ikke en gyldig URL" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} er oprettet i denne uge" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} af {1}" @@ -164,8 +175,16 @@ msgstr "{0} reagerede med {1}" msgid "{0} reacted {1} to {2}" msgstr "{0} reagerede med {1} på {2}" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0}, et feed af {1}, liket af {2}" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0}, en liste af {1}" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "{0}s avatar" @@ -197,12 +216,12 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}s" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# ulæst besked} other {# ulæste beskeder}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "displayName}s Starter Pack" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {time} other {timer}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minut} other {minutter}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} fulgte dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} likede dit specialbyggede feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} likede dit opslag" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" +msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} likede din videredeling" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} fjernede deres verifikationer fra din konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} videredelte dit opslag" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} videredelte din videredeling" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} tilmeldte sig via din startpakke" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} verificerede dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} fulgte dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} fulgte dig tilbage" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} likede dit specialbyggede feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} likede dit opslag" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" -msgstr "" +msgstr "{firstAuthorLink} likede din videredeling" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} fjernede sin verifikation fra din konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} videredelte dit opslag" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" -msgstr "" +msgstr "{firstAuthorLink} videredelte din videredeling" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} oprettede sig via din startpakke" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} verificerede dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} fulgte dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} likede dit specialbyggede feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} likede dit opslag" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" +msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} likede din videredeling" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} fjernede deres verifikationer fra din konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} videredelte dit opslag" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} videredelte din videredeling" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} oprettede sig med din startpakke" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} verificerede dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} fulgte dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} fulgte dig tilbage" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} likede dit specialbyggede feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} likede dit opslag" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" -msgstr "" +msgstr "{firstAuthorName} likede din videredeling" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} fjernede sin verifikation fra din konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} videredelte dit opslag" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" -msgstr "" +msgstr "{firstAuthorName} videredelte din videredeling" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} oprettede sig via din startpakke" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} verificerede dig" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} følger" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "{handle} kan ikke modtage beskeder" @@ -392,7 +410,7 @@ msgstr "{joinedAllTimeCount, plural, one {}other {# brugere}} har oprettet sig!" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "{minutes, plural, one {# minut} other {# minutter}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# ulæst besked} other {# ulæste beskeder}}" @@ -432,12 +450,12 @@ msgstr "{userName}s verifikationer" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} og {2, plural, one {# anden} other {# andre}} er med i din startpakke" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} og {2, plural, one {# anden} other {# andre}} er med i din startpakke" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {følger} other {følgere}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {følger} other {følger}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} og<1> <2>{1} er med i din startpakke" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} er med i din startpakke" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} medlemmer" @@ -466,11 +484,11 @@ msgstr "<0>{0} medlemmer" msgid "<0>{date} at {time}" msgstr "<0>{date} kl. {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Eksperimentelt: Når denne indstilling er aktiveret, vil du kun modtage notifikationer om svar og citater fra brugere, du følger. Vi arbejder på at tilføje flere indstillingsmuligheder." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<0>Log ind<1> eller <2>opret en konto<3> <4>for at søge efter nyheder, sport, politik og alt andet, der sker på Bluesky." -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Du og<1> <2>{0} er med i din startparkke" @@ -503,10 +521,14 @@ msgstr "en besked" msgid "A new form of verification" msgstr "En ny form for verifikation" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "Et screenshot af en profilside med et klokkeikon ved siden af Følg-knappen, som illustrerer den nye notifikationsfunktion." + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Om" @@ -524,25 +546,25 @@ msgstr "Accepter chatanmodning" msgid "Accept Request" msgstr "Accepter anmodning" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Tilgængelighed" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Tilgængelighedsindstillinger" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Konto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Konto fulgt" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Konto skjult" msgid "Account Muted by List" msgstr "Konto skjult af liste" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Kontoindstillinger" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Konto fjernet fra kvikadgang" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Konto følges ikke længere" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Konto skjules ikke længere" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Konti med et amøbeformet blåt flueben <0><1/> kan verificere andre. De autoriserede verifikatorer er udvalgt af Bluesky." +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "Aktivitet fra andre" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "Aktivitetsnotifikationer" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Tilføj" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Tilføj {0} mere for at fortsætte" @@ -619,7 +651,7 @@ msgstr "Tilføj en indholdsadvarsel" #: src/components/live/GoLiveDialog.tsx:101 msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event." -msgstr "" +msgstr "Tilføj en midlertidigt livetilstand til din profil. Når nogen klikker på dit profilbillede, vil de få informationer om dine livebegivenhed." #: src/view/screens/ProfileList.tsx:924 #: src/view/screens/ProfileList.tsx:942 @@ -634,8 +666,8 @@ msgstr "Tilføj konto" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Tilføj alt-tekst" msgid "Add alt text (optional)" msgstr "Tilføj alt-tekst (valgfrit)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Tilføj endnu en konto" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Tilføj endnu et opslag" @@ -670,8 +702,8 @@ msgstr "Tilføj appadgangskode" msgid "Add emoji reaction" msgstr "Tilføj emojireaktion" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Tilføj yderligere oplysninger (valgfrit)" @@ -683,7 +715,7 @@ msgstr "Tilføj skjult ord med de angivne indstillinger" msgid "Add muted words and tags" msgstr "Tilføj skjulte ord og tags" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Tilføj nyt opslag" @@ -704,7 +736,7 @@ msgstr "Tilføj reaktion" msgid "Add recommended feeds" msgstr "Tilføj anbefalede feeds" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Føj nogle feeds til din startpakke!" @@ -725,10 +757,6 @@ msgstr "Føj dette feed til dine feeds" msgid "Add to lists" msgstr "Føj til lister" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Føj til mine feeds" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "Tilføj bruger til liste" @@ -738,11 +766,11 @@ msgstr "Tilføj bruger til liste" msgid "Added to list" msgstr "Tilføjet liste" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Tilføjet mine feeds" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "Yderligere oplysninger (maks. 1000 tegn)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Yderligere oplysninger (højst 300 tegn)" @@ -750,18 +778,18 @@ msgstr "Yderligere oplysninger (højst 300 tegn)" msgid "Adult" msgstr "Porno" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Porno" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Voksenindhold kan kun slås til via browserudgaven af <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Voksenindhold er deaktiveret" @@ -770,16 +798,32 @@ msgstr "Voksenindhold er deaktiveret" msgid "Adult Content labels" msgstr "Voksenindholdsmærkater" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Avanceret" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "Alderstjek" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "Anmodning om alderstjek fejlede, prøv igen." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "Anmodning om alderstjek" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "Alderstjek tager kun et øjeblik" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "mette@eksempel.dk" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Alle" @@ -793,7 +837,7 @@ msgstr "Alle konti blev fulgt!" msgid "All languages" msgstr "Alle sprog" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Alle dine gemte feeds samlet på ét sted." @@ -802,16 +846,21 @@ msgstr "Alle dine gemte feeds samlet på ét sted." msgid "Allow access to your direct messages" msgstr "Tillad adgang til dine direkte beskeder" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Tillad nye beskeder fra" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "Tillad andre at blive notificeret om dine opslag" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Tillad citatopslag" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Tillad svar fra:" @@ -828,13 +877,13 @@ msgstr "Har du allerede modtaget en bekræftelseskode?" msgid "Already signed in as @{0}" msgstr "Allerede logget ind som @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "Alt-tekst" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Alt-tekst" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Alt-tekst beskriver billeder for blinde og svagtseende brugere og bidrager med kontekst til glæde for alle." @@ -861,27 +910,19 @@ msgstr "Alt-tekst vil blive afkortet. {MAX_ALT_TEXT, plural, one {}other {Græns msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "En e-mail er sendt til {0}. Den indeholder en bekræftelseskode, som du skal indtaste herunder." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "En e-mail er afsendt til din tidligere adresse, {currentEmail}. Den indeholder en bekræftelseskode, som du skal indtaste herunder." - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "En e-mail blev sendt! Indtast bekræftelseskoden fra e-mailen herunder." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Der opstod en fejl" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Der opstod en fejl" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Der opstod en fejl under komprimering af videoen." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "Der opstod en fejl under indlæsning af feedet." @@ -889,11 +930,11 @@ msgstr "Der opstod en fejl under indlæsning af feedet." msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Der opstod en fejl under generering af din startpakke. Vil du prøve igen?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Der opstod en fejl under indlæsning af videoen. Prøv igen senere." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Der opstod en fejl under indlæsning af videoen. Prøv igen senere." @@ -910,7 +951,7 @@ msgstr "Der opstod en fejl ved valg af video" msgid "An error occurred while trying to follow all" msgstr "Der opstod en fejl, da du forsøgte at følge alle" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Der opstod en fejl under upload af videoen." @@ -934,8 +975,8 @@ msgstr "Der opstod en fejl ved åbning af chatten" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "der opstod en ukendt fejl" msgid "an unknown labeler" msgstr "en ukendt mærkningstjeneste" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "og" @@ -963,10 +1004,14 @@ msgstr "og" msgid "Animals" msgstr "Dyr" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "Animeret GIF" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "Bluesky introducerer verificerede konti" @@ -980,7 +1025,13 @@ msgstr "Asocial adfærd" msgid "Anybody can interact" msgstr "Alle kan interagere" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "Alle, som følger mig" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "Navne på appadgangskoder kan indeholder bogstaver, tal, mellemrum binde msgid "App password names must be at least 4 characters long" msgstr "Navne på appadgangskoder skal bestå af mindst 4 tegn" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Appadgangskoder" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Appadgangskoder" @@ -1053,10 +1104,10 @@ msgstr "Klag over suspendering" msgid "Appeal this decision" msgstr "Klag over afgørelse" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Udseende" @@ -1065,12 +1116,20 @@ msgstr "Udseende" msgid "Apply default recommended feeds" msgstr "Brug anbefalede standardfeeds" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Arkiveret fra {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Arkiveret opslag" @@ -1078,7 +1137,7 @@ msgstr "Arkiveret opslag" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Er du sikker på, du vil slette appadgangskoden \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Er du sikker på, du vil slette denne besked? Beskeden vil blive slettet hos dig men ikke hos modparten." @@ -1098,19 +1157,15 @@ msgstr "Er du sikker på, at du vil forlade denne samtale?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Er du sikker på, du vil forlade denne samtale? Dine beskeder vil blive slettet hos dig men ikke hos modparten." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Er du sikker på, du vil fjerne {0} fra dine feeds?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Er du sikker på, du vil fjerne dette feed fra dine feeds?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Er du sikker på, du vil kassere dette udkast?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Er du sikker på, du vil kassere dette opslag?" @@ -1131,29 +1186,26 @@ msgstr "Kunst" msgid "Artistic or non-erotic nudity." msgstr "Kunstnerisk og ikkeerotisk nøgenhed." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Mindst 3 tegn" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Nordlys" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Indstillinger for automatisk afspilning er flyttet til <0>indholds- og medieindstillingerne." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Afspil videoer og GIF'er automatisk" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Afspil videoer og GIF'er automatisk" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Tilbage" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Tilbage til Chats" @@ -1184,7 +1236,7 @@ msgstr "Før du opretter en liste, skal du bekræfte din e-mail." #: src/lib/hooks/useOpenComposer.tsx:14 msgid "Before creating a post or replying, you must first verify your email." -msgstr "" +msgstr "Før du opretter eller besvarer et opslag, skal du bekræfte din e-mail." #: src/components/StarterPack/ProfileStarterPacks.tsx:235 #: src/components/StarterPack/ProfileStarterPacks.tsx:245 @@ -1193,30 +1245,46 @@ msgstr "Før du opretter en startpakke, skal du bekræfte din e-mail." #: src/screens/Messages/components/RequestButtons.tsx:235 msgid "Before you can accept this chat request, you must first verify your email." -msgstr "" +msgstr "Før du kan acceptere denne chatanmodning, skal du først bekræfte din e-mail." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "Før du kan modtage notifikationer om opslag fra {name}, skal du først bekræfte din e-mail." #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." -msgstr "" +msgstr "Før du kan sende beskeder til andre brugere, skal du bekræfte din e-mail." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "Start" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "Start alderstjek" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "Begynd alderstjek ved at udfylde felterne herunder." #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Fødselsdato" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Bloker" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Bloker" msgid "Block account" msgstr "Bloker konto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Bloker konto?" @@ -1262,20 +1330,20 @@ msgstr "Bloker bruger" msgid "Block User" msgstr "Bloker bruger" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Blokeret" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Blokerede konti" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Blokerede konti" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blokerede konti kan ikke svare i dine tråde, omtale dig eller på anden måde interagere med dig." @@ -1284,11 +1352,11 @@ msgstr "Blokerede konti kan ikke svare i dine tråde, omtale dig eller på anden msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Blokerede konti kan ikke svare i dine tråde, omtale dig eller på anden måde interagere med dig. Du vil ikke se deres indhold, og de vil ikke se dit." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Blokeret opslag." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blokering forhindrer ikke denne mærkningstjeneste fra at sætte mærkater på din konto." @@ -1309,11 +1377,12 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kan ikke bekræfte den anførte datos gyldighed." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1347,6 +1416,14 @@ msgstr "Bluesky vil ikke vise din profil og dine opslag til udloggede brugere." msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky vil løbende verificere populære konti." +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Slør billeder og filtrer fra feeds" msgid "Books" msgstr "Bøger" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Se flere konti under Udforsk" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Se flere feeds under Udforsk" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Se flere forslag" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Se flere forslag under Udforsk" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Om Bluesky" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Af {0}" @@ -1428,15 +1502,23 @@ msgstr "Af {0}" msgid "By <0>{0}" msgstr "Af <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "Ved at fortsætte accepterer du <0>KWS' brugsbetingelser og anerkender, at KWS gemmer din verificerede status med din hashede e-mailadresse i overensstemmelse med <1>KWS' privatlivspolitik. Det betyder, at du ikke behøver at bekræfte igen, næste gang du bruger denne e-mail til andre apps, spil og tjenester, der drives af KWS' teknologi." + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Ved at oprette en konto accepterer du <0>privatlivspolitikken." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Ved at oprette en konto accepterer du <0>tjenestevilkårene og <1>privatlivspolitikken." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Ved at oprette en konto accepterer du <0>tjenestevilkårene." @@ -1448,14 +1530,17 @@ msgstr "Af dig" msgid "Camera" msgstr "Kamera" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Kamera" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Annuller" @@ -1500,11 +1582,7 @@ msgstr "Annuller kontosletning" msgid "Cancel image crop" msgstr "Annuller billedbeskæring" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Annuller profilredigering" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Annuller citatopslag" @@ -1516,14 +1594,10 @@ msgstr "Annuller genaktivering og log ud" msgid "Cancel search" msgstr "Annuller søgning" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Annullerer åbning af det linkede website" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Kan ikke interagere med en blokeret bruger" @@ -1551,19 +1625,14 @@ msgstr "Skift appikon til \"{0}\"" #: src/components/AppLanguageDropdown.tsx:40 msgid "Change app language" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Skift e-mailadresse" +msgstr "Vælg appsprog" #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Skift handle" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Skift moderationstjeneste" @@ -1579,14 +1648,6 @@ msgstr "Skift opslagets sprog til {suggestedLanguageName}" msgid "Change report reason" msgstr "Skift årsag til anmeldelse" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Skift din e-mail" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Skift din e-mailadresse" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Skifter appikon" @@ -1596,10 +1657,15 @@ msgstr "Skifter appikon" msgid "Changes hosting provider" msgstr "Skifter udbyder" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "Ændringer blev gemt" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Chat" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Chat slettet" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "Chatbeskeder – lydløs" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "Chatbeskeder – med lyd" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Chat skjult" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "Indbakke for chatanmodninger" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Chatanmodninger" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Chatindstillinger" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Chatindstillinger" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat ikke længere skjult" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Chats" @@ -1661,7 +1738,7 @@ msgstr "Tjek din indbakke for en e-mail med en bekræftelseskode og indtast den msgid "Choose domain verification method" msgstr "Vælg metode til domæneverifikation" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Vælg feeds" @@ -1669,7 +1746,7 @@ msgstr "Vælg feeds" msgid "Choose for me" msgstr "Vælg for mig" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Vælg konti" @@ -1685,23 +1762,23 @@ msgstr "Vælg farve til din avatar" msgid "Choose your account provider" msgstr "Vælg din udbyder" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Vælg din egen tidslinje! Specialbyggede feeds skabt af andre brugere hjælper dig med at finde indhold, du vil synes om." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Husk din adgangskode" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Vælg dit brugernavn" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Slet alle gemte oplysninger" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Slet alle gemte oplysninger (genstart efter dette)" @@ -1714,23 +1791,27 @@ msgstr "Tøm billedcache" msgid "Clear search query" msgstr "Ryd søgefelt" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "Klik for information" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "klik her" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." -msgstr "" +msgstr "Klik her for at starte bekræftelsesprocessen forfra." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" -msgstr "" +msgstr "Klik her for at opdatere din e-mail" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Klik for at spærre for citater af dette opslag." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Klik for et tillade citater af dette opslag." @@ -1750,14 +1831,16 @@ msgstr "Klima" msgid "Clip 🐴 clop 🐴" msgstr "Hyp 🐴 hyp 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Hyp 🐴 hyp 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Luk" @@ -1789,13 +1876,15 @@ msgstr "Luk advarsel" msgid "Close bottom drawer" msgstr "Luk bundpanel" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Luk dialog" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Luk navigation" @@ -1804,7 +1893,7 @@ msgstr "Luk navigation" msgid "Close emoji picker" msgstr "Luk emojivælger" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Luk GIF-dialog" @@ -1822,7 +1911,7 @@ msgstr "Luk billedviser" msgid "Close menu" msgstr "Luk menu" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Luk dialog" @@ -1830,7 +1919,7 @@ msgstr "Luk dialog" msgid "Closes password update alert" msgstr "Lukker besked om opdatering af adganskode" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "Lukker skrivefelt og kasserer udkast til opslag" @@ -1843,16 +1932,16 @@ msgstr "Lukker emojivælgeren" msgid "Closes viewer for header image" msgstr "Lukker billedviser for profilhoved" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Luk brugerliste" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Lukker liste over brugere for en given notifikation" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Farvetilstand" @@ -1870,7 +1959,8 @@ msgstr "Komik" msgid "Comics" msgstr "Tegneserier" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Fælleskabsregler" @@ -1879,38 +1969,34 @@ msgstr "Fælleskabsregler" msgid "Complete onboarding and start using your account" msgstr "Afslut velkomst og kom i gang med at bruge din konto" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Løs opgaven" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Skriv nyt opslag" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Skriv opslag på op til {0, plural, one {}other {# tegn}}" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Skriv svar" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Komprimerer video..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Konfigurer filtreringsindstillinger for kategorien: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Konfigureres i <0>moderationsindstillinger" -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Bekræft sprogindstillinger" msgid "Confirm delete account" msgstr "Bekræft kontosletning" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Bekræft din alder:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Bekræft din fødselsdato" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Bekræft din fødselsdato" msgid "Confirmation code" msgstr "Bekræftelseskode" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Bekræftelseskode" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Forbinder..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "Forbindelsesfejl" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "Kontakt vores moderatorteam" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Kontakt support" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "Kontakt os" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Indhold og medier" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Indhold og medier" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Indhold og medier" @@ -1977,7 +2069,8 @@ msgstr "Indhold og medier" msgid "Content Blocked" msgstr "Indhold blokeret" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Indholdsfiltre" @@ -2006,10 +2099,12 @@ msgstr "Indholdsadvarsel" msgid "Content warnings" msgstr "Indholdsadvarsel" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Baggrund for kontekstmenu, klik for at lukke menuen." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Fortsæt" msgid "Continue as {0} (currently signed in)" msgstr "Fortsæt som {0} (allerede logget ind)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "Fortsæt tråd" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Fortsæt tråd..." @@ -2029,6 +2129,10 @@ msgstr "Fortsæt tråd..." msgid "Continue to next step" msgstr "Fortsæt til næste trin" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "Samtale" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Kopieret" msgid "Copied build version to clipboard" msgstr "Kopieret versionsnummer til udklipsholder" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Kopierer versionsnummer til udklipsholder" msgid "Copy" msgstr "Kopier" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Kopier appadgangskode" @@ -2087,8 +2187,8 @@ msgstr "Kopier appadgangskode" msgid "Copy at:// URI" msgstr "Kopier at://-URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Kopier forfatter-DID" @@ -2120,34 +2220,34 @@ msgstr "Kopier link" msgid "Copy link to list" msgstr "Kopier link til liste" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Kopier link til opslag" #: src/view/com/profile/ProfileMenu.tsx:243 #: src/view/com/profile/ProfileMenu.tsx:254 msgid "Copy link to profile" -msgstr "" +msgstr "Kopier link til profil" #: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Copy link to starter pack" -msgstr "" +msgstr "Kopier link til startpakke" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Kopier beskedtekst" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Kopier opslagets at://-URI" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Kopier opslagets tekst" @@ -2159,11 +2259,25 @@ msgstr "Kopier QR-kode" msgid "Copy TXT record value" msgstr "Kopier TXT-record" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Ophavsretspolitik" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "Kunne ikke forbinde til tilpasset feed" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "Kunne ikke forbinde til feedtjeneste" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "Kunne ikke finde profil" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "Kunne ikke skjule chat" msgid "Could not process your video" msgstr "Kunne ikke behandle din video" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "Kunne ikke gemme ændringer: {0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "Kunne ikke opdatere notifikationsindstillinger" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Opret" @@ -2195,7 +2317,7 @@ msgstr "Opret en QR-kode til en startpakke" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Opret en startpakke" @@ -2205,21 +2327,22 @@ msgstr "Opret en startpakke for mig" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Opret konto" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Opret konto" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Opret en konto" @@ -2241,7 +2364,7 @@ msgstr "Opret endnu en" msgid "Create new account" msgstr "Opret ny konto" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Opret anmeldelse for {0}" @@ -2268,7 +2391,7 @@ msgstr "Tilpasset" msgid "Customization options" msgstr "Tilpasningsindstillinger" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Tilpas, hvem der kan interagere med dette opslag." @@ -2278,12 +2401,12 @@ msgstr "Tilpas din Bluesky-oplevelse" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Mørk" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Mørk" @@ -2292,21 +2415,21 @@ msgstr "Mørk" msgid "Dark mode" msgstr "Mørk tilstand" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Mørk tilstand" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Fødselsdato" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Deaktiver konto" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Fejlsøg moderation" @@ -2314,7 +2437,7 @@ msgstr "Fejlsøg moderation" msgid "Debug panel" msgstr "Fejlsøgningspanel" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Standard" @@ -2322,8 +2445,8 @@ msgstr "Standard" msgid "Default icons" msgstr "Standardikoner" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Standardikoner" msgid "Delete" msgstr "Slet" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Slet konto" @@ -2355,7 +2478,7 @@ msgstr "Slet appadgangskode?" msgid "Delete chat" msgstr "Slet chat" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Slet chatdeklarationsregistrering" @@ -2370,7 +2493,7 @@ msgstr "Slet samtale" msgid "Delete Conversation" msgstr "Slet samtale" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Slet for mig" @@ -2378,11 +2501,11 @@ msgstr "Slet for mig" msgid "Delete list" msgstr "Slet liste" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Slet besked" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Slet besked for mig" @@ -2390,9 +2513,9 @@ msgstr "Slet besked for mig" msgid "Delete my account" msgstr "Slet min konto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Slet opslag" @@ -2409,11 +2532,11 @@ msgstr "Slet startpakke?" msgid "Delete this list?" msgstr "Slet denne liste?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Slet dette opslag?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Slettet" @@ -2422,15 +2545,20 @@ msgstr "Slettet" msgid "Deleted Account" msgstr "Slettet konto" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "Slettet liste" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Slettet opslag." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Beskrivelse" @@ -2447,12 +2575,12 @@ msgstr "Beskrivelse er for lang. {DESCRIPTION_MAX_GRAPHEMES, plural, one {}other msgid "Descriptive alt text" msgstr "Beskrivende alt-tekst" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Afkobl citat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Afkobl citeret opslag?" @@ -2466,53 +2594,53 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Udviklertilstand aktiveret" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Udviklingerindstillinger" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Dialog: Tilpas, hvem der kan interagere med dette opslag." -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Dæmpet" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242 msgid "Disable 2FA" -msgstr "" +msgstr "Deaktiver 2FA" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157 msgid "Disable email 2FA" -msgstr "" +msgstr "Deaktiver 2FA via e-mail" #: src/screens/Settings/components/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "Deaktiver tofaktorgodkendelse via e-mail" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Deaktiver haptisk feedback" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Deaktiver undertekster" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Deaktiveret" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Kasser" @@ -2520,11 +2648,11 @@ msgstr "Kasser" msgid "Discard changes?" msgstr "Deaktiver ændringer?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Kasser udkast?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Kasser opslag?" @@ -2542,7 +2670,7 @@ msgstr "Opdag feeds" msgid "Discover new custom feeds" msgstr "Find nye specialbyggede feeds" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Find nye feeds" @@ -2550,7 +2678,7 @@ msgstr "Find nye feeds" msgid "Dismiss" msgstr "Luk" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Luk fejlbesked" @@ -2562,26 +2690,26 @@ msgstr "Luk velkomstforløb" msgid "Dismiss interests" msgstr "Luk interesser" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Luk denne sektion" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Vis større alt-tekst-etiketter" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Profilnavn" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Profilnavn" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Profilnavn er for langt" @@ -2603,21 +2731,26 @@ msgstr "Anvend ikke dette skjulte ord på brugere, du følger" msgid "Does not include nudity." msgstr "Omfatter ikke nøgenhed." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Begynder eller slutter ikke med en bindestreg" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Domæne godkendt!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." -msgstr "" +msgstr "Har du ingen kode, eller har du brug for en ny? <0>Klik her." #: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37 msgid "Don't see an email? <0>Click here to resend." -msgstr "" +msgstr "Har du ikke modtaget nogen e-mail? <0>Klik her for at sende en ny." + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "Vis ikke igen" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "Bare rolig! Alle eksisterende beskeder og indstillinger er gemt og vi blive tilgængelige, når du har bekræftet, at du er voksen." #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 @@ -2660,7 +2793,7 @@ msgstr "Tryk dobbelt eller langt på beskeden for at tilføje en reaktion" msgid "Double tap to close the dialog" msgstr "Tryk dobbelt for at lukke dialogen" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Tryk dobbelt for at like" @@ -2673,7 +2806,7 @@ msgstr "Download Bluesky" msgid "Download CAR file" msgstr "Download CAR-fil" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Slip for at tilføje billeder" @@ -2689,18 +2822,10 @@ msgstr "fx anne" msgid "e.g. Alice Lastname" msgstr "fx Anne Efternavn" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "fx Anne Nielsen" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "fx anne.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "fx Kunstner, hundeelsker og flittig læser." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Fx kunstneriske nøgenbilleder." @@ -2725,10 +2850,11 @@ msgstr "fx Brugere, der laver for mange reklameopslag." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Hver kode virker én gang. Du vil jævnligt blive tildelt flere invitationskoder." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Rediger" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Rediger" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Rediger avatar" @@ -2749,12 +2875,12 @@ msgstr "Rediger feeds" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Rediger billede" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Rediger interaktionsindstillinger" @@ -2770,39 +2896,39 @@ msgstr "Rediger listeegenskaber" #: src/view/com/profile/ProfileMenu.tsx:317 #: src/view/com/profile/ProfileMenu.tsx:323 msgid "Edit live status" -msgstr "" +msgstr "Rediger livetilstand" #: src/view/com/modals/CreateOrEditList.tsx:228 msgid "Edit Moderation List" msgstr "Rediger modereringsliste" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Rediger mine feeds" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Rediger min profil" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "Rediger notifikationer fra {0}" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Rediger personer" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Rediger interaktionsindstillinger" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Rediger profil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Rediger profil" @@ -2814,19 +2940,11 @@ msgstr "Rediger startpakke" msgid "Edit User List" msgstr "Rediger brugerliste" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Rediger, hvem der kan svare" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Rediger dit profilnavn" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Rediger din profils beskrivelse" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Rediger din startpakke" @@ -2839,8 +2957,8 @@ msgstr "Uddannelse" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "Enten har listens skaber blokeret dig, eller også har du blokeret listens skaber." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "E-mail" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "2FA via e-mail deaktiveret" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "2FA via e-mail aktiveret" @@ -2863,15 +2981,11 @@ msgstr "E-mail gensendt" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:208 msgid "Email sent!" -msgstr "" - -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "E-mail opdateret!" +msgstr "E-mail afsendt!" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" -msgstr "" +msgstr "E-mailbekræftelse er fuldført!" #: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" @@ -2883,8 +2997,8 @@ msgstr "HTML-kode til indlejring" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Indlejr opslag" @@ -2892,7 +3006,7 @@ msgstr "Indlejr opslag" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Indlejr dette opslag på dit website. Kopier blot følgende kodestump og indsæt den i HTML-koden på dit website." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Indlejret videoafspiller" @@ -2906,29 +3020,33 @@ msgstr "Aktiver" msgid "Enable {0} only" msgstr "Aktiver kun {0}" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Aktiver voksenindhold" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92 msgid "Enable email 2FA" -msgstr "" +msgstr "Aktiver 2FA via e-mail" #: src/components/dialogs/EmbedConsent.tsx:81 #: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "Aktiver eksterne medier" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Aktiver medieafspillere for" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Aktiver prioriterede notifikationer" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "Aktiver notifikationer for en konto ved at besøge dens profil og trykke på <0>klokkeikonet <1/>." -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "Aktiver push-notifikationer" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Aktiver undertekster" @@ -2941,17 +3059,14 @@ msgstr "Aktiver kun denne kilde" msgid "Enable trending topics" msgstr "Aktiver populære emner" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Aktiver populære videoer i dit Discover-feed" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Aktiver populære videoer i dit Discover-feed." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Aktiveret" @@ -2963,7 +3078,7 @@ msgstr "Slut på feed" msgid "Ensure you have selected a language for each subtitle file." msgstr "Husk at angive et sprog for hver enkelt undertekstfil." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Indtast en adgangskode" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Indtast et ord eller tag" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "Indtast kode" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Indtast kode" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Åbn i fuld skærm" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Indtast din fødselsdato" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Indtast din e-mailadresse" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Indtast din nye e-mail herunder." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Indtast din adgangskode" @@ -3022,7 +3129,7 @@ msgstr "Indtast din adgangskode" msgid "Enter your username and password" msgstr "Indtsat dit brugernavn og din adgangskode" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Åbner i fuld skærm" @@ -3030,16 +3137,28 @@ msgstr "Åbner i fuld skærm" msgid "Entertainment" msgstr "Underholdning" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Fejl" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "Fejl ved indlæsning af opslag" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "Kunne ikke indlæse indstilling" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "Fejlmeddelelse" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "En fejl opstod under lagring af fil" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "En fejl opstod under modtagelse af opgaveløsning" @@ -3047,27 +3166,34 @@ msgstr "En fejl opstod under modtagelse af opgaveløsning" msgid "Error:" msgstr "Fejl:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "Fejl: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Alle" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Alle kan svare" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Alle kan besvare dette opslag." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Alle" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "Alt andet" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Udelad brugere, du følger" msgid "Excludes users you follow" msgstr "Anvendes ikke på brugere, du følger" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Forlad fuld skærm" @@ -3106,24 +3232,28 @@ msgstr "Lukker billedvisning" msgid "Expand alt text" msgstr "Udvid alt-tekst" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Udvid brugerliste" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Udvid eller sammenklap det fulde opslag, du besvarer" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "Udvid opslagets tekst" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Udvider eller sammenklapper opslagets tekst" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "Forventede, at URI henviste til et dataelement" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Eksperimentelt" @@ -3142,7 +3272,7 @@ msgstr "Udløber om {0}" #: src/components/live/EditLiveDialog.tsx:131 msgid "Expires in {0} at {1}" -msgstr "" +msgstr "Udløber om {0} kl. {1}" #: src/lib/moderation/useGlobalLabelStrings.ts:47 #: src/lib/moderation/useGlobalLabelStrings.ts:51 @@ -3153,15 +3283,15 @@ msgstr "Voldsomme eller stødende medier." msgid "Explicit sexual images." msgstr "Pornografiske billeder." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "Udforsk" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Eksporter mine data" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Eksterne medier" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Afspilning af medier fra eksterne websites muliggør indsamling af oplysninger om dig og din enhed. Der udveksles ingen oplysninger, før du starter afspilningen." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Indstillinger for eksterne medier" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "Kunne ikke acceptere chat" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "Kunne ikke tilføje emojireaktion" @@ -3211,8 +3341,8 @@ msgstr "Oprettelse af appadgangskode fejlede. Prøv igen." msgid "Failed to create conversation" msgstr "Kunne ikke starte samtale" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Oprettelse af startpakke fejlede" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "Kunne ikke slette chat" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Sletning af besked fejlede" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Sletning af opslag fejlede, prøv igen" @@ -3238,8 +3368,8 @@ msgstr "Sletning af opslag fejlede, prøv igen" msgid "Failed to delete starter pack" msgstr "Sletning af startpakke fejlede" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "Kunne ikke indlæse samtaler" @@ -3250,14 +3380,32 @@ msgstr "Kunne ikke indlæse samtaler" msgid "Failed to load feeds preferences" msgstr "Indlæsning af indstillinger for feeds fejlede" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Indlæsning af GIF'er fejlde" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "Kunne ikke indlæse notifikationsindstillinger." + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Indlæst af tidligere beskeder fejlede" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "Kunne ikke indlæse indstilling." + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Indlæsning af foreslåede feeds fejlede" msgid "Failed to load suggested follows" msgstr "Indlæsning af foreslåede konti fejlede" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "Kunne ikke markere alle anmodninger som læst" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Fastgørelse af opslag fejlede" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "Kunne ikke fjerne emojireaktion" @@ -3291,15 +3439,11 @@ msgstr "Kunne ikke fjerne verifikation" msgid "Failed to save image: {0}" msgstr "Fejl ved lagring af billede: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Kunne ikke gemme notifikationsindstillinger, prøv igen" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "Kunne ikke gemme indstillinger. Prøv igen." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "Kunne ikke gemme dine interesser." @@ -3311,31 +3455,35 @@ msgstr "Kunne ikke sende" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122 #: src/components/dialogs/EmailDialog/screens/Verify.tsx:136 msgid "Failed to send email, please try again." -msgstr "" +msgstr "Kunne ikke sende e-mail, prøv igen." #: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "Afsendelse af klage fejlede, prøv igen." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Kunne ikke ændre, om tråden skjules, prøv igen" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83 msgid "Failed to update email 2FA settings" -msgstr "" +msgstr "Kunne ikke opdaterere 2FA-indstillinger" #: src/components/dialogs/EmailDialog/screens/Update.tsx:195 msgid "Failed to update email, please try again." -msgstr "" +msgstr "Kunne ikke opdatere e-mail, prøv igen." #: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "Opdatering af feeds fejlede" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "Kunne ikke opdatere notifikationsbeskrivelse" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Opdatering af indstillinger fejlede" @@ -3348,21 +3496,29 @@ msgstr "Upload af video fejlede" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:168 msgid "Failed to verify email, please try again." -msgstr "" +msgstr "Kunne ikke bekræfte e-mail, prøv igen." #: src/screens/Settings/components/ChangeHandleDialog.tsx:360 msgid "Failed to verify handle. Please try again." msgstr "Kunne ikke verificere handle. Prøv igen." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Feed" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Feed af {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "Feedskaber" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "Feedidentifikator" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Feedmenu" @@ -3371,35 +3527,39 @@ msgstr "Feedmenu" msgid "Feed toggle" msgstr "Feed tilføj/fjern" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "Feed utilgængeligt" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Kontakt" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Feedback afsendt!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Feeds" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Feeds er specialbyggede algoritmner, som brugere kan bygge med lidt teknisk snilde. <0/> for at læse mere." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Feeds opdateret!" @@ -3428,6 +3588,14 @@ msgstr "Filtrer efter sprog" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtrer efter sprog (pt. {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "Begræns, hvem der kan modtage notifikationer om din aktivitet" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "Begræns, hvem du kan modtage notifikationer fra" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Afslutter" @@ -3448,7 +3616,7 @@ msgstr "Find personer, du kan følge" msgid "Find posts, users, and feeds on Bluesky" msgstr "Find opslag, brugere og feeds på Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Afslut" @@ -3456,17 +3624,17 @@ msgstr "Afslut" msgid "Fitness" msgstr "Motion" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Flad sort" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Flad blå" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Flad hvid" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Fleksibel" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Følg" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Følg {0}" @@ -3518,7 +3686,7 @@ msgstr "Følg konto" msgid "Follow all" msgstr "Følg alle" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Følg tilbage" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Følg tilbage" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Følges af <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Følges af <0>{0} {1, plural, one {# anden} other {# andre}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Følges af <0>{0} og <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Følges af <0>{0}, <1>{1} og {2, plural, one {# anden} other {# andre}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Følgere af @{0}, som du måske kender" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Følgere du kender" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Følger" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Følger" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Følger {0}" @@ -3579,8 +3751,8 @@ msgstr "Følger {handle}" msgid "Following feed preferences" msgstr "Indstillinger for følgerfeed" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Indstillinger for følgerfeed" @@ -3592,11 +3764,11 @@ msgstr "Følger dig" msgid "Follows You" msgstr "Følger dig" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Skrifttype" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Tekststørrelse" @@ -3613,7 +3785,7 @@ msgstr "Af sikkerhedsgrunde sender vi en bekræftelseskode til din e-mailadresse msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Af sikkerhedsgrunde vil du ikke få dette vist denne igen. Hvis du mister denne appadgangskode, bliver du nødt til at oprette en ny." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "For den bedste oplevelse anbefaler vi at bruge temaskrifttypen." @@ -3643,11 +3815,15 @@ msgstr "Glemt?" msgid "Frequently Posts Unwanted Content" msgstr "Laver tit opslag med uønsket indhold" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "Fra" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "Fra @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "Fra <0/>" @@ -3660,14 +3836,68 @@ msgstr "Galleri" msgid "Generate a starter pack" msgstr "Generer en startpakke" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Få hjælp" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "Få notifikationer, når nogen følger dig." + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "Få notifikationer, når nogen liker de opslag, du har videredelt." + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "Få notifikationer, når nogen liker dine opslag." + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "Få notifikationer, når nogen nævner dig." + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "Få notifikationer, når nogen citerer dine opslag." + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "Få notifikationer, når nogen besvarer dine opslag." + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "Få notifikationer, når nogen videredeler opslag, du har videredelt." + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "Få notifikationer, når nogen videredeler dine opslag." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "Bliv notificeret om nye opslag" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Bliv notificeret om opslag og svar fra konti, du vælger." + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "Bliv notificeret om nye opslag fra {name}" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "Bliv notificeret om denne kontos aktivitet" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "Bliv notificeret, når {name} laver opslag" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "Bliv notificeret, når nogen laver opslag" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "Kom i gang" @@ -3688,14 +3918,16 @@ msgstr "Sæt ansigt på din profil" msgid "Glaring violations of law or terms of service" msgstr "Åbenlys overtrædelse af lovgivning eller tjenestevilkår" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3733,23 +3965,29 @@ msgstr "Gå til forside" #: src/view/com/profile/ProfileMenu.tsx:318 #: src/view/com/profile/ProfileMenu.tsx:325 msgid "Go live" -msgstr "" +msgstr "Gå live" #: src/components/live/GoLiveDialog.tsx:93 #: src/components/live/GoLiveDialog.tsx:98 #: src/components/live/GoLiveDialog.tsx:232 #: src/components/live/GoLiveDialog.tsx:241 msgid "Go Live" -msgstr "" +msgstr "Gå live" #: src/components/live/GoLiveDialog.tsx:174 msgid "Go live for" -msgstr "" +msgstr "Gå live i" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "Gå til {firstAuthorName}s profil" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "Gå til kontoindstillinger" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Gå til samtale med {0}" @@ -3779,8 +4017,8 @@ msgstr "Vold" msgid "Half way there!" msgstr "Nu er du halvvejs!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Handle" @@ -3797,7 +4035,7 @@ msgstr "Handle ændret!" msgid "Handle too long. Please try a shorter one." msgstr "Handle er for langt. Prøv med et kortere." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Haptisk feedback" @@ -3806,7 +4044,7 @@ msgstr "Haptisk feedback" msgid "Harassment, trolling, or intolerance" msgstr "Chikane, trolling og intolerance" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Hashtag" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Hashtag {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." -msgstr "" +msgstr "Har du en kode? <0>Klik her." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Har du problemer?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Hjælp" @@ -3839,8 +4077,13 @@ msgstr "Lad andre vide, at du ikke er en robot, ved at uploade et billede eller msgid "Here is your app password!" msgstr "Her er din appadgangskode!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Skjult" @@ -3848,16 +4091,16 @@ msgstr "Skjult" msgid "Hidden by your moderation settings." msgstr "Skjult af dine moderationsindstillinger." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Skjult liste" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Skjult liste" msgid "Hide" msgstr "Skjul" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Skjul" @@ -3875,18 +4118,18 @@ msgstr "Skjul" msgid "Hide customization options" msgstr "Skjul tilpasningsindstillinger" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Skjul opslag for mig" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Skjul svar for alle" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Skjul svar for mig" @@ -3894,12 +4137,12 @@ msgstr "Skjul svar for mig" msgid "Hide this card" msgstr "Skjul dette kort" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Skjul dette opslag?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Skjul dette svar?" @@ -3913,11 +4156,11 @@ msgstr "Skjul populære emner" msgid "Hide trending topics?" msgstr "Skjul populære emner?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Skjul populære videoer?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Skjul brugerliste" @@ -3926,32 +4169,32 @@ msgstr "Skjul brugerliste" msgid "Hide verification badges" msgstr "Vis verifikationsskilte" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Skjuler indholdet" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm, der opstod en fejl ved forbindelsen til feedserveren. Fortæl feedets ejer om dette problem." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm, feedserveren ser ud til at være fejlkonfigureret. Fortæl feedets ejer om dette problem." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm, feedserveren ser ud til at være offline. Fortæl feedets ejer om dette problem." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm, feedserveren gav et ugyldigt svar. Fortæl feedets ejer om dette problem." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, vi kan ikke finde dette feed. Det er muligvis blevet slettet." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmm, vi oplever problemer med at indlæse denne data. Se yderligere oplysninger herunder. Kontakt os, hvis problemet varer ved." @@ -3959,15 +4202,15 @@ msgstr "Hmm, vi oplever problemer med at indlæse denne data. Se yderligere oply msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmm, vi kunne ikke indlæse moderationstjenesten." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Vent lidt! Vi udruller gradvist adgang til video, og du er stadig i kø. Prøv igen senere!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Forside" @@ -3984,10 +4227,10 @@ msgstr "Udbyder" msgid "Hot" msgstr "Hot" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Populære svar først" @@ -3996,10 +4239,6 @@ msgstr "Populære svar først" msgid "How should we open this link?" msgstr "Hvordan skal vi åbne dette link?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Jeg forstår" msgid "If alt text is long, toggles alt text expanded state" msgstr "Hvis alt-tekst er for lang, slår dette udvidet tilstand til/fra" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Hvis du endnu ikke er myndig i henhold til dit lands lovgivning, skal din forælder eller værge læse disse vilkår på dine vegne." @@ -4031,22 +4270,26 @@ msgstr "Hvis du sletter denne liste, kan den ikke genskabes." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Hvis du har dit eget domæne, kan du bruge det som handle. Dette giver dig mulighed for at bekræfte din identitet. <0>Læs mere her." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." -msgstr "" +msgstr "Hvis du har brug for at opdatere din e-mail, <0>klik her." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Hvis du sletter dette opslag, kan det ikke genskabes." #: src/components/dialogs/EmailDialog/screens/Update.tsx:208 msgid "If you update your email address, email 2FA will be disabled." -msgstr "" +msgstr "Hvis du opdaterer din e-mailadresse, vil 2FA via e-mail blive deaktiveret." #: src/view/com/modals/ChangePassword.tsx:160 msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Hvis du vil skifte din adgangskode, sender vi dig en kode til at bekræfte, at dette er din konto." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "Hvis du vil begrænse, hvem der kan modtage notifikationer om din egen kontos aktivitet, kan du ændre dette under <0>Indstillinger → Privatliv og sikkerhed." + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "Hvis du er udvikler, kan du køre din egen server." @@ -4075,11 +4318,11 @@ msgstr "Billedcache tømt, frigjorde {0}" #: src/lib/media/save-image.ts:26 msgid "Image saved" -msgstr "" +msgstr "Billede blev gemt" #: src/lib/media/save-image.ts:45 msgid "Images cannot be saved unless permission is granted to access your photo library." -msgstr "" +msgstr "Billeder kan ikke gemmes, medmindre du giver adgang til dit fotobibliotek." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49 #: src/lib/moderation/useReportOptions.ts:49 @@ -4091,13 +4334,41 @@ msgstr "Identitetstyveri eller falske oplysninger om identitet eller tilknytning msgid "Impersonation, misinformation, or false claims" msgstr "Identitetstyveri, misinformation eller falske påstande" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "I appen" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "Notifikationer i appen" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "I appen, Alle" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "I appen, Personer, du følger" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "I appen, Push" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "I appen, Push, Alle" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "I appen, Push, Personer, du følger" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Upassende beskeder eller links med seksuelt indhold" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "Tom indbakke!" @@ -4105,7 +4376,7 @@ msgstr "Tom indbakke!" msgid "Incorrect username or password" msgstr "Forkert brugernavn eller adgangskode" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Indtast kode sendt med e-mail for at nulstille adgangskode" @@ -4113,7 +4384,7 @@ msgstr "Indtast kode sendt med e-mail for at nulstille adgangskode" msgid "Input confirmation code for account deletion" msgstr "Indtast bekræftelseskode for sletning af konto" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Indtast ny adgangskode" @@ -4129,10 +4400,14 @@ msgstr "Indtast den kode, du har modtaget på e-mail" msgid "Interaction limited" msgstr "Interaktion begrænset" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Interaktionsindstillinger" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "Vi præsenterer: Aktivitetsnotifikationer" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Ugyldig 2FA-bekræftelseskode" msgid "Invalid handle. Please try a different one." msgstr "Ugyldigt handle. Prøv et andet." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Ugyldig eller ikkeunderstøttet dataelement" @@ -4158,7 +4433,7 @@ msgstr "Ugyldig bekræftelseskode" msgid "Invite a Friend" msgstr "Inviter en ven" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Invitationskode" @@ -4186,15 +4461,15 @@ msgstr "Inviter dine venner til at følge dine foretrukne feeds og konti" msgid "Invites, but personal" msgstr "Invitationer, men personlige" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Ja, det er korrekt" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Lige nu er der kun dig! Føj flere personer til din startpakke ved at søge herover." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "Job-ID: {0}" @@ -4220,11 +4495,27 @@ msgstr "Deltag i samtalen" msgid "Journalism" msgstr "Journalistik" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "Hold mig opdateret" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "KWS privatlivspolitik" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "KWS brugervilkår" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "KWS hjemmeside" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Mærkat tilføjet af {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Mærkat tilføjet af forfatteren." @@ -4237,7 +4528,7 @@ msgstr "Mærkater" msgid "Labels added" msgstr "Mærkater tilføjet" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Mærkater kan tilknyttes brugere og indhold. De kan bruges til at skjule, advare og kategorisere i netværket." @@ -4253,22 +4544,30 @@ msgstr "Mærkater på dit indhold" msgid "Language selection" msgstr "Sprogvalg" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Sprogindstillinger" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Sprog" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Større" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "Senest påbegyndt {timeAgo} siden" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "Senest påbegyndt netop nu" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Seneste" @@ -4282,7 +4581,6 @@ msgstr "læs mere" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "Læs mere" @@ -4290,6 +4588,10 @@ msgstr "Læs mere" msgid "Learn More" msgstr "Læs mere" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "Læs mere om alderstjek" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Læs mere om Bluesky" @@ -4298,15 +4600,23 @@ msgstr "Læs mere om Bluesky" msgid "Learn more about self hosting your PDS." msgstr "Læs mere om at hoste din egen PDS." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "Læs mere om den moderation, der er anvendt på dette indhold" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Læs mere om den moderation, der er anvendt på dette indhold." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Læs mere om denne advarsel" @@ -4316,12 +4626,16 @@ msgstr "Læs mere om denne advarsel" msgid "Learn more about verification on Bluesky" msgstr "Læs mere om verificering på Bluesky" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Læs mere om, hvad der er offentligt på Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "Læs mere under <0>kontoindstillinger." + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Læs mere." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Forlad samtale" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Fjern alle flueben for at se alle sprog." +msgid "Leave them all unselected to see any language." +msgstr "Lad alle være fravalgt for at se alle sprog." -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Forlader Bluesky" @@ -4370,7 +4685,7 @@ msgstr "Lad os komme i gang!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Lys" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Like" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Like ({0, plural, one {# like} other {# likes}})" @@ -4397,6 +4712,10 @@ msgstr "Like 10 opslag" msgid "Like 10 posts to train the Discover feed" msgstr "Like 10 opslag for at træne Discover-feedet" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "Notifikationer ved likes" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Like dette feed" @@ -4405,8 +4724,8 @@ msgstr "Like dette feed" msgid "Like this labeler" msgstr "Like denne mærkningstjeneste" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Liket af" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Liket af" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Liket af {0, plural, one {# bruger} other {# brugere}}" @@ -4428,20 +4747,36 @@ msgstr "Liket af {0, plural, one {# bruger} other {# brugere}}" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Liket af {likeCount, plural, one {# bruger} other {# brugere}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Likes" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "Likes af dine videredelinger" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "Notifikationer ved videredeling af videredelinger" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Likes af dette opslag" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Lineært" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Liste" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Liste blokeret" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Liste af {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "Liste af <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Liste af dig" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "List skaberen" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Liste ikke længere skjult" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Lister" @@ -4515,18 +4854,18 @@ msgstr "Liste blokeret af denne bruger:" #. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters #: src/components/live/LiveIndicator.tsx:46 msgid "LIVE" -msgstr "" +msgstr "LIVE" #: src/components/live/LiveStatusDialog.tsx:215 msgid "Live feature is in beta testing" -msgstr "" +msgstr "Livefunktion er i betatest" #: src/components/live/EditLiveDialog.tsx:148 #: src/components/live/EditLiveDialog.tsx:152 #: src/components/live/GoLiveDialog.tsx:124 #: src/components/live/GoLiveDialog.tsx:128 msgid "Live link" -msgstr "" +msgstr "Livelink" #: src/screens/Search/Explore.tsx:86 msgid "Load more" @@ -4537,7 +4876,7 @@ msgstr "Indlæs flere" msgid "Load more suggested feeds" msgstr "Indlæs flere foreslåede feeds" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Indlæs nye notifikationer" @@ -4552,11 +4891,11 @@ msgstr "Indlæs nye opslag" msgid "Loading..." msgstr "Indlæser..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Log" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Synlighed for udloggede brugere" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo af @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo af <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Logo af <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Brug langt tryk for at åbne tagmenuen for #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Har formatet XXXXX-XXXXX" @@ -4591,13 +4930,13 @@ msgstr "Det ser ud til, at du mangler et følgerfeed <0>Klik her for at tilføje #: src/components/dialogs/EmailDialog/index.tsx:41 msgid "Make adjustments to email settings for your account" -msgstr "" +msgstr "Tilpas e-mailindstillinger for din konto" #: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Make one for me" msgstr "Opret en for mig" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Tjek, at det virkelig er dette website, du ønsker at besøge!" @@ -4606,7 +4945,7 @@ msgstr "Tjek, at det virkelig er dette website, du ønsker at besøge!" msgid "Manage saved feeds" msgstr "Adminstrer gemte feeds" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "Administrer verifikationsindstillinger" @@ -4614,9 +4953,9 @@ msgstr "Administrer verifikationsindstillinger" msgid "Manage your muted words and tags" msgstr "Administrer dine skjulte ord og tags" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "Marker alle læst" @@ -4625,15 +4964,13 @@ msgstr "Marker alle læst" msgid "Mark as read" msgstr "Marker som læst" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "Marker alle som læst" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "Måske senere" @@ -4645,19 +4982,26 @@ msgstr "Medier" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Medier, der kan virke stødende eller upassende for visse personer." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "Omtalenotifikationer" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "omtalte brugere" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Omtalte brugere" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Omtaler" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Menu" @@ -4665,7 +5009,7 @@ msgstr "Menu" msgid "Message {0}" msgstr "Send besked til {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Besked slettet" @@ -4674,11 +5018,11 @@ msgstr "Besked slettet" msgid "Message deleted" msgstr "Besked slettet" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "Besked fra @{0}: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Besked fra server: {0}" @@ -4691,19 +5035,23 @@ msgstr "Beskedfelt" msgid "Message is too long" msgstr "Beskeden er for lang" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "Beskedindstillinger" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Beskeder" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Midnat" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "Diverse notifikationer" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Vildledende konto" msgid "Misleading Post" msgstr "Vildledende opslag" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderation" @@ -4725,17 +5073,17 @@ msgstr "Moderation" msgid "Moderation details" msgstr "Moderationsoplysninger" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Moderationsliste af {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Moderationsliste af <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Moderationsliste af dig" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Moderationsliste opdateret" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Moderationslister" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Moderationslister" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "moderationsindstillinger" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Moderationstilstande" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Moderationsværktøjer" @@ -4775,7 +5123,7 @@ msgstr "Moderationsværktøjer" msgid "Moderator has chosen to set a general warning on the content." msgstr "Moderator har besluttet at sætte en generel advarsel på indholdet." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Flere" @@ -4790,13 +5138,13 @@ msgstr "Flere feeds" msgid "More options" msgstr "Flere valgmuligheder" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Mest likede først" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Mest likede svar først" @@ -4808,8 +5156,8 @@ msgstr "Film" msgid "Music" msgstr "Musik" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Lydløs" @@ -4819,8 +5167,8 @@ msgstr "Lydløs" msgid "Mute {tag}" msgstr "Skjul {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Skjul kun dette ord i tags" msgid "Mute this word until you unmute it" msgstr "Skjul dette ord, indtil du selv fjerner det fra listen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Skjul tråd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Skjul ord og tags" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Skjulte konti" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Skjulte konti" @@ -4898,7 +5246,7 @@ msgstr "Opslag fra skjulte konti vil ikke optræde i dit feed og dine notifikati msgid "Muted by \"{0}\"" msgstr "Skjult af \"{0}\"" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Skjulte ord og tags" @@ -4911,7 +5259,7 @@ msgstr "Ingen kan se, hvem du skjuler. Skjulte konti kan interagere med dig, men msgid "My Birthday" msgstr "Min fødselsdato" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Mine feeds" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Natur" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Gå til {0}" @@ -4958,11 +5306,11 @@ msgstr "Går til næste skærmbillede" msgid "Navigates to your profile" msgstr "Går til din profil" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Har du brug for at rette den?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "Vil du kontakte os om en ophavsretskrænkelse eller et juridisk eller regulatorisk spørgsmål?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Vil du anmelde en ophavsretskrænkelse?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Ny" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "{postsCount, plural, one {Nyt} other {Nye}} opslag fra {firstAuthorLink}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "{postsCount, plural, one {Nyt} other {Nye}} opslag fra {firstAuthorName}" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Ny chat" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "Ny e-mailadresse" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "Ny feature" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "Notifikationer ved nye følgere" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "Nye følgere" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Nye beskeder" msgid "New Moderation List" msgstr "Ny moderationsliste" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Ny adgangskode" @@ -5029,7 +5396,7 @@ msgstr "Ny adgangskode" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Nyt opslag" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Nyt opslag" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Nye opslag fra {firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Nye opslag fra {firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}}" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Ny bruger" @@ -5054,10 +5429,14 @@ msgstr "Ny bruger" msgid "New User List" msgstr "Ny brugerliste" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Nyeste svar først" @@ -5071,15 +5450,15 @@ msgstr "Nyheder" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5100,9 +5479,9 @@ msgstr "Ingen DNS-adgang" #: src/components/live/EditLiveDialog.tsx:140 msgid "No expiry set" -msgstr "" +msgstr "Intet udløbstidspunkt angivet" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Ingen udvalgte GIF'er fundet. Der er muligvis problemer med Tenor." @@ -5112,39 +5491,42 @@ msgstr "Ingen feeds fundet. Prøv at søge efter noget andet." #: src/components/live/LinkPreview.tsx:63 msgid "No image" -msgstr "" +msgstr "Intet billede" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 msgid "No likes yet" msgstr "Ingen likes endnu." -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Følger ikke længere {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "Ikke længere end {MAX_SERVICE_HANDLE_LENGTH, plural, one {}other {# tegn}}" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Ingen beskeder endnu" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Ingen notifikationer endnu!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Ingen" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Kun forfatteren selv kan citere dette opslag." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "Ingen opslag her" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Ingen opslag endnu." @@ -5171,7 +5553,7 @@ msgstr "Ingen resultater" msgid "No results for \"{0}\"." msgstr "Ingen resultater for \"{0}\"." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Ingen resultater fundet" @@ -5179,9 +5561,9 @@ msgstr "Ingen resultater fundet" msgid "No results found for \"{query}\"" msgstr "Ingen resultater fundet for \"{query}\"" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Ingen resultater fundet for {query}" @@ -5189,7 +5571,7 @@ msgstr "Ingen resultater fundet for {query}" msgid "No results." msgstr "Ingen resultater." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Ingen søgeresultater fundet for \"{search}\"." @@ -5198,7 +5580,7 @@ msgstr "Ingen søgeresultater fundet for \"{search}\"." msgid "No thanks" msgstr "Nej tak" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Ingen" @@ -5223,59 +5605,76 @@ msgstr "Ingen blev fundet. Prøv at søge efter en anden." msgid "Non-sexual Nudity" msgstr "Ikkeseksuel nøgenhed" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "Ingen" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "Følges ikke af nogen, du følger" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Ikke fundet" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Note vedr. deling" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "OBS: Bluesky er et åbent og offentligt netværk. Denne indstilling begrænser kun synligheden af dit indhold her på Bluesky. Andre apps og websites respekterer ikke nødvendigvis denne indstilling. Dit indhold kan stadig blive vist i andre apps og på andre websites til udloggede brugere." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "OBS: Dette opslag er kun synligt for indloggede brugere." + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Ingenting her" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Notifikationsfiltre" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Notifikationindstillinger" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Notifikationindstillinger" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Notifikationslyde" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Notifikationslyde" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Notifikationer" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "Notifikationer for alt andet, fx når nogen opretter sig via en af dine startpakker." + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "nu" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Nøgenhed eller voksenindhold, som ikke er mærket som dette" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Deaktiveret" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Åh nej!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "OK" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Okay" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Ældste svar først" @@ -5331,19 +5736,19 @@ msgstr "Ældste svar først" msgid "on<0><1/><2><3/>" msgstr "på<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Nulstil velkomst" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "En eller flere GIF'er mangler alt-tekst." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "En eller flere billeder mangler alt-tekst." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Et eller flere videoer mangler alt-tekst." @@ -5351,13 +5756,15 @@ msgstr "Et eller flere videoer mangler alt-tekst." msgid "Only .jpg and .png files are supported" msgstr "Kun .jpg- og .png-filer er understøttet" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Kun {0} kan svare." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Indeholder kun bogstaver (a-z), tal og bindestreger" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "Kun følgere, jeg følger" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Kun billedfiler er understøttet" msgid "Only WebVTT (.vtt) files are supported" msgstr "Kun WebVTT-filer (.vtt) er understøttet" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Ups, noget gik galt!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Ups!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Åbn navigation" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Åbn emojivælger" @@ -5416,7 +5822,7 @@ msgstr "Åbn feedindstillingsmenu" msgid "Open full emoji list" msgstr "Åbn hele emojilisten" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Åbn link til {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Åbn link til {niceUrl}" msgid "Open message options" msgstr "Åbn beskedindstillinger" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Åbn moderationsfejlsøgningsside" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Åbn indstillinger for skjulte ord og tags" @@ -5447,22 +5853,22 @@ msgstr "Åbn profil" #: src/components/PostControls/ShareMenu/index.tsx:87 msgid "Open share menu" -msgstr "" +msgstr "Åbn delemenu" #: src/screens/StarterPack/StarterPackScreen.tsx:566 msgid "Open starter pack menu" msgstr "Åbn startpakkemenu" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Åbn storybook" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Åbn systemlog" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Åbner {numItems} valgmuligheder" @@ -5490,11 +5896,11 @@ msgstr "Åbner enhedens kamera" msgid "Opens captions and alt text dialog" msgstr "Åbner undertekst- og alt-tekstdialog" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Åbner handleskiftdialog" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Åbner skrivefelt til nyt opslag" @@ -5502,7 +5908,7 @@ msgstr "Åbner skrivefelt til nyt opslag" msgid "Opens device photo gallery" msgstr "Åbner enhedens fotogalleri" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Åbner emojivælger" @@ -5520,28 +5926,28 @@ msgstr "Åbner formular til at logge ind på din eksisterende Bluesky-konto" msgid "Opens GIF select dialog" msgstr "Åbner GIF-vælger" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Åbner hjælpeside i browser" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "Åbner linket {0}" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Åbner listen over invitationskoder" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" -msgstr "" +msgstr "Åbner livetilstandsdialog" #: src/screens/Login/LoginForm.tsx:249 msgid "Opens password reset form" msgstr "Åbner formular til nulstilling af adgangskode" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Åbner det linkede website" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Åbner denne profil" @@ -5558,7 +5964,7 @@ msgstr "Tilføj evt. yderligere informationer herunder:" msgid "Options:" msgstr "Indstillinger:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Eller fra en af disse:" @@ -5600,15 +6006,19 @@ msgstr "Anden konto" msgid "Other..." msgstr "Andet..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." -msgstr "Vores moderationsteam har modtaget din anmeldelse." +msgstr "Vores moderatorteam har modtaget din anmeldelse." #: src/screens/Messages/components/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Vores moderatorer har gennemgået anmeldelser og besluttet at spærre din adgang til chats på Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Side ikke fundet" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Side ikke fundet" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,33 +6052,38 @@ msgstr "Adgangskode opdateret!" msgid "Password updated!" msgstr "Adgangskode opdateret!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Pause" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Stop afspilning" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Personer" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Personer, som følges af @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Personer, som @{0} følger" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "Personer jeg følger" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." -msgstr "" +msgstr "Adgang til dit fotobibliotek blev nægtet. Tillad adgang fra dine systemindstillinger." #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" @@ -5704,12 +6119,12 @@ msgstr "Fastgør til forside" msgid "Pin to Home" msgstr "Fastgør til forside" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Fastgør til din profil" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Fastgjort" @@ -5718,7 +6133,7 @@ msgstr "Fastgjort" msgid "Pinned {0} to Home" msgstr "Fastgjorde {0} til forside" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Fastgjorte feeds" @@ -5726,38 +6141,38 @@ msgstr "Fastgjorte feeds" msgid "Pinned to your feeds" msgstr "Fastgjort til dine feeds" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Afspil" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Afspil {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Afspil video" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Afspil video" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Starter/stopper GIF-animationen" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Starter/stopper videoen" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Afspiler GIF'en" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Afspiller videoen" @@ -5765,24 +6180,29 @@ msgstr "Afspiller videoen" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "Vælg de mærkater, der beskriver det indhold, du er ved at slå op." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "Tjek din e-mail for yderligere instruktioner. Der kan gå et par minutter, før du modtager dem." + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Vælg dit handle." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Vælg din adgangskode." #: src/components/dialogs/EmailDialog/screens/Update.tsx:290 msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." -msgstr "" +msgstr "Klik på linket i den e-mail, vi lige har sendt dig, for at bekræfte din nye e-mailadresse. Dette er nødvendigt for, at du fortsat kan have glæde af alle Blueskys funktioner." #: src/screens/Signup/state.ts:301 msgid "Please complete the verification captcha." msgstr "Løs verifikationsopgaven" -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Dobbelttjek, at du har indtastet din e-mailadresse korrekt." @@ -5804,6 +6224,7 @@ msgstr "Vælg et unikt navn til denne appadgangskode eller brug et autogenereret msgid "Please enter a valid code." msgstr "Indtast en gyldig kode." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "Indtast en gyldig e-mailadresse." @@ -5812,20 +6233,24 @@ msgstr "Indtast en gyldig e-mailadresse." msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Indtast et gyldigt ord, tag eller en sætning, der skal skjules" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "Indtast en gyldig, permanent e-mailadresse. Du kan få brug for at tilgå denne adresse i fremtiden." + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." -msgstr "" +msgstr "Indtast den kode, vi har sendt til <0>{0}, nedenfor." #: src/components/dialogs/EmailDialog/screens/Update.tsx:247 msgid "Please enter the security code we sent to your previous email address." -msgstr "" +msgstr "Indtast den sikkerhedskode, vi har sendt til din gamle e-mailadresse." #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Indtast din e-mail." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Indtast din invitationskode." @@ -5853,6 +6278,19 @@ msgstr "Forklar, hvorfor du mener, at denne mærkat er anvendt fejlagtigt af {0} msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Forklar, hvorfor du mener, at dine chats er deaktiveret fejlagtigt" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "Angiv yderligere oplysninger, som du finder relevante for, at moderatorerne kan gennemføre alderstjek af dig." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "Vælg venligst et sprog" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "Vælg moderationstjeneste" @@ -5870,9 +6308,9 @@ msgstr "Log ind som @{0}" msgid "Please verify your email" msgstr "Indtast din e-mail" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Bekræft din e-mail" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "Skriv din besked herunder:" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Politik" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Slå op" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Opslag" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Slå op" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Slå alle op" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "Opslag blokeret" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Opslag af {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Opslag af @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Opslag slettet" @@ -5919,11 +6362,14 @@ msgstr "Opslag slettet" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Opslag kunne ikke publiceres. Tjek din internetforbindelse og prøv igen." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "Indlæg er blevet slettet" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Opslag skjult" @@ -5937,11 +6383,11 @@ msgstr "Opslag indeholder skjulte ord" msgid "Post Hidden by You" msgstr "Opslag skjult af dig" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Interaktionsindstillinger" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Interaktionsindstillinger" @@ -5954,8 +6400,10 @@ msgstr "Sprog" msgid "Post Languages" msgstr "Sprog" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Opslag ikke fundet" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Opslag blev frigjort" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Opslag" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Opslag kan skjules baseret på deres tekst, tags eller begge dele. Vi anbefaler at undgå almindelige ord, der optræder i mange opslag, da det kan medføre, at dit feed bliver næsten tomt." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Opslag er skjult" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Muligt vildledende link" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "Opslag, svar" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Indstillinger blev gemt" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "Potentielt misvisende link" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "Advarsel om potentielt misvisende link" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Tryk for at forsøge at forbinde igen" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Tryk for at prøve igen" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Tryk for at vise følgere af denne konto, som du også følger" @@ -6015,40 +6469,46 @@ msgstr "Forrige billede" msgid "Primary Language" msgstr "Primært sprog" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Prioriter konti, du følger" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Prioriterede notifikationer" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Privatliv" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Privatliv og sikkerhed" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privatliv og sikkerhed" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "Privatlivs- og sikkerhedsindstillinger" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Privatlivspolitik" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Behandler video..." @@ -6062,15 +6522,14 @@ msgstr "Behandler..." msgid "profile" msgstr "profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Profil" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Profil opdateret" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Offentlige lister, der kan bruges som feeds." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "Udgiv opslag" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "Udgiv opslag" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "Udgiv svar" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "Udgiv svar" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "Push" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "Push-notifikationer" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "Push, alle" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "Push, Personer du følger" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "QR-kode kopieret til udklipsholder!" @@ -6119,44 +6594,52 @@ msgstr "QR-kode blev downloadet!" msgid "QR code saved to your camera roll!" msgstr "QR-kode blev gemt til din kamerarulle!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "Notifikationer ved citater" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Citer opslag" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "Citatopslag blev tilkoblet igen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "Citatopslag blev afkoblet" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Citatopslag ikke tilladt" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Indstillinger for citat" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Citater" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Citater af dette opslag" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Tilfældig (prøv lykken)" @@ -6164,8 +6647,8 @@ msgstr "Tilfældig (prøv lykken)" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Aktivietsgrænse overskredet - du har prøvet at ændre dit handle for mange gange på kort tid. Vent lidt, før du prøver igen." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Gentilkobl citat" @@ -6177,30 +6660,42 @@ msgstr "Reager med {emoji}" msgid "Reactivate your account" msgstr "Genaktiv din konto" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "Læs {0} {1, plural, one {svar} other {svar}} mere" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Læs blogindlæg" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Læs mindre" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Læs mere" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "Læs flere svar" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Læs Blueskys blog" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Læs Blueskys privatlivspolitik" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Læs Blueskys tjenestevilkår" @@ -6213,6 +6708,14 @@ msgstr "Begrundelse for klage" msgid "Reason:" msgstr "Begrundelse:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "Modtag notifikationer i appen" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "Modtag push-notifikationer" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Seneste søgninger" @@ -6234,8 +6737,8 @@ msgstr "Afvis" msgid "Reject chat request" msgstr "Afvis chatanmodning" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Genindlæs samtaler" @@ -6244,10 +6747,9 @@ msgstr "Genindlæs samtaler" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Fjern" @@ -6259,17 +6761,17 @@ msgstr "Fjern {displayName} fra startpakke" msgid "Remove {historyItem}" msgstr "Fjern {historyItem}" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Fjern konto" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Fjern vedhæftning" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Fjern avatar" @@ -6284,24 +6786,22 @@ msgstr "Fjern indlejring" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Fjern feed" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Fjern feed?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Fjern fra mine feeds" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Fjern fra kvikadgang?" @@ -6311,18 +6811,17 @@ msgid "Remove from saved feeds" msgstr "Fjern fra gemte feeds" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "Fjern fra dine feeds?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Fjern billede" #: src/components/live/EditLiveDialog.tsx:240 #: src/components/live/EditLiveDialog.tsx:247 msgid "Remove live status" -msgstr "" +msgstr "Fjern livetilstand" #: src/components/dialogs/MutedWords.tsx:523 msgid "Remove mute word from your list" @@ -6332,12 +6831,8 @@ msgstr "Fjern skjult ord fra din liste" msgid "Remove profile" msgstr "Fjern profil" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Fjern citat" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Fjern deling" @@ -6345,7 +6840,7 @@ msgstr "Fjern deling" msgid "Remove subtitle file" msgstr "Fjern undertekstfil" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Fjern dette feed fra dine gemte feeds" @@ -6364,11 +6859,11 @@ msgstr "Fjern verifikation" msgid "Remove your verification for this account?" msgstr "Fjern verifikation fra denne konto?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Fjernet af forfatter" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Fjernet af dig" @@ -6377,10 +6872,6 @@ msgstr "Fjernet af dig" msgid "Removed from list" msgstr "Fjernet fra liste" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Fjernet fra mine feeds" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Fjernet fra gemte feeds" @@ -6395,34 +6886,36 @@ msgstr "Fjernet fra dine feeds" msgid "Removed verification" msgstr "Fjernede verifikation" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Fjerner citeret opslag" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Erstat med Discover" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Svar" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Svar ikke tilladt" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Svar til dette opslag er ikke tilladt." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Besvar" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Svar ({0, plural, one {# svar} other {# svar}})" @@ -6436,50 +6929,55 @@ msgstr "Svar skjult af trådens forfatter" msgid "Reply Hidden by You" msgstr "Svar skjult af dig" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "Notifikationer ved svar" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Indstillinger for svar" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "Svarindstillinger er bestemt af trådens forfatter" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Rækkefølge for svar" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Svar til <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Svar til et blokeret opslag" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Svar til et opslag" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Svar til dig" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Svarets synlighed blev opdateret" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Svar blev skjult" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Anmeld feed" msgid "Report list" msgstr "Anmeld liste" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Anmeld besked" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Anmeld opslag" @@ -6567,25 +7065,26 @@ msgstr "Anmeld denne startpakke" msgid "Report this user" msgstr "Anmeld denne bruger" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Videredel" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Videredel" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Videredel ({0, plural, one {# deling} other {# delinger}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "Notifikationer ved videredeling" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Videredel eller citer" @@ -6594,35 +7093,47 @@ msgstr "Videredel eller citer" msgid "Reposted By" msgstr "Videredelt af" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Videredelt af {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Videredelt af <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Videredelt af dig" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "Videredelinger" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Videredelinger af dette opslag" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "Anmod om ændring" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "Videredeling af dine videredelinger" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "Notifikationer ved videredeling af videredelinger" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "Bekræftelseskode" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Gør alt-tekst obligatorisk i dine egne opslag" @@ -6630,7 +7141,7 @@ msgstr "Gør alt-tekst obligatorisk i dine egne opslag" msgid "Require an email code to sign in to your account." msgstr "Kræv en bekræftelseskode via e-mail for at logge ind på din konto." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Obligatorisk for denne udbyder" @@ -6642,10 +7153,6 @@ msgstr "Obligatorisk i din region" msgid "Resend" msgstr "Send igen" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Gensend e-mail" msgid "Resend Verification Email" msgstr "Gensend bekræftelseskode" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Nulstil kode" @@ -6667,8 +7180,8 @@ msgstr "Nulstil kode" msgid "Reset Code" msgstr "Nulstil kode" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Nulstil velkomsttilstand" @@ -6687,21 +7200,23 @@ msgstr "Prøver at gentage den seneste handling, der fejlede" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Prøv igen" @@ -6721,19 +7236,19 @@ msgstr "Går til forsiden" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Går til forrige side" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Går tilbage til det forrige trin" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Går tilbage til det forrige trin" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Gem" @@ -6762,15 +7276,13 @@ msgstr "Gem" msgid "Save birthday" msgstr "Gem fødselsdato" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Gem ændringer" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Gem ændringer" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Gem QR-kode" msgid "Save to my feeds" msgstr "Føj til mine feeds" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Gemte feeds" @@ -6802,18 +7314,14 @@ msgstr "Gemte feeds" msgid "Saved to your feeds" msgstr "Tilføjet dine feeds" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Gemmer ændringer til din profil" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Gemmer billedbeskæring" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Sig hej!" @@ -6826,16 +7334,16 @@ msgstr "Videnskab" msgid "Scroll to top" msgstr "Rul til toppen" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Søg" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Søg i opslag fra @{0}" @@ -6861,7 +7369,7 @@ msgstr "Søg efter \"{query}\"" msgid "Search for \"{searchText}\"" msgstr "Søg efter \"{searchText}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Søg efter feeds, du vil foreslå til andre." @@ -6877,10 +7385,14 @@ msgstr "Søg efter flere feeds" msgid "Search for posts, users, or feeds" msgstr "Søg efter opslag, brugere og feeds" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Søg efter GIF'er" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "Søgning er i øjeblikket kun tilgængeligt for indloggede brugere" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Søg i mine opslag" @@ -6890,12 +7402,12 @@ msgstr "Søg i mine opslag" msgid "Search posts" msgstr "Søg opslag" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Søg efter profiler" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Søg i Tenor" @@ -6903,18 +7415,14 @@ msgstr "Søg i Tenor" msgid "Search..." msgstr "Søg..." -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Søg efter profiler" #: src/components/dialogs/EmailDialog/screens/Update.tsx:243 msgid "Security step required" -msgstr "" - -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Obligatorisk sikkerhedstjek" +msgstr "Sikkerhedstjek krævet" #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" @@ -6936,14 +7444,31 @@ msgstr "Se #{tag}-indlæg af bruger" msgid "See jobs at Bluesky" msgstr "Se jobs hos Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Se denne guide" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Spoleskyder. Brug piletaster for at spole frem og tilbage, og mellemrum til at starte/stoppe afspilning." +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Vælg en farve" @@ -6954,7 +7479,7 @@ msgstr "Vælg konto" #: src/components/AppLanguageDropdown.tsx:60 msgid "Select an app language" -msgstr "" +msgstr "Vælg et appsprog" #: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 msgid "Select an avatar" @@ -6966,11 +7491,11 @@ msgstr "Vælg en emoji" #: src/components/Select/index.tsx:204 msgid "Select an option" -msgstr "" +msgstr "Vælg en mulighed" #: src/screens/Settings/LanguageSettings.tsx:98 msgid "Select app language" -msgstr "" +msgstr "Vælg appsprog" #: src/screens/Settings/LanguageSettings.tsx:164 msgid "Select content languages" @@ -6978,7 +7503,7 @@ msgstr "Vælg sprog" #: src/components/live/GoLiveDialog.tsx:179 msgid "Select duration" -msgstr "" +msgstr "Vælg varighed" #: src/screens/Login/index.tsx:144 msgid "Select from an existing account" @@ -6988,7 +7513,7 @@ msgstr "Vælg en eksisterende konto" msgid "Select GIF" msgstr "Vælg GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Vælg GIF \"{0}\"" @@ -6996,6 +7521,11 @@ msgstr "Vælg GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "Vælg, hvor længe dette ord skal ignores." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "Vælg sprog" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Vælg sprog..." @@ -7004,7 +7534,7 @@ msgstr "Vælg sprog..." msgid "Select languages" msgstr "Vælg sprog" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "Vælg moderationstjeneste" @@ -7014,7 +7544,7 @@ msgstr "Vælg moderator" #: src/screens/Settings/LanguageSettings.tsx:131 msgid "Select primary language" -msgstr "" +msgstr "Vælg primært sprog" #: src/view/com/composer/videos/SubtitleFilePicker.tsx:59 #: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 @@ -7045,12 +7575,12 @@ msgstr "Vælg sprog for appens brugergrænseflade." msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Vælg, hvilke sprog du vil se i dine feeds. Hvis ingen er valgt, vil du se opslag på alle sprog." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Angiv din fødselsdato" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Angiv dine interesser herunder" @@ -7058,7 +7588,11 @@ msgstr "Angiv dine interesser herunder" msgid "Select your preferred language for translations in your feed." msgstr "Vælg dit foretrukne sprog for oversættelser i dit feed" -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "Vælg dine foretrukne notifikationskanaler" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "Vælger mulighed {0} af {numItems}" @@ -7066,17 +7600,9 @@ msgstr "Vælger mulighed {0} af {numItems}" msgid "Send a neat website!" msgstr "Del et fedt website!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "Send bekræftelse" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Send bekræftelses-e-mail" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Send e-mail" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Send e-mail" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Send feedback" @@ -7095,9 +7621,9 @@ msgstr "Send feedback" msgid "Send message" msgstr "Send besked" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" -msgstr "" +msgstr "Send opslag til {name}" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." @@ -7114,20 +7640,20 @@ msgstr "Send anmeldelse" msgid "Send report to {0}" msgstr "Send anmeldelse til {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "Send anmeldelse til {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Send bekræftelses-e-mail" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Send som direkte besked" @@ -7143,7 +7669,7 @@ msgstr "Serveradresse" msgid "Set app icon to {0}" msgstr "Sæt appikon til {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Angiv fødselsdato" @@ -7159,13 +7685,57 @@ msgstr "Konfigurer din konto" msgid "Sets email for password reset" msgstr "Angiver e-mail til nulstilling af adgangskode" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Indstillinger" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "Indstillinger for aktivitet fra andre" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "Indstillinger for at tillade andre at blive notificeret om dine opslag" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "Notifikationsindstillinger for likes" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "Notifikationsindstillinger for omtaler" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "Notifikationsindstillinger for nye følgere" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "Notifikationsindstillinger for alt andet" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "Notifikationsindstillinger for likes af dine videredelinger" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "Notifikationsindstillinger for videredeling af dine videredelinger" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "Notifikationsindstillinger for citater" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "Notifikationsindstillinger for svar" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "Notifikationsindstillinger for videredelinger" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,35 +7770,30 @@ msgstr "Del en sjov historie!" msgid "Share a fun fact!" msgstr "Del noget interessant!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Del alligevel" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" -msgstr "" +msgstr "Del forfatter-DID" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Del link" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Del link" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Del link-dialog" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" -msgstr "" +msgstr "Del opslagets at://-URI" #: src/components/StarterPack/ShareDialog.tsx:115 #: src/components/StarterPack/ShareDialog.tsx:126 @@ -7247,34 +7812,30 @@ msgstr "Del denne startpakke" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Del denne startpakke og hjælp andre med at blive en del af fællesskabet på Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 #: src/view/com/profile/ProfileMenu.tsx:256 msgid "Share via..." -msgstr "" +msgstr "Del via..." #: src/components/dms/ChatEmptyPill.tsx:34 msgid "Share your favorite feed!" msgstr "Del dit yndlingsfeed!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Test af delte indstillinger" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Deler det linkede website" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Vis" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Vis alt-tekst" @@ -7303,8 +7864,8 @@ msgstr "Vis tilpasningsindstillinger" msgid "Show hidden replies" msgstr "Vis skjulte svar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Vis mindre som dette" @@ -7312,55 +7873,63 @@ msgstr "Vis mindre som dette" msgid "Show list anyway" msgstr "Vis liste alligevel" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Vis mere" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" -msgstr "Vis flere som dette" +msgstr "Vis mere som dette" + +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "Vis flere svar" #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Vis skjulte svar" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "Vis svar til opslag i trådet trævisning" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Vis citatopslag" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Vis svar" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Vis svar" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Vis svar trådet" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Vis svar fra brugere, du følger, før øvrige svar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Vis svar til alle" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Vis delinger" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Vis eksempler fra dine gemte feeds i dit følgerfeed" @@ -7372,16 +7941,17 @@ msgstr "Vis advarsel" msgid "Show warning and filter from feeds" msgstr "Vis advarsel og filtrer fra feeds" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Viser, hvornår dette opslag blev oprettet" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "Viser andre konti, du kan skifte til" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Viser indholdet" @@ -7390,14 +7960,15 @@ msgstr "Viser indholdet" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "Log på konto, der ikke er anført" msgid "Sign in to Bluesky or create a new account" msgstr "Log på Bluesky eller opret en ny konto" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "Log ind for at se opslag" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Log ud" @@ -7444,8 +8020,8 @@ msgstr "Log ud" msgid "Sign Out" msgstr "Log ud" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Log ud?" @@ -7459,12 +8035,12 @@ msgstr "Indlogning krævet" msgid "Signed in as @{0}" msgstr "Logget ind som @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Lignende konti" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Spring over" @@ -7472,12 +8048,11 @@ msgstr "Spring over" msgid "Skip this flow" msgstr "Spring dette forløb over" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Mindre" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "Udsætter påmindelen" @@ -7490,11 +8065,11 @@ msgstr "Softwareudvikling" msgid "Some of your verifications are invalid." msgstr "Nogle af dine verifikationer er ugyldige." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Nogle andre feeds, du måske kan lide" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Udvalgte personer kan svare" @@ -7510,10 +8085,11 @@ msgstr "Nogen reagerede med {0} på {1}" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "Der er noget i vejen med din anmeldelse. Kontakt venligst support." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Noget gik galt" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Noget gik galt, prøv igen" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Noget gik galt, prøv igen" -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Noget gik galt!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "Noget gik galt. Prøv igen om lidt." + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "Noget gik galt. Prøv igen." @@ -7539,20 +8118,23 @@ msgstr "Noget gik galt. Prøv igen." msgid "Something wrong? Let us know." msgstr "Noget galt? Fortæl os om det." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "Desværre! Din session er udløbet. Log venligst ind igen." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Rækkefølge af svar" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Sorter svar efter" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Vis svar på et opslag i denne rækkefølge:" @@ -7579,9 +8161,9 @@ msgstr "Spam; for mange omtaler eller svar" msgid "Sports" msgstr "Sport" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." -msgstr "" +msgstr "Start en samtale, og den vil blive vist her." #: src/components/dms/dialogs/NewChatDialog.tsx:74 msgid "Start a new chat" @@ -7601,9 +8183,9 @@ msgstr "Kom i gang med at tilføje personer!" msgid "Start chat with {displayName}" msgstr "Start chat med {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Startpakke" @@ -7611,12 +8193,12 @@ msgstr "Startpakke" msgid "Starter pack by {0}" msgstr "Startpakke af {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Startpakke af <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Startpakke af dig" @@ -7638,19 +8220,21 @@ msgstr "Startpakker lader dig let dele dine foretrukne feeds og personer med din msgid "Status Page" msgstr "Statusside" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Trin {0} af {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Lager tømt. Genstart appen nu." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Storybook" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Afsend klage" msgid "Submit Appeal" msgstr "Afsend klage" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "Send anmeldelse" @@ -7676,10 +8260,14 @@ msgstr "Send anmeldelse" msgid "Subscribe" msgstr "Abonner" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Abonner på @{0} for at bruge disse labels:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "Abonner på kontoaktivitet" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Abonner på mærkningstjeneste" @@ -7692,8 +8280,12 @@ msgstr "Abonner på denne mærkningstjeneste" msgid "Subscribe to this list" msgstr "Abonner på denne liste" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "Succes" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Bekræftet!" @@ -7705,7 +8297,7 @@ msgstr "Verificering lykkedes" msgid "Suggested Accounts" msgstr "Foreslåede konti" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Foreslået til dig" @@ -7714,26 +8306,26 @@ msgstr "Foreslået til dig" msgid "Suggestive" msgstr "Seksuelle undertoner" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Solopgang" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Solnedgang" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Support" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Skift konto" @@ -7742,24 +8334,24 @@ msgstr "Skift konto" msgid "Switch Account" msgstr "Skift konto" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Skift konti" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "Skift til {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "System" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Systemlog" @@ -7767,6 +8359,18 @@ msgstr "Systemlog" msgid "Tags only" msgstr "Kun tags" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "Tryk for info" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "Tryk for mere info" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Fortæl os lidt mere" msgid "Terms" msgstr "Vilkår" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Vilkår" @@ -7846,11 +8452,7 @@ msgstr "Tekstfelt" #: src/view/com/posts/ShowLessFollowup.tsx:39 msgid "Thank you for your feedback! It has been sent to the feed operator." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Tak! Din e-mailadresse er nu bekræftet." +msgstr "Tak for din feedback! Den er sendt videre til feedets ejer." #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." @@ -7864,28 +8466,28 @@ msgstr "Tak, du har nu bekræftet din e-mailadresse. Du kan nu lukke denne dialo msgid "That contains the following:" msgstr "Som indeholder følgende:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Dette handle er allerede taget." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Startpakke ikke fundet." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Det var alt, folkens!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "Det var alt" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "Kontoen vil være i stand til at interagere med dig, når du fjerner blokering." @@ -7900,7 +8502,7 @@ msgstr "Appen vil blive genstartet" msgid "The author of this thread has hidden this reply." msgstr "Forfatteren af denne tråd har skjult dette svar." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Bluesky-webapplikationen" @@ -7920,10 +8522,6 @@ msgstr "Discover-feedet" msgid "The Discover feed now knows what you like" msgstr "Discover-feedet ved nu, hvad du synes om" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "Den indtastede e-mailadresse er identisk med din nuværende e-mailadresse." - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "Oplevelsen er bedre i appen. Download Bluesky nu, så fortsætter vi, hvor du slap." @@ -7944,8 +8542,16 @@ msgstr "Følgende labels er blevet sat på dit indhold." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "Følgende indstillinger vil blive brugt som standard, når du opretter nye opslag. Du kan ændre disse for hvert enkelt opslag fra skrivefeltet." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "Dit lands lovgivning kræver, at du bekræfter, at du er voksen, før du tilgår visse funktioner på Bluesky, såsom voksenindhold og direkte beskeder." + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "Dit lands lovgivning kræver, at du bekræfter, at du er voksen, for at tilgå visse funktioner. Tryk for at læse mere." + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Opslaget er muligvis blevet slettet." @@ -7953,9 +8559,10 @@ msgstr "Opslaget er muligvis blevet slettet." msgid "The Privacy Policy has been moved to <0/>" msgstr "Privatlivspolitikken er flyttet til <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "Den valgte video er større end 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "Den valgte video er større end 100 MB. Prøv igen med en mindre fil." #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "Tjenestevilkårene er flyttet til" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "Bekræftelseskoden, du har oplyst, er ugyldig. Tjek, at du har brugt den rigtige godkendelsekode, eller anmod om en ny" -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Tema" @@ -7990,14 +8597,14 @@ msgstr "Tema" msgid "There is no time limit for account deactivation, come back any time." msgstr "Der er ingen udløbsdato for en deaktiveret konto. Du kan vende tilbage når som helst." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Der kunne ikke skabes forbindelse til Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Der kunne ikke skabes forbindelse til serveren" @@ -8006,17 +8613,12 @@ msgstr "Der kunne ikke skabes forbindelse til serveren" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Der kunne ikke skabes forbindelse til serveren. Tjek din internetforbindelse og prøv igen." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Der kunne ikke skabes forbindelse til serveren" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Notifikationer kunne ikke indlæses. Tryk her for at prøve igen." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Opslag kunne ikke indlæses. Tryk her for at prøve igen." @@ -8037,7 +8639,7 @@ msgstr "Lister kunne ikke indlæses. Tryk her for at prøve igen." msgid "There was an issue fetching your service info" msgstr "Dine tjenesteindstillinger kunne ikke indlæses" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Feed kunne ikke fjernes. Tjek din internetforbindelse og prøv igen." @@ -8052,9 +8654,9 @@ msgstr "Anmeldelse kunne ikke afsendes. Tjek din internetforbindelse." msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Dine feeds kunne ikke opdateres. Tjek din internetforbindelse og prøv igen." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Dine feeds kunne ikke opdateres. Tjek din internetforbindelse og prøv i msgid "There was an issue! {0}" msgstr "Der opstod en fejl! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Der opstod en fejl! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Der opstod en fejl. Tjek din internetforbindelse og prøv igen." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Der opstod en uventet fejl i appen. Giv os besked om, at det er sket for dig!" @@ -8089,7 +8691,7 @@ msgstr "Der opstod en uventet fejl i appen. Giv os besked om, at det er sket for msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Der kommer mange nye brugere til Bluesky for tiden! Vi aktiverer din konto, så snart vi kan." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Disse indstillinger gælder kun dit følgerfeed." @@ -8146,7 +8748,7 @@ msgstr "Denne indhold ligger hos {0}. Vil du aktivere eksterne medier?" msgid "This content is not available because one of the users involved has blocked the other." msgstr "Dette indhold er ikke tilgængeligt, fordi nogle af de involverede brugere har blokeret hinanden." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Denne indhold kan ikke ses uden en Bluesky-konto." @@ -8156,7 +8758,11 @@ msgstr "Denne samtale er med en slettet eller deaktiveret konto. Tryk for valgmu #: src/components/dialogs/EmailDialog/screens/Update.tsx:156 msgid "This email is already associated with your account." -msgstr "" +msgstr "Denne e-mail er allerede tilknyttet din konto." + +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "Denne funktion tillader brugere at modtage notifikationer om dine nye opslag og svar. Hvem skal have mulighed for det?" #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." @@ -8164,13 +8770,13 @@ msgstr "Denne funktion er i beta. Du kan læse mere om dataeksport i <0>dette bl #: src/lib/hooks/useCleanError.ts:49 msgid "This feature is not available while using an app password. Please sign in with your main password." -msgstr "" +msgstr "Denne funktion er ikke tilgængelig, når du bruger en appadgangskode. Log ind med din primære adgangskode." #: src/lib/strings/errors.ts:21 msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Denne funktion er ikke tilgængelig, når du bruger en appadgangskode. Log ind med din primære adgangskode." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Dette feed oplever i øjeblikket mange besøgende og er midlertidigt utilgængelig. Prøv igen senere." @@ -8199,7 +8805,7 @@ msgstr "Denne oplysning vil ikke blive delt med andre brugere." #: src/components/live/EditLiveDialog.tsx:189 #: src/components/live/GoLiveDialog.tsx:160 msgid "This is not a valid link" -msgstr "" +msgstr "Dette er ikke et gyldigt link" #: src/components/moderation/ModerationDetailsDialog.tsx:168 msgid "This label was applied by the author." @@ -8209,11 +8815,11 @@ msgstr "Denne mærkat blev sat af forfatteren" msgid "This label was applied by you." msgstr "Denne mærkat blev sat på dig." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Denne mærkningstjeneste har ikke oplyst, hvilken mærkater den sætter, og den er muligvis inaktiv." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Dette link fører dig til følgende website:" @@ -8233,29 +8839,28 @@ msgstr "Denne liste er tom." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Denne moderationstjeneste er utilgængelig. Se herunder for flere oplysninger. Kontakt os, hvis dette problem varer ved." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Dette opslag er dateret <0>{0}, men det blev først oprettet på Bluesky <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Dette opslag har en ukendt interaktionsindstillinger. Din app trænger måske til at blive opdateret." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Dette opslag er slettet." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Dette opslag er kun synlig for indloggede brugere. Den vil ikke være synlig for brugere, der ikke er logget ind." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "Dette opslag er kun synligt for indloggede brugere." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Dette opslag vil blive skjult fra feeds og tråde. Denne handling kan ikke fortrydes." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "Dette opslags forfatter har ikke tilladt citatopslag." @@ -8263,11 +8868,11 @@ msgstr "Dette opslags forfatter har ikke tilladt citatopslag." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Denne profil er kun synlig for indloggede brugere. Den kan ikke ses af personer, der ikke er logget ind." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Dette svar vil blive vist i en skjult sektion nederst i din tråd og vil skjule notifikationer for yderligere svar - både for dig og andre" -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Denne tjeneste har ikke angivet tjenestevilkår eller privatlivspolitik." @@ -8275,6 +8880,10 @@ msgstr "Denne tjeneste har ikke angivet tjenestevilkår eller privatlivspolitik. msgid "This should create a domain record at:" msgstr "Dette skulle oprette en DNS-record på:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "Det tager normalt kun et øjeblik." + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Denne bruger har ikke et profilnavn og kan derfor ikke verificeres." @@ -8316,16 +8925,18 @@ msgstr "Denne bruger følger ikke nogen." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Dette vil fjerne \"{0}\" fra dine skjulte ord. Du kan altid tilføje det igen senere." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Dette vil fjerne @{0} fra din kvikadgangsliste." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Dette vil fjerne dit opslag fra dette citatopslag for alle brugere og erstatte det med en pladsholder." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Trådindstillinger" @@ -8334,24 +8945,27 @@ msgstr "Trådindstillinger" msgid "Thread preferences" msgstr "Indstillinger for tråde" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Indstillinger for tråde" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Trådet" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Trådvisning" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Trådindstillinger" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "Tid tilbage: {0, plural, one {# sekund} other {# sekunder}}" @@ -8362,7 +8976,7 @@ msgstr "For at deaktivere 2FA via e-mail, skal du bekræfte, at du har adgang ti #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215 msgid "To disable your email 2FA method, please verify your access to <0>{0}" -msgstr "" +msgstr "For at deaktivere 2FA via e-mail, skal du bekræfte din adgang til <0>{0}" #: src/components/dms/ReportConversationPrompt.tsx:19 msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." @@ -8376,42 +8990,56 @@ msgstr "Hvem ønsker du at klage til?" msgid "Today" msgstr "I dag" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Åbn/luk rullemenu" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Tryk for at aktivere eller deaktivere voksenindhold" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Slår lyden til/fra" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Top" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "Mest populære svar først" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Emne" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Oversæt" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "Trævisning" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Trends" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Populære videoer" @@ -8428,14 +9056,10 @@ msgstr "Prøv igen" msgid "TV" msgstr "Tv" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Tofaktorgodkendelse (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Indtast dit ønskede brugernavn" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Indtast din besked her" @@ -8453,7 +9077,7 @@ msgstr "Kan ikke forbinde. Tjek din internetforbindelse og prøv igen." #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Kan ikke kontakte din udbyder. Tjek din internetforbindelse." msgid "Unable to delete" msgstr "Kan ikke slette" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "Utilgængelig" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "Utilgængelig feedinformation" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Bloker ikke længere" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Bloker ikke længere" @@ -8486,7 +9126,7 @@ msgstr "Bloker ikke længere" msgid "Unblock account" msgstr "Bloker ikke længere konto" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Bloker ikke længere konto?" @@ -8495,13 +9135,13 @@ msgstr "Bloker ikke længere konto?" msgid "Unblock list" msgstr "Bloker ikke længere liste" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Fortryd deling" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Fortryd deling ({0, plural, one {# deling} other {# delinger}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Følg ikke længere" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Følg ikke længer {0}" @@ -8523,7 +9163,7 @@ msgstr "Følg ikke længere konto" msgid "Unfollows the user" msgstr "Ophører med at følge brugeren" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Ingen af de moderationstjenester, du abonnerer på, understøtter denne anmeldelsestype." @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "Fjern like" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Fjern ({0, plural, one {# like} other {# likes}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Skjul ikke længere" @@ -8555,8 +9195,8 @@ msgstr "Skjul ikke længere" msgid "Unmute {tag}" msgstr "Skjul ikke længere {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Skjul ikke længere samtale" msgid "Unmute list" msgstr "Skjul ikke længere liste" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Skjul ikke længere tråd" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Skjul ikke længere video" @@ -8597,8 +9237,8 @@ msgstr "Frigør feed" msgid "Unpin from home" msgstr "Frigør fra forside" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Frigør fra profil" @@ -8614,8 +9254,8 @@ msgstr "Frigjorde {0} fra forside" msgid "Unpinned from your feeds" msgstr "Frigjort fra dine feeds" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "Udsæt ikke længere påmindelsen" @@ -8636,7 +9276,7 @@ msgstr "Afmeld abonnement på denne mærkningstjeneste" msgid "Unsubscribed from list" msgstr "Abonnement på liste afmeldt" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Videoformat ikke understøttet" @@ -8662,8 +9302,8 @@ msgstr "Opdater <0>{displayName} i lister" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "Opdater e-mail" @@ -8676,17 +9316,17 @@ msgstr "Opdater til {domain}" msgid "Update your email" msgstr "Opdater din e-mail" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Opdatering af tilkobling til citat fejlede" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Opdatering af synlighed for svar fejlede" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Opdaterer..." @@ -8698,20 +9338,20 @@ msgstr "Upload et foto i stedet" msgid "Upload a text file to:" msgstr "Upload en tekstfil til:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Upload fra kamera" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Upload fra filer" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Upload fra bibliotek" msgid "Uploading images..." msgstr "Uploader billeder..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Uploader forhåndsvisning af link..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Uploader video..." @@ -8761,6 +9401,10 @@ msgstr "Brug anbefalede" msgid "Use this to sign in to the other app along with your handle." msgstr "Brug denne sammen med dit handle for at logge ind i en anden app." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "Brug din kontos e-mailadresse eller en anden gyldig e-mailadresse, såfremt KWS eller Bluesky har brug for at kontakte dig." + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Brugt af:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Brugerliste opdateret" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Brugernavn eller e-mailadresse" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "brugere, der følges af <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "brugere, der følger <0>@{0}" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Brugere, jeg følger" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Brugere i \"{0}\"" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Brugere du følger" @@ -8846,11 +9502,11 @@ msgstr "Værdi:" msgid "Verification failed, please try again." msgstr "Verificering fejlede, prøv igen." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "Verifikationsindstillinger" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "Verifikationsindstillinger" @@ -8870,31 +9526,37 @@ msgstr "Verificeret af:" msgid "Verify account" msgstr "Bekræft konto" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "Bekræft igen" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" -msgstr "Bekræft kode" +msgstr "" #: src/screens/Settings/components/ChangeHandleDialog.tsx:528 #: src/screens/Settings/components/ChangeHandleDialog.tsx:549 msgid "Verify DNS Record" msgstr "Bekræft DNS-record" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "Bekræft e-mail" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "Bekræft e-mailkode" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Bekræft e-mail-dialog" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "Bekræft nu" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Bekræft tekstfil" msgid "Verify this account?" msgstr "Verificer denne konto?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "Bekræft din alder" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Bekræft din e-mail" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Bekræft din e-mail" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "Verificering" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "Gennemfører alderstjek" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Version {appVersion}" +msgid "Version {0}" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Video" @@ -8928,7 +9598,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "Videobehandling fejlede" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Videofeed" @@ -8942,15 +9612,15 @@ msgstr "Videofeed fra {0}: {text}" msgid "Video Games" msgstr "Computerspil" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Video er sat på pause" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Video afspiller" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Video ikke fundet." @@ -8958,11 +9628,11 @@ msgstr "Video ikke fundet." msgid "Video settings" msgstr "Videoindstillinger" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Video uploadet" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Video: {0}" @@ -8979,11 +9649,11 @@ msgstr "Videoer må vare højst 3 minutter" msgid "View {0}'s avatar" msgstr "{0}s avatar" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Se {0}s profil" @@ -8991,7 +9661,7 @@ msgstr "Se {0}s profil" msgid "View {displayName}'s profile" msgstr "Se {displayName}s profil" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Vis blokeret brugers profil" @@ -9009,7 +9679,6 @@ msgstr "Se loghændelse" msgid "View details" msgstr "Læs mere" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Læs mere om anmeldelse af ophavsretskrænkelse" @@ -9022,23 +9691,23 @@ msgstr "Vis hele tråden" msgid "View information about these labels" msgstr "Vis information om disse mærkater" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Se flere" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Vis profil" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Vis avataren" @@ -9054,28 +9723,28 @@ msgstr "Se denne brugers verifikationer" msgid "View users who like this feed" msgstr "Vis brugere, der likede dette feed" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Se video" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Vis blokerede konti" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "Se dine standardinteraktionsindstillinger" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Vis dine feeds og udforsk flere" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Vis moderationslister" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Vis dine skjulte konti" @@ -9083,8 +9752,8 @@ msgstr "Vis dine skjulte konti" msgid "View your verifications" msgstr "Se dine verifikationer" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Viser hele billedet" @@ -9092,16 +9761,20 @@ msgstr "Viser hele billedet" msgid "Views video in immersive mode" msgstr "Viser videoen i fuldskærmstilstand" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" msgstr "Besøg website" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "Besøg dine notifikationsindstillinger" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Lydstyrke" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Advar om indhold og filtrer fra feeds" msgid "Watch now" msgstr "Se nu" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "Vi kunne ikke forbinde til den tjeneste, der udbyder dette tilpassede feed. Det kan være midlertidigt eller permanent utilgængeligt." + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "Vi kunne ikke finde denne liste. Den er sikkert blevet slettet." + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "Vi kunne ikke finde nogen resultater for dette hashtag." @@ -9128,7 +9809,7 @@ msgstr "Vi kunne ikke finde nogen resultater for dette hashtag." msgid "We couldn't find any results for that topic." msgstr "Vi kunne ikke finde nogen resultater for dette emne." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Vi kunne ikke indlæse denne samtale" @@ -9136,6 +9817,10 @@ msgstr "Vi kunne ikke indlæse denne samtale" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Vi forventer, at din konto vil være klar om {estimatedTime}." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "Vi samarbejder med <0>KWS om alderstjek. Når du klikker \"Start” herunder, vil KWS tjekke, om du tidligere har gennemført alderstjek med denne e-mailadresse i forbindelse med andre spil og tjenester, som benytter sig af KMS. Hvis ikke, vil KMS send dig en e-mail med en instruktioner til, hvordan du bekræfter din alder. Når du er færdig, bliver du sendt tilbage til Bluesky." + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Vi har sendt endnu en bekræftelses-e-mail til <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "God fornøjelse. Husk, at Bluesky er:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Vi løb tør for opslag fra konti, du følger. Her er de seneste fra <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "Vi anbefaler at vælge mindst to interesser." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Vi har sendt en e-mail til <0>{0} med et link. Klik på det for at afslutte bekræftelsesforløbet." -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Vi kunne ikke afgøre, om du har lov til at uploade videoer. Prøv igen." @@ -9164,10 +9849,14 @@ msgstr "Vi kunne ikke afgøre, om du har lov til at uploade videoer. Prøv igen. msgid "We were unable to load your birth date preferences. Please try again." msgstr "Vi kunne ikke indlæse dine fødselsdato. Prøv igen." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "Vi kunne ikke indlæse dine konfigurede mærkningstjenester." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "Vi kunne ikke modtage godkendelsen pga. en forbindelsesfejl. Hvis vi modtager den senere, vil din konto blive opdateret automatisk." + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Vi kunne ikke få forbindelse. Prøv igen for at fortsætte opsætningen af din konto. Hvis det fortsat ikke virker, kan du springe dette trin over." @@ -9176,7 +9865,7 @@ msgstr "Vi kunne ikke få forbindelse. Prøv igen for at fortsætte opsætningen msgid "We will let you know when your account is ready." msgstr "Vi giver dig besked, når din konto er klar." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Vi vil sende en e-mail til <0>{0} med et link. Klik på det for at afslutte bekræftelsesforløbet." @@ -9184,6 +9873,22 @@ msgstr "Vi vil sende en e-mail til <0>{0} med et link. Klik på det for at a msgid "We'll use this to help customize your experience." msgstr "Vi vil bruge dette til at tilpasse din oplevelse." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "Vi tjekker din alder på vores servere. Dette tager normalt kun et øjeblik." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "Vi kan desværre ikke starte alderstjek for din konto. <0>Kontakt support for hjælp." + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Vi har netværksproblemer, prøv igen." msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Vi lancerer en nyt system til validering på Bluesky — et tydeligt flueben." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Vi er glade for at have dig med!" @@ -9205,15 +9910,15 @@ msgstr "Beklager, men vi kunne ikke indlæse denne liste. Hvis problemet varer v msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Beklager, men vi kunne ikke indlæse dine skjulte ord. Prøv igen." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Beklager, men din søgning kunne ikke gennemføres. Prøv igen om lidt." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Beklager! Det opslag, du svarer på, er blevet slettet." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Beklager! Vi kan ikke finde den side, du leder efter." @@ -9222,6 +9927,26 @@ msgstr "Beklager! Vi kan ikke finde den side, du leder efter." msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Beklager! Du kan kun abonnere på 20 mærkningstjenester, og du har nået denne grænse." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "Alderstjek er gennemført. Du kan nu lukke denne dialog." + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Velkommen tilbage!" @@ -9240,7 +9965,7 @@ msgstr "Hvad vil du kalde din startpakke?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Hvad sker der?" @@ -9256,11 +9981,11 @@ msgstr "Hvilke sprog bruges i dette opslag?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Hvilke sprog ønsker du at se i dine algoritmiske feeds?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Hvem kan interagere med dette opslag?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Hvem kan svare" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "Hvem kan verificere?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Ups!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "Ups! Populære videoer kunne ikke indlæses." @@ -9322,12 +10047,12 @@ msgstr "Hvorfor skal denne bruger gennemgås?" msgid "Write a message" msgstr "Skriv en besked" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Skriv dit opslag" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Skriv dit svar" @@ -9343,7 +10068,7 @@ msgstr "Forkert DID returneret fra server. Modtog: {0}" #: src/components/live/EditLiveDialog.tsx:153 #: src/components/live/GoLiveDialog.tsx:129 msgid "www.mylivestream.tv" -msgstr "" +msgstr "www.minlivestream.tv" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:87 msgid "Yes" @@ -9358,11 +10083,11 @@ msgstr "Ja, deaktiveret" msgid "Yes, delete this starter pack" msgstr "Ja, slet denne startpakke" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Ja, afkobl" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Ja, skjul" @@ -9378,6 +10103,10 @@ msgstr "I går" msgid "You" msgstr "Dig" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "Du er en autoriseret verifikator" @@ -9386,6 +10115,10 @@ msgstr "Du er en autoriseret verifikator" msgid "You are creating an account on" msgstr "Du er ved at oprette en konto på" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "Du har i øjeblikket ikke adgang til Blueskys alderstjek. <0>Kontakt vores moderatorteam, hvis du mener, at dette er en fejl." + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Du er i kø." @@ -9403,7 +10136,7 @@ msgstr "Du er ikke længere live" msgid "You are not allowed to go live" msgstr "Du har ikke adgang til at gå live" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Du har ikke adgang til at uploade videoer." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "Du er verificeret" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "Du er verificeret. Du vil miste din verificering, hvis du ændrer dit profilnavn. <0>Læs mere." @@ -9441,10 +10173,18 @@ msgstr "Du kan også finde nye specialbyggede feeds, du kan følge." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Du kan også deaktivere din konto midlertidigt og genaktivere den når som helst." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "I appen kan du kan vælge, om chatnotifikationer skal være med lyd" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Du kan fortsætte igangværende samtaler, uanset hvilken indstilling du vælger." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "Du kan nu vælge at blive notificeret om opslag fra udvalgte personer. Hvis du ønsker at modtage opdateringer fra en bruger, gå til deres profil og find det nye klokkeikon nær Følg-knappen." + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Du kan nu logge ind med din nye adgangskode." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Du kan genaktivere din konto ved at logge ind. Andre brugere vil igen kunne se din profil og dine opslag." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "Du kan angive standardinteraktionsindstillinger under <0>Indstillinger → Moderation → Interaktionsindstillinger." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Du kan opdatere dette senere under Indstillinger." @@ -9472,7 +10212,7 @@ msgstr "Du har ikke nogen følgere." msgid "You don't follow any users who follow @{name}." msgstr "Du følger ikke nogen brugere, som følger @{name}" -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "Du har pt. ingen chatanmodninger." @@ -9480,15 +10220,15 @@ msgstr "Du har pt. ingen chatanmodninger." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Du har endnu ingen invitationskoder. Vi sender dig nogen, når du har været på Bluesky lidt længere." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Do har ikke nogen fastgjorte feeds." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Du har ikke nogen gemte feeds." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Du har blokeret forfatteren, eller du er blevet blokeret af forfatteren." @@ -9502,6 +10242,10 @@ msgstr "Du har blokeret denne bruger" msgid "You have blocked this user. You cannot view their content." msgstr "Du har blokeret denne bruger. Du kan ikke se deres indhold." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "Du har deaktiveret alle notifikationer ved svar, citat og omtale, så denne fane vil ikke længere blive opdateret. For at ændre dette, gå til <0>notifikationsindstillingerne." + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Du har skjult denne konto." msgid "You have muted this user" msgstr "Du har skjult denne bruger" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Du har endnu ingen samtaler. Start en!" @@ -9547,7 +10291,7 @@ msgstr "Du har endnu ikke blokeret nogen konti. Du kan blokere en konto ved at g msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Du har endnu ikke skjult nogen konti. Du kan skjule en konto ved at gå til profilen og vælge \"Skjul konto\" i menuen." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Du er nået til slutningen" @@ -9572,6 +10316,10 @@ msgstr "Du har endnu ikke skjult ord eller tags" msgid "You hid this reply." msgstr "Du skjulte dette svar." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "Du har allerede påbegyndt dette forløb for {0} siden. Det kan tage op til fem minutter for en e-mail at nå din indbakke. Vent nogle minutter, før du prøver igen." + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Du kan klage over andres mærkater, hvis du mener, de er sat ved en fejl." @@ -9592,7 +10340,7 @@ msgstr "Du må tilføje højst 3 feeds" msgid "You may only select up to 4 images" msgstr "Du må vælge højst 4 billeder" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "Du skal være mindst 13 år gammel for at oprette en konto." @@ -9600,6 +10348,14 @@ msgstr "Du skal være mindst 13 år gammel for at oprette en konto." msgid "You must be following at least seven other people to generate a starter pack." msgstr "Du skal følge mindst syv andre konti for at oprette en startpakke." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "Du skal gennemføre alderstjek for at tilgå indstillingerne herunder." + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "Du skal gennemføre alderstjek for at tilgå dette skærmbillede." + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Du skal give adgang til dit fotobibliotek for at gemme en QR-kode" @@ -9608,6 +10364,11 @@ msgstr "Du skal give adgang til dit fotobibliotek for at gemme en QR-kode" msgid "You must select at least one labeler for a report" msgstr "Du skal vælge mindst én mærkningstjeneste for at anmelde" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "Du skal logge ind for at se dette opslag." + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "Du skal bekræfte din e-mailadresse, før du kan aktivere 2FA via e-mail." @@ -9616,7 +10377,7 @@ msgstr "Du skal bekræfte din e-mailadresse, før du kan aktivere 2FA via e-mail msgid "You previously deactivated @{0}." msgstr "Du har tidligere deaktiveret @{0}." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "Du vil nok foretrække at genstarte appen nu." @@ -9628,16 +10389,20 @@ msgstr "Du reagerede med {0}" msgid "You reacted {0} to {1}" msgstr "Du reagerede med {0} på {1}" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Du vil blive logget ud af alle dine konti." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "Du vil ikke længere modtage notifikationer om {0}" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Du vil ikke længere modtage notifikatoiner for denne tråd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Du vil nu modtage notifikationer for denne tråd" @@ -9657,11 +10422,11 @@ msgstr "Dig: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Dig: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Du kommer til at følge de foreslåede brugere og feeds, når du har afsluttet oprettelsen af din konto!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Du kommer til at følge de foreslåede brugere, når du har afsluttet oprettelsen af din konto!" @@ -9673,9 +10438,9 @@ msgstr "Du følger disse konti og {0} andre" msgid "You'll follow these people right away" msgstr "Du kommer til at følge disse konti med det samme" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Du vil modtage en e-mail på <0>{0} for at bekræfte, at det er dig." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "Du vil nu modtager notifikationer om {0}!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "Du har valgt at skjule et ord eller tag i dette opslag." msgid "You've found some people to follow" msgstr "Du har fundet nogle personer, du kan følge" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Du er nået enden af dit feed! Find flere konti, du kan føge." @@ -9711,19 +10480,23 @@ msgstr "Du er nået enden af dit feed! Find flere konti, du kan føge." msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Du har nået det maksimalt tilladte antal forespørgsler. Prøv igen senere." -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Du har nået din daglige grænse for videouploads (for mange bytes)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Du har nået din daglige grænse for videouploads (for mange videoer)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Du er løbet tør for videoer at se. Måske er det på tide at holde en pause?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Din konto" @@ -9735,7 +10508,7 @@ msgstr "Din konto blev slettet" msgid "Your account has been suspended" msgstr "Din konto er suspenderet" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Din konto er ikke gammel nok til videoupload. Prøv igen senere." @@ -9751,11 +10524,11 @@ msgstr "Din konto overtræder <0>Bluesky Socials tjenestevilkår. Du har få msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "Din klage er blevet afsendt. Hvis du får medhold i din klage, vil du få besked via e-mail." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Din fødselsdato" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Din browser understøtter ikke dette videoformat. Prøv med en anden browser." @@ -9771,13 +10544,15 @@ msgstr "Dit valg vil blive anvendt for links fremover. Du kan når som helst æn msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Dit nuværende handle, <0>{0}, vil automatisk blive reserveret til dig. Du kan når som helst skifte tilbage til dette handle." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "Din e-mailadresse blev opdateret, men den er endnu ikke bekræftet. Næste trin er at bekræfte din e-mail." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "Din e-mail" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Din e-mail ser ud til at være ugyldig." @@ -9786,15 +10561,11 @@ msgstr "Din e-mail ser ud til at være ugyldig." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "Din e-mail er endnu ikke bekræftet. Bekræft din e-mail for at få glæde af alle Blueskys muligheder." -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Din e-mail er endnu ikke bekræftet. Dette er et vigtigt sikkerhedselement, som vi anbefaler." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "Dit første like!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "Dine følgere" @@ -9806,19 +10577,15 @@ msgstr "Dit følgerfeed er tomt! Følg flere brugere for at se, hvad der foregå msgid "Your full handle will be <0>@{0}" msgstr "Dit fulde handle bliver <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "Dit fulde brugernavn bliver <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "Dine interesser" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "Dine interesser blev opdateret!" @@ -9835,15 +10602,15 @@ msgstr "Dine skjulte ord" msgid "Your password has been changed successfully!" msgstr "Din adgangskode blev ændret!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "Din adgangskode skal bestå af mindst 8 tegn." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Dit opslag blev publiceret" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Dine opslag blev publiceret" @@ -9851,15 +10618,19 @@ msgstr "Dine opslag blev publiceret" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Dine opslag, likes og blokeringer er offentlige. Dine skjulte ord, tags og konti er private." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "Dit foretrukne sprog" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Din profil, dine opslag, feeds og lister vil ikke længere kunne ses af andre Bluesky-brugere. Du kan genaktivere din konto når som helst ved at logge ind." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Dit svar blev publiceret" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "Din anmeldelse vil blive sendt til <0>{0}." @@ -9867,7 +10638,7 @@ msgstr "Din anmeldelse vil blive sendt til <0>{0}." msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Din anmeldelse vil blive sendt til Bluesky Moderationstjeneste" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "Dine valgte interesser hjælper os med at vise dig relevant indhold." diff --git a/src/locale/locales/de/messages.po b/src/locale/locales/de/messages.po index 3ded55d4d4..fa4b0881f4 100644 --- a/src/locale/locales/de/messages.po +++ b/src/locale/locales/de/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: de\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 00:49\n" "Last-Translator: \n" "Language-Team: German\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,7 +27,7 @@ msgstr "(aktiv)" msgid "(contains embedded content)" msgstr "(enthält eingebettete Inhalte)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(keine E-Mail)" @@ -57,7 +57,7 @@ msgstr "{0, plural, one {# Kennzeichnung wurde} other {# Kennzeichnungen wurden} #: src/screens/Post/PostLikedBy.tsx:41 msgid "{0, plural, one {# like} other {# likes}}" -msgstr "{0, plural, one {# Like} other {# Likes}}" +msgstr "{0, plural, one {# Gefällt mir} other {# Gefällt mir}}" #: src/lib/hooks/useTimeAgo.ts:149 msgid "{0, plural, one {# minute} other {# minutes}}" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# Repost} other {# Reposts}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# Sekunde} other {# Sekunden}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# ungelesenes Element} other {# ungelesene Elemente}}" @@ -90,29 +90,32 @@ msgstr "{0, plural, one {# ungelesenes Element} other {# ungelesene Elemente}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {#Mo} other {#Mo}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {Follower} other {Follower}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {Folge ich} other {Folge ich}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" -msgstr "{0, plural, one {Like} other {Likes}}" +msgstr "{0, plural, one {Gefällt mir} other {Gefällt mir}}" #: src/screens/Profile/Header/Metrics.tsx:58 msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {Post} other {Posts}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {Zitat} other {Zitate}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {Repost} other {Reposts}}" @@ -123,7 +126,7 @@ msgstr "{0, plural, other {{1} Posts}}" #. Number of users (always at least 25) who have joined Bluesky using a specific starter pack #: src/screens/StarterPack/StarterPackScreen.tsx:490 msgid "{0, plural, other {# people have}} used this starter pack!" -msgstr "{0, plural, other {# Personen haben}} dieses Starterpaket verwendet!" +msgstr "{0, plural, other {# Personen haben}} dieses Startpaket verwendet!" #. Pattern: {wordValue} in tags #: src/components/dialogs/MutedWords.tsx:475 @@ -135,19 +138,27 @@ msgstr "{0} <0>in <1>Tags" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>in <1>Text & Tags" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} Folge ich" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" -msgstr "" +msgstr "{0} ist live" #: src/components/live/queries.ts:39 msgid "{0} is not a valid URL" -msgstr "" +msgstr "{0} ist keine gültige URL" + +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "{0} ist nicht verfügbar" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} ist diese Woche beigetreten" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} von {1}" @@ -164,8 +175,16 @@ msgstr "{0} hat mit {1} reagiert" msgid "{0} reacted {1} to {2}" msgstr "{0} hat mit {1} auf {2} reagiert" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0}, ein Feed von {1}, mit „Gefällt mir“ markiert von {2}" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0}, eine Liste von {1}" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "Profilbild von {0}" @@ -197,12 +216,12 @@ msgstr "{0} Min." msgid "{0}s" msgstr "{0} Sek." -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# ungelesenes Element} other {# ungelesene Elemente}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Startpaket von {displayName}" @@ -214,174 +233,173 @@ msgstr "{estimatedTimeHrs, plural, one {Stunde} other {Stunden}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {Minute} other {Minuten}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiterer} other {{formattedAuthorsCount} weitere}} folgen dir" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiterem} other {{formattedAuthorsCount} weiteren}} gefällt dein benutzerdefinierter Feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiteren} other {{formattedAuthorsCount} weiteren}} gefällt dein Post" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" +msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere} other {{formattedAuthorsCount} weitere}} haben deinen Repost mit „Gefällt mir“ markiert" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" -msgstr "" +msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere} other {{formattedAuthorsCount} weitere}} haben ihre Verifizierungen von deinem Account entfernt" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiterer} other {{formattedAuthorsCount} weitere}} haben deinen Post repostet" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere} other {{formattedAuthorsCount} weitere}} haben deinen Repost repostet" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" -msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiterer} other {{formattedAuthorsCount} weitere}} haben sich mit deinem Starterpaket registriert" +msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiterer} other {{formattedAuthorsCount} weitere}} haben sich mit deinem Startpaket registriert" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" -msgstr "" +msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere} other {{formattedAuthorsCount} weitere}} haben dich verifiziert" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} folgt dir" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} folgt dir zurück" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} gefällt dein benutzerdefinierter Feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} gefällt dein Post" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" -msgstr "" +msgstr "{firstAuthorLink} hat deinen Repost mit „Gefällt mir“ markiert" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} hat die Verifizierung deines Accounts entfernt" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} hat deinen Post repostet" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" -msgstr "" +msgstr "{firstAuthorLink} hat deinen Repost erneut geteilt" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" -msgstr "" +msgstr "{firstAuthorLink} hat sich mit deinem Startpaket registriert" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} hat dich verifiziert" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiterer} other {{formattedAuthorsCount} weitere}} folgen dir" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiteren} other {{formattedAuthorsCount} weiteren}} gefällt dein benutzerdefinierter Feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiteren} other {{formattedAuthorsCount} weiteren}} gefällt dein Post" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" +msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere} other {{formattedAuthorsCount} weitere}} haben deinen Repost mit „Gefällt mir“ markiert" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" -msgstr "" +msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere} other {{formattedAuthorsCount} weitere}} haben ihre Verifizierungen von deinem Account entfernt" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiterer} other {{formattedAuthorsCount} weitere}} haben deinen Post repostet" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere} other {{formattedAuthorsCount} weitere}} haben deinen Repost repostet" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" -msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiterer} other {{formattedAuthorsCount} weitere}} haben sich mit deinem Starterpaket registriert" +msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiterer} other {{formattedAuthorsCount} weitere}} haben sich mit deinem Startpaket registriert" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" -msgstr "" +msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere} other {{formattedAuthorsCount} weitere}} haben dich verifiziert" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} folgt dir" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} folgt dir zurück" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} gefällt dein benutzerdefinierter Feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} gefällt dein Post" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" -msgstr "" +msgstr "{firstAuthorName} hat deinen Repost mit „Gefällt mir“ markiert" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} hat die Verifizierung deines Accounts entfernt" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} hat deinen Post repostet" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" -msgstr "" +msgstr "{firstAuthorName} hat deinen Repost erneut geteilt" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} hat sich mit deinem Startpaket angemeldet" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} hat dich verifiziert" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} Folge ich" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "{handle} kann nicht angeschrieben werden" #: src/components/live/utils.ts:15 msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" -msgstr "" +msgstr "{hours, plural, one {# Stunde {minutesString}} other {# Stunden {minutesString}}}" #: src/components/live/utils.ts:19 msgid "{hours, plural, one {# hour} other {# hours}}" -msgstr "" +msgstr "{hours, plural, one {# Stunde} other {# Stunden}}" #. Number of users (always at least 50) who have joined Bluesky using a specific starter pack #: src/components/StarterPack/StarterPackCard.tsx:101 @@ -390,9 +408,9 @@ msgstr "{joinedAllTimeCount, plural, other {# Nutzer sind}} beigetreten!" #: src/components/live/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" -msgstr "" +msgstr "{minutes, plural, one {# Minute} other {# Minuten}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# ungelesenes Element} other {# ungelesene Elemente}}" @@ -402,7 +420,7 @@ msgstr "{profileName} ist Bluesky vor {0} beigetreten" #: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" -msgstr "{profileName} ist Bluesky vor {0} mit einem Starterpaket beigetreten" +msgstr "{profileName} ist Bluesky vor {0} mit einem Startpaket beigetreten" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" #: src/screens/Search/modules/ExploreTrendingTopics.tsx:111 @@ -432,15 +450,15 @@ msgstr "Verifizierungen von {userName}" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} und {2, plural, one {# weitere Person} other {# weitere Personen}} sind in deinem Startpaket enthalten" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" -msgstr "<0>{0}, <1>{1} und {2, plural, one {# weitere Person} other {# weitere Personen}} sind in deinem Starterpaket enthalten" +msgstr "<0>{0}, <1>{1} und {2, plural, one {# weitere Person} other {# weitere Personen}} sind in deinem Startpaket enthalten" #: src/view/shell/Drawer.tsx:116 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {Follower} other {Follower}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {Folge ich} other {Folge ich}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} und<1> <2>{1} sind in deinem Startpaket enthalten" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} ist in deinem Startpaket enthalten" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} Mitglieder" @@ -466,13 +484,13 @@ msgstr "<0>{0} Mitglieder" msgid "<0>{date} at {time}" msgstr "<0>{date} um {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Experimentell: Wenn diese Einstellung aktiviert ist, erhältst du nur Mitteilungen zu Antworten und Zitaten von Nutzern, denen du folgst. Wir werden hier mit der Zeit weitere Einstellungsmöglichkeiten hinzufügen." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<0>Einloggen<1> oder <2>einen Account erstellen<3> <4>um nach Nachrichten, Sport, Politik und allem anderen zu suchen, was auf Bluesky passiert." -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" -msgstr "<0>Du und<1> <2>{0} sind in deinem Starterpaket enthalten" +msgstr "<0>Du und<1> <2>{0} sind in deinem Startpaket enthalten" #: src/screens/Profile/Header/Handle.tsx:53 msgid "⚠Invalid Handle" @@ -503,10 +521,14 @@ msgstr "eine Nachricht" msgid "A new form of verification" msgstr "Eine neue Form der Verifizierung" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "Ein Screenshot einer Profilseite mit einem Glocken-Symbol neben dem Folgen-Button, das auf die neue Funktion für Aktivitätsmitteilungen hinweist." + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Über" @@ -524,25 +546,25 @@ msgstr "Chat-Anfrage annehmen" msgid "Accept Request" msgstr "Anfrage annehmen" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Barrierefreiheit" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Barrierefreiheitseinstellungen" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Account gefolgt" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Account stummgeschaltet" msgid "Account Muted by List" msgstr "Account durch Liste stummgeschaltet" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Account-Optionen" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Account aus dem Schnellzugriff entfernt" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Account entfolgt" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -596,7 +618,17 @@ msgstr "Account nicht mehr stummgeschaltet" #: src/components/verification/VerifierDialog.tsx:96 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." -msgstr "" +msgstr "Accounts mit einem gewellten blauen Häkchen <0><1/> können andere verifizieren. Diese vertrauenswürdigen Verifizierer werden von Bluesky ausgewählt." + +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "Aktivität von anderen" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "Aktivitätsmitteilungen" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 @@ -604,7 +636,7 @@ msgstr "" msgid "Add" msgstr "Hinzufügen" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Füge {0} weitere hinzu, um fortzufahren" @@ -619,7 +651,7 @@ msgstr "Inhaltswarnung hinzufügen" #: src/components/live/GoLiveDialog.tsx:101 msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event." -msgstr "" +msgstr "Füge deinem Profil einen temporären Live-Status hinzu. Wenn jemand auf deinen Avatar klickt, sieht er Informationen zu deinem Live-Event." #: src/view/screens/ProfileList.tsx:924 #: src/view/screens/ProfileList.tsx:942 @@ -634,8 +666,8 @@ msgstr "Account hinzufügen" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Alt-Text hinzufügen" msgid "Add alt text (optional)" msgstr "Alt-Text hinzufügen (optional)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Füge einen weiteren Account hinzu" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Einen weiteren Post hinzufügen" @@ -670,8 +702,8 @@ msgstr "App-Passwort hinzufügen" msgid "Add emoji reaction" msgstr "Emoji-Reaktion hinzufügen" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Weitere Details hinzufügen (optional)" @@ -683,7 +715,7 @@ msgstr "Stummgeschaltetes Wort mit den gewählten Einstellungen hinzufügen" msgid "Add muted words and tags" msgstr "Stummgeschaltete Wörter und Tags hinzufügen" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Neuen Post hinzufügen" @@ -694,7 +726,7 @@ msgstr "Personen hinzufügen" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79 msgid "Add people to list" -msgstr "" +msgstr "Personen zur Liste hinzufügen" #: src/components/dms/EmojiPopup.android.tsx:55 msgid "Add Reaction" @@ -704,7 +736,7 @@ msgstr "Reaktion hinzufügen" msgid "Add recommended feeds" msgstr "Empfohlene Feeds hinzufügen" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Füge deinem Startpaket einige Feeds hinzu!" @@ -725,10 +757,6 @@ msgstr "Füge diesen Feed zu deinen Feeds hinzu" msgid "Add to lists" msgstr "Zu Listen hinzufügen" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Zu meinen Feeds hinzufügen" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "Nutzer zur Liste hinzufügen" @@ -738,11 +766,11 @@ msgstr "Nutzer zur Liste hinzufügen" msgid "Added to list" msgstr "Zur Liste hinzugefügt" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Zu meinen Feeds hinzugefügt" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "Zusätzliche Angaben (max. 1000 Zeichen)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Zusätzliche Details (max. 300 Zeichen)" @@ -750,18 +778,18 @@ msgstr "Zusätzliche Details (max. 300 Zeichen)" msgid "Adult" msgstr "Für Erwachsene" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Inhalt für Erwachsene" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Inhalte für Erwachsene können nur über das Web unter <0>bsky.app aktiviert werden." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Inhalte für Erwachsene sind deaktiviert." @@ -770,16 +798,32 @@ msgstr "Inhalte für Erwachsene sind deaktiviert." msgid "Adult Content labels" msgstr "Kennzeichnungen für Inhalt für Erwachsene" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Erweitert" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "Altersverifikation" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "Anfrage zur Altersverifikation konnte nicht gesendet werden, bitte versuche es erneut." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "Anfrage zur Altersverifikation wurde übermittelt" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "Die Altersverifikation dauert nur wenige Minuten" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" -msgstr "" +msgstr "alice@example.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Alle" @@ -793,7 +837,7 @@ msgstr "Alle Accounts wurden gefolgt!" msgid "All languages" msgstr "Alle Sprachen" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "All deine gespeicherten Feeds an einem Ort." @@ -802,22 +846,27 @@ msgstr "All deine gespeicherten Feeds an einem Ort." msgid "Allow access to your direct messages" msgstr "Erlaube den Zugriff auf deine Direktnachrichten" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Erlaube neue Nachrichten von" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "Anderen erlauben, über meine Posts Mitteilungen zu erhalten" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Zitieren dieses Posts erlauben" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Antworten erlauben von:" #: src/screens/Settings/AppPasswords.tsx:200 msgid "Allows access to direct messages" -msgstr "" +msgstr "Ermöglicht Zugriff auf Direktnachrichten" #: src/screens/Login/ForgotPasswordForm.tsx:171 #: src/view/com/modals/ChangePassword.tsx:182 @@ -828,13 +877,13 @@ msgstr "Hast du bereits einen Code?" msgid "Already signed in as @{0}" msgstr "Bereits angemeldet als @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,13 +893,13 @@ msgstr "ALT" msgid "Alt text" msgstr "Alt-Text" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Alt-Text" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." -msgstr "Alt-Text beschreibt Bilder für blinde und sehbehinderte Benutzer und hilft, den Kontext für alle zu vermitteln." +msgstr "Alt-Text beschreibt Bilder für blinde und sehbehinderte Leser und hilft, den Kontext für alle zu vermitteln." #: src/view/com/composer/GifAltText.tsx:179 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 @@ -861,27 +910,19 @@ msgstr "Alt-Text wird gekürzt. {MAX_ALT_TEXT, plural, other {Limit: {0} Zeichen msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Eine E-Mail wurde an {0} gesendet. Sie enthält einen Bestätigungscode, den du unten eingeben kannst." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Eine E-Mail wurde versendet! Bitte gib unten den Bestätigungscode aus der E-Mail ein." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Ein Fehler ist aufgetreten" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Ein Fehler ist aufgetreten" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Beim Komprimieren des Videos ist ein Fehler aufgetreten." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "Beim Abrufen des Feeds ist ein Fehler aufgetreten." @@ -889,11 +930,11 @@ msgstr "Beim Abrufen des Feeds ist ein Fehler aufgetreten." msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Beim Generieren deines Startpakets ist ein Fehler aufgetreten. Möchtest du es erneut versuchen?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Beim Laden des Videos ist ein Fehler aufgetreten. Bitte versuche es später erneut." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Beim Laden des Videos ist ein Fehler aufgetreten. Bitte versuche es erneut." @@ -910,7 +951,7 @@ msgstr "Bei der Auswahl des Videos ist ein Fehler aufgetreten" msgid "An error occurred while trying to follow all" msgstr "Beim Versuch, allen zu folgen, ist ein Fehler aufgetreten." -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Beim Hochladen des Videos ist ein Fehler aufgetreten." @@ -934,8 +975,8 @@ msgstr "Beim Öffnen des Chats ist ein Problem aufgetreten" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -943,7 +984,7 @@ msgstr "Ein Problem ist aufgetreten, bitte versuche es erneut." #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118 msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name." -msgstr "" +msgstr "Ein Mockup eines iPhones, auf dem die Bluesky-App mit dem Profil eines verifizierten Nutzers geöffnet ist, dessen Anzeigename mit einem blauen Häkchen versehen ist." #: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" @@ -954,7 +995,7 @@ msgstr "Ein unbekannter Fehler ist aufgetreten" msgid "an unknown labeler" msgstr "ein unbekannter Kennzeichner" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "und" @@ -963,10 +1004,14 @@ msgstr "und" msgid "Animals" msgstr "Tiere" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "Animiertes GIF" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "Ankündigung" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "Ankündigung der Verifizierung auf Bluesky" @@ -980,7 +1025,13 @@ msgstr "Asoziales Verhalten" msgid "Anybody can interact" msgstr "Jeder kann interagieren" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "Jeder, der mir folgt" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "App-Passwortnamen dürfen nur Buchstaben, Zahlen, Leerzeichen, Bindestri msgid "App password names must be at least 4 characters long" msgstr "Namen von App-Passwörtern müssen mindestens 4 Zeichen enthalten" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "App-Passwörter" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "App-Passwörter" @@ -1053,10 +1104,10 @@ msgstr "Suspendierung anfechten" msgid "Appeal this decision" msgstr "Einspruch gegen diese Entscheidung" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Erscheinungsbild" @@ -1065,12 +1116,20 @@ msgstr "Erscheinungsbild" msgid "Apply default recommended feeds" msgstr "Standardmäßig empfohlene Feeds anwenden" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "Pull Request anwenden" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Archiviert von {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Archivierter Post" @@ -1078,7 +1137,7 @@ msgstr "Archivierter Post" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Bist du sicher, dass du das App-Passwort „{0}“ löschen möchtest?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Möchtest du diese Nachricht wirklich löschen? Die Nachricht wird für dich gelöscht, nicht jedoch für den anderen Teilnehmer." @@ -1098,19 +1157,15 @@ msgstr "Bist du sicher, dass du diese Konversation verlassen möchtest?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Möchtest du diese Konversation wirklich verlassen? Deine Nachrichten werden für dich gelöscht, nicht jedoch für den anderen Teilnehmer." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Bist du sicher, dass du {0} von deinen Feeds entfernen möchtest?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Bist du sicher, dass du dies von deinen Feeds entfernen möchtest?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Bist du sicher, dass du diesen Entwurf verwerfen möchtest?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Bist du sicher, dass du diesen Post verwerfen möchtest?" @@ -1131,29 +1186,26 @@ msgstr "Kunst" msgid "Artistic or non-erotic nudity." msgstr "Künstlerische oder nicht-erotische Nacktheit." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" -msgstr "" +msgstr "Thema für den Algorithmus festlegen" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Mindestens 3 Zeichen" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Optionen für Autoplay wurden in die <0>Inhalts- und Medien-Einstellungen verschoben." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Videos und GIFs automatisch abspielen" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "Verfügbar" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Videos und GIFs automatisch abspielen" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Zurück" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Zurück zu Chats" @@ -1184,39 +1236,55 @@ msgstr "Bevor du eine Liste erstellen kannst, musst du zuerst deine E-Mail verif #: src/lib/hooks/useOpenComposer.tsx:14 msgid "Before creating a post or replying, you must first verify your email." -msgstr "" +msgstr "Bevor du einen Post erstellen oder antworten kannst, musst du zuerst deine E-Mail verifizieren." #: src/components/StarterPack/ProfileStarterPacks.tsx:235 #: src/components/StarterPack/ProfileStarterPacks.tsx:245 msgid "Before creating a starter pack, you must first verify your email." -msgstr "" +msgstr "Bevor du ein Startpaket erstellen kannst, musst du zuerst deine E-Mail verifizieren." #: src/screens/Messages/components/RequestButtons.tsx:235 msgid "Before you can accept this chat request, you must first verify your email." -msgstr "" +msgstr "Bevor du diese Chat-Anfrage annehmen kannst, musst du zuerst deine E-Mail verifizieren." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "Bevor du Mitteilungen zu den Posts von {name} erhalten kannst, musst du zuerst deine E-Mail verifizieren." #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." -msgstr "" +msgstr "Bevor du einem anderen Nutzer eine Nachricht senden kannst, musst du zuerst deine E-Mail verifizieren." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "Starten" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "Altersverifikationsprozess starten" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "Beginne den Altersverifikationsprozess, indem du die folgenden Felder ausfüllst." #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Geburtstag" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Blockieren" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Blockieren" msgid "Block account" msgstr "Account blockieren" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Account blockieren?" @@ -1262,20 +1330,20 @@ msgstr "Nutzer blockieren" msgid "Block User" msgstr "Nutzer blockieren" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Blockiert" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Blockierte Accounts" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Blockierte Accounts" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blockierte Accounts können nicht in deinen Threads antworten, dich erwähnen oder anderweitig mit dir interagieren." @@ -1284,11 +1352,11 @@ msgstr "Blockierte Accounts können nicht in deinen Threads antworten, dich erw msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Blockierte Accounts können nicht in deinen Threads antworten, dich erwähnen oder anderweitig mit dir interagieren. Du wirst ihre Inhalte nicht sehen und sie werden daran gehindert, deine zu sehen." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Blockierter Post." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blockieren hindert diesen Kennzeichnungsdienst nicht daran, Kennzeichnungen zu deinem Account hinzuzufügen." @@ -1309,11 +1377,12 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kann die Echtheit des angegebenen Datums nicht bestätigen." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1347,6 +1416,14 @@ msgstr "Bluesky zeigt dein Profil und deine Posts nicht für ausgeloggte Nutzer msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky wird proaktiv bekannte und authentische Accounts verifizieren." +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "Bluesky's Community-Richtlinien" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "Bluesky's aktualisierte Community-Richtlinien" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Bilder verwischen und aus Feeds herausfiltern" msgid "Books" msgstr "Bücher" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" -msgstr "" +msgstr "Finde weitere Accounts auf der Entdecken-Seite" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Stöbere auf der Seite „Explore” in weiteren Feeds" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Weitere Vorschläge anzeigen" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Stöbere auf der Seite „Explore” nach weiteren Vorschlägen" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Unternehmen" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Von {0}" @@ -1428,15 +1502,23 @@ msgstr "Von {0}" msgid "By <0>{0}" msgstr "Von <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "Mit einem Klick auf „Weiter“ bestätigst du, dass du diese Änderungen verstanden hast und ihnen zustimmst." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "Indem du fortfährst, stimmst du den <0>KWS-Nutzungsbedingungen zu und bestätigst, dass KWS deinen verifizierten Status zusammen mit deiner gehashten E-Mail-Adresse gemäß der <1>KWS-Datenschutzerklärung speichert. Das bedeutet, dass du dich beim nächsten Mal nicht erneut verifizieren musst, wenn du dieselbe E-Mail für andere Apps, Spiele und Dienste verwendest, die von KWS-Technologie unterstützt werden." + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Mit der Erstellung eines Accounts stimmst du der <0>Datenschutzerklärung zu." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Mit der Erstellung eines Accounts stimmst du den <0>Nutzungsbedingungen und der <1>Datenschutzerklärung zu." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Mit der Erstellung eines Accounts stimmst du den <0>Nutzungsbedingungen zu." @@ -1448,14 +1530,17 @@ msgstr "Von dir" msgid "Camera" msgstr "Kamera" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Kamera" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Abbrechen" @@ -1500,11 +1582,7 @@ msgstr "Account-Löschung abbrechen" msgid "Cancel image crop" msgstr "Bildbeschneidung abbrechen" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Profilbearbeitung abbrechen" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Post zitieren abbrechen" @@ -1516,14 +1594,10 @@ msgstr "Reaktivierung abbrechen und ausloggen" msgid "Cancel search" msgstr "Suche abbrechen" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Bricht das Öffnen der verlinkten Website ab" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Kann nicht mit einem blockierten Nutzer interagieren" @@ -1551,19 +1625,14 @@ msgstr "App-Symbol zu „{0}“ ändern" #: src/components/AppLanguageDropdown.tsx:40 msgid "Change app language" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "E-Mail-Adresse ändern" +msgstr "App-Sprache ändern" #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Handle ändern" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Moderationsdienst ändern" @@ -1579,14 +1648,6 @@ msgstr "Sprache des Posts auf {suggestedLanguageName} ändern" msgid "Change report reason" msgstr "Grund für Meldung ändern" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Deine E-Mail ändern" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Ändere deine E-Mail-Adresse" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Ändert das App-Symbol" @@ -1596,10 +1657,15 @@ msgstr "Ändert das App-Symbol" msgid "Changes hosting provider" msgstr "Ändert den Hosting-Anbieter" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "Änderungen gespeichert" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Chat" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Chat gelöscht" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "Chatnachrichten – stumm" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "Chatnachrichten – Ton" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Chat stummgeschaltet" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "Posteingang für Chat-Anfragen" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Chat-Anfragen" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Chat-Einstellungen" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Chat-Einstellungen" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat nicht mehr stummgeschaltet" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Chats" @@ -1661,7 +1738,7 @@ msgstr "Überprüfe deinen Posteingang auf eine E-Mail mit dem Bestätigungscode msgid "Choose domain verification method" msgstr "Wähle eine Methode zur Domain-Verifizierung" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Feeds wählen" @@ -1669,7 +1746,7 @@ msgstr "Feeds wählen" msgid "Choose for me" msgstr "Wähle für mich" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Menschen auswählen" @@ -1685,23 +1762,23 @@ msgstr "Wähle diese Farbe als Avatar" msgid "Choose your account provider" msgstr "Wähle deinen Account-Anbieter" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Wähle deine eigene Zeitleiste! Feeds von der Community helfen dir, Inhalte zu finden, die dir gefallen." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Wähle dein Passwort" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Wähle deinen Nutzernamen" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Alle Speicherdaten löschen" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Alle Speicherdaten löschen (danach neu starten)" @@ -1714,23 +1791,27 @@ msgstr "Bildcache leeren" msgid "Clear search query" msgstr "Suchanfrage löschen" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "Klicken für Informationen" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "hier klicken" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." -msgstr "" +msgstr "Klicke hier, um den Verifizierungsprozess neu zu starten." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" -msgstr "" +msgstr "Klicke hier, um deine E-Mail zu aktualisieren" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Klicke, um Zitate dieses Posts zu deaktivieren." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Klicke, um Zitate dieses Posts zu aktivieren." @@ -1750,14 +1831,16 @@ msgstr "Klima" msgid "Clip 🐴 clop 🐴" msgstr "Klipp 🐴 klapp 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Klipp 🐴 klapp 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Schließen" @@ -1789,13 +1876,15 @@ msgstr "Meldung schließen" msgid "Close bottom drawer" msgstr "Untere Schublade schließen" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Dialog schließen" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Seitenmenü schließen" @@ -1804,7 +1893,7 @@ msgstr "Seitenmenü schließen" msgid "Close emoji picker" msgstr "Emoji-Auswahl schließen" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "GIF-Dialog schließen" @@ -1822,7 +1911,7 @@ msgstr "Bildbetrachter schließen" msgid "Close menu" msgstr "Menü schließen" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Diesen Dialog schließen" @@ -1830,7 +1919,7 @@ msgstr "Diesen Dialog schließen" msgid "Closes password update alert" msgstr "Schließt die Passwort-Update-Benachrichtigung" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "Schließt den Post-Composer und verwirft den Post-Entwurf" @@ -1843,16 +1932,16 @@ msgstr "Schließt die Emoji-Auswahl" msgid "Closes viewer for header image" msgstr "Schließt den Betrachter für das Banner" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Liste der Benutzer einklappen" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" -msgstr "Klappt die Liste der Benutzer für eine bestimmte Meldung zusammen" +msgstr "Klappt die Liste der Nutzer für eine bestimmte Meldung zusammen" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Farbmodus" @@ -1870,7 +1959,8 @@ msgstr "Komödie" msgid "Comics" msgstr "Comics" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Community-Richtlinien" @@ -1879,38 +1969,34 @@ msgstr "Community-Richtlinien" msgid "Complete onboarding and start using your account" msgstr "Schließe das Onboarding ab und nutze deinen Account" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Schließe die Herausforderung ab" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Neuen Post verfassen" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Verfasse Posts mit einer Länge von bis zu {0, plural, other {# Zeichen}}" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Antwort verfassen" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Video wird komprimiert..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Konfiguriere die Inhaltsfilterung für die Kategorie: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Konfiguriert in <0>Moderationseinstellungen" -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Bestätige die Spracheinstellungen für den Inhalt" msgid "Confirm delete account" msgstr "Bestätige das Löschen des Accounts" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Bestätige dein Alter:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Bestätige dein Geburtsdatum" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Bestätige dein Geburtsdatum" msgid "Confirmation code" msgstr "Bestätigungscode" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Bestätigungscode" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Verbinden…" -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "Verbindungsproblem" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "Kontaktiere unser Moderationsteam" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Support kontaktieren" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "Kontaktiere uns" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Inhalte und Medien" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Inhalte und Medien" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Inhalte und Medien" @@ -1977,7 +2069,8 @@ msgstr "Inhalte und Medien" msgid "Content Blocked" msgstr "Inhalt blockiert" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Inhaltsfilterung" @@ -2006,10 +2099,12 @@ msgstr "Inhaltswarnung" msgid "Content warnings" msgstr "Inhaltswarnungen" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Hintergrund des Kontextmenüs; klicken, um das Menü zu schließen" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Fortfahren" msgid "Continue as {0} (currently signed in)" msgstr "Fortfahren als {0} (noch angemeldet)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "Thread fortsetzen" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Thread fortsetzen…" @@ -2029,6 +2129,10 @@ msgstr "Thread fortsetzen…" msgid "Continue to next step" msgstr "Weiter zum nächsten Schritt" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "Konversation" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Kopiert" msgid "Copied build version to clipboard" msgstr "Die Build-Version wurde in die Zwischenablage kopiert" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Kopiert die Build-Version in die Zwischenablage" msgid "Copy" msgstr "Kopieren" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "App-Passwort kopieren" @@ -2087,8 +2187,8 @@ msgstr "App-Passwort kopieren" msgid "Copy at:// URI" msgstr "at://-URI kopieren" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "DID des Autors kopieren" @@ -2120,34 +2220,34 @@ msgstr "Link kopieren" msgid "Copy link to list" msgstr "Link zur Liste kopieren" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Link zum Post kopieren" #: src/view/com/profile/ProfileMenu.tsx:243 #: src/view/com/profile/ProfileMenu.tsx:254 msgid "Copy link to profile" -msgstr "" +msgstr "Link zum Profil kopieren" #: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Copy link to starter pack" -msgstr "" +msgstr "Link zum Startpaket kopieren" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Nachrichtentext kopieren" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "at://-URI des Posts kopieren" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Post-Text kopieren" @@ -2159,10 +2259,24 @@ msgstr "QR-Code kopieren" msgid "Copy TXT record value" msgstr "TXT-Eintragswert kopieren" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" -msgstr "Urheberrechtsbestimmungen" +msgstr "Urheberrechtsrichtlinie" + +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "Verbindung zum benutzerdefinierten Feed konnte nicht hergestellt werden" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "Verbindung zum Feed-Dienst konnte nicht hergestellt werden" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "Profil konnte nicht gefunden werden" #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 @@ -2185,6 +2299,14 @@ msgstr "Chat konnte nicht stummgeschaltet werden" msgid "Could not process your video" msgstr "Video konnte nicht verarbeitet werden" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "Änderungen konnten nicht gespeichert werden: {0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "Mitteilungseinstellungen konnten nicht aktualisiert werden" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Erstellen" @@ -2195,7 +2317,7 @@ msgstr "QR-Code für ein Startpaket erstellen" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Ein Startpaket erstellen" @@ -2205,28 +2327,29 @@ msgstr "Ein Startpaket für mich erstellen" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Account erstellen" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Account erstellen" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Einen Account erstellen" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:310 msgid "Create an account without using this starter pack" -msgstr "Erstelle einen Account, ohne dieses Starterpaket zu verwenden" +msgstr "Erstelle einen Account, ohne dieses Startpaket zu verwenden" #: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Create an avatar instead" @@ -2241,7 +2364,7 @@ msgstr "Ein weiteres erstellen" msgid "Create new account" msgstr "Neuen Account erstellen" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Meldung für {0} erstellen" @@ -2268,7 +2391,7 @@ msgstr "Benutzerdefiniert" msgid "Customization options" msgstr "Anpassungsoptionen" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Anpassen, wer mit diesem Post interagieren kann." @@ -2278,12 +2401,12 @@ msgstr "Passt dein Bluesky-Erlebnis individuell an" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Dunkel" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Dunkel" @@ -2292,21 +2415,21 @@ msgstr "Dunkel" msgid "Dark mode" msgstr "Dunkelmodus" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Dunkles Farbschema" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Geburtsdatum" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Account deaktivieren" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Debug-Moderation" @@ -2314,7 +2437,7 @@ msgstr "Debug-Moderation" msgid "Debug panel" msgstr "Debug-Panel" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Standard" @@ -2322,8 +2445,8 @@ msgstr "Standard" msgid "Default icons" msgstr "Standardsymbole" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Standardsymbole" msgid "Delete" msgstr "Löschen" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Account löschen" @@ -2355,7 +2478,7 @@ msgstr "App-Passwort löschen?" msgid "Delete chat" msgstr "Chat löschen" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Datensatz für die Chat-Erklärung löschen" @@ -2370,7 +2493,7 @@ msgstr "Konversation löschen" msgid "Delete Conversation" msgstr "Konversation löschen" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Für mich löschen" @@ -2378,11 +2501,11 @@ msgstr "Für mich löschen" msgid "Delete list" msgstr "Liste löschen" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Nachricht löschen" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Nachricht für mich löschen" @@ -2390,9 +2513,9 @@ msgstr "Nachricht für mich löschen" msgid "Delete my account" msgstr "Meinen Account löschen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Post löschen" @@ -2409,11 +2532,11 @@ msgstr "Startpaket löschen?" msgid "Delete this list?" msgstr "Diese Liste löschen?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Diesen Post löschen?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Gelöscht" @@ -2422,15 +2545,20 @@ msgstr "Gelöscht" msgid "Deleted Account" msgstr "Gelöschter Account" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "Gelöschte Liste" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Gelöschter Post." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Beschreibung" @@ -2447,14 +2575,14 @@ msgstr "Beschreibung ist zu lang. {DESCRIPTION_MAX_GRAPHEMES, plural, other {Die msgid "Descriptive alt text" msgstr "Beschreibender Alt-Text" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Zitat trennen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" -msgstr "" +msgstr "Zitat-Post trennen?" #: src/screens/Settings/AboutSettings.tsx:140 msgctxt "toast" @@ -2466,53 +2594,53 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Entwicklermodus aktiviert" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Entwickleroptionen" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Dialog: Anpassen, wer mit diesem Post interagieren kann" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Gedimmt" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242 msgid "Disable 2FA" -msgstr "" +msgstr "2FA deaktivieren" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157 msgid "Disable email 2FA" -msgstr "" +msgstr "E-Mail-2FA (Zwei-Faktor-Authentisierung) deaktivieren" #: src/screens/Settings/components/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" -msgstr "Zwei-Faktor-Authentifizierung per E-Mail deaktivieren" +msgstr "E-Mail-2FA (Zwei-Faktor-Authentisierung) deaktivieren" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Haptische Rückmeldung deaktivieren" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Untertitel deaktivieren" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Deaktiviert" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Verwerfen" @@ -2520,11 +2648,11 @@ msgstr "Verwerfen" msgid "Discard changes?" msgstr "Änderungen verwerfen?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Entwurf verwerfen?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Post verwerfen?" @@ -2542,7 +2670,7 @@ msgstr "Entdecke Feeds" msgid "Discover new custom feeds" msgstr "Entdecke neue benutzerdefinierte Feeds" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Entdecke neue Feeds" @@ -2550,7 +2678,7 @@ msgstr "Entdecke neue Feeds" msgid "Dismiss" msgstr "Verwerfen" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Fehler verwerfen" @@ -2562,26 +2690,26 @@ msgstr "Anleitung zum Einstieg schließen" msgid "Dismiss interests" msgstr "Interessen verwerfen" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "Meldung schließen" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Diesen Abschnitt verwerfen" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Größere Alt-Text-Badges zeigen" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Anzeigename" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Anzeigename" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Anzeigename ist zu lang" @@ -2603,21 +2731,26 @@ msgstr "Wende dieses Stummschaltwort nicht auf Nutzer an, denen du folgst" msgid "Does not include nudity." msgstr "Beinhaltet keine Nacktheit." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Beginnt oder endet nicht mit einem Bindestrich" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Domain verifiziert!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." -msgstr "" +msgstr "Du hast keinen Code oder benötigst einen neuen? <0>Hier klicken." #: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37 msgid "Don't see an email? <0>Click here to resend." -msgstr "" +msgstr "Du hast keine E-Mail erhalten? <0>Hier klicken, um sie erneut zu senden." + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "Nicht mehr anzeigen" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "Keine Sorge! Alle vorhandenen Nachrichten und Einstellungen werden gespeichert und stehen dir wieder zur Verfügung, sobald du bestätigt hast, dass du volljährig bist." #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 @@ -2660,9 +2793,9 @@ msgstr "Doppeltippen oder lange auf die Nachricht drücken, um eine Reaktion hin msgid "Double tap to close the dialog" msgstr "Doppeltippen, um den Dialog zu schließen" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" -msgstr "" +msgstr "Doppelt tippen, um „Gefällt mir“ zu geben" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 msgid "Download Bluesky" @@ -2673,7 +2806,7 @@ msgstr "Bluesky herunterladen" msgid "Download CAR file" msgstr "CAR-Datei herunterladen" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Zum Hinzufügen Bilder ablegen" @@ -2689,18 +2822,10 @@ msgstr "z. B. alice" msgid "e.g. Alice Lastname" msgstr "z. B. Max Mustermann" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "z. B. Alice Roberts" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "z. B. alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "z. B. Künstlerin, Hundeliebhaberin und begeisterte Leserin." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "z. B. künstlerische Nacktheit" @@ -2719,16 +2844,17 @@ msgstr "z. B. Die Poster, die immer ins Schwarze treffen." #: src/view/com/modals/CreateOrEditList.tsx:291 msgid "e.g. Users that repeatedly reply with ads." -msgstr "z. B. Benutzer, die wiederholt mit Werbung antworten." +msgstr "z. B. Nutzer, die wiederholt mit Werbung antworten." #: src/view/com/modals/InviteCodes.tsx:97 msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Jeder Code funktioniert einmal. Du erhältst regelmäßig neue Einladungscodes." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Bearbeiten" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Bearbeiten" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Avatar bearbeiten" @@ -2749,12 +2875,12 @@ msgstr "Feeds bearbeiten" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Bild bearbeiten" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Interaktionseinstellungen bearbeiten" @@ -2770,39 +2896,39 @@ msgstr "Details der Liste bearbeiten" #: src/view/com/profile/ProfileMenu.tsx:317 #: src/view/com/profile/ProfileMenu.tsx:323 msgid "Edit live status" -msgstr "" +msgstr "Live-Status bearbeiten" #: src/view/com/modals/CreateOrEditList.tsx:228 msgid "Edit Moderation List" msgstr "Moderationsliste bearbeiten" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Meine Feeds bearbeiten" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Mein Profil bearbeiten" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "Mitteilungen von {0} bearbeiten" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Personen bearbeiten" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Post-Interaktionseinstellungen bearbeiten" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Profil bearbeiten" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Profil bearbeiten" @@ -2812,21 +2938,13 @@ msgstr "Startpaket bearbeiten" #: src/view/com/modals/CreateOrEditList.tsx:223 msgid "Edit User List" -msgstr "Benutzerliste bearbeiten" +msgstr "Nutzerliste bearbeiten" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Bearbeiten, wer antworten kann" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Bearbeite deinen Anzeigenamen" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Bearbeite deine Profilbeschreibung" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Dein Startpaket bearbeiten" @@ -2839,8 +2957,8 @@ msgstr "Bildung" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "Entweder hat der Ersteller dieser Liste dich blockiert oder du hast den Ersteller blockiert." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "E-Mail" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "2FA per E-Mail deaktiviert" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "2FA per E-Mail aktiviert" @@ -2863,15 +2981,11 @@ msgstr "E-Mail erneut gesendet" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:208 msgid "Email sent!" -msgstr "" - -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "" +msgstr "E-Mail gesendet!" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" -msgstr "" +msgstr "E-Mail-Verifizierung abgeschlossen!" #: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" @@ -2883,8 +2997,8 @@ msgstr "HTML-Code einbetten" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Post einbetten" @@ -2892,7 +3006,7 @@ msgstr "Post einbetten" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Bette diesen Post in deine Website ein. Kopiere einfach den folgenden Code und füge ihn in den HTML-Code deiner Website ein." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Eingebetteter Video-Player" @@ -2906,29 +3020,33 @@ msgstr "Aktivieren" msgid "Enable {0} only" msgstr "Nur {0} aktivieren" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Inhalte für Erwachsene aktivieren" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92 msgid "Enable email 2FA" -msgstr "" +msgstr "E-Mail-2FA (Zwei-Faktor-Authentisierung) aktivieren" #: src/components/dialogs/EmbedConsent.tsx:81 #: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "Externe Medien aktivieren" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Medienplayer aktivieren für" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Prioritätsmitteilungen aktivieren" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "Aktiviere Mitteilungen für einen Account, indem du dessen Profil aufrufst und auf das <0>Glocken-Symbol <1/> klickst." -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "Push-Mitteilungen aktivieren" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Untertitel aktivieren" @@ -2939,19 +3057,16 @@ msgstr "Nur von dieser Seite erlauben" #: src/screens/Settings/ContentAndMediaSettings.tsx:132 #: src/screens/Settings/ContentAndMediaSettings.tsx:146 msgid "Enable trending topics" -msgstr "" +msgstr "Angesagte Themen aktivieren" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Aktiviere angesagte Videos in deinem Discover-Feed" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Aktiviere angesagte Videos in deinem Discover-Feed." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Aktiviert" @@ -2963,7 +3078,7 @@ msgstr "Ende des Feeds" msgid "Ensure you have selected a language for each subtitle file." msgstr "Stelle sicher, dass du für jede Untertiteldatei eine Sprache ausgewählt hast." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Gib ein Passwort ein" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Gib ein Wort oder einen Tag ein" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" msgstr "Code eingeben" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "In den Vollbildmodus wechseln" @@ -3006,40 +3117,48 @@ msgid "Enter your birth date" msgstr "Gib dein Geburtsdatum ein" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Gib deine E-Mail-Adresse ein" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Gib unten deine neue E-Mail-Adresse ein." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Gib dein Passwort ein" #: src/screens/Login/index.tsx:123 msgid "Enter your username and password" -msgstr "Gib deinen Benutzernamen und dein Passwort ein" +msgstr "Gib deinen Nutzernamen und dein Passwort ein" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" -msgstr "" +msgstr "Vollbildmodus aktivieren" #: src/screens/Search/modules/ExploreTrendingTopics.tsx:239 msgid "Entertainment" msgstr "Unterhaltung" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Fehler" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "Fehler beim Laden des Posts" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "Fehler beim Laden der Einstellung" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "Fehlermeldung" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Beim Speichern der Datei ist ein Fehler aufgetreten" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Fehler beim Empfang der Captcha-Antwort." @@ -3047,27 +3166,34 @@ msgstr "Fehler beim Empfang der Captcha-Antwort." msgid "Error:" msgstr "Fehler:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "Fehler: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Alle" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Alle können antworten" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Jeder kann auf diesen Post antworten." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Alle" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "Alles andere" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Nutzer ausschließen, denen du folgst" msgid "Excludes users you follow" msgstr "Nutzer ausgeschlossen, denen du folgst" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Vollbildmodus beenden" @@ -3106,24 +3232,28 @@ msgstr "Verlässt die Bildansicht" msgid "Expand alt text" msgstr "Alt-Text erweitern" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" -msgstr "Liste der Benutzer erweitern" +msgstr "Liste der Nutzer erweitern" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Erweitere oder reduziere den gesamten Post, auf den du antwortest" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "Text des Posts ausklappen" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Text des Posts erweitern oder einklappen" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "Erwartete uri, um einen Eintrag aufzulösen" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Experimentell" @@ -3142,7 +3272,7 @@ msgstr "Läuft in {0} ab" #: src/components/live/EditLiveDialog.tsx:131 msgid "Expires in {0} at {1}" -msgstr "" +msgstr "Läuft ab in {0} um {1}" #: src/lib/moderation/useGlobalLabelStrings.ts:47 #: src/lib/moderation/useGlobalLabelStrings.ts:51 @@ -3153,15 +3283,15 @@ msgstr "Explizite oder potenziell verstörende Medien." msgid "Explicit sexual images." msgstr "Explizite sexuelle Bilder." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" -msgstr "" +msgstr "Entdecken" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Meine Daten exportieren" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Externe Medien" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Externe Medien können es Websites ermöglichen, Informationen über dich und dein Gerät zu sammeln. Es werden keine Informationen gesendet oder angefordert, bis du die Schaltfläche \"Abspielen\" drückst." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Externe Medienpräferenzen" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "Chat konnte nicht angenommen werden" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "Fehler beim Hinzufügen der Emoji-Reaktion" @@ -3211,8 +3341,8 @@ msgstr "Fehler beim Erstellen des App-Passworts. Bitte versuche es erneut." msgid "Failed to create conversation" msgstr "Fehler beim Erstellen der Konversation" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Startpaket konnte nicht erstellt werden" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "Chat konnte nicht gelöscht werden" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Nachricht konnte nicht gelöscht werden" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Post konnte nicht gelöscht werden, bitte versuche es erneut" @@ -3238,8 +3368,8 @@ msgstr "Post konnte nicht gelöscht werden, bitte versuche es erneut" msgid "Failed to delete starter pack" msgstr "Startpaket konnte nicht gelöscht werden" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "Fehler beim Laden der Konversationen" @@ -3250,14 +3380,32 @@ msgstr "Fehler beim Laden der Konversationen" msgid "Failed to load feeds preferences" msgstr "Fehler beim Laden der Einstellungen für Feeds" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "GIFs konnten nicht geladen werden" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "Mitteilungseinstellungen konnten nicht geladen werden." + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Es konnten keine vorherigen Nachrichten geladen werden" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "Einstellung konnte nicht geladen werden." + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Die vorgeschlagenen Feeds konnten nicht geladen werden." msgid "Failed to load suggested follows" msgstr "Die vorgeschlagenen Accounts, denen du folgen solltest, konnten nicht geladen werden" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "Fehler beim Markieren aller Anfragen als gelesen" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Post konnte nicht angeheftet werden" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "Fehler beim Entfernen der Emoji-Reaktion" @@ -3291,15 +3439,11 @@ msgstr "Verifizierung konnte nicht entfernt werden" msgid "Failed to save image: {0}" msgstr "Das Speichern des Bildes ist fehlgeschlagen: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Mitteilungseinstellungen konnten nicht gespeichert werden, bitte versuche es erneut" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "Fehler beim Speichern der Einstellungen. Bitte versuche es erneut." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "Interessen konnten nicht gespeichert werden." @@ -3311,31 +3455,35 @@ msgstr "Konnte nicht gesendet werden" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122 #: src/components/dialogs/EmailDialog/screens/Verify.tsx:136 msgid "Failed to send email, please try again." -msgstr "" +msgstr "E-Mail konnte nicht gesendet werden, bitte versuche es erneut." #: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "Anfechtung nicht eingereicht. Bitte versuche es erneut." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Du konntest die Stummschaltung des Threads nicht aktivieren oder deaktivieren. Bitte versuche es erneut" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83 msgid "Failed to update email 2FA settings" -msgstr "" +msgstr "Fehler beim Aktualisieren der E-Mail-2FA-Einstellungen" #: src/components/dialogs/EmailDialog/screens/Update.tsx:195 msgid "Failed to update email, please try again." -msgstr "" +msgstr "E-Mail konnte nicht aktualisiert werden, bitte versuche es erneut." #: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "Aktualisierung der Feeds fehlgeschlagen" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "Aktualisierung der Mitteilungserklärung fehlgeschlagen" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Einstellungen konnten nicht aktualisiert werden" @@ -3348,21 +3496,29 @@ msgstr "Fehler beim Hochladen des Videos" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:168 msgid "Failed to verify email, please try again." -msgstr "" +msgstr "E-Mail-Verifizierung fehlgeschlagen, bitte versuche es erneut." #: src/screens/Settings/components/ChangeHandleDialog.tsx:360 msgid "Failed to verify handle. Please try again." msgstr "Fehler beim Überprüfen des Handles. Bitte versuche es erneut." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Feed" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Feed von {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "Feed-Ersteller" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "Feed-Kennzeichen" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Feed-Menü" @@ -3371,35 +3527,39 @@ msgstr "Feed-Menü" msgid "Feed toggle" msgstr "Feed-Umschalter" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "Feed nicht verfügbar" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Feedback" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Feedback gesendet!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Feeds" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 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/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Feeds aktualisiert!" @@ -3428,6 +3588,14 @@ msgstr "Suche nach Sprache filtern" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Suche nach Sprache filtern (derzeit: {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "Filtere, wer Mitteilungen zu deiner Aktivität erhalten kann" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "Filtere, von wem du Mitteilungen erhalten möchtest" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Abschließen" @@ -3448,7 +3616,7 @@ msgstr "Finde Leute zum Folgen" msgid "Find posts, users, and feeds on Bluesky" msgstr "Finde Posts, Nutzer und Feeds auf Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Beenden" @@ -3456,17 +3624,17 @@ msgstr "Beenden" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Flaches Schwarz" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Flaches Blau" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Flaches Weiß" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Flexibel" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Folgen" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "{0} folgen" @@ -3518,7 +3686,7 @@ msgstr "Account folgen" msgid "Follow all" msgstr "Allen folgen" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Zurückfolgen" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Zurückfolgen" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Gefolgt von <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Gefolgt von <0>{0} und {1, plural, one {# anderer Person} other {# anderen}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Gefolgt von <0>{0} und <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Gefolgt von <0>{0}, <1>{1} und {2, plural, one {# anderer Person} other {# anderen}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Follower von @{0}, die du kennst" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Follower, die du kennst" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Folge ich" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Folge ich" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "{0} Folge ich" @@ -3579,8 +3751,8 @@ msgstr "{handle} Folge ich" msgid "Following feed preferences" msgstr "Following-Feed-Einstellungen" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Following-Feed-Einstellungen" @@ -3592,11 +3764,11 @@ msgstr "Folgt dir" msgid "Follows You" msgstr "Folgt dir" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Schriftart" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Schriftgröße" @@ -3613,7 +3785,7 @@ msgstr "Aus Sicherheitsgründen müssen wir dir einen Bestätigungscode an deine msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Aus Sicherheitsgründen kannst du dies nicht erneut ansehen. Falls du dieses App-Passwort verlierst, musst du ein neues generieren." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Für das beste Erlebnis empfehlen wir, die Schriftart des Themes zu verwenden." @@ -3643,11 +3815,15 @@ msgstr "Vergessen?" msgid "Frequently Posts Unwanted Content" msgstr "Postet oft unerwünschte Inhalte" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "Von" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "Von @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "Von <0/>" @@ -3660,16 +3836,70 @@ msgstr "Galerie" msgid "Generate a starter pack" msgstr "Ein Startpaket generieren" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Hilfe erhalten" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "Mitteilungen erhalten, wenn dir jemand folgt." + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "Mitteilungen erhalten, wenn Personen Posts mit „Gefällt mir“ markieren, die du repostet hast." + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "Mitteilungen erhalten, wenn Personen deine Posts mit „Gefällt mir“ markieren." + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "Mitteilungen erhalten, wenn dich jemand erwähnt." + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "Mitteilungen erhalten, wenn jemand deine Posts zitiert." + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "Mitteilungen erhalten, wenn jemand auf deine Posts antwortet." + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "Mitteilungen erhalten, wenn jemand Posts repostet, die du repostet hast." + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "Mitteilungen erhalten, wenn jemand deine Posts repostet." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "Erhalte Mitteilungen über neue Posts" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Mitteilungen zu Posts und Antworten von ausgewählten Accounts erhalten." + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "Erhalte Mitteilungen über neue Posts von {name}" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "Erhalte Mitteilungen über die Aktivitäten dieses Accounts" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "Mitteilungen erhalten, wenn {name} Posts veröffentlicht" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "Mitteilungen erhalten, wenn jemand Posts veröffentlicht" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" -msgstr "" +msgstr "Los geht's" #: src/components/ProgressGuide/List.tsx:35 msgid "Getting started" @@ -3686,16 +3916,18 @@ msgstr "Gib deinem Profil ein Gesicht" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39 #: src/lib/moderation/useReportOptions.ts:39 msgid "Glaring violations of law or terms of service" -msgstr "Eklatante Verstöße gegen Gesetze oder Nutzungsbedingungen" +msgstr "Eklatante Verstöße gegen Gesetze oder die Nutzungsbedingungen" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3733,23 +3965,29 @@ msgstr "Zur Startseite" #: src/view/com/profile/ProfileMenu.tsx:318 #: src/view/com/profile/ProfileMenu.tsx:325 msgid "Go live" -msgstr "" +msgstr "Live gehen" #: src/components/live/GoLiveDialog.tsx:93 #: src/components/live/GoLiveDialog.tsx:98 #: src/components/live/GoLiveDialog.tsx:232 #: src/components/live/GoLiveDialog.tsx:241 msgid "Go Live" -msgstr "" +msgstr "Live gehen" #: src/components/live/GoLiveDialog.tsx:174 msgid "Go live for" -msgstr "" +msgstr "Live gehen für" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "Zum Profil von {firstAuthorName} gehen" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "Zu Account-Einstellungen gehen" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Zur Konversation mit {0} gehen" @@ -3779,8 +4017,8 @@ msgstr "Drastische Inhalte" msgid "Half way there!" msgstr "Fast geschafft!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Handle" @@ -3797,7 +4035,7 @@ msgstr "Handle geändert!" msgid "Handle too long. Please try a shorter one." msgstr "Handle zu lang. Bitte versuche einen kürzeren." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Haptik" @@ -3806,7 +4044,7 @@ msgstr "Haptik" msgid "Harassment, trolling, or intolerance" msgstr "Belästigung, Trollen oder Intoleranz" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Hashtag" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Hashtag {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." -msgstr "" +msgstr "Du hast einen Code? <0>Hier klicken." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Hast du Probleme?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Hilfe" @@ -3837,10 +4075,15 @@ msgstr "Hilf anderen zu erkennen, dass du kein Bot bist, indem du ein Bild hochl #: src/screens/Settings/components/AddAppPasswordDialog.tsx:187 msgid "Here is your app password!" -msgstr "Hier ist Ihr App-Passwort!" +msgstr "Hier ist dein App-Passwort!" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "Hallo 👋" #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Ausgeblendet" @@ -3848,16 +4091,16 @@ msgstr "Ausgeblendet" msgid "Hidden by your moderation settings." msgstr "Ausgeblendet durch deine Moderationseinstellungen." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Ausgeblendete Liste" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Ausgeblendete Liste" msgid "Hide" msgstr "Ausblenden" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Ausblenden" @@ -3875,18 +4118,18 @@ msgstr "Ausblenden" msgid "Hide customization options" msgstr "Anpassungsoptionen ausblenden" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Post für mich ausblenden" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Antwort für alle ausblenden" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Antwort für mich ausblenden" @@ -3894,64 +4137,64 @@ msgstr "Antwort für mich ausblenden" msgid "Hide this card" msgstr "Diese Karte ausblenden" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Diesen Post ausblenden?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Diese Antwort ausblenden?" #: src/components/interstitials/Trending.tsx:113 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:62 msgid "Hide trending topics" -msgstr "" +msgstr "Angesagte Themen ausblenden" #: src/components/interstitials/Trending.tsx:129 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:108 msgid "Hide trending topics?" -msgstr "" +msgstr "Angesagte Themen ausblenden?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" -msgstr "" +msgstr "Angesagte Videos ausblenden?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" -msgstr "Benutzerliste ausblenden" +msgstr "Nutzerliste ausblenden" #: src/screens/Moderation/VerificationSettings.tsx:85 #: src/screens/Moderation/VerificationSettings.tsx:94 msgid "Hide verification badges" msgstr "Verifizierungsabzeichen ausblenden" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Blendet den Inhalt aus" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm, beim Kontakt mit dem Feed-Server ist ein Problem aufgetreten. Bitte informiere den Eigentümer des Feeds über dieses Problem." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm, der Feed-Server scheint falsch konfiguriert zu sein. Bitte informiere den Eigentümer des Feeds über dieses Problem." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm, der Feed-Server scheint offline zu sein. Bitte informiere den Eigentümer des Feeds über dieses Problem." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm, der Feed-Server hat eine schlechte Antwort gegeben. Bitte informiere den Eigentümer des Feeds über dieses Problem." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, wir haben Probleme, diesen Feed zu finden. Möglicherweise wurde er gelöscht." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmm, es scheint, als hätten wir ein Problem beim Laden dieser Daten. Für weitere Details siehe unten. Wenn dieses Problem weiterhin besteht, kontaktiere uns bitte." @@ -3959,15 +4202,15 @@ msgstr "Hmm, es scheint, als hätten wir ein Problem beim Laden dieser Daten. F msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmm, wir konnten diesen Moderationsdienst nicht laden." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Einen Moment! Wir gewähren nach und nach Zugriff auf dieses Video und du bist noch in der Warteschlange. Versuche es in Kürze erneut!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Startseite" @@ -3984,10 +4227,10 @@ msgstr "Hosting-Anbieter" msgid "Hot" msgstr "Beliebt" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Beliebte Antworten zuerst" @@ -3996,10 +4239,6 @@ msgstr "Beliebte Antworten zuerst" msgid "How should we open this link?" msgstr "Wie sollen wir diesen Link öffnen?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Verstanden" msgid "If alt text is long, toggles alt text expanded state" msgstr "Schaltet den erweiterten Status des Alt-Textes um, wenn dieser lang ist" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Falls du nach den Gesetzen deines Landes noch kein Erwachsener bist, muss eine erziehungsberechtigte Person diese Bedingungen für dich lesen." @@ -4031,29 +4270,33 @@ msgstr "Wenn du diese Liste löschst, kannst du sie nicht wiederherstellen." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Wenn du eine eigene Domain hast, kannst du diese als deinen Handle verwenden. Dadurch kannst du deine Identität selbst verifizieren. <0>Hier erfährst du mehr (auf Englisch)." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." -msgstr "" +msgstr "Wenn du deine E-Mail aktualisieren musst, <0>klicke hier." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Wenn du diesen Post löschst, kannst du ihn nicht wiederherstellen." #: src/components/dialogs/EmailDialog/screens/Update.tsx:208 msgid "If you update your email address, email 2FA will be disabled." -msgstr "" +msgstr "Wenn du deine E-Mail aktualisierst, wird E-Mail-2FA (Zwei-Faktor-Authentisierung) deaktiviert." #: src/view/com/modals/ChangePassword.tsx:160 msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Wenn du dein Passwort ändern möchtest, senden wir dir einen Code, um zu verifizieren, dass dies dein Account ist." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "Wenn du einschränken möchtest, wer Mitteilungen über die Aktivitäten deines Accounts erhalten kann, kannst du das unter <0>Einstellungen → Datenschutz und Sicherheit ändern." + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "Falls du ein Entwickler bist, kannst du deinen eigenen Server hosten." #: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 msgid "If you're trying to change your handle or email, do so before you deactivate." -msgstr "Falls du versuchst, deinen Handle oder deine E-Mail zu ändern, tu dies, bevor du deaktivierst." +msgstr "Falls du versuchst, deinen Handle oder deine E-Mail zu ändern, tu dies, bevor du deinen Account deaktivierst." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:38 #: src/lib/moderation/useReportOptions.ts:38 @@ -4075,11 +4318,11 @@ msgstr "Bildcache geleert, {0} freigegeben" #: src/lib/media/save-image.ts:26 msgid "Image saved" -msgstr "" +msgstr "Bild gespeichert" #: src/lib/media/save-image.ts:45 msgid "Images cannot be saved unless permission is granted to access your photo library." -msgstr "" +msgstr "Bilder können nur gespeichert werden, wenn der Zugriff auf deine Galerie erlaubt ist." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49 #: src/lib/moderation/useReportOptions.ts:49 @@ -4091,13 +4334,41 @@ msgstr "Vortäuschung einer Identität oder falsche Angaben zur Identität oder msgid "Impersonation, misinformation, or false claims" msgstr "Vortäuschung einer Identität, Fehlinformationen oder falsche Angaben" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "In-App" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "In-App-Mitteilungen" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "In-App, alle" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "In-App, Personen, denen du folgst" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "In-App, Push" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "In-App, Push, alle" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "In-App, Push, Personen, denen du folgst" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Unangemessene Nachrichten oder explizite Links" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "Posteingang leer!" @@ -4105,7 +4376,7 @@ msgstr "Posteingang leer!" msgid "Incorrect username or password" msgstr "Ungültiger Nutzername oder Passwort" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Gib den Code ein, den du per E-Mail erhalten hast, um dein Passwort zurückzusetzen." @@ -4113,7 +4384,7 @@ msgstr "Gib den Code ein, den du per E-Mail erhalten hast, um dein Passwort zur msgid "Input confirmation code for account deletion" msgstr "Gib den Bestätigungscode für die Account-Löschung ein" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Neues Passwort eingeben" @@ -4129,10 +4400,14 @@ msgstr "Gib den Code ein, der dir per E-Mail zugeschickt wurde" msgid "Interaction limited" msgstr "Interaktion eingeschränkt" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Interaktionseinstellungen" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "Einführung von Aktivitätsmitteilungen" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Ungültiger 2FA-Bestätigungscode." msgid "Invalid handle. Please try a different one." msgstr "Ungültiger handle. Bitte versuche einen anderen." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Ungültiger oder nicht unterstützter Post-Eintrag" @@ -4158,7 +4433,7 @@ msgstr "Ungültiger Bestätigungscode" msgid "Invite a Friend" msgstr "Einen Freund einladen" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Einladungscode" @@ -4186,15 +4461,15 @@ msgstr "Lade deine Freunde ein, deinen Lieblings-Feeds und Personen zu folgen" msgid "Invites, but personal" msgstr "Einladungen, aber persönlich" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Es ist richtig" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Hier bist gerade nur du! Füge mehr Leute zu deinem Startpaket hinzu, indem du oben nach ihnen suchst." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "Job-ID: {0}" @@ -4220,11 +4495,27 @@ msgstr "An der Konversation teilnehmen" msgid "Journalism" msgstr "Journalismus" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "Halte mich auf dem Laufenden" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "KWS-Datenschutzerklärung" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "KWS-Nutzungsbedingungen" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "KWS-Website" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Von {0} gekennzeichnet." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Vom Autor gekennzeichnet." @@ -4237,7 +4528,7 @@ msgstr "Kennzeichnungen" msgid "Labels added" msgstr "Kennzeichnungen hinzugefügt" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Kennzeichnungen sind Anmerkungen zu Nutzern und Inhalten. Sie können verwendet werden, um Inhalte auszublenden, zu warnen oder zu kategorisieren." @@ -4253,22 +4544,30 @@ msgstr "Kennzeichnungen zu deinen Inhalten" msgid "Language selection" msgstr "Sprachauswahl" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Spracheinstellungen" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Sprachen" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Größer" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "Zuletzt gestartet vor {timeAgo}" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "Zuletzt gestartet gerade eben" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Neuste" @@ -4282,7 +4581,6 @@ msgstr "mehr erfahren" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "Mehr erfahren" @@ -4290,6 +4588,10 @@ msgstr "Mehr erfahren" msgid "Learn More" msgstr "Mehr erfahren" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "Mehr über die Altersverifikation erfahren" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Erfahre mehr über Bluesky" @@ -4298,15 +4600,23 @@ msgstr "Erfahre mehr über Bluesky" msgid "Learn more about self hosting your PDS." msgstr "Erfahre mehr über das Selbst-Hosting deiner PDS." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "Erfahre mehr über die Moderation, die auf diesen Inhalt angewendet wurde" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Erfahre mehr über die Moderation, die auf diese Inhalte angewendet wird." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "Erfahre mehr über diese Änderungen und wie du uns deine Meinung mitteilen kannst, indem du <0>unseren Blogpost liest." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Erfahre mehr über diese Änderungen und wie du uns deine Meinung mitteilen kannst, indem du unseren Blogpost liest." + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Erfahre mehr über diese Warnung" @@ -4316,12 +4626,16 @@ msgstr "Erfahre mehr über diese Warnung" msgid "Learn more about verification on Bluesky" msgstr "Mehr über die Verifizierung auf Bluesky erfahren (auf Englisch)" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Erfahre mehr darüber, was auf Bluesky öffentlich ist." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "Mehr dazu in deinen <0>Account-Einstellungen" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Mehr erfahren." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Konversation verlassen" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Lass alle Kontrollkästchen deaktiviert, um alle Sprachen zu sehen." +msgid "Leave them all unselected to see any language." +msgstr "Lass alle Optionen deaktiviert, um alle Sprachen zu sehen." -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Bluesky verlassen" @@ -4370,7 +4685,7 @@ msgstr "Los geht's!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Hell" @@ -4381,67 +4696,87 @@ msgstr "Hell" #: src/screens/Profile/components/ProfileFeedHeader.tsx:518 msgid "Like" -msgstr "Liken" +msgstr "Gefällt mir" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" -msgstr "" +msgstr "Gefällt mir ({0, plural, one {# Gefällt mir} other {# Gefällt mir}})" #: src/components/ProgressGuide/List.tsx:63 msgid "Like 10 posts" -msgstr "" +msgstr "10 Posts mit „Gefällt mir“ markieren" #: src/state/shell/progress-guide.tsx:214 #: src/state/shell/progress-guide.tsx:219 msgid "Like 10 posts to train the Discover feed" -msgstr "Like 10 Posts, um den Discover-Feed zu trainieren" +msgstr "Markiere 10 Posts mit „Gefällt mir“, um den Discover-Feed zu trainieren" + +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "„Gefällt mir“-Mitteilungen" #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" -msgstr "Diesen Feed liken" +msgstr "Diesen Feed mit „Gefällt mir“ markieren" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272 msgid "Like this labeler" -msgstr "Diesen Labeler liken" +msgstr "Diesen Kennzeichner mit „Gefällt mir“ markieren" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" -msgstr "Geliked von" +msgstr "Mit „Gefällt mir“ markiert von" #: src/screens/Post/PostLikedBy.tsx:38 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 #: src/view/screens/ProfileFeedLikedBy.tsx:30 msgid "Liked By" -msgstr "Geliked von" +msgstr "Mit „Gefällt mir“ markiert von" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" -msgstr "" +msgstr "Gefällt {0, plural, one {# Nutzer} other {# Nutzern}}" #: src/components/LabelingServiceCard/index.tsx:96 #: src/screens/Profile/components/ProfileFeedHeader.tsx:493 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" -msgstr "" +msgstr "Gefällt {likeCount, plural, one {# Nutzer} other {# Nutzern}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" -msgstr "Likes" +msgstr "„Gefällt mir“-Angaben" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "„Gefällt mir“ für deine Reposts" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "Mitteilungen über „Gefällt mir“-Angaben zu deinen Reposts" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" -msgstr "Likes für diesen Post" +msgstr "„Gefällt mir“-Angaben für diesen Post" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Linear" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Liste" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Liste blockiert" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Liste von {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "Liste von <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Liste von dir" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "Listen-Ersteller" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4487,7 +4826,7 @@ msgstr "Liste stummgeschaltet" #: src/view/com/modals/CreateOrEditList.tsx:253 msgid "List Name" -msgstr "Name der Liste" +msgstr "Listenname" #: src/view/screens/ProfileList.tsx:456 msgctxt "toast" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Liste nicht mehr stummgeschaltet" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Listen" @@ -4515,18 +4854,18 @@ msgstr "Listen, die diesen Nutzer blockieren:" #. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters #: src/components/live/LiveIndicator.tsx:46 msgid "LIVE" -msgstr "" +msgstr "LIVE" #: src/components/live/LiveStatusDialog.tsx:215 msgid "Live feature is in beta testing" -msgstr "" +msgstr "Live-Funktion befindet sich in der Beta-Testphase" #: src/components/live/EditLiveDialog.tsx:148 #: src/components/live/EditLiveDialog.tsx:152 #: src/components/live/GoLiveDialog.tsx:124 #: src/components/live/GoLiveDialog.tsx:128 msgid "Live link" -msgstr "" +msgstr "Live-Link" #: src/screens/Search/Explore.tsx:86 msgid "Load more" @@ -4537,7 +4876,7 @@ msgstr "Mehr laden" msgid "Load more suggested feeds" msgstr "Weitere empfohlene Feeds laden" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Neue Mitteilungen laden" @@ -4552,11 +4891,11 @@ msgstr "Neue Posts laden" msgid "Loading..." msgstr "Wird geladen..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Log" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Sichtbarkeit für ausgeloggte Nutzer" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo von @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo von <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Logo von <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Lange drücken, um das Tag-Menü für #{tag} zu öffnen" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Im Format XXXXX-XXXXX" @@ -4591,13 +4930,13 @@ msgstr "Es sieht so aus, als ob du einen Following-Feed vermisst. <0>Klicke hier #: src/components/dialogs/EmailDialog/index.tsx:41 msgid "Make adjustments to email settings for your account" -msgstr "" +msgstr "E-Mail-Einstellungen für deinen Account anpassen" #: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Make one for me" msgstr "Erstelle eins für mich" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Stelle sicher, dass du dorthin willst!" @@ -4606,7 +4945,7 @@ msgstr "Stelle sicher, dass du dorthin willst!" msgid "Manage saved feeds" msgstr "Gespeicherte Feeds verwalten" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "Verifizierungseinstellungen verwalten" @@ -4614,9 +4953,9 @@ msgstr "Verifizierungseinstellungen verwalten" msgid "Manage your muted words and tags" msgstr "Verwalte deine stummgeschalteten Wörter und Tags" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "Alle als gelesen markieren" @@ -4625,17 +4964,15 @@ msgstr "Alle als gelesen markieren" msgid "Mark as read" msgstr "Als gelesen markieren" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "Alle als gelesen markiert" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" -msgstr "" +msgstr "Vielleicht später" #: src/view/screens/Profile.tsx:227 msgid "Media" @@ -4645,19 +4982,26 @@ msgstr "Medien" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Medien, die für einige Zielgruppen verstörend oder unangemessen sein könnten." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "Erwähnungsmitteilungen" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "erwähnte Nutzer" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Erwähnte Nutzer" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Erwähnungen" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Menü" @@ -4665,7 +5009,7 @@ msgstr "Menü" msgid "Message {0}" msgstr "Nachricht {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Nachricht gelöscht" @@ -4674,11 +5018,11 @@ msgstr "Nachricht gelöscht" msgid "Message deleted" msgstr "Nachricht gelöscht" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "Nachricht von @{0}: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Nachricht vom Server: {0}" @@ -4691,19 +5035,23 @@ msgstr "Nachrichteneingabefeld" msgid "Message is too long" msgstr "Nachricht ist zu lang" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "Nachrichtenoptionen" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Nachrichten" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Mitternacht" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "Sonstige Mitteilungen" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Irreführender Account" msgid "Misleading Post" msgstr "Irreführender Post" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderation" @@ -4725,17 +5073,17 @@ msgstr "Moderation" msgid "Moderation details" msgstr "Moderationsdetails" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Moderationsliste von {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Moderationsliste von <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Moderationsliste von dir" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Moderationsliste aktualisiert" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Moderationslisten" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Moderationslisten" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "Moderationseinstellungen" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Moderationsstatus" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Moderationswerkzeuge" @@ -4775,7 +5123,7 @@ msgstr "Moderationswerkzeuge" msgid "Moderator has chosen to set a general warning on the content." msgstr "Der Moderator hat sich entschieden, eine allgemeine Warnung für den Inhalt festzulegen." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Mehr" @@ -4790,13 +5138,13 @@ msgstr "Mehr Feeds" msgid "More options" msgstr "Mehr Optionen" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" -msgstr "Am meisten geliked zuerst" +msgstr "Am meisten mit „Gefällt mir“ markierte zuerst" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Beliebteste Antworten zuerst" @@ -4808,8 +5156,8 @@ msgstr "Filme" msgid "Music" msgstr "Musik" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Stummschalten" @@ -4819,8 +5167,8 @@ msgstr "Stummschalten" msgid "Mute {tag}" msgstr "{tag} stummschalten" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Dieses Wort nur in Tags stummschalten" msgid "Mute this word until you unmute it" msgstr "Dieses Wort stummschalten, bis du es wieder freigibst" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Thread stummschalten" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Wörter und Tags stummschalten" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Stummgeschaltete Accounts" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Stummgeschaltete Accounts" @@ -4898,7 +5246,7 @@ msgstr "Bei stummgeschalteten Accounts werden dazugehörige Posts aus deinem Fee msgid "Muted by \"{0}\"" msgstr "Stummgeschaltet über \"{0}\"" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Stummgeschaltete Wörter und Tags" @@ -4911,7 +5259,7 @@ msgstr "Stummschaltung ist privat. Stummgeschaltete Accounts können mit dir int msgid "My Birthday" msgstr "Mein Geburtstag" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Meine Feeds" @@ -4940,13 +5288,13 @@ msgid "Nature" msgstr "Natur" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Navigiere zu {0}" #: src/components/StarterPack/StarterPackCard.tsx:131 msgid "Navigate to starter pack" -msgstr "Zum Starterpaket navigieren" +msgstr "Zum Startpaket navigieren" #: src/screens/Login/ForgotPasswordForm.tsx:166 #: src/screens/Login/LoginForm.tsx:344 @@ -4958,11 +5306,11 @@ msgstr "Navigiert zum nächsten Bildschirm" msgid "Navigates to your profile" msgstr "Navigiert zu deinem Profil" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Möchtest du es ändern?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "Möchtest du eine Urheberrechtsverletzung, eine rechtliche Anfrage oder ein Problem mit der Einhaltung von Vorschriften melden?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Möchtest du eine Urheberrechtsverletzung melden?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Neu" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "{postsCount, plural, one {Neuer Post} other {Neue Posts}} von {firstAuthorLink}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "{postsCount, plural, one {Neuer Post} other {Neue Posts}} von {firstAuthorName}" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Neuer Chat" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" -msgstr "" +msgstr "Neue E-Mail-Adresse" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "Neue Funktion" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "Mitteilungen über neue Follower" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "Neue Follower" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Neue Nachrichten" msgid "New Moderation List" msgstr "Neue Moderationsliste" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Neues Passwort" @@ -5029,7 +5396,7 @@ msgstr "Neues Passwort" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,23 +5408,35 @@ msgctxt "action" msgid "New post" msgstr "Neuer Post" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Neuer Post" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Neue Posts von {firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiterer} other {{formattedAuthorsCount} weitere}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Neue Posts von {firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiterer} other {{formattedAuthorsCount} weitere}}" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Neuer Nutzer-Info-Dialog" #: src/view/com/modals/CreateOrEditList.tsx:225 msgid "New User List" -msgstr "Neue Benutzerliste" +msgstr "Neue Nutzerliste" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Neueste Antworten zuerst" @@ -5071,15 +5450,15 @@ msgstr "Aktuelles" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5100,9 +5479,9 @@ msgstr "Kein DNS-Panel" #: src/components/live/EditLiveDialog.tsx:140 msgid "No expiry set" -msgstr "" +msgstr "Kein Ablaufdatum festgelegt" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Keine hervorgehobenen GIFs gefunden. Möglicherweise gibt es ein Problem mit Tenor." @@ -5112,39 +5491,42 @@ msgstr "Keine Feeds gefunden. Versuche, nach etwas anderem zu suchen." #: src/components/live/LinkPreview.tsx:63 msgid "No image" -msgstr "" +msgstr "Kein Bild" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 msgid "No likes yet" -msgstr "Noch keine Gefällt-mir-Angaben" +msgstr "Noch keine „Gefällt mir“-Angaben" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "{0} wird nicht mehr gefolgt" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "Nicht länger als {MAX_SERVICE_HANDLE_LENGTH, plural, other {# Zeichen}}" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Noch keine Nachrichten" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Noch keine Mitteilungen!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Niemand" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Niemand außer dem Autor kann diesen Post zitieren." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "Keine Posts vorhanden" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Keine Posts bisher." @@ -5171,7 +5553,7 @@ msgstr "Keine Ergebnisse" msgid "No results for \"{0}\"." msgstr "Keine Ergebnisse für „{0}“." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Keine Ergebnisse gefunden" @@ -5179,9 +5561,9 @@ msgstr "Keine Ergebnisse gefunden" msgid "No results found for \"{query}\"" msgstr "Keine Ergebnisse für \"{query}\" gefunden" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Keine Ergebnisse für {query} gefunden" @@ -5189,7 +5571,7 @@ msgstr "Keine Ergebnisse für {query} gefunden" msgid "No results." msgstr "Keine Ergebnisse." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Keine Suchergebnisse gefunden für „{search}“." @@ -5198,7 +5580,7 @@ msgstr "Keine Suchergebnisse gefunden für „{search}“." msgid "No thanks" msgstr "Nein danke" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Niemand" @@ -5223,59 +5605,76 @@ msgstr "Niemand wurde gefunden. Versuche, nach jemand anderem zu suchen." msgid "Non-sexual Nudity" msgstr "Nicht-sexuelle Nacktheit" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "Keine" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "Wird von niemandem gefolgt, dem du folgst" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Nicht gefunden" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Hinweis über das Teilen" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Hinweis: Bluesky ist ein offenes und öffentliches Netzwerk. Diese Einstellung schränkt lediglich die Sichtbarkeit deiner Inhalte in der Bluesky-App und auf der Website ein. Andere Apps respektieren diese Einstellung möglicherweise nicht. Deine Inhalte werden ausgeloggten Nutzern möglicherweise weiterhin von anderen Apps und Websites angezeigt." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "Hinweis: Dieser Post ist nur für eingeloggte Nutzer sichtbar." + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Nichts zu sehen" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Mitteilungenfilter" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Mitteilungseinstellungen" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Mitteilungseinstellungen" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Mitteilungstöne" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Mitteilungstöne" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Mitteilungen" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "Mitteilungen für alles andere, z. B. wenn jemand über eines deiner Startpakete beitritt." + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "jetzt" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Nacktheit oder Erwachseneninhalt nicht als solche gekennzeichnet" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Aus" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Oh nein!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "OK" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Okay" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Älteste Antworten zuerst" @@ -5331,19 +5736,19 @@ msgstr "Älteste Antworten zuerst" msgid "on<0><1/><2><3/>" msgstr "auf<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Onboarding zurücksetzen" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "Bei einem oder mehreren GIFs fehlen Alt-Texte." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Bei einem oder mehreren Bildern fehlen Alt-Texte." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Bei einem oder mehreren Videos fehlen Alt-Texte." @@ -5351,13 +5756,15 @@ msgstr "Bei einem oder mehreren Videos fehlen Alt-Texte." msgid "Only .jpg and .png files are supported" msgstr "Nur .jpg- und .png-Dateien werden unterstützt" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Nur {0} kann antworten." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Enthält nur Buchstaben, Nummern und Bindestriche" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "Nur Follower, denen ich folge" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Es werden nur Bilddateien unterstützt" msgid "Only WebVTT (.vtt) files are supported" msgstr "Es werden nur WebVTT-Dateien (.vtt) unterstützt" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Huch, da ist etwas schief gelaufen!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Huch!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Seitenmenü öffnen" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Emoji-Picker öffnen" @@ -5416,7 +5822,7 @@ msgstr "Feed-Optionsmenü öffnen" msgid "Open full emoji list" msgstr "Vollständige Emoji-Liste öffnen" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Link zu {niceUrl} öffnen" @@ -5424,11 +5830,11 @@ msgstr "Link zu {niceUrl} öffnen" msgid "Open message options" msgstr "Nachrichtenoptionen öffnen" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Moderations-Debugseite öffnen" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Einstellungen für stummgeschaltete Wörter und Tags öffnen" @@ -5443,26 +5849,26 @@ msgstr "Post-Optionen-Menü öffnen" #: src/components/live/LiveStatusDialog.tsx:189 #: src/components/live/LiveStatusDialog.tsx:203 msgid "Open profile" -msgstr "" +msgstr "Profil öffnen" #: src/components/PostControls/ShareMenu/index.tsx:87 msgid "Open share menu" -msgstr "" +msgstr "Teilen-Menü öffnen" #: src/screens/StarterPack/StarterPackScreen.tsx:566 msgid "Open starter pack menu" msgstr "Startpaketmenü öffnen" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Storybook öffnen" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Systemprotokoll öffnen" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Öffnet {numItems} Optionen" @@ -5490,19 +5896,19 @@ msgstr "Öffnet die Kamera auf dem Gerät" msgid "Opens captions and alt text dialog" msgstr "Öffnet den Untertitel- und Alt-Text-Dialog" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Öffnet den Dialog zum Ändern des Handles" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" -msgstr "" +msgstr "Öffnet den Post-Editor" #: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 msgid "Opens device photo gallery" msgstr "Öffnet die Gerätefotogalerie" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Öffnet die Emoji-Auswahl" @@ -5520,28 +5926,28 @@ msgstr "Öffnet den Ablauf zum Einloggen bei deinem bestehenden Bluesky-Account" msgid "Opens GIF select dialog" msgstr "Öffnet GIF-Auswahldialog" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Öffnet Helpdesk im Browser" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "Öffnet Link {0}" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Öffnet die Liste der Einladungscodes" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" -msgstr "" +msgstr "Öffnet den Live-Status-Dialog" #: src/screens/Login/LoginForm.tsx:249 msgid "Opens password reset form" msgstr "Öffnet das Formular zum Zurücksetzen des Passworts" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Öffnet die verlinkte Webseite" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Öffnet dieses Profil" @@ -5558,7 +5964,7 @@ msgstr "Optional kannst du unten zusätzliche Informationen angeben:" msgid "Options:" msgstr "Optionen:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Oder kombiniere diese Optionen:" @@ -5600,6 +6006,10 @@ msgstr "Anderer Account" msgid "Other..." msgstr "Andere..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "Unser Blogpost" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "Unser Moderationsteam hat deinen Bericht erhalten." @@ -5608,7 +6018,7 @@ msgstr "Unser Moderationsteam hat deinen Bericht erhalten." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Unsere Moderatoren haben die Meldungen geprüft und beschlossen, deinen Zugriff auf Chats auf Bluesky zu deaktivieren." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Seite nicht gefunden" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Seite nicht gefunden" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,33 +6052,38 @@ msgstr "Passwort aktualisiert" msgid "Password updated!" msgstr "Passwort aktualisiert!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Pausieren" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Video pausieren" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Personen" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Personen gefolgt von @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Personen, die @{0} folgen" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "Personen, denen ich folge" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." -msgstr "" +msgstr "Zugriff auf deine Galerie wurde verweigert. Bitte aktiviere ihn in deinen Systemeinstellungen." #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" @@ -5704,12 +6119,12 @@ msgstr "An die Startseite anheften" msgid "Pin to Home" msgstr "An Startbildschirm anheften" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "An dein Profil anheften" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Angeheftet" @@ -5718,7 +6133,7 @@ msgstr "Angeheftet" msgid "Pinned {0} to Home" msgstr "{0} an Startseite angepinnt" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Angeheftete Feeds" @@ -5726,38 +6141,38 @@ msgstr "Angeheftete Feeds" msgid "Pinned to your feeds" msgstr "An deine Feeds angepinnt" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Abspielen" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "{0} abspielen" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Video abspielen" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Video abspielen" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Spielt das GIF ab oder pausiert es" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Spielt das Video ab oder pausiert es" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Spielt das GIF ab" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Spielt das Video ab" @@ -5765,24 +6180,29 @@ msgstr "Spielt das Video ab" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "Bitte füge alle zutreffenden Inhaltswarnungen für die Medien hinzu, die du postest." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "Bitte überprüfe dein E-Mail-Postfach auf weitere Anweisungen. Es kann ein oder zwei Minuten dauern, bis die Nachricht eintrifft." + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Bitte wähle deinen Handle." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Bitte wähle dein Passwort." #: src/components/dialogs/EmailDialog/screens/Update.tsx:290 msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." -msgstr "" +msgstr "Bitte klicke auf den Link in der E-Mail, die wir dir gerade gesendet haben, um deine neue E-Mail-Adresse zu verifizieren. Dies ist ein wichtiger Schritt, um weiterhin alle Funktionen von Bluesky nutzen zu können." #: src/screens/Signup/state.ts:301 msgid "Please complete the verification captcha." msgstr "Bitte vervollständige das Verifizierungs-Captcha." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Bitte überprüfe nochmal, ob du deine E-Mail-Adresse korrekt eingegeben hast." @@ -5802,36 +6222,41 @@ msgstr "Bitte gib einen eindeutigen Namen für dieses App-Passwort ein oder verw #: src/components/dialogs/EmailDialog/screens/Update.tsx:135 #: src/components/dialogs/EmailDialog/screens/Verify.tsx:145 msgid "Please enter a valid code." -msgstr "" +msgstr "Bitte gib einen gültigen Code ein." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." -msgstr "" +msgstr "Bitte gib eine gültige E-Mail-Adresse ein." #: src/components/dialogs/MutedWords.tsx:86 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Bitte gib zum Stummschalten ein gültiges Wort, Tag oder eine Phrase ein" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "Bitte gib eine gültige, dauerhafte E-Mail-Adresse ein. Du musst möglicherweise später auf diese E-Mail zugreifen können." + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." -msgstr "" +msgstr "Bitte gib unten den Code ein, den wir an <0>{0} gesendet haben." #: src/components/dialogs/EmailDialog/screens/Update.tsx:247 msgid "Please enter the security code we sent to your previous email address." -msgstr "" +msgstr "Bitte gib den Sicherheitscode ein, den wir an deine vorherige E-Mail-Adresse gesendet haben." #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Bitte gib deine E-Mail ein." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Bitte gib deinen Einladungscode ein." #: src/components/dialogs/EmailDialog/screens/Update.tsx:217 msgid "Please enter your new email address." -msgstr "" +msgstr "Bitte gib deine neue E-Mail-Adresse ein." #: src/screens/Login/LoginForm.tsx:99 msgid "Please enter your password" @@ -5853,6 +6278,19 @@ msgstr "Bitte erläutere, warum du denkst, dass diese Kennzeichnung von {0} fäl msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Bitte erkläre, warum du denkst, dass deine Chats fälschlicherweise deaktiviert wurden" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "Bitte gehe zurück oder aktiviere dieses Element, um zum Anfang des aktiven Inhalts zurückzukehren." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "Bitte gib alle zusätzlichen Informationen an, die die Moderatoren benötigen, um deinen Status zur Altersverifikation prüfen zu können." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "Bitte wähle eine Sprache aus" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "Bitte wähle einen Moderationsdienst aus" @@ -5868,12 +6306,12 @@ msgstr "Bitte melde dich als @{0} an" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62 msgid "Please verify your email" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" msgstr "Bitte verifiziere deine E-Mail" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "Bitte schreibe deine Nachricht unten:" + #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:235 @@ -5884,33 +6322,38 @@ msgstr "Politik" msgid "Porn" msgstr "Pornografie" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Posten" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Post" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Posten" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Alle posten" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "Post blockiert" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Post von {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Post von @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Post gelöscht" @@ -5919,11 +6362,14 @@ msgstr "Post gelöscht" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Fehler beim Hochladen des Posts. Bitte prüfe deine Internetverbindung und versuche es erneut." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "Post wurde gelöscht" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Post ausgeblendet" @@ -5937,11 +6383,11 @@ msgstr "Post ausgeblendet aufgrund von stummgeschaltetem Wort" msgid "Post Hidden by You" msgstr "Post von dir ausgeblendet" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Post-Interaktionseinstellungen" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Post-Interaktionseinstellungen" @@ -5954,8 +6400,10 @@ msgstr "Post-Sprache" msgid "Post Languages" msgstr "Post-Sprachen" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Post nicht gefunden" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Post gelöst" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Posts" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Posts können basierend auf ihrem Text, ihren Tags oder beidem stummgeschaltet werden. Wir empfehlen, häufig verwendete Wörter zu vermeiden, da dies dazu führen kann, dass keine Posts mehr angezeigt werden." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Posts ausgeblendet" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Potenziell irreführender Link" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "Posts, Antworten" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Präferenz gespeichert" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "Möglicherweise irreführender Link" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "Warnung vor möglicherweise irreführendem Link" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Drücke, um die Verbindung erneut zu versuchen" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Zum wiederholen drücken" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Drücken, um Follower dieses Accounts anzuzeigen, denen du ebenfalls folgst" @@ -6015,40 +6469,46 @@ msgstr "Vorheriges Bild" msgid "Primary Language" msgstr "Primäre Sprache" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Priorisiere deine Follows" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Prioritätsmitteilungen" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Datenschutz" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Datenschutz und Sicherheit" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Datenschutz und Sicherheit" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "Datenschutz- und Sicherheitseinstellungen" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Datenschutzerklärung" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Video wird verarbeitet..." @@ -6062,15 +6522,14 @@ msgstr "Wird verarbeitet..." msgid "profile" msgstr "Profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Profil" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Profil aktualisiert" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Öffentliche, teilbare Listen, die verwendet werden können, um Feeds zu steuern." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "Post veröffentlichen" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "Posts veröffentlichen" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "Antworten veröffentlichen" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "Antwort veröffentlichen" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "Push" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "Push-Mitteilungen" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "Push, alle" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "Push, Personen, denen du folgst" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "QR-Code in die Zwischenablage kopiert!" @@ -6119,44 +6594,52 @@ msgstr "QR-Code wurde heruntergeladen!" msgid "QR code saved to your camera roll!" msgstr "QR-Code in deiner Galerie gespeichert!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "Zitat-Mitteilungen" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Post zitieren" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" -msgstr "" +msgstr "Zitat-Post wurde erneut angehängt" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" -msgstr "" +msgstr "Zitat wurde erfolgreich getrennt" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" -msgstr "" +msgstr "Zitate deaktiviert" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Zitateinstellungen" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Zitate" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Zitate dieses Posts" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Zufällig (\"Poster's Roulette\")" @@ -6164,8 +6647,8 @@ msgstr "Zufällig (\"Poster's Roulette\")" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Limit überschritten – du hast innerhalb kurzer Zeit zu oft versucht, deinen Handle zu ändern. Bitte warte eine Minute, bevor du es erneut versuchst." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Zitat wieder anhängen" @@ -6177,30 +6660,42 @@ msgstr "Mit {emoji} reagieren" msgid "Reactivate your account" msgstr "Reaktiviere deinen Account" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "Lies {0} weitere {1, plural, one {Antwort} other {Antworten}}" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Blogpost lesen (auf Englisch)" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Weniger lesen" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Mehr lesen" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "Weitere Antworten lesen" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "Lies unseren Blogpost" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Lies den Bluesky-Blog" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Bluesky-Datenschutzerklärung lesen" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Bluesky-Nutzungsbedingungen lesen" @@ -6213,6 +6708,14 @@ msgstr "Grund für den Einspruch" msgid "Reason:" msgstr "Grund: " +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "Erhalte In-App-Mitteilungen" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "Erhalte Push-Mitteilungen" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Letzte Suchen" @@ -6234,8 +6737,8 @@ msgstr "Ablehnen" msgid "Reject chat request" msgstr "Chat-Anfrage ablehnen" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Konversationen neu laden" @@ -6244,10 +6747,9 @@ msgstr "Konversationen neu laden" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Entfernen" @@ -6259,17 +6761,17 @@ msgstr "{displayName} aus dem Startpaket entfernen" msgid "Remove {historyItem}" msgstr "{historyItem} entfernen" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Account entfernen" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Anhang entfernen" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Avatar entfernen" @@ -6284,24 +6786,22 @@ msgstr "Einbettung entfernen" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Feed entfernen" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Feed entfernen?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Aus meinen Feeds entfernen" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Aus Schnellzugriff entfernen?" @@ -6311,18 +6811,17 @@ msgid "Remove from saved feeds" msgstr "Aus gespeicherten Feeds entfernen" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "Aus deinen Feeds entfernen?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Bild entfernen" #: src/components/live/EditLiveDialog.tsx:240 #: src/components/live/EditLiveDialog.tsx:247 msgid "Remove live status" -msgstr "" +msgstr "Live-Status entfernen" #: src/components/dialogs/MutedWords.tsx:523 msgid "Remove mute word from your list" @@ -6332,12 +6831,8 @@ msgstr "Stummgeschaltetes Wort aus deiner Liste entfernen" msgid "Remove profile" msgstr "Profil entfernen" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Zitat entfernen" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Repost entfernen" @@ -6345,7 +6840,7 @@ msgstr "Repost entfernen" msgid "Remove subtitle file" msgstr "Untertiteldatei entfernen" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Diesen Feed aus deinen gespeicherten Feeds entfernen" @@ -6364,11 +6859,11 @@ msgstr "Verifizierung entfernen" msgid "Remove your verification for this account?" msgstr "Deine Verifizierung für diesen Account entfernen?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Vom Autor entfernt" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Von dir entfernt" @@ -6377,10 +6872,6 @@ msgstr "Von dir entfernt" msgid "Removed from list" msgstr "Aus der Liste entfernt" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Aus meinen Feeds entfernt" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Aus gespeicherten Feeds entfernt" @@ -6395,34 +6886,36 @@ msgstr "Aus deinen Feeds entfernt" msgid "Removed verification" msgstr "Verifizierung entfernt" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Entfernt zitierten Post" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Ersetzen durch „Discover“" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Antworten" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Antworten deaktiviert" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Antworten zu diesem Post sind deaktiviert." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Antworten" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Antworten ({0, plural, one {# Antwort} other {# Antworten}})" @@ -6436,50 +6929,55 @@ msgstr "Antwort vom Thread-Autor ausgeblendet" msgid "Reply Hidden by You" msgstr "Antwort von dir ausgeblendet" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "Antwort-Mitteilungen" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Antworteinstellungen" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "Die Antworteinstellungen werden vom Autor des Threads festgelegt" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Antwortsortierung" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Antwort auf <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Antwort auf einen blockierten Post" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Antwort auf einen Post" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Antwort an dich" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Sichtbarkeit der Antwort aktualisiert" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Antwort wurde erfolgreich ausgeblendet" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Feed melden" msgid "Report list" msgstr "Liste melden" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Nachricht melden" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Post melden" @@ -6567,25 +7065,26 @@ msgstr "Dieses Startpaket melden" msgid "Report this user" msgstr "Diesen Nutzer melden" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Reposten" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Reposten" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Reposten ({0, plural, one {# Repost} other {# Reposts}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "Repost-Mitteilungen" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Reposten oder Post zitieren" @@ -6594,35 +7093,47 @@ msgstr "Reposten oder Post zitieren" msgid "Reposted By" msgstr "Repostet von" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Repostet von {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Repostet von <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Repostet von dir" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "Reposts" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Reposts von diesem Post" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "Reposts deiner Reposts" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "Mitteilungen über Reposts deiner Reposts" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "Code anfordern" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Vor dem Posten ist ein Alternativtext erforderlich" @@ -6630,7 +7141,7 @@ msgstr "Vor dem Posten ist ein Alternativtext erforderlich" msgid "Require an email code to sign in to your account." msgstr "Erfordert einen E-Mail-Code, um dich in deinen Account einzuloggen." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Für diesen Anbieter erforderlich" @@ -6640,12 +7151,8 @@ msgstr "Erforderlich in deiner Region" #: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40 msgid "Resend" -msgstr "" +msgstr "Erneut senden" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "E-Mail erneut senden" msgid "Resend Verification Email" msgstr "Verifizierungsmail erneut senden" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "Erinnerung zur Aktivitätsmitteilung zurücksetzen" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Zurücksetzungscode" @@ -6667,8 +7180,8 @@ msgstr "Zurücksetzungscode" msgid "Reset Code" msgstr "Zurücksetzungscode" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Onboardingstatus zurücksetzen" @@ -6687,21 +7200,23 @@ msgstr "Wiederholt die letzte Aktion, bei der ein Fehler aufgetreten ist" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Wiederholen" @@ -6721,19 +7236,19 @@ msgstr "Zurück zur Startseite" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Zurück zur vorherigen Seite" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Geht zum vorherigen Schritt zurück" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Geht zum vorherigen Schritt zurück" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Speichern" @@ -6762,15 +7276,13 @@ msgstr "Speichern" msgid "Save birthday" msgstr "Geburtstag speichern" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Änderungen speichern" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Änderungen speichern" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "QR-Code speichern" msgid "Save to my feeds" msgstr "In meinen Feeds speichern" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Gespeicherte Feeds" @@ -6802,18 +7314,14 @@ msgstr "Gespeicherte Feeds" msgid "Saved to your feeds" msgstr "In deinen Feeds gespeichert" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Speichert alle Änderungen an Deinem Profil" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Speichert Bildzuschnitt-Einstellungen" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Sag Hallo!" @@ -6826,16 +7334,16 @@ msgstr "Wissenschaft" msgid "Scroll to top" msgstr "Nach oben scrollen" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Suche" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Posts von @{0} durchsuchen" @@ -6861,7 +7369,7 @@ msgstr "Nach \"{query}\" suchen" msgid "Search for \"{searchText}\"" msgstr "Suche nach „{searchText}“" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Suche nach Feeds, die du anderen vorschlagen möchtest." @@ -6877,10 +7385,14 @@ msgstr "Nach weiteren Feeds suchen" msgid "Search for posts, users, or feeds" msgstr "Suche nach Posts, Nutzern oder Feeds" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Suche nach GIFs" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "Suche ist derzeit nicht verfügbar, wenn du ausgeloggt bist" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Meine Posts durchsuchen" @@ -6890,12 +7402,12 @@ msgstr "Meine Posts durchsuchen" msgid "Search posts" msgstr "Posts durchsuchen" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Profile suchen" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Suche auf Tenor" @@ -6903,18 +7415,14 @@ msgstr "Suche auf Tenor" msgid "Search..." msgstr "Suche..." -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Sucht nach Profilen" #: src/components/dialogs/EmailDialog/screens/Update.tsx:243 msgid "Security step required" -msgstr "" - -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Sicherheitsschritt erforderlich" +msgstr "Sicherheitsmaßnahme erforderlich" #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" @@ -6936,14 +7444,31 @@ msgstr "#{tag}-Posts des Nutzers ansehen" msgid "See jobs at Bluesky" msgstr "Sieh dir Jobs bei Bluesky an" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "Mehr sehen" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "Weitere Accounts, die dir gefallen könnten" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "Weitere empfohlene Profile auf der Entdecken-Seite ansehen" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Sieh dir diesen Leitfaden an" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Such-Slider. Verwende die Pfeiltasten, um vorwärts oder rückwärts zu suchen und Leertaste zum Abspielen/Pausieren" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "{0} auswählen" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Wähle eine Farbe" @@ -6954,7 +7479,7 @@ msgstr "Account auswählen" #: src/components/AppLanguageDropdown.tsx:60 msgid "Select an app language" -msgstr "" +msgstr "Wähle eine App-Sprache aus" #: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 msgid "Select an avatar" @@ -6966,11 +7491,11 @@ msgstr "Ein Emoji auswählen" #: src/components/Select/index.tsx:204 msgid "Select an option" -msgstr "" +msgstr "Wähle eine Option aus" #: src/screens/Settings/LanguageSettings.tsx:98 msgid "Select app language" -msgstr "" +msgstr "App-Sprache auswählen" #: src/screens/Settings/LanguageSettings.tsx:164 msgid "Select content languages" @@ -6978,7 +7503,7 @@ msgstr "Inhaltssprachen auswählen" #: src/components/live/GoLiveDialog.tsx:179 msgid "Select duration" -msgstr "" +msgstr "Dauer auswählen" #: src/screens/Login/index.tsx:144 msgid "Select from an existing account" @@ -6988,7 +7513,7 @@ msgstr "Von einem bestehenden Account auswählen" msgid "Select GIF" msgstr "GIF auswählen" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "GIF „{0}“ auswählen" @@ -6996,6 +7521,11 @@ msgstr "GIF „{0}“ auswählen" msgid "Select how long to mute this word for." msgstr "Auswählen, wie lange dieses Wort stummgeschaltet werden soll." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "Sprache auswählen" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Sprache auswählen..." @@ -7004,7 +7534,7 @@ msgstr "Sprache auswählen..." msgid "Select languages" msgstr "Sprachen auswählen" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "Moderationsdienst auswählen" @@ -7014,7 +7544,7 @@ msgstr "Moderator auswählen" #: src/screens/Settings/LanguageSettings.tsx:131 msgid "Select primary language" -msgstr "" +msgstr "Primäre Sprache auswählen" #: src/view/com/composer/videos/SubtitleFilePicker.tsx:59 #: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 @@ -7045,12 +7575,12 @@ msgstr "Wähle aus, welche Sprache für die Nutzeroberfläche der App verwendet msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Wähle aus, welche Sprachen deine abonnierten Feeds enthalten sollen. Wenn keine ausgewählt sind, werden alle Sprachen angezeigt." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Wähle dein Geburtsdatum" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Wähle deine Interessen aus den folgenden Optionen aus" @@ -7058,7 +7588,11 @@ msgstr "Wähle deine Interessen aus den folgenden Optionen aus" msgid "Select your preferred language for translations in your feed." msgstr "Wähle deine bevorzugte Sprache für Übersetzungen in deinem Feed aus." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "Wähle deine bevorzugten Mitteilungs-Kanäle aus" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "Wählt Option {0} von {numItems} aus" @@ -7066,17 +7600,9 @@ msgstr "Wählt Option {0} von {numItems} aus" msgid "Send a neat website!" msgstr "Sende eine tolle Website!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Bestätigungs-E-Mail senden" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "E-Mail senden" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "E-Mail senden" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Feedback senden" @@ -7095,9 +7621,9 @@ msgstr "Feedback senden" msgid "Send message" msgstr "Nachricht senden" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" -msgstr "" +msgstr "Post an {name} senden" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." @@ -7114,20 +7640,20 @@ msgstr "Bericht senden" msgid "Send report to {0}" msgstr "Meldung an {0} senden" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "Meldung senden an {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Verifizierungs-E-Mail senden" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Per Direktnachricht senden" @@ -7143,7 +7669,7 @@ msgstr "Server-Adresse" msgid "Set app icon to {0}" msgstr "App-Symbol auf {0} ändern" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Geburtsdatum festlegen" @@ -7159,13 +7685,57 @@ msgstr "Richte deinen Account ein" msgid "Sets email for password reset" msgstr "Legt die E-Mail für das Zurücksetzen des Passworts fest" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Einstellungen" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "Einstellungen für Aktivitäten von anderen" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "Einstellungen, um anderen zu erlauben, Mitteilungen über deine Posts zu erhalten" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "Einstellungen für Mitteilungen zu „Gefällt mir“-Angaben" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "Einstellungen für Erwähnungsmitteilungen" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "Einstellungen für Mitteilungen über neue Follower" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "Einstellungen für Mitteilungen für alles andere" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "Einstellungen für Mitteilungen zu „Gefällt mir“-Angaben für deine Reposts" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "Einstellungen für Mitteilungen zu Reposts deiner Reposts" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "Einstellungen für Mitteilungen zu Zitaten" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "Einstellungen für Mitteilungen zu Antworten" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "Einstellungen für Mitteilungen zu Reposts" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7173,7 +7743,7 @@ msgstr "Einstellungen gespeichert" #: src/view/com/composer/labels/LabelsBtn.tsx:173 msgid "Sexual activity or erotic nudity." -msgstr "Sexuelle Aktivitäten oder erotische Nacktheit." +msgstr "Sexuelle Aktivität oder erotische Nacktheit." #: src/lib/moderation/useGlobalLabelStrings.ts:38 msgid "Sexually Suggestive" @@ -7200,35 +7770,30 @@ msgstr "Teile eine coole Geschichte!" msgid "Share a fun fact!" msgstr "Teile eine witzige Tatsache!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Trotzdem teilen" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" -msgstr "" +msgstr "Autor-DID teilen" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Link teilen" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Link teilen" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Link teilen Dialog" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" -msgstr "" +msgstr "Post über at:// URI teilen" #: src/components/StarterPack/ShareDialog.tsx:115 #: src/components/StarterPack/ShareDialog.tsx:126 @@ -7245,36 +7810,32 @@ msgstr "Dieses Startpaket teilen" #: src/components/StarterPack/ShareDialog.tsx:80 msgid "Share this starter pack and help people join your community on Bluesky." -msgstr "Teile dieses Startpaket und hilf Menschen, deiner Gemeinschaft auf Bluesky beizutreten." +msgstr "Teile dieses Startpaket und hilf Menschen, deiner Community auf Bluesky beizutreten." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 #: src/view/com/profile/ProfileMenu.tsx:256 msgid "Share via..." -msgstr "" +msgstr "Teilen über..." #: src/components/dms/ChatEmptyPill.tsx:34 msgid "Share your favorite feed!" msgstr "Teile deinen Lieblings-Feed!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Tester für gemeinsame Einstellungen" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Teilt die verlinkte Website" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Anzeigen" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Alt-Text anzeigen" @@ -7303,8 +7864,8 @@ msgstr "Anpassungsoptionen anzeigen" msgid "Show hidden replies" msgstr "Ausgeblendete Antworten anzeigen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Weniger davon anzeigen" @@ -7312,55 +7873,63 @@ msgstr "Weniger davon anzeigen" msgid "Show list anyway" msgstr "Liste trotzdem anzeigen" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Mehr anzeigen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Mehr davon anzeigen" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "Mehr Antworten anzeigen" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Stummgeschaltete Antworten anzeigen" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "Antworten auf Posts in einer Baumansicht anzeigen" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Zitierte Posts anzeigen" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Antworten anzeigen" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Antworten anzeigen als" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Antworten als Thread anzeigen" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Zeige Antworten von Personen, denen du folgst, vor allen anderen Antworten an" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Antwort für alle anzeigen" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Reposts anzeigen" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Zeige Beispiele deiner gespeicherten Feeds in deinem Following-Feed" @@ -7372,16 +7941,17 @@ msgstr "Warnung zeigen" msgid "Show warning and filter from feeds" msgstr "Warnung anzeigen und aus Feeds filtern" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Zeigt Informationen darüber an, wann dieser Post erstellt wurde" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "Zeigt andere Accounts an, zu denen du wechseln kannst" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Zeigt den Inhalt an" @@ -7390,14 +7960,15 @@ msgstr "Zeigt den Inhalt an" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "Einloggen bei einem Account, der nicht aufgeführt ist" msgid "Sign in to Bluesky or create a new account" msgstr "Logge dich bei Bluesky ein oder erstelle einen neuen Account" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "Logge dich ein, um den Post zu sehen" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Ausloggen" @@ -7444,8 +8020,8 @@ msgstr "Ausloggen" msgid "Sign Out" msgstr "Ausloggen" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Ausloggen?" @@ -7459,12 +8035,12 @@ msgstr "Anmeldung erforderlich" msgid "Signed in as @{0}" msgstr "Angemeldet als @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Ähnliche Accounts" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Überspringen" @@ -7472,14 +8048,13 @@ msgstr "Überspringen" msgid "Skip this flow" msgstr "Diesen Schritt überspringen" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Kleiner" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" -msgstr "" +msgstr "Erinnerung vorübergehend ausblenden" #: src/screens/Onboarding/index.tsx:37 #: src/screens/Onboarding/state.ts:100 @@ -7490,11 +8065,11 @@ msgstr "Software-Entwickler" msgid "Some of your verifications are invalid." msgstr "Einige deiner Verifizierungen sind ungültig." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Einige andere Feeds, die dir gefallen könnten" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Einige Leute können antworten" @@ -7510,10 +8085,11 @@ msgstr "Jemand hat mit {0} auf {1} reagiert" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "Etwas stimmt mit den Daten, die du melden möchtest, nicht. Bitte kontaktiere den Support." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Etwas ist schiefgelaufen" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Etwas ist schiefgelaufen, bitte versuche es erneut" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Etwas ist schiefgelaufen, bitte versuche es erneut." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Etwas ist schiefgelaufen!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "Etwas ist schiefgelaufen. Bitte versuche es in Kürze noch einmal." + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "Etwas ist schiefgelaufen. Bitte versuche es erneut." @@ -7539,20 +8118,23 @@ msgstr "Etwas ist schiefgelaufen. Bitte versuche es erneut." msgid "Something wrong? Let us know." msgstr "Etwas stimmt nicht? Lass es uns wissen." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "Entschuldigung! Deine Sitzung ist abgelaufen. Bitte logge dich erneut ein." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Antworten sortieren" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Antworten sortieren nach" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Antworten auf denselben Post sortieren nach:" @@ -7579,9 +8161,9 @@ msgstr "Spam; übermäßige Erwähnungen oder Antworten" msgid "Sports" msgstr "Sport" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." -msgstr "" +msgstr "Starte eine Konversation, und sie wird hier angezeigt." #: src/components/dms/dialogs/NewChatDialog.tsx:74 msgid "Start a new chat" @@ -7601,9 +8183,9 @@ msgstr "Beginne, Personen hinzuzufügen!" msgid "Start chat with {displayName}" msgstr "Chat mit {displayName} starten" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Startpaket" @@ -7611,12 +8193,12 @@ msgstr "Startpaket" msgid "Starter pack by {0}" msgstr "Startpaket von {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Startpaket von <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Dein Startpaket" @@ -7638,19 +8220,21 @@ msgstr "Startpakete ermöglichen es dir, deine Lieblings-Feeds und -Leute mit de msgid "Status Page" msgstr "Status-Seite" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Schritt {0} von {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Der Speicher wurde gelöscht, du musst die App jetzt neu starten." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Storybook" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Einspruch einlegen" msgid "Submit Appeal" msgstr "Einspruch einlegen" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "Meldung absenden" @@ -7676,10 +8260,14 @@ msgstr "Meldung absenden" msgid "Subscribe" msgstr "Abonnieren" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Abonniere @{0}, um diese Kennzeichnungen zu verwenden:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "Account-Aktivitäten abonnieren" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Kennzeichner abonnieren" @@ -7692,8 +8280,12 @@ msgstr "Diesen Kennzeichner abonnieren" msgid "Subscribe to this list" msgstr "Diese Liste abonnieren" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "Erfolg" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Erfolgreich!" @@ -7705,7 +8297,7 @@ msgstr "Erfolgreich verifiziert" msgid "Suggested Accounts" msgstr "Vorgeschlagene Accounts" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Vorgeschlagen für dich" @@ -7714,26 +8306,26 @@ msgstr "Vorgeschlagen für dich" msgid "Suggestive" msgstr "Suggestiv" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Sonnenaufgang" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Sonnenuntergang" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Support" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Account wechseln" @@ -7742,24 +8334,24 @@ msgstr "Account wechseln" msgid "Switch Account" msgstr "Account wechseln" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Accounts wechseln" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "Zu {0} wechseln" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "System" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Systemprotokoll" @@ -7767,6 +8359,18 @@ msgstr "Systemprotokoll" msgid "Tags only" msgstr "Nur Tags" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "Für Informationen tippen" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "Für mehr Informationen tippen" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "Tippe, um zu bestätigen, dass du diese Änderungen verstanden hast und ihnen zustimmst und Bluesky weiterhin nutzen möchtest" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7783,7 +8387,7 @@ msgstr "Aufgabe abgeschlossen – 10 Accounts gefolgt!" #: src/state/shell/progress-guide.tsx:223 msgid "Task complete - 10 likes!" -msgstr "Aufgabe abgeschlossen – 10 Likes!" +msgstr "Aufgabe abgeschlossen – 10 Gefällt mir!" #: src/components/ProgressGuide/List.tsx:64 msgid "Teach our algorithm what you like" @@ -7811,12 +8415,14 @@ msgstr "Erzähl uns ein wenig mehr" msgid "Terms" msgstr "Bedingungen" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Nutzungsbedingungen" @@ -7846,11 +8452,7 @@ msgstr "Text-Eingabefeld" #: src/view/com/posts/ShowLessFollowup.tsx:39 msgid "Thank you for your feedback! It has been sent to the feed operator." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Vielen Dank! Deine E-Mail wurde erfolgreich verifiziert." +msgstr "Danke für dein Feedback! Es wurde an den Feed-Betreiber gesendet." #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." @@ -7864,28 +8466,28 @@ msgstr "Danke, du hast deine E-Mail-Adresse erfolgreich verifiziert. Du kannst d msgid "That contains the following:" msgstr "Das enthält Folgendes:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Dieser Handle ist bereits vergeben." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Dieses Startpaket konnte nicht gefunden werden." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "Dieser Nutzername ist bereits vergeben" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Das ist alles, Leute!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "Das ist alles!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "Nach dem Entblocken kann der Account wieder mit dir interagieren." @@ -7900,7 +8502,7 @@ msgstr "Die App wird neu gestartet" msgid "The author of this thread has hidden this reply." msgstr "Der Autor dieses Themas hat diese Antwort ausgeblendet." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Die Bluesky-Webanwendung" @@ -7910,7 +8512,7 @@ msgstr "Die Community-Richtlinien wurden nach <0/> verschoben" #: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" -msgstr "Die Copyright-Richtlinie wurde nach <0/> verschoben" +msgstr "Die Urheberrechtsrichtlinie wurde nach <0/> verschoben" #: src/view/com/posts/FeedShutdownMsg.tsx:102 msgid "The Discover feed" @@ -7920,10 +8522,6 @@ msgstr "Der Discover-Feed" msgid "The Discover feed now knows what you like" msgstr "Der Discover-Feed weiß jetzt, was dir gefällt" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "" - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "Das Erlebnis ist in der App besser. Lade jetzt Bluesky herunter und wir machen dort weiter, wo du aufgehört hast." @@ -7944,8 +8542,16 @@ msgstr "Die folgenden Kennzeichnungen wurden auf deinen Inhalt angewendet." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "Die folgenden Einstellungen werden als Standard für das Erstellen neuer Posts verwendet. Du kannst diese für einen spezifischen Post im Composer bearbeiten." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "Die Gesetze an deinem Standort verlangen, dass du verifizierst, dass du volljährig bist, bevor du auf bestimmte Funktionen von Bluesky zugreifen kannst, wie zum Beispiel Inhalte für Erwachsene und Direktnachrichten." + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "Die Gesetze an deinem Standort verlangen, dass du dich verifizierst, volljährig zu sein, um auf bestimmte Funktionen zugreifen zu können. Tippe, um mehr zu erfahren." + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Möglicherweise wurde der Post gelöscht." @@ -7953,9 +8559,10 @@ msgstr "Möglicherweise wurde der Post gelöscht." msgid "The Privacy Policy has been moved to <0/>" msgstr "Die Datenschutzerklärung wurde nach <0/> verschoben" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "Das ausgewählte Video ist größer als 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "Das ausgewählte Video ist größer als 100 MB. Bitte versuche es mit einer kleineren Datei erneut." #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7968,7 +8575,7 @@ msgstr "Das Startpaket, das du ansehen möchtest, ist ungültig. Du kannst diese #: src/components/ContextMenu/index.tsx:433 msgid "The subject of the context menu" -msgstr "" +msgstr "Das Thema des Kontextmenüs" #: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." @@ -7982,7 +8589,7 @@ msgstr "Die Nutzungsbedingungen wurden verschoben nach" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "Der von dir eingegebene Verifizierungscode ist ungültig. Bitte stelle sicher, dass du den richtigen Verifizierungslink verwendet hast, oder fordere einen neuen an." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Theme" @@ -7990,14 +8597,14 @@ msgstr "Theme" msgid "There is no time limit for account deactivation, come back any time." msgstr "Es gibt kein Zeitlimit für die Deaktivierung deines Accounts, du kannst jederzeit wiederkommen." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Es gab ein Problem bei der Verbindung mit Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Beim Kontaktieren des Servers ist ein Problem aufgetreten" @@ -8006,17 +8613,12 @@ msgstr "Beim Kontaktieren des Servers ist ein Problem aufgetreten" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Beim Kontaktieren des Servers ist ein Problem aufgetreten. Bitte überprüfe deine Internetverbindung und versuche es erneut." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Beim Kontaktieren deines Servers ist ein Problem aufgetreten" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Beim Abrufen von Mitteilung ist ein Problem aufgetreten. Tippe hier, um es erneut zu versuchen." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Beim Abrufen von Posts ist ein Problem aufgetreten. Tippe hier, um es erneut zu versuchen." @@ -8037,7 +8639,7 @@ msgstr "Beim Abrufen deiner Listen ist ein Problem aufgetreten. Tippe hier, um e msgid "There was an issue fetching your service info" msgstr "Es gab ein Problem beim Abrufen deiner Service-Informationen" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Beim Entfernen dieses Feeds ist ein Problem aufgetreten. Bitte überprüfe deine Internetverbindung und versuche es erneut." @@ -8052,9 +8654,9 @@ msgstr "Es gab ein Problem beim Senden deiner Meldung. Bitte überprüfe deine I msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Beim Aktualisieren deiner Feeds ist ein Problem aufgetreten. Bitte überprüfe deine Internetverbindung und versuche es erneut." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Beim Aktualisieren deiner Feeds ist ein Problem aufgetreten. Bitte über msgid "There was an issue! {0}" msgstr "Es gab ein Problem! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Es gab ein Problem! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Es ist ein Problem aufgetreten. Bitte überprüfe deine Internetverbindung und versuche es erneut." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Bei der Anwendung ist ein unerwartetes Problem aufgetreten. Bitte teile uns mit, wenn dir das passiert ist!" @@ -8089,7 +8691,7 @@ msgstr "Bei der Anwendung ist ein unerwartetes Problem aufgetreten. Bitte teile msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Es gab einen Ansturm neuer Nutzer auf Bluesky! Wir werden deinen Account so schnell wie möglich aktivieren." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Diese Einstellungen gelten nur für den Following-Feed." @@ -8103,7 +8705,7 @@ msgstr "Dieser Account hat ein Häkchen, weil er von vertrauenswürdigen Quellen #: src/components/verification/VerificationsDialog.tsx:92 msgid "This account has one or more attempted verifications, but it is not currently verified." -msgstr "" +msgstr "Für diesen Account gibt es einen oder mehrere Verifizierungsversuche, ist aber derzeit nicht verifiziert." #: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." @@ -8146,7 +8748,7 @@ msgstr "Dieser Inhalt wird von {0} gehostet. Möchtest du externe Medien aktivie msgid "This content is not available because one of the users involved has blocked the other." msgstr "Dieser Inhalt ist nicht verfügbar, da einer der beteiligten Nutzer den anderen blockiert hat." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Dieser Inhalt ist ohne einen Bluesky-Account nicht sichtbar." @@ -8156,7 +8758,11 @@ msgstr "Diese Konversation ist mit einem gelöschten oder deaktivierten Account. #: src/components/dialogs/EmailDialog/screens/Update.tsx:156 msgid "This email is already associated with your account." -msgstr "" +msgstr "Diese E-Mail ist bereits mit deinem Account verknüpft." + +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "Diese Funktion ermöglicht es Nutzern, Mitteilungen über deine neuen Posts und Antworten zu erhalten. Für wen möchtest du das aktivieren?" #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." @@ -8164,13 +8770,13 @@ msgstr "Diese Funktion befindet sich in der Beta-Phase. Du kannst mehr über Rep #: src/lib/hooks/useCleanError.ts:49 msgid "This feature is not available while using an app password. Please sign in with your main password." -msgstr "" +msgstr "Diese Funktion ist bei Verwendung eines App-Passworts nicht verfügbar. Bitte logge dich mit deinem Hauptpasswort ein." #: src/lib/strings/errors.ts:21 msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Diese Funktion ist mit einem App-Passwort nicht verfügbar. Bitte logge dich mit deinem Hauptpasswort ein." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Dieser Feed erhält momentan viel Traffic und ist vorübergehend nicht verfügbar. Bitte versuche es später noch einmal." @@ -8199,7 +8805,7 @@ msgstr "Diese Informationen werden nicht mit anderen Nutzern geteilt." #: src/components/live/EditLiveDialog.tsx:189 #: src/components/live/GoLiveDialog.tsx:160 msgid "This is not a valid link" -msgstr "" +msgstr "Dies ist kein gültiger Link" #: src/components/moderation/ModerationDetailsDialog.tsx:168 msgid "This label was applied by the author." @@ -8209,11 +8815,11 @@ msgstr "Diese Kennzeichnung wurde vom Autor angewendet." msgid "This label was applied by you." msgstr "Diese Kennzeichnung wurde von dir angewendet." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Dieser Kennzeichner hat nicht angegeben, welche Kennzeichnungen er veröffentlicht und ist möglicherweise nicht aktiv." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Dieser Link führt dich zur folgenden Website:" @@ -8233,29 +8839,28 @@ msgstr "Diese Liste ist leer." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Dieser Moderationsdienst ist nicht verfügbar. Siehe unten für weitere Details. Wenn das Problem weiterhin besteht, kontaktiere uns." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Dieser Post soll am <0>{0} erstellt worden sein, wurde aber erstmals von Bluesky am <1>{1} gesehen." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Dieser Post hat einen unbekannten Threadgate-Typ. Deine App ist möglicherweise veraltet." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Dieser Post wurde gelöscht." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Dieser Post ist nur für eingeloggte Nutzer sichtbar. Er ist nicht für Personen sichtbar, die nicht eingeloggt sind." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "Dieser Post ist nur für eingeloggte Nutzer sichtbar." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Dieser Post wird aus Feeds und Threads ausgeblendet. Dies kann nicht rückgängig gemacht werden." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "Der Autor dieses Posts hat das Zitieren dieses Posts deaktiviert." @@ -8263,11 +8868,11 @@ msgstr "Der Autor dieses Posts hat das Zitieren dieses Posts deaktiviert." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Dieses Profil ist nur für eingeloggte Nutzer sichtbar. Es ist nicht sichtbar für Personen, die nicht eingeloggt sind." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Diese Antwort wird in einen ausgeblendeten Bereich am Ende deines Threads verschoben und Mitteilungen über nachfolgende Antworten werden sowohl für dich als auch für andere stummgeschaltet." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Dieser Dienst hat keine Nutzungsbedingungen oder Datenschutzerklärung bereitgestellt." @@ -8275,9 +8880,13 @@ msgstr "Dieser Dienst hat keine Nutzungsbedingungen oder Datenschutzerklärung b msgid "This should create a domain record at:" msgstr "Dies sollte einen Domain-Eintrag an folgender Stelle erstellen:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "Das sollte nur ein paar Minuten dauern." + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." -msgstr "" +msgstr "Dieser Nutzer hat keinen Anzeigenamen und kann daher nicht verifiziert werden." #: src/view/com/profile/ProfileFollowers.tsx:95 msgid "This user doesn't have any followers." @@ -8316,16 +8925,18 @@ msgstr "Dieser Nutzer folgt niemandem." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Dadurch wird „{0}“ aus deinen stummgeschalteten Wörtern gelöscht. Du kannst es später jederzeit wieder hinzufügen." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Dadurch wird @{0} aus der Schnellzugriffsliste entfernt." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Dies wird deinen Post aus diesem Zitat-Post für alle Nutzer entfernen und durch einen Platzhalter ersetzen." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Thread-Optionen" @@ -8334,24 +8945,27 @@ msgstr "Thread-Optionen" msgid "Thread preferences" msgstr "Thread-Einstellungen" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Thread-Einstellungen" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Thread" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Thread-Modus" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Thread-Einstellungen" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "Verbleibende Zeit: {0, plural, one {# Sekunde} other {# Sekunden}}" @@ -8362,7 +8976,7 @@ msgstr "Um die E-Mail-2FA-Methode zu deaktivieren, verifiziere bitte deinen Zugr #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215 msgid "To disable your email 2FA method, please verify your access to <0>{0}" -msgstr "" +msgstr "Um E-Mail-2FA (Zwei-Faktor-Authentisierung) zu deaktivieren, verifiziere bitte deinen Zugriff auf <0>{0}" #: src/components/dms/ReportConversationPrompt.tsx:19 msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." @@ -8376,48 +8990,62 @@ msgstr "An wen möchtest du diese Meldung senden?" msgid "Today" msgstr "Heute" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Dieses Dropdown umschalten" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Umschalten, um Inhalte für Erwachsene zu aktivieren oder zu deaktivieren" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Schaltet den Ton um" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Top" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "Beliebte Antworten zuerst" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Thema" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Übersetzen" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "Baumansicht" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" -msgstr "" +msgstr "Angesagt" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" -msgstr "" +msgstr "Angesagte Videos" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." -msgstr "" +msgstr "Vertrauen entsteht durch Beziehungen, Communitys und einem gemeinsamen Kontext. Deshalb ermöglichen wir auch <0>vertrauenswürdige Verifizierer: Organisationen, die Verifizierungen direkt ausstellen können." #: src/view/com/util/error/ErrorScreen.tsx:103 msgctxt "action" @@ -8428,14 +9056,10 @@ msgstr "Erneut versuchen" msgid "TV" msgstr "TV" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Zwei-Faktor-Authentisierung (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Gib deinen gewünschten Nutzernamen ein" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Gib deine Nachricht hier ein" @@ -8453,7 +9077,7 @@ msgstr "Verbindung nicht möglich. Bitte überprüfe deine Internetverbindung un #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Dein Dienst kann nicht kontaktiert werden. Bitte überprüfe deine Inter msgid "Unable to delete" msgstr "Löschen nicht möglich" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "Pull Request rückgängig machen" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "Pull Request {currentChannel} rückgängig machen" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "Nicht verfügbar" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "Feed-Information nicht verfügbar" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Entblocken" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Entblocken" @@ -8486,22 +9126,22 @@ msgstr "Entblocken" msgid "Unblock account" msgstr "Account entblocken" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Account entblocken?" #: src/view/screens/ProfileList.tsx:620 msgid "Unblock list" -msgstr "" +msgstr "Liste entsperren" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Repost rückgängig machen" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Repost rückgängig machen ({0, plural, one {# Repost} other {# Reposts}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Entfolgen" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "{0} entfolgen" @@ -8523,7 +9163,7 @@ msgstr "Account entfolgen" msgid "Unfollows the user" msgstr "Entfolgt dem Nutzer" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Leider unterstützt keiner deiner abonnierten Kennzeichner diesen Meldungstyp." @@ -8533,15 +9173,15 @@ msgstr "Unbekannter Verifizierer" #: src/screens/Profile/components/ProfileFeedHeader.tsx:518 msgid "Unlike" -msgstr "Like aufheben" +msgstr "Gefällt mir nicht mehr" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" -msgstr "" +msgstr "Gefällt mir nicht mehr ({0, plural, one {# Gefällt mir} other {# Gefällt mir}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Stummschaltung aufheben" @@ -8555,8 +9195,8 @@ msgstr "Stummschaltung aufheben" msgid "Unmute {tag}" msgstr "Stummschaltung von {tag} aufheben" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Stummschaltung von Konversation aufheben" msgid "Unmute list" msgstr "Liste nicht mehr stummschalten" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Stummschaltung des Threads aufheben" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Stummschaltung von Video aufheben" @@ -8597,8 +9237,8 @@ msgstr "Feed lösen" msgid "Unpin from home" msgstr "Von Startseite lösen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Vom Profil lösen" @@ -8614,10 +9254,10 @@ msgstr "{0} von der Startseite gelöst" msgid "Unpinned from your feeds" msgstr "Aus deinen Feeds gelöst" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" -msgstr "" +msgstr "E-Mail-Erinnerung wieder aktivieren" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233 msgid "Unsubscribe" @@ -8636,7 +9276,7 @@ msgstr "Von diesem Kennzeichner abmelden" msgid "Unsubscribed from list" msgstr "Von der Liste abgemeldet" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Nicht unterstützter Videotyp" @@ -8662,10 +9302,10 @@ msgstr "<0>{displayName} in Listen aktualisieren" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" -msgstr "" +msgstr "E-Mail aktualisieren" #: src/screens/Settings/components/ChangeHandleDialog.tsx:526 #: src/screens/Settings/components/ChangeHandleDialog.tsx:547 @@ -8674,19 +9314,19 @@ msgstr "Aktualisieren auf {domain}" #: src/components/dialogs/EmailDialog/screens/Update.tsx:203 msgid "Update your email" -msgstr "" +msgstr "Aktualisiere deine E-Mail-Adresse" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Aktualisieren des Zitat-Anhangs ist fehlgeschlagen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Aktualisieren der Antwort-Sichtbarkeit ist fehlgeschlagen" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Wird aktualisiert…" @@ -8698,20 +9338,20 @@ msgstr "Stattdessen ein Foto hochladen" msgid "Upload a text file to:" msgstr "Hochladen einer Textdatei auf:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Von Kamera hochladen" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Von Dateien hochladen" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Aus der Bibliothek hochladen" msgid "Uploading images..." msgstr "Bilder werden hochgeladen..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Link-Vorschaubild wird hochgeladen..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Video wird hochgeladen..." @@ -8761,6 +9401,10 @@ msgstr "Empfehlung verwenden" msgid "Use this to sign in to the other app along with your handle." msgstr "Verwende dies, um dich mit deinem Handle bei der anderen App einzuloggen." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "Verwende die E-Mail-Adresse deines Accounts oder eine andere echte E-Mail-Adresse, auf die du Zugriff hast, falls KWS oder Bluesky dich kontaktieren muss." + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Verwendet von:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Nutzerliste aktualisiert" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "Der Nutzername darf nicht länger als {MAX_SERVICE_HANDLE_LENGTH, plural,other {# Zeichen}} sein" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "Der Nutzername darf nicht mit einem Bindestrich beginnen oder enden" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "Der Nutzername darf nur Buchstaben (a–z), Zahlen und Bindestriche enthalten" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Nutzername oder E-Mail-Adresse" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "Nutzer gefolgt von <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "Nutzer, die <0>@{0} folgen" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Nutzer, denen ich folge" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Nutzer in „{0}“" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Nutzer, denen du folgst" @@ -8844,13 +9500,13 @@ msgstr "Wert:" #: src/components/verification/VerificationCreatePrompt.tsx:39 msgid "Verification failed, please try again." -msgstr "" +msgstr "Verifizierung fehlgeschlagen. Bitte versuche es erneut." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "Verifizierungseinstellungen" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "Verifizierungseinstellungen" @@ -8870,31 +9526,37 @@ msgstr "Verifiziert von:" msgid "Verify account" msgstr "Account verifizieren" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "Erneut verifizieren" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" -msgstr "" +msgstr "Code verifizieren" #: src/screens/Settings/components/ChangeHandleDialog.tsx:528 #: src/screens/Settings/components/ChangeHandleDialog.tsx:549 msgid "Verify DNS Record" msgstr "DNS-Eintrag verifizieren" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" -msgstr "" +msgstr "E-Mail-Code verifizieren" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "E-Mail-Verifizierungsdialog" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "Jetzt verifizieren" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Textdatei verifizieren" msgid "Verify this account?" msgstr "Diesen Account verifizieren?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "Verifiziere dein Alter" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Verifiziere deine E-Mail" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Verifiziere deine E-Mail" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "Verifizieren" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "Verifizierung deiner Altersverifikation" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Version {appVersion}" +msgid "Version {0}" +msgstr "Version {0}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Video" @@ -8928,7 +9598,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "Video konnte nicht verarbeitet werden" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Video-Feed" @@ -8942,15 +9612,15 @@ msgstr "Video von {0}: {text}" msgid "Video Games" msgstr "Videospiele" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Video ist pausiert" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Video wird abgespielt" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Video nicht gefunden." @@ -8958,11 +9628,11 @@ msgstr "Video nicht gefunden." msgid "Video settings" msgstr "Video-Einstellungen" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Video hochgeladen" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Video: {0}" @@ -8979,11 +9649,11 @@ msgstr "Videos dürfen nicht länger als 3 Minuten sein" msgid "View {0}'s avatar" msgstr "Avatar von {0} ansehen" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Profil von {0} ansehen" @@ -8991,7 +9661,7 @@ msgstr "Profil von {0} ansehen" msgid "View {displayName}'s profile" msgstr "Profil von {displayName} ansehen" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Profil des blockierten Nutzers ansehen" @@ -9009,7 +9679,6 @@ msgstr "Debug-Eintrag anzeigen" msgid "View details" msgstr "Details ansehen" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Details zum Melden einer Urheberrechtsverletzung ansehen" @@ -9022,23 +9691,23 @@ msgstr "Vollständigen Thread ansehen" msgid "View information about these labels" msgstr "Informationen zu diesen Kennzeichnungen anzeigen" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Mehr ansehen" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Profil ansehen" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Avatar ansehen" @@ -9054,28 +9723,28 @@ msgstr "Verifizierungen dieses Nutzers ansehen" msgid "View users who like this feed" msgstr "Nutzer ansehen, denen dieser Feed gefällt" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Video ansehen" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Sieh dir deine blockierten Accounts an" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "Sieh dir deine Standard-Einstellungen für die Post-Interaktion an" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Sieh dir deine Feeds an und entdecke mehr" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Sieh dir deine Moderationslisten an" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Sieh dir deine stummgeschalteten Accounts an" @@ -9083,8 +9752,8 @@ msgstr "Sieh dir deine stummgeschalteten Accounts an" msgid "View your verifications" msgstr "Deine Verifizierungen ansehen" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Vollständiges Bild ansehen" @@ -9092,16 +9761,20 @@ msgstr "Vollständiges Bild ansehen" msgid "Views video in immersive mode" msgstr "Zeigt Video im immersiven Modus" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "Seite ansehen" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "Site besuchen" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "Rufe deine Mitteilungseinstellungen auf" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Lautstärke" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9113,12 +9786,20 @@ msgstr "Inhaltswarnung anzeigen" #: src/lib/moderation/useLabelBehaviorDescription.ts:46 msgid "Warn content and filter from feeds" -msgstr "" +msgstr "Inhaltswarnung anzeigen und in Feeds ausblenden" #: src/components/live/LiveStatusDialog.tsx:156 #: src/components/live/LiveStatusDialog.tsx:169 msgid "Watch now" -msgstr "" +msgstr "Jetzt ansehen" + +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "Wir konnten keine Verbindung zum Dienst herstellen, der diesen benutzerdefinierten Feed bereitstellt. Er ist möglicherweise vorübergehend nicht verfügbar oder dauerhaft offline." + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "Wir konnten diese Liste nicht finden. Sie wurde wahrscheinlich gelöscht." #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." @@ -9128,7 +9809,7 @@ msgstr "Wir konnten keine Ergebnisse für diesen Hashtag finden." msgid "We couldn't find any results for that topic." msgstr "Wir konnten keine Ergebnisse zu diesem Thema finden." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Wir konnten diese Konversation nicht laden" @@ -9136,27 +9817,31 @@ msgstr "Wir konnten diese Konversation nicht laden" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Wir schätzen, dass es noch {estimatedTime} dauert, bis dein Account bereit ist." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "Wir arbeiten mit <0>KWS zusammen, um zu überprüfen, ob du volljährig bist. Wenn du unten auf „Starten“ klickst, prüft KWS, ob du dein Alter bereits mit dieser E-Mail-Adresse für andere Spiele oder Dienste verifiziert hast, die auf KWS-Technologie basieren. Falls nicht, sendet dir KWS eine E-Mail mit Anweisungen zur Altersverifizierung. Sobald du fertig bist, wirst du zurückgeleitet und kannst Bluesky weiter nutzen." + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Wir haben eine weitere Verifizierungs-E-Mail an <0>{0} gesendet." #: src/screens/Onboarding/StepFinished.tsx:256 msgid "We hope you have a wonderful time. Remember, Bluesky is:" -msgstr "Wir hoffen, dass du eine schöne Zeit hast. Denke daran, Bluesky ist:" +msgstr "Wir hoffen, du hast eine wundervolle Zeit. Denk daran, Bluesky ist:" #: src/view/com/posts/DiscoverFallbackHeader.tsx:29 msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Wir haben keine weiteren Posts von den Nutzern, denen du folgst. Hier sind die neuesten von <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "Wir empfehlen, mindestens zwei Interessen auszuwählen." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." -msgstr "" +msgstr "Wir haben eine E-Mail an <0>{0} gesendet, die einen Link enthält. Bitte klicke darauf, um den E-Mail-Verifizierungsprozess abzuschließen." -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Wir konnten nicht feststellen, ob du berechtigt bist, Videos hochzuladen. Bitte versuche es erneut." @@ -9164,9 +9849,13 @@ msgstr "Wir konnten nicht feststellen, ob du berechtigt bist, Videos hochzuladen msgid "We were unable to load your birth date preferences. Please try again." msgstr "Wir konnten deine Geburtsdatums-Einstellungen nicht laden. Bitte versuche es erneut." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." -msgstr "" +msgstr "Wir konnten deine konfigurierten Kennzeichner derzeit nicht laden." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "Aufgrund eines Verbindungsproblems konnten wir die Verifizierung nicht erhalten. Sie kann später noch eintreffen. In diesem Fall wird dein Account automatisch aktualisiert." #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." @@ -9176,14 +9865,30 @@ msgstr "Wir konnten keine Verbindung herstellen. Bitte versuche es erneut, um mi msgid "We will let you know when your account is ready." msgstr "Wir werden dich benachrichtigen, wenn dein Account bereit ist." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." -msgstr "" +msgstr "Wir senden eine E-Mail an <0>{0}, die einen Link enthält. Bitte klicke darauf, um den E-Mail-Verifizierungsprozess abzuschließen." #: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "Wir werden dies nutzen, um dein Erlebnis individuell zu gestalten." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Wir aktualisieren außerdem unsere <0>Community-Richtlinien und möchten deine Meinung dazu hören! Diese neuen Richtlinien treten am 15. Oktober 2025 in Kraft." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Wir aktualisieren außerdem unsere Community-Richtlinien und möchten deine Meinung dazu hören! Diese neuen Richtlinien treten am 15. Oktober 2025 in Kraft." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "Wir überprüfen deinen Altersverifizierungsstatus mit unseren Servern. Das sollte nur wenige Sekunden dauern." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "Wir haben Probleme bei der Initialisierung des Altersverifizierungsprozesses für deinen Account. Bitte <0>kontaktiere den Support, um Hilfe zu erhalten." + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Wir haben Netzwerkprobleme, versuche es erneut" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Wir führen eine neue Ebene der Verifizierung auf Bluesky ein — ein leicht erkennbares Häkchen." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Wir freuen uns sehr, dass du dabei bist!" @@ -9203,24 +9908,44 @@ msgstr "Es tut uns leid, aber wir konnten diese Liste nicht auflösen. Wenn das #: src/components/dialogs/MutedWords.tsx:378 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." -msgstr "Es tut uns leid, aber wir konnten deine stummgeschalteten Wörter nicht laden. Bitte versuche es erneut." +msgstr "Es tut uns leid, aber wir konnten deine stummgeschalteten Wörter gerade nicht laden. Bitte versuche es erneut." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." -msgstr "Es tut uns leid, aber deine Suche konnte nicht abgeschlossen werden. Bitte versuche es in ein paar Minuten erneut." +msgstr "Es tut uns leid, aber deine Suche konnte nicht abgeschlossen werden. Bitte versuche es in ein paar Minuten noch einmal." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Es tut uns leid! Der Post, auf den du antwortest, wurde gelöscht." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Es tut uns leid! Wir können die von dir gesuchte Seite nicht finden." #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." -msgstr "" +msgstr "Es tut uns leid! Du kannst nur 20 Kennzeichner abonnieren und hast dein Limit von 20 erreicht." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "Wir aktualisieren unsere <0>Nutzungsbedingungen, <1>Datenschutzerklärung und <2>Urheberrechtsrichtlinie, gültig ab dem 15. September 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "Wir aktualisieren unsere Richtlinien" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "Wir aktualisieren unsere Nutzungsbedingungen, Datenschutzerklärung und Urheberrechtsrichtlinie, gültig ab dem 15. September 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Wir aktualisieren unsere Nutzungsbedingungen, Datenschutzerklärung und Urheberrechtsrichtlinie, gültig ab dem 15. September 2025. Außerdem aktualisieren wir unsere Community-Richtlinien und möchten deine Meinung dazu hören! Diese neuen Richtlinien treten am 15. Oktober 2025 in Kraft. Erfahre mehr über diese Änderungen und wie du uns deine Meinung mitteilen kannst, indem du unseren Blogpost liest." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "Wir haben deinen Altersverifikationsstatus bestätigt. Du kannst dieses Dialogfeld jetzt schließen." #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" @@ -9240,7 +9965,7 @@ msgstr "Wie möchtest du dein Startpaket nennen?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Was gibt's?" @@ -9256,11 +9981,11 @@ msgstr "Welche Sprachen werden in diesem Post verwendet?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Welche Sprachen würdest du gerne in deinen algorithmischen Feeds sehen?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Wer kann mit diesem Post interagieren?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Wer kann antworten" @@ -9269,15 +9994,15 @@ msgid "Who can verify?" msgstr "Wer kann verifizieren?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Ups!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." -msgstr "" +msgstr "Ups! Angesagte Videos konnten nicht geladen werden." #: src/screens/Takendown.tsx:173 msgid "Why are you appealing?" @@ -9322,12 +10047,12 @@ msgstr "Warum sollte dieser Nutzer überprüft werden?" msgid "Write a message" msgstr "Schreibe eine Nachricht" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Post verfassen" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Schreibe deine Antwort" @@ -9343,7 +10068,7 @@ msgstr "Falsche DID vom Server zurückgegeben. Empfangen: {0}" #: src/components/live/EditLiveDialog.tsx:153 #: src/components/live/GoLiveDialog.tsx:129 msgid "www.mylivestream.tv" -msgstr "" +msgstr "www.mylivestream.tv" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:87 msgid "Yes" @@ -9358,11 +10083,11 @@ msgstr "Ja, deaktivieren" msgid "Yes, delete this starter pack" msgstr "Ja, dieses Startpaket löschen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Ja, trennen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Ja, ausblenden" @@ -9378,6 +10103,10 @@ msgstr "Gestern" msgid "You" msgstr "Du" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "Du stimmst außerdem den <0>Community-Richtlinien von Bluesky zu. Eine <1>aktualisierte Version unserer Community-Richtlinien tritt am 15. Oktober in Kraft." + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "Du bist ein vertrauenswürdiger Verifizierer" @@ -9386,6 +10115,10 @@ msgstr "Du bist ein vertrauenswürdiger Verifizierer" msgid "You are creating an account on" msgstr "Du erstellst einen Account auf" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "Du kannst derzeit nicht auf den Altersverifikationsprozess von Bluesky zugreifen. Bitte <0>kontaktiere unser Moderationsteam, wenn du glaubst, dass es sich um einen Fehler handelt." + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Du befindest dich in der Warteschlange." @@ -9393,17 +10126,17 @@ msgstr "Du befindest dich in der Warteschlange." #: src/components/live/EditLiveDialog.tsx:119 #: src/components/live/EditLiveDialog.tsx:124 msgid "You are Live" -msgstr "" +msgstr "Du bist live" #: src/components/live/queries.ts:211 msgid "You are no longer live" -msgstr "" +msgstr "Du bist nicht mehr live" #: src/components/live/queries.ts:35 msgid "You are not allowed to go live" -msgstr "" +msgstr "Du darfst nicht live gehen" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Du darfst keine Videos hochladen." @@ -9413,14 +10146,13 @@ msgstr "Du folgst niemandem." #: src/components/live/queries.ts:156 msgid "You are now live!" -msgstr "" +msgstr "Du bist jetzt live!" #: src/components/verification/VerificationsDialog.tsx:64 msgid "You are verified" msgstr "Du bist verifiziert" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "Du bist verifiziert. Du verlierst deinen Verifizierungsstatus, wenn du deinen Anzeigenamen änderst. <0>Mehr erfahren (auf Englisch)." @@ -9441,25 +10173,33 @@ msgstr "Du kannst auch neue benutzerdefinierte Feeds entdecken, denen du folgen msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Du kannst deinen Account stattdessen auch vorübergehend deaktivieren und ihn jederzeit wieder reaktivieren." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "Du kannst in den Chat-Einstellungen der App festlegen, ob Chat-Mitteilungen einen Ton haben sollen" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Du kannst laufende Konversationen fortsetzen, unabhängig davon, welche Einstellung du wählst." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "Du kannst jetzt auswählen, ob du Mitteilungen erhalten möchtest, wenn bestimmte Personen etwas posten. Wenn du zeitnahe Updates von jemandem erhalten möchtest, gehe zu dessen Profil und suche das neue Glocken-Symbol neben dem „Folgen“-Button." + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." -msgstr "Du kannst dich jetzt mit deinem neuen Passwort anmelden." +msgstr "Du kannst dich jetzt mit deinem neuen Passwort einloggen." #: src/screens/Deactivated.tsx:133 msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Du kannst deinen Account reaktivieren, um dich weiterhin einzuloggen. Dein Profil und deine Posts werden für andere Nutzer sichtbar sein." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "Du kannst die Standard-Interaktionseinstellungen unter <0>Einstellungen → Moderation → Interaktionseinstellungen festlegen." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Du kannst dies später in deinen Einstellungen aktualisieren." @@ -9472,7 +10212,7 @@ msgstr "Du hast keine Follower." msgid "You don't follow any users who follow @{name}." msgstr "Du folgst keinen Nutzern, die @{name} folgen." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "Du hast momentan keine Chat-Anfragen." @@ -9480,15 +10220,15 @@ msgstr "Du hast momentan keine Chat-Anfragen." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Du hast noch keine Einladungscodes! Wir schicken dir welche, wenn du schon etwas länger bei Bluesky bist." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Du hast keine angehefteten Feeds." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Du hast keine gespeicherten Feeds." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Du hast den Autor blockiert oder der Autor hat dich blockiert." @@ -9502,6 +10242,10 @@ msgstr "Du hast diesen Nutzer blockiert" msgid "You have blocked this user. You cannot view their content." msgstr "Du hast diesen Nutzer blockiert und kannst seine Inhalte nicht sehen." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "Du hast Mitteilungen für Antworten, Zitate und Erwähnungen vollständig deaktiviert, weshalb dieser Tab nicht mehr aktualisiert wird. Um das anzupassen, gehe zu deinen <0>Mitteilungseinstellungen." + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Du hast diesen Account stummgeschaltet." msgid "You have muted this user" msgstr "Du hast diesen Nutzer stummgeschaltet" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Du hast noch keine Konversationen. Starte eine!" @@ -9547,13 +10291,13 @@ msgstr "Du hast noch keine Accounts blockiert. Um einen Account zu blockieren, g msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Du hast noch keine Accounts stummgeschaltet. Um einen Account stummzuschalten, gehe auf das Profil und wähle „Account stummschalten“ im Menü des Accounts aus." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Du hast das Ende erreicht" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:187 msgid "You have successfully verified your email address. You can close this dialog." -msgstr "" +msgstr "Du hast deine E-Mail-Adresse erfolgreich verifiziert. Du kannst dieses Fenster jetzt schließen." #: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." @@ -9572,6 +10316,10 @@ msgstr "Du hast noch keine Wörter oder Tags stummgeschaltet" msgid "You hid this reply." msgstr "Du hast diese Antwort ausgeblendet." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "Du hast diesen Vorgang bereits vor {0} gestartet. Es kann bis zu 5 Minuten dauern, bis die E-Mail in deinem Posteingang ankommt. Bitte warte ein paar Minuten, bevor du es erneut versuchst." + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Du kannst Einspruch gegen nicht selbst gesetzte Kennzeichnungen erheben, wenn du der Meinung bist, dass sie fälschlicherweise vergeben wurden." @@ -9592,33 +10340,46 @@ msgstr "Du kannst nur bis zu 3 Feeds hinzufügen" msgid "You may only select up to 4 images" msgstr "Du kannst nur bis zu 4 Bilder auswählen" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "Du musst mindestens 13 Jahre alt sein, um einen Account zu erstellen." #: src/components/StarterPack/ProfileStarterPacks.tsx:334 msgid "You must be following at least seven other people to generate a starter pack." -msgstr "Du musst mindestens sieben anderen Personen folgen, um ein Startpaket zu erstellen." +msgstr "Du musst mindestens sieben anderen Personen folgen, um ein Startpaket erstellen zu können." + +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "Du musst die Altersverifikation abschließen, um auf die untenstehenden Einstellungen zugreifen zu können." + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "Du musst die Altersverifikation abschließen, um auf diesen Bildschirm zugreifen zu können." #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" -msgstr "Du musst den Zugriff auf deine Fotomediathek gewähren, um einen QR-Code zu speichern" +msgstr "Du musst den Zugriff auf deine Galerie gewähren, um einen QR-Code speichern zu können" #: src/components/ReportDialog/SubmitView.tsx:211 msgid "You must select at least one labeler for a report" msgstr "Du musst mindestens einen Kennzeichner für eine Meldung auswählen" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "Du musst dich einloggen, um diesen Post zu sehen." + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." -msgstr "" +msgstr "Du musst deine E-Mail-Adresse verifizieren, bevor du die Zwei-Faktor-Authentisierung (2FA) per E-Mail aktivieren kannst." #: src/screens/Deactivated.tsx:128 msgid "You previously deactivated @{0}." msgstr "Du hast @{0} zuvor deaktiviert." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." -msgstr "" +msgstr "Du solltest die App jetzt wahrscheinlich neu starten." #: src/components/dms/MessageItem.tsx:135 msgid "You reacted {0}" @@ -9628,16 +10389,20 @@ msgstr "Du hast mit {0} reagiert" msgid "You reacted {0} to {1}" msgstr "Du hast mit {0} auf {1} reagiert" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Du wirst von all deinen Accounts ausgeloggt." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "Du erhältst keine Mitteilungen mehr für {0}" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Du wirst keine Mitteilungen mehr für diesen Thread erhalten" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Du erhältst nun Mitteilungen für diesen Thread" @@ -9657,29 +10422,29 @@ msgstr "Du: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Du: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Du folgst den vorgeschlagenen Nutzern und Feeds, sobald du mit der Erstellung deines Accounts fertig bist!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Du folgst den vorgeschlagenen Nutzern, sobald du mit der Erstellung deines Accounts fertig bist!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:236 msgid "You'll follow these people and {0} others" -msgstr "" +msgstr "Du wirst diesen Personen und {0} anderen folgen" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 msgid "You'll follow these people right away" -msgstr "" +msgstr "Du wirst diesen Personen gleich von Beginn an folgen" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Du erhältst eine E-Mail an <0>{0}, um zu verifizieren, dass du es bist." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "Du erhältst nun Mitteilungen für {0}!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" -msgstr "" +msgstr "Mit diesen Feeds bleibst du auf dem Laufenden" #: src/screens/SignupQueued.tsx:127 msgid "You're in line" @@ -9703,27 +10468,35 @@ msgstr "Du hast dich entschieden, ein Wort oder Tag in diesem Post auszublenden. msgid "You've found some people to follow" msgstr "Du hast ein paar Leute gefunden, denen du folgen kannst" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "Du hast das Ende des aktiven Inhalts erreicht." + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Du hast das Ende deines Feeds erreicht! Finde weitere Accounts, denen du folgen kannst." #: src/lib/hooks/useCleanError.ts:58 msgid "You've reached the maximum number of requests allowed. Please try again later." -msgstr "" +msgstr "Du hast die maximale Anzahl an Anfragen erreicht. Bitte versuche es später noch einmal." -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "Du hast den Anfang des aktiven Inhalts erreicht." + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Du hast dein tägliches Limit für Video-Uploads erreicht (zu viele Bytes)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Du hast dein tägliches Limit für Video-Uploads erreicht (zu viele Videos)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Du hast keine Videos mehr zum Anschauen. Vielleicht ist es ein guter Zeitpunkt, eine Pause zu machen?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Dein Account" @@ -9735,7 +10508,7 @@ msgstr "Dein Account wurde gelöscht" msgid "Your account has been suspended" msgstr "Dein Account wurde gesperrt" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Dein Account ist noch nicht alt genug, um Videos hochzuladen. Bitte versuche es später erneut." @@ -9751,11 +10524,11 @@ msgstr "Es wurde festgestellt, dass dein Account gegen die <0>Bluesky Social Nut msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Dein Geburtsdatum" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Dein Browser unterstützt das Videoformat nicht. Bitte versuche es mit einem anderen Browser." @@ -9765,36 +10538,34 @@ msgstr "Deine Chats wurden deaktiviert" #: src/components/dialogs/InAppBrowserConsent.tsx:69 msgid "Your choice will be remembered for future links. You can change it at any time in settings." -msgstr "" +msgstr "Deine Auswahl wird für zukünftige Links gespeichert. Du kannst sie jederzeit in den Einstellungen ändern." #: src/screens/Settings/components/ChangeHandleDialog.tsx:513 msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Dein aktueller Handle <0>{0} bleibt automatisch für dich reserviert. Du kannst jederzeit von diesem Account aus zu ihm zurückwechseln." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "Deine E-Mail" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Deine E-Mail scheint ungültig zu sein." #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65 msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Deine E-Mail wurde noch nicht verifiziert. Dies ist ein wichtiger Sicherheitsschritt, den wir empfehlen." +msgstr "Deine E-Mail wurde noch nicht verifiziert. Bitte verifiziere deine E-Mail, um alle Funktionen von Bluesky nutzen zu können." #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" -msgstr "Dein erstes Like!" +msgstr "Deine erste „Gefällt mir“-Angabe!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "Deine Follower" @@ -9806,19 +10577,15 @@ msgstr "Dein Following-Feed ist leer! Folge mehr Nutzern, um zu sehen, was passi msgid "Your full handle will be <0>@{0}" msgstr "Dein vollständiger Handle lautet <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "Dein vollständiger Nutzername lautet <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "Deine Interessen" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "Deine Interessen wurden aktualisiert!" @@ -9835,31 +10602,35 @@ msgstr "Deine stummgeschalteten Wörter" msgid "Your password has been changed successfully!" msgstr "Dein Passwort wurde erfolgreich geändert!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "Dein Passwort muss mindestens 8 Zeichen lang sein." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Dein Post wurde veröffentlicht" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Deine Posts wurden veröffentlicht" #: src/screens/Onboarding/StepFinished.tsx:268 msgid "Your posts, likes, and blocks are public. Mutes are private." -msgstr "Deine Posts, Likes und Blockierungen sind öffentlich. Stummschaltungen sind privat." +msgstr "Deine Posts, „Gefällt mir“-Angaben und Blockierungen sind öffentlich. Stummschaltungen sind privat." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "Deine bevorzugte Sprache" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Dein Profil, deine Posts, deine Feeds und Listen werden nicht mehr für andere Bluesky-Nutzer sichtbar sein. Du kannst deinen Account jederzeit reaktivieren, indem du dich einloggst." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Deine Antwort wurde veröffentlicht" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "Deine Meldung wird an <0>{0} gesendet." @@ -9867,7 +10638,7 @@ msgstr "Deine Meldung wird an <0>{0} gesendet." msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Deine Meldung wird an den Bluesky-Moderationsdienst gesendet" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "Deine ausgewählten Interessen helfen uns dabei, dir Inhalte anzuzeigen, die dich interessieren." diff --git a/src/locale/locales/el/messages.po b/src/locale/locales/el/messages.po index 2145322693..ac18843476 100644 --- a/src/locale/locales/el/messages.po +++ b/src/locale/locales/el/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: el\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: Greek\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,7 +27,7 @@ msgstr "(ενεργό)" msgid "(contains embedded content)" msgstr "(περιέχει ενσωματωμένο περιεχόμενο)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(χωρίς email)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# αναδημοσίευση} other {# αναδημοσ msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# δευτερόλεπτο} other {# δευτερόλεπτα}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -90,17 +90,18 @@ msgstr "" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {ακόλουθος} other {ακόλουθοι}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {ακολουθεί} other {ακολουθούν}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {Μου αρέσει} other {Μου αρέσει}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {Μου αρέσει} other {Μου αρέσει}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {ανάρτηση} other {αναρτήσεις}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {πάραθεση} other {παραθέσεις}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {αναδημοσίευση} other {αναδημοσιεύσεις}}" @@ -135,6 +138,10 @@ msgstr "{0} <0>σε <1>ετικέτες" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>σε <1>κείμενο & ετικέτες" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "" @@ -143,11 +150,15 @@ msgstr "" msgid "{0} is not a valid URL" msgstr "" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} εντάχθηκε αυτήν την εβδομάδα" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} από {1}" @@ -164,8 +175,16 @@ msgstr "" msgid "{0} reacted {1} to {2}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "Η εικόνα προφίλ του {0}" @@ -197,12 +216,12 @@ msgstr "{0}λ." msgid "{0}s" msgstr "{0}δευτ." -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Το Starter Pack του {displayName}" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {ώρα} other {ώρες}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {λεπτό} other {λεπτά}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} και <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} άλλοι}} σας ακολούθησαν" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "Η προσαρμοσμένη ροή άρεσε σε {firstAuthorLink} και <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} άλλους}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} και <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} άλλοι}} άρεσαν την ανάρτησή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} και <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} άλλοι}} αναδημοσίευσαν την ανάρτησή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} και <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} άλλοι}} εγγεγράφηκαν με το πακέτο εκκίνησής σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "Ο/η {firstAuthorLink} σας ακολούθησε" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "Ο/η {firstAuthorLink} σας ακολούθησε πίσω" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "Στον/ην {firstAuthorLink} άρεσε η προσαρμοσμένοη ροή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "Στον/ην {firstAuthorLink} άρεσε την ανάρτησή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "Ο/η {firstAuthorLink} αναδημοσίευσε την ανάρτησή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "Ο/η {firstAuthorLink} γράφτηκε με το Starter Pack σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "Ο/η {firstAuthorName} και {additionalAuthorsCount, plural, one {{formattedAuthorsCount} άλλος} other {{formattedAuthorsCount} άλλοι}} σας ακολούθησαν" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "Η προσαρμοσμένη ροή άρεσε στον/ην {firstAuthorName} και {additionalAuthorsCount, plural, one {{formattedAuthorsCount} άλλον} other {{formattedAuthorsCount} άλλους}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "Στον/ην {firstAuthorName} και σε {additionalAuthorsCount, plural, one {{formattedAuthorsCount} άλλον} other {{formattedAuthorsCount} άλλους}} άρεσε την ανάρτησή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "Ο/η {firstAuthorName} και {additionalAuthorsCount, plural, one {{formattedAuthorsCount} άλλος} other {{formattedAuthorsCount} άλλοι}} αναδημοσίευσαν την ανάρτησή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "Ο/η {firstAuthorName} και {additionalAuthorsCount, plural, one {{formattedAuthorsCount} άλλος} other {{formattedAuthorsCount} άλλοι}} γράφτηκαν με το πακέτο εκκίνησής σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "Ο/η {firstAuthorName} σας ακολούθησε" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "Ο/η {firstAuthorName} σας ακολούθησε πίσω" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "Η προσαρμοσμένη ροή άρεσε στον/ην {firstAuthorName}" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "Στον/ην {firstAuthorName} άρεσε η ανάρτησή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "Ο/η {firstAuthorName} αναδημοσίευσε την ανάρτησή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "Ο/η {firstAuthorName} γράφτηκε στο starter pack σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} ακόλουθοι" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "Δεν είναι δυνατόν να στείλετε μήνυμα στον/ην {handle}" @@ -392,7 +410,7 @@ msgstr "" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -432,12 +450,12 @@ msgstr "" msgid "+{computedTotal}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, και {2, plural, one {# άλλος} other {# άλλοι}} είναι μέσα στο Starter Pack σας" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, και {2, plural, one {# άλλος} other {# άλλοι}} είναι μέσα στο Starter Pack σας" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {ακόλουθος} other {ακόλουθο msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {ακόλουθος} other {ακόλουθοι}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} και <1> <2>{1} περιλαμβάνονται στο πακέτο εκκίνησής σας" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} περιλαμβάνεται στο πακέτο εκκίνησής σας" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} μέλη" @@ -466,11 +484,11 @@ msgstr "<0>{0} μέλη" msgid "<0>{date} at {time}" msgstr "<0>{date} στις {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Πειραματικό: Όταν αυτή η ρύθμιση είναι ενεργοποιημένη, θα λαμβάνετε ειδοποιήσεις απάντησης και παραθέσεων μόνο από χρήστες που ακολουθείτε. Θα συνεχίσουμε να προσθέτουμε περισσότερους ελέγχους εδώ με την πάροδο του χρόνου." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Εσείς και <1> <2>{0} περιλαμβάνονται στο πακέτο εκκίνησής σας" @@ -503,10 +521,14 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Σχετικά" @@ -524,25 +546,25 @@ msgstr "" msgid "Accept Request" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Προσβασιμότητα" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Ρυθμίσεις Προσβασιμότητας" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Λογαριασμός" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Ο Λογαριασμός ακολουθείται" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Λογαριασμός σε σίγαση" msgid "Account Muted by List" msgstr "Λογαριασμός σε σίγαση από λίστα" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Επιλογές λογαριασμού" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Λογαριασμός αφαιρέθηκε από την γρήγορη πρόσβαση" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Λογαριασμός σταμάτησε να ακολουθείται" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Άρση σίγασης λογαριασμού" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Προσθήκη" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Προσθέστε {0} περισσότερα για να συνεχίσετε" @@ -634,8 +666,8 @@ msgstr "Προσθήκη λογαριασμού" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Προσθήκη εναλλακτικού κειμένου" msgid "Add alt text (optional)" msgstr "Προσθήκη εναλλακτικού κειμένου (προαιρετικό)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Προσθήκη άλλου λογαριασμού" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Προσθήκη άλλης ανάρτησης" @@ -670,8 +702,8 @@ msgstr "Προσθήκη κωδικού πρόσβασης εφαρμογής" msgid "Add emoji reaction" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "" @@ -683,7 +715,7 @@ msgstr "" msgid "Add muted words and tags" msgstr "Προσθήκη λέξεων και ετικετών που θα είναι σε σίγαση" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Προσθήκη νέας ανάρτησης" @@ -704,7 +736,7 @@ msgstr "" msgid "Add recommended feeds" msgstr "Προσθήκη προτεινόμενων ροών" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Προσθέστε μερικές ροές στο πακέτο εκκίνησής σας!" @@ -725,10 +757,6 @@ msgstr "Προσθήκη αυτού της ροής στις ροές σας" msgid "Add to lists" msgstr "Προσθήκη σε λίστες" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Προσθήκη στις ροές μου" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "" @@ -738,11 +766,11 @@ msgstr "" msgid "Added to list" msgstr "Προστέθηκε στη λίστα" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Προστέθηκε στις ροές μου" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "" @@ -750,18 +778,18 @@ msgstr "" msgid "Adult" msgstr "Ενήλικες" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Περιεχόμενο για ενηλίκους" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Το περιεχόμενο για ενηλίκους μπορεί να ενεργοποιηθεί μόνο μέσω του Web στην διεύθυνση <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Το περιεχόμενο για ενηλίκους είναι απενεργοποιημένο." @@ -770,16 +798,32 @@ msgstr "Το περιεχόμενο για ενηλίκους είναι απε msgid "Adult Content labels" msgstr "Ετικέτες περιεχομένου για ενηλίκους" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Προηγμένες" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Όλα" @@ -793,7 +837,7 @@ msgstr "Όλοι οι λογαριασμοί έχουν ακολουθηθεί!" msgid "All languages" msgstr "Όλες οι γλώσσες" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Όλες οι ροές που έχετε αποθηκεύσει, σε ένα μέρος." @@ -802,16 +846,21 @@ msgstr "Όλες οι ροές που έχετε αποθηκεύσει, σε έ msgid "Allow access to your direct messages" msgstr "Επιτρέψτε την πρόσβαση στα προσωπικά μηνύματά σας" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Επιτρέψτε νέα μηνύματα από" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Επιτρέψτε απαντήσεις από:" @@ -828,13 +877,13 @@ msgstr "Έχετε ήδη κωδικό;" msgid "Already signed in as @{0}" msgstr "Ήδη συνδεδεμένος ως @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "" msgid "Alt text" msgstr "Εναλλακτικό κείμενο" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Εναλλακτικό κείμενο" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Το εναλλακτικό κείμενο περιγράφει εικόνες για τυφλούς και με χαμηλή όραση χρήστες και βοηθάει να γίνει ξεκάθαρο το περιεχόμενο σε όλους." @@ -861,27 +910,19 @@ msgstr "" msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Ένα email έχει σταλεί στο {0}. Περιλαμβάνει έναν κωδικό επιβεβαίωσης που μπορείτε να εισαγάγετε παρακάτω." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Ένα email έχει σταλεί! Παρακαλώ εισάγετε τον κωδικό επιβεβαίωσης που περιλαμβάνεται στο email παρακάτω." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Παρουσιάστηκε σφάλμα" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Παρουσιάστηκε σφάλμα" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Παρουσιάστηκε σφάλμα κατά τη συμπίεση του βίντεο." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "" @@ -889,11 +930,11 @@ msgstr "" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Παρουσιάστηκε σφάλμα κατά τη δημιουργία του πακέτου έναρξής σας. Θέλετε να δοκιμάσετε ξανά;" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Παρουσιάστηκε σφάλμα κατά τη φόρτωση του βίντεο. Παρακαλώ δοκιμάστε ξανά αργότερα." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Παρουσιάστηκε σφάλμα κατά τη φόρτωση του βίντεο. Παρακαλώ δοκιμάστε ξανά." @@ -910,7 +951,7 @@ msgstr "Παρουσιάστηκε σφάλμα κατά την επιλογή msgid "An error occurred while trying to follow all" msgstr "Παρουσιάστηκε σφάλμα κατά την προσπάθεια παρακολούθησης όλων" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Παρουσιάστηκε σφάλμα κατά τη μεταφόρτωση του βίντεο." @@ -934,8 +975,8 @@ msgstr "Παρουσιάστηκε πρόβλημα κατά την προσπά #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "παρουσιάστηκε άγνωστο σφάλμα" msgid "an unknown labeler" msgstr "άγνωστος ετικετοποιητής" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "και" @@ -963,10 +1004,14 @@ msgstr "και" msgid "Animals" msgstr "Ζώα" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "Κινούμενο GIF" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "" @@ -980,7 +1025,13 @@ msgstr "Αντικοινωνική Συμπεριφορά" msgid "Anybody can interact" msgstr "Ο καθένας μπορεί να αλληλεπιδράσει" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "Τα ονόματα κωδικών πρόσβασης εφαρμογής msgid "App password names must be at least 4 characters long" msgstr "Τα ονόματα κωδικών πρόσβασης εφαρμογής πρέπει να έχουν τουλάχιστον 4 χαρακτήρες" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Κωδικοί πρόσβασης εφαρμογής" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Κωδικοί Πρόσβασης Εφαρμογής" @@ -1053,10 +1104,10 @@ msgstr "" msgid "Appeal this decision" msgstr "Εφεση σε αυτήν την απόφαση" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Εμφάνιση" @@ -1065,12 +1116,20 @@ msgstr "Εμφάνιση" msgid "Apply default recommended feeds" msgstr "Εφαρμογή προεπιλεγμένων προτεινόμενων ροών" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Αρχειοθετήθηκε από {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Αρχειοθετημένη ανάρτηση" @@ -1078,7 +1137,7 @@ msgstr "Αρχειοθετημένη ανάρτηση" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε τον κωδικό πρόσβασης εφαρμογής;" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Θέλετε σίγουρα να διαγράψετε αυτό το μήνυμα; Το μήνυμα θα διαγραφεί για εσάς, αλλά όχι για τον άλλο συμμετέχοντα." @@ -1098,19 +1157,15 @@ msgstr "" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Θέλετε σίγουρα να αποχωρήσετε από αυτή τη συνομιλία; Τα μηνύματά σας θα διαγραφούν για εσάς, αλλά όχι για τον άλλο συμμετέχοντα." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Θέλετε σίγουρα να αφαιρέσετε τον/την {0} από τις ροές σας;" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Είστε σίγουροι ότι θέλετε να αφαιρέσετε αυτό από τις ροές σας;" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Είστε σίγουροι ότι θέλετε να απορρίψετε αυτό το προσχέδιο;" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Είστε σίγουροι ότι θέλετε να απορρίψετε αυτήν την ανάρτηση;" @@ -1131,29 +1186,26 @@ msgstr "Τέχνη" msgid "Artistic or non-erotic nudity." msgstr "Καλλιτεχνική ή μη ερωτική γυμνότητα." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Τουλάχιστον 3 χαρακτήρες" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Οι επιλογές αυτόματης αναπαραγωγής έχουν μετακινηθεί στις <0>Ρυθμίσεις περιεχομένου και μέσων." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Αυτόματη αναπαραγωγή βίντεο και GIF" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Αυτόματη αναπαραγωγή βίντεο και GIF" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Πίσω" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "" @@ -1195,28 +1247,44 @@ msgstr "Πριν δημιουργήσετε ένα Starter Pack, πρέπει π msgid "Before you can accept this chat request, you must first verify your email." msgstr "" +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Ημερομηνία γέννησης" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Αποκλεισμός" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Αποκλεισμός" msgid "Block account" msgstr "Αποκλεισμός λογαριασμού" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Αποκλεισμός λογαριασμού;" @@ -1262,20 +1330,20 @@ msgstr "" msgid "Block User" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Αποκλεισμένος" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Αποκλεισμένοι λογαριασμοί" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Αποκλεισμένοι Λογαριασμοί" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Οι αποκλεισμένοι λογαριασμοί δεν μπορούν να απαντήσουν στις συζητήσεις σας, να σας αναφέρουν ή να αλληλεπιδράσουν με άλλο τρόπο μαζί σας." @@ -1284,11 +1352,11 @@ msgstr "Οι αποκλεισμένοι λογαριασμοί δεν μπορο msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Οι αποκλεισμένοι λογαριασμοί δεν μπορούν να απαντήσουν στις συζητήσεις σας, να σας αναφέρουν ή να αλληλεπιδράσουν με άλλο τρόπο μαζί σας. Δε θα βλέπετε το περιεχόμενό τους και θα τους εμποδίζετε να δουν το δικό σας." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Αποκλεισμένη ανάρτηση." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Ο αποκλεισμός δεν εμποδίζει αυτόν τον ετικετοποιητή από το να τοποθετεί ετικέτες στον λογαριασμό σας." @@ -1309,11 +1377,12 @@ msgstr "Ιστολόγιο" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Το Bluesky δεν μπορεί να επιβεβαιώσει την αυθεντικότητα της ημερομηνίας που δηλώθηκε." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1347,6 +1416,14 @@ msgstr "Το Bluesky δεν θα εμφανίσει το προφίλ και τ msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Θολώστε εικόνες και φιλτράρετε από τις msgid "Books" msgstr "Βιβλία" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Περιηγηθείτε σε περισσότερους λογαριασμούς στην σελίδα Εξερεύνησης" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Περιηγηθείτε σε περισσότερες ροές στην σελίδα Εξερεύνησης" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Περιηγηθείτε σε περισσότερες προτάσεις" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Περιηγηθείτε σε περισσότερες προτάσεις στην σελίδα Εξερεύνησης" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Επιχειρήσεις" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Από {0}" @@ -1428,15 +1502,23 @@ msgstr "Από {0}" msgid "By <0>{0}" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Δημιουργώντας λογαριασμό συμφωνείτε με την <0>Πολιτική Απορρήτου." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Δημιουργώντας λογαριασμό συμφωνείτε με τους <0>Όρους Χρήσης και την <1>Πολιτική Απορρήτου." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Δημιουργώντας λογαριασμό συμφωνείτε με τους <0>Όρους Χρήσης." @@ -1448,14 +1530,17 @@ msgstr "" msgid "Camera" msgstr "Κάμερα" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Κάμερα" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Ακύρωση" @@ -1500,11 +1582,7 @@ msgstr "Ακύρωση διαγραφής λογαριασμού" msgid "Cancel image crop" msgstr "Ακύρωση περικοπής εικόνας" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Ακύρωση επεξεργασίας προφίλ" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Ακύρωση αναδημοσίευσης" @@ -1516,14 +1594,10 @@ msgstr "" msgid "Cancel search" msgstr "Ακύρωση αναζήτησης" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Ακυρώνει το άνοιγμα του συνδεδεμένου ιστότοπου" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Δεν μπορείτε να αλληλεπιδράσετε με έναν μπλοκαρισμένο χρήστη" @@ -1553,17 +1627,12 @@ msgstr "" msgid "Change app language" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Αλλαγή διεύθυνσης email" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Αλλαγή Ονόματος Χρήστη" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "" @@ -1579,14 +1648,6 @@ msgstr "" msgid "Change report reason" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Αλλαγή του Email σας" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Αλλαγή της διεύθυνσης email σας" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "" @@ -1596,10 +1657,15 @@ msgstr "" msgid "Changes hosting provider" msgstr "" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Συνομιλία" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Σίγαση συνομιλίας" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Ρυθμίσεις συνομιλίας" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Ρυθμίσεις Συνομιλίας" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Αφαίρεση σίγασης συνομιλίας" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "" @@ -1661,7 +1738,7 @@ msgstr "Ελέγξτε τα εισερχόμενά σας για ένα email μ msgid "Choose domain verification method" msgstr "Επιλέξτε μέθοδο επαλήθευσης domain" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Επιλέξτε Ροές" @@ -1669,7 +1746,7 @@ msgstr "Επιλέξτε Ροές" msgid "Choose for me" msgstr "Επιλέξτε για μένα" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Επιλέξτε Άτομα" @@ -1685,23 +1762,23 @@ msgstr "Επιλέξτε αυτό το χρώμα ως εικόνα προφίλ msgid "Choose your account provider" msgstr "" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Επιλέξτε τον κωδικό σας" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Εκκαθάριση όλων των δεδομένων αποθήκευσης" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Εκκαθάριση όλων των δεδομένων αποθήκευσης (επανεκκίνηση μετά από αυτό)" @@ -1714,23 +1791,27 @@ msgstr "" msgid "Clear search query" msgstr "Καθαρισμός αναζήτησης" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "κάντε κλικ εδώ" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Κάντε κλικ για να απενεργοποιήσετε τις αναδημοσιεύσεις αυτής της ανάρτησης." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Κάντε κλικ για να ενεργοποιήσετε τις αναδημοσιεύσεις αυτής της ανάρτησης." @@ -1750,14 +1831,16 @@ msgstr "Κλίμα" msgid "Clip 🐴 clop 🐴" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Κλείσιμο" @@ -1789,13 +1876,15 @@ msgstr "Κλείσιμο ειδοποίησης" msgid "Close bottom drawer" msgstr "Κλείσιμο κάτω συρταριού" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Κλείσιμο διαλόγου" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "" @@ -1804,7 +1893,7 @@ msgstr "" msgid "Close emoji picker" msgstr "" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Κλείσιμο διαλόγου GIF" @@ -1822,7 +1911,7 @@ msgstr "Κλείσιμο προγράμματος προβολής εικόνα msgid "Close menu" msgstr "" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Κλείσιμο αυτού του διαλόγου" @@ -1830,7 +1919,7 @@ msgstr "Κλείσιμο αυτού του διαλόγου" msgid "Closes password update alert" msgstr "Κλείνει την ειδοποίηση ενημέρωσης κωδικού πρόσβασης" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "" @@ -1843,16 +1932,16 @@ msgstr "" msgid "Closes viewer for header image" msgstr "Κλείνει το πρόγραμμα προβολής για την εικόνα κεφαλίδας" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Σύμπτυξη λίστας χρηστών" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Συμπτύσσει τη λίστα χρηστών για μια δεδομένη ειδοποίηση" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Λειτουργία χρώματος" @@ -1870,7 +1959,8 @@ msgstr "Κωμωδία" msgid "Comics" msgstr "Κόμικς" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Οδηγίες Κοινότητας" @@ -1879,38 +1969,34 @@ msgstr "Οδηγίες Κοινότητας" msgid "Complete onboarding and start using your account" msgstr "Ολοκληρώστε την εισαγωγή και ξεκινήστε να χρησιμοποιείτε τον λογαριασμό σας" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Ολοκλήρωση της πρόκλησης" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Σύνταξη νέας ανάρτησης" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Σύνταξη απάντησης" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Συμπίεση βίντεο..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Ρύθμιση ρύθμισης φιλτραρίσματος περιεχομένου για κατηγορία: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Ρυθμισμένο στις <0>ρυθμίσεις διαχείρισης." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Επιβεβαίωση ρυθμίσεων γλώσσας περιεχο msgid "Confirm delete account" msgstr "Επιβεβαίωση διαγραφής λογαριασμού" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Επιβεβαιώστε την ηλικία σας:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Επιβεβαιώστε την ημερομηνία γέννησής σας" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Επιβεβαιώστε την ημερομηνία γέννησής σ msgid "Confirmation code" msgstr "Κωδικός επιβεβαίωσης" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Κωδικός Επιβεβαίωσης" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Σύνδεση..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Επικοινωνία με την υποστήριξη" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Περιεχόμενο και μέσα" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Περιεχόμενο και Μέσα" @@ -1977,7 +2069,8 @@ msgstr "Περιεχόμενο και Μέσα" msgid "Content Blocked" msgstr "Αποκλεισμένο Περιεχόμενο" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Φίλτρα περιεχομένου" @@ -2006,10 +2099,12 @@ msgstr "Προειδοποίηση Περιεχομένου" msgid "Content warnings" msgstr "Προειδοποιήσεις περιεχομένου" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Φόντο μενού περιβάλλοντος, κάντε κλικ για να κλείσετε το μενού." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Συνέχεια" msgid "Continue as {0} (currently signed in)" msgstr "Συνέχεια ως {0} (είστε ήδη συνδεδεμένος/η)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Συνέχεια συζήτησης..." @@ -2029,6 +2129,10 @@ msgstr "Συνέχεια συζήτησης..." msgid "Continue to next step" msgstr "Συνέχεια στο επόμενο βήμα" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Αντιγράφηκε" msgid "Copied build version to clipboard" msgstr "Η έκδοση build αντιγράφηκε στο πρόχειρο" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "" msgid "Copy" msgstr "Αντιγραφή" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Αντιγραφή κωδικού πρόσβασης εφαρμογής" @@ -2087,8 +2187,8 @@ msgstr "Αντιγραφή κωδικού πρόσβασης εφαρμογής" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "" @@ -2120,10 +2220,10 @@ msgstr "Αντιγραφή Συνδέσμου" msgid "Copy link to list" msgstr "Αντιγραφή συνδέσμου στη λίστα" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Αντιγραφή συνδέσμου στην ανάρτηση" @@ -2136,18 +2236,18 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Αντιγραφή κειμένου μηνύματος" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Αντιγραφή κειμένου ανάρτησης" @@ -2159,11 +2259,25 @@ msgstr "Αντιγραφή QR κώδικα" msgid "Copy TXT record value" msgstr "Αντιγραφή τιμής εγγραφής TXT" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Πολιτική Πνευματικών Δικαιωμάτων" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "Δεν ήταν δυνατή η σίγαση της συνομιλίας msgid "Could not process your video" msgstr "Δεν ήταν δυνατή η επεξεργασία του βίντεο σας" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Δημιουργία" @@ -2195,7 +2317,7 @@ msgstr "Δημιουργία QR κώδικα για ένα starter pack" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Δημιουργία starter pack" @@ -2205,21 +2327,22 @@ msgstr "Δημιουργία starter pack για μένα" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Εγγραφή" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Δημιουργία Λογαριασμού" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Δημιουργία λογαριασμού" @@ -2241,7 +2364,7 @@ msgstr "Δημιουργία άλλου" msgid "Create new account" msgstr "Δημιουργία νέου λογαριασμού" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Δημιουργία αναφοράς για {0}" @@ -2268,7 +2391,7 @@ msgstr "Προσαρμοσμένο" msgid "Customization options" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Προσαρμόστε ποιος μπορεί να αλληλεπιδράσει με αυτήν την ανάρτηση." @@ -2278,12 +2401,12 @@ msgstr "" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Σκοτεινό" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Σκοτεινό" @@ -2292,21 +2415,21 @@ msgstr "Σκοτεινό" msgid "Dark mode" msgstr "Σκοτεινή λειτουργία" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Σκοτεινό θέμα" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Ημερομηνία γέννησης" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Απενεργοποίηση λογαριασμού" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Debug Διαχείρισης" @@ -2314,7 +2437,7 @@ msgstr "Debug Διαχείρισης" msgid "Debug panel" msgstr "Πίνακας Debug" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Προεπιλογή" @@ -2322,8 +2445,8 @@ msgstr "Προεπιλογή" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "" msgid "Delete" msgstr "Διαγραφή" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Διαγραφή λογαριασμού" @@ -2355,7 +2478,7 @@ msgstr "Διαγραφή κωδικού πρόσβασης εφαρμογής;" msgid "Delete chat" msgstr "" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Διαγραφή εγγραφής δήλωσης συνομιλίας" @@ -2370,7 +2493,7 @@ msgstr "" msgid "Delete Conversation" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Διαγραφή για μένα" @@ -2378,11 +2501,11 @@ msgstr "Διαγραφή για μένα" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Διαγραφή μηνύματος" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Διαγραφή μηνύματος για μένα" @@ -2390,9 +2513,9 @@ msgstr "Διαγραφή μηνύματος για μένα" msgid "Delete my account" msgstr "Διαγραφή του λογαριασμού μου" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Διαγραφή ανάρτησης" @@ -2409,11 +2532,11 @@ msgstr "Διαγραφή starter pack;" msgid "Delete this list?" msgstr "Διαγραφή αυτής της λίστας;" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Διαγραφή αυτής της ανάρτησης;" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Διαγραμμένο" @@ -2422,15 +2545,20 @@ msgstr "Διαγραμμένο" msgid "Deleted Account" msgstr "Διαγραμμένος Λογαριασμός" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Διαγραμμένη ανάρτηση." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Περιγραφή" @@ -2447,12 +2575,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Περιγραφικό εναλλακτικό κείμενο" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Αποσύνδεση απόσπασης" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Αποσύνδεση αναδημοσίευσης;" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Η λειτουργία προγραμματιστή ενεργοποιήθηκε" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Επιλογές προγραμματιστή" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Διάλογος: ρυθμίστε ποιοι μπορούν να αλληλεπιδράσουν με αυτή την ανάρτηση" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Ντιμαρισμένο" @@ -2492,27 +2620,27 @@ msgstr "" msgid "Disable Email 2FA" msgstr "Απενεργοποίηση Email 2FA" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Απενεργοποίηση ανάδρασης αφής" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Απενεργοποίηση υποτίτλων" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Απενεργοποιημένο" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Απόρριψη" @@ -2520,11 +2648,11 @@ msgstr "Απόρριψη" msgid "Discard changes?" msgstr "Απόρριψη αλλαγών;" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Απόρριψη προσχεδίου;" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Απόρριψη ανάρτησης;" @@ -2542,7 +2670,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "Ανακαλύψτε νέες προσαρμοσμένες ροές" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Ανακαλύψτε Νέες Ροές" @@ -2550,7 +2678,7 @@ msgstr "Ανακαλύψτε Νέες Ροές" msgid "Dismiss" msgstr "Απόρριψη" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Απόρριψη σφάλματος" @@ -2562,26 +2690,26 @@ msgstr "Απόρριψη οδηγού Starter Pack" msgid "Dismiss interests" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Εμφάνιση μεγαλύτερων ετικετών εναλλακτικού κειμένου" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Εμφανιζόμενο όνομα" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Εμφανιζόμενο Όνομα" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Το όνομα προβολής είναι πολύ μεγάλο" @@ -2603,15 +2731,11 @@ msgstr "Μην εφαρμόσετε αυτήν την λέξη σίγασης σ msgid "Does not include nudity." msgstr "Δεν περιλαμβάνει γυμνό." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Δεν ξεκινάει ή τελειώνει με παύλα" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Το domain σας επαληθεύτηκε!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -2619,6 +2743,15 @@ msgstr "" msgid "Don't see an email? <0>Click here to resend." msgstr "" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "" msgid "Double tap to close the dialog" msgstr "Πατήστε δύο φορές για να κλείσετε το παράθυρο διαλόγου" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "" @@ -2673,7 +2806,7 @@ msgstr "Κατεβάστε το Bluesky" msgid "Download CAR file" msgstr "Κατεβάστε το αρχείο CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Σύρετε για να προσθέσετε εικόνες" @@ -2689,18 +2822,10 @@ msgstr "π.χ. alice" msgid "e.g. Alice Lastname" msgstr "π.χ. Alice Lastname" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "π.χ. Alice Roberts" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "π.χ. alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "π.χ. Καλλιτέχνης, λάτρης των σκύλων και φανατικός αναγνώστης." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Π.χ. καλλιτεχνικά γυμνά." @@ -2725,10 +2850,11 @@ msgstr "π.χ. Χρήστες που απαντούν επανειλημμένα msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Κάθε κωδικός λειτουργεί μία φορά. Θα λαμβάνετε περισσότερους κωδικούς πρόσκλησης περιοδικά." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Επεξεργασία" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Επεξεργασία" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Επεξεργασία εικόνας προφίλ" @@ -2749,12 +2875,12 @@ msgstr "Επεξεργασία ροών" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Επεξεργασία εικόνας" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Επεξεργασία ρυθμίσεων αλληλεπίδρασης" @@ -2776,33 +2902,33 @@ msgstr "" msgid "Edit Moderation List" msgstr "Επεξεργασία λίστας διαχείρισης" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Επεξεργασία των ροών μου" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Επεξεργασία του προφίλ μου" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Επεξεργασία ατόμων" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Επεξεργασία ρυθμίσεων αλληλεπίδρασης ανάρτησης" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Επεξεργασία προφίλ" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Επεξεργασία προφίλ" @@ -2814,19 +2940,11 @@ msgstr "Επεξεργασία starter pack" msgid "Edit User List" msgstr "Επεξεργασία λίστας χρηστών" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Επεξεργασία του ποιος μπορεί να απαντήσει" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Επεξεργασία του ονόματος προβολής σας" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Επεξεργασία της περιγραφής του προφίλ σας" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Επεξεργασία του starter pack σας" @@ -2839,8 +2957,8 @@ msgstr "Εκπαίδευση" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "" -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "Η 2FA μέσω email απενεργοποιήθηκε" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "Η 2FA μέσω email ενεργοποιήθηκε" @@ -2865,10 +2983,6 @@ msgstr "Email Απεστάλη ξανά" msgid "Email sent!" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "" @@ -2883,8 +2997,8 @@ msgstr "Ενσωματώστε κώδικα HTML" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Ενσωμάτωση ανάρτησης" @@ -2892,7 +3006,7 @@ msgstr "Ενσωμάτωση ανάρτησης" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Ενσωματώστε αυτήν την ανάρτηση στον ιστότοπό σας. Απλώς αντιγράψτε το παρακάτω τμήμα και επικολλήστε το στον κώδικα HTML του ιστότοπού σας." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "" @@ -2906,7 +3020,7 @@ msgstr "Ενεργοποίηση" msgid "Enable {0} only" msgstr "Ενεργοποίηση μόνο {0}" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Ενεργοποίηση περιεχομένου ενηλίκων" @@ -2919,16 +3033,20 @@ msgstr "" msgid "Enable external media" msgstr "Ενεργοποίηση εξωτερικού μέσου" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Ενεργοποίηση media players για" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Ενεργοποίηση ειδοποιήσεων προτεραιότητας" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Ενεργοποίηση υπότιτλων" @@ -2941,17 +3059,14 @@ msgstr "Ενεργοποίηση μόνο αυτής της πηγής" msgid "Enable trending topics" msgstr "" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "" - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Ενεργοποιημένο" @@ -2963,7 +3078,7 @@ msgstr "Τέλος ροής" msgid "Ensure you have selected a language for each subtitle file." msgstr "Βεβαιωθείτε ότι έχετε επιλέξει γλώσσα για κάθε αρχείο υπότιτλων." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Εισάγετε έναν κωδικό πρόσβασης" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Εισάγετε μια λέξη ή ετικέτα" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Εισάγετε κωδικό" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Εισάγετε την ημερομηνία γέννησης σας" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Εισάγετε την διεύθυνση email σας" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Εισάγετε τη νέα σας διεύθυνση email παρακάτω." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "" @@ -3022,7 +3129,7 @@ msgstr "" msgid "Enter your username and password" msgstr "Εισάγετε το όνομα χρήστη και τον κωδικό πρόσβασης σας" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "" @@ -3030,16 +3137,28 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Σφάλμα" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του αρχείου" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Σφάλμα λήψης απάντησης captcha." @@ -3047,27 +3166,34 @@ msgstr "Σφάλμα λήψης απάντησης captcha." msgid "Error:" msgstr "Σφάλμα:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Όλοι" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Όλοι μπορούν να απαντήσουν" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Όλοι μπορούν να απαντήσουν σε αυτήν την ανάρτηση." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Όλοι" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Αποκλεισμός χρηστών που ακολουθείτε" msgid "Excludes users you follow" msgstr "Αποκλείει τους χρήστες που ακολουθείτε" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Έξοδος από την πλήρη οθόνη" @@ -3106,24 +3232,28 @@ msgstr "Έξοδος από την προβολή εικόνας" msgid "Expand alt text" msgstr "Ανάπτυξη εναλλακτικού κειμένου" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Ανάπτυξη λίστας χρηστών" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Ανάπτυξη ή συμπίεση της πλήρους ανάρτησης στην οποία απαντάτε" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "Αναμενόταν το uri να επιλυθεί σε ένα αρχείο" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Πειραματικό" @@ -3153,15 +3283,15 @@ msgstr "Γυμνό ή ενδεχομένως ενοχλητικό μέσο." msgid "Explicit sexual images." msgstr "Γυμνές σεξουαλικές εικόνες." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Εξαγωγή των δεδομένων μου" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Εξωτερικό μέσο" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 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:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Προτιμήσεις εξωτερικού μέσου" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "" @@ -3211,8 +3341,8 @@ msgstr "Απέτυχε η δημιουργία κωδικού πρόσβασης msgid "Failed to create conversation" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Απέτυχε η δημιουργία starter pack" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Απέτυχε η διαγραφή μηνύματος" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Απέτυχε η διαγραφή ανάρτησης, παρακαλώ δοκιμάστε ξανά" @@ -3238,8 +3368,8 @@ msgstr "Απέτυχε η διαγραφή ανάρτησης, παρακαλώ msgid "Failed to delete starter pack" msgstr "Απέτυχε η διαγραφή starter pack" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "" @@ -3250,14 +3380,32 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Απέτυχε η φόρτωση προτιμήσεων ροών" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Απέτυχε η φόρτωση GIFs" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Απέτυχε η φόρτωση παλαιότερων μηνυμάτων" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Απέτυχε η φόρτωση προτεινόμενων ροών" msgid "Failed to load suggested follows" msgstr "Απέτυχε η φόρτωση προτεινόμενων ακολουθιών" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Απέτυχε το καρφίτσωμα ανάρτησης" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "" @@ -3291,15 +3439,11 @@ msgstr "" msgid "Failed to save image: {0}" msgstr "Απέτυχε η αποθήκευση εικόνας: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Απέτυχε η αποθήκευση προτιμήσεων ειδοποιήσεων, παρακαλώ δοκιμάστε ξανά" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "" @@ -3318,7 +3462,7 @@ msgstr "" msgid "Failed to submit appeal, please try again." msgstr "Απέτυχε η υποβολή ένστασης, παρακαλώ δοκιμάστε ξανά." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Απέτυχε η εναλλαγή σίγασης συνομιλίας, παρακαλώ δοκιμάστε ξανά" @@ -3335,7 +3479,11 @@ msgstr "" msgid "Failed to update feeds" msgstr "Απέτυχε η ενημέρωση ροών" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Απέτυχε η ενημέρωση ρυθμίσεων" @@ -3354,15 +3502,23 @@ msgstr "" msgid "Failed to verify handle. Please try again." msgstr "Απέτυχε η επαλήθευση του ονόματος χρήστη. Παρακαλώ δοκιμάστε ξανά." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Ροή" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Ροή από {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "" @@ -3371,35 +3527,39 @@ msgstr "" msgid "Feed toggle" msgstr "Εναλλαγή ροής" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Σχόλια" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Τα σχόλια στάλθηκαν!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Ροές" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Οι ροές είναι προσαρμοσμένοι αλγόριθμοι που δημιουργούν οι χρήστες μικρής προγραμματιστικής εμπειρίας. <0/> για περισσότερες πληροφορίες." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Οι ροές ενημερώθηκαν!" @@ -3428,6 +3588,14 @@ msgstr "" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Ολοκλήρωση" @@ -3448,7 +3616,7 @@ msgstr "" msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Τέλος" @@ -3456,17 +3624,17 @@ msgstr "Τέλος" msgid "Fitness" msgstr "Φυσική κατάσταση" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Ευέλικτο" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Ακολουθήστε" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Ακολουθήστε {0}" @@ -3518,7 +3686,7 @@ msgstr "" msgid "Follow all" msgstr "Ακολουθήστε τους όλους" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Κάντε follow back" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Κάντε follow back" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Ακολουθείται από <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Ακολουθείται από <0>{0} και {1, plural, one {# άλλον} other {# άλλους}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Ακολουθείται από <0>{0} και <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Ακολουθείται από <0>{0}, <1>{1}, και {2, plural, one {# άλλον} other {# άλλους}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Ακολούθοι του/της @{0} που γνωρίζετε" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Ακολούθοι που γνωρίζετε" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Ακολουθείτε" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Ακολουθείτε" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Ακολουθείτε {0}" @@ -3579,8 +3751,8 @@ msgstr "" msgid "Following feed preferences" msgstr "Προτιμήσεις της ροής Ακολουθείτε" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Προτιμήσεις της ροής Ακολουθείτε" @@ -3592,11 +3764,11 @@ msgstr "Σας ακολουθεί" msgid "Follows You" msgstr "Σας Ακολουθεί" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Γραμματοσειρά" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Μέγεθος γραμματοσειράς" @@ -3613,7 +3785,7 @@ msgstr "Για λόγους ασφαλείας, θα χρειαστεί να σ msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Για λόγους ασφαλείας, δεν θα μπορείτε να το δείτε ξανά. Αν χάσετε αυτόν τον κωδικό πρόσβασης εφαρμογής, θα χρειαστεί να δημιουργήσετε έναν νέο." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Για την καλύτερη εμπειρία, σας προτείνουμε να χρησιμοποιήσετε τη γραμματοσειρά του θέματος." @@ -3643,11 +3815,15 @@ msgstr "Ξεχάσατε;" msgid "Frequently Posts Unwanted Content" msgstr "Συχνά δημοσιεύει ανεπιθύμητο περιεχόμενο" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "Από @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "Από <0/>" @@ -3660,14 +3836,68 @@ msgstr "Εικόνες" msgid "Generate a starter pack" msgstr "Δημιουργήστε ένα starter pack" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Λάβετε βοήθεια" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "" @@ -3688,14 +3918,16 @@ msgstr "Δώστε στο προφίλ σας ένα πρόσωπο" msgid "Glaring violations of law or terms of service" msgstr "Φανοφανείς παραβιάσεις του νόμου ή των όρων παροχής υπηρεσιών" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Μετάβαση στην συνομιλία με {0}" @@ -3779,8 +4017,8 @@ msgstr "Εικονικά μέσα" msgid "Half way there!" msgstr "Στα μισά της διαδρομής!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Όνομα χρήστη" @@ -3797,7 +4035,7 @@ msgstr "Το όνομα χρήστη άλλαξε!" msgid "Handle too long. Please try a shorter one." msgstr "Το όνομα χρήστη είναι πολύ μακρύ. Παρακαλώ δοκιμάστε ένα πιο σύντομο." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Απτικές αντιδράσεις" @@ -3806,7 +4044,7 @@ msgstr "Απτικές αντιδράσεις" msgid "Harassment, trolling, or intolerance" msgstr "Παρενοχλήσεις, τρολάρισμα ή μισαλλοδοξία" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "" -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Έχετε πρόβλημα;" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Βοήθεια" @@ -3839,8 +4077,13 @@ msgstr "Βοηθήστε τους ανθρώπους να καταλάβουν msgid "Here is your app password!" msgstr "Αυτός είναι ο κωδικός πρόσβασης της εφαρμογής σας!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "" @@ -3848,16 +4091,16 @@ msgstr "" msgid "Hidden by your moderation settings." msgstr "" -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Κρυφή λίστα" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Κρυφή λίστα" msgid "Hide" msgstr "Απόκρυψη" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Απόκρυψη" @@ -3875,18 +4118,18 @@ msgstr "Απόκρυψη" msgid "Hide customization options" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Απόκρυψη ανάρτησης για μένα" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Απόκρυψη απάντησης για όλους" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Απόκρυψη απάντησης για μένα" @@ -3894,12 +4137,12 @@ msgstr "Απόκρυψη απάντησης για μένα" msgid "Hide this card" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Απόκρυψη αυτής της ανάρτησης;" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Απόκρυψη αυτής της απάντησης;" @@ -3913,11 +4156,11 @@ msgstr "" msgid "Hide trending topics?" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Απόκρυψη λίστας χρηστών" @@ -3926,32 +4169,32 @@ msgstr "Απόκρυψη λίστας χρηστών" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Χμμ, παρουσιάστηκε κάποιο πρόβλημα κατά την επικοινωνία με τον διακομιστή ροής. Ενημερώστε τον ιδιοκτήτη της ροής για αυτό το πρόβλημα." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Χμμ, ο διακομιστής ροής φαίνεται να έχει λανθασμένες ρυθμίσεις. Ενημερώστε τον ιδιοκτήτη της ροής για αυτό το πρόβλημα." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Χμμ, ο διακομιστής ροής φαίνεται να είναι εκτός σύνδεσης. Ενημερώστε τον ιδιοκτήτη της ροής για αυτό το πρόβλημα." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Χμμ, ο διακομιστής ροής έδωσε μια κακή απάντηση. Ενημερώστε τον ιδιοκτήτη της ροής για αυτό το πρόβλημα." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Χμμ, έχουμε πρόβλημα να βρούμε αυτήν την ροή. Ίσως να έχει διαγραφεί." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Χμμμ, φαίνεται ότι έχουμε πρόβλημα με τη φόρτωση αυτών των δεδομένων. Δείτε παρακάτω για περισσότερες λεπτομέρειες. Αν το πρόβλημα επιμένει, επικοινωνήστε μαζί μας." @@ -3959,15 +4202,15 @@ msgstr "Χμμμ, φαίνεται ότι έχουμε πρόβλημα με τ msgid "Hmmmm, we couldn't load that moderation service." msgstr "Χμμμ, δεν καταφέραμε να φορτώσουμε αυτήν την υπηρεσία διαχείρισης." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Περιμένετε! Δίνουμε σταδιακά πρόσβαση στο βίντεο και εσείς περιμένετε στην ουρά. Ελέγξτε ξανά σύντομα!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Αρχική" @@ -3984,10 +4227,10 @@ msgstr "Πάροχος φιλοξενίας" msgid "Hot" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "" @@ -3996,10 +4239,6 @@ msgstr "" msgid "How should we open this link?" msgstr "Πώς πρέπει να ανοίξουμε αυτόν τον σύνδεσμο;" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Κατανοώ" msgid "If alt text is long, toggles alt text expanded state" msgstr "Εάν το εναλλακτικό κείμενο είναι μακρύ, ενεργοποιεί/απενεργοποιεί το επεκταμένο εναλλακτικό κείμενο" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Εάν δεν είστε ακόμη ενήλικας σύμφωνα με τους νόμους της χώρας σας, ο γονέας ή ο νόμιμος κηδεμόνας σας πρέπει να διαβάσει αυτούς τους Όρους εκ μέρους σας." @@ -4031,11 +4270,11 @@ msgstr "Εάν διαγράψετε αυτήν τη λίστα, δεν θα μπ msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Εάν καταργήσετε αυτήν την ανάρτηση, δεν θα μπορείτε να την ανακτήσετε." @@ -4047,6 +4286,10 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Εάν θέλετε να αλλάξετε τον κωδικό σας, θα σας στείλουμε έναν κωδικό για να επαληθεύσουμε ότι αυτός είναι ο λογαριασμός σας." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "" @@ -4091,13 +4334,41 @@ msgstr "Παραποίηση ή ψευδείς ισχυρισμοί σχετικ msgid "Impersonation, misinformation, or false claims" msgstr "Παραποίηση, παραπληροφόρηση ή ψευδείς ισχυρισμοί" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Ανάρμοστα μηνύματα ή ακατάλληλοι σύνδεσμοι" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "" @@ -4105,7 +4376,7 @@ msgstr "" msgid "Incorrect username or password" msgstr "Μη έγκυρο όνομα χρήστη ή κωδικός πρόσβασης" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Ο κωδικός εισόδου στάλθηκε στο email σας για επαναφορά κωδικού πρόσβασης" @@ -4113,7 +4384,7 @@ msgstr "Ο κωδικός εισόδου στάλθηκε στο email σας γ msgid "Input confirmation code for account deletion" msgstr "Εισαγάγετε τον κωδικό επιβεβαίωσης για διαγραφή λογαριασμού" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Εισαγάγετε νέο κωδικό πρόσβασης" @@ -4129,10 +4400,14 @@ msgstr "Εισαγάγετε τον κωδικό που σας στάλθηκε msgid "Interaction limited" msgstr "Περιορισμένη αλληλεπίδραση" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Μη έγκυρος κωδικός επιβεβαίωσης 2FA." msgid "Invalid handle. Please try a different one." msgstr "Μη έγκυρο όνομα χρήστη. Παρακαλώ δοκιμάστε ένα διαφορετικό." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Μη έγκυρη ή μη υποστηριζόμενη εγγραφή ανάρτησης" @@ -4158,7 +4433,7 @@ msgstr "Μη έγκυρος κωδικός επαλήθευσης" msgid "Invite a Friend" msgstr "Προσκαλέστε έναν φίλο" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Κωδικός πρόσκλησης" @@ -4186,15 +4461,15 @@ msgstr "Προσκαλέστε τους φίλους σας να ακολουθ msgid "Invites, but personal" msgstr "Προσκλήσεις, αλλά προσωπικές" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Είναι σωστό" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Είστε μόνοι σας αυτή τη στιγμή! Προσθέστε περισσότερους ανθρώπους στο starter pack σας κάνοντας αναζήτηση παραπάνω." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "ID εργασίας: {0}" @@ -4220,11 +4495,27 @@ msgstr "Συμμετάσχετε στη συζήτηση" msgid "Journalism" msgstr "Δημοσιογραφία" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Επισημασμένο από {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Επισημασμένο από τον/την συγγραφέα." @@ -4237,7 +4528,7 @@ msgstr "Ετικέτες" msgid "Labels added" msgstr "Οι Ετικέτες προστέθηκαν" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Οι ετικέτες είναι σημειώσεις σε χρήστες και περιεχόμενο. Μπορούν να χρησιμοποιηθούν για να αποκρύψουν, να προειδοποιήσουν και να κατηγοριοποιήσουν το δίκτυο." @@ -4253,22 +4544,30 @@ msgstr "Οι Ετικέτες στο περιεχόμενό σας" msgid "Language selection" msgstr "Επιλογή γλώσσας" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Ρυθμίσεις γλώσσας" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Γλώσσες" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Μεγαλύτερο" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Πιο πρόσφατα" @@ -4282,7 +4581,6 @@ msgstr "μαθετε περισσότερα" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "" @@ -4290,6 +4588,10 @@ msgstr "" msgid "Learn More" msgstr "Μάθετε περισσότερα" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Μάθετε περισσότερα για το Bluesky" @@ -4298,15 +4600,23 @@ msgstr "Μάθετε περισσότερα για το Bluesky" msgid "Learn more about self hosting your PDS." msgstr "Μάθετε περισσότερα για την αυτόνομη φιλοξενία του PDS σας." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Μάθετε περισσότερα για τη διαχείριση που εφαρμόζεται σε αυτό το περιεχόμενο." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Μάθετε περισσότερα για αυτήν την προειδοποίηση" @@ -4316,12 +4626,16 @@ msgstr "Μάθετε περισσότερα για αυτήν την προει msgid "Learn more about verification on Bluesky" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Μάθετε περισσότερα για το τι είναι δημόσιο στο Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Μάθετε περισσότερα." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Αποχώρηση από συνομιλία" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Αφήστε τα όλα χωρίς επιλογή για να δείτε οποιαδήποτε γλώσσα." +msgid "Leave them all unselected to see any language." +msgstr "" -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Αποχώρηση από το Bluesky" @@ -4370,7 +4685,7 @@ msgstr "Πάμε!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Φωτεινό" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -4397,6 +4712,10 @@ msgstr "\"Μου αρέσει\" σε 10 αναρτήσεις" msgid "Like 10 posts to train the Discover feed" msgstr "\"Μου αρέσει\" σε 10 αναρτήσεις για να εκπαιδεύσετε την ροής Ανακαλύψτε" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Πατήστε \"Μου αρέσει\" σε αυτήν την ροή" @@ -4405,8 +4724,8 @@ msgstr "Πατήστε \"Μου αρέσει\" σε αυτήν την ροή" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "\"Μου αρέσει\" από" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "\"Μου αρέσει\" από" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" @@ -4428,20 +4747,36 @@ msgstr "" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "\"Μου αρέσει\"" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "\"Μου αρέσει\" σε αυτήν την ανάρτηση" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Λίστα" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Λίστα μπλοκαρισμένη" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Λίστα από {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Λίστα αφαίρεση σίγασης" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Λίστες" @@ -4537,7 +4876,7 @@ msgstr "Φόρτωση περισσότερων" msgid "Load more suggested feeds" msgstr "Φόρτωση περισσότερων προτεινόμενων ροών" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Φόρτωση νέων ειδοποιήσεων" @@ -4552,11 +4891,11 @@ msgstr "Φόρτωση νέων αναρτήσεων" msgid "Loading..." msgstr "Φόρτωση..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Ημερολόγιο" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Ορατότητα κατά την αποσύνδεση" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Λογότυπο από <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Λογότυπο από <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Πατήστε παρατεταμένα για να ανοίξετε το μενού ετικετών για #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Φαίνεται σαν XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "" msgid "Make one for me" msgstr "Φτιάξε ένα για μένα" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Βεβαιωθείτε ότι αυτό είναι το μέρος που θέλετε να πάτε!" @@ -4606,7 +4945,7 @@ msgstr "Βεβαιωθείτε ότι αυτό είναι το μέρος που msgid "Manage saved feeds" msgstr "Διαχείριση αποθηκευμένων ροών" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "" @@ -4614,9 +4953,9 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "Διαχειριστείτε τις λέξεις και ετικέτες σας σε σίγαση" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "" @@ -4625,15 +4964,13 @@ msgstr "" msgid "Mark as read" msgstr "Σημείωση ως ανάγνωση" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "" @@ -4645,19 +4982,26 @@ msgstr "Μέσα" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Μέσα που μπορεί να είναι ενοχλητικά ή ακατάλληλα για ορισμένα ακροατήρια." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "αναφερόμενοι χρήστες" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Αναφερόμενοι χρήστες" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Μενού" @@ -4665,7 +5009,7 @@ msgstr "Μενού" msgid "Message {0}" msgstr "Μήνυμα {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Το μήνυμα διαγράφηκε" @@ -4674,11 +5018,11 @@ msgstr "Το μήνυμα διαγράφηκε" msgid "Message deleted" msgstr "Το μήνυμα διαγράφηκε" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Μήνυμα από τον διακομιστή: {0}" @@ -4691,19 +5035,23 @@ msgstr "Πεδίο εισαγωγής μηνύματος" msgid "Message is too long" msgstr "Το μήνυμα είναι πολύ μακρύ" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Μηνύματα" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Παραπλανητικός Λογαριασμός" msgid "Misleading Post" msgstr "Παραπλανητική Δημοσίευση" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Διαχείριση" @@ -4725,17 +5073,17 @@ msgstr "Διαχείριση" msgid "Moderation details" msgstr "Λεπτομέρειες διαχείρισης" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Λίστα διαχείρισης από {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Λίστα διαχείρισης από <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Λίστα διαχείρισης από εσάς" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Η Λίστα διαχείρισης ενημερώθηκε" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Λίστες διαχείρισης" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Λίστες Διαχείρισης" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "ρυθμίσεις διαχείρισης" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Καταστάσεις διαχείρισης" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Εργαλεία διαχείρισης" @@ -4775,7 +5123,7 @@ msgstr "Εργαλεία διαχείρισης" msgid "Moderator has chosen to set a general warning on the content." msgstr "Ο/η διαχειριστής επέλεξε να θέσει μια γενική προειδοποίηση στο περιεχόμενο." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Περισσότερα" @@ -4790,13 +5138,13 @@ msgstr "Περισσότερες ροές" msgid "More options" msgstr "Περισσότερες επιλογές" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Τα Πιο πολύ αγαπημένα πρώτα" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Πιο πολύ αγαπημένες απαντήσεις πρώτα" @@ -4808,8 +5156,8 @@ msgstr "Ταινίες" msgid "Music" msgstr "Μουσική" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Σίγαση" @@ -4819,8 +5167,8 @@ msgstr "Σίγαση" msgid "Mute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Σίγαση αυτής της λέξης μόνο στις ετικέτ msgid "Mute this word until you unmute it" msgstr "Σίγαση αυτής της λέξης μέχρι να την ξεσιγάσετε" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Σίγαση νήματος" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Σίγαση λέξεων & ετικετών" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Λογαριασμοί σε σίγαση" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Λογαριασμοί σε σίγαση" @@ -4898,7 +5246,7 @@ msgstr "" msgid "Muted by \"{0}\"" msgstr "Σε σίγαση από “{0}”" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Λέξεις & ετικέτες σε σίγαση" @@ -4911,7 +5259,7 @@ msgstr "Η σίγαση είναι ιδιωτική. Οι λογαριασμοί msgid "My Birthday" msgstr "Τα γενέθλιά μου" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Οι Ροές μου" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Φύση" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Μετάβαση σε {0}" @@ -4958,11 +5306,11 @@ msgstr "Μεταβαίνει στην επόμενη οθόνη" msgid "Navigates to your profile" msgstr "Μεταβαίνει στο προφίλ σας" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Πρέπει να το αλλάξετε;" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Πρέπει να αναφέρετε μια παραβίαση πνευματικών δικαιωμάτων;" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Νέο" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Νέα συνομιλία" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Νέα μηνύματα" msgid "New Moderation List" msgstr "Νέα λίστα διαχείρισης" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Νέος κωδικός πρόσβασης" @@ -5029,7 +5396,7 @@ msgstr "Νέος Κωδικός Πρόσβασης" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Νέα δημοσίευση" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Νέα Δημοσίευση" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Νέο παράθυρο πληροφοριών χρήστη" @@ -5054,10 +5429,14 @@ msgstr "Νέο παράθυρο πληροφοριών χρήστη" msgid "New User List" msgstr "Νέα λίστα χρηστών" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Πιο πρόσφατες απαντήσεις πρώτα" @@ -5071,15 +5450,15 @@ msgstr "Ειδήσεις" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "Χωρίς πίνακα DNS" msgid "No expiry set" msgstr "" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Δεν βρέθηκαν προτεινόμενα GIF. Μπορεί να υπάρχει πρόβλημα με το Tenor." @@ -5119,32 +5498,35 @@ msgstr "" msgid "No likes yet" msgstr "Δεν υπάρχουν ακόμη \"Μου αρέσει\"" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Δεν ακολουθώ πλέον τον {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Δεν υπάρχουν ακόμη μηνύματα" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Δεν υπάρχουν ακόμη ειδοποιήσεις!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Κανείς" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Μόνο ο συγγραφέας μπορεί να παραθέσει αυτήν την δημοσίευση." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Δεν υπάρχουν ακόμη δημοσιεύσεις." @@ -5171,7 +5553,7 @@ msgstr "Χωρίς αποτελέσματα" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Δεν βρέθηκαν αποτελέσματα" @@ -5179,9 +5561,9 @@ msgstr "Δεν βρέθηκαν αποτελέσματα" msgid "No results found for \"{query}\"" msgstr "Δεν βρέθηκαν αποτελέσματα για “{query}”" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Δεν βρέθηκαν αποτελέσματα για {query}" @@ -5189,7 +5571,7 @@ msgstr "Δεν βρέθηκαν αποτελέσματα για {query}" msgid "No results." msgstr "" -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Χωρίς αποτελέσματα αναζήτησης για “{search}”." @@ -5198,7 +5580,7 @@ msgstr "Χωρίς αποτελέσματα αναζήτησης για “{sear msgid "No thanks" msgstr "Όχι ευχαριστώ" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Κανείς" @@ -5223,59 +5605,76 @@ msgstr "Δεν βρέθηκε κανείς. Δοκιμάστε να αναζητ msgid "Non-sexual Nudity" msgstr "Μη σεξουαλικό γυμνό" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Δεν Βρέθηκε" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Σημείωση σχετικά με την κοινή χρήση" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Σημείωση: Το Bluesky είναι ένα ανοιχτό και δημόσιο δίκτυο. Αυτή η ρύθμιση περιορίζει μόνο την ορατότητα του περιεχομένου σας στην εφαρμογή και τον ιστότοπο Bluesky, και άλλες εφαρμογές ενδέχεται να μην σεβαστούν αυτήν τη ρύθμιση. Το περιεχόμενό σας μπορεί να εξακολουθεί να εμφανίζεται σε χρήστες που δεν έχουν συνδεθεί από άλλες εφαρμογές και ιστότοπους." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Τίποτα εδώ" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Φίλτρα ειδοποιήσεων" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Ρυθμίσεις ειδοποιήσεων" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Ρυθμίσεις Ειδοποιήσεων" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Ήχοι ειδοποιήσεων" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Ήχοι Ειδοποιήσεων" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Ειδοποιήσεις" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "τώρα" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Γυμνότητα ή περιεχόμενο για ενήλικες που δεν έχει επισημανθεί ως τέτοιο" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Απενεργοποιημένο" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Ωχ όχι!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Εντάξει" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Πιο παλιές απαντήσεις πρώτα" @@ -5331,19 +5736,19 @@ msgstr "Πιο παλιές απαντήσεις πρώτα" msgid "on<0><1/><2><3/>" msgstr "" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Επαναφορά onboardin" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "Ένα ή περισσότερα GIF λείπουν το εναλλακτικό κείμενο." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Μία ή περισσότερες εικόνες λείπουν το εναλλακτικό κείμενο." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Ένα ή περισσότερα βίντεο λείπουν το εναλλακτικό κείμενο." @@ -5351,13 +5756,15 @@ msgstr "Ένα ή περισσότερα βίντεο λείπουν το ενα msgid "Only .jpg and .png files are supported" msgstr "Υποστηρίζονται μόνο αρχεία .jpg και .png" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Μόνο ο/η {0} μπορεί να απαντήσει." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Περιέχει μόνο γράμματα, αριθμούς και παύλες" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Υποστηρίζονται μόνο αρχεία εικόνας" msgid "Only WebVTT (.vtt) files are supported" msgstr "Υποστηρίζονται μόνο αρχεία WebVTT (.vtt)" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Ουπς, κάτι πήγε στραβά!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Ουπς!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Άνοιγμα επιλογέα emoji" @@ -5416,7 +5822,7 @@ msgstr "Άνοιγμα μενού επιλογών ροών" msgid "Open full emoji list" msgstr "" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Άνοιγμα συνδέσμου προς {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Άνοιγμα συνδέσμου προς {niceUrl}" msgid "Open message options" msgstr "Άνοιγμα επιλογών μηνύματος" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Άνοιγμα σελίδας εντοπισμού σφαλμάτων διαχείρισης" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Άνοιγμα ρυθμίσεων λέξεων και ετικετών σε σίγαση" @@ -5453,16 +5859,16 @@ msgstr "" msgid "Open starter pack menu" msgstr "Άνοιγμα μενού starter pack" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Άνοιγμα σελίδας storybook" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Άνοιγμα αρχείου καταγραφής συστήματος" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Ανοίγει {numItems} επιλογές" @@ -5490,11 +5896,11 @@ msgstr "Ανοίγει την κάμερα στη συσκευή" msgid "Opens captions and alt text dialog" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Ανοίγει το εργαλείο σύνταξης κειμένου" @@ -5502,7 +5908,7 @@ msgstr "Ανοίγει το εργαλείο σύνταξης κειμένου" msgid "Opens device photo gallery" msgstr "Ανοίγει τη συλλογή φωτογραφιών της συσκευής" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "" @@ -5520,15 +5926,19 @@ msgstr "" msgid "Opens GIF select dialog" msgstr "Ανοίγει το παράθυρο επιλογής GIF" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Ανοίγει τη λίστα με τους κωδικούς πρόσκλησης" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "" @@ -5536,12 +5946,8 @@ msgstr "" msgid "Opens password reset form" msgstr "Ανοίγει τη φόρμα επαναφοράς κωδικού πρόσβασης" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Ανοίγει τον συνδεδεμένο ιστότοπο" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Ανοίγει αυτό το προφίλ" @@ -5558,7 +5964,7 @@ msgstr "Προαιρετικά, δώστε παρακάτω περισσότερ msgid "Options:" msgstr "Επιλογές:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Ή συνδυάστε αυτές τις επιλογές:" @@ -5600,6 +6006,10 @@ msgstr "Άλλος λογαριασμός" msgid "Other..." msgstr "Άλλα..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "" @@ -5608,7 +6018,7 @@ msgstr "" msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Οι διαχειριστές μας έχουν εξετάσει τις αναφορές και αποφάσισαν να απενεργοποιήσουν την πρόσβαση σας στις συνομιλίες στο Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Η σελίδα δεν βρέθηκε" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Η Σελίδα Δεν Βρέθηκε" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Ο κωδικός πρόσβασης ενημερώθηκε" msgid "Password updated!" msgstr "Ο κωδικός πρόσβασης ενημερώθηκε!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Παύση" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Παύση βίντεο" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Άτομα" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Άτομα που ακολουθούν τον/την @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Άτομα που ακολουθούνται από τον/την @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "" @@ -5704,12 +6119,12 @@ msgstr "Καρφίτσωμα στην αρχική" msgid "Pin to Home" msgstr "Καρφίτσωμα στην Αρχική" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Καρφίτσωμα στο προφίλ σας" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Καρφιτσωμένο" @@ -5718,7 +6133,7 @@ msgstr "Καρφιτσωμένο" msgid "Pinned {0} to Home" msgstr "" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Καρφιτσωμένες ροές" @@ -5726,38 +6141,38 @@ msgstr "Καρφιτσωμένες ροές" msgid "Pinned to your feeds" msgstr "Καρφιτσωμένο στις ροές σας" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Αναπαραγωγή" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Αναπαραγωγή {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Αναπαραγωγή βίντεο" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Αναπαραγωγή Βίντεο" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Αναπαράγει το GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "" @@ -5765,12 +6180,16 @@ msgstr "" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Παρακαλώ επιλέξτε το όνομα χρήστη σας." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Παρακαλώ επιλέξτε τον κωδικό πρόσβασης σας." @@ -5782,7 +6201,8 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Παρακαλώ ολοκληρώστε τον έλεγχο captcha." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "" @@ -5804,6 +6224,7 @@ msgstr "Παρακαλώ εισάγετε ένα μοναδικό όνομα γ msgid "Please enter a valid code." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "" @@ -5812,7 +6233,11 @@ msgstr "" msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Παρακαλώ εισάγετε μια έγκυρη λέξη, ετικέτα ή φράση για να θέσετε σε σίγαση" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "" #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Παρακαλώ εισάγετε το email σας." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Παρακαλώ εισάγετε τον κωδικό πρόσκλησης σας." @@ -5853,6 +6278,19 @@ msgstr "Παρακαλώ εξηγήστε γιατί πιστεύετε ότι msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Παρακαλώ εξηγήστε γιατί πιστεύετε ότι οι συνομιλίες σας απενεργοποιήθηκαν εσφαλμένα" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "" @@ -5870,9 +6308,9 @@ msgstr "Παρακαλώ συνδεθείτε ως @{0}" msgid "Please verify your email" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Παρακαλώ Επιβεβαιώστε το Email Σας" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Πολιτική" msgid "Porn" msgstr "Πορνογραφία" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Δημοσίευση" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Δημοσίευση" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Δημοσίευση" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Δημοσίευση Όλων" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Δημοσίευση από {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Δημοσίευση από @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Η δημοσίευση διαγράφηκε" @@ -5919,11 +6362,14 @@ msgstr "Η δημοσίευση διαγράφηκε" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Η δημοσίευση απέτυχε να μεταφορτωθεί. Παρακαλώ ελέγξτε τη σύνδεση στο internet και προσπαθήστε ξανά." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Η δημοσίευση κρύφτηκε" @@ -5937,11 +6383,11 @@ msgstr "Δημοσίευση κρυμμένη από Λέξη σε Σίγαση" msgid "Post Hidden by You" msgstr "Δημοσίευση κρυμμένη από εσάς" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Ρυθμίσεις αλληλεπίδρασης δημοσίευσης" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "" @@ -5954,8 +6400,10 @@ msgstr "Γλώσσα δημοσίευσης" msgid "Post Languages" msgstr "Γλώσσες Δημοσιεύσεων" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Η δημοσίευση δεν βρέθηκε" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Δημοσίευση ξεκαρφιτσωμένη" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Δημοσιεύσεις" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Οι δημοσιεύσεις μπορούν να τεθούν σε σίγαση με βάση το κείμενο, τις ετικέτες τους ή και τα δύο. Σας προτείνουμε να αποφύγετε τις κοινές λέξεις που εμφανίζονται σε πολλές δημοσιεύσεις, καθώς αυτό μπορεί να έχει ως αποτέλεσμα να μην εμφανίζεται καμία δημοσίευση." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Κρυμμένες δημοσιεύσεις" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Πιθανώς παραπλανητικός σύνδεσμος" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Προτίμηση αποθηκευμένη" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Πατήστε για να δοκιμάσετε ξανά τη σύνδεση" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Πατήστε για να προσπαθήσετε ξανά" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Πατήστε για να δείτε τους ακόλουθους αυτού του λογαριασμού που ακολουθείτε και εσείς" @@ -6015,40 +6469,46 @@ msgstr "Προηγούμενη εικόνα" msgid "Primary Language" msgstr "Κύρια Γλώσσα" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Προτεραιότητα σε όσους λογαριασμούς ακολουθείτε" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Προτεραιότητες ειδοποιήσεων" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Απόρρητο" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Απόρρητο και ασφάλεια" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Απόρρητο και Ασφάλεια" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Πολιτική Απορρήτου" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Επεξεργασία βίντεο..." @@ -6062,15 +6522,14 @@ msgstr "Επεξεργασία..." msgid "profile" msgstr "προφίλ" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Προφίλ" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Προφίλ ενημερωμένο" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "Ο κωδικός QR αντιγράφηκε στο πρόχειρό σας!" @@ -6119,44 +6594,52 @@ msgstr "Ο κωδικός QR έχει κατέβει!" msgid "QR code saved to your camera roll!" msgstr "Ο κωδικός QR αποθηκεύτηκε στο φιλμ της κάμερας σας!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Παράθεση δημοσίευσης" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "Η παράθεση δημοσίευσης προστέθηκε ξανά" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "Η παράθεση δημοσίευσης αφαιρέθηκε επιτυχώς" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Οι παραθέσεις δημοσιεύσεων είναι απενεργοποιημένες" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Ρυθμίσεις παραθέσεων" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Παραθέσεις" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Παραθέσεις αυτής της δημοσίευσης" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Τυχαίο (aka “Poster’s Roulette”)" @@ -6164,8 +6647,8 @@ msgstr "Τυχαίο (aka “Poster’s Roulette”)" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Προσθήκη παράθεσης ξανά" @@ -6177,30 +6660,42 @@ msgstr "" msgid "Reactivate your account" msgstr "Επαναενεργοποίηση του λογαριασμού σας" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Διαβάστε το blog του Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Διαβάστε την Πολιτική Απορρήτου του Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Διαβάστε τους Όρους Χρήσης του Bluesky" @@ -6213,6 +6708,14 @@ msgstr "" msgid "Reason:" msgstr "Λόγος:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Πρόσφατες Αναζητήσεις" @@ -6234,8 +6737,8 @@ msgstr "" msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Επαναφόρτωση συνομιλιών" @@ -6244,10 +6747,9 @@ msgstr "Επαναφόρτωση συνομιλιών" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Αφαίρεση" @@ -6259,17 +6761,17 @@ msgstr "Αφαίρεση του/της {displayName} από το starter pack" msgid "Remove {historyItem}" msgstr "" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Αφαίρεση λογαριασμού" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Αφαίρεση συνημμένου" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Αφαίρεση φωτογραφίας προφίλ" @@ -6284,24 +6786,22 @@ msgstr "Αφαίρεση ενσωματωμένου περιεχομένου" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Αφαίρεση ροής" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Αφαίρεση ροής;" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Αφαίρεση από τις ροές μου" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Αφαίρεση από την γρήγορη πρόσβαση;" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "Αφαίρεση από τις αποθηκευμένες ροές" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Αφαίρεση εικόνας" @@ -6332,12 +6831,8 @@ msgstr "Αφαίρεση λέξης σε σίγαση από τη λίστα σ msgid "Remove profile" msgstr "Αφαίρεση προφίλ" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Αφαίρεση παράθεσης" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Αφαίρεση αναδημοσίευσης" @@ -6345,7 +6840,7 @@ msgstr "Αφαίρεση αναδημοσίευσης" msgid "Remove subtitle file" msgstr "Αφαίρεση αρχείου υπότιτλων" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Αφαίρεση αυτής της ροής από τις αποθηκευμένες ροές σας" @@ -6364,11 +6859,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Αφαιρέθηκε από τον δημιουργό" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Αφαιρέθηκε από εσάς" @@ -6377,10 +6872,6 @@ msgstr "Αφαιρέθηκε από εσάς" msgid "Removed from list" msgstr "Αφαιρέθηκε από τη λίστα" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Αφαιρέθηκε από τις ροές μου" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Αφαιρέθηκε από τις αποθηκευμένες ροές" @@ -6395,34 +6886,36 @@ msgstr "Αφαιρέθηκε από τις ροές σας" msgid "Removed verification" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Αφαιρεί την παρατεθειμένη δημοσίευση" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Αντικατάσταση με την ροή Ανακαλύψτε" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Απαντήσεις" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Οι απαντήσεις είναι απενεργοποιημένες" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Οι απαντήσεις σε αυτή τη δημοσίευση είναι απενεργοποιημένες." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Απάντηση" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -6436,50 +6929,55 @@ msgstr "Απάντηση κρυμμένη από τον δημιουργό το msgid "Reply Hidden by You" msgstr "Απάντηση κρυμμένη από εσάς" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Ρυθμίσεις απαντήσεων" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "Οι ρυθμίσεις απαντήσεων επιλέγονται από τον δημιουργό του νήματος" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Απάντηση σε <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Απάντηση σε μια μπλοκαρισμένη δημοσίευση" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Απάντηση σε μια δημοσίευση" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Απάντηση σε εσάς" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Η ορατότητα απάντησης ενημερώθηκε" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Η απάντηση κρύφτηκε επιτυχώς" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Αναφορά ροής" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Αναφορά μηνύματος" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Αναφορά δημοσίευσης" @@ -6567,25 +7065,26 @@ msgstr "Αναφορά αυτού του Starter Pack" msgid "Report this user" msgstr "Αναφέρετε αυτόν τον χρήστη" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Αναδημοσίευση" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Αναδημοσίευση" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Αναδημοσίευση ή παράθεση ανάρτησης" @@ -6594,26 +7093,38 @@ msgstr "Αναδημοσίευση ή παράθεση ανάρτησης" msgid "Reposted By" msgstr "Αναδημοσίευση από" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Αναδημοσίευση από {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Αναδημοσίευση από <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Αναδημοσίευση από εσάς" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Αναδημοσίευση αυτής της ανάρτησης" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" msgstr "" #: src/view/com/modals/ChangePassword.tsx:253 @@ -6621,8 +7132,8 @@ msgstr "" msgid "Request Code" msgstr "Αίτηση κώδικα" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Απαιτείται εναλλακτικό κείμενο πριν την ανάρτηση" @@ -6630,7 +7141,7 @@ msgstr "Απαιτείται εναλλακτικό κείμενο πριν τη msgid "Require an email code to sign in to your account." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Απαιτείται για αυτόν τον πάροχο" @@ -6642,10 +7153,6 @@ msgstr "Απαιτείται στην περιοχή σας" msgid "Resend" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Επανεπιβεβαίωση Email" msgid "Resend Verification Email" msgstr "Επανεπιβεβαίωση email επαλήθευσης" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Επαναφορά κωδικού" @@ -6667,8 +7180,8 @@ msgstr "Επαναφορά κωδικού" msgid "Reset Code" msgstr "Επαναφορά Κωδικού" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "" @@ -6687,21 +7200,23 @@ msgstr "Επανάληψη της τελευταίας ενέργειας, η ο #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Προσπαθείστε ξανά" @@ -6721,19 +7236,19 @@ msgstr "Επιστροφή στην αρχική σελίδα" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Επιστροφή στην προηγούμενη σελίδα" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Αποθήκευση" @@ -6762,15 +7276,13 @@ msgstr "Αποθήκευση" msgid "Save birthday" msgstr "Αποθήκευση ημερομηνίας γέννησης" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Αποθήκευση αλλαγών" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Αποθήκευση αλλαγών" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Αποθήκευση QR κώδικα" msgid "Save to my feeds" msgstr "Αποθήκευση στις ροές μου" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Αποθηκευμένες ροές" @@ -6802,18 +7314,14 @@ msgstr "Αποθηκευμένες ροές" msgid "Saved to your feeds" msgstr "Αποθηκεύτηκε στις ροές σας" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Αποθηκεύει τυχόν αλλαγές στο προφίλ σας" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Αποθηκεύει τις ρυθμίσεις περικοπής εικόνας" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Πείτε γεια!" @@ -6826,16 +7334,16 @@ msgstr "Επιστήμη" msgid "Scroll to top" msgstr "Μετακίνηση στην κορυφή" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Αναζήτηση" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -6861,7 +7369,7 @@ msgstr "Αναζήτησή για “{query}”" msgid "Search for \"{searchText}\"" msgstr "Αναζήτησή για “{searchText}”" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Αναζητήστε ροές που θέλετε να προτείνετε σε άλλους." @@ -6877,10 +7385,14 @@ msgstr "" msgid "Search for posts, users, or feeds" msgstr "" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Αναζήτηση GIFs" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "" @@ -6890,12 +7402,12 @@ msgstr "" msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Αναζήτηση προφίλ" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Αναζήτηση Tenor" @@ -6903,7 +7415,7 @@ msgstr "Αναζήτηση Tenor" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "" @@ -6912,10 +7424,6 @@ msgstr "" msgid "Security step required" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Απαιτείται ένα βήμα ασφαλείας" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "" @@ -6936,14 +7444,31 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Δείτε θέσεις εργασίας στο Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Δείτε αυτόν τον οδηγό" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Επιλογή χρώματος" @@ -6988,7 +7513,7 @@ msgstr "Επιλογή από υπάρχοντα λογαριασμό" msgid "Select GIF" msgstr "Επιλογή GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Επιλέξτε GIF “{0}”" @@ -6996,6 +7521,11 @@ msgstr "Επιλέξτε GIF “{0}”" msgid "Select how long to mute this word for." msgstr "Επιλέξτε πόσο καιρό να σιωπήσετε αυτήν τη λέξη." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Επιλογή γλώσσας..." @@ -7004,7 +7534,7 @@ msgstr "Επιλογή γλώσσας..." msgid "Select languages" msgstr "Επιλογή γλωσσών" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "" @@ -7045,12 +7575,12 @@ msgstr "" msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Επιλέξτε ποιες γλώσσες θέλετε να περιλαμβάνονται στις ροές που ακολουθείτε. Εάν δεν επιλεγεί καμία, θα εμφανίζονται όλες οι γλώσσες." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Επιλέξτε την ημερομηνία γέννησής σας" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Επιλέξτε τα ενδιαφέροντά σας από τις παρακάτω επιλογές" @@ -7058,7 +7588,11 @@ msgstr "Επιλέξτε τα ενδιαφέροντά σας από τις πα msgid "Select your preferred language for translations in your feed." msgstr "Επιλέξτε την προτιμώμενη γλώσσα σας για τις μεταφράσεις στη ροή σας." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "" @@ -7066,17 +7600,9 @@ msgstr "" msgid "Send a neat website!" msgstr "Στείλτε μια σένια ιστοσελίδα!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Αποστολή email επιβεβαίωσης" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Αποστολή email" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Αποστολή Email" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Αποστολή σχολίων" @@ -7095,7 +7621,7 @@ msgstr "Αποστολή σχολίων" msgid "Send message" msgstr "Αποστολή μηνύματος" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "" @@ -7114,20 +7640,20 @@ msgstr "Αποστολή καταγγελίας" msgid "Send report to {0}" msgstr "Αποστολή καταγγελίας σε {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Αποστολή email επαλήθευσης" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Αποστολή μέσω προσωπικού μηνύματος" @@ -7143,7 +7669,7 @@ msgstr "Διεύθυνση διακομιστή" msgid "Set app icon to {0}" msgstr "" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Ορισμός ημερομηνίας γέννησης" @@ -7159,13 +7685,57 @@ msgstr "Ρύθμιση του λογαριασμού σας" msgid "Sets email for password reset" msgstr "Ορίζει email για επαναφορά κωδικού πρόσβασης" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Ρυθμίσεις" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "Κοινή χρήση μιας κουλ ιστορίας!" msgid "Share a fun fact!" msgstr "Κοινή χρήση ενός διασκεδαστικού γεγονότος!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Κοινή χρήση ούτως ή άλλως" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Κοινή χρήση συνδέσμου" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Κοινή χρήση συνδέσμου" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Παράθυρο διαλόγου κοινής χρήσης συνδέσμου" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "" @@ -7247,8 +7812,8 @@ msgstr "Κοινή χρήση αυτού του Starter Pack" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Μοιραστείτε αυτό το Starter Pack και βοηθήστε κι άλλους να γίνουν μέλη της κοινότητάς σας στο Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "" msgid "Share your favorite feed!" msgstr "Κοινή χρήση της αγαπημένης σας ροής!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Ελεγκτής κοινών προτιμήσεων" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Κοινή χρήση της συνδεδεμένης ιστοσελίδας" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Εμφάνιση" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Εμφάνιση εναλλακτικού κειμένου" @@ -7303,8 +7864,8 @@ msgstr "" msgid "Show hidden replies" msgstr "Εμφάνιση κρυφών απαντήσεων" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Εμφάνιση λιγότερων παρόμοιων" @@ -7312,55 +7873,63 @@ msgstr "Εμφάνιση λιγότερων παρόμοιων" msgid "Show list anyway" msgstr "Εμφάνιση λίστας ούτως ή άλλως" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Εμφάνιση περισσότερων" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Εμφάνιση περισσότερων σαν αυτό" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Εμφάνιση απαντήσεων σε σίγαση" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Εμφάνιση απαντήσεων" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Εμφάνιση απαντήσεων από άτομα που ακολουθείτε πριν από όλες τις άλλες απαντήσεις" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Εμφάνιση απάντησης για όλους" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Εμφάνιση αναδημοσιεύσεων" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "" @@ -7372,16 +7941,17 @@ msgstr "Εμφάνιση προειδοποίησης" msgid "Show warning and filter from feeds" msgstr "Εμφάνιση προειδοποίησης και φιλτράρισμα από τις ροές" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "" @@ -7390,14 +7960,15 @@ msgstr "" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "" msgid "Sign in to Bluesky or create a new account" msgstr "" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Αποσύνδεση" @@ -7444,8 +8020,8 @@ msgstr "Αποσύνδεση" msgid "Sign Out" msgstr "" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Αποσύνδεση;" @@ -7459,12 +8035,12 @@ msgstr "Απαιτείται σύνδεση" msgid "Signed in as @{0}" msgstr "Συνδεδεμένος ως @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Παρόμοιοι λογαριασμοί" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Παράλειψη" @@ -7472,12 +8048,11 @@ msgstr "Παράλειψη" msgid "Skip this flow" msgstr "Παράλειψη αυτής της ροής" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Μικρότερο" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "" @@ -7490,11 +8065,11 @@ msgstr "Ανάπτυξη λογισμικού" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Κάποιες άλλες ροές που μπορεί να σας αρέσουν" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "" @@ -7510,10 +8085,11 @@ msgstr "" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "" -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Κάτι πήγε στραβά" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Κάτι πήγε στραβά, παρακαλώ δοκιμάστε ξανά" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Κάτι πήγε στραβά, παρακαλώ δοκιμάστε ξανά." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Κάτι πήγε στραβά!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "" @@ -7539,20 +8118,23 @@ msgstr "" msgid "Something wrong? Let us know." msgstr "" -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Ταξινόμηση απαντήσεων" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Ταξινόμηση απαντήσεων κατά" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Ταξινόμηση απαντήσεων στην ίδια ανάρτηση κατά:" @@ -7579,7 +8161,7 @@ msgstr "Spam; υπερβολικές αναφορές ή απαντήσεις" msgid "Sports" msgstr "Αθλήματα" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "" @@ -7601,9 +8183,9 @@ msgstr "" msgid "Start chat with {displayName}" msgstr "Έναρξη συνομιλίας με {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "starter pack" @@ -7611,12 +8193,12 @@ msgstr "starter pack" msgid "Starter pack by {0}" msgstr "starter pack από {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "starter pack από εσάς" @@ -7638,19 +8220,21 @@ msgstr "Τα Starter Packs σας επιτρέπουν να μοιράζεστε msgid "Status Page" msgstr "Σελίδα κατάστασης" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Βήμα {0} από {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Η αποθήκευση εκκαθαρίστηκε, πρέπει να επανεκκινήσετε την εφαρμογή τώρα." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "" @@ -7676,10 +8260,14 @@ msgstr "" msgid "Subscribe" msgstr "Εγγραφή" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Εγγραφείτε στο @{0} για να χρησιμοποιήσετε αυτές τις ετικέτες:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Εγγραφείτε στον ετικετογράφο" @@ -7692,8 +8280,12 @@ msgstr "Εγγραφείτε σε αυτόν τον δημιουργό ετικ msgid "Subscribe to this list" msgstr "Εγγραφείτε σε αυτήν τη λίστα" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Επιτυχία!" @@ -7705,7 +8297,7 @@ msgstr "" msgid "Suggested Accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Προτεινόμενα για εσάς" @@ -7714,26 +8306,26 @@ msgstr "Προτεινόμενα για εσάς" msgid "Suggestive" msgstr "Προκλητικό" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Υποστήριξη" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Αλλαγή λογαριασμού" @@ -7742,24 +8334,24 @@ msgstr "Αλλαγή λογαριασμού" msgid "Switch Account" msgstr "Αλλαγή λογαριασμού" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Σύστημα" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Λογαριασμός συστήματος" @@ -7767,6 +8359,18 @@ msgstr "Λογαριασμός συστήματος" msgid "Tags only" msgstr "Μόνο ετικέτες" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Πες μας λίγα ακόμη" msgid "Terms" msgstr "Όροι" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Όροι Χρήσης" @@ -7848,10 +8454,6 @@ msgstr "Πεδίο εισαγωγής κειμένου" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Σας ευχαριστούμε! Το email σας επαληθεύτηκε με επιτυχία." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Σας ευχαριστούμε. Η αναφορά σας εστάλη." @@ -7864,28 +8466,28 @@ msgstr "Σας ευχαριστούμε, έχετε επαληθεύσει με msgid "That contains the following:" msgstr "Αυτό περιέχει τα ακόλουθα:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Αυτό το όνομα χρήστη έχει ήδη ληφθεί." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Δεν βρέθηκε αυτό το starter pack." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Αυτά ήταν όλα, παιδιά!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "Ο λογαριασμός θα μπορεί να αλληλεπιδράσει μαζί σας μετά την απελευθέρωση." @@ -7900,7 +8502,7 @@ msgstr "" msgid "The author of this thread has hidden this reply." msgstr "Ο συντάκτης αυτού του νήματος έχει κρύψει αυτήν την απάντηση." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "" @@ -7920,10 +8522,6 @@ msgstr "Η ροή Ανακαλύψτε" msgid "The Discover feed now knows what you like" msgstr "Η ροή Ανακαλύψτε ξέρει πλέον τι σας αρέσει" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "" - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "Η εμπειρία είναι καλύτερη στην εφαρμογή. Κατεβάστε το Bluesky τώρα και θα συνεχίσουμε από εκεί που σταματήσαμε." @@ -7944,8 +8542,16 @@ msgstr "Οι ακόλουθες ετικέτες εφαρμόστηκαν στο msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Η ανάρτηση μπορεί να έχει διαγραφεί." @@ -7953,9 +8559,10 @@ msgstr "Η ανάρτηση μπορεί να έχει διαγραφεί." msgid "The Privacy Policy has been moved to <0/>" msgstr "Η Πολιτική Απορρήτου έχει μετακινηθεί στο <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "Το επιλεγμένο βίντεο είναι μεγαλύτερο από 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "" #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "Οι Όροι Χρήσης έχουν μετακινηθεί στο" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "Ο κωδικός επαλήθευσης που δώσατε είναι άκυρος. Βεβαιωθείτε ότι έχετε χρησιμοποιήσει το σωστό σύνδεσμο επαλήθευσης ή ζητήστε ένα νέο." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Θέμα" @@ -7990,14 +8597,14 @@ msgstr "Θέμα" msgid "There is no time limit for account deactivation, come back any time." msgstr "Δεν υπάρχει χρονικό όριο για την απενεργοποίηση του λογαριασμού, επιστρέψτε οποιαδήποτε στιγμή." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Παρουσιάστηκε πρόβλημα σύνδεσης με το Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Παρουσιάστηκε πρόβλημα επικοινωνίας με τον διακομιστή" @@ -8006,17 +8613,12 @@ msgstr "Παρουσιάστηκε πρόβλημα επικοινωνίας μ msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Παρουσιάστηκε πρόβλημα επικοινωνίας με τον διακομιστή, παρακαλούμε ελέγξτε τη σύνδεσή σας στο internet και δοκιμάστε ξανά." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Παρουσιάστηκε πρόβλημα επικοινωνίας με τον διακομιστή σας" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Παρουσιάστηκε πρόβλημα λήψης ειδοποιήσεων. Πατήστε εδώ για να δοκιμάσετε ξανά." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Παρουσιάστηκε πρόβλημα λήψης αναρτήσεων. Πατήστε εδώ για να δοκιμάσετε ξανά." @@ -8037,7 +8639,7 @@ msgstr "Παρουσιάστηκε πρόβλημα λήψης των λιστώ msgid "There was an issue fetching your service info" msgstr "Παρουσιάστηκε πρόβλημα λήψης των πληροφοριών υπηρεσίας σας" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Παρουσιάστηκε πρόβλημα κατά την κατάργηση αυτής της ροής. Παρακαλούμε ελέγξτε τη σύνδεσή σας στο internet και δοκιμάστε ξανά." @@ -8052,9 +8654,9 @@ msgstr "Παρουσιάστηκε πρόβλημα κατά την αποστο msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Παρουσιάστηκε πρόβλημα κατά την ενημέρωση των ροών σας, παρακαλούμε ελέγξτε τη σύνδεσή σας στο internet και δοκιμάστε ξανά." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Παρουσιάστηκε πρόβλημα κατά την ενημέρ msgid "There was an issue! {0}" msgstr "Παρουσιάστηκε πρόβλημα! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Παρουσιάστηκε πρόβλημα! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Παρουσιάστηκε πρόβλημα. Παρακαλούμε ελέγξτε τη σύνδεσή σας στο internet και δοκιμάστε ξανά." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Παρουσιάστηκε ένα απροσδόκητο πρόβλημα στην εφαρμογή. Παρακαλούμε ενημερώστε μας εάν σας συνέβη αυτό!" @@ -8089,7 +8691,7 @@ msgstr "Παρουσιάστηκε ένα απροσδόκητο πρόβλημ msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Υπήρξε μια έξαρση νέων χρηστών στο Bluesky! Θα ενεργοποιήσουμε τον λογαριασμό σας το συντομότερο δυνατόν." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Αυτές οι ρυθμίσεις ισχύουν μόνο για τη ροή ΑκολουΘείτε." @@ -8146,7 +8748,7 @@ msgstr "Αυτό το περιεχόμενο φιλοξενείται από {0} msgid "This content is not available because one of the users involved has blocked the other." msgstr "Αυτό το περιεχόμενο δεν είναι διαθέσιμο επειδή ένας από τους εμπλεκόμενους χρήστες έχει αποκλείσει τον άλλον." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Αυτό το περιεχόμενο δεν είναι ορατό χωρίς λογαριασμό Bluesky." @@ -8158,6 +8760,10 @@ msgstr "" msgid "This email is already associated with your account." msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Αυτό το χαρακτηριστικό βρίσκεται σε beta έκδοση. Μπορείτε να διαβάσετε περισσότερα για τις εξαγωγές αποθετηρίου σε <0>αυτή την ανάρτηση ιστολογίου." @@ -8170,7 +8776,7 @@ msgstr "" msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Αυτό το χαρακτηριστικό δεν είναι διαθέσιμο κατά τη χρήση κωδικού πρόσβασης εφαρμογής. Παρακαλούμε συνδεθείτε με τον κύριο κωδικό πρόσβασής σας." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Αυτή η ροή δέχεται αυτήν τη στιγμή μεγάλη κίνηση και είναι προσωρινά μη διαθέσιμη. Παρακαλούμε δοκιμάστε ξανά αργότερα." @@ -8209,11 +8815,11 @@ msgstr "Αυτή η ετικέτα εφαρμόστηκε από τον συντ msgid "This label was applied by you." msgstr "Αυτή η ετικέτα εφαρμόστηκε από εσάς." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Αυτός ο ετικετογράφος δεν έχει δηλώσει ποιες ετικέτες δημοσιεύει, και ενδέχεται να μην είναι ενεργός." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Αυτός ο σύνδεσμος σας μεταφέρει στον ακόλουθο ιστότοπο:" @@ -8233,29 +8839,28 @@ msgstr "" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Η υπηρεσία διαχείρισης δεν είναι διαθέσιμη. Δείτε παρακάτω για περισσότερες λεπτομέρειες. Εάν το πρόβλημα παραμένει, επικοινωνήστε μαζί μας." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Αυτή η ανάρτηση έχει διαγραφεί." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Αυτή η ανάρτηση θα κρυφτεί από τις ροές και τα νήματα. Αυτό δεν μπορεί να αναιρεθεί." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "" @@ -8263,11 +8868,11 @@ msgstr "" msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Η υπηρεσία αυτή δεν έχει παράσχει όρους χρήσης ή πολιτική απορρήτου." @@ -8275,6 +8880,10 @@ msgstr "Η υπηρεσία αυτή δεν έχει παράσχει όρους msgid "This should create a domain record at:" msgstr "Αυτό θα πρέπει να δημιουργήσει ένα domain record στο:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" @@ -8316,16 +8925,18 @@ msgstr "Αυτός ο χρήστης δεν ακολουθεί κανέναν." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Αυτό θα διαγράψει “{0}” από τις λέξεις σε σίγαση. Μπορείτε πάντα να το προσθέσετε ξανά αργότερα." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Αυτό θα αφαιρέσει τον @{0} από τη λίστα γρήγορης πρόσβασης." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "" @@ -8334,24 +8945,27 @@ msgstr "" msgid "Thread preferences" msgstr "Προτιμήσεις νήματος" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Προτιμήσεις Νήματος" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Λειτουργία νήματος" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Προτιμήσεις Νημάτων" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "" @@ -8376,42 +8990,56 @@ msgstr "Σε ποιον θέλετε να στείλετε αυτήν την α msgid "Today" msgstr "Σήμερα" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Εναλλαγή αναπτυσσόμενου μενού" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Εναλλαγή για να ενεργοποιήσετε ή να απενεργοποιήσετε περιεχόμενο για ενήλικες" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Κορυφή" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Μετάφραση" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "" @@ -8428,14 +9056,10 @@ msgstr "Προσπαθήστε ξανά" msgid "TV" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Πληκτρολογήστε το μήνυμά σας εδώ" @@ -8453,7 +9077,7 @@ msgstr "Αδυναμία σύνδεσης. Παρακαλούμε ελέγξτε #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Αδυναμία επικοινωνίας με την υπηρεσία msgid "Unable to delete" msgstr "Αδυναμία διαγραφής" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Ξεμπλοκάρισμα" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Ξεμπλοκάρισμα" @@ -8486,7 +9126,7 @@ msgstr "Ξεμπλοκάρισμα" msgid "Unblock account" msgstr "Ξεμπλοκάρισμα λογαριασμού" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Ξεμπλοκάρισμα Λογαριασμού;" @@ -8495,13 +9135,13 @@ msgstr "Ξεμπλοκάρισμα Λογαριασμού;" msgid "Unblock list" msgstr "" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Αναίρεση αναδημοσίευσης" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Διακοπή παρακολούθησης" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Διακοπή παρακολούθησης {0}" @@ -8523,7 +9163,7 @@ msgstr "" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "" @@ -8555,8 +9195,8 @@ msgstr "Ακύρωση Σίγασης" msgid "Unmute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Ακύρωση Σίγασης συνομιλίας" msgid "Unmute list" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Ακύρωση Σίγασης νήματος" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Ακύρωση Σίγασης βίντεο" @@ -8597,8 +9237,8 @@ msgstr "" msgid "Unpin from home" msgstr "Αφαίρεση καρφιτσωμένου από την αρχική σελίδα" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Αφαίρεση καρφιτσωμένου από το προφίλ" @@ -8614,8 +9254,8 @@ msgstr "" msgid "Unpinned from your feeds" msgstr "Αφαιρέθηκε το καρφιτσωμένο από τις ροές σας" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "" @@ -8636,7 +9276,7 @@ msgstr "Απεγγραφή από αυτόν τον ετικετογράφο" msgid "Unsubscribed from list" msgstr "Απεγγραφή από αυτήν την λίστα" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "" @@ -8662,8 +9302,8 @@ msgstr "Ενημέρωση <0>{displayName} στις Λίστες" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "" @@ -8676,17 +9316,17 @@ msgstr "Ενημέρωση σε {domain}" msgid "Update your email" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Η ενημέρωση της επισυναπτόμενης παράθεσης απέτυχε" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Η ενημέρωση της ορατότητας της απάντησης απέτυχε" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Ενημέρωση..." @@ -8698,20 +9338,20 @@ msgstr "Αντ'αυτού, ανεβάστε μια φωτογραφία" msgid "Upload a text file to:" msgstr "Ανεβάστε ένα αρχείο κειμένου στο:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Ανεβάστε από την κάμερα" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Ανεβάστε από αρχεία" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Ανεβάστε από τη βιβλιοθήκη" msgid "Uploading images..." msgstr "Ανεβάζω εικόνες..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Ανεβάζω μικρογραφία συνδέσμου..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Ανεβάζω βίντεο..." @@ -8761,6 +9401,10 @@ msgstr "Χρησιμοποιήστε τις προτεινόμενες" msgid "Use this to sign in to the other app along with your handle." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Χρησιμοποιείται από:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Η λίστα χρηστών ενημερώθηκε" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Όνομα χρήστη ή διεύθυνση email" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "χρήστες που ακολουθούνται από <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Χρήστες που ακολουθώ" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Χρήστες σε \"{0}\"" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "" @@ -8846,11 +9502,11 @@ msgstr "Τιμή:" msgid "Verification failed, please try again." msgstr "" -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "" @@ -8870,8 +9526,15 @@ msgstr "" msgid "Verify account" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "" @@ -8880,21 +9543,20 @@ msgstr "" msgid "Verify DNS Record" msgstr "Επαλήθευση εγγραφής DNS" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Παράθυρο διαλόγου επαλήθευσης email" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Επαλήθευση αρχείου κειμένου" msgid "Verify this account?" msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Επαληθεύστε το email σας" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Επαληθεύστε το email σας" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Έκδοση {appVersion}" +msgid "Version {0}" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Βίντεο" @@ -8928,7 +9598,7 @@ msgstr "Βίντεο" msgid "Video failed to process" msgstr "Αποτυχία επεξεργασίας βίντεο" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "" @@ -8942,15 +9612,15 @@ msgstr "" msgid "Video Games" msgstr "Βιντεοπαιχνίδια" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Το βίντεο δεν βρέθηκε." @@ -8958,11 +9628,11 @@ msgstr "Το βίντεο δεν βρέθηκε." msgid "Video settings" msgstr "Ρυθμίσεις βίντεο" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Το βίντεο ανέβηκε" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Βίντεο: {0}" @@ -8979,11 +9649,11 @@ msgstr "" msgid "View {0}'s avatar" msgstr "Προβολή εικόνας προφίλ του/της {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Προβολή προφίλ του/της {0}" @@ -8991,7 +9661,7 @@ msgstr "Προβολή προφίλ του/της {0}" msgid "View {displayName}'s profile" msgstr "Προβολή προφίλ του/της {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Προβολή προφίλ αποκλεισμένου χρήστη" @@ -9009,7 +9679,6 @@ msgstr "Προβολή καταχώρησης εντοπισμού σφαλμά msgid "View details" msgstr "Προβολή λεπτομερειών" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Προβολή λεπτομερειών για την αναφορά παραβίασης πνευματικών δικαιωμάτων" @@ -9022,23 +9691,23 @@ msgstr "Προβολή πλήρους νήματος" msgid "View information about these labels" msgstr "Προβολή πληροφοριών σχετικά με αυτές τις ετικέτες" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Προβολή προφίλ" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Προβολή της εικόνας προφίλ" @@ -9054,28 +9723,28 @@ msgstr "" msgid "View users who like this feed" msgstr "Προβολή χρηστών που τους αρέσει αυτή η ροή" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Προβολή των αποκλεισμένων λογαριασμών σας" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Δείτε τις ροές σας και εξερευνήστε περισσότερα" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Προβολή των λιστών εποπτείας σας" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Προβολή των λογαριασμών που έχετε σε σίγαση" @@ -9083,8 +9752,8 @@ msgstr "Προβολή των λογαριασμών που έχετε σε σί msgid "View your verifications" msgstr "" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "" @@ -9092,16 +9761,20 @@ msgstr "" msgid "Views video in immersive mode" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "Επισκεφθείτε την τοποθεσία" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Προειδοποίηση περιεχομένου και φιλτρά msgid "Watch now" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "" + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "Δεν μπορέσαμε να βρούμε αποτελέσματα για αυτό το hashtag." @@ -9128,7 +9809,7 @@ msgstr "Δεν μπορέσαμε να βρούμε αποτελέσματα γ msgid "We couldn't find any results for that topic." msgstr "" -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Δεν μπορέσαμε να φορτώσουμε αυτήν τη συνομιλία" @@ -9136,6 +9817,10 @@ msgstr "Δεν μπορέσαμε να φορτώσουμε αυτήν τη συ msgid "We estimate {estimatedTime} until your account is ready." msgstr "Υπολογίζουμε {estimatedTime} μέχρι να είναι έτοιμος ο λογαριασμός σας." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Στείλαμε ένα νέο email επαλήθευσης στη διεύθυνση <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "Ελπίζουμε να περάσετε υπέροχα. Θυμηθεί msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Δεν έχουμε άλλες αναρτήσεις από αυτούς που ακολουθείτε. Ακολουθούν οι πιο πρόσφατες από <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Δεν μπορέσαμε να προσδιορίσουμε εάν επιτρέπεται να ανεβάζετε βίντεο. Παρακαλώ προσπαθήστε ξανά." @@ -9164,10 +9849,14 @@ msgstr "Δεν μπορέσαμε να προσδιορίσουμε εάν επ msgid "We were unable to load your birth date preferences. Please try again." msgstr "Δεν μπορέσαμε να φορτώσουμε τις προτιμήσεις ημερομηνίας γέννησής σας. Παρακαλώ προσπαθήστε ξανά." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "Δεν μπορέσαμε να φορτώσουμε τους διαμορφωμένους ετικετογράφους σας αυτήν τη στιγμή." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Δεν μπορέσαμε να συνδεθούμε. Προσπαθήστε ξανά για να συνεχίσετε τη ρύθμιση του λογαριασμού σας. Εάν συνεχίσει να αποτυγχάνει, μπορείτε να παραλείψετε αυτήν τη ροή." @@ -9176,7 +9865,7 @@ msgstr "Δεν μπορέσαμε να συνδεθούμε. Προσπαθήσ msgid "We will let you know when your account is ready." msgstr "Θα σας ενημερώσουμε όταν ο λογαριασμός σας είναι έτοιμος." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -9184,6 +9873,22 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "Θα το χρησιμοποιήσουμε για να προσαρμόσουμε την εμπειρία σας." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Αντιμετωπίζουμε προβλήματα δικτύου, δο msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Είμαστε τόσο ενθουσιασμένοι που θα γίνετε μέλος μας!" @@ -9205,15 +9910,15 @@ msgstr "Λυπούμαστε, αλλά δεν μπορέσαμε να επιλύ msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Λυπούμαστε, αλλά δεν μπορέσαμε να φορτώσουμε τις λέξεις που έχετε σε σίγαση αυτήν τη στιγμή. Παρακαλώ προσπαθήστε ξανά." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Λυπούμαστε, αλλά η αναζήτησή σας δεν μπόρεσε να ολοκληρωθεί. Παρακαλώ προσπαθήστε ξανά σε λίγα λεπτά." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Λυπούμαστε! Η ανάρτηση στην οποία απαντάτε έχει διαγραφεί." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Λυπούμαστε! Δεν μπορούμε να βρούμε τη σελίδα που αναζητούσατε." @@ -9222,6 +9927,26 @@ msgstr "Λυπούμαστε! Δεν μπορούμε να βρούμε τη σ msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Λυπούμαστε! Μπορείτε να εγγραφείτε μόνο σε είκοσι ετικετογράφους και έχετε φτάσει στο όριο των είκοσι." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Καλώς ήρθατε ξανά!" @@ -9240,7 +9965,7 @@ msgstr "Πώς θέλετε να ονομάσετε το starter pack σας;" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Τι συμβαίνει;" @@ -9256,11 +9981,11 @@ msgstr "Ποιες γλώσσες χρησιμοποιούνται σε αυτή msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Ποιες γλώσσες θα θέλατε να βλέπετε στις αλγοριθμικές ροές σας;" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Ποιος μπορεί να αλληλεπιδράσει με αυτήν την ανάρτηση;" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Ποιος μπορεί να απαντήσει" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Ουπς!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "" @@ -9322,12 +10047,12 @@ msgstr "Γιατί πρέπει να ελεγχθεί αυτός ο χρήστη msgid "Write a message" msgstr "Γράψτε ένα μήνυμα" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Γράψτε ανάρτηση" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Γράψτε την απάντησή σας" @@ -9358,11 +10083,11 @@ msgstr "Ναι, απενεργοποίηση" msgid "Yes, delete this starter pack" msgstr "Ναι, διαγράψτε αυτό το starter pack" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Ναι, αποσύνδεση" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Ναι, απόκρυψη" @@ -9378,6 +10103,10 @@ msgstr "Χθες" msgid "You" msgstr "Εσείς" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "" @@ -9386,6 +10115,10 @@ msgstr "" msgid "You are creating an account on" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Είστε στην ουρά." @@ -9403,7 +10136,7 @@ msgstr "" msgid "You are not allowed to go live" msgstr "" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Δεν επιτρέπεται να ανεβάζετε βίντεο." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "" @@ -9441,10 +10173,18 @@ msgstr "Μπορείτε επίσης να ανακαλύψετε νέες πρ msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Μπορείτε επίσης να απενεργοποιήσετε προσωρινά τον λογαριασμό σας και να τον επανενεργοποιήσετε ανά πάσα στιγμή." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Μπορείτε να συνεχίσετε τις τρέχουσες συνομιλίες ανεξάρτητα από τη ρύθμιση που θα επιλέξετε." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Τώρα μπορείτε να συνδεθείτε με τον νέο msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Μπορείτε να επανενεργοποιήσετε τον λογαριασμό σας για να συνεχίσετε να συνδέεστε. Το προφίλ και οι αναρτήσεις σας θα είναι ορατές σε άλλους χρήστες." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "" #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "" @@ -9472,7 +10212,7 @@ msgstr "Δεν έχετε ακόλουθους." msgid "You don't follow any users who follow @{name}." msgstr "Δεν ακολουθείτε κανέναν χρήστη που ακολουθεί τον/την @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "" @@ -9480,15 +10220,15 @@ msgstr "" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Δεν έχετε ακόμη κωδικούς πρόσκλησης! Θα σας στείλουμε μερικούς όταν είστε στο Bluesky για λίγο περισσότερο." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Δεν έχετε καρφιτσωμένες ροές." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Δεν έχετε αποθηκευμένες ροές." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Έχετε αποκλείσει τον συγγραφέα ή έχετε αποκλειστεί από τον συγγραφέα." @@ -9502,6 +10242,10 @@ msgstr "Έχετε αποκλείσει αυτόν τον χρήστη" msgid "You have blocked this user. You cannot view their content." msgstr "Έχετε αποκλείσει αυτόν τον χρήστη. Δεν μπορείτε να δείτε το περιεχόμενό του." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Έχετε θέσει αυτόν τον λογαριασμό σε σίγ msgid "You have muted this user" msgstr "Έχετε θέσει αυτόν τον χρήστη σε σίγαση" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Δεν έχετε ακόμη συνομιλίες. Ξεκινήστε μία!" @@ -9547,7 +10291,7 @@ msgstr "Δεν έχετε μπλοκάρει κανένα λογαριασμό msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Δεν έχετε θέσει κάποιον λογαριασμό σε σίγαση ακόμα. Για να θέσετε ένα λογαριασμό σε σίγαση, πηγαίντε στο προφίλ του και επίλεξτε \\¨Σίγαση λογαριασμού\" από το μενού του λογαριασμού του." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Φτάσατε στο τέλος" @@ -9572,6 +10316,10 @@ msgstr "Δεν έχετε θέσει ακόμη σε σίγαση λέξεις msgid "You hid this reply." msgstr "Αποκρύψατε αυτήν την απάντηση." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Μπορείτε να ασκήσετε ένσταση για μη αυτόματες ετικέτες εάν πιστεύετε ότι τοποθετήθηκαν κατά λάθος." @@ -9592,7 +10340,7 @@ msgstr "Μπορείτε να προσθέσετε έως και 3 ροές" msgid "You may only select up to 4 images" msgstr "Μπορείτε να επιλέξετε έως και 4 εικόνες" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "" @@ -9600,6 +10348,14 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Πρέπει να ακολουθείτε τουλάχιστον επτά άλλα άτομα για να δημιουργήσετε ένα starter pack." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Πρέπει να παραχωρήσετε πρόσβαση στη βιβλιοθήκη φωτογραφιών σας για να αποθηκεύσετε έναν κωδικό QR" @@ -9608,6 +10364,11 @@ msgstr "Πρέπει να παραχωρήσετε πρόσβαση στη βι msgid "You must select at least one labeler for a report" msgstr "Πρέπει να επιλέξετε τουλάχιστον έναν ετικετογράφο για μια αναφορά" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "" @@ -9616,7 +10377,7 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "Προηγουμένως απενεργοποιήσατε τον @{0}." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "" @@ -9628,16 +10389,20 @@ msgstr "" msgid "You reacted {0} to {1}" msgstr "" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Θα αποσυνδεθείτε από όλους τους λογαριασμούς σας." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Δεν θα λαμβάνετε πλέον ειδοποιήσεις για αυτό το νήμα" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Τώρα θα λαμβάνετε ειδοποιήσεις για αυτό το νήμα" @@ -9657,11 +10422,11 @@ msgstr "Εσείς: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Εσείς: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Θα ακολουθήσετε τους προτεινόμενους χρήστες και τις ροές μόλις ολοκληρώσετε τη δημιουργία του λογαριασμού σας!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Θα ακολουθήσετε τους προτεινόμενους χρήστες μόλις ολοκληρώσετε τη δημιουργία του λογαριασμού σας!" @@ -9673,9 +10438,9 @@ msgstr "Θα ακολουθήσετε αυτούς τους ανθρώπους msgid "You'll follow these people right away" msgstr "Θα ακολουθήσετε αυτούς τους ανθρώπους αμέσως" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Θα λάβετε ένα email στη διεύθυνση <0>{0} για να επαληθεύσετε ότι είστε εσείς." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "Έχετε επιλέξει να αποκρύψετε μια λέξη ή msgid "You've found some people to follow" msgstr "" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Φτάσατε στο τέλος της ροής σας! Βρείτε περισσότερους λογαριασμούς για να ακολουθήσετε." @@ -9711,19 +10480,23 @@ msgstr "Φτάσατε στο τέλος της ροής σας! Βρείτε π msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Έχετε φτάσει το ημερήσιο όριο για μεταφορτώσεις βίντεο (πάρα πολλά bytes)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Έχετε φτάσει το ημερήσιο όριο για μεταφορτώσεις βίντεο (πάρα πολλά βίντεο)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Ο λογαριασμός σας" @@ -9735,7 +10508,7 @@ msgstr "Ο λογαριασμός σας έχει διαγραφεί" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Ο λογαριασμός σας δεν είναι ακόμη αρκετά παλιός για να ανεβάσετε βίντεο. Παρακαλώ προσπαθήστε ξανά αργότερα." @@ -9751,11 +10524,11 @@ msgstr "" msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Η ημερομηνία γέννησής σας" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Το πρόγραμμα περιήγησής σας δεν υποστηρίζει τη μορφή βίντεο. Παρακαλώ δοκιμάστε ένα διαφορετικό πρόγραμμα περιήγησης." @@ -9771,13 +10544,15 @@ msgstr "" msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Το email σας φαίνεται να είναι μη έγκυρο." @@ -9786,15 +10561,11 @@ msgstr "Το email σας φαίνεται να είναι μη έγκυρο." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Το email σας δεν έχει ακόμη επαληθευτεί. Αυτό είναι ένα σημαντικό βήμα ασφαλείας που σας συνιστούμε." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "Το πρώτο σας \"Μου αρέσει\"!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "" @@ -9806,19 +10577,15 @@ msgstr "Η ροή που ακολουθείτε είναι άδεια! Ακολ msgid "Your full handle will be <0>@{0}" msgstr "Το πλήρες όνομα χρήστη σας θα είναι <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "" @@ -9835,15 +10602,15 @@ msgstr "Οι λέξεις σας σε σίγαση" msgid "Your password has been changed successfully!" msgstr "Ο κωδικός πρόσβασής σας έχει αλλάξει με επιτυχία!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Η ανάρτησή σας έχει δημοσιευτεί" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Οι αναρτήσεις σας έχουν δημοσιευτεί" @@ -9851,15 +10618,19 @@ msgstr "Οι αναρτήσεις σας έχουν δημοσιευτεί" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Οι αναρτήσεις, τα \"Μου αρέσει\" και οι αποκλεισμοί σας είναι δημόσια. Οι σιγάσεις είναι ιδιωτικές." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Το προφίλ, οι αναρτήσεις, οι ροές και οι λίστες σας δεν θα είναι πλέον ορατές σε άλλους χρήστες του Bluesky. πορείτε να ενεργοποιήσετε τον λογαριασμό σας ανά πάσα στιγμή πραγματοποιώντας είσοδο." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Η απάντησή σας έχει δημοσιευτεί" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -9867,7 +10638,7 @@ msgstr "" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Η αναφορά σας θα σταλεί στην Υπηρεσία Διαχείρισης του Bluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "" diff --git a/src/locale/locales/en-GB/messages.po b/src/locale/locales/en-GB/messages.po index e7cccbb255..ab44ed3c4a 100644 --- a/src/locale/locales/en-GB/messages.po +++ b/src/locale/locales/en-GB/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: en_GB\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: English, United Kingdom\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,7 +27,7 @@ msgstr "(active)" msgid "(contains embedded content)" msgstr "(contains embedded content)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(no email)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# repost} other {# reposts}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# second} other {# seconds}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# unread item} other {# unread items}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {# unread item} other {# unread items}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {#mo} other {#mo}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {follower} other {followers}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {following} other {following}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {like} other {likes}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {like} other {likes}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {post} other {posts}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {quote} other {quotes}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {repost} other {reposts}}" @@ -135,6 +138,10 @@ msgstr "{0} <0>in <1>tags" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>in <1>text & tags" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} following" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "{0} is live" @@ -143,11 +150,15 @@ msgstr "{0} is live" msgid "{0} is not a valid URL" msgstr "{0} is not a valid URL" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "{0} is not available" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} joined this week" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} of {1}" @@ -164,8 +175,16 @@ msgstr "{0} reacted {1}" msgid "{0} reacted {1} to {2}" msgstr "{0} reacted {1} to {2}" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0}, a feed by {1}, liked by {2}" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0}, a list by {1}" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "{0}'s avatar" @@ -197,12 +216,12 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}s" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# unread item} other {# unread items}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "{displayName}'s Starter Pack" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {hour} other {hours}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minute} other {minutes}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} followed you" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} followed you back" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} liked your custom feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} liked your post" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} liked your repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} removed their verification from your account" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} reposted your post" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} reposted your repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} signed up with your starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} verified you" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} followed you" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} followed you back" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} liked your custom feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} liked your post" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} liked your repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} removed their verification from your account" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} reposted your post" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} reposted your repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} signed up with your starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} verified you" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} following" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "{handle} can't be messaged" @@ -392,7 +410,7 @@ msgstr "{joinedAllTimeCount, plural, other {# users have}} joined!" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "{minutes, plural, one {# minute} other {# minutes}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# unread item} other {# unread items}}" @@ -432,12 +450,12 @@ msgstr "{userName}'s verifications" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} and {2, plural, one {# other} other {# others}} are included in your starter pack" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} and {2, plural, one {# other} other {# others}} are included in your starter pack" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {follower} other {followers}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {following} other {following}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} and<1> <2>{1} are included in your starter pack" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} is included in your starter pack" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} members" @@ -466,11 +484,11 @@ msgstr "<0>{0} members" msgid "<0>{date} at {time}" msgstr "<0>{date} at {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics and everything else happening on Bluesky." -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>You and<1> <2>{0} are included in your starter pack" @@ -503,10 +521,14 @@ msgstr "a message" msgid "A new form of verification" msgstr "A new form of verification" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "About" @@ -524,25 +546,25 @@ msgstr "Accept chat request" msgid "Accept Request" msgstr "Accept Request" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Accessibility" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Accessibility Settings" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Account followed" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Account Muted" msgid "Account Muted by List" msgstr "Account Muted by List" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Account options" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Account removed from quick access" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Account unfollowed" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Account unmuted" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "Activity from others" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "Activity notifications" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Add" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Add {0} more to continue" @@ -634,8 +666,8 @@ msgstr "Add account" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Add alt text" msgid "Add alt text (optional)" msgstr "Add alt text (optional)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Add another account" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Add another post" @@ -670,8 +702,8 @@ msgstr "Add App Password" msgid "Add emoji reaction" msgstr "Add emoji reaction" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Add more details (optional)" @@ -683,7 +715,7 @@ msgstr "Add mute word with chosen settings" msgid "Add muted words and tags" msgstr "Add muted words and tags" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Add new post" @@ -704,7 +736,7 @@ msgstr "Add Reaction" msgid "Add recommended feeds" msgstr "Add recommended feeds" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Add some feeds to your starter pack!" @@ -725,10 +757,6 @@ msgstr "Add this feed to your feeds" msgid "Add to lists" msgstr "Add to lists" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Add to my feeds" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "Add user to list" @@ -738,11 +766,11 @@ msgstr "Add user to list" msgid "Added to list" msgstr "Added to list" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Added to my feeds" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "Additional details (limit 1000 characters)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Additional details (limit 300 characters)" @@ -750,18 +778,18 @@ msgstr "Additional details (limit 300 characters)" msgid "Adult" msgstr "Adult" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Adult Content" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Adult content can only be enabled via the Web at <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Adult content is disabled." @@ -770,16 +798,32 @@ msgstr "Adult content is disabled." msgid "Adult Content labels" msgstr "Adult Content labels" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Advanced" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "Age Assurance" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "Age assurance enquiry failed to send, please try again." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "Age assurance enquiry was submitted" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "Age assurance only takes a few minutes" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "alice@example.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "All" @@ -793,7 +837,7 @@ msgstr "All accounts have been followed!" msgid "All languages" msgstr "All languages" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "All the feeds you've saved, right in one place." @@ -802,16 +846,21 @@ msgstr "All the feeds you've saved, right in one place." msgid "Allow access to your direct messages" msgstr "Allow access to your direct messages" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Allow new messages from" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "Allow others to be notified of your posts" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Allow quote posts" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Allow replies from:" @@ -828,13 +877,13 @@ msgstr "Already have a code?" msgid "Already signed in as @{0}" msgstr "Already signed in as @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "Alt text" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Alt Text" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Alt text describes images for blind and low-vision users and helps give context to everyone." @@ -861,27 +910,19 @@ msgstr "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} cha msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "An email has been sent to {0}. It includes a confirmation code which you can enter below." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "An email has been sent! Please enter the confirmation code included in the email below." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "An error has occurred" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "An error occurred" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "An error occurred while compressing the video." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "An error occurred while fetching the feed." @@ -889,11 +930,11 @@ msgstr "An error occurred while fetching the feed." msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "An error occurred while generating your starter pack. Want to try again?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "An error occurred while loading the video. Please try again later." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "An error occurred while loading the video. Please try again." @@ -910,7 +951,7 @@ msgstr "An error occurred while selecting the video" msgid "An error occurred while trying to follow all" msgstr "An error occurred while trying to follow all" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "An error occurred while uploading the video." @@ -934,8 +975,8 @@ msgstr "An issue occurred while trying to open the chat" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "an unknown error occurred" msgid "an unknown labeler" msgstr "an unknown labeller" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "and" @@ -963,10 +1004,14 @@ msgstr "and" msgid "Animals" msgstr "Animals" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "Animated GIF" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "Announcement" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "Announcing verification on Bluesky" @@ -980,7 +1025,13 @@ msgstr "Anti-Social Behaviour" msgid "Anybody can interact" msgstr "Anybody can interact" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "Anyone who follows me" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "App password names can only contain letters, numbers, spaces, dashes and msgid "App password names must be at least 4 characters long" msgstr "App password names must be at least 4 characters long" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "App passwords" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "App Passwords" @@ -1053,10 +1104,10 @@ msgstr "Appeal Suspension" msgid "Appeal this decision" msgstr "Appeal this decision" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Appearance" @@ -1065,12 +1116,20 @@ msgstr "Appearance" msgid "Apply default recommended feeds" msgstr "Apply default recommended feeds" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "Apply Pull Request" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Archived from {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Archived post" @@ -1078,7 +1137,7 @@ msgstr "Archived post" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Are you sure you want to delete the app password \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." @@ -1098,19 +1157,15 @@ msgstr "Are you sure you want to leave this conversation?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Are you sure you want to remove {0} from your feeds?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Are you sure you want to remove this from your feeds?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Are you sure you'd like to discard this draft?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Are you sure you'd like to discard this post?" @@ -1131,29 +1186,26 @@ msgstr "Art" msgid "Artistic or non-erotic nudity." msgstr "Artistic or non-erotic nudity." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "Assign topic for algo" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "At least 3 characters" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Autoplay options have moved to the <0>Content and Media settings." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Autoplay videos and GIFs" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "Available" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Autoplay videos and GIFs" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Back" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Back to Chats" @@ -1195,28 +1247,44 @@ msgstr "Before creating a starter pack, you must first verify your email." msgid "Before you can accept this chat request, you must first verify your email." msgstr "Before you can accept this chat request, you must first verify your email." +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "Before you can get notifications for {name}'s posts, you must first verify your email." + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "Before you can message another user, you must first verify your email." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "Begin" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "Begin age assurance process" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "Begin the age assurance process by completing the fields below." + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Birthday" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Block" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Block" msgid "Block account" msgstr "Block account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Block Account?" @@ -1262,20 +1330,20 @@ msgstr "Block user" msgid "Block User" msgstr "Block User" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Blocked" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Blocked accounts" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Blocked Accounts" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." @@ -1284,11 +1352,11 @@ msgstr "Blocked accounts cannot reply in your threads, mention you, or otherwise msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Blocked post." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blocking does not prevent this labeller from placing labels on your account." @@ -1309,11 +1377,12 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky cannot confirm the authenticity of the claimed date." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1347,6 +1416,14 @@ msgstr "Bluesky will not show your profile and posts to logged-out users. Other msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky will proactively verify notable and authentic accounts." +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "Bluesky's Community Guidelines" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "Bluesky's Updated Community Guidelines" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Blur images and filter from feeds" msgid "Books" msgstr "Books" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Browse more accounts on the Explore page" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Browse more feeds on the Explore page" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Browse more suggestions" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Browse more suggestions on the Explore page" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Business" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "By {0}" @@ -1428,15 +1502,23 @@ msgstr "By {0}" msgid "By <0>{0}" msgstr "By <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games and services powered by KWS technology." + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "By creating an account you agree to the <0>Privacy Policy." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "By creating an account you agree to the <0>Terms of Service." @@ -1448,14 +1530,17 @@ msgstr "By you" msgid "Camera" msgstr "Camera" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Camera" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Cancel" @@ -1500,11 +1582,7 @@ msgstr "Cancel account deletion" msgid "Cancel image crop" msgstr "Cancel image crop" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Cancel profile editing" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Cancel quote post" @@ -1516,14 +1594,10 @@ msgstr "Cancel reactivation and sign out" msgid "Cancel search" msgstr "Cancel search" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Cancels opening the linked website" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Cannot interact with a blocked user" @@ -1553,17 +1627,12 @@ msgstr "Change app icon to \"{0}\"" msgid "Change app language" msgstr "Change app language" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Change email address" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Change Handle" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Change moderation service" @@ -1579,14 +1648,6 @@ msgstr "Change post language to {suggestedLanguageName}" msgid "Change report reason" msgstr "Change report reason" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Change Your Email" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Change your email address" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Changes app icon" @@ -1596,10 +1657,15 @@ msgstr "Changes app icon" msgid "Changes hosting provider" msgstr "Changes hosting provider" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "Changes saved" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Chat" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Chat deleted" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "Chat messages – silent" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "Chat messages – sound" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Chat muted" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "Chat request inbox" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Chat requests" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Chat settings" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Chat Settings" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat unmuted" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Chats" @@ -1661,7 +1738,7 @@ msgstr "Check your inbox for an email with the confirmation code to enter below: msgid "Choose domain verification method" msgstr "Choose domain verification method" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Choose Feeds" @@ -1669,7 +1746,7 @@ msgstr "Choose Feeds" msgid "Choose for me" msgstr "Choose for me" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Choose People" @@ -1685,23 +1762,23 @@ msgstr "Choose this colour as your avatar" msgid "Choose your account provider" msgstr "Choose your account provider" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Choose your own timeline! Feeds built by the community help you find content you love." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Choose your password" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Choose your username" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Clear all storage data" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Clear all storage data (restart after this)" @@ -1714,23 +1791,27 @@ msgstr "Clear image cache" msgid "Clear search query" msgstr "Clear search query" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "Click for information" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "click here" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "Click here to restart the verification process." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "Click here to update your email" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Click to disable quote posts of this post." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Click to enable quote posts of this post." @@ -1750,14 +1831,16 @@ msgstr "Climate" msgid "Clip 🐴 clop 🐴" msgstr "Clip 🐴 clop 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,21 +1848,25 @@ msgstr "Clip 🐴 clop 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Close" #: src/components/Dialog/index.web.tsx:111 #: src/components/Dialog/index.web.tsx:259 msgid "Close active dialog" -msgstr "Close active dialogue" +msgstr "Close active dialog" #: src/screens/Login/PasswordUpdatedForm.tsx:31 msgid "Close alert" @@ -1789,13 +1876,15 @@ msgstr "Close alert" msgid "Close bottom drawer" msgstr "Close bottom drawer" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" -msgstr "Close dialogue" +msgstr "Close dialog" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Close drawer menu" @@ -1804,9 +1893,9 @@ msgstr "Close drawer menu" msgid "Close emoji picker" msgstr "Close emoji picker" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" -msgstr "Close GIF dialogue" +msgstr "Close GIF dialog" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:31 msgid "Close image" @@ -1822,15 +1911,15 @@ msgstr "Close image viewer" msgid "Close menu" msgstr "Close menu" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" -msgstr "Close this dialogue" +msgstr "Close this dialog" #: src/screens/Login/PasswordUpdatedForm.tsx:32 msgid "Closes password update alert" msgstr "Closes password update alert" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "Closes post composer and discards post draft" @@ -1843,16 +1932,16 @@ msgstr "Closes the emoji picker" msgid "Closes viewer for header image" msgstr "Closes viewer for header image" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Collapse list of users" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Collapses list of users for a given notification" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Colour mode" @@ -1870,7 +1959,8 @@ msgstr "Comedy" msgid "Comics" msgstr "Comics" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Community Guidelines" @@ -1879,38 +1969,34 @@ msgstr "Community Guidelines" msgid "Complete onboarding and start using your account" msgstr "Complete onboarding and start using your account" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Complete the challenge" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Compose new post" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Compose posts up to {0, plural, other {# characters}} in length" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Compose reply" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Compressing video..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Configure content filtering setting for category: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Configured in <0>moderation settings." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Confirm content language settings" msgid "Confirm delete account" msgstr "Confirm delete account" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Confirm your age:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Confirm your birthdate" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Confirm your birthdate" msgid "Confirmation code" msgstr "Confirmation code" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Confirmation Code" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Connecting..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "Connection issue" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "Contact our moderation team" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Contact support" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "Contact us" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Content & Media" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Content and media" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Content and Media" @@ -1977,7 +2069,8 @@ msgstr "Content and Media" msgid "Content Blocked" msgstr "Content Blocked" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Content filters" @@ -2006,10 +2099,12 @@ msgstr "Content Warning" msgid "Content warnings" msgstr "Content warnings" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Context menu backdrop, click to close the menu." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Continue" msgid "Continue as {0} (currently signed in)" msgstr "Continue as {0} (currently signed in)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "Continue thread" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Continue thread..." @@ -2029,6 +2129,10 @@ msgstr "Continue thread..." msgid "Continue to next step" msgstr "Continue to next step" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "Conversation" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Copied" msgid "Copied build version to clipboard" msgstr "Copied build version to clipboard" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Copies build version to clipboard" msgid "Copy" msgstr "Copy" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "Copy anyway" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Copy App Password" @@ -2087,8 +2187,8 @@ msgstr "Copy App Password" msgid "Copy at:// URI" msgstr "Copy at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Copy author DID" @@ -2120,10 +2220,10 @@ msgstr "Copy Link" msgid "Copy link to list" msgstr "Copy link to list" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Copy link to post" @@ -2136,18 +2236,18 @@ msgstr "Copy link to profile" msgid "Copy link to starter pack" msgstr "Copy link to starter pack" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Copy message text" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Copy post at:// URI" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Copy post text" @@ -2159,11 +2259,25 @@ msgstr "Copy QR code" msgid "Copy TXT record value" msgstr "Copy TXT record value" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Copyright Policy" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "Could not connect to custom feed" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "Could not connect to feed service" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "Could not find profile" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "Could not mute chat" msgid "Could not process your video" msgstr "Could not process your video" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "Could not save changes: {0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "Could not update notification settings" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Create" @@ -2195,7 +2317,7 @@ msgstr "Create a QR code for a starter pack" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Create a starter pack" @@ -2205,21 +2327,22 @@ msgstr "Create a starter pack for me" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Create account" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Create Account" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Create an account" @@ -2241,7 +2364,7 @@ msgstr "Create another" msgid "Create new account" msgstr "Create new account" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Create report for {0}" @@ -2268,7 +2391,7 @@ msgstr "Custom" msgid "Customization options" msgstr "Customisation options" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Customise who can interact with this post." @@ -2278,12 +2401,12 @@ msgstr "Customises your Bluesky experience" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Dark" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Dark" @@ -2292,21 +2415,21 @@ msgstr "Dark" msgid "Dark mode" msgstr "Dark mode" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Dark theme" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Date of birth" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Deactivate account" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Debug Moderation" @@ -2314,7 +2437,7 @@ msgstr "Debug Moderation" msgid "Debug panel" msgstr "Debug panel" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Default" @@ -2322,8 +2445,8 @@ msgstr "Default" msgid "Default icons" msgstr "Default icons" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Default icons" msgid "Delete" msgstr "Delete" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Delete account" @@ -2355,7 +2478,7 @@ msgstr "Delete app password?" msgid "Delete chat" msgstr "Delete chat" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Delete chat declaration record" @@ -2370,7 +2493,7 @@ msgstr "Delete conversation" msgid "Delete Conversation" msgstr "Delete Conversation" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Delete for me" @@ -2378,11 +2501,11 @@ msgstr "Delete for me" msgid "Delete list" msgstr "Delete list" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Delete message" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Delete message for me" @@ -2390,9 +2513,9 @@ msgstr "Delete message for me" msgid "Delete my account" msgstr "Delete my account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Delete post" @@ -2409,11 +2532,11 @@ msgstr "Delete starter pack?" msgid "Delete this list?" msgstr "Delete this list?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Delete this post?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Deleted" @@ -2422,15 +2545,20 @@ msgstr "Deleted" msgid "Deleted Account" msgstr "Deleted Account" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "Deleted list" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Deleted post." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Description" @@ -2447,12 +2575,12 @@ msgstr "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The msgid "Descriptive alt text" msgstr "Descriptive alt text" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Detach quote" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Detach quote post?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Developer mode enabled" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Developer options" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" -msgstr "Dialogue: adjust who can interact with this post" +msgstr "Dialog: adjust who can interact with this post" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Dim" @@ -2492,27 +2620,27 @@ msgstr "Disable email 2FA" msgid "Disable Email 2FA" msgstr "Disable Email 2FA" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Disable haptic feedback" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Disable subtitles" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Disabled" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Discard" @@ -2520,11 +2648,11 @@ msgstr "Discard" msgid "Discard changes?" msgstr "Discard changes?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Discard draft?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Discard post?" @@ -2542,7 +2670,7 @@ msgstr "Discover Feeds" msgid "Discover new custom feeds" msgstr "Discover new custom feeds" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Discover New Feeds" @@ -2550,7 +2678,7 @@ msgstr "Discover New Feeds" msgid "Dismiss" msgstr "Dismiss" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Dismiss error" @@ -2562,26 +2690,26 @@ msgstr "Dismiss getting started guide" msgid "Dismiss interests" msgstr "Dismiss interests" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "Dismiss message" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Dismiss this section" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Display larger alt text badges" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Display name" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Display Name" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Display name is too long" @@ -2603,15 +2731,11 @@ msgstr "Do not apply this mute word to users you follow" msgid "Does not include nudity." msgstr "Does not include nudity." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Doesn't begin or end with a hyphen" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Domain verified!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Don't have a code or need a new one? <0>Click here." @@ -2619,6 +2743,15 @@ msgstr "Don't have a code or need a new one? <0>Click here." msgid "Don't see an email? <0>Click here to resend." msgstr "Don't see an email? <0>Click here to resend." +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "Don't show again" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2658,9 +2791,9 @@ msgstr "Double tap or long press the message to add a reaction" #: src/components/Dialog/index.tsx:322 msgid "Double tap to close the dialog" -msgstr "Double tap to close the dialogue" +msgstr "Double tap to close the dialog" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Double tap to like" @@ -2673,7 +2806,7 @@ msgstr "Download Bluesky" msgid "Download CAR file" msgstr "Download CAR file" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Drop to add images" @@ -2689,18 +2822,10 @@ msgstr "e.g. alice" msgid "e.g. Alice Lastname" msgstr "e.g. Alice Lastname" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "e.g. Alice Roberts" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "e.g. alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "e.g. Artist, dog-lover and avid reader." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "E.g. artistic nudes." @@ -2725,10 +2850,11 @@ msgstr "e.g. Users that repeatedly reply with ads." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Each code works once. You'll receive more invite codes periodically." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Edit" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Edit" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Edit avatar" @@ -2749,12 +2875,12 @@ msgstr "Edit Feeds" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Edit image" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Edit interaction settings" @@ -2776,33 +2902,33 @@ msgstr "Edit live status" msgid "Edit Moderation List" msgstr "Edit Moderation List" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Edit My Feeds" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Edit my profile" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "Edit notifications from {0}" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Edit People" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Edit post interaction settings" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Edit profile" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Edit Profile" @@ -2814,19 +2940,11 @@ msgstr "Edit starter pack" msgid "Edit User List" msgstr "Edit User List" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Edit who can reply" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Edit your display name" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Edit your profile description" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Edit your starter pack" @@ -2839,8 +2957,8 @@ msgstr "Education" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "Either the creator of this list has blocked you or you have blocked the creator." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "Email" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "Email 2FA disabled" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "Email 2FA enabled" @@ -2865,10 +2983,6 @@ msgstr "Email Resent" msgid "Email sent!" msgstr "Email sent!" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "Email Updated!" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "Email verification complete!" @@ -2883,8 +2997,8 @@ msgstr "Embed HTML code" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Embed post" @@ -2892,7 +3006,7 @@ msgstr "Embed post" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Embedded video player" @@ -2906,7 +3020,7 @@ msgstr "Enable" msgid "Enable {0} only" msgstr "Enable {0} only" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Enable adult content" @@ -2919,16 +3033,20 @@ msgstr "Enable email 2FA" msgid "Enable external media" msgstr "Enable external media" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Enable media players for" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Enable priority notifications" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "Enable push notifications" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Enable subtitles" @@ -2941,17 +3059,14 @@ msgstr "Enable this source only" msgid "Enable trending topics" msgstr "Enable trending topics" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Enable trending videos in your Discover feed" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Enable trending videos in your Discover feed." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Enabled" @@ -2963,7 +3078,7 @@ msgstr "End of feed" msgid "Ensure you have selected a language for each subtitle file." msgstr "Ensure you have selected a language for each subtitle file." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Enter a password" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Enter a word or tag" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "Enter code" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Enter Code" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Enter fullscreen" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Enter your birthdate" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Enter your email address" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Enter your new email address below." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Enter your password" @@ -3022,7 +3129,7 @@ msgstr "Enter your password" msgid "Enter your username and password" msgstr "Enter your username and password" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Enters fullscreen" @@ -3030,16 +3137,28 @@ msgstr "Enters fullscreen" msgid "Entertainment" msgstr "Entertainment" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Error" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "Error loading post" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "Error loading preference" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "Error message" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Error occurred while saving file" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Error receiving captcha response." @@ -3047,27 +3166,34 @@ msgstr "Error receiving captcha response." msgid "Error:" msgstr "Error:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "Error: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Everybody" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Everybody can reply" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Everybody can reply to this post." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "Everything else" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Exclude users you follow" msgid "Excludes users you follow" msgstr "Excludes users you follow" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Exit fullscreen" @@ -3106,24 +3232,28 @@ msgstr "Exits image view" msgid "Expand alt text" msgstr "Expand alt text" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Expand list of users" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Expand or collapse the full post you are replying to" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "Expand post text" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Expands or collapses post text" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "Expected URI to resolve to a record" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Experimental" @@ -3153,15 +3283,15 @@ msgstr "Explicit or potentially disturbing media." msgid "Explicit sexual images." msgstr "Explicit sexual images." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "Explore" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Export my data" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "External Media" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "External Media Preferences" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "Failed to accept chat" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "Failed to add emoji reaction" @@ -3211,8 +3341,8 @@ msgstr "Failed to create app password. Please try again." msgid "Failed to create conversation" msgstr "Failed to create conversation" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Failed to create starter pack" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "Failed to delete chat" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Failed to delete message" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Failed to delete post, please try again" @@ -3238,8 +3368,8 @@ msgstr "Failed to delete post, please try again" msgid "Failed to delete starter pack" msgstr "Failed to delete starter pack" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "Failed to load conversations" @@ -3250,14 +3380,32 @@ msgstr "Failed to load conversations" msgid "Failed to load feeds preferences" msgstr "Failed to load feeds preferences" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Failed to load GIFs" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "Failed to load notification settings." + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Failed to load past messages" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "Failed to load preference." + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Failed to load suggested feeds" msgid "Failed to load suggested follows" msgstr "Failed to load suggested follows" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "Failed to mark all requests as read" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Failed to pin post" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "Failed to remove emoji reaction" @@ -3291,15 +3439,11 @@ msgstr "Failed to remove verification" msgid "Failed to save image: {0}" msgstr "Failed to save image: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Failed to save notification preferences, please try again" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "Failed to save settings. Please try again." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "Failed to save your interests." @@ -3318,7 +3462,7 @@ msgstr "Failed to send email, please try again." msgid "Failed to submit appeal, please try again." msgstr "Failed to submit appeal, please try again." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Failed to toggle thread mute, please try again" @@ -3335,7 +3479,11 @@ msgstr "Failed to update email, please try again." msgid "Failed to update feeds" msgstr "Failed to update feeds" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "Failed to update notification declaration" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Failed to update settings" @@ -3354,15 +3502,23 @@ msgstr "Failed to verify email, please try again." msgid "Failed to verify handle. Please try again." msgstr "Failed to verify handle. Please try again." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Feed" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Feed by {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "Feed creator" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "Feed identifier" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Feed menu" @@ -3371,35 +3527,39 @@ msgstr "Feed menu" msgid "Feed toggle" msgstr "Feed toggle" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "Feed unavailable" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Feedback" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Feedback sent!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Feeds" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Feeds updated!" @@ -3428,6 +3588,14 @@ msgstr "Filter search by language" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filter search by language (currently: {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "Filter who can opt to receive notifications for your activity" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "Filter who you receive notifications from" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Finalising" @@ -3448,7 +3616,7 @@ msgstr "Find people to follow" msgid "Find posts, users, and feeds on Bluesky" msgstr "Find posts, users and feeds on Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Finish" @@ -3456,17 +3624,17 @@ msgstr "Finish" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Flat Black" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Flat Blue" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Flat White" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Flexible" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Follow" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Follow {0}" @@ -3518,7 +3686,7 @@ msgstr "Follow account" msgid "Follow all" msgstr "Follow all" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Follow Back" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Follow Back" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Followed by <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Followed by <0>{0} and <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Followed by <0>{0}, <1>{1} and {2, plural, one {# other} other {# others}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Followers of @{0} that you know" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Followers you know" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Following" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Following" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Following {0}" @@ -3579,8 +3751,8 @@ msgstr "Following {handle}" msgid "Following feed preferences" msgstr "Following feed preferences" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Following Feed Preferences" @@ -3592,11 +3764,11 @@ msgstr "Follows you" msgid "Follows You" msgstr "Follows You" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Font" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Font size" @@ -3613,7 +3785,7 @@ msgstr "For security reasons, we'll need to send a confirmation code to your ema msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "For the best experience, we recommend using the theme font." @@ -3643,11 +3815,15 @@ msgstr "Forgot?" msgid "Frequently Posts Unwanted Content" msgstr "Frequently Posts Unwanted Content" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "From" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "From @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "From <0/>" @@ -3660,14 +3836,68 @@ msgstr "Gallery" msgid "Generate a starter pack" msgstr "Generate a starter pack" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Get help" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "Get notifications when people follow you." + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "Get notifications when people like posts that you've reposted." + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "Get notifications when people like your posts." + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "Get notifications when people mention you." + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "Get notifications when people quote your posts." + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "Get notifications when people reply to your posts." + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "Get notifications when people repost posts that you've reposted." + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "Get notifications when people repost your posts." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "Get notified about new posts" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Get notified about posts and replies from accounts you choose." + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "Get notified of new posts from {name}" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "Get notified of this account’s activity" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "Get notified when {name} posts" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "Get notified when someone posts" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "Get started" @@ -3688,14 +3918,16 @@ msgstr "Give your profile a face" msgid "Glaring violations of law or terms of service" msgstr "Glaring violations of law or terms of service" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "Go Live" msgid "Go live for" msgstr "Go live for" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "Go to {firstAuthorName}'s profile" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "Go to account settings" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Go to conversation with {0}" @@ -3779,8 +4017,8 @@ msgstr "Graphic Media" msgid "Half way there!" msgstr "Half way there!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Handle" @@ -3797,7 +4035,7 @@ msgstr "Handle changed!" msgid "Handle too long. Please try a shorter one." msgstr "Handle too long. Please try a shorter one." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Haptics" @@ -3806,7 +4044,7 @@ msgstr "Haptics" msgid "Harassment, trolling, or intolerance" msgstr "Harassment, trolling or intolerance" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Hashtag" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Hashtag {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "Have a code? <0>Click here." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Having trouble?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Help" @@ -3839,8 +4077,13 @@ msgstr "Help people know you're not a bot by uploading a picture or creating an msgid "Here is your app password!" msgstr "Here is your app password!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "Hey there 👋" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Hidden" @@ -3848,16 +4091,16 @@ msgstr "Hidden" msgid "Hidden by your moderation settings." msgstr "Hidden by your moderation settings." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Hidden list" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Hidden list" msgid "Hide" msgstr "Hide" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Hide" @@ -3875,18 +4118,18 @@ msgstr "Hide" msgid "Hide customization options" msgstr "Hide customisation options" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Hide post for me" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Hide reply for everyone" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Hide reply for me" @@ -3894,12 +4137,12 @@ msgstr "Hide reply for me" msgid "Hide this card" msgstr "Hide this card" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Hide this post?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Hide this reply?" @@ -3913,11 +4156,11 @@ msgstr "Hide trending topics" msgid "Hide trending topics?" msgstr "Hide trending topics?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Hide trending videos?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Hide user list" @@ -3926,32 +4169,32 @@ msgstr "Hide user list" msgid "Hide verification badges" msgstr "Hide verification badges" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Hides the content" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, we're having trouble finding this feed. It may have been deleted." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." @@ -3959,15 +4202,15 @@ msgstr "Hmm, it seems we're having trouble loading this data. See below for more msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmm, we couldn't load that moderation service." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Hold up! We’re gradually giving access to video and you’re still waiting in line. Check back soon!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Home" @@ -3984,10 +4227,10 @@ msgstr "Hosting provider" msgid "Hot" msgstr "Hot" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Hot replies first" @@ -3996,10 +4239,6 @@ msgstr "Hot replies first" msgid "How should we open this link?" msgstr "How should we open this link?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "I understand" msgid "If alt text is long, toggles alt text expanded state" msgstr "If alt text is long, toggles alt text expanded state" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." @@ -4031,11 +4270,11 @@ msgstr "If you delete this list, you won't be able to recover it." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "If you need to update your email, <0>click here." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "If you remove this post, you won't be able to recover it." @@ -4047,6 +4286,10 @@ msgstr "If you update your email address, email 2FA will be disabled." msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "If you want to change your password, we will send you a code to verify that this is your account." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "If you're a developer, you can host your own server." @@ -4091,13 +4334,41 @@ msgstr "Impersonation or false claims about identity or affiliation" msgid "Impersonation, misinformation, or false claims" msgstr "Impersonation, misinformation or false claims" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "In-app" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "In-app notifications" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "In-app, Everyone" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "In-app, People you follow" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "In-app, Push" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "In-app, Push, Everyone" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "In-app, Push, People you follow" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Inappropriate messages or explicit links" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "Inbox zero!" @@ -4105,7 +4376,7 @@ msgstr "Inbox zero!" msgid "Incorrect username or password" msgstr "Incorrect username or password" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Input code sent to your email for password reset" @@ -4113,7 +4384,7 @@ msgstr "Input code sent to your email for password reset" msgid "Input confirmation code for account deletion" msgstr "Input confirmation code for account deletion" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Input new password" @@ -4129,10 +4400,14 @@ msgstr "Input the code which has been emailed to you" msgid "Interaction limited" msgstr "Interaction limited" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Interaction settings" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "Introducing activity notifications" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Invalid 2FA confirmation code." msgid "Invalid handle. Please try a different one." msgstr "Invalid handle. Please try a different one." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Invalid or unsupported post record" @@ -4158,7 +4433,7 @@ msgstr "Invalid Verification Code" msgid "Invite a Friend" msgstr "Invite a Friend" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Invite code" @@ -4186,15 +4461,15 @@ msgstr "Invite your friends to follow your favourite feeds and people" msgid "Invites, but personal" msgstr "Invites, but personal" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "It's correct" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "It's just you right now! Add more people to your starter pack by searching above." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "Job ID: {0}" @@ -4220,11 +4495,27 @@ msgstr "Join the conversation" msgid "Journalism" msgstr "Journalism" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "Keep me posted" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "KWS Privacy Policy" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "KWS Terms of Use" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "KWS website" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Labelled by {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Labelled by the author." @@ -4237,7 +4528,7 @@ msgstr "Labels" msgid "Labels added" msgstr "Labels added" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Labels are annotations on users and content. They can be used to hide, warn and categorise the network." @@ -4253,22 +4544,30 @@ msgstr "Labels on your content" msgid "Language selection" msgstr "Language selection" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Language Settings" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Languages" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Larger" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "Last initiated {timeAgo} ago" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "Last initiated just now" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Latest" @@ -4282,7 +4581,6 @@ msgstr "learn more" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "Learn more" @@ -4290,6 +4588,10 @@ msgstr "Learn more" msgid "Learn More" msgstr "Learn More" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "Learn more about age assurance" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Learn more about Bluesky" @@ -4298,15 +4600,23 @@ msgstr "Learn more about Bluesky" msgid "Learn more about self hosting your PDS." msgstr "Learn more about self-hosting your PDS." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "Learn more about the moderation applied to this content" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Learn more about the moderation applied to this content." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Learn more about these changes and how to share your thoughts with us by reading our blog post." + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Learn more about this warning" @@ -4316,12 +4626,16 @@ msgstr "Learn more about this warning" msgid "Learn more about verification on Bluesky" msgstr "Learn more about verification on Bluesky" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Learn more about what is public on Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "Learn more in your <0>account settings." + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Learn more." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Leave conversation" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Leave them all unchecked to see any language." +msgid "Leave them all unselected to see any language." +msgstr "Leave them all unselected to see any language." -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Leaving Bluesky" @@ -4370,7 +4685,7 @@ msgstr "Let's go!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Light" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Like" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Like ({0, plural, one {# like} other {# likes}})" @@ -4397,6 +4712,10 @@ msgstr "Like 10 posts" msgid "Like 10 posts to train the Discover feed" msgstr "Like 10 posts to train the Discover feed" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "Like notifications" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Like this feed" @@ -4405,8 +4724,8 @@ msgstr "Like this feed" msgid "Like this labeler" msgstr "Like this labeller" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Liked by" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Liked By" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Liked by {0, plural, one {# user} other {# users}}" @@ -4428,20 +4747,36 @@ msgstr "Liked by {0, plural, one {# user} other {# users}}" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Liked by {likeCount, plural, one {# user} other {# users}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Likes" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "Likes of your reposts" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "Likes of your reposts notifications" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Likes on this post" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Linear" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "List" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "List blocked" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "List by {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "List by <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "List by you" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "List creator" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "List unmuted" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Lists" @@ -4537,7 +4876,7 @@ msgstr "Load more" msgid "Load more suggested feeds" msgstr "Load more suggested feeds" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Load new notifications" @@ -4552,11 +4891,11 @@ msgstr "Load new posts" msgid "Loading..." msgstr "Loading..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Log" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Logged-out visibility" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo by @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo by <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Logo by <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Long press to open tag menu for #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Looks like XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "Make adjustments to email settings for your account" msgid "Make one for me" msgstr "Make one for me" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Make sure this is where you intend to go!" @@ -4606,7 +4945,7 @@ msgstr "Make sure this is where you intend to go!" msgid "Manage saved feeds" msgstr "Manage saved feeds" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "Manage verification settings" @@ -4614,9 +4953,9 @@ msgstr "Manage verification settings" msgid "Manage your muted words and tags" msgstr "Manage your muted words and tags" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "Mark all as read" @@ -4625,15 +4964,13 @@ msgstr "Mark all as read" msgid "Mark as read" msgstr "Mark as read" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "Marked all as read" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "Maybe later" @@ -4645,19 +4982,26 @@ msgstr "Media" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Media that may be disturbing or inappropriate for some audiences." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "Mention notifications" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "mentioned users" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Mentioned users" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Mentions" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Menu" @@ -4665,7 +5009,7 @@ msgstr "Menu" msgid "Message {0}" msgstr "Message {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Message deleted" @@ -4674,11 +5018,11 @@ msgstr "Message deleted" msgid "Message deleted" msgstr "Message deleted" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "Message from @{0}: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Message from server: {0}" @@ -4691,19 +5035,23 @@ msgstr "Message input field" msgid "Message is too long" msgstr "Message is too long" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "Message options" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Messages" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Midnight" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "Miscellaneous notifications" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Misleading Account" msgid "Misleading Post" msgstr "Misleading Post" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderation" @@ -4725,17 +5073,17 @@ msgstr "Moderation" msgid "Moderation details" msgstr "Moderation details" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Moderation list by {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Moderation list by <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Moderation list by you" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Moderation list updated" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Moderation lists" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Moderation Lists" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "moderation settings" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Moderation states" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Moderation tools" @@ -4775,7 +5123,7 @@ msgstr "Moderation tools" msgid "Moderator has chosen to set a general warning on the content." msgstr "Moderator has chosen to set a general warning on the content." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "More" @@ -4790,13 +5138,13 @@ msgstr "More feeds" msgid "More options" msgstr "More options" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Most-liked first" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Most-liked replies first" @@ -4808,8 +5156,8 @@ msgstr "Films" msgid "Music" msgstr "Music" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Mute" @@ -4819,8 +5167,8 @@ msgstr "Mute" msgid "Mute {tag}" msgstr "Mute {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Mute this word in tags only" msgid "Mute this word until you unmute it" msgstr "Mute this word until you unmute it" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Mute thread" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Mute words & tags" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Muted accounts" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Muted Accounts" @@ -4898,7 +5246,7 @@ msgstr "Muted accounts have their posts removed from your feed and from your not msgid "Muted by \"{0}\"" msgstr "Muted by \"{0}\"" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Muted words & tags" @@ -4911,7 +5259,7 @@ msgstr "Muting is private. Muted accounts can interact with you, but you will no msgid "My Birthday" msgstr "My Birthday" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "My Feeds" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Nature" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Navigate to {0}" @@ -4958,11 +5306,11 @@ msgstr "Navigates to the next screen" msgid "Navigates to your profile" msgstr "Navigates to your profile" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Need to change it?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "Need to report a copyright violation, legal request, or regulatory compliance issue?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Need to report a copyright violation?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "New" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "New chat" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "New email address" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "New Feature" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "New follower notifications" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "New followers" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "New messages" msgid "New Moderation List" msgstr "New Moderation List" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "New password" @@ -5029,7 +5396,7 @@ msgstr "New Password" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,23 +5408,35 @@ msgctxt "action" msgid "New post" msgstr "New post" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "New Post" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" -msgstr "New user info dialogue" +msgstr "New user info dialog" #: src/view/com/modals/CreateOrEditList.tsx:225 msgid "New User List" msgstr "New User List" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Newest replies first" @@ -5071,15 +5450,15 @@ msgstr "News" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "No DNS Panel" msgid "No expiry set" msgstr "No expiry set" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "No featured GIFs found. There may be an issue with Tenor." @@ -5119,32 +5498,35 @@ msgstr "No image" msgid "No likes yet" msgstr "No likes yet" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "No longer following {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "No messages yet" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "No notifications yet!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "No one" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "No one but the author can quote this post." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "No posts here" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "No posts yet." @@ -5171,7 +5553,7 @@ msgstr "No results" msgid "No results for \"{0}\"." msgstr "No results for \"{0}\"." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "No results found" @@ -5179,9 +5561,9 @@ msgstr "No results found" msgid "No results found for \"{query}\"" msgstr "No results found for \"{query}\"" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "No results found for {query}" @@ -5189,7 +5571,7 @@ msgstr "No results found for {query}" msgid "No results." msgstr "No results." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "No search results found for \"{search}\"." @@ -5198,7 +5580,7 @@ msgstr "No search results found for \"{search}\"." msgid "No thanks" msgstr "No thanks" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Nobody" @@ -5223,59 +5605,76 @@ msgstr "Nobody was found. Try searching for someone else." msgid "Non-sexual Nudity" msgstr "Non-sexual Nudity" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "None" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "Not followed by anyone you're following" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Not Found" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Note about sharing" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "Note: This post is only visible to logged-in users." + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Nothing here" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Notification filters" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Notification settings" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Notification Settings" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Notification sounds" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Notification Sounds" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Notifications" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "Notifications for everything else, such as when someone joins via one of your starter packs." + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "now" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Nudity or adult content not labelled as such" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Off" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Oh no!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "OK" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Okay" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Oldest replies first" @@ -5331,19 +5736,19 @@ msgstr "Oldest replies first" msgid "on<0><1/><2><3/>" msgstr "on<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Onboarding reset" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "One or more GIFs is missing alt text." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "One or more images is missing alt text." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "One or more videos is missing alt text." @@ -5351,13 +5756,15 @@ msgstr "One or more videos is missing alt text." msgid "Only .jpg and .png files are supported" msgstr "Only .jpg and .png files are supported" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Only {0} can reply." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Only contains letters, numbers and hyphens" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "Only followers who I follow" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Only image files are supported" msgid "Only WebVTT (.vtt) files are supported" msgstr "Only WebVTT (.vtt) files are supported" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Oops, something went wrong!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Oops!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Open drawer menu" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Open emoji picker" @@ -5416,7 +5822,7 @@ msgstr "Open feed options menu" msgid "Open full emoji list" msgstr "Open full emoji list" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Open link to {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Open link to {niceUrl}" msgid "Open message options" msgstr "Open message options" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Open moderation debug page" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Open muted words and tags settings" @@ -5453,26 +5859,26 @@ msgstr "Open share menu" msgid "Open starter pack menu" msgstr "Open starter pack menu" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Open storybook page" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Open system log" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Opens {numItems} options" #: src/view/com/composer/labels/LabelsBtn.tsx:62 msgid "Opens a dialog to add a content warning to your post" -msgstr "Opens a dialogue to add a content warning to your post" +msgstr "Opens a dialog to add a content warning to your post" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:61 msgid "Opens a dialog to choose who can reply to this thread" -msgstr "Opens a dialogue to choose who can reply to this thread" +msgstr "Opens a dialog to choose who can reply to this thread" #: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" @@ -5480,7 +5886,7 @@ msgstr "Opens additional details for a debug entry" #: src/view/com/composer/videos/SubtitleDialog.tsx:44 msgid "Opens alt text dialog" -msgstr "Opens alt text dialogue" +msgstr "Opens alt text dialog" #: src/view/com/composer/photos/OpenCameraBtn.tsx:71 msgid "Opens camera on device" @@ -5488,13 +5894,13 @@ msgstr "Opens camera on device" #: src/view/com/composer/videos/SubtitleDialog.tsx:43 msgid "Opens captions and alt text dialog" -msgstr "Opens captions and alt text dialogue" +msgstr "Opens captions and alt text dialog" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" -msgstr "Opens change handle dialogue" +msgstr "Opens change handle dialog" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Opens composer" @@ -5502,7 +5908,7 @@ msgstr "Opens composer" msgid "Opens device photo gallery" msgstr "Opens device photo gallery" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Opens emoji picker" @@ -5518,30 +5924,30 @@ msgstr "Opens flow to sign in to your existing Bluesky account" #: src/view/com/composer/photos/SelectGifBtn.tsx:36 msgid "Opens GIF select dialog" -msgstr "Opens GIF select dialogue" +msgstr "Opens GIF select dialog" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Opens helpdesk in browser" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "Opens link {0}" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Opens list of invite codes" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" -msgstr "Opens live status dialogue" +msgstr "Opens live status dialog" #: src/screens/Login/LoginForm.tsx:249 msgid "Opens password reset form" msgstr "Opens password reset form" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Opens the linked website" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Opens this profile" @@ -5558,7 +5964,7 @@ msgstr "Optionally provide additional information below:" msgid "Options:" msgstr "Options:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Or combine these options:" @@ -5600,6 +6006,10 @@ msgstr "Other account" msgid "Other..." msgstr "Other..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "Our blog post" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "Our moderation team has received your report." @@ -5608,7 +6018,7 @@ msgstr "Our moderation team has received your report." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Page not found" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Page Not Found" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Password updated" msgid "Password updated!" msgstr "Password updated!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Pause" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Pause video" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "People" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "People followed by @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "People following @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "People I follow" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "Permission to access your photo library was denied. Please enable it in your system settings." @@ -5704,12 +6119,12 @@ msgstr "Pin to home" msgid "Pin to Home" msgstr "Pin to Home" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Pin to your profile" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Pinned" @@ -5718,7 +6133,7 @@ msgstr "Pinned" msgid "Pinned {0} to Home" msgstr "Pinned {0} to Home" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Pinned Feeds" @@ -5726,38 +6141,38 @@ msgstr "Pinned Feeds" msgid "Pinned to your feeds" msgstr "Pinned to your feeds" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Play" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Play {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Play video" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Play Video" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Plays or pauses the GIF" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Plays or pauses the video" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Plays the GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Plays the video" @@ -5765,12 +6180,16 @@ msgstr "Plays the video" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "Please add any content warning labels that are applicable for the media you are posting." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "Please check your email inbox for further instructions. It may take a minute or two to arrive." + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Please choose your handle." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Please choose your password." @@ -5782,7 +6201,8 @@ msgstr "Please click on the link in the email we just sent you to verify your ne msgid "Please complete the verification captcha." msgstr "Please complete the verification captcha." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Please double-check that you have entered your email address correctly." @@ -5804,6 +6224,7 @@ msgstr "Please enter a unique name for this app password or use our randomly gen msgid "Please enter a valid code." msgstr "Please enter a valid code." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "Please enter a valid email address." @@ -5812,7 +6233,11 @@ msgstr "Please enter a valid email address." msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Please enter a valid word, tag or phrase to mute" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "Please enter a valid, non-temporary email address. You may need to access this email in the future." + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "Please enter the code we sent to <0>{0} below." @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "Please enter the security code we sent to your previous email address." #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Please enter your email." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Please enter your invite code." @@ -5853,6 +6278,19 @@ msgstr "Please explain why you think this label was incorrectly applied by {0}" msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Please explain why you think your chats were incorrectly disabled" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "Please go back, or activate this element to return to the start of the active content." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "Please select a language" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "Please select a moderation service" @@ -5870,9 +6308,9 @@ msgstr "Please sign in as @{0}" msgid "Please verify your email" msgstr "Please verify your email" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Please Verify Your Email" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "Please write your message below:" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Politics" msgid "Porn" msgstr "Porn" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Post" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Post" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Post" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Post All" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "Post blocked" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Post by {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Post by @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Post deleted" @@ -5919,11 +6362,14 @@ msgstr "Post deleted" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Post failed to upload. Please check your Internet connection and try again." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "Post has been deleted" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Post hidden" @@ -5937,11 +6383,11 @@ msgstr "Post Hidden by Muted Word" msgid "Post Hidden by You" msgstr "Post Hidden by You" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Post interaction settings" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Post Interaction Settings" @@ -5954,8 +6400,10 @@ msgstr "Post language" msgid "Post Languages" msgstr "Post Languages" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Post not found" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Post unpinned" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Posts" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Posts hidden" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Potentially Misleading Link" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "Posts, Replies" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Preference saved" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "Potentially misleading link" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "Potentially misleading link warning" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Press to attempt reconnection" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Press to retry" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Press to view followers of this account that you also follow" @@ -6015,40 +6469,46 @@ msgstr "Previous image" msgid "Primary Language" msgstr "Primary Language" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Prioritise your Follows" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Priority notifications" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Privacy" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Privacy and security" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacy and Security" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "Privacy and Security settings" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Privacy Policy" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Processing video..." @@ -6062,15 +6522,14 @@ msgstr "Processing..." msgid "profile" msgstr "profile" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Profile" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Profile updated" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Public, shareable lists which can be used to drive feeds." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "Publish post" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "Publish posts" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "Publish replies" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "Publish reply" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "Push" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "Push notifications" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "Push, Everyone" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "Push, People you follow" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "QR code copied to your clipboard!" @@ -6119,44 +6594,52 @@ msgstr "QR code has been downloaded!" msgid "QR code saved to your camera roll!" msgstr "QR code saved to your camera roll!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "Quote notifications" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Quote post" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "Quote post was re-attached" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "Quote post was successfully detached" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Quote posts disabled" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Quote settings" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Quotes" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Quotes of this post" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Random (aka \"Poster's Roulette\")" @@ -6164,8 +6647,8 @@ msgstr "Random (aka \"Poster's Roulette\")" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Re-attach quote" @@ -6177,30 +6660,42 @@ msgstr "React with {emoji}" msgid "Reactivate your account" msgstr "Reactivate your account" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "Read {0} more {1, plural, one {reply} other {replies}}" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Read blog post" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Read less" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Read more" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "Read more replies" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "Read our blog post" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Read the Bluesky blog" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Read the Bluesky Privacy Policy" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Read the Bluesky Terms of Service" @@ -6213,6 +6708,14 @@ msgstr "Reason for appeal" msgid "Reason:" msgstr "Reason:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "Receive in-app notifications" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "Receive push notifications" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Recent Searches" @@ -6234,8 +6737,8 @@ msgstr "Reject" msgid "Reject chat request" msgstr "Reject chat request" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Reload conversations" @@ -6244,10 +6747,9 @@ msgstr "Reload conversations" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Remove" @@ -6259,17 +6761,17 @@ msgstr "Remove {displayName} from starter pack" msgid "Remove {historyItem}" msgstr "Remove {historyItem}" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Remove account" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Remove attachment" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Remove Avatar" @@ -6284,24 +6786,22 @@ msgstr "Remove embed" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Remove feed" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Remove feed?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Remove from my feeds" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Remove from quick access?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "Remove from saved feeds" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "Remove from your feeds?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Remove image" @@ -6332,12 +6831,8 @@ msgstr "Remove mute word from your list" msgid "Remove profile" msgstr "Remove profile" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Remove quote" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Remove repost" @@ -6345,7 +6840,7 @@ msgstr "Remove repost" msgid "Remove subtitle file" msgstr "Remove subtitle file" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Remove this feed from your saved feeds" @@ -6364,11 +6859,11 @@ msgstr "Remove verification" msgid "Remove your verification for this account?" msgstr "Remove your verification for this account?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Removed by author" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Removed by you" @@ -6377,10 +6872,6 @@ msgstr "Removed by you" msgid "Removed from list" msgstr "Removed from list" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Removed from my feeds" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Removed from saved feeds" @@ -6395,34 +6886,36 @@ msgstr "Removed from your feeds" msgid "Removed verification" msgstr "Removed verification" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Removes quoted post" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Replace with Discover" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Replies" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Replies disabled" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Replies to this post are disabled." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Reply" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Reply ({0, plural, one {# reply} other {# replies}})" @@ -6436,50 +6929,55 @@ msgstr "Reply Hidden by Thread Author" msgid "Reply Hidden by You" msgstr "Reply Hidden by You" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "Reply notifications" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Reply settings" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "Reply settings are chosen by the author of the thread" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Reply sorting" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Reply to <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Reply to a blocked post" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Reply to a post" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Reply to you" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Reply visibility updated" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Reply was successfully hidden" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6502,7 +7000,7 @@ msgstr "Report conversation" #: src/components/moderation/ReportDialog/index.tsx:198 #: src/components/ReportDialog/index.tsx:44 msgid "Report dialog" -msgstr "Report dialogue" +msgstr "Report dialog" #: src/screens/Profile/components/ProfileFeedHeader.tsx:546 #: src/screens/Profile/components/ProfileFeedHeader.tsx:552 @@ -6513,12 +7011,12 @@ msgstr "Report feed" msgid "Report list" msgstr "Report list" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Report message" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Report post" @@ -6567,25 +7065,26 @@ msgstr "Report this starter pack" msgid "Report this user" msgstr "Report this user" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Repost" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Repost" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Repost ({0, plural, one {# repost} other {# reposts}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "Repost notifications" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Repost or quote post" @@ -6594,35 +7093,47 @@ msgstr "Repost or quote post" msgid "Reposted By" msgstr "Reposted By" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Reposted by {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Reposted by <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Reposted by you" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "Reposts" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Reposts of this post" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "Request change" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "Reposts of your reposts" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "Reposts of your reposts notifications" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "Request Code" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Require alt text before posting" @@ -6630,7 +7141,7 @@ msgstr "Require alt text before posting" msgid "Require an email code to sign in to your account." msgstr "Require an email code to sign in to your account." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Required for this provider" @@ -6642,10 +7153,6 @@ msgstr "Required in your region" msgid "Resend" msgstr "Resend" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Resend Email" msgid "Resend Verification Email" msgstr "Resend Verification Email" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "Reset activity subscription nudge" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Reset code" @@ -6667,8 +7180,8 @@ msgstr "Reset code" msgid "Reset Code" msgstr "Reset Code" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Reset onboarding state" @@ -6687,21 +7200,23 @@ msgstr "Retries the last action, which errored out" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Retry" @@ -6721,19 +7236,19 @@ msgstr "Returns to home page" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Returns to previous page" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Returns to the previous step" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Returns to the previous step" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Save" @@ -6762,15 +7276,13 @@ msgstr "Save" msgid "Save birthday" msgstr "Save birthday" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Save changes" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Save Changes" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Save QR code" msgid "Save to my feeds" msgstr "Save to my feeds" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Saved Feeds" @@ -6802,18 +7314,14 @@ msgstr "Saved Feeds" msgid "Saved to your feeds" msgstr "Saved to your feeds" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Saves any changes to your profile" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Saves image crop settings" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Say hello!" @@ -6826,16 +7334,16 @@ msgstr "Science" msgid "Scroll to top" msgstr "Scroll to top" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Search" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Search @{0}'s posts" @@ -6861,7 +7369,7 @@ msgstr "Search for \"{query}\"" msgid "Search for \"{searchText}\"" msgstr "Search for \"{searchText}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Search for feeds that you want to suggest to others." @@ -6877,10 +7385,14 @@ msgstr "Search for more feeds" msgid "Search for posts, users, or feeds" msgstr "Search for posts, users or feeds" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Search GIFs" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "Search is currently unavailable when logged out" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Search my posts" @@ -6890,12 +7402,12 @@ msgstr "Search my posts" msgid "Search posts" msgstr "Search posts" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Search profiles" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Search Tenor" @@ -6903,7 +7415,7 @@ msgstr "Search Tenor" msgid "Search..." msgstr "Search..." -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Searches for profiles" @@ -6912,10 +7424,6 @@ msgstr "Searches for profiles" msgid "Security step required" msgstr "Security step required" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Security Step Required" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "See {tag} posts" @@ -6936,14 +7444,31 @@ msgstr "See #{tag} posts by user" msgid "See jobs at Bluesky" msgstr "See jobs at Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "See more" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "See more accounts you might like" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "See more suggested profiles on the Explore page" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "See this guide" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "Select {0}" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Select a colour" @@ -6988,7 +7513,7 @@ msgstr "Select from an existing account" msgid "Select GIF" msgstr "Select GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Select GIF \"{0}\"" @@ -6996,6 +7521,11 @@ msgstr "Select GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "Select how long to mute this word for." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "Select language" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Select language..." @@ -7004,7 +7534,7 @@ msgstr "Select language..." msgid "Select languages" msgstr "Select languages" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "Select moderation service" @@ -7045,12 +7575,12 @@ msgstr "Select which language to use for the app's user interface." msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Select your date of birth" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Select your interests from the options below" @@ -7058,7 +7588,11 @@ msgstr "Select your interests from the options below" msgid "Select your preferred language for translations in your feed." msgstr "Select your preferred language for translations in your feed." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "Select your preferred notification channels" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "Selects option {0} of {numItems}" @@ -7066,17 +7600,9 @@ msgstr "Selects option {0} of {numItems}" msgid "Send a neat website!" msgstr "Send a neat website!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "Send confirmation" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Send confirmation email" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Send email" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Send Email" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Send feedback" @@ -7095,7 +7621,7 @@ msgstr "Send feedback" msgid "Send message" msgstr "Send message" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "Send post to {name}" @@ -7114,20 +7640,20 @@ msgstr "Send report" msgid "Send report to {0}" msgstr "Send report to {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "Send report to {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Send verification email" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Send via direct message" @@ -7143,7 +7669,7 @@ msgstr "Server address" msgid "Set app icon to {0}" msgstr "Set app icon to {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Set birthdate" @@ -7159,13 +7685,57 @@ msgstr "Set up your account" msgid "Sets email for password reset" msgstr "Sets email for password reset" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Settings" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "Settings for activity from others" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "Settings for allowing others to be notified of your posts" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "Settings for like notifications" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "Settings for mention notifications" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "Settings for new follower notifications" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "Settings for notifications for everything else" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "Settings for notifications for likes of your reposts" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "Settings for notifications for reposts of your reposts" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "Settings for quote notifications" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "Settings for reply notifications" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "Settings for repost notifications" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "Share a cool story!" msgid "Share a fun fact!" msgstr "Share a fun fact!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Share anyway" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "Share author DID" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Share link" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Share Link" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" -msgstr "Share link dialogue" +msgstr "Share link dialog" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "Share post at:// URI" @@ -7247,8 +7812,8 @@ msgstr "Share this starter pack" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Share this starter pack and help people join your community on Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "Share via..." msgid "Share your favorite feed!" msgstr "Share your favourite feed!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Shared Preferences Tester" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Shares the linked website" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Show" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Show alt text" @@ -7303,8 +7864,8 @@ msgstr "Show customisation options" msgid "Show hidden replies" msgstr "Show hidden replies" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Show less like this" @@ -7312,55 +7873,63 @@ msgstr "Show less like this" msgid "Show list anyway" msgstr "Show list anyway" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Show More" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Show more like this" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "Show more replies" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Show muted replies" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "Show post replies in a threaded tree view" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Show quote posts" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Show replies" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Show replies as" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Show replies as threaded" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Show replies by people you follow before all other replies" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Show reply for everyone" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Show reposts" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Show samples of your saved feeds in your Following feed" @@ -7372,16 +7941,17 @@ msgstr "Show warning" msgid "Show warning and filter from feeds" msgstr "Show warning and filter from feeds" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Shows information about when this post was created" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "Shows other accounts you can switch to" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Shows the content" @@ -7390,14 +7960,15 @@ msgstr "Shows the content" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "Sign in to account that is not listed" msgid "Sign in to Bluesky or create a new account" msgstr "Sign in to Bluesky or create a new account" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "Sign in to view post" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Sign out" @@ -7444,8 +8020,8 @@ msgstr "Sign out" msgid "Sign Out" msgstr "Sign Out" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Sign out?" @@ -7459,12 +8035,12 @@ msgstr "Sign-in Required" msgid "Signed in as @{0}" msgstr "Signed in as @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Similar accounts" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Skip" @@ -7472,12 +8048,11 @@ msgstr "Skip" msgid "Skip this flow" msgstr "Skip this flow" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Smaller" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "Snoozes the reminder" @@ -7490,11 +8065,11 @@ msgstr "Software Dev" msgid "Some of your verifications are invalid." msgstr "Some of your verifications are invalid." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Some other feeds you might like" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Some people can reply" @@ -7510,10 +8085,11 @@ msgstr "Someone reacted {0} to {1}" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "Something wasn't quite right with the data you're trying to report. Please contact support." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Something went wrong" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Something went wrong, please try again" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Something went wrong, please try again." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Something went wrong!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "Something went wrong. Please try again in a moment." + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "Something went wrong. Please try again." @@ -7539,20 +8118,23 @@ msgstr "Something went wrong. Please try again." msgid "Something wrong? Let us know." msgstr "Something wrong? Let us know." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "Sorry! Your session expired. Please sign in again." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Sort replies" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Sort replies by" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Sort replies to the same post by:" @@ -7579,7 +8161,7 @@ msgstr "Spam; excessive mentions or replies" msgid "Sports" msgstr "Sports" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "Start a conversation, and it will appear here." @@ -7601,9 +8183,9 @@ msgstr "Start adding people!" msgid "Start chat with {displayName}" msgstr "Start chat with {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Starter Pack" @@ -7611,12 +8193,12 @@ msgstr "Starter Pack" msgid "Starter pack by {0}" msgstr "Starter pack by {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Starter pack by <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Starter pack by you" @@ -7638,19 +8220,21 @@ msgstr "Starter packs let you easily share your favourite feeds and people with msgid "Status Page" msgstr "Status Page" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Step {0} of {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Storage cleared, you need to restart the app now." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Storybook" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Submit appeal" msgid "Submit Appeal" msgstr "Submit Appeal" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "Submit report" @@ -7676,10 +8260,14 @@ msgstr "Submit report" msgid "Subscribe" msgstr "Subscribe" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Subscribe to @{0} to use these labels:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "Subscribe to account activity" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Subscribe to Labeller" @@ -7692,8 +8280,12 @@ msgstr "Subscribe to this labeller" msgid "Subscribe to this list" msgstr "Subscribe to this list" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "Success" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Success!" @@ -7705,7 +8297,7 @@ msgstr "Successfully verified" msgid "Suggested Accounts" msgstr "Suggested Accounts" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Suggested for you" @@ -7714,26 +8306,26 @@ msgstr "Suggested for you" msgid "Suggestive" msgstr "Suggestive" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Sunrise" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Sunset" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Support" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Switch account" @@ -7742,24 +8334,24 @@ msgstr "Switch account" msgid "Switch Account" msgstr "Switch Account" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Switch accounts" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "Switch to {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "System" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "System log" @@ -7767,6 +8359,18 @@ msgstr "System log" msgid "Tags only" msgstr "Tags only" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "Tap for information" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "Tap for more information" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Tell us a little more" msgid "Terms" msgstr "Terms" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Terms of Service" @@ -7848,44 +8454,40 @@ msgstr "Text input field" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "Thank you for your feedback! It has been sent to the feed operator." -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Thank you! Your email has been successfully verified." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Thank you. Your report has been sent." #: src/components/intents/VerifyEmailIntentDialog.tsx:82 msgid "Thanks, you have successfully verified your email address. You can close this dialog." -msgstr "Thanks, you have successfully verified your email address. You can close this dialogue." +msgstr "Thanks, you have successfully verified your email address. You can close this dialog." #: src/screens/Settings/components/ChangeHandleDialog.tsx:487 msgid "That contains the following:" msgstr "That contains the following:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "That handle is already taken." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "That starter pack could not be found." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "That username is already taken" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "That's all, folks!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "That's everything!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "The account will be able to interact with you after unblocking." @@ -7900,7 +8502,7 @@ msgstr "The app will be restarted" msgid "The author of this thread has hidden this reply." msgstr "The author of this thread has hidden this reply." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "The Bluesky web application" @@ -7920,10 +8522,6 @@ msgstr "The Discover feed" msgid "The Discover feed now knows what you like" msgstr "The Discover feed now knows what you like" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "The email address you entered is the same as your current email address." - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." @@ -7944,8 +8542,16 @@ msgstr "The following labels were applied to your content." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "The post may have been deleted." @@ -7953,9 +8559,10 @@ msgstr "The post may have been deleted." msgid "The Privacy Policy has been moved to <0/>" msgstr "The Privacy Policy has been moved to <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "The selected video is larger than 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "The selected video is larger than 100 MB. Please try again with a smaller file." #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "The Terms of Service have been moved to" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Theme" @@ -7990,14 +8597,14 @@ msgstr "Theme" msgid "There is no time limit for account deactivation, come back any time." msgstr "There is no time limit for account deactivation, come back any time." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "There was an issue connecting to Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "There was an issue contacting the server" @@ -8006,17 +8613,12 @@ msgstr "There was an issue contacting the server" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "There was an issue contacting the server, please check your internet connection and try again." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "There was an issue contacting your server" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "There was an issue fetching notifications. Tap here to try again." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "There was an issue fetching posts. Tap here to try again." @@ -8037,7 +8639,7 @@ msgstr "There was an issue fetching your lists. Tap here to try again." msgid "There was an issue fetching your service info" msgstr "There was an issue fetching your service info" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "There was an issue removing this feed. Please check your internet connection and try again." @@ -8052,9 +8654,9 @@ msgstr "There was an issue sending your report. Please check your internet conne msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "There was an issue updating your feeds, please check your internet connection and try again." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "There was an issue updating your feeds, please check your internet conne msgid "There was an issue! {0}" msgstr "There was an issue! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "There was an issue! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "There was an issue. Please check your internet connection and try again." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "There was an unexpected issue in the application. Please let us know if this happened to you!" @@ -8089,7 +8691,7 @@ msgstr "There was an unexpected issue in the application. Please let us know if msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "These settings only apply to the Following feed." @@ -8146,7 +8748,7 @@ msgstr "This content is hosted by {0}. Do you want to enable external media?" msgid "This content is not available because one of the users involved has blocked the other." msgstr "This content is not available because one of the users involved has blocked the other." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "This content is not viewable without a Bluesky account." @@ -8158,6 +8760,10 @@ msgstr "This conversation is with a deleted or a deactivated account. Press for msgid "This email is already associated with your account." msgstr "This email is already associated with your account." +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "This feature is in beta. You can read more about repository exports in <0>this blogpost." @@ -8170,7 +8776,7 @@ msgstr "This feature is not available while using an app password. Please sign i msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "This feature is not available while using an App Password. Please sign in with your main password." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." @@ -8209,11 +8815,11 @@ msgstr "This label was applied by the author." msgid "This label was applied by you." msgstr "This label was applied by you." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "This labeller hasn't declared what labels it publishes and may not be active." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "This link is taking you to the following website:" @@ -8233,29 +8839,28 @@ msgstr "This list is empty." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "This moderation service is unavailable. See below for more details. If this issue persists, contact us." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "This post has an unknown type of threadgate on it. Your app may be out of date." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "This post has been deleted." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "This post is only visible to logged-in users." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "This post will be hidden from feeds and threads. This cannot be undone." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "This post's author has disabled quote posts." @@ -8263,11 +8868,11 @@ msgstr "This post's author has disabled quote posts." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies – both for yourself and others." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "This service has not provided terms of service or a privacy policy." @@ -8275,6 +8880,10 @@ msgstr "This service has not provided terms of service or a privacy policy." msgid "This should create a domain record at:" msgstr "This should create a domain record at:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "This should only take a few minutes." + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "This user does not have a display name, and therefore cannot be verified." @@ -8316,16 +8925,18 @@ msgstr "This user isn't following anyone." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "This will delete \"{0}\" from your muted words. You can always add it back later." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "This will remove @{0} from the quick access list." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "This will remove your post from this quote post for all users, and replace it with a placeholder." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Thread options" @@ -8334,24 +8945,27 @@ msgstr "Thread options" msgid "Thread preferences" msgstr "Thread preferences" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Thread Preferences" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Threaded" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Threaded mode" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Threads Preferences" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "Time remaining: {0, plural, one {# second} other {# seconds}}" @@ -8376,42 +8990,56 @@ msgstr "To whom would you like to send this report?" msgid "Today" msgstr "Today" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Toggle dropdown" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Toggle to enable or disable adult content" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Toggles the sound" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Top" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "Top replies first" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Topic" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Translate" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "Tree view" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Trending" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Trending Videos" @@ -8428,14 +9056,10 @@ msgstr "Try again" msgid "TV" msgstr "TV" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Two-factor authentication (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Type your desired username" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Type your message here" @@ -8453,7 +9077,7 @@ msgstr "Unable to connect. Please check your internet connection and try again." #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Unable to contact your service. Please check your Internet connection." msgid "Unable to delete" msgstr "Unable to delete" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "Unapply Pull Request" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "Unapply Pull Request {currentChannel}" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "Unavailable" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "Unavailable feed information" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Unblock" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Unblock" @@ -8486,7 +9126,7 @@ msgstr "Unblock" msgid "Unblock account" msgstr "Unblock account" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Unblock Account?" @@ -8495,13 +9135,13 @@ msgstr "Unblock Account?" msgid "Unblock list" msgstr "Unblock list" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Undo repost" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Undo repost ({0, plural, one {# repost} other {# reposts}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Unfollow" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Unfollow {0}" @@ -8523,7 +9163,7 @@ msgstr "Unfollow account" msgid "Unfollows the user" msgstr "Unfollows the user" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Unfortunately, none of your subscribed labellers support this report type." @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "Unlike" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Unlike ({0, plural, one {# like} other {# likes}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Unmute" @@ -8555,8 +9195,8 @@ msgstr "Unmute" msgid "Unmute {tag}" msgstr "Unmute {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Unmute conversation" msgid "Unmute list" msgstr "Unmute list" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Unmute thread" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Unmute video" @@ -8597,8 +9237,8 @@ msgstr "Unpin Feed" msgid "Unpin from home" msgstr "Unpin from home" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Unpin from profile" @@ -8614,8 +9254,8 @@ msgstr "Unpinned {0} from Home" msgid "Unpinned from your feeds" msgstr "Unpinned from your feeds" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "Unsnooze email reminder" @@ -8636,7 +9276,7 @@ msgstr "Unsubscribe from this labeller" msgid "Unsubscribed from list" msgstr "Unsubscribed from list" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Unsupported video type" @@ -8662,8 +9302,8 @@ msgstr "Update <0>{displayName} in Lists" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "Update email" @@ -8676,17 +9316,17 @@ msgstr "Update to {domain}" msgid "Update your email" msgstr "Update your email" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Updating quote attachment failed" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Updating reply visibility failed" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Updating..." @@ -8698,20 +9338,20 @@ msgstr "Upload a photo instead" msgid "Upload a text file to:" msgstr "Upload a text file to:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Upload from Camera" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Upload from Files" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Upload from Library" msgid "Uploading images..." msgstr "Uploading images..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Uploading link thumbnail..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Uploading video..." @@ -8761,6 +9401,10 @@ msgstr "Use recommended" msgid "Use this to sign in to the other app along with your handle." msgstr "Use this to sign in to the other app along with your handle." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Used by:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "User list updated" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "Username cannot begin or end with a hyphen" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "Username must only contain letters (a–z), numbers, and hyphens" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Username or email address" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "users followed by <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "users following <0>@{0}" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Users I follow" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Users in \"{0}\"" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Users you follow" @@ -8846,11 +9502,11 @@ msgstr "Value:" msgid "Verification failed, please try again." msgstr "Verification failed, please try again." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "Verification settings" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "Verification Settings" @@ -8870,8 +9526,15 @@ msgstr "Verified by:" msgid "Verify account" msgstr "Verify account" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "Verify again" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "Verify code" @@ -8880,20 +9543,19 @@ msgstr "Verify code" msgid "Verify DNS Record" msgstr "Verify DNS Record" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "Verify email" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "Verify email code" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" -msgstr "Verify email dialogue" +msgstr "Verify email dialog" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "Verify now" #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 @@ -8904,23 +9566,31 @@ msgstr "Verify Text File" msgid "Verify this account?" msgstr "Verify this account?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "Verify your age" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Verify your email" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Verify Your Email" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "Verifying" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "Verifying your age assurance status" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Version {appVersion}" +msgid "Version {0}" +msgstr "Version {0}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Video" @@ -8928,7 +9598,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "Video failed to process" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Video Feed" @@ -8942,15 +9612,15 @@ msgstr "Video from {0}: {text}" msgid "Video Games" msgstr "Video Games" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Video is paused" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Video is playing" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Video not found." @@ -8958,11 +9628,11 @@ msgstr "Video not found." msgid "Video settings" msgstr "Video settings" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Video uploaded" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Video: {0}" @@ -8979,11 +9649,11 @@ msgstr "Videos must be less than 3 minutes long" msgid "View {0}'s avatar" msgstr "View {0}'s avatar" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "View {0}'s profile" @@ -8991,7 +9661,7 @@ msgstr "View {0}'s profile" msgid "View {displayName}'s profile" msgstr "View {displayName}'s profile" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "View blocked user's profile" @@ -9009,7 +9679,6 @@ msgstr "View debug entry" msgid "View details" msgstr "View details" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "View details for reporting a copyright violation" @@ -9022,23 +9691,23 @@ msgstr "View full thread" msgid "View information about these labels" msgstr "View information about these labels" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "View more" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "View profile" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "View the avatar" @@ -9054,28 +9723,28 @@ msgstr "View this user's verifications" msgid "View users who like this feed" msgstr "View users who like this feed" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "View video" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "View your blocked accounts" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "View your default post interaction settings" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "View your feeds and explore more" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "View your moderation lists" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "View your muted accounts" @@ -9083,8 +9752,8 @@ msgstr "View your muted accounts" msgid "View your verifications" msgstr "View your verifications" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Views full image" @@ -9092,16 +9761,20 @@ msgstr "Views full image" msgid "Views video in immersive mode" msgstr "Views video in immersive mode" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "Visit Site" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "Visit site" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "Visit your notification settings" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Volume" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Warn content and filter from feeds" msgid "Watch now" msgstr "Watch now" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "We could not find this list. It was probably deleted." + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "We couldn't find any results for that hashtag." @@ -9128,7 +9809,7 @@ msgstr "We couldn't find any results for that hashtag." msgid "We couldn't find any results for that topic." msgstr "We couldn't find any results for that topic." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "We couldn't load this conversation" @@ -9136,6 +9817,10 @@ msgstr "We couldn't load this conversation" msgid "We estimate {estimatedTime} until your account is ready." msgstr "We estimate {estimatedTime} until your account is ready." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games or services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "We have sent another verification email to <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "We hope you have a wonderful time. Remember, Bluesky is:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "We ran out of posts from your follows. Here's the latest from <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "We recommend selecting at least two interests." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "We were unable to determine if you are allowed to upload videos. Please try again." @@ -9164,10 +9849,14 @@ msgstr "We were unable to determine if you are allowed to upload videos. Please msgid "We were unable to load your birth date preferences. Please try again." msgstr "We were unable to load your birthdate preferences. Please try again." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "We were unable to load your configured labellers at this time." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." @@ -9176,7 +9865,7 @@ msgstr "We weren't able to connect. Please try again to continue setting up your msgid "We will let you know when your account is ready." msgstr "We will let you know when your account is ready." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." @@ -9184,6 +9873,22 @@ msgstr "We'll send an email to <0>{0} containing a link. Please click on it msgid "We'll use this to help customize your experience." msgstr "We'll use this to help customise your experience." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on 15 October 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on 15 October 2025." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "We're confirming your age assurance status with our servers. This should only take a few seconds." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "We're having issues initialising the age assurance process for your account. Please <0>contact support for assistance." + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "We're having network issues, try again" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "We're so excited to have you join us!" @@ -9205,15 +9910,15 @@ msgstr "We're sorry, but we were unable to resolve this list. If this persists, msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "We're sorry, but we weren't able to load your muted words at this time. Please try again." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "We're sorry, but your search could not be completed. Please try again in a few minutes." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "We're sorry! The post you are replying to has been deleted." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "We're sorry! We can't find the page you were looking for." @@ -9222,6 +9927,26 @@ msgstr "We're sorry! We can't find the page you were looking for." msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "We're sorry! You can only subscribe to twenty labellers and you've reached your limit of twenty." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective 15 September 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "We're updating our policies" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective 15 September 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective 15 September 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on 15 October 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "We've confirmed your age assurance status. You can now close this dialog." + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Welcome back!" @@ -9240,7 +9965,7 @@ msgstr "What do you want to call your starter pack?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "What's up?" @@ -9256,11 +9981,11 @@ msgstr "Which languages are used in this post?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Which languages would you like to see in your algorithmic feeds?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Who can interact with this post?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Who can reply" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "Who can verify?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Whoops!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "Whoops! Trending videos failed to load." @@ -9322,12 +10047,12 @@ msgstr "Why should this user be reviewed?" msgid "Write a message" msgstr "Write a message" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Write post" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Write your reply" @@ -9358,11 +10083,11 @@ msgstr "Yes, deactivate" msgid "Yes, delete this starter pack" msgstr "Yes, delete this starter pack" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Yes, detach" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Yes, hide" @@ -9378,6 +10103,10 @@ msgstr "Yesterday" msgid "You" msgstr "You" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on 15 October." + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "You are a trusted verifier" @@ -9386,6 +10115,10 @@ msgstr "You are a trusted verifier" msgid "You are creating an account on" msgstr "You are creating an account on" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "You are in line." @@ -9403,7 +10136,7 @@ msgstr "You are no longer live" msgid "You are not allowed to go live" msgstr "You are not allowed to go live" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "You are not allowed to upload videos." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "You are verified" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "You are verified. You will lose your verification status if you change your display name. <0>Learn more." @@ -9441,10 +10173,18 @@ msgstr "You can also discover new Custom Feeds to follow." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "You can also temporarily deactivate your account instead, and reactivate it at any time." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "You can choose whether chat notifications have sound in the chat settings within the app" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "You can continue ongoing conversations regardless of which setting you choose." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "You can now sign in with your new password." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "You can update this later from your settings." @@ -9472,7 +10212,7 @@ msgstr "You do not have any followers." msgid "You don't follow any users who follow @{name}." msgstr "You don't follow any users who follow @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "You don't have any chat requests at the moment." @@ -9480,15 +10220,15 @@ msgstr "You don't have any chat requests at the moment." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "You don't have any pinned feeds." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "You don't have any saved feeds." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "You have blocked the author or you have been blocked by the author." @@ -9502,6 +10242,10 @@ msgstr "You have blocked this user" msgid "You have blocked this user. You cannot view their content." msgstr "You have blocked this user. You cannot view their content." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "You have completely disabled reply, quote and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "You have muted this account." msgid "You have muted this user" msgstr "You have muted this user" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "You have no conversations yet. Start one!" @@ -9547,13 +10291,13 @@ msgstr "You have not blocked any accounts yet. To block an account, go to their msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "You have reached the end" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:187 msgid "You have successfully verified your email address. You can close this dialog." -msgstr "You have successfully verified your email address. You can close this dialogue." +msgstr "You have successfully verified your email address. You can close this dialog." #: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." @@ -9572,6 +10316,10 @@ msgstr "You haven't muted any words or tags yet" msgid "You hid this reply." msgstr "You hid this reply." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "You may appeal non-self labels if you feel they were placed in error." @@ -9592,7 +10340,7 @@ msgstr "You may only add up to 3 feeds" msgid "You may only select up to 4 images" msgstr "You may only select up to 4 images" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "You must be 13 years of age or older to create an account." @@ -9600,6 +10348,14 @@ msgstr "You must be 13 years of age or older to create an account." msgid "You must be following at least seven other people to generate a starter pack." msgstr "You must be following at least seven other people to generate a starter pack." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "You must complete age assurance in order to access the settings below." + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "You must complete age assurance in order to access this screen." + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "You must grant access to your photo library to save a QR code" @@ -9608,6 +10364,11 @@ msgstr "You must grant access to your photo library to save a QR code" msgid "You must select at least one labeler for a report" msgstr "You must select at least one labeller for a report" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "You must sign in to view this post." + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "You need to verify your email address before you can enable email 2FA." @@ -9616,7 +10377,7 @@ msgstr "You need to verify your email address before you can enable email 2FA." msgid "You previously deactivated @{0}." msgstr "You previously deactivated @{0}." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "You probably want to restart the app now." @@ -9628,16 +10389,20 @@ msgstr "You reacted {0}" msgid "You reacted {0} to {1}" msgstr "You reacted {0} to {1}" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "You will be signed out of all your accounts." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "You will no longer receive notifications for {0}" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "You will no longer receive notifications for this thread" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "You will now receive notifications for this thread" @@ -9657,11 +10422,11 @@ msgstr "You: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "You: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "You'll follow the suggested users and feeds once you finish creating your account!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "You'll follow the suggested users once you finish creating your account!" @@ -9673,9 +10438,9 @@ msgstr "You'll follow these people and {0} others" msgid "You'll follow these people right away" msgstr "You'll follow these people right away" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "You'll receive an email at <0>{0} to verify it's you." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "You'll start receiving notifications for {0}!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "You've chosen to hide a word or tag within this post." msgid "You've found some people to follow" msgstr "You've found some people to follow" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "You've reached the end of the active content." + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "You've reached the end of your feed! Find some more accounts to follow." @@ -9711,19 +10480,23 @@ msgstr "You've reached the end of your feed! Find some more accounts to follow." msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "You've reached the maximum number of requests allowed. Please try again later." -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "You've reached the start of the active content." + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "You've reached your daily limit for video uploads (too many bytes)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "You've reached your daily limit for video uploads (too many videos)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "You've run out of videos to watch. Maybe it's a good time to take a break?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Your account" @@ -9735,7 +10508,7 @@ msgstr "Your account has been deleted" msgid "Your account has been suspended" msgstr "Your account has been suspended" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Your account is not yet old enough to upload videos. Please try again later." @@ -9751,11 +10524,11 @@ msgstr "Your account was found to be in violation of the <0>Bluesky Social Terms msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "Your appeal has been submitted. If your appeal succeeds, you will receive an email." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Your birthdate" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Your browser does not support the video format. Please try a different browser." @@ -9771,13 +10544,15 @@ msgstr "Your choice will be remembered for future links. You can change it at an msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "Your email" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Your email appears to be invalid." @@ -9786,15 +10561,11 @@ msgstr "Your email appears to be invalid." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Your email has not yet been verified. This is an important security step which we recommend." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "Your first like!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "Your followers" @@ -9806,19 +10577,15 @@ msgstr "Your following feed is empty! Follow more users to see what's happening. msgid "Your full handle will be <0>@{0}" msgstr "Your full handle will be <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "Your full username will be <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "Your interests" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "Your interests have been updated!" @@ -9835,15 +10602,15 @@ msgstr "Your muted words" msgid "Your password has been changed successfully!" msgstr "Your password has been changed successfully!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "Your password must be at least 8 characters long." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Your post has been published" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Your posts have been published" @@ -9851,15 +10618,19 @@ msgstr "Your posts have been published" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Your posts, likes and blocks are public. Mutes are private." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "Your preferred language" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Your profile, posts, feeds and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Your reply has been published" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "Your report will be sent to <0>{0}." @@ -9867,7 +10638,7 @@ msgstr "Your report will be sent to <0>{0}." msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Your report will be sent to the Bluesky Moderation Service" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "Your selected interests help us serve you content you care about." diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po index e668726899..9d96abb7a5 100644 --- a/src/locale/locales/en/messages.po +++ b/src/locale/locales/en/messages.po @@ -22,7 +22,7 @@ msgstr "" msgid "(contains embedded content)" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "" @@ -85,18 +85,18 @@ msgstr "" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:474 -#: src/view/com/post-thread/PostThreadItem.tsx:541 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 +#: src/view/com/post-thread/PostThreadItem.tsx:538 msgid "{0, plural, one {like} other {likes}}" msgstr "" @@ -104,13 +104,13 @@ msgstr "" msgid "{0, plural, one {post} other {posts}}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458 -#: src/view/com/post-thread/PostThreadItem.tsx:525 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:453 +#: src/view/com/post-thread/PostThreadItem.tsx:522 msgid "{0, plural, one {quote} other {quotes}}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:440 -#: src/view/com/post-thread/PostThreadItem.tsx:507 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:435 +#: src/view/com/post-thread/PostThreadItem.tsx:504 msgid "{0, plural, one {repost} other {reposts}}" msgstr "" @@ -133,6 +133,10 @@ msgstr "" msgid "{0} <0>in <1>text & tags" msgstr "" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "" @@ -141,6 +145,10 @@ msgstr "" msgid "{0} is not a valid URL" msgstr "" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "" @@ -162,8 +170,16 @@ msgstr "" msgid "{0} reacted {1} to {2}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "" @@ -195,12 +211,20 @@ msgstr "" msgid "{0}s" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" +#: src/screens/Profile/Header/EditProfileDialog.tsx:386 +msgid "{DESCRIPTION_MAX_GRAPHEMES, plural, other {Description is too long. The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:340 +msgid "{DISPLAY_NAME_MAX_GRAPHEMES, plural, other {Display name is too long. The maximum number of characters is #.}}" +msgstr "" + #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "" @@ -212,160 +236,159 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:336 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:362 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:255 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:467 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:440 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:279 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:491 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:386 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:415 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:348 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:374 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:479 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:452 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:291 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:503 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:398 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:427 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:329 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:355 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:248 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:460 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:272 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:484 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:379 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:408 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:360 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:253 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:465 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:438 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:277 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:489 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:384 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:413 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "" @@ -408,7 +431,7 @@ msgid "{rank}." msgstr "" #. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:203 msgid "{type}h ago" msgstr "" @@ -430,12 +453,12 @@ msgstr "" msgid "+{computedTotal}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "" @@ -448,15 +471,15 @@ msgstr "" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "" @@ -464,11 +487,15 @@ msgstr "" msgid "<0>{date} at {time}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "" -#: src/screens/Profile/Header/Handle.tsx:53 +#: src/screens/Profile/Header/Handle.tsx:57 msgid "⚠Invalid Handle" msgstr "" @@ -497,10 +524,14 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/Navigation.tsx:490 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:234 -#: src/screens/Settings/Settings.tsx:237 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "" @@ -518,25 +549,25 @@ msgstr "" msgid "Accept Request" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:210 -#: src/screens/Settings/Settings.tsx:213 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:365 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:164 -#: src/screens/Settings/Settings.tsx:167 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -548,7 +579,7 @@ msgctxt "toast" msgid "Account followed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -563,11 +594,11 @@ msgstr "" msgid "Account Muted by List" msgstr "" -#: src/screens/Settings/Settings.tsx:514 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:550 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "" @@ -582,7 +613,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -592,17 +623,27 @@ msgstr "" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:61 msgid "Add {displayName} to starter pack" msgstr "" @@ -628,8 +669,8 @@ msgstr "" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -639,14 +680,14 @@ msgstr "" msgid "Add alt text (optional)" msgstr "" -#: src/screens/Settings/Settings.tsx:454 -#: src/screens/Settings/Settings.tsx:457 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:773 +#: src/view/com/composer/Composer.tsx:780 msgid "Add another post" msgstr "" @@ -664,8 +705,8 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "" @@ -677,7 +718,7 @@ msgstr "" msgid "Add muted words and tags" msgstr "" -#: src/view/com/composer/Composer.tsx:1335 +#: src/view/com/composer/Composer.tsx:1344 msgid "Add new post" msgstr "" @@ -698,7 +739,7 @@ msgstr "" msgid "Add recommended feeds" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "" @@ -719,10 +760,6 @@ msgstr "" msgid "Add to lists" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "" @@ -732,11 +769,11 @@ msgstr "" msgid "Added to list" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "" @@ -744,18 +781,18 @@ msgstr "" msgid "Adult" msgstr "" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "" -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "" @@ -764,15 +801,32 @@ msgstr "" msgid "Adult Content labels" msgstr "" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "" +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "" @@ -786,7 +840,7 @@ msgstr "" msgid "All languages" msgstr "" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "" @@ -795,16 +849,21 @@ msgstr "" msgid "Allow access to your direct messages" msgstr "" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "" @@ -823,11 +882,11 @@ msgstr "" #: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -841,7 +900,7 @@ msgstr "" msgid "Alt Text" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "" @@ -854,7 +913,7 @@ msgstr "" msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "" -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "" @@ -862,11 +921,11 @@ msgstr "" msgid "An error occurred" msgstr "" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:399 msgid "An error occurred while compressing the video." msgstr "" -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "" @@ -874,11 +933,11 @@ msgstr "" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:199 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:227 msgid "An error occurred while loading the video. Please try again." msgstr "" @@ -895,7 +954,7 @@ msgstr "" msgid "An error occurred while trying to follow all" msgstr "" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:440 msgid "An error occurred while uploading the video." msgstr "" @@ -919,8 +978,8 @@ msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -939,12 +998,12 @@ msgstr "" msgid "an unknown labeler" msgstr "" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "" #: src/screens/Onboarding/index.tsx:29 -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:97 msgid "Animals" msgstr "" @@ -952,6 +1011,10 @@ msgstr "" msgid "Animated GIF" msgstr "" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "" @@ -965,7 +1028,13 @@ msgstr "" msgid "Anybody can interact" msgstr "" -#: src/Navigation.tsx:498 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -997,12 +1066,12 @@ msgstr "" msgid "App password names must be at least 4 characters long" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1038,10 +1107,10 @@ msgstr "" msgid "Appeal this decision" msgstr "" -#: src/Navigation.tsx:373 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:202 -#: src/screens/Settings/Settings.tsx:205 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "" @@ -1050,15 +1119,20 @@ msgstr "" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:640 -#: src/view/com/post-thread/PostThreadItem.tsx:955 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/view/com/post-thread/PostThreadItem.tsx:954 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:648 -#: src/view/com/post-thread/PostThreadItem.tsx:924 -#: src/view/com/post-thread/PostThreadItem.tsx:963 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:608 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:647 +#: src/view/com/post-thread/PostThreadItem.tsx:923 +#: src/view/com/post-thread/PostThreadItem.tsx:962 msgid "Archived post" msgstr "" @@ -1066,7 +1140,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "" @@ -1074,7 +1148,7 @@ msgstr "" msgid "Are you sure you want to delete this starter pack?" msgstr "" -#: src/screens/Profile/Header/EditProfileDialog.tsx:86 +#: src/screens/Profile/Header/EditProfileDialog.tsx:87 msgid "Are you sure you want to discard your changes?" msgstr "" @@ -1086,19 +1160,15 @@ msgstr "" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "" -#: src/view/com/composer/Composer.tsx:724 +#: src/view/com/composer/Composer.tsx:729 msgid "Are you sure you'd like to discard this draft?" msgstr "" -#: src/view/com/composer/Composer.tsx:905 +#: src/view/com/composer/Composer.tsx:914 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -1106,12 +1176,12 @@ msgstr "" msgid "Are you sure?" msgstr "" -#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74 +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87 msgid "Are you writing in <0>{suggestedLanguageName}?" msgstr "" #: src/screens/Onboarding/index.tsx:23 -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:98 msgid "Art" msgstr "" @@ -1119,29 +1189,26 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:495 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:497 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "" - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1157,11 +1224,11 @@ msgstr "" #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "" @@ -1183,28 +1250,44 @@ msgstr "" msgid "Before you can accept this chat request, you must first verify your email." msgstr "" +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:757 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:642 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:644 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1212,7 +1295,7 @@ msgstr "" msgid "Block account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:752 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "" @@ -1254,16 +1337,16 @@ msgstr "" msgid "Blocked" msgstr "" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:754 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" @@ -1272,11 +1355,11 @@ msgstr "" msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:488 +#: src/view/com/post-thread/PostThread.tsx:489 msgid "Blocked post." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "" @@ -1297,12 +1380,12 @@ msgstr "" msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:665 -#: src/view/com/post-thread/PostThreadItem.tsx:980 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:664 +#: src/view/com/post-thread/PostThreadItem.tsx:979 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1336,6 +1419,14 @@ msgstr "" msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "" @@ -1353,27 +1444,24 @@ msgid "Blur images and filter from feeds" msgstr "" #: src/screens/Onboarding/index.tsx:30 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:99 msgid "Books" msgstr "" -#: src/components/FeedInterstitials.tsx:379 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:517 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:359 -#: src/components/FeedInterstitials.tsx:362 -#: src/components/FeedInterstitials.tsx:498 -#: src/components/FeedInterstitials.tsx:501 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:387 -#: src/components/FeedInterstitials.tsx:526 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -1407,9 +1495,9 @@ msgid "Business" msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "" @@ -1417,15 +1505,23 @@ msgstr "" msgid "By <0>{0}" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" @@ -1437,6 +1533,9 @@ msgstr "" msgid "Camera" msgstr "" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 @@ -1445,30 +1544,28 @@ msgstr "" #: src/components/live/GoLiveDialog.tsx:253 #: src/components/Menu/index.tsx:350 #: src/components/PostControls/RepostButton.tsx:209 -#: src/components/Prompt.tsx:143 -#: src/components/Prompt.tsx:145 +#: src/components/Prompt.tsx:144 +#: src/components/Prompt.tsx:146 #: src/screens/Deactivated.tsx:158 -#: src/screens/Profile/Header/EditProfileDialog.tsx:225 -#: src/screens/Profile/Header/EditProfileDialog.tsx:233 +#: src/screens/Profile/Header/EditProfileDialog.tsx:226 +#: src/screens/Profile/Header/EditProfileDialog.tsx:234 #: src/screens/Search/Shell.tsx:349 #: src/screens/Settings/AppIconSettings/index.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:279 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:960 -#: src/view/com/composer/Composer.tsx:971 +#: src/view/com/composer/Composer.tsx:969 +#: src/view/com/composer/Composer.tsx:980 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "" @@ -1500,14 +1597,10 @@ msgstr "" msgid "Cancel search" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:91 +#: src/state/shell/composer/index.tsx:94 msgid "Cannot interact with a blocked user" msgstr "" @@ -1542,7 +1635,7 @@ msgstr "" msgid "Change Handle" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "" @@ -1550,7 +1643,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85 +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:98 msgid "Change post language to {suggestedLanguageName}" msgstr "" @@ -1567,9 +1660,14 @@ msgstr "" msgid "Changes hosting provider" msgstr "" -#: src/Navigation.tsx:515 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 #: src/view/shell/bottom-bar/BottomBar.tsx:221 -#: src/view/shell/desktop/LeftNav.tsx:553 +#: src/view/shell/desktop/LeftNav.tsx:554 #: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "" @@ -1580,28 +1678,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/Navigation.tsx:525 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:520 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "" @@ -1610,8 +1718,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "" @@ -1632,7 +1741,7 @@ msgstr "" msgid "Choose domain verification method" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "" @@ -1640,7 +1749,7 @@ msgstr "" msgid "Choose for me" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "" @@ -1656,23 +1765,23 @@ msgstr "" msgid "Choose your account provider" msgstr "" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "" -#: src/screens/Settings/Settings.tsx:432 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "" -#: src/screens/Settings/Settings.tsx:434 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "" @@ -1685,23 +1794,27 @@ msgstr "" msgid "Clear search query" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "" @@ -1721,7 +1834,13 @@ msgstr "" msgid "Clip 🐴 clop 🐴" msgstr "" -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 @@ -1734,10 +1853,14 @@ msgstr "" #: src/components/NewskieDialog.tsx:153 #: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 msgid "Close" @@ -1756,13 +1879,15 @@ msgstr "" msgid "Close bottom drawer" msgstr "" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "" @@ -1771,7 +1896,7 @@ msgstr "" msgid "Close emoji picker" msgstr "" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "" @@ -1797,7 +1922,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:968 +#: src/view/com/composer/Composer.tsx:977 msgid "Closes post composer and discards post draft" msgstr "" @@ -1810,16 +1935,16 @@ msgstr "" msgid "Closes viewer for header image" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:749 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "" @@ -1828,16 +1953,17 @@ msgid "Color theme" msgstr "" #: src/screens/Onboarding/index.tsx:38 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:100 msgid "Comedy" msgstr "" #: src/screens/Onboarding/index.tsx:24 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:101 msgid "Comics" msgstr "" -#: src/Navigation.tsx:323 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "" @@ -1846,15 +1972,15 @@ msgstr "" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "" -#: src/view/com/composer/Composer.tsx:869 +#: src/view/com/composer/Composer.tsx:878 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -1862,20 +1988,20 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:1729 +#: src/view/com/composer/Composer.tsx:1738 msgid "Compressing video..." msgstr "" -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "" -#: src/components/Prompt.tsx:186 -#: src/components/Prompt.tsx:189 +#: src/components/Prompt.tsx:187 +#: src/components/Prompt.tsx:190 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:188 msgid "Confirm" @@ -1889,11 +2015,11 @@ msgstr "" msgid "Confirm delete account" msgstr "" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "" @@ -1910,22 +2036,35 @@ msgstr "" msgid "Connecting..." msgstr "" -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:194 -#: src/screens/Settings/Settings.tsx:197 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "" @@ -1933,7 +2072,8 @@ msgstr "" msgid "Content Blocked" msgstr "" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "" @@ -1966,8 +2106,10 @@ msgstr "" msgid "Context menu backdrop, click to close the menu." msgstr "" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 -#: src/screens/Onboarding/StepProfile/index.tsx:276 +#: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Continue" msgstr "" @@ -1985,11 +2127,15 @@ msgid "Continue thread..." msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:241 -#: src/screens/Onboarding/StepProfile/index.tsx:273 +#: src/screens/Onboarding/StepProfile/index.tsx:274 #: src/screens/Signup/BackNextButtons.tsx:60 msgid "Continue to next step" msgstr "" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2012,10 +2158,10 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:234 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:70 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2044,8 +2190,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "" @@ -2077,10 +2223,10 @@ msgstr "" msgid "Copy link to list" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:128 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:85 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "" @@ -2093,18 +2239,18 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:452 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "" @@ -2116,11 +2262,25 @@ msgstr "" msgid "Copy TXT record value" msgstr "" -#: src/Navigation.tsx:328 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2142,7 +2302,11 @@ msgstr "" msgid "Could not process your video" msgstr "" -#: src/state/queries/notifications/settings.ts:47 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -2156,7 +2320,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:550 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "" @@ -2175,12 +2339,13 @@ msgstr "" msgid "Create account" msgstr "" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "" @@ -2189,7 +2354,7 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:290 +#: src/screens/Onboarding/StepProfile/index.tsx:291 msgid "Create an avatar instead" msgstr "" @@ -2202,7 +2367,7 @@ msgstr "" msgid "Create new account" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "" @@ -2216,7 +2381,7 @@ msgid "Creator has been blocked" msgstr "" #: src/screens/Onboarding/index.tsx:26 -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:102 msgid "Culture" msgstr "" @@ -2229,7 +2394,7 @@ msgstr "" msgid "Customization options" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "" @@ -2239,12 +2404,12 @@ msgstr "" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "" @@ -2253,21 +2418,21 @@ msgstr "" msgid "Dark mode" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "" -#: src/screens/Settings/Settings.tsx:406 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "" @@ -2275,7 +2440,7 @@ msgstr "" msgid "Debug panel" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "" @@ -2283,8 +2448,8 @@ msgstr "" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2294,8 +2459,8 @@ msgstr "" msgid "Delete" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "" @@ -2316,7 +2481,7 @@ msgstr "" msgid "Delete chat" msgstr "" -#: src/screens/Settings/Settings.tsx:413 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "" @@ -2331,7 +2496,7 @@ msgstr "" msgid "Delete Conversation" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "" @@ -2339,11 +2504,11 @@ msgstr "" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "" @@ -2351,9 +2516,9 @@ msgstr "" msgid "Delete my account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:682 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 -#: src/view/com/composer/Composer.tsx:879 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:888 msgid "Delete post" msgstr "" @@ -2370,7 +2535,7 @@ msgstr "" msgid "Delete this list?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:696 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "" @@ -2383,35 +2548,34 @@ msgstr "" msgid "Deleted Account" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:474 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:475 msgid "Deleted post." msgstr "" -#: src/screens/Profile/Header/EditProfileDialog.tsx:369 +#: src/screens/Profile/Header/EditProfileDialog.tsx:366 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 msgid "Description" msgstr "" -#: src/screens/Profile/Header/EditProfileDialog.tsx:389 -msgid "Description is too long" -msgstr "" - -#: src/screens/Profile/Header/EditProfileDialog.tsx:390 -msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" -msgstr "" - #: src/view/com/composer/GifAltText.tsx:150 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:586 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "" @@ -2425,16 +2589,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "" -#: src/screens/Settings/Settings.tsx:261 -#: src/screens/Settings/Settings.tsx:264 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "" @@ -2451,8 +2615,8 @@ msgstr "" msgid "Disable Email 2FA" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "" @@ -2463,27 +2627,27 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "" -#: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:726 -#: src/view/com/composer/Composer.tsx:912 +#: src/screens/Profile/Header/EditProfileDialog.tsx:89 +#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:921 msgid "Discard" msgstr "" -#: src/screens/Profile/Header/EditProfileDialog.tsx:85 +#: src/screens/Profile/Header/EditProfileDialog.tsx:86 msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:728 msgid "Discard draft?" msgstr "" -#: src/view/com/composer/Composer.tsx:904 +#: src/view/com/composer/Composer.tsx:913 msgid "Discard post?" msgstr "" @@ -2501,7 +2665,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "" @@ -2509,7 +2673,7 @@ msgstr "" msgid "Dismiss" msgstr "" -#: src/view/com/composer/Composer.tsx:1653 +#: src/view/com/composer/Composer.tsx:1662 msgid "Dismiss error" msgstr "" @@ -2521,29 +2685,21 @@ msgstr "" msgid "Dismiss interests" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:92 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "" -#: src/screens/Profile/Header/EditProfileDialog.tsx:320 -#: src/screens/Profile/Header/EditProfileDialog.tsx:326 -#: src/screens/Profile/Header/EditProfileDialog.tsx:376 +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +#: src/screens/Profile/Header/EditProfileDialog.tsx:327 +#: src/screens/Profile/Header/EditProfileDialog.tsx:373 msgid "Display name" msgstr "" -#: src/screens/Profile/Header/EditProfileDialog.tsx:339 -msgid "Display name is too long" -msgstr "" - -#: src/screens/Profile/Header/EditProfileDialog.tsx:340 -msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" -msgstr "" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:392 #: src/screens/Settings/components/ChangeHandleDialog.tsx:394 msgid "DNS Panel" @@ -2557,15 +2713,11 @@ msgstr "" msgid "Does not include nudity." msgstr "" -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -2573,15 +2725,24 @@ msgstr "" msgid "Don't see an email? <0>Click here to resend." msgstr "" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 #: src/components/forms/DateField/index.tsx:103 #: src/components/forms/DateField/index.tsx:109 -#: src/components/Select/index.tsx:183 -#: src/components/Select/index.tsx:190 -#: src/screens/Onboarding/StepProfile/index.tsx:328 -#: src/screens/Onboarding/StepProfile/index.tsx:331 +#: src/components/Select/index.tsx:185 +#: src/components/Select/index.tsx:192 +#: src/screens/Onboarding/StepProfile/index.tsx:329 +#: src/screens/Onboarding/StepProfile/index.tsx:332 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 #: src/view/com/auth/server-input/index.tsx:232 @@ -2614,7 +2775,7 @@ msgstr "" msgid "Double tap to close the dialog" msgstr "" -#: src/screens/VideoFeed/index.tsx:1080 +#: src/screens/VideoFeed/index.tsx:1081 msgid "Double tap to like" msgstr "" @@ -2627,7 +2788,7 @@ msgstr "" msgid "Download CAR file" msgstr "" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:367 msgid "Drop to add images" msgstr "" @@ -2639,7 +2800,7 @@ msgstr "" msgid "e.g. alice" msgstr "" -#: src/screens/Profile/Header/EditProfileDialog.tsx:327 +#: src/screens/Profile/Header/EditProfileDialog.tsx:328 msgid "e.g. Alice Lastname" msgstr "" @@ -2671,36 +2832,37 @@ msgstr "" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "" -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "" -#: src/view/com/lists/ListMembers.tsx:180 -#: src/view/com/lists/ListMembers.tsx:186 +#: src/view/com/lists/ListMembers.tsx:187 +#: src/view/com/lists/ListMembers.tsx:193 msgctxt "action" msgid "Edit" msgstr "" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" msgstr "" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:676 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "" @@ -2722,29 +2884,33 @@ msgstr "" msgid "Edit Moderation List" msgstr "" -#: src/Navigation.tsx:338 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "" -#: src/screens/Profile/Header/EditProfileDialog.tsx:275 -#: src/screens/Profile/Header/EditProfileDialog.tsx:281 +#: src/screens/Profile/Header/EditProfileDialog.tsx:276 +#: src/screens/Profile/Header/EditProfileDialog.tsx:282 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "" @@ -2756,16 +2922,16 @@ msgstr "" msgid "Edit User List" msgstr "" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:555 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "" #: src/screens/Onboarding/index.tsx:31 -#: src/screens/Onboarding/state.ts:101 +#: src/screens/Onboarding/state.ts:104 msgid "Education" msgstr "" @@ -2773,8 +2939,8 @@ msgstr "" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "" -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "" @@ -2783,7 +2949,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "" @@ -2813,8 +2979,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:117 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:122 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "" @@ -2836,7 +3002,7 @@ msgstr "" msgid "Enable {0} only" msgstr "" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "" @@ -2849,10 +3015,14 @@ msgstr "" msgid "Enable external media" msgstr "" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" + #: src/screens/Settings/NotificationSettings/index.tsx:102 #: src/screens/Settings/NotificationSettings/index.tsx:106 msgid "Enable push notifications" @@ -2871,17 +3041,14 @@ msgstr "" msgid "Enable trending topics" msgstr "" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "" - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "" @@ -2903,7 +3070,7 @@ msgid "Enter a word or tag" msgstr "" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "" @@ -2932,7 +3099,7 @@ msgid "Enter your birth date" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "" @@ -2944,15 +3111,15 @@ msgstr "" msgid "Enter your username and password" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:236 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:1738 +#: src/view/com/composer/Composer.tsx:1747 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "" @@ -2961,11 +3128,19 @@ msgstr "" msgid "Error loading post" msgstr "" +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "" @@ -2973,30 +3148,30 @@ msgstr "" msgid "Error:" msgstr "" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:153 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:167 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:236 +#: src/screens/Settings/NotificationSettings/index.tsx:235 #: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 msgid "Everything else" msgstr "" @@ -3039,7 +3214,7 @@ msgstr "" msgid "Expand alt text" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:539 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "" @@ -3051,15 +3226,15 @@ msgstr "" msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:965 +#: src/screens/VideoFeed/index.tsx:966 msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 #: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "" @@ -3090,15 +3265,15 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:712 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 +#: src/view/shell/desktop/LeftNav.tsx:636 #: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "" @@ -3117,12 +3292,12 @@ msgid "External Media" msgstr "" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 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:357 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "" @@ -3132,7 +3307,7 @@ msgid "Failed to accept chat" msgstr "" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "" @@ -3148,8 +3323,8 @@ msgstr "" msgid "Failed to create conversation" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "" @@ -3163,11 +3338,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:203 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "" @@ -3175,8 +3350,8 @@ msgstr "" msgid "Failed to delete starter pack" msgstr "" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "" @@ -3187,10 +3362,11 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 #: src/screens/Settings/NotificationSettings/index.tsx:115 #: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 #: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 @@ -3208,6 +3384,10 @@ msgstr "" msgid "Failed to load past messages" msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3219,8 +3399,8 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "" @@ -3229,7 +3409,7 @@ msgid "Failed to pin post" msgstr "" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "" @@ -3245,7 +3425,7 @@ msgstr "" msgid "Failed to save settings. Please try again." msgstr "" -#: src/screens/Settings/InterestsSettings.tsx:136 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "" @@ -3264,7 +3444,7 @@ msgstr "" msgid "Failed to submit appeal, please try again." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:223 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "" @@ -3281,7 +3461,11 @@ msgstr "" msgid "Failed to update feeds" msgstr "" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "" @@ -3300,52 +3484,64 @@ msgstr "" msgid "Failed to verify handle. Please try again." msgstr "" -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:57 msgid "Feed toggle" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 #: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:289 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "" -#: src/Navigation.tsx:535 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 #: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "" #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "" @@ -3374,6 +3570,14 @@ msgstr "" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "" @@ -3394,7 +3598,7 @@ msgstr "" msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "" @@ -3402,17 +3606,17 @@ msgstr "" msgid "Fitness" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -3422,11 +3626,11 @@ msgid "Flexible" msgstr "" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 -#: src/screens/VideoFeed/index.tsx:850 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 +#: src/screens/VideoFeed/index.tsx:851 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" msgstr "" @@ -3436,17 +3640,17 @@ msgctxt "action" msgid "Follow" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "" -#: src/screens/VideoFeed/index.tsx:827 +#: src/screens/VideoFeed/index.tsx:828 msgid "Follow {handle}" msgstr "" #: src/components/ProgressGuide/List.tsx:52 -#: src/state/shell/progress-guide.tsx:229 +#: src/state/shell/progress-guide.tsx:231 msgid "Follow 10 accounts" msgstr "" @@ -3464,7 +3668,7 @@ msgstr "" msgid "Follow all" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "" @@ -3474,23 +3678,23 @@ msgctxt "action" msgid "Follow Back" msgstr "" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" -#: src/Navigation.tsx:227 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "" @@ -3500,23 +3704,27 @@ msgid "Followers you know" msgstr "" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 -#: src/screens/VideoFeed/index.tsx:848 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 +#: src/screens/VideoFeed/index.tsx:849 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "" -#: src/screens/VideoFeed/index.tsx:826 +#: src/screens/VideoFeed/index.tsx:827 msgid "Following {handle}" msgstr "" @@ -3525,8 +3733,8 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:344 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "" @@ -3538,16 +3746,16 @@ msgstr "" msgid "Follows You" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "" #: src/screens/Onboarding/index.tsx:40 -#: src/screens/Onboarding/state.ts:102 +#: src/screens/Onboarding/state.ts:105 msgid "Food" msgstr "" @@ -3559,7 +3767,7 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "" @@ -3589,11 +3797,15 @@ msgstr "" msgid "Frequently Posts Unwanted Content" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "" -#: src/view/com/posts/PostFeedItem.tsx:330 +#: src/view/com/posts/PostFeedItem.tsx:327 msgctxt "from-feed" msgid "From <0/>" msgstr "" @@ -3642,6 +3854,30 @@ msgstr "" msgid "Get notifications when people repost your posts." msgstr "" +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Get started" @@ -3655,7 +3891,7 @@ msgstr "" msgid "GIF" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:232 +#: src/screens/Onboarding/StepProfile/index.tsx:233 msgid "Give your profile a face" msgstr "" @@ -3664,14 +3900,16 @@ msgstr "" msgid "Glaring violations of law or terms of service" msgstr "" -#: src/components/Layout/Header/index.tsx:127 +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 +#: src/components/Layout/Header/index.tsx:128 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1141 -#: src/screens/VideoFeed/index.tsx:1145 +#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1146 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3722,10 +3960,16 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:205 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "" @@ -3750,13 +3994,13 @@ msgstr "" msgid "Graphic Media" msgstr "" -#: src/state/shell/progress-guide.tsx:218 -#: src/state/shell/progress-guide.tsx:228 +#: src/state/shell/progress-guide.tsx:220 +#: src/state/shell/progress-guide.tsx:230 msgid "Half way there!" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "" @@ -3773,7 +4017,7 @@ msgstr "" msgid "Handle too long. Please try a shorter one." msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "" @@ -3782,7 +4026,7 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "" @@ -3791,23 +4035,23 @@ msgid "Hashtag {tag}" msgstr "" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "" -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "" -#: src/screens/Settings/Settings.tsx:226 -#: src/screens/Settings/Settings.tsx:230 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 #: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:235 +#: src/screens/Onboarding/StepProfile/index.tsx:236 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -3815,8 +4059,13 @@ msgstr "" msgid "Here is your app password!" msgstr "" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "" @@ -3824,16 +4073,16 @@ msgstr "" msgid "Hidden by your moderation settings." msgstr "" -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:134 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:712 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3842,7 +4091,7 @@ msgstr "" msgid "Hide" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:756 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "" @@ -3851,18 +4100,18 @@ msgstr "" msgid "Hide customization options" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:543 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:549 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:560 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:542 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "" @@ -3870,12 +4119,12 @@ msgstr "" msgid "Hide this card" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:707 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:707 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "" @@ -3889,11 +4138,11 @@ msgstr "" msgid "Hide trending topics?" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:747 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "" @@ -3902,32 +4151,32 @@ msgstr "" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:151 +#: src/components/moderation/ContentHider.tsx:154 #: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "" -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "" @@ -3935,14 +4184,14 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:414 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:707 -#: src/Navigation.tsx:727 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 #: src/view/shell/bottom-bar/BottomBar.tsx:178 -#: src/view/shell/desktop/LeftNav.tsx:617 +#: src/view/shell/desktop/LeftNav.tsx:618 #: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "" @@ -3956,14 +4205,14 @@ msgstr "" msgid "Hosting provider" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 msgid "Hot" msgstr "" #: src/screens/Settings/ThreadPreferences.tsx:201 #: src/screens/Settings/ThreadPreferences.tsx:204 -#: src/view/com/post-thread/PostThread.tsx:679 -#: src/view/com/post-thread/PostThread.tsx:684 +#: src/view/com/post-thread/PostThread.tsx:680 +#: src/view/com/post-thread/PostThread.tsx:685 msgid "Hot replies first" msgstr "" @@ -3991,7 +4240,7 @@ msgstr "" msgid "If alt text is long, toggles alt text expanded state" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "" @@ -4003,11 +4252,11 @@ msgstr "" msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:698 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "" @@ -4019,6 +4268,10 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "" @@ -4063,31 +4316,31 @@ msgstr "" msgid "Impersonation, misinformation, or false claims" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 +#: src/screens/Settings/NotificationSettings/index.tsx:267 msgid "In-app, Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 +#: src/screens/Settings/NotificationSettings/index.tsx:275 msgid "In-app, People you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 +#: src/screens/Settings/NotificationSettings/index.tsx:282 msgid "In-app, Push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 +#: src/screens/Settings/NotificationSettings/index.tsx:265 msgid "In-app, Push, Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 +#: src/screens/Settings/NotificationSettings/index.tsx:273 msgid "In-app, Push, People you follow" msgstr "" @@ -4097,7 +4350,7 @@ msgid "Inappropriate messages or explicit links" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "" @@ -4129,10 +4382,14 @@ msgstr "" msgid "Interaction limited" msgstr "" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4399,7 @@ msgstr "" msgid "Invalid handle. Please try a different one." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:351 +#: src/view/com/post-thread/PostThreadItem.tsx:348 msgid "Invalid or unsupported post record" msgstr "" @@ -4158,11 +4415,11 @@ msgstr "" msgid "Invite a Friend" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "" -#: src/screens/Signup/state.ts:339 +#: src/screens/Signup/state.ts:340 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" @@ -4186,15 +4443,15 @@ msgstr "" msgid "Invites, but personal" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "" -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1681 msgid "Job ID: {0}" msgstr "" @@ -4216,15 +4473,31 @@ msgid "Join the conversation" msgstr "" #: src/screens/Onboarding/index.tsx:21 -#: src/screens/Onboarding/state.ts:104 +#: src/screens/Onboarding/state.ts:107 msgid "Journalism" msgstr "" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "" @@ -4237,7 +4510,7 @@ msgstr "" msgid "Labels added" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -4253,22 +4526,30 @@ msgstr "" msgid "Language selection" msgstr "" -#: src/Navigation.tsx:200 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:218 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "" @@ -4280,7 +4561,7 @@ msgstr "" #: src/components/verification/VerificationsDialog.tsx:165 #: src/components/verification/VerifierDialog.tsx:132 #: src/screens/Moderation/VerificationSettings.tsx:47 -#: src/screens/Profile/Header/EditProfileDialog.tsx:359 +#: src/screens/Profile/Header/EditProfileDialog.tsx:356 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 msgid "Learn more" msgstr "" @@ -4289,6 +4570,10 @@ msgstr "" msgid "Learn More" msgstr "" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "" @@ -4297,14 +4582,22 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + #: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" @@ -4315,12 +4608,16 @@ msgstr "" msgid "Learn more about verification on Bluesky" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "" -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "" @@ -4343,10 +4640,11 @@ msgid "Leave conversation" msgstr "" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." +msgid "Leave them all unselected to see any language." msgstr "" -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "" @@ -4369,7 +4667,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "" @@ -4383,7 +4681,7 @@ msgid "Like" msgstr "" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -4391,12 +4689,12 @@ msgstr "" msgid "Like 10 posts" msgstr "" -#: src/state/shell/progress-guide.tsx:214 -#: src/state/shell/progress-guide.tsx:219 +#: src/state/shell/progress-guide.tsx:216 +#: src/state/shell/progress-guide.tsx:221 msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/Navigation.tsx:426 +#: src/Navigation.tsx:451 msgid "Like notifications" msgstr "" @@ -4408,8 +4706,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:278 -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "" @@ -4420,7 +4718,7 @@ msgid "Liked By" msgstr "" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" @@ -4431,34 +4729,36 @@ msgstr "" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 #: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:208 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 #: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:450 +#: src/Navigation.tsx:475 msgid "Likes of your reposts notifications" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:462 #: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "" #: src/screens/PostThread/components/HeaderDropdown.tsx:47 #: src/screens/PostThread/components/HeaderDropdown.tsx:52 -#: src/view/com/post-thread/PostThread.tsx:653 -#: src/view/com/post-thread/PostThread.tsx:658 +#: src/view/com/post-thread/PostThread.tsx:654 +#: src/view/com/post-thread/PostThread.tsx:659 msgid "Linear" msgstr "" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:250 msgid "List" msgstr "" @@ -4471,8 +4771,8 @@ msgctxt "toast" msgid "List blocked" msgstr "" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "" @@ -4484,6 +4784,10 @@ msgstr "" msgid "List by you" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4516,11 +4820,11 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 +#: src/view/shell/desktop/LeftNav.tsx:692 #: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "" @@ -4554,7 +4858,7 @@ msgstr "" msgid "Load more suggested feeds" msgstr "" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "" @@ -4569,11 +4873,11 @@ msgstr "" msgid "Loading..." msgstr "" -#: src/Navigation.tsx:303 +#: src/Navigation.tsx:320 msgid "Log" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "" @@ -4614,7 +4918,7 @@ msgstr "" msgid "Make one for me" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "" @@ -4623,7 +4927,7 @@ msgstr "" msgid "Manage saved feeds" msgstr "" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "" @@ -4631,9 +4935,9 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "" @@ -4642,8 +4946,8 @@ msgstr "" msgid "Mark as read" msgstr "" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "" @@ -4660,21 +4964,22 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" -#: src/Navigation.tsx:410 +#: src/Navigation.tsx:435 msgid "Mention notifications" msgstr "" -#: src/components/WhoCanReply.tsx:263 +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 #: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 -#: src/view/screens/Notifications.tsx:99 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "" @@ -4682,11 +4987,11 @@ msgstr "" msgid "Menu" msgstr "" -#: src/components/dms/MessageProfileButton.tsx:96 +#: src/components/dms/MessageProfileButton.tsx:97 msgid "Message {0}" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "" @@ -4695,11 +5000,11 @@ msgstr "" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "" @@ -4712,20 +5017,20 @@ msgstr "" msgid "Message is too long" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "" -#: src/Navigation.tsx:722 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" -#: src/Navigation.tsx:466 +#: src/Navigation.tsx:499 msgid "Miscellaneous notifications" msgstr "" @@ -4739,10 +5044,10 @@ msgstr "" msgid "Misleading Post" msgstr "" -#: src/Navigation.tsx:159 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:178 -#: src/screens/Settings/Settings.tsx:181 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "" @@ -4750,7 +5055,7 @@ msgstr "" msgid "Moderation details" msgstr "" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "" @@ -4774,24 +5079,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "" @@ -4800,7 +5105,7 @@ msgstr "" msgid "Moderator has chosen to set a general warning on the content." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:731 +#: src/view/com/post-thread/PostThreadItem.tsx:728 msgid "More" msgstr "" @@ -4820,20 +5125,20 @@ msgid "Most-liked first" msgstr "" #: src/screens/Settings/ThreadPreferences.tsx:225 -#: src/view/com/post-thread/PostThread.tsx:709 -#: src/view/com/post-thread/PostThread.tsx:714 +#: src/view/com/post-thread/PostThread.tsx:710 +#: src/view/com/post-thread/PostThread.tsx:715 msgid "Most-liked replies first" msgstr "" -#: src/screens/Onboarding/state.ts:105 +#: src/screens/Onboarding/state.ts:108 msgid "Movies" msgstr "" -#: src/screens/Onboarding/state.ts:106 +#: src/screens/Onboarding/state.ts:109 msgid "Music" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" @@ -4844,8 +5149,8 @@ msgstr "" msgid "Mute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:625 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:631 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4896,21 +5201,21 @@ msgstr "" msgid "Mute this word until you unmute it" msgstr "" +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:513 msgid "Mute thread" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:523 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:525 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:169 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "" @@ -4923,7 +5228,7 @@ msgstr "" msgid "Muted by \"{0}\"" msgstr "" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "" @@ -4936,7 +5241,7 @@ msgstr "" msgid "My Birthday" msgstr "" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "" @@ -4960,12 +5265,12 @@ msgid "Name or Description Violates Community Standards" msgstr "" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:107 +#: src/screens/Onboarding/state.ts:110 msgid "Nature" msgstr "" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "" @@ -4983,7 +5288,11 @@ msgstr "" msgid "Navigates to your profile" msgstr "" +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "" @@ -4996,7 +5305,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "New" msgstr "" @@ -5006,9 +5315,17 @@ msgctxt "action" msgid "New" msgstr "" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "" @@ -5016,15 +5333,17 @@ msgstr "" msgid "New email address" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "" -#: src/Navigation.tsx:442 +#: src/Navigation.tsx:467 msgid "New follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 #: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 msgid "New followers" msgstr "" @@ -5059,7 +5378,7 @@ msgstr "" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5071,11 +5390,19 @@ msgctxt "action" msgid "New post" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "" @@ -5090,14 +5417,14 @@ msgstr "" #: src/screens/Settings/ThreadPreferences.tsx:99 #: src/screens/Settings/ThreadPreferences.tsx:217 #: src/screens/Settings/ThreadPreferences.tsx:220 -#: src/view/com/post-thread/PostThread.tsx:699 -#: src/view/com/post-thread/PostThread.tsx:704 +#: src/view/com/post-thread/PostThread.tsx:700 +#: src/view/com/post-thread/PostThread.tsx:705 msgid "Newest replies first" msgstr "" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:108 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241 +#: src/screens/Onboarding/state.ts:111 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:238 msgid "News" msgstr "" @@ -5110,10 +5437,10 @@ msgstr "" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5136,7 +5463,7 @@ msgstr "" msgid "No expiry set" msgstr "" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "" @@ -5153,32 +5480,35 @@ msgstr "" msgid "No likes yet" msgstr "" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "" +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "" @@ -5205,7 +5535,7 @@ msgstr "" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "" @@ -5213,9 +5543,9 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "" @@ -5223,7 +5553,7 @@ msgstr "" msgid "No results." msgstr "" -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "" @@ -5232,7 +5562,7 @@ msgstr "" msgid "No thanks" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "" @@ -5257,11 +5587,15 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "" -#: src/Navigation.tsx:149 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "" @@ -5270,33 +5604,36 @@ msgstr "" msgid "Note about sharing" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:132 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 msgid "Note: This post is only visible to logged-in users." msgstr "" -#: src/screens/Messages/ChatList.tsx:265 +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "" -#: src/Navigation.tsx:396 -#: src/Navigation.tsx:530 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "" -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:717 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 #: src/screens/Settings/NotificationSettings/index.tsx:92 #: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 #: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 @@ -5307,11 +5644,11 @@ msgstr "" #: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 #: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 #: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/Settings.tsx:186 -#: src/screens/Settings/Settings.tsx:189 -#: src/view/screens/Notifications.tsx:128 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 #: src/view/shell/bottom-bar/BottomBar.tsx:252 -#: src/view/shell/desktop/LeftNav.tsx:654 +#: src/view/shell/desktop/LeftNav.tsx:655 #: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "" @@ -5339,11 +5676,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "" @@ -5361,8 +5698,8 @@ msgid "OK" msgstr "" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:670 -#: src/view/com/post-thread/PostThreadItem.tsx:985 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:669 +#: src/view/com/post-thread/PostThreadItem.tsx:984 msgid "Okay" msgstr "" @@ -5372,8 +5709,8 @@ msgstr "" #: src/screens/Settings/ThreadPreferences.tsx:91 #: src/screens/Settings/ThreadPreferences.tsx:209 #: src/screens/Settings/ThreadPreferences.tsx:212 -#: src/view/com/post-thread/PostThread.tsx:689 -#: src/view/com/post-thread/PostThread.tsx:694 +#: src/view/com/post-thread/PostThread.tsx:690 +#: src/view/com/post-thread/PostThread.tsx:695 msgid "Oldest replies first" msgstr "" @@ -5381,7 +5718,7 @@ msgstr "" msgid "on<0><1/><2><3/>" msgstr "" -#: src/screens/Settings/Settings.tsx:367 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "" @@ -5397,16 +5734,18 @@ msgstr "" msgid "One or more videos is missing alt text." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:115 +#: src/screens/Onboarding/StepProfile/index.tsx:116 msgid "Only .jpg and .png files are supported" msgstr "" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "" -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" msgstr "" #: src/lib/media/picker.shared.ts:32 @@ -5417,11 +5756,11 @@ msgstr "" msgid "Only WebVTT (.vtt) files are supported" msgstr "" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 @@ -5434,7 +5773,7 @@ msgstr "" msgid "Open" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:284 +#: src/screens/Onboarding/StepProfile/index.tsx:285 msgid "Open avatar creator" msgstr "" @@ -5443,12 +5782,12 @@ msgstr "" msgid "Open conversation options" msgstr "" -#: src/components/Layout/Header/index.tsx:159 +#: src/components/Layout/Header/index.tsx:160 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1329 msgid "Open emoji picker" msgstr "" @@ -5473,11 +5812,11 @@ msgstr "" msgid "Open message options" msgstr "" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "" @@ -5502,16 +5841,16 @@ msgstr "" msgid "Open starter pack menu" msgstr "" -#: src/screens/Settings/Settings.tsx:397 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "" -#: src/screens/Settings/Settings.tsx:390 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "" @@ -5539,7 +5878,7 @@ msgstr "" msgid "Opens captions and alt text dialog" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "" @@ -5551,7 +5890,7 @@ msgstr "" msgid "Opens device photo gallery" msgstr "" -#: src/view/com/composer/Composer.tsx:1321 +#: src/view/com/composer/Composer.tsx:1330 msgid "Opens emoji picker" msgstr "" @@ -5569,15 +5908,19 @@ msgstr "" msgid "Opens GIF select dialog" msgstr "" -#: src/screens/Settings/Settings.tsx:227 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "" @@ -5585,12 +5928,8 @@ msgstr "" msgid "Opens password reset form" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "" - -#: src/view/com/notifications/NotificationFeedItem.tsx:850 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "" @@ -5607,7 +5946,7 @@ msgstr "" msgid "Options:" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "" @@ -5649,6 +5988,10 @@ msgstr "" msgid "Other..." msgstr "" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "" @@ -5657,7 +6000,7 @@ msgstr "" msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "" -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "" @@ -5667,9 +6010,9 @@ msgid "Page Not Found" msgstr "" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5692,7 +6035,7 @@ msgid "Password updated!" msgstr "" #: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "" @@ -5701,22 +6044,22 @@ msgstr "" msgid "Pause video" msgstr "" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:185 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 msgid "People I follow" msgstr "" @@ -5724,16 +6067,16 @@ msgstr "" msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:57 msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:109 +#: src/screens/Onboarding/state.ts:112 msgid "Pets" msgstr "" -#: src/screens/Onboarding/state.ts:110 +#: src/screens/Onboarding/state.ts:113 msgid "Photography" msgstr "" @@ -5758,12 +6101,12 @@ msgstr "" msgid "Pin to Home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:420 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "" -#: src/view/com/posts/PostFeedItem.tsx:411 +#: src/view/com/posts/PostFeedItem.tsx:408 msgid "Pinned" msgstr "" @@ -5772,7 +6115,7 @@ msgstr "" msgid "Pinned {0} to Home" msgstr "" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "" @@ -5781,7 +6124,7 @@ msgid "Pinned to your feeds" msgstr "" #: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "" @@ -5790,7 +6133,7 @@ msgstr "" msgid "Play {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:134 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "" @@ -5803,7 +6146,7 @@ msgstr "" msgid "Plays or pauses the GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "" @@ -5819,12 +6162,16 @@ msgstr "" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "" -#: src/screens/Signup/state.ts:286 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + +#: src/screens/Signup/state.ts:287 msgid "Please choose your handle." msgstr "" -#: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/state.ts:279 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "" @@ -5832,11 +6179,12 @@ msgstr "" msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." msgstr "" -#: src/screens/Signup/state.ts:301 +#: src/screens/Signup/state.ts:302 msgid "Please complete the verification captcha." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "" @@ -5858,6 +6206,7 @@ msgstr "" msgid "Please enter a valid code." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "" @@ -5866,7 +6215,11 @@ msgstr "" msgid "Please enter a valid word, tag, or phrase to mute" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -5874,12 +6227,12 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/state.ts:263 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "" @@ -5907,6 +6260,19 @@ msgstr "" msgid "Please explain why you think your chats were incorrectly disabled" msgstr "" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "" @@ -5924,9 +6290,13 @@ msgstr "" msgid "Please verify your email" msgstr "" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" + #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:111 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235 +#: src/screens/Onboarding/state.ts:114 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:232 msgid "Politics" msgstr "" @@ -5934,18 +6304,18 @@ msgstr "" msgid "Porn" msgstr "" -#: src/screens/PostThread/index.tsx:490 -#: src/view/com/post-thread/PostThread.tsx:561 +#: src/screens/PostThread/index.tsx:496 +#: src/view/com/post-thread/PostThread.tsx:562 msgctxt "description" msgid "Post" msgstr "" -#: src/view/com/composer/Composer.tsx:1031 +#: src/view/com/composer/Composer.tsx:1040 msgctxt "action" msgid "Post" msgstr "" -#: src/view/com/composer/Composer.tsx:1029 +#: src/view/com/composer/Composer.tsx:1038 msgctxt "action" msgid "Post All" msgstr "" @@ -5958,14 +6328,14 @@ msgstr "" msgid "Post by {0}" msgstr "" -#: src/Navigation.tsx:246 -#: src/Navigation.tsx:253 -#: src/Navigation.tsx:260 -#: src/Navigation.tsx:267 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:183 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "" @@ -5995,11 +6365,11 @@ msgstr "" msgid "Post Hidden by You" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:180 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "" @@ -6029,6 +6399,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -6039,12 +6412,20 @@ msgstr "" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" msgstr "" #: src/screens/Messages/components/MessageListError.tsx:19 @@ -6052,13 +6433,13 @@ msgid "Press to attempt reconnection" msgstr "" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "" @@ -6082,17 +6463,25 @@ msgstr "" msgid "Privacy" msgstr "" -#: src/screens/Settings/Settings.tsx:172 -#: src/screens/Settings/Settings.tsx:175 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:389 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" -#: src/Navigation.tsx:313 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 @@ -6101,7 +6490,7 @@ msgstr "" msgid "Privacy Policy" msgstr "" -#: src/view/com/composer/Composer.tsx:1735 +#: src/view/com/composer/Composer.tsx:1744 msgid "Processing video..." msgstr "" @@ -6116,13 +6505,13 @@ msgid "profile" msgstr "" #: src/view/shell/bottom-bar/BottomBar.tsx:316 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 #: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "" -#: src/screens/Profile/Header/EditProfileDialog.tsx:196 +#: src/screens/Profile/Header/EditProfileDialog.tsx:197 msgctxt "toast" msgid "Profile updated" msgstr "" @@ -6140,38 +6529,38 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1011 +#: src/view/com/composer/Composer.tsx:1020 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1004 +#: src/view/com/composer/Composer.tsx:1013 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:989 +#: src/view/com/composer/Composer.tsx:998 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:996 +#: src/view/com/composer/Composer.tsx:1005 msgid "Publish reply" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:286 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:117 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Push, Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Push, People you follow" msgstr "" @@ -6187,51 +6576,52 @@ msgstr "" msgid "QR code saved to your camera roll!" msgstr "" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:443 msgid "Quote notifications" msgstr "" #: src/components/PostControls/RepostButton.tsx:174 #: src/components/PostControls/RepostButton.tsx:197 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "" #: src/components/PostControls/RepostButton.tsx:173 #: src/components/PostControls/RepostButton.tsx:195 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 -#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:170 #: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 #: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "" #: src/screens/Settings/ThreadPreferences.tsx:233 #: src/screens/Settings/ThreadPreferences.tsx:236 -#: src/view/com/post-thread/PostThread.tsx:719 -#: src/view/com/post-thread/PostThread.tsx:724 +#: src/view/com/post-thread/PostThread.tsx:720 +#: src/view/com/post-thread/PostThread.tsx:725 msgid "Random (aka \"Poster's Roulette\")" msgstr "" @@ -6239,8 +6629,8 @@ msgstr "" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "" @@ -6261,11 +6651,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:966 +#: src/screens/VideoFeed/index.tsx:967 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:966 +#: src/screens/VideoFeed/index.tsx:967 msgid "Read more" msgstr "" @@ -6273,17 +6663,21 @@ msgstr "" msgid "Read more replies" msgstr "" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "" @@ -6296,11 +6690,11 @@ msgstr "" msgid "Reason:" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:106 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 msgid "Receive push notifications" msgstr "" @@ -6325,24 +6719,23 @@ msgstr "" msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 #: src/components/dialogs/MutedWords.tsx:438 #: src/components/FeedCard.tsx:343 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:552 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:104 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:111 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:60 msgid "Remove {displayName} from starter pack" msgstr "" @@ -6350,8 +6743,8 @@ msgstr "" msgid "Remove {historyItem}" msgstr "" -#: src/screens/Settings/Settings.tsx:531 -#: src/screens/Settings/Settings.tsx:534 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "" @@ -6359,8 +6752,8 @@ msgstr "" msgid "Remove attachment" msgstr "" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "" @@ -6375,24 +6768,22 @@ msgstr "" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:544 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "" @@ -6402,11 +6793,10 @@ msgid "Remove from saved feeds" msgstr "" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "" @@ -6432,7 +6822,7 @@ msgstr "" msgid "Remove subtitle file" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "" @@ -6464,10 +6854,6 @@ msgstr "" msgid "Removed from list" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "" @@ -6487,27 +6873,51 @@ msgstr "" msgid "Replace with Discover" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/components/Post/PostRepliedTo.tsx:39 +msgctxt "description" +msgid "Replied to <0><1/>" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:28 +msgctxt "description" +msgid "Replied to a blocked post" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:30 +msgctxt "description" +msgid "Replied to a post" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:36 +msgctxt "description" +msgid "Replied to you" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 #: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "" -#: src/view/com/composer/Composer.tsx:1027 +#: src/view/com/composer/Composer.tsx:1036 msgctxt "action" msgid "Reply" msgstr "" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -6521,55 +6931,33 @@ msgstr "" msgid "Reply Hidden by You" msgstr "" -#: src/Navigation.tsx:402 +#: src/Navigation.tsx:427 msgid "Reply notifications" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "" #: src/screens/PostThread/components/HeaderDropdown.tsx:69 -#: src/view/com/post-thread/PostThread.tsx:675 +#: src/view/com/post-thread/PostThread.tsx:676 msgid "Reply sorting" msgstr "" -#: src/view/com/post/Post.tsx:204 -#: src/view/com/posts/PostFeedItem.tsx:602 -msgctxt "description" -msgid "Reply to <0><1/>" -msgstr "" - -#: src/view/com/posts/PostFeedItem.tsx:593 -msgctxt "description" -msgid "Reply to a blocked post" -msgstr "" - -#: src/view/com/posts/PostFeedItem.tsx:595 -msgctxt "description" -msgid "Reply to a post" -msgstr "" - -#: src/view/com/post/Post.tsx:202 -#: src/view/com/posts/PostFeedItem.tsx:599 -msgctxt "description" -msgid "Reply to you" -msgstr "" - -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6603,12 +6991,12 @@ msgstr "" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:653 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "" @@ -6659,27 +7047,24 @@ msgstr "" #: src/components/PostControls/RepostButton.tsx:152 #: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form #: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/Navigation.tsx:434 +#: src/Navigation.tsx:459 msgid "Repost notifications" msgstr "" #: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "" @@ -6688,35 +7073,37 @@ msgstr "" msgid "Reposted By" msgstr "" -#: src/view/com/posts/PostFeedItem.tsx:351 +#: src/view/com/posts/PostFeedItem.tsx:348 msgid "Reposted by {0}" msgstr "" -#: src/view/com/posts/PostFeedItem.tsx:370 +#: src/view/com/posts/PostFeedItem.tsx:367 msgid "Reposted by <0><1/>" msgstr "" -#: src/view/com/posts/PostFeedItem.tsx:349 -#: src/view/com/posts/PostFeedItem.tsx:368 +#: src/view/com/posts/PostFeedItem.tsx:346 +#: src/view/com/posts/PostFeedItem.tsx:365 msgid "Reposted by you" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 #: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:433 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:428 #: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:223 +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 #: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:483 msgid "Reposts of your reposts notifications" msgstr "" @@ -6725,8 +7112,8 @@ msgstr "" msgid "Request Code" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "" @@ -6734,7 +7121,7 @@ msgstr "" msgid "Require an email code to sign in to your account." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "" @@ -6759,6 +7146,11 @@ msgstr "" msgid "Resend Verification Email" msgstr "" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + #: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" @@ -6768,8 +7160,8 @@ msgstr "" msgid "Reset Code" msgstr "" -#: src/screens/Settings/Settings.tsx:418 -#: src/screens/Settings/Settings.tsx:420 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "" @@ -6788,16 +7180,16 @@ msgstr "" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 #: src/screens/PostThread/components/ThreadError.tsx:75 @@ -6824,24 +7216,24 @@ msgstr "" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1143 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 -#: src/screens/Profile/Header/EditProfileDialog.tsx:243 -#: src/screens/Profile/Header/EditProfileDialog.tsx:257 +#: src/screens/Profile/Header/EditProfileDialog.tsx:244 +#: src/screens/Profile/Header/EditProfileDialog.tsx:258 #: src/screens/Settings/components/ChangeHandleDialog.tsx:262 #: src/view/com/composer/GifAltText.tsx:193 #: src/view/com/composer/GifAltText.tsx:202 @@ -6850,7 +7242,7 @@ msgstr "" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "" @@ -6864,8 +7256,10 @@ msgstr "" msgid "Save birthday" msgstr "" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "" @@ -6891,7 +7285,7 @@ msgstr "" msgid "Save to my feeds" msgstr "" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "" @@ -6906,13 +7300,13 @@ msgstr "" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:695 -#: src/view/com/notifications/NotificationFeedItem.tsx:720 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:112 +#: src/screens/Onboarding/state.ts:115 msgid "Science" msgstr "" @@ -6929,7 +7323,7 @@ msgstr "" msgid "Search" msgstr "" -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -6955,7 +7349,7 @@ msgstr "" msgid "Search for \"{searchText}\"" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "" @@ -6971,10 +7365,14 @@ msgstr "" msgid "Search for posts, users, or feeds" msgstr "" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "" @@ -6989,7 +7387,7 @@ msgstr "" msgid "Search profiles" msgstr "" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "" @@ -7026,7 +7424,19 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "" @@ -7034,6 +7444,11 @@ msgstr "" msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" @@ -7054,7 +7469,7 @@ msgstr "" msgid "Select an emoji" msgstr "" -#: src/components/Select/index.tsx:204 +#: src/components/Select/index.tsx:206 msgid "Select an option" msgstr "" @@ -7078,7 +7493,7 @@ msgstr "" msgid "Select GIF" msgstr "" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "" @@ -7086,6 +7501,11 @@ msgstr "" msgid "Select how long to mute this word for." msgstr "" +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "" @@ -7094,7 +7514,7 @@ msgstr "" msgid "Select languages" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "" @@ -7135,12 +7555,12 @@ msgstr "" msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/InterestsSettings.tsx:165 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "" @@ -7148,7 +7568,11 @@ msgstr "" msgid "Select your preferred language for translations in your feed." msgstr "" -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "" @@ -7158,7 +7582,7 @@ msgstr "" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "" @@ -7177,7 +7601,7 @@ msgstr "" msgid "Send message" msgstr "" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "" @@ -7196,20 +7620,20 @@ msgstr "" msgid "Send report to {0}" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:99 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:108 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 msgid "Send via direct message" msgstr "" @@ -7225,7 +7649,7 @@ msgstr "" msgid "Set app icon to {0}" msgstr "" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "" @@ -7241,46 +7665,54 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:195 -#: src/screens/Settings/Settings.tsx:91 -#: src/view/shell/desktop/LeftNav.tsx:727 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 #: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:154 -msgid "Settings for like notifications" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:132 -msgid "Settings for mention notifications" -msgstr "" - -#: src/screens/Settings/NotificationSettings/index.tsx:176 -msgid "Settings for new follower notifications" -msgstr "" - -#: src/screens/Settings/NotificationSettings/index.tsx:231 -msgid "Settings for notifications for everything else" -msgstr "" - -#: src/screens/Settings/NotificationSettings/index.tsx:202 -msgid "Settings for notifications for likes of your reposts" -msgstr "" - -#: src/screens/Settings/NotificationSettings/index.tsx:217 -msgid "Settings for notifications for reposts of your reposts" -msgstr "" - -#: src/screens/Settings/NotificationSettings/index.tsx:143 -msgid "Settings for quote notifications" +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" msgstr "" #: src/screens/Settings/NotificationSettings/index.tsx:121 -msgid "Settings for reply notifications" +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" msgstr "" #: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for repost notifications" msgstr "" @@ -7322,27 +7754,24 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:160 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:148 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:151 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "" @@ -7363,8 +7792,8 @@ msgstr "" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:115 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7376,16 +7805,12 @@ msgstr "" msgid "Share your favorite feed!" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "" @@ -7419,8 +7844,8 @@ msgstr "" msgid "Show hidden replies" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:485 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "" @@ -7432,8 +7857,8 @@ msgstr "" msgid "Show More" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:475 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:477 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "" @@ -7449,18 +7874,18 @@ msgstr "" msgid "Show post replies in a threaded tree view" msgstr "" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "" #: src/screens/PostThread/components/HeaderDropdown.tsx:43 -#: src/view/com/post-thread/PostThread.tsx:649 +#: src/view/com/post-thread/PostThread.tsx:650 msgid "Show replies as" msgstr "" @@ -7473,18 +7898,18 @@ msgstr "" msgid "Show replies by people you follow before all other replies" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:559 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:569 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "" @@ -7496,16 +7921,16 @@ msgstr "" msgid "Show warning and filter from feeds" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 -#: src/view/com/post-thread/PostThreadItem.tsx:926 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/view/com/post-thread/PostThreadItem.tsx:925 msgid "Shows information about when this post was created" msgstr "" -#: src/screens/Settings/Settings.tsx:115 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:152 +#: src/components/moderation/ContentHider.tsx:155 #: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "" @@ -7515,6 +7940,7 @@ msgstr "" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 @@ -7553,20 +7979,20 @@ msgstr "" msgid "Sign in to Bluesky or create a new account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:461 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:463 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 msgid "Sign in to view post" msgstr "" -#: src/screens/Settings/Settings.tsx:244 -#: src/screens/Settings/Settings.tsx:246 -#: src/screens/Settings/Settings.tsx:278 +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "" @@ -7574,8 +8000,8 @@ msgstr "" msgid "Sign Out" msgstr "" -#: src/screens/Settings/Settings.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "" @@ -7589,12 +8015,12 @@ msgstr "" msgid "Signed in as @{0}" msgstr "" -#: src/components/FeedInterstitials.tsx:343 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "" @@ -7602,7 +8028,7 @@ msgstr "" msgid "Skip this flow" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "" @@ -7611,7 +8037,7 @@ msgid "Snoozes the reminder" msgstr "" #: src/screens/Onboarding/index.tsx:37 -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:103 msgid "Software Dev" msgstr "" @@ -7619,11 +8045,11 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:480 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "" @@ -7639,10 +8065,11 @@ msgstr "" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "" -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7650,12 +8077,12 @@ msgid "Something went wrong, please try again" msgstr "" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "" -#: src/components/Lists.tsx:174 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "" @@ -7671,8 +8098,8 @@ msgstr "" msgid "Something wrong? Let us know." msgstr "" -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:126 +#: src/App.web.tsx:102 msgid "Sorry! Your session expired. Please sign in again." msgstr "" @@ -7709,12 +8136,12 @@ msgid "Spam; excessive mentions or replies" msgstr "" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:113 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 +#: src/screens/Onboarding/state.ts:116 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:230 msgid "Sports" msgstr "" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "" @@ -7736,9 +8163,9 @@ msgstr "" msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:540 -#: src/Navigation.tsx:545 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "" @@ -7773,19 +8200,21 @@ msgstr "" msgid "Status Page" msgstr "" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "" -#: src/screens/Settings/Settings.tsx:372 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "" -#: src/Navigation.tsx:288 -#: src/screens/Settings/Settings.tsx:399 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7801,9 +8230,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "" @@ -7811,10 +8240,14 @@ msgstr "" msgid "Subscribe" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "" @@ -7827,6 +8260,11 @@ msgstr "" msgid "Subscribe to this list" msgstr "" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 msgid "Success!" msgstr "" @@ -7839,7 +8277,7 @@ msgstr "" msgid "Suggested Accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:345 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "" @@ -7848,26 +8286,26 @@ msgstr "" msgid "Suggestive" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "" -#: src/screens/Settings/Settings.tsx:113 -#: src/screens/Settings/Settings.tsx:127 -#: src/screens/Settings/Settings.tsx:494 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "" @@ -7876,24 +8314,24 @@ msgstr "" msgid "Switch Account" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:392 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "" @@ -7901,6 +8339,18 @@ msgstr "" msgid "Tags only" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7911,11 +8361,11 @@ msgstr "" msgid "Tap to dismiss" msgstr "" -#: src/state/shell/progress-guide.tsx:233 +#: src/state/shell/progress-guide.tsx:235 msgid "Task complete - 10 follows!" msgstr "" -#: src/state/shell/progress-guide.tsx:223 +#: src/state/shell/progress-guide.tsx:225 msgid "Task complete - 10 likes!" msgstr "" @@ -7924,7 +8374,7 @@ msgid "Teach our algorithm what you like" msgstr "" #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:114 +#: src/screens/Onboarding/state.ts:117 msgid "Tech" msgstr "" @@ -7932,7 +8382,7 @@ msgstr "" msgid "Tell a joke!" msgstr "" -#: src/screens/Profile/Header/EditProfileDialog.tsx:377 +#: src/screens/Profile/Header/EditProfileDialog.tsx:374 msgid "Tell us a bit about yourself" msgstr "" @@ -7945,7 +8395,9 @@ msgstr "" msgid "Terms" msgstr "" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 @@ -7994,28 +8446,28 @@ msgstr "" msgid "That contains the following:" msgstr "" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "" - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "" +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "" -#: src/screens/VideoFeed/index.tsx:1114 +#: src/screens/VideoFeed/index.tsx:1115 msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "" @@ -8030,7 +8482,7 @@ msgstr "" msgid "The author of this thread has hidden this reply." msgstr "" -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "" @@ -8046,7 +8498,7 @@ msgstr "" msgid "The Discover feed" msgstr "" -#: src/state/shell/progress-guide.tsx:224 +#: src/state/shell/progress-guide.tsx:226 msgid "The Discover feed now knows what you like" msgstr "" @@ -8070,6 +8522,14 @@ msgstr "" msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "" +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + #: src/view/com/post-thread/PostThread.tsx:267 #: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." @@ -8080,7 +8540,8 @@ msgid "The Privacy Policy has been moved to <0/>" msgstr "" #: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." +#: src/view/com/composer/state/video.ts:434 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." msgstr "" #: src/lib/hooks/useCleanError.ts:40 @@ -8108,7 +8569,7 @@ msgstr "" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "" @@ -8116,14 +8577,14 @@ msgstr "" msgid "There is no time limit for account deactivation, come back any time." msgstr "" -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "" #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "" @@ -8132,21 +8593,16 @@ msgstr "" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" -#: src/view/com/lists/ListMembers.tsx:151 +#: src/view/com/lists/ListMembers.tsx:158 msgid "There was an issue fetching the list. Tap here to try again." msgstr "" @@ -8163,7 +8619,7 @@ msgstr "" msgid "There was an issue fetching your service info" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" @@ -8178,9 +8634,9 @@ msgstr "" msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:365 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:378 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8195,7 +8651,7 @@ msgstr "" msgid "There was an issue! {0}" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8206,7 +8662,7 @@ msgstr "" msgid "There was an issue. Please check your internet connection and try again." msgstr "" -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "" @@ -8215,7 +8671,7 @@ msgstr "" msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "" -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "" @@ -8272,7 +8728,7 @@ msgstr "" msgid "This content is not available because one of the users involved has blocked the other." msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "" @@ -8284,6 +8740,10 @@ msgstr "" msgid "This email is already associated with your account." msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "" @@ -8296,7 +8756,7 @@ msgstr "" msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "" @@ -8335,11 +8795,11 @@ msgstr "" msgid "This label was applied by you." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "" -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "" @@ -8359,12 +8819,12 @@ msgstr "" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:651 -#: src/view/com/post-thread/PostThreadItem.tsx:966 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:650 +#: src/view/com/post-thread/PostThreadItem.tsx:965 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" @@ -8372,11 +8832,11 @@ msgstr "" msgid "This post has been deleted." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:138 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 msgid "This post is only visible to logged-in users." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" @@ -8388,11 +8848,11 @@ msgstr "" msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "" @@ -8400,6 +8860,10 @@ msgstr "" msgid "This should create a domain record at:" msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" @@ -8441,18 +8905,18 @@ msgstr "" msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "" -#: src/screens/Settings/Settings.tsx:546 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:734 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "" #: src/screens/PostThread/components/HeaderDropdown.tsx:23 #: src/screens/PostThread/components/HeaderDropdown.tsx:26 -#: src/view/com/post-thread/PostThread.tsx:633 -#: src/view/com/post-thread/PostThread.tsx:636 +#: src/view/com/post-thread/PostThread.tsx:634 +#: src/view/com/post-thread/PostThread.tsx:637 msgid "Thread options" msgstr "" @@ -8468,8 +8932,8 @@ msgstr "" #: src/screens/PostThread/components/HeaderDropdown.tsx:57 #: src/screens/PostThread/components/HeaderDropdown.tsx:62 -#: src/view/com/post-thread/PostThread.tsx:663 -#: src/view/com/post-thread/PostThread.tsx:668 +#: src/view/com/post-thread/PostThread.tsx:664 +#: src/view/com/post-thread/PostThread.tsx:669 msgid "Threaded" msgstr "" @@ -8477,7 +8941,7 @@ msgstr "" msgid "Threaded mode" msgstr "" -#: src/Navigation.tsx:351 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "" @@ -8506,20 +8970,20 @@ msgstr "" msgid "Today" msgstr "" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "" @@ -8531,18 +8995,18 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:543 msgid "Topic" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:444 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:446 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:573 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:576 -#: src/view/com/post-thread/PostThreadItem.tsx:888 -#: src/view/com/post-thread/PostThreadItem.tsx:891 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:572 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:575 +#: src/view/com/post-thread/PostThreadItem.tsx:887 +#: src/view/com/post-thread/PostThreadItem.tsx:890 msgid "Translate" msgstr "" @@ -8555,7 +9019,7 @@ msgstr "" msgid "Trending" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "" @@ -8568,18 +9032,14 @@ msgctxt "action" msgid "Try again" msgstr "" -#: src/screens/Onboarding/state.ts:115 +#: src/screens/Onboarding/state.ts:118 msgid "TV" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "" @@ -8597,7 +9057,7 @@ msgstr "" #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8607,18 +9067,34 @@ msgstr "" msgid "Unable to delete" msgstr "" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "" @@ -8630,7 +9106,7 @@ msgstr "" msgid "Unblock account" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "" @@ -8639,8 +9115,8 @@ msgstr "" msgid "Unblock list" msgstr "" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "" @@ -8654,7 +9130,7 @@ msgctxt "action" msgid "Unfollow" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "" @@ -8663,11 +9139,11 @@ msgstr "" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:831 +#: src/screens/VideoFeed/index.tsx:832 msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -8680,11 +9156,11 @@ msgid "Unlike" msgstr "" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" @@ -8699,8 +9175,8 @@ msgstr "" msgid "Unmute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8714,8 +9190,8 @@ msgstr "" msgid "Unmute list" msgstr "" +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:513 msgid "Unmute thread" msgstr "" @@ -8741,8 +9217,8 @@ msgstr "" msgid "Unpin from home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:419 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "" @@ -8758,8 +9234,8 @@ msgstr "" msgid "Unpinned from your feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:425 -#: src/screens/Settings/Settings.tsx:427 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "" @@ -8780,7 +9256,7 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/Composer.tsx:811 +#: src/view/com/composer/Composer.tsx:818 msgid "Unsupported video type" msgstr "" @@ -8806,8 +9282,8 @@ msgstr "" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "" @@ -8820,12 +9296,12 @@ msgstr "" msgid "Update your email" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:312 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:343 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" @@ -8834,7 +9310,7 @@ msgstr "" msgid "Updating..." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:288 +#: src/screens/Onboarding/StepProfile/index.tsx:289 msgid "Upload a photo instead" msgstr "" @@ -8842,20 +9318,20 @@ msgstr "" msgid "Upload a text file to:" msgstr "" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8865,12 +9341,12 @@ msgstr "" msgid "Uploading images..." msgstr "" -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:1732 +#: src/view/com/composer/Composer.tsx:1741 msgid "Uploading video..." msgstr "" @@ -8905,6 +9381,10 @@ msgstr "" msgid "Use this to sign in to the other app along with your handle." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "" @@ -8957,28 +9437,40 @@ msgctxt "toast" msgid "User list updated" msgstr "" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "" @@ -8990,11 +9482,11 @@ msgstr "" msgid "Verification failed, please try again." msgstr "" -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "" @@ -9014,8 +9506,15 @@ msgstr "" msgid "Verify account" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "" @@ -9024,6 +9523,7 @@ msgstr "" msgid "Verify DNS Record" msgstr "" +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "" @@ -9032,6 +9532,11 @@ msgstr "" msgid "Verify email dialog" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -9041,27 +9546,39 @@ msgstr "" msgid "Verify this account?" msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" + #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" +msgid "Version {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "" -#: src/view/com/composer/state/video.ts:358 +#: src/view/com/composer/state/video.ts:357 msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:561 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "" @@ -9070,20 +9587,20 @@ msgid "Video from {0}: {text}" msgstr "" #: src/screens/Onboarding/index.tsx:39 -#: src/screens/Onboarding/state.ts:103 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237 +#: src/screens/Onboarding/state.ts:106 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:234 msgid "Video Games" msgstr "" -#: src/screens/VideoFeed/index.tsx:1072 +#: src/screens/VideoFeed/index.tsx:1073 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1072 +#: src/screens/VideoFeed/index.tsx:1073 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:192 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:220 msgid "Video not found." msgstr "" @@ -9091,11 +9608,11 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:1742 +#: src/view/com/composer/Composer.tsx:1751 msgid "Video uploaded" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "" @@ -9108,15 +9625,15 @@ msgstr "" msgid "Videos must be less than 3 minutes long" msgstr "" -#: src/screens/Profile/Header/Shell.tsx:211 +#: src/screens/Profile/Header/Shell.tsx:229 msgid "View {0}'s avatar" msgstr "" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 -#: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:546 +#: src/screens/VideoFeed/index.tsx:791 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "" @@ -9124,7 +9641,7 @@ msgstr "" msgid "View {displayName}'s profile" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "" @@ -9142,7 +9659,6 @@ msgstr "" msgid "View details" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "" @@ -9155,19 +9671,19 @@ msgstr "" msgid "View information about these labels" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "" @@ -9187,15 +9703,15 @@ msgstr "" msgid "View users who like this feed" msgstr "" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "" @@ -9204,11 +9720,11 @@ msgstr "" msgid "View your feeds and explore more" msgstr "" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "" @@ -9225,16 +9741,20 @@ msgstr "" msgid "Views video in immersive mode" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "" + +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9253,6 +9773,14 @@ msgstr "" msgid "Watch now" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "" + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "" @@ -9261,7 +9789,7 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "" -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "" @@ -9269,6 +9797,10 @@ msgstr "" msgid "We estimate {estimatedTime} until your account is ready." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "" @@ -9281,15 +9813,15 @@ msgstr "" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "" -#: src/screens/Settings/InterestsSettings.tsx:158 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:418 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "" @@ -9297,10 +9829,14 @@ msgstr "" msgid "We were unable to load your birth date preferences. Please try again." msgstr "" -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "" @@ -9309,7 +9845,7 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -9317,6 +9853,22 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9326,7 +9878,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "" @@ -9338,7 +9890,7 @@ msgstr "" msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -9346,7 +9898,7 @@ msgstr "" msgid "We're sorry! The post you are replying to has been deleted." msgstr "" -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "" @@ -9355,6 +9907,26 @@ msgstr "" msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "" @@ -9373,7 +9945,7 @@ msgstr "" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:774 +#: src/view/com/composer/Composer.tsx:781 msgid "What's up?" msgstr "" @@ -9389,11 +9961,11 @@ msgstr "" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "" @@ -9402,12 +9974,12 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "" @@ -9455,17 +10027,17 @@ msgstr "" msgid "Write a message" msgstr "" -#: src/view/com/composer/Composer.tsx:867 +#: src/view/com/composer/Composer.tsx:876 msgid "Write post" msgstr "" -#: src/view/com/composer/Composer.tsx:772 +#: src/view/com/composer/Composer.tsx:779 #: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:116 +#: src/screens/Onboarding/state.ts:119 msgid "Writers" msgstr "" @@ -9478,7 +10050,7 @@ msgstr "" msgid "www.mylivestream.tv" msgstr "" -#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87 +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:100 msgid "Yes" msgstr "" @@ -9491,11 +10063,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "" @@ -9511,6 +10083,10 @@ msgstr "" msgid "You" msgstr "" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "" @@ -9519,6 +10095,10 @@ msgstr "" msgid "You are creating an account on" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "" @@ -9536,7 +10116,7 @@ msgstr "" msgid "You are not allowed to go live" msgstr "" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:411 msgid "You are not allowed to upload videos." msgstr "" @@ -9552,7 +10132,7 @@ msgstr "" msgid "You are verified" msgstr "" -#: src/screens/Profile/Header/EditProfileDialog.tsx:355 +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "" @@ -9573,10 +10153,18 @@ msgstr "" msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "" -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9586,12 +10174,12 @@ msgstr "" msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "" #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "" @@ -9604,7 +10192,7 @@ msgstr "" msgid "You don't follow any users who follow @{name}." msgstr "" -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "" @@ -9612,11 +10200,11 @@ msgstr "" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "" -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "" -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "" @@ -9634,6 +10222,10 @@ msgstr "" msgid "You have blocked this user. You cannot view their content." msgstr "" +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9658,7 +10250,7 @@ msgstr "" msgid "You have muted this user" msgstr "" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "" @@ -9679,7 +10271,7 @@ msgstr "" msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "" -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "" @@ -9704,6 +10296,10 @@ msgstr "" msgid "You hid this reply." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "" @@ -9712,11 +10308,11 @@ msgstr "" msgid "You may appeal these labels if you feel they were placed in error." msgstr "" -#: src/screens/StarterPack/Wizard/State.tsx:76 +#: src/screens/StarterPack/Wizard/State.tsx:80 msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}" msgstr "" -#: src/screens/StarterPack/Wizard/State.tsx:95 +#: src/screens/StarterPack/Wizard/State.tsx:99 msgid "You may only add up to 3 feeds" msgstr "" @@ -9724,7 +10320,7 @@ msgstr "" msgid "You may only select up to 4 images" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "" @@ -9732,6 +10328,14 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "" +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "" @@ -9753,7 +10357,7 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "" -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "" @@ -9765,16 +10369,20 @@ msgstr "" msgid "You reacted {0} to {1}" msgstr "" -#: src/screens/Settings/Settings.tsx:276 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:216 -msgid "You will no longer receive notifications for this thread" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 +msgid "You will no longer receive notifications for this thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "" @@ -9794,11 +10402,11 @@ msgstr "" msgid "You: {short}" msgstr "" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" @@ -9810,6 +10418,10 @@ msgstr "" msgid "You'll follow these people right away" msgstr "" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" msgstr "" @@ -9832,10 +10444,14 @@ msgstr "" msgid "You've chosen to hide a word or tag within this post." msgstr "" -#: src/state/shell/progress-guide.tsx:234 +#: src/state/shell/progress-guide.tsx:236 msgid "You've found some people to follow" msgstr "" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" @@ -9844,19 +10460,23 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:422 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:426 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/VideoFeed/index.tsx:1123 +#: src/screens/VideoFeed/index.tsx:1124 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "" @@ -9868,7 +10488,7 @@ msgstr "" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:430 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" @@ -9884,11 +10504,11 @@ msgstr "" msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:196 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:224 msgid "Your browser does not support the video format. Please try a different browser." msgstr "" @@ -9904,9 +10524,15 @@ msgstr "" msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "" + #: src/screens/Login/ForgotPasswordForm.tsx:51 -#: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/state.ts:271 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "" @@ -9915,11 +10541,11 @@ msgstr "" msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "" -#: src/state/shell/progress-guide.tsx:213 +#: src/state/shell/progress-guide.tsx:215 msgid "Your first like!" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "" @@ -9931,11 +10557,7 @@ msgstr "" msgid "Your full handle will be <0>@{0}" msgstr "" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "" - -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 @@ -9943,7 +10565,7 @@ msgstr "" msgid "Your interests" msgstr "" -#: src/screens/Settings/InterestsSettings.tsx:127 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "" @@ -9960,7 +10582,7 @@ msgstr "" msgid "Your password has been changed successfully!" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "" @@ -9976,6 +10598,10 @@ msgstr "" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" @@ -9984,7 +10610,7 @@ msgstr "" msgid "Your reply has been published" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "" diff --git a/src/locale/locales/eo/messages.po b/src/locale/locales/eo/messages.po index 956b990c6b..5f83a4654b 100644 --- a/src/locale/locales/eo/messages.po +++ b/src/locale/locales/eo/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: eo\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 01:46\n" "Last-Translator: \n" "Language-Team: Esperanto\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,7 +27,7 @@ msgstr "(aktiva)" msgid "(contains embedded content)" msgstr "(enhavas enkorpigitan enhavon)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(sen retpoŝtadreso)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# reafiŝo} other {# reafiŝoj}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# sekundo} other {# sekundoj}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# nelegita elemento} other {# nelegitaj elementoj}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {# nelegita elemento} other {# nelegitaj elementoj}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {#mo} other {#mo}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {sekvanto} other {sekvantoj}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {sekvata} other {sekvataj}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {ŝato} other {ŝatoj}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {ŝato} other {ŝatoj}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {afiŝo} other {afiŝoj}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {citaĵo} other {citaĵoj}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {reafiŝo} other {reafiŝoj}}" @@ -133,21 +136,29 @@ msgstr "{0} <0>en <1>kradvortoj" #. Pattern: {wordValue} in text, tags #: src/components/dialogs/MutedWords.tsx:465 msgid "{0} <0>in <1>text & tags" -msgstr "{0} <0>en <1>teksto k kradvortoj" +msgstr "{0} <0>en <1>teksto kaj kradvortoj" + +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} sekvataj" #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" -msgstr "{0} elsendfluas" +msgstr "{0} tujelsendas" #: src/components/live/queries.ts:39 msgid "{0} is not a valid URL" msgstr "{0} ne estas valida URL" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} aliĝis ĉi-semajne" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} el {1}" @@ -164,8 +175,16 @@ msgstr "{0} reagis per {1}" msgid "{0} reacted {1} to {2}" msgstr "{0} reagis per {1} al {2}" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0}, fluo de {1}, ŝatata de {2}" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0}, listo de {1}" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "Profilbildo de {0}" @@ -197,12 +216,12 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}s" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# nelegita elemento} other {# nelegitaj elementoj}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Startpako de {displayName}" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {horo} other {horoj}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuto} other {minutoj}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} eksekvis vin" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} ŝatas vian propran fluon" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} ŝatas vian afiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} ŝatas vian reafiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} forigis iliajn konfirmojn el via konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} reafiŝis vian afiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} reafiŝis vian reafiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} registriĝis kun via startpako" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} konfirmis vin" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} eksekvis vin" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} eksekvis vin reciproke" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} ŝatas vian propran fluon" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} ŝatas vian afiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} ŝatas vian reafiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} forigis ties konfirmon el via konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} reafiŝis vian afiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} reafiŝis vian reafiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} registriĝis kun via startpako" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} konfirmis vin" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} eksekvis vin" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} ŝatas vian propran fluon" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} ŝatas vian afiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} ŝatas vian reafiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} forigis iliajn konfirmojn el via konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} reafiŝis vian afiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} reafiŝis vian reafiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} registriĝis kun via startpako" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} konfirmis vin" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} eksekvis vin" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} eksekvis vin reciproke" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} ŝatas vian propran fluon" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} ŝatas vian afiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} ŝatas vian reafiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} forigis ties konfirmon el via konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} reafiŝis vian afiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} reafiŝis vian reafiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} registriĝis kun via startpako" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} konfirmis vin" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} sekvataj" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "{handle} nemesaĝeblas" @@ -392,7 +410,7 @@ msgstr "{joinedAllTimeCount, plural, one {# uzanto}other {# uzantoj}} aliĝis!" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "{minutes, plural, one {# minuto} other {# minutoj}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# nelegita elemento} other {# nelegitaj elementoj}}" @@ -432,12 +450,12 @@ msgstr "Konfirmoj de {userName}" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, kaj {2, plural, one {# alia} other {# aliaj}} estas en via startpako" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, kaj {2, plural, one {# alia} other {# aliaj}} estas en via startpako" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {sekvanto} other {sekvantoj}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {sekvata} other {sekvataj}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} kaj<1> <2>{1} estas en via startpako" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} estas en via startpako" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} anoj" @@ -466,11 +484,11 @@ msgstr "<0>{0} anoj" msgid "<0>{date} at {time}" msgstr "<0>{date} je {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Eksperimenta: Kiam ĉi tiu prefero estas ŝaltita vi ricevos sciigojn pri respondoj kaj citaĵoj de uzantoj, kiujn vi sekvas. Ni poste aldonos pli da agordoj ĉi tie." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<0>Ensalutu<1> aŭ <2>kreu konton<3> <4>por serĉi pri novaĵoj, sportoj, politiko kaj ĉio alia okazanta ĉe Bluesky." -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Vi kaj<1> <2>{0} estas en via startpako" @@ -503,10 +521,14 @@ msgstr "mesaĝo" msgid "A new form of verification" msgstr "Nova konfirmada metodo" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "Ekrankopio montranta paĝon kun sonorila piktogramo apud la sekvi-butono, kio estas la nova funkcio - agadaj sciigoj." + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Pri" @@ -524,25 +546,25 @@ msgstr "Akcepti babilpeton" msgid "Accept Request" msgstr "Akcepti peton" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Alirebleco" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Alireblecaj agordoj" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Konto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Konto eksekvita" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Konto silentigita" msgid "Account Muted by List" msgstr "Konto silentigita de listo" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Kontaj opcioj" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Konto forigita el la rapidatingo" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Konto ne plu sekvata" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Konto malsilentigita" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Kontoj kun gravurita blua kontrolmarko<0><1/>povas kontroli aliulojn. Tiuj fidataj konfirmantoj estas elektataj de Bluesky." +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "Agado de aliuloj" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "Agadaj sciigoj" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Aldoni" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Aldoni {0} pli por daŭrigi" @@ -619,7 +651,7 @@ msgstr "Aldoni averton pri enhavo" #: src/components/live/GoLiveDialog.tsx:101 msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event." -msgstr "Aldoni dumtempan elsendfluadan statuson al via profilo. Kiam iu alklakos vian profilbildon, ties vidos informon pri via elsendflua evento." +msgstr "Aldoni dumtempan tujelsendan staton al via profilo. Kiam iu alklakos vian profilbildon, ties vidos informon pri via tujelsenda evento." #: src/view/screens/ProfileList.tsx:924 #: src/view/screens/ProfileList.tsx:942 @@ -634,8 +666,8 @@ msgstr "Aldoni konton" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Aldoni alternativan tekston" msgid "Add alt text (optional)" msgstr "Aldoni alternativan tekston (nedeviga)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Aldoni plian konton" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Aldoni plian afiŝon" @@ -670,8 +702,8 @@ msgstr "Aldoni apan pasvorton" msgid "Add emoji reaction" msgstr "Aldoni emoĝian reagon" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Aldoni pliaj detaloj (nedeviga)" @@ -681,9 +713,9 @@ msgstr "Aldoni silentigitan vorton kun elektitaj agordoj" #: src/components/dialogs/MutedWords.tsx:112 msgid "Add muted words and tags" -msgstr "Aldoni silentigitajn vortojn k kradvortojn" +msgstr "Aldoni silentigitajn vortojn kaj kradvortojn" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Aldoni novan afiŝon" @@ -704,7 +736,7 @@ msgstr "Aldoni reagon" msgid "Add recommended feeds" msgstr "Aldoni rekomenditajn fluojn" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Aldonu iujn fluojn al via startpako!" @@ -725,10 +757,6 @@ msgstr "Aldoni ĉi tiun fluon al viaj fluoj" msgid "Add to lists" msgstr "Aldoni al listoj" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Aldoni al miaj fluoj" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "Aldoni uzanton al la listo" @@ -738,11 +766,11 @@ msgstr "Aldoni uzanton al la listo" msgid "Added to list" msgstr "Aldonita al listo" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Aldonita al miaj fluoj" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "Aldonaj detaloj (limo de 1000 signoj)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Aldonaj detaloj (limo de 300 signoj)" @@ -750,18 +778,18 @@ msgstr "Aldonaj detaloj (limo de 300 signoj)" msgid "Adult" msgstr "Poradolta" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Poradolta enhavo" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Poradolta enhavo povas esti ebligita nur reteje ĉe <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Poradolta enhavo estas malebligita." @@ -770,16 +798,32 @@ msgstr "Poradolta enhavo estas malebligita." msgid "Adult Content labels" msgstr "Etikedoj pri poradolta enhavo" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Altnivelaj" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "Garantio pri aĝo" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "Malsukcesis sendi informpeton de garantio pri aĝo, reprovu denove." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "Informpeto de garantio pri aĝo estis sendita" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "Garantio pri aĝo daŭros nur kelkajn minutojn" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "ludoviko@ekzemplo.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Ĉiuj" @@ -793,7 +837,7 @@ msgstr "Ĉiuj kontoj estas sekvataj!" msgid "All languages" msgstr "Ĉiuj lingvoj" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Ĉiuj fluoj, kiujn vi konservis, kune en unu loko." @@ -802,16 +846,21 @@ msgstr "Ĉiuj fluoj, kiujn vi konservis, kune en unu loko." msgid "Allow access to your direct messages" msgstr "Permesi aliron al viaj rektaj mesaĝoj" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Permesi novajn mesaĝojn de" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "Permesi aliulojn esti sciigotaj pri viaj afiŝoj" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Permesi citafiŝojn" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Permesi respondojn de:" @@ -828,13 +877,13 @@ msgstr "Ĉu vi jam havas kodon?" msgid "Already signed in as @{0}" msgstr "Jam ensalutinta kiel @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "Alternativa teksto" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Alternativa teksto" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Alternativa teksto priskribas bildojn por blindaj kaj vide handikapitaj uzantoj, kaj helpas doni kuntekston por ĉiuj." @@ -861,27 +910,19 @@ msgstr "Alternativa teksto estos stucita. Limo: {MAX_ALT_TEXT, plural, one {{0} msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Retmesaĝo estis sendita al {0}. Ĝi enhavas konfirmkodon, kiun vi povas entajpi sube." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "Retmesaĝo estis sendita al via antaŭa adreso {currentEmail}. Ĝi enhavas konfirmkodon, kiun vi povas entajpi sube." - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Retmesaĝo estas sendita! Bonvolu entajpi suben la konfirmkodon, kiu estas en la retmesaĝo." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Eraro okazis" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Eraro okazis" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Eraro okazis dum densigo de la videaĵo." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "Eraro okazis dum ŝargado de la fluo." @@ -889,11 +930,11 @@ msgstr "Eraro okazis dum ŝargado de la fluo." msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Eraro okazis dum generado de via startpako. Ĉu vi volas reprovi?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Eraro okazis dum ŝargado de la videaĵo. Bonvolu reprovi poste." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Eraro okazis dum ŝargado de la videaĵo. Bonvolu reprovi." @@ -910,7 +951,7 @@ msgstr "Eraro okazis dum elektado de la videaĵo" msgid "An error occurred while trying to follow all" msgstr "Eraro okazis dum provo eksekvi ĉiujn" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Eraro okazis dum alŝutado de la videaĵo." @@ -934,8 +975,8 @@ msgstr "Problemo okazis dum provo malfermi la babilejon" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "nekonata eraro okazis" msgid "an unknown labeler" msgstr "nekonata etikedilo" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "kaj" @@ -963,10 +1004,14 @@ msgstr "kaj" msgid "Animals" msgstr "Bestoj" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "GIF-movbildo" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "Anoncas konfirmadon ĉe Bluesky" @@ -980,7 +1025,13 @@ msgstr "Kontraŭsocia konduto" msgid "Anybody can interact" msgstr "Ĉiu povas interagi" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "Ĉiu kiu sekvas min" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "Nomoj de apaj pasvortoj povas enhavi nur literojn, numerojn, spacetojn, msgid "App password names must be at least 4 characters long" msgstr "Nomoj de apaj pasvortoj devas havi longon de almenaŭ 4 signoj" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Apaj pasvortoj" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Apaj pasvortoj" @@ -1053,10 +1104,10 @@ msgstr "Apelacii pri suspendo" msgid "Appeal this decision" msgstr "Apelacii pri ĉi tiu decido" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Aspekto" @@ -1065,12 +1116,20 @@ msgstr "Aspekto" msgid "Apply default recommended feeds" msgstr "Apliki defaŭltajn rekomenditajn fluojn" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "Apliki tirpeton" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Arkivigita de {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Arkivigita afiŝo" @@ -1078,7 +1137,7 @@ msgstr "Arkivigita afiŝo" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Ĉu vi certas, ke vi volas forigi la apan pasvorton \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Ĉu vi certas, ke vi volas forigi ĉi tiun mesaĝon? La mesaĝo estos forigita por vi, sed ne por la alia partoprenanto." @@ -1098,19 +1157,15 @@ msgstr "Ĉu vi certas ke vi volas foriri el ĉi tiu konversacio?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Ĉu vi certas, ke vi volas foriri el ĉi tiu konversacio? La mesaĝoj estos forigitaj por vi, sed ne por la alia partoprenanto." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Ĉu vi certas, ke vi volas forigi {0} el viaj fluoj?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Ĉu vi certas, ke vi volas forigi ĉi tion el viaj fluoj?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Ĉu vi certas, ke vi volas forĵeti ĉi tiun malneton?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Ĉu vi certas, ke vi volas forĵeti ĉi tiun afiŝon?" @@ -1131,29 +1186,26 @@ msgstr "Arto" msgid "Artistic or non-erotic nudity." msgstr "Arta aŭ ne-erotika nudeco." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "Asigni temon por algoritmo" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Almenaŭ 3 signoj" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Nordobrilo" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Opcioj por aŭtomata ludigo translokiĝis al la <0>agordoj pri Enhavo kaj aŭdvidaĵoj." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Aŭtomate ludi videaĵojn kaj GIF-ojn" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Aŭtomate ludi videaĵojn kaj GIF-ojn" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Reen" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Reveni al babilejoj" @@ -1195,28 +1247,44 @@ msgstr "Antaŭ ol krei startpakon, vi devas unue konfirmi vian retpoŝtadreson." msgid "Before you can accept this chat request, you must first verify your email." msgstr "Antaŭ ol vi povos mesaĝi, vi devas unue konfirmi vian retpoŝtadreson." +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "Antaŭ ol vi povos ricevi sciigojn pri afiŝoj de {name}, unue vi devas konfirmi vian retpoŝtadreson." + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "Antaŭ ol vi povos mesaĝi alian uzanton, vi devas unue konfirmi vian retpoŝtadreson." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "Komenci" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "Komencu procezon de garantio pri aĝo" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "Komencu procezon de garantio pri aĝo kompletigante la kampojn sube." + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Naskiĝtago" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Bloki" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Bloki" msgid "Block account" msgstr "Bloki konton" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Ĉu bloki konton?" @@ -1262,20 +1330,20 @@ msgstr "Bloki uzanton" msgid "Block User" msgstr "Bloki uzanton" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Blokita" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Blokitaj kontoj" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Blokitaj kontoj" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blokitaj kontoj ne povas respondi en viaj fadenoj, mencii vin nek alimaniere interagi kun vi." @@ -1284,11 +1352,11 @@ msgstr "Blokitaj kontoj ne povas respondi en viaj fadenoj, mencii vin nek aliman msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Blokitaj kontoj ne povas respondi en viaj fadenoj, mencii vin nek alimaniere interagi kun vi. Vi ne vidos ilian enhavon kaj ili ne povos vidi la vian." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Blokita afiŝo." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blokado ne malebligas al ĉi tiu etikedilo meti etikedojn sur vian konton." @@ -1309,11 +1377,12 @@ msgstr "Blogo" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky ne povas konfirmi la aŭtentecon de la donita dato." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1347,6 +1416,14 @@ msgstr "Bluesky ne montros vian profilon kaj afiŝojn al elsalutintaj uzantoj. A msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky aktive konfirmos rimarkindajn kaj aŭtentikajn kontojn." +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Malklarigi bildojn kaj elfiltri el fluoj" msgid "Books" msgstr "Libroj" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Foliumi pli da kontoj sur la paĝo Esplori" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Foliumi pli da fluoj sur la paĝo Esplori" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Foliumi pli da proponoj" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Foliumi pli da proponoj sur la paĝo Esplori" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Komerco" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "De {0}" @@ -1428,15 +1502,23 @@ msgstr "De {0}" msgid "By <0>{0}" msgstr "De <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "Daŭrigante, vi konsentas pri la <0>Uzokondiĉoj de KWS kaj kvitancas ke KWS konservos vian konfirmitan staton kun via haketita retpoŝtadreso graŭ la <1>Regularo pri privateco de KWS. Tio signifas, ke vi nebezonos rekonfirmi la sekvan fojon vi uzos ĉi tiun retpoŝtadreson por aliaj apoj, ludoj kaj servoj funkciigitaj de KWS-teknologio." + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Kreante konton vi konsentas pri la <0>Regularo pri privateco." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Kreante konton vi konsentas pri la <0>Uzokondiĉoj kaj <1>Regularo pri privateco." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Kreante konton vi konsentas pri la <0>Uzokondiĉoj." @@ -1448,14 +1530,17 @@ msgstr "De vi" msgid "Camera" msgstr "Fotilo" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Fotilo" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Nuligi" @@ -1500,11 +1582,7 @@ msgstr "Nuligi forigon de konto" msgid "Cancel image crop" msgstr "Nuligi stucon de bildo" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Nuligi redakton de profilo" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Nuligi citadon de afiŝo" @@ -1516,14 +1594,10 @@ msgstr "Nuligi reaktivigon kaj elsaluti" msgid "Cancel search" msgstr "Nuligi serĉon" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Nuligas malfermon de la ligita retejo" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Ne eblas interagi kun blokita uzanto" @@ -1534,7 +1608,7 @@ msgstr "Subtekstoj (.vtt)" #: src/view/com/composer/videos/SubtitleDialog.tsx:40 #: src/view/com/composer/videos/SubtitleDialog.tsx:55 msgid "Captions & alt text" -msgstr "Subtekstoj k alternativa teksto" +msgstr "Subtekstoj kaj alternativa teksto" #: src/screens/Settings/components/Email2FAToggle.tsx:31 msgid "Change" @@ -1553,17 +1627,12 @@ msgstr "Ŝanĝi apan piktogramon al \"{0}\"" msgid "Change app language" msgstr "Ŝanĝi apan lingvon" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Ŝanĝi retpoŝtadreson" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Ŝanĝi identigilon" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Ŝanĝi kontrol-servon" @@ -1579,14 +1648,6 @@ msgstr "Ŝanĝi lingvon de afiŝo al {suggestedLanguageName}" msgid "Change report reason" msgstr "Ŝanĝi kialon de raporto" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Ŝanĝi vian retpoŝtadreson" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Ŝanĝi vian retpoŝtadreson" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Ŝanĝas apan piktogramon" @@ -1596,10 +1657,15 @@ msgstr "Ŝanĝas apan piktogramon" msgid "Changes hosting provider" msgstr "Ŝanĝas la provizanton de gastigo" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "Ŝanĝoj konservitaj" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Babilejoj" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Babilejo forigita" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "Babilejaj mesaĝoj - silento" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "Babilejaj mesaĝoj - sono" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Babilejo silentigita" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "Ricevujo de babilpetoj" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Babilpetoj" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Agordoj de babilejo" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Agordoj de babilejo" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Babilejo malsilentigita" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Babilejoj" @@ -1661,7 +1738,7 @@ msgstr "En via ricevujo serĉu retmesaĝon kun konfirmkodo, kaj entajpu ĝin sub msgid "Choose domain verification method" msgstr "Elektu metodon por konfirmi vian domajnon" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Elektu fluojn" @@ -1669,7 +1746,7 @@ msgstr "Elektu fluojn" msgid "Choose for me" msgstr "Elektu por mi" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Elektu homojn" @@ -1683,25 +1760,25 @@ msgstr "Elekti ĉi tiun koloron kiel profilbildo" #: src/view/com/auth/server-input/index.tsx:130 msgid "Choose your account provider" -msgstr "Elekti vian kontogastiganton" +msgstr "Elektu vian kontogastiganton" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Elektu vian propran novaĵfluon! Fluoj konstruitaj de la komunumo helpas vin trovi enhavon, kiun vi amos." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Elektu vian pasvorton" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Elektu vian uzantnomon" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Forigi ĉiujn konservitajn datumojn" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Forigi ĉiujn konservitajn datumojn (restartigu poste)" @@ -1714,23 +1791,27 @@ msgstr "Viŝi bildan kaŝmemoron" msgid "Clear search query" msgstr "Forigi serĉotekston" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "Alklaku por informoj" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "alklaku ĉi tie" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "Alklaku ĉi tie por restarti la konfimadan procezon." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "Alklaku ĉi tie por ĝisdatigi vian retpoŝtadreson" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Alklaku por malebligi citafiŝojn de ĉi tiu afiŝo." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Alklaku por ebligi citafiŝojn de ĉi tiu afiŝo." @@ -1750,14 +1831,16 @@ msgstr "Klimato" msgid "Clip 🐴 clop 🐴" msgstr "🐮 Dek bovinoj 🐮" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "🐮 Dek bovinoj 🐮" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Fermi" @@ -1789,13 +1876,15 @@ msgstr "Fermi averton" msgid "Close bottom drawer" msgstr "Fermi la suban flankmenuon" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Fermi la dialogujon" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Fermi la flankmenuon" @@ -1804,7 +1893,7 @@ msgstr "Fermi la flankmenuon" msgid "Close emoji picker" msgstr "Fermi emoĝi-elektilon" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Fermi la GIF-dialogujon" @@ -1822,7 +1911,7 @@ msgstr "Fermi bildmontrilon" msgid "Close menu" msgstr "Fermi menuon" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Fermi ĉi tiun dialogujon" @@ -1830,7 +1919,7 @@ msgstr "Fermi ĉi tiun dialogujon" msgid "Closes password update alert" msgstr "Fermas la averton pri pasvorta ĝisdatigo" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "Fermas afiŝan redaktilon kaj forĵetas afiŝan malneton" @@ -1843,16 +1932,16 @@ msgstr "Fermas la emoĝi-elektilon" msgid "Closes viewer for header image" msgstr "Fermas la montrilon de la kapa bildo" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Maletendi liston de uzantoj" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Maletendas liston de uzantoj por donita sciigo" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Kolora reĝimo" @@ -1870,7 +1959,8 @@ msgstr "Komedio" msgid "Comics" msgstr "Komiksoj" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Komunumaj gvidnormoj" @@ -1879,38 +1969,34 @@ msgstr "Komunumaj gvidnormoj" msgid "Complete onboarding and start using your account" msgstr "Finu la lernilon kaj komencu uzi vian konton" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Plenumi la defion" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Krei novan afiŝon" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Krei afiŝojn maksimume {0, plural, one {# signon}other {# signojn}} longajn" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Krei respondon" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Densigado de videaĵo..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Konfiguru enhavan filtradon por kategorio: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Agordita en <0>agordoj de kontrolado." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Konfirmi lingvajn agordojn de enhavo" msgid "Confirm delete account" msgstr "Konfirmu kontan forigon" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Konfirmu vian aĝon:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Konfirmu vian naskiĝdaton" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Konfirmu vian naskiĝdaton" msgid "Confirmation code" msgstr "Konfirmkodo" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Konfirmkodo" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Konektado..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "Konekta problemo" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "Kontaktu nian kontrolad-teamon" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Kontakti subtenejon" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "Kontaktu nin" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Enhavo kaj aŭdvidaĵoj" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Enhavo kaj aŭdvidaĵoj" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Enhavo kaj aŭdvidaĵoj" @@ -1977,7 +2069,8 @@ msgstr "Enhavo kaj aŭdvidaĵoj" msgid "Content Blocked" msgstr "Enhavo blokita" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Filtriloj por la enhavo" @@ -2006,10 +2099,12 @@ msgstr "Averto de enhavo" msgid "Content warnings" msgstr "Avertoj de enhavo" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Fono de kuntekstmenuo, alklaku por fermi la menuon." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Daŭrigi" msgid "Continue as {0} (currently signed in)" msgstr "Daŭrigi kiel {0} (nune ensalutinta)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "Daŭrigi fadenon" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Daŭrigi fadenon..." @@ -2029,6 +2129,10 @@ msgstr "Daŭrigi fadenon..." msgid "Continue to next step" msgstr "Pluiri al la sekva paŝo" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "Konversacio" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Kopiita" msgid "Copied build version to clipboard" msgstr "Versio kopiita al tondujo" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Kopias version al tondujo" msgid "Copy" msgstr "Kopii" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "Kopii ĉiuokaze" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Kopii apan pasvorton" @@ -2087,8 +2187,8 @@ msgstr "Kopii apan pasvorton" msgid "Copy at:// URI" msgstr "Kopii URI-on at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Kopii la DID-on de la aŭtoro" @@ -2120,10 +2220,10 @@ msgstr "Kopii ligilon" msgid "Copy link to list" msgstr "Kopii ligilon al listo" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Kopii ligilon al afiŝo" @@ -2136,18 +2236,18 @@ msgstr "Kopii ligilon al profilo" msgid "Copy link to starter pack" msgstr "Kopii ligilon al startpako" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Kopii mesaĝan tekston" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Kopii URI-on at:// de afiŝo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Kopii afiŝan tekston" @@ -2159,11 +2259,25 @@ msgstr "Kopii QR-kodon" msgid "Copy TXT record value" msgstr "Kopii la valoron de la TXT-rikordo" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Regularo pri kopirajto" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "Ne eblis konekti al propra fluo" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "Ne eblis konekti al la servo de fluo" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "Ne eblis trovi profilon" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "Ne eblis silentigi babilejon" msgid "Could not process your video" msgstr "Ne eblis trakti vian videaĵon" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "Ne eblis konservi ŝanĝojn: {0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "Ne eblis ĝisdatigi sciigajn agordojn" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Krei" @@ -2195,7 +2317,7 @@ msgstr "Krei QR-kodon por startpako" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Krei startpakon" @@ -2205,21 +2327,22 @@ msgstr "Krei startpakon por mi" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Krei konton" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Krei konton" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Krei konton" @@ -2241,7 +2364,7 @@ msgstr "Krei plian" msgid "Create new account" msgstr "Krei novan konton" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Krei raporton pri {0}" @@ -2266,24 +2389,24 @@ msgstr "Propra" #: src/components/dialogs/Embed.tsx:144 msgid "Customization options" -msgstr "Tajloradaj opcioj" +msgstr "Adaptadaj opcioj" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Agordu, kiu povas interagi kun ĉi tiu afiŝo." #: src/screens/Onboarding/Layout.tsx:56 msgid "Customizes your Bluesky experience" -msgstr "Tajloras vian ĝuon ĉe Bluesky" +msgstr "Adaptas vian ĝuon ĉe Bluesky" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Malhela" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Malhela" @@ -2292,21 +2415,21 @@ msgstr "Malhela" msgid "Dark mode" msgstr "Malhela reĝimo" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Malhela etoso" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Naskiĝdato" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Malaktivigi konton" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Sencimiga kontrolo" @@ -2314,7 +2437,7 @@ msgstr "Sencimiga kontrolo" msgid "Debug panel" msgstr "Panelo de sencimigo" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Defaŭlta" @@ -2322,8 +2445,8 @@ msgstr "Defaŭlta" msgid "Default icons" msgstr "Defaŭltaj piktogramoj" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Defaŭltaj piktogramoj" msgid "Delete" msgstr "Forigi" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Forigi konton" @@ -2355,7 +2478,7 @@ msgstr "Ĉu forigi apan pasvorton?" msgid "Delete chat" msgstr "Forigi babilejon" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Forigi babilan deklaro-rikordon" @@ -2370,7 +2493,7 @@ msgstr "Forigi konversacion" msgid "Delete Conversation" msgstr "Forigi konversacion" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Forigi por mi" @@ -2378,11 +2501,11 @@ msgstr "Forigi por mi" msgid "Delete list" msgstr "Forigi liston" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Forigi mesaĝon" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Forigi mesaĝon por mi" @@ -2390,9 +2513,9 @@ msgstr "Forigi mesaĝon por mi" msgid "Delete my account" msgstr "Forigi mian konton" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Forigi afiŝon" @@ -2409,11 +2532,11 @@ msgstr "Ĉu forigi startpakon?" msgid "Delete this list?" msgstr "Ĉu forigi ĉi tiun liston?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Ĉu forigi ĉi tiun afiŝon?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Forigita" @@ -2422,15 +2545,20 @@ msgstr "Forigita" msgid "Deleted Account" msgstr "Forigita konto" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "Forigita listo" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Forigita afiŝo." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Priskribo" @@ -2447,12 +2575,12 @@ msgstr "Priskribo estas tro longa. La maksimuma nombro da signoj estas {DESCRIPT msgid "Descriptive alt text" msgstr "Priskriba alternativa teksto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Malligi citaĵon" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Ĉu malligi citatan afiŝon?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Programista reĝimo ŝaltita" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Programistaj opcioj" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Dialogujo: kiu povas interagi kun ĉi tiu afiŝo" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Malheleta" @@ -2492,27 +2620,27 @@ msgstr "Malŝalti retpoŝtan 2FA-on" msgid "Disable Email 2FA" msgstr "Malŝalti retpoŝtan 2FA-on" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" -msgstr "Malŝalti tuŝ-retrokuplada prikomentado" +msgstr "Malŝalti tuŝ-retrokupladan prikomentadon" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Malŝalti subtekstojn" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Malŝaltita" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Forĵeti" @@ -2520,11 +2648,11 @@ msgstr "Forĵeti" msgid "Discard changes?" msgstr "Ĉu forĵeti ŝanĝojn?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Ĉu forĵeti malneton?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Ĉu forĵeti afiŝon?" @@ -2542,7 +2670,7 @@ msgstr "Malkovri fluojn" msgid "Discover new custom feeds" msgstr "Malkovri novajn proprajn fluojn" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Malkovri novajn fluojn" @@ -2550,7 +2678,7 @@ msgstr "Malkovri novajn fluojn" msgid "Dismiss" msgstr "Ignori" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Ignori eraron" @@ -2562,26 +2690,26 @@ msgstr "Ignori enkondukon" msgid "Dismiss interests" msgstr "Forĵeti interesojn" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "Ignori mesaĝon" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Ignori ĉi tiun sekcion" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Montri pli grandajn ŝildojn de alternativa teksto" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Montrata nomo" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Montrata nomo" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Montrata nomo tro longas" @@ -2603,15 +2731,11 @@ msgstr "Ne apliku ĉi tiun silentigitan vorton al uzantoj, kiujn vi sekvas" msgid "Does not include nudity." msgstr "Ne inkluzivas nudecon." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Ne komencas aŭ finas per dividstreko" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Domajno konfirmita!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Ĉu vi ne havas kodon aŭ bezonas novan? <0>Alklaku ĉi tie." @@ -2619,6 +2743,15 @@ msgstr "Ĉu vi ne havas kodon aŭ bezonas novan? <0>Alklaku ĉi tie." msgid "Don't see an email? <0>Click here to resend." msgstr "Ĉu vi ne vidas retmesaĝon? <0>Alklaku ĉi tie por resendi." +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "Ne montri denove" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "Ne maltrankvilu! Ĉiuj ekzistantaj mesaĝoj kaj agordoj estas konservitaj kaj estos disponeblaj, post kiam vi konfirmos esti plenkreskulo." + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "Duoble tuŝetu aŭ longe premu la mesaĝon por aldoni reagon" msgid "Double tap to close the dialog" msgstr "Duoble tuŝeti por fermi la dialogujon" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Duoble tuŝeti por ŝati" @@ -2673,7 +2806,7 @@ msgstr "Elŝuti Bluesky-apon" msgid "Download CAR file" msgstr "Elŝuti CAR-dosieron" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Demetu bildojn por aldoni" @@ -2689,18 +2822,10 @@ msgstr "ekz. ludoviko" msgid "e.g. Alice Lastname" msgstr "ekz. Ludoviko Familinomo" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "ekz. Ludoviko Zamenhof" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "ekz. ludoviko.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "ekz. Artisto, hundo-amanto kaj legemulo." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Ekz. artista nudeco." @@ -2725,10 +2850,11 @@ msgstr "ekz. Uzantoj kiuj ripete respondas per reklamoj." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Ĉiu kodo funkcias unufoje. Vi ricevos pli da invitaj kodoj periode." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Redakti" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Redakti" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Redakti profilbildon" @@ -2749,12 +2875,12 @@ msgstr "Redakti fluojn" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Redakti bildon" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Redakti interagajn agordojn" @@ -2770,39 +2896,39 @@ msgstr "Redakti detalojn de listo" #: src/view/com/profile/ProfileMenu.tsx:317 #: src/view/com/profile/ProfileMenu.tsx:323 msgid "Edit live status" -msgstr "Redakti elsendfluan statuson" +msgstr "Redakti tujelsendan staton" #: src/view/com/modals/CreateOrEditList.tsx:228 msgid "Edit Moderation List" msgstr "Redakti la kontrol-liston" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Redakti miajn fluojn" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Redakti mian profilon" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "Redakti sciigojn de {0}" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Redakti homojn" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Redakti interagajn agordojn de afiŝo" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Redakti profilon" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Redakti profilon" @@ -2814,19 +2940,11 @@ msgstr "Redakti startpakon" msgid "Edit User List" msgstr "Redakti liston de uzantoj" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Elekti kiu povas respondi" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Redakti vian montratan nomon" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Redakti priskribon de via profilo" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Redakti vian startpakon" @@ -2839,8 +2957,8 @@ msgstr "Eduko" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "Aŭ la kreinto de ĉi tiu listo blokis vin aŭ vi blokis la kreinton." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "Retpoŝtadreso" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "Retpoŝta 2FA malŝaltita" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "Retpoŝta 2FA ŝaltita" @@ -2865,10 +2983,6 @@ msgstr "Retmesaĝo resendita" msgid "Email sent!" msgstr "Retmesaĝo sendita!" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "Retpoŝtadreso ĝisdatigita!" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "Retpoŝtadresa konfirmado finita!" @@ -2883,8 +2997,8 @@ msgstr "Enkorpigi HTML-kodon" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Enkorpigi afiŝon" @@ -2892,7 +3006,7 @@ msgstr "Enkorpigi afiŝon" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Enkorpigi ĉi tiun afiŝon en vian retejon. Simple kopiu la jenan kodaĵon kaj algluu ĝin en la HTML-kodo de via retejo." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Enkorpigita videoludilo" @@ -2906,7 +3020,7 @@ msgstr "Ŝalti" msgid "Enable {0} only" msgstr "Ŝalti nur {0}" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Videbligi poradoltan enhavon" @@ -2919,16 +3033,20 @@ msgstr "Ŝalti retpoŝtan 2FA-on" msgid "Enable external media" msgstr "Ŝalti eksterajn aŭdvidaĵojn" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Ŝalti la aŭdvidaĵajn ludliojn por" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Ŝalti prioritatajn sciigojn" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "Por ŝalti sciigojn pri konto, vizitu ties profilo kaj premu la <0>sonorilan piktogramon <1/>." -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "Ŝalti pujŝajn sciigojn" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Ŝalti subtekstojn" @@ -2941,17 +3059,14 @@ msgstr "Ŝalti nur ĉi tiun fonton" msgid "Enable trending topics" msgstr "Videbligi popularajn temojn" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Videbligi popularajn videaĵojn en via fluo Discover" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Videbligi popularajn videaĵojn en via fluo Discover." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Ŝaltita" @@ -2963,7 +3078,7 @@ msgstr "Fino de la fluo" msgid "Ensure you have selected a language for each subtitle file." msgstr "Certiĝu, ke vi elektis lingvon por ĉiu subtekst-dosiero." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Entajpu pasvorton" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Entajpu vorton aŭ kradvorton" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "Entajpu kodon" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Entajpu kodon" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Ŝalti plenekranon" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Entajpu vian naskiĝdaton" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Entajpu vian retpoŝtadreson" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Entajpu vian novan retpoŝtadreson malsupre." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Entajpu vian pasvorton" @@ -3022,7 +3129,7 @@ msgstr "Entajpu vian pasvorton" msgid "Enter your username and password" msgstr "Entajpu vian uzantnomon kaj pasvorton" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Ŝaltas plenekranon" @@ -3030,44 +3137,63 @@ msgstr "Ŝaltas plenekranon" msgid "Entertainment" msgstr "Amuzo" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Eraro" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "Eraris ŝargante afiŝon" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "Eraris ŝargante preferon" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "Erara mesaĝo" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Eraro okazis dum konservado de dosiero" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." -msgstr "Eraro okazis ricevante la captcha-respondon." +msgstr "Eraris ricevante la captcha-respondon." #: src/screens/Onboarding/StepInterests/index.tsx:183 msgid "Error:" msgstr "Eraro:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "Eraro: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Ĉiuj" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Ĉiuj povas respondi" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Ĉiuj povas respondi al ĉi tiu afiŝo." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Ĉiuj" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "Ĉio alia" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Ekskluzivi uzantojn, kiujn vi sekvas" msgid "Excludes users you follow" msgstr "Ekskluzivas uzantojn, kiujn vi sekvas" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Malŝalti plenekranon" @@ -3106,24 +3232,28 @@ msgstr "Eliri el la bildmontro" msgid "Expand alt text" msgstr "Etendi alternativan tekston" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Etendi liston de uzantoj" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Etendi aŭ maletendi la tutan afiŝon, al kiu vi respondas" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "Etendi afiŝan tekston" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Etendas aŭ maletendas la tekston de la afiŝo" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "Espektas uri-on gvidantan al rikordo" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Eksperimentaj" @@ -3153,15 +3283,15 @@ msgstr "Poradolta aŭ maltrankviliga aŭdvidaĵo." msgid "Explicit sexual images." msgstr "Detalaj seksumaj bildoj." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "Esplori" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Eksporti miajn datumojn" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Eksteraj aŭdvidaĵoj" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Eksteraj aŭdvidaĵoj eblas permesi al retejoj kolekti informojn pri vi kaj via aparato. Neniu informo estos sendota aŭ postulota antaŭ vi premos la butonon \"ludi\"." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Preferoj pri eksteraj aŭdvidaĵoj" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "Malsukcesis akcepti babilejon" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "Malsukcesis aldoni emoĝian reagon" @@ -3211,8 +3341,8 @@ msgstr "Malsukcesis krei apan pasvorton. Bonvolu reprovi." msgid "Failed to create conversation" msgstr "Malsukcesis krei konversacion" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Malsukcesis krei startpakon" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "Malsukcesis forigi babilejon" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Malsukcesis forigi mesaĝon" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Malsukcesis forigi afiŝon, bonvolu reprovi" @@ -3238,8 +3368,8 @@ msgstr "Malsukcesis forigi afiŝon, bonvolu reprovi" msgid "Failed to delete starter pack" msgstr "Malsukcesis forigi startpakon" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "Malsukcesis ŝargi konversaciojn" @@ -3250,14 +3380,32 @@ msgstr "Malsukcesis ŝargi konversaciojn" msgid "Failed to load feeds preferences" msgstr "Malsukcesis ŝargi preferojn de fluoj" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Malsukcesis ŝargi GIF-ojn" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "Malsukcesis ŝargi sciigajn agordojn." + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Malsukcesis ŝargi antaŭajn mesaĝojn" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "Malsukcesis ŝargi preferon." + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Malsukcesis ŝargi propontiajn fluojn" msgid "Failed to load suggested follows" msgstr "Malsukcesis ŝargi proponitajn kontojn" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "Malsukcesis marki ĉiujn petojn kiel legitaj" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Malsukcesis alpingli afiŝon" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "Malsukcesis forigi emoĝian reagon" @@ -3291,15 +3439,11 @@ msgstr "Malsukcesis forigi konfirmon" msgid "Failed to save image: {0}" msgstr "Malsukcesis konservi bildon: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Malsukcesis konservi preferojn de sciigoj, bonvolu reprovi" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "Malsukcesis konservi agordojn. Bonvolu reprovi." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "Malsukcesis konservi viajn interesojn." @@ -3318,7 +3462,7 @@ msgstr "Malsukcesis sendi retmesaĝon, bonvolu reprovi." msgid "Failed to submit appeal, please try again." msgstr "Malsukcesis sendi apelacion, bonvole reprovu." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Malsukcesis baskuligi la silentigon de fadeno, bonvolu reprovi" @@ -3335,7 +3479,11 @@ msgstr "Malsukcesis ĝisdatigi retpoŝtadreson, bonvolu reprovi." msgid "Failed to update feeds" msgstr "Malsukcesis ĝisdatigi fluojn" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "Malsukcesis ĝisdatigi sciigan deklaron" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Malsukcesis ĝisdatigi agordojn" @@ -3354,15 +3502,23 @@ msgstr "Malsukcesis konfirmi retpoŝtadreson, bonvolu reprovi." msgid "Failed to verify handle. Please try again." msgstr "La aŭtentikigo de via identigilo malsukcesis. Bonvolu reprovi." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Fluo" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Fluo de {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "Kreinto de fluo" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "Identigilo de fluo" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Menuo de la fluo" @@ -3371,35 +3527,39 @@ msgstr "Menuo de la fluo" msgid "Feed toggle" msgstr "Baskuligi fluon" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "Fluo ne disponebla" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Prikomentado" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Prikomento sendita!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Fluoj" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Fluoj estas propraj algoritmoj, kiujn uzantoj konstruas kun malmulto da programada scipovo. <0/> por pli da informo." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Fluoj ĝisdatigitaj!" @@ -3428,6 +3588,14 @@ msgstr "Filtri serĉon laŭ lingvo" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtri serĉon laŭ lingvo (nune: {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "Filtri kiu havos eblon ŝalti ricevadon de sciigoj pri via agado" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "Filtri de kiuj vi ricevos sciigojn" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Finante" @@ -3448,7 +3616,7 @@ msgstr "Trovi homojn por sekvi" msgid "Find posts, users, and feeds on Bluesky" msgstr "Trovi afiŝojn, uzantojn kaj fluojn ĉe Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Fini" @@ -3456,17 +3624,17 @@ msgstr "Fini" msgid "Fitness" msgstr "Fizika bontenado" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Plata nigra" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Plata blua" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Plata blanka" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Fleksebla" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Sekvi" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Sekvi {0}" @@ -3518,7 +3686,7 @@ msgstr "Sekvi konton" msgid "Follow all" msgstr "Sekvi ĉiujn" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Sekvi reciproke" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Sekvi reciproke" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Sekvata de <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Sekvata de <0>{0} kaj {1, plural, one {# alia} other {# aliaj}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Sekvata de <0>{0} kaj <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Sekvata de <0>{0}, <1>{1}, kaj {2, plural, one {# alia} other {# aliaj}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Sekvantoj de @{0}, kiujn vi konas" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Sekvantoj, kiujn vi konas" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Sekvas" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Sekvas" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Sekvas {0}" @@ -3579,8 +3751,8 @@ msgstr "Sekvas {handle}" msgid "Following feed preferences" msgstr "Preferoj de la fluo pri sekvatoj" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Preferoj de la fluo pri sekvatoj" @@ -3592,11 +3764,11 @@ msgstr "Sekvas vin" msgid "Follows You" msgstr "Sekvas vin" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Tiparo" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Tipara grando" @@ -3613,7 +3785,7 @@ msgstr "Pro sekurecaj kialoj, ni sendos konfirmkodon al via retpoŝtadreso." msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Por sekurecaj kialoj, vi ne povos vidi ĉi tion denove. Se vi perdas ĉi tiun apan pasvorton, vi devos generi novan." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Por la plej bona ĝuo, ni rekomendas uzi la tiparon de la etoso." @@ -3643,11 +3815,15 @@ msgstr "Ĉu vi forgesis?" msgid "Frequently Posts Unwanted Content" msgstr "Ofte afiŝas nedeziratan enhavon" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "De" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "De @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "De <0/>" @@ -3660,14 +3836,68 @@ msgstr "Bildgalerio" msgid "Generate a starter pack" msgstr "Generi startpakon" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Akiri helpon" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "Ricevi sciigojn, kiam homoj eksekvos vin." + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "Ricevi sciigojn, kiam homoj ŝatos afiŝojn, kiujn vi reafiŝis." + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "Ricevi sciigojn, kiam homoj ŝatos viajn afiŝojn." + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "Ricevi sciigojn, kiam homoj mencios vin." + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "Ricevi sciigojn, kiam homoj citos viajn afiŝojn." + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "Ricevi sciigojn, kiam homoj respondos al viaj afiŝoj." + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "Ricevi sciigojn, kiam homoj reafiŝos afiŝojn, kiujn vi reafiŝis." + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "Ricevi sciigojn, kiam homoj reafiŝos viajn afiŝojn." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "Esti sciigota pri novaj afiŝoj" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Esti sciigota pri novaj afiŝoj kaj respondoj de kontoj kiujn vi elektis." + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "Esti sciigota pri novaj afiŝoj de {name}" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "Esti sciigata pri agado de ĉi tiu konto" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "Esti sciigota kiam {name} afiŝos" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "Esti sciigota kiam iu afiŝos" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "Enkonduko" @@ -3688,14 +3918,16 @@ msgstr "Donu vizaĝon al via profilo" msgid "Glaring violations of law or terms of service" msgstr "Evidentaj malobservoj de la leĝo aŭ uzokondiĉoj" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3733,23 +3965,29 @@ msgstr "Hejmen" #: src/view/com/profile/ProfileMenu.tsx:318 #: src/view/com/profile/ProfileMenu.tsx:325 msgid "Go live" -msgstr "Elsendflui" +msgstr "Tujelsendi" #: src/components/live/GoLiveDialog.tsx:93 #: src/components/live/GoLiveDialog.tsx:98 #: src/components/live/GoLiveDialog.tsx:232 #: src/components/live/GoLiveDialog.tsx:241 msgid "Go Live" -msgstr "Elsendflui" +msgstr "Tujelsendi" #: src/components/live/GoLiveDialog.tsx:174 msgid "Go live for" -msgstr "Elsendflui dum" +msgstr "Tujelsendi dum" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "Iri al la profilo de {firstAuthorName}" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "Iri al kontaj agordoj" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Iri al konversacio kun {0}" @@ -3779,8 +4017,8 @@ msgstr "Maldeca aŭdvidaĵo" msgid "Half way there!" msgstr "Duonvoje!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Identigilo" @@ -3797,7 +4035,7 @@ msgstr "Identigilo ŝanĝita!" msgid "Handle too long. Please try a shorter one." msgstr "Tiu identigilo tro longas. Bonvolu provi malpli longan." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Tuŝ-retrokuplado" @@ -3806,7 +4044,7 @@ msgstr "Tuŝ-retrokuplado" msgid "Harassment, trolling, or intolerance" msgstr "Molestado, trolado aŭ netoleremo" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Kradvorto" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Kradvorto {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "Ĉu vi havas kodon? <0>Alklaku ĉi tie." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Ĉu vi havas problemon?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Helpo" @@ -3839,8 +4077,13 @@ msgstr "Afiŝu foton aŭ kreu profilbildon por ke homoj sciu, ke vi ne estas rob msgid "Here is your app password!" msgstr "Jen via apa pasvorto!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Kaŝita" @@ -3848,16 +4091,16 @@ msgstr "Kaŝita" msgid "Hidden by your moderation settings." msgstr "Kaŝita laŭ viaj agordoj pri kontrolado." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Kaŝita listo" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,27 +4109,27 @@ msgstr "Kaŝita listo" msgid "Hide" msgstr "Kaŝi" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Kaŝi" #: src/components/dialogs/Embed.tsx:128 msgid "Hide customization options" -msgstr "Kaŝi tajloradajn opciojn" +msgstr "Kaŝi adaptadajn opciojn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Kaŝi afiŝon por mi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Kaŝi respondon por ĉiuj" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Kaŝi respondon por mi" @@ -3894,12 +4137,12 @@ msgstr "Kaŝi respondon por mi" msgid "Hide this card" msgstr "Kaŝi ĉi tiun karton" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Ĉu kaŝi ĉi tiun afiŝon?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Ĉu kaŝi ĉi tiun respondon?" @@ -3913,11 +4156,11 @@ msgstr "Kaŝi popularajn temojn" msgid "Hide trending topics?" msgstr "Ĉu kaŝi popularajn temojn?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Ĉu kaŝi popularajn videaĵojn?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Kaŝi la liston de uzantoj" @@ -3926,32 +4169,32 @@ msgstr "Kaŝi la liston de uzantoj" msgid "Hide verification badges" msgstr "Kaŝi konfirmajn ŝildojn" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Kaŝas la enhavon" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm, ia problemo okazis dum kontakto kun la servilo de la fluo. Bonvolu sciigi posedanton de la fluo pri tiu problemo." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm, la servilo de fluoj ŝajne estis misagordita. Bonvolu sciigi la posedanton de la fluo pri tiu problemo." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm, la servilo de la fluo ŝajnas esti eksterreta. Bonvolu sciigi posedanton de la fluo pri ĉi tiu problemo." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm, la servilo de la fluo misrespondis. Bonvolu sciigi posedanton de la fluo pri ĉi tiu problemo." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, ni ne sukcesas trovi ĉi tiun fluon. Eble ĝi estis forigita." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmmmm, ŝajne ni havas problemon ŝargi ĉi tiun datumon. Rigardu sube por pliaj detaloj. Se la problemo daŭras, bonvolu kontakti nin." @@ -3959,15 +4202,15 @@ msgstr "Hmmmm, ŝajne ni havas problemon ŝargi ĉi tiun datumon. Rigardu sube p msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, ni ne povis ŝargi tiun kontrol-servon." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Momenton! Ni iom post iom donas aliron al la videaĵo, kaj vi ankoraŭ atendas en vico. Rekontrolu baldaŭ!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Hejmo" @@ -3982,24 +4225,20 @@ msgstr "Provizanto de gastigo" #: src/screens/Search/modules/ExploreTrendingTopics.tsx:194 msgid "Hot" -msgstr "Popularaj" +msgstr "Populara" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" -msgstr "La plej popularaj respondoj unue" +msgstr "Furoraj respondoj unue" #: src/components/dialogs/InAppBrowserConsent.tsx:62 #: src/components/dialogs/InAppBrowserConsent.tsx:66 msgid "How should we open this link?" msgstr "Kiel ni malfermu ĉi tiun ligilon?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,9 +4258,9 @@ msgstr "Mi komprenas" msgid "If alt text is long, toggles alt text expanded state" msgstr "Se alternativa teksto estas longa, baskulas ĝian malvolvon" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." -msgstr "Se vi ankoraŭ ne estas adolto laŭ la leĝaro de via lando, via patr(in)o aŭ kuratoro devas legi ĉi tiujn kondiĉojn en via nomo." +msgstr "Se vi ankoraŭ ne estas plenkreskulo laŭ la leĝaro de via lando, via patr(in)o aŭ kuratoro devas legi ĉi tiujn kondiĉojn en via nomo." #: src/view/screens/ProfileList.tsx:765 msgid "If you delete this list, you won't be able to recover it." @@ -4029,13 +4268,13 @@ msgstr "Se vi forigos ĉi tiun liston, vi ne povos restaŭri ĝin." #: src/screens/Settings/components/ChangeHandleDialog.tsx:267 msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." -msgstr "Se vi havas vian propran domajnon, vi povas uzi ĝin kiel vian identigilon. Ĉi tio permesas al vi aŭtentikigi vin mem. <0>Eksciu pli." +msgstr "Se vi havas vian propran domajnon, vi povas uzi ĝin kiel via identigilo. Ĉi tio permesas al vi aŭtentikigi vin mem. <0>Eksciu pli." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "Se vi bezonas ĝisdatigi vian retpoŝtadreson, <0>alklaku ĉi tie." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Se vi forigos ĉi tiun afiŝon, vi ne povos restaŭri ĝin." @@ -4047,6 +4286,10 @@ msgstr "Se vi ĝisdatigos vian retpoŝtadreson, retpoŝta 2FA estos malŝaltota. msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Se vi volas ŝanĝi vian pasvorton, ni sendos al vi kodon por konfirmi, ke ĉi tiu estas via konto." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "Se vi volas limigi kiu povos ricevi sciigojn pri agado de via konto, vi povas ŝanĝi tion en <0>Agordoj → Privateco kaj sekureco." + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "Se vi estas programisto, vi povas gastigi vian propran servilon." @@ -4091,13 +4334,41 @@ msgstr "Identoprunto aŭ malveraj asertoj pri identeco aŭ aneco" msgid "Impersonation, misinformation, or false claims" msgstr "Identoprunto, misinformado aŭ malveraj asertoj" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "En-apaj" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "En-apaj sciigoj" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "En-apaj, Ĉiuj" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "En-apaj, Homoj kiujn vi sekvas" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "En-apaj, Puŝaj" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "En-apaj, Puŝaj, Ĉiuj" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "En-apaj, Puŝaj, Homoj kiujn vi sekvas" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Malkonvenaj mesaĝoj aŭ maldecaj ligiloj" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "Ricevujo malplenas!" @@ -4105,7 +4376,7 @@ msgstr "Ricevujo malplenas!" msgid "Incorrect username or password" msgstr "Malĝusta uzantnomo aŭ pasvorto" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Entajpu la kodon senditan al via retpoŝtadreso por restarigi vian pasvorton" @@ -4113,7 +4384,7 @@ msgstr "Entajpu la kodon senditan al via retpoŝtadreso por restarigi vian pasvo msgid "Input confirmation code for account deletion" msgstr "Entajpu konfirmkodon por forigi vian konton" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Entajpu novan pasvorton" @@ -4129,10 +4400,14 @@ msgstr "Entajpu la kodon senditan al via retpoŝtadreso" msgid "Interaction limited" msgstr "Interago limigita" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Agordoj pri interagado" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "Ni prezentas agadaj sciigoj" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4140,9 +4415,9 @@ msgstr "Nevalida 2FA-konfirmkodo." #: src/screens/Settings/components/ChangeHandleDialog.tsx:597 msgid "Invalid handle. Please try a different one." -msgstr "Nevalida nomo. Bonvolu uzi iun alian." +msgstr "Nevalida identigilo. Bonvolu uzi iun alian." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Nevalida aŭ nesubtenita afiŝ-rikordo" @@ -4158,7 +4433,7 @@ msgstr "Nevalida aŭtentikig-kodo" msgid "Invite a Friend" msgstr "Inviti amikon" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Invita kodo" @@ -4186,15 +4461,15 @@ msgstr "Invitu viajn amikojn, por ke ili sekvu viajn plej ŝatatajn fluojn kaj h msgid "Invites, but personal" msgstr "Invitoj sed personaj" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Ĝi ĝustas" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Vi estas sola ĉi-momente! Aldoni pli da homoj al via startpako serĉante supre." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "ID de laboro: {0}" @@ -4220,11 +4495,27 @@ msgstr "Aliĝi al konversacio" msgid "Journalism" msgstr "Ĵurnalismo" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "Informadi min" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "Regularo pri privateco de KWS" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "Uzokondiĉoj de KWS" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "Retejo de KWS" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Etikedita de {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Etikedita de la aŭtoro." @@ -4237,7 +4528,7 @@ msgstr "Etikedoj" msgid "Labels added" msgstr "Etikedoj aldonitaj" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Etikedoj estas notoj pri uzantoj kaj enhavo. Ili povas esti uzataj por kaŝi, averti, kaj ordigi la reton laŭ kategorioj." @@ -4253,78 +4544,101 @@ msgstr "Etikedoj sur via enhavo" msgid "Language selection" msgstr "Lingva elekto" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Lingvaj agordoj" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Lingvoj" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Pli granda" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "Laste iniciatita antaŭ {timeAgo}" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "Laste iniciatita ĝuste nun" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Plej freŝaj" #: src/screens/Settings/components/ChangeHandleDialog.tsx:271 msgid "learn more" -msgstr "ekscii pli" +msgstr "eksciu pli" #: src/components/verification/VerificationsDialog.tsx:165 #: src/components/verification/VerifierDialog.tsx:132 #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" -msgstr "Ekscii pli" +msgstr "Eksciu pli" #: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" -msgstr "Ekscii pli" +msgstr "Eksciu pli" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "Eksciu pli pri garantio pri aĝo" #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" -msgstr "Ekscii pli pri Bluesky" +msgstr "Eksciu pli pri Bluesky" #: src/view/com/auth/server-input/index.tsx:218 msgid "Learn more about self hosting your PDS." -msgstr "Ekscii pli pri gastigado de via PDS." +msgstr "Eksciu pli pri gastigado de via PDS." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "Eksciu pli pri la kontrolado farita al ĉi tiu enhavo" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." -msgstr "Ekscii pli pri la kontrolado farita al ĉi tiu enhavo." +msgstr "Eksciu pli pri la kontrolado farita al ĉi tiu enhavo." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" -msgstr "Ekscii pli pri ĉi tiu averto" +msgstr "Eksciu pli pri ĉi tiu averto" #: src/components/verification/VerificationsDialog.tsx:150 #: src/components/verification/VerifierDialog.tsx:117 msgid "Learn more about verification on Bluesky" -msgstr "Ekscii pli pri konfirmado ĉe Bluesky" +msgstr "Eksciu pli pri konfirmado ĉe Bluesky" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." -msgstr "Ekscii pli pri kio estas publika ĉe Bluesky." +msgstr "Eksciu pli pri kio estas publika ĉe Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "Eksciu pli en viaj <0>kontaj agordoj." + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." -msgstr "Ekscii pli." +msgstr "Eksciu pli." #: src/components/dms/LeaveConvoPrompt.tsx:48 msgid "Leave" @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Foriri el konversacio" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Lasu ilin nemarkitaj por vidi ĉiujn lingvojn." +msgid "Leave them all unselected to see any language." +msgstr "Lasu ĉiu el ili neelektita por vidi ĉiujn lingvojn." -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Elirante el Bluesky" @@ -4370,7 +4685,7 @@ msgstr "Ek!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Hela" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Ŝati" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Ŝati ({0, plural, one {# ŝato} other {# ŝatoj}})" @@ -4397,6 +4712,10 @@ msgstr "Ŝatu 10 afiŝojn" msgid "Like 10 posts to train the Discover feed" msgstr "Ŝatu 10 afiŝojn por trejni la fluon Discover" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "Sciigoj pri ŝatoj" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Ŝati ĉi tiun fluon" @@ -4405,8 +4724,8 @@ msgstr "Ŝati ĉi tiun fluon" msgid "Like this labeler" msgstr "Ŝati ĉi tiun etikedilon" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Ŝatata de" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Ŝatata de" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Ŝatata de {0, plural, one {# uzanto} other {# uzantoj}}" @@ -4428,20 +4747,36 @@ msgstr "Ŝatata de {0, plural, one {# uzanto} other {# uzantoj}}" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Ŝatata de {likeCount, plural, one {# uzanto} other {# uzantoj}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Ŝatoj" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "Ŝatoj de viaj reafiŝoj" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "Sciigoj pri ŝatoj de viaj reafiŝoj" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Ŝatoj de ĉi tiu afiŝo" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Linie" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Listo" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Listo blokita" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Listo de {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "Listo de <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Listo de vi" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "Kreinto de listo" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Listo malsilentigita" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Listoj" @@ -4515,18 +4854,18 @@ msgstr "Listoj blokintaj ĉi tiun uzanton:" #. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters #: src/components/live/LiveIndicator.tsx:46 msgid "LIVE" -msgstr "ELSENDFLUAS" +msgstr "TUJELSENDAS" #: src/components/live/LiveStatusDialog.tsx:215 msgid "Live feature is in beta testing" -msgstr "Elsendfluada funkcio estas je beta-testado" +msgstr "Tujelsenda funkcio estas je beta-testado" #: src/components/live/EditLiveDialog.tsx:148 #: src/components/live/EditLiveDialog.tsx:152 #: src/components/live/GoLiveDialog.tsx:124 #: src/components/live/GoLiveDialog.tsx:128 msgid "Live link" -msgstr "Elsendflua ligilo" +msgstr "Tujelsenda ligilo" #: src/screens/Search/Explore.tsx:86 msgid "Load more" @@ -4537,7 +4876,7 @@ msgstr "Ŝargi pli" msgid "Load more suggested feeds" msgstr "Ŝargi pliajn proponitajn fluojn" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Ŝargi novajn sciigojn" @@ -4552,11 +4891,11 @@ msgstr "Ŝargi novajn afiŝojn" msgid "Loading..." msgstr "Ŝargado..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Protokolo" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Videbleco de elsalutintaj uzantoj" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Emblemo farita de @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Emblemo farita de <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Emblemo farita de <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Longe premu por malfermi la menuon por #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Aspektas tiel: XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "Faru ĝustigojn al retpoŝtaj agordoj por via konto" msgid "Make one for me" msgstr "Faru ĝin por mi" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Certiĝu, ke vi volas iri tien!" @@ -4606,7 +4945,7 @@ msgstr "Certiĝu, ke vi volas iri tien!" msgid "Manage saved feeds" msgstr "Administri la konservitajn fluojn" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "Administri konfirmadajn agordojn" @@ -4614,9 +4953,9 @@ msgstr "Administri konfirmadajn agordojn" msgid "Manage your muted words and tags" msgstr "Administri la silentigitajn vortojn k kradvortojn" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "Marki ĉiujn kiel legitaj" @@ -4625,15 +4964,13 @@ msgstr "Marki ĉiujn kiel legitaj" msgid "Mark as read" msgstr "Marki kiel legita" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "Markis ĉiujn kiel legitaj" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "Eble poste" @@ -4645,19 +4982,26 @@ msgstr "Aŭdvidaĵoj" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Aŭdvidaĵoj, kiuj povas esti maltrankviligaj aŭ nekonvenaj por kelkaj spektantoj." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "Sciigoj pri mencioj" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "menciitaj uzantoj" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Menciitaj uzantoj" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Mencioj" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Menuo" @@ -4665,7 +5009,7 @@ msgstr "Menuo" msgid "Message {0}" msgstr "Mesaĝo {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Mesaĝo forigita" @@ -4674,11 +5018,11 @@ msgstr "Mesaĝo forigita" msgid "Message deleted" msgstr "Mesaĝo forigita" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "Mesaĝo de @{0}: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Mesaĝo de la servilo: {0}" @@ -4691,19 +5035,23 @@ msgstr "Enigujo de la mesaĝo" msgid "Message is too long" msgstr "Mesaĝo tro longas" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "Opcioj de mesaĝo" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Mesaĝoj" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Noktomezo" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "Sciigoj aliaj" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Trompa konto" msgid "Misleading Post" msgstr "Trompa afiŝo" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Kontrolado" @@ -4725,17 +5073,17 @@ msgstr "Kontrolado" msgid "Moderation details" msgstr "Detaloj pri la kontrolo" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Kontrol-listo de {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Kontrol-listo de <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Kontrol-listo farita de vi" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Kontrol-listo ĝisdatigita" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Kontrol-listoj" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Kontrol-listoj" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "agordoj pri kontrolado" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Statoj de kontrolado" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Kontroladaj iloj" @@ -4775,7 +5123,7 @@ msgstr "Kontroladaj iloj" msgid "Moderator has chosen to set a general warning on the content." msgstr "Kontrolanto decidis starigi ĝeneralan averton pri la enhavo." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Pli" @@ -4790,13 +5138,13 @@ msgstr "Pli da fluoj" msgid "More options" msgstr "Pli da opcioj" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "La plej ŝatataj unue" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "La plej ŝatataj respondoj unue" @@ -4808,8 +5156,8 @@ msgstr "Filmoj" msgid "Music" msgstr "Muziko" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Silentigi" @@ -4819,8 +5167,8 @@ msgstr "Silentigi" msgid "Mute {tag}" msgstr "Silentigi kradvorton {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,34 +5219,34 @@ msgstr "Silentigi ĉi tiun vorton nur en kradvortoj" msgid "Mute this word until you unmute it" msgstr "Silentigi ĉi tiun vorton ĝis kiam ĝi estos malsilentigita" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Silentigi fadenon" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" -msgstr "Silentigi vortojn k kradvortojn" +msgstr "Silentigi vortojn kaj kradvortojn" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Silentigitaj kontoj" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Silentigitaj kontoj" #: src/view/screens/ModerationMutedAccounts.tsx:204 msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." -msgstr "Kiam vi silentigas konton, ties afiŝoj estos forigitaj el viaj fluo kaj sciigoj. Silentigoj estas tute privataj." +msgstr "Kiam vi silentigas konton, ties afiŝoj estos forigitaj el via fluo kaj sciigoj. Silentigoj estas tute privataj." #: src/lib/moderation/useModerationCauseDescription.ts:92 msgid "Muted by \"{0}\"" msgstr "Silentigita de \"{0}\"" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Silentigitaj vortoj k kradvortoj" @@ -4911,7 +5259,7 @@ msgstr "Silentigo estas privata. Silentigitaj kontoj povas interagi kun vi, sed msgid "My Birthday" msgstr "Mia naskiĝtago" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Miaj fluoj" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Naturo" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Iri al {0}" @@ -4958,11 +5306,11 @@ msgstr "Iras al la sekva ekrano" msgid "Navigates to your profile" msgstr "Iras al via profilo" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Ĉu vi bezonas ŝanĝi ĝin?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "Ĉu vi bezonas raporti kopirajtan malobservon, jurpeton aŭ problemon pri reguliga observo?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Ĉu vi bezonas raporti kopirajtan malobservon?" @@ -4973,7 +5321,7 @@ msgstr "Neniam perdu atingon al viaj sekvantoj aŭ datumoj." #: src/screens/Settings/components/ChangeHandleDialog.tsx:567 msgid "Nevermind, create a handle for me" -msgstr "Ne gravas, kreu identigilon por mi" +msgstr "Ne gravas, krei identigilon por mi" #: src/screens/Search/modules/ExploreTrendingTopics.tsx:199 msgid "New" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Nova" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "{postsCount, plural, one {Nova afiŝo} other {Novaj afiŝoj}} de {firstAuthorLink}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "{postsCount, plural, one {Nova afiŝo} other {Novaj afiŝoj}} de {firstAuthorName}" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Nova babilejo" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "Nova retpoŝtadreso" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "Nova funkcio" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "Sciigoj pri novaj sekvantoj" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "Novaj sekvantoj" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Novaj mesaĝoj" msgid "New Moderation List" msgstr "Nova kontrol-listo" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Nova pasvorto" @@ -5029,7 +5396,7 @@ msgstr "Nova pasvorto" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Nova afiŝo" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Nova afiŝo" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Novaj afiŝoj de {firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Novaj afiŝoj de {firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}}" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Informa dialogujo pri nova uzanto" @@ -5054,10 +5429,14 @@ msgstr "Informa dialogujo pri nova uzanto" msgid "New User List" msgstr "Listo de novaj uzantoj" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "La plej novaj respondoj unue" @@ -5071,15 +5450,15 @@ msgstr "Novaĵoj" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "Ne estas DNS-panelo" msgid "No expiry set" msgstr "Neniu eksvalidiĝo agordita" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Neniuj elstarigitaj GIF-oj trovitaj. Eble estas problemo pri Tenor." @@ -5119,32 +5498,35 @@ msgstr "Sen bildo" msgid "No likes yet" msgstr "Ankoraŭ ne estas ŝatoj" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Vi ne plu sekvas {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "Ne pli longa ol {MAX_SERVICE_HANDLE_LENGTH, plural, one {# signo}other {# signoj}}." - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Ankoraŭ ne estas mesaĝoj" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Ankoraŭ ne estas sciigoj!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Neniu" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Neniu krom la aŭtoro povas citi ĉi tiun afiŝon." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "Neniuj afiŝoj ĉi tie" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Ankoraŭ ne estas afiŝoj." @@ -5171,7 +5553,7 @@ msgstr "Sen rezultoj" msgid "No results for \"{0}\"." msgstr "Sen rezultoj por \"{0}\"." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Neniu rezulto trovita" @@ -5179,9 +5561,9 @@ msgstr "Neniu rezulto trovita" msgid "No results found for \"{query}\"" msgstr "Neniu rezulto trovita por \"{query}\"" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Neniu rezulto trovita por {query}" @@ -5189,7 +5571,7 @@ msgstr "Neniu rezulto trovita por {query}" msgid "No results." msgstr "Sen rezultoj." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Neniu serĉrezulto trovita por \"{search}\"." @@ -5198,7 +5580,7 @@ msgstr "Neniu serĉrezulto trovita por \"{search}\"." msgid "No thanks" msgstr "Ne, dankon" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Neniu" @@ -5223,59 +5605,76 @@ msgstr "Neniu estis trovita. Provu serĉi iun alian." msgid "Non-sexual Nudity" msgstr "Ne-seksuma nudeco" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "Neniu" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "Sekvata de neniu el viaj sekvatoj" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Netrovita" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Noto pri kundivido" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Atentu: Bluesky estas malfermita kaj publika reto. Ĉi tiu agordo nur limigas la videblecon de via enhavo en la apo kaj retejo de Bluesky, eble aliaj apoj ne respektos ĉi tiun agordon. Aliaj apoj kaj retejoj povas daŭre montri vian enhavon al elsalutintaj uzantoj." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "Noto: Ĉi tiu afiŝo videblas nur al ensalutintaj uzantoj." + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Estas nenio ĉi tie" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Filtriloj por sciigoj" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Sciigaj agordoj" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Sciigaj agordoj" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Sciigaj sonoj" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Sciigaj sonoj" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Sciigoj" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "Sciigoj pri ĉio alia, ekzemple kiam iu aliĝos uzante unu el viaj startpakoj." + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "nun" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Nudeco aŭ poradolta enhavo ne etikedita tiel" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Malŝaltita" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Ho ve!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "Bone" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Bone" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "La plej malnovaj respondoj unue" @@ -5331,19 +5736,19 @@ msgstr "La plej malnovaj respondoj unue" msgid "on<0><1/><2><3/>" msgstr "ĉe<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Restarigi la lernilon" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "Al unu aŭ pli da GIF-oj mankas alt-teksto." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Al unu aŭ pli da bildoj mankas alternativa teksto." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Al unu aŭ pli da videaĵoj mankas alternativa teksto." @@ -5351,13 +5756,15 @@ msgstr "Al unu aŭ pli da videaĵoj mankas alternativa teksto." msgid "Only .jpg and .png files are supported" msgstr "Nur dosieroj .jpg kaj .png estas subtenataj" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Nur {0} povas respondi." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Nur enhavas literojn, ciferojn kaj streketojn" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "Nur sekvantoj kiujn mi sekvas" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Nur bildaj dosieroj estas subtenataj" msgid "Only WebVTT (.vtt) files are supported" msgstr "Nur WebVTT-dosieroj (.vtt) estas subtenataj" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Ups, io misfunkciis!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Ups!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Malfermi flankmenuon" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Malfermi emoĝi-elektilon" @@ -5416,7 +5822,7 @@ msgstr "Malfermi la opciomenuon de la fluo" msgid "Open full emoji list" msgstr "Malfermi la tutan emoĝi-liston" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Malfermi ligilon al {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Malfermi ligilon al {niceUrl}" msgid "Open message options" msgstr "Malfermi opciojn de mesaĝoj" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Malfermi la paĝon de kontrolada sencimigo" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Malfermi agordojn de silentigitaj vortoj kaj kradvortoj" @@ -5453,16 +5859,16 @@ msgstr "Malfermi konigadan menuon" msgid "Open starter pack menu" msgstr "Malfermi menuon de startpako" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Malfermi la historiopaĝon" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Malfermi sisteman protokolon" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Malfermas {numItems} opciojn" @@ -5490,11 +5896,11 @@ msgstr "Malfermas fotilon de aparato" msgid "Opens captions and alt text dialog" msgstr "Malfermas dialogujon de subtekstoj k alternativa teksto" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Malfermas dialogujon por ŝanĝi la identigilon" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Malfermas afiŝ-kreilon" @@ -5502,7 +5908,7 @@ msgstr "Malfermas afiŝ-kreilon" msgid "Opens device photo gallery" msgstr "Malfermas aparatan bildgalerion" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Malfermas emoĝi-elektilon" @@ -5520,28 +5926,28 @@ msgstr "Malfermas procezon de ensalutado al via ekzistanta Bluesky-konto" msgid "Opens GIF select dialog" msgstr "Malfermas GIF-elektilan dialogujon" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Malfermas la helpocentron en retumilo" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "Malfermas ligilon {0}" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Malfermas liston de invitaj kodoj" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" -msgstr "Malfermi elsendfluada statusa dialogujo" +msgstr "Malfermas tujelsendan statusan dialogujon" #: src/screens/Login/LoginForm.tsx:249 msgid "Opens password reset form" msgstr "Malfermas formularon por restarigi la pasvorton" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Malfermas la ligitan retejon" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Malfermas ĉi tiun profilon" @@ -5558,7 +5964,7 @@ msgstr "Laŭvole donu aldonajn informojn suben:" msgid "Options:" msgstr "Opcioj:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Aŭ elektu el ĉi tiuj opcioj:" @@ -5580,7 +5986,7 @@ msgstr "OTA stato: Disponebla!" #: src/screens/Settings/components/OTAInfo.tsx:50 msgid "OTA status: Error fetching update" -msgstr "OTA stato: Eraro elŝutante ĝisdatigon" +msgstr "OTA stato: Eraris elŝutante ĝisdatigon" #: src/screens/Settings/components/OTAInfo.tsx:54 msgid "OTA status: None available" @@ -5600,6 +6006,10 @@ msgstr "Alia konto" msgid "Other..." msgstr "Alia..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "Nia blogafiŝo" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "Nia kontrolad-teamo ricevis vian raporton." @@ -5608,7 +6018,7 @@ msgstr "Nia kontrolad-teamo ricevis vian raporton." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Niaj kontrolantoj ekzamenis raportojn kaj decidis malebligi vian aliron al babilejoj ĉe Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Paĝo netrovita" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Paĝo netrovita" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Pasvorto ĝisdatigita" msgid "Password updated!" msgstr "Pasvorto ĝisdatigita!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Paŭzigi" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Paŭzigi videaĵon" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Homoj" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Homoj sekvataj de @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Homoj sekvantaj @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "Homoj kiujn mi sekvas" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "Permeso por aliro al via bildbiblioteko estis neita. Bonvolu doni ĝin en viaj sistemagordoj." @@ -5704,12 +6119,12 @@ msgstr "Alpingli al hejmo" msgid "Pin to Home" msgstr "Alpingli al hejmo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Alpingli al via profilo" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Alpinglita" @@ -5718,7 +6133,7 @@ msgstr "Alpinglita" msgid "Pinned {0} to Home" msgstr "{0} alpinglita al hejmo" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Alpinglitaj fluoj" @@ -5726,38 +6141,38 @@ msgstr "Alpinglitaj fluoj" msgid "Pinned to your feeds" msgstr "Alpinglita al viaj fluoj" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Ludi" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Ludi {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Ludi videaĵon" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Ludi videaĵon" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Ludas aŭ paŭzigas la GIF-on" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Ludas aŭ paŭzigas la videaĵon" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Ludas la GIF-on" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Ludas la videaĵon" @@ -5765,12 +6180,16 @@ msgstr "Ludas la videaĵon" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "Bonvolu aldoni ĉiujn avertajn etikedojn de la enhavo, kiuj aplikeblas al la aŭdvidaĵo, kiun vi afiŝas." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "Bonvolu kontroli vian retpoŝtan ricevujon por sekvaj instrukcioj. Eble daŭros minuton aŭ du por ke ĝi alvenu." + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." -msgstr "Bonvolu elekti vian nomon." +msgstr "Bonvolu elekti vian identigilon." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Bonvolu elekti vian pasvorton." @@ -5782,7 +6201,8 @@ msgstr "Bonvolu alklaki la ligilon en la retmesaĝo, kiun ni ĵus sendis al vi, msgid "Please complete the verification captcha." msgstr "Bonvolu plenumi la captcha-kontrolon." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Bonvolu rekontroli ĉu vi ĝuste entajpis vian retpoŝtadreson." @@ -5804,6 +6224,7 @@ msgstr "Bonvolu entajpi unikan nomon por ĉi tiu apa pasvorto, aŭ uzu nian haza msgid "Please enter a valid code." msgstr "Bonvolu entajpi validan kodon." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "Bonvolu entajpi validan retpoŝtadreson." @@ -5812,7 +6233,11 @@ msgstr "Bonvolu entajpi validan retpoŝtadreson." msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Bonvolu entajpi validan vorton, kradvorton, aŭ frazon por silentigi" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "Bonvolu entajpi validan, neprovizoran retpoŝtadreson. Vi eble bezonos aliri ĉi tiun retpoŝtadreson estontece." + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "Bonvolu entajpi suben la kodon, kiun ni sendis al <0>{0}." @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "Bonvolu entajpi la sekurecan kodon, kiun ni sendis al via antaŭa retpoŝtadreso." #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Bonvolu entajpi vian retpoŝtadreson." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Bonvolu entajpi vian invitan kodon." @@ -5853,6 +6278,19 @@ msgstr "Bonvolu klarigi kial vi kredas, ke ĉi tiu etikedo estis malĝuste surme msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Bonvolu klarigi kial vi pensas, ke viaj babilejoj estis malebligitaj mise" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "Bonvolu donu ĉiujn aldonajn detalojn kiujn laŭ vi kontrolantoj bezonos por dece aliri vian staton de Garantio pri aĝo." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "Bonvolu elekti lingvon" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "Bonvolu elekti kontrol-servon" @@ -5870,9 +6308,9 @@ msgstr "Bonvolu ensaluti kiel @{0}" msgid "Please verify your email" msgstr "Bonvolu konfirmi vian retpoŝtadreson" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Bonvolu konfirmi vian retpoŝtadreson" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "Bonvolu tajpi vian mesaĝon sube:" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Politiko" msgid "Porn" msgstr "Pornografio" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Afiŝi" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Afiŝo" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Afiŝi" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Afiŝi ĉiujn" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "Afiŝo blokita" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Afiŝo de {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Afiŝo de @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Afiŝo forigita" @@ -5919,11 +6362,14 @@ msgstr "Afiŝo forigita" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Malsukcesis ŝargi afiŝon. Bonvolu kontroli vian retkonekton kaj reprovi." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "Afiŝo estis forigita" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Afiŝo kaŝita" @@ -5937,11 +6383,11 @@ msgstr "Afiŝo kaŝita de silentigita vorto" msgid "Post Hidden by You" msgstr "Afiŝo kaŝita de vi" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Interagaj agordoj de afiŝo" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Interagaj agordoj de afiŝo" @@ -5954,8 +6400,10 @@ msgstr "Afiŝa lingvo" msgid "Post Languages" msgstr "Afiŝaj lingvoj" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Afiŝo netrovita" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Afiŝo depinglita" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Afiŝoj" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Afiŝoj povas esti silentigitaj laŭ sia teksto, siaj etikedoj, aŭ ambaŭ. Ni rekomendas eviti oftajn vortojn, kiuj aperas en multaj afiŝoj, ĉar tio povas rezultigi, ke neniu afiŝo estos montrota." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Afiŝoj kaŝitaj" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "Afiŝoj, respondoj" + +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" msgstr "Eventuale misgvida ligilo" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Prefero konservita" +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "Averto pri eventuale misgvida ligilo" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Premu por provi rekonekti" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Premu por reprovi" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Premu por vidi sekvantojn de ĉi tiu konto kiun vi ankaŭ sekvas" @@ -6015,40 +6469,46 @@ msgstr "Antaŭa bildo" msgid "Primary Language" msgstr "Ĉefa lingvo" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Prioritatigi viajn sekvatojn" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Prioritataj sciigoj" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Privateco" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Privateco kaj sekureco" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privateco kaj sekureco" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "Agordoj de privateco kaj sekureco" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Regularo pri privateco" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Pritraktado de videaĵo..." @@ -6062,15 +6522,14 @@ msgstr "Pritraktado..." msgid "profile" msgstr "profilo" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Profilo" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Profilo ĝisdatigita" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Publikaj k kundivideblaj listoj, kiuj povas esti uzitaj por funkciigi fluojn." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "Publikigi afiŝon" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "Publikigi afiŝojn" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "Publikigi respondojn" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "Publikigi respondon" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "Puŝaj" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "Puŝaj sciigoj" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "Puŝaj, Ĉiuj" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "Puŝaj, Homoj kiujn vi sekvas" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "QR-kodo kopiita al via tondujo!" @@ -6119,53 +6594,61 @@ msgstr "QR-kodo estis elŝutita!" msgid "QR code saved to your camera roll!" msgstr "QR-kodo konservita en via bildgalerio!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "Sciigoj pri citaĵoj" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Citi afiŝon" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "La citafiŝo estis religita" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "La citaĵo estis sukcese malligita" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Citafiŝoj malebligitaj" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Agordoj de citado" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Citaĵoj" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Citaĵoj de ĉi tiu afiŝo" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" -msgstr "Hazarda (alinome \"Afiŝinta ruleto\")" +msgstr "Hazarde (alinome \"Afiŝinta ruleto\")" #: src/screens/Settings/components/ChangeHandleDialog.tsx:600 msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Limo de operacioj transpasita – vi provis ŝanĝi vian identigilon tro multajn fojojn dum mallonga tempo. Bonvolu atendi minuton antaŭ provi denove." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Religi citaĵon" @@ -6177,30 +6660,42 @@ msgstr "Reagi per {emoji}" msgid "Reactivate your account" msgstr "Reaktivigi vian konton" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "Legi {0} {1, plural, one {respondon} other {respondojn}} pli" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" -msgstr "Legi blogan afiŝon" +msgstr "Legu blogafiŝon" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Legi malpli" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Legi pli" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "Legi pli da respondoj" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "Legu nian blogafiŝon" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Legi la blogon de Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Legi la Regularon pri privateco de Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Legi la uzokondiĉojn de Bluesky" @@ -6213,6 +6708,14 @@ msgstr "Kialo de apelacio" msgid "Reason:" msgstr "Kialo:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "Ricevi en-apajn sciigojn" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "Ricevi pujŝajn sciigojn" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Lastaj serĉoj" @@ -6234,8 +6737,8 @@ msgstr "Malakcepti" msgid "Reject chat request" msgstr "Malakcepti babilpeton" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Reŝargi konversaciojn" @@ -6244,10 +6747,9 @@ msgstr "Reŝargi konversaciojn" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Forigi" @@ -6259,17 +6761,17 @@ msgstr "Forigi {displayName} el la startpako" msgid "Remove {historyItem}" msgstr "Forigi {historyItem}" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Forigi konton" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Forigi aldonaĵon" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Forigi profilbildon" @@ -6284,24 +6786,22 @@ msgstr "Forigi enkorpigaĵon" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Forigi fluon" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Ĉu forigi fluon?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Forigi el miaj fluoj" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Ĉu forigi el la rapitatingo?" @@ -6311,18 +6811,17 @@ msgid "Remove from saved feeds" msgstr "Forigi el konservitaj fluoj" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "Ĉu forigi el viaj fluoj?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Forigi bildon" #: src/components/live/EditLiveDialog.tsx:240 #: src/components/live/EditLiveDialog.tsx:247 msgid "Remove live status" -msgstr "Forigi elsendfluadan statuson" +msgstr "Forigi tujelsendan staton" #: src/components/dialogs/MutedWords.tsx:523 msgid "Remove mute word from your list" @@ -6332,12 +6831,8 @@ msgstr "Forigi silentigitan vorton el via listo" msgid "Remove profile" msgstr "Forigi profilon" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Forigi citaĵon" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Forigi reafiŝon" @@ -6345,7 +6840,7 @@ msgstr "Forigi reafiŝon" msgid "Remove subtitle file" msgstr "Forigi subtekstan dosieron" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Forigi ĉi tiun fluon el viaj konservitaj fluoj" @@ -6364,11 +6859,11 @@ msgstr "Forigi konfirmon" msgid "Remove your verification for this account?" msgstr "Ĉu forigi vian konfirmon por ĉi tiu konto?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Forigita de la aŭtoro" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Forigita de vi" @@ -6377,10 +6872,6 @@ msgstr "Forigita de vi" msgid "Removed from list" msgstr "Forigis el listo" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Forigis el miaj fluoj" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Forigis el konservitaj fluoj" @@ -6395,34 +6886,36 @@ msgstr "Forigita el viaj fluoj" msgid "Removed verification" msgstr "Konfirmo forigita" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Forigas citatan afiŝon" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Anstataŭigi per Discover" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Respondoj" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Respondoj malebligitaj" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Respondoj por ĉi tiu afiŝo estis malebligitaj." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Respondi" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Respondi ({0, plural, one {# respondo} other {# respondoj}})" @@ -6436,50 +6929,55 @@ msgstr "Respondo kaŝita de la faden-aŭtoro" msgid "Reply Hidden by You" msgstr "Respondo kaŝita de vi" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "Sciigoj pri respondoj" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Agordoj pri respondado" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "Agordoj pri respondado estas elektitaj de la aŭtoro de la fadeno" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Ordigado de respondoj" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 -msgctxt "description" -msgid "Reply to <0><1/>" -msgstr "Respondi al <0><1/>" - -#: src/view/com/posts/PostFeedItem.tsx:596 -msgctxt "description" -msgid "Reply to a blocked post" -msgstr "Respondi al blokita afiŝo" - -#: src/view/com/posts/PostFeedItem.tsx:598 -msgctxt "description" -msgid "Reply to a post" -msgstr "Respondi al afiŝo" - -#: src/view/com/post/Post.tsx:203 +#: src/view/com/post/Post.tsx:204 #: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" -msgid "Reply to you" -msgstr "Respondi al vi" +msgid "Reply to <0><1/>" +msgstr "Respondo al <0><1/>" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/view/com/posts/PostFeedItem.tsx:593 +msgctxt "description" +msgid "Reply to a blocked post" +msgstr "Respondo al blokita afiŝo" + +#: src/view/com/posts/PostFeedItem.tsx:595 +msgctxt "description" +msgid "Reply to a post" +msgstr "Respondo al afiŝo" + +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 +msgctxt "description" +msgid "Reply to you" +msgstr "Respondo al vi" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Videbleco de respondoj ĝisdatiĝis" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Respondo estis sukcese kaŝita" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Raporti fluon" msgid "Report list" msgstr "Raporti liston" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Raporti mesaĝon" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Raporti afiŝon" @@ -6567,25 +7065,26 @@ msgstr "Raporti ĉi tiun startpakon" msgid "Report this user" msgstr "Raporti ĉi tiun uzanton" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Reafiŝi" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Reafiŝi" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Reafiŝi ({0, plural, one {# reafiŝo} other {# reafiŝoj}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "Sciigoj pri reafiŝoj" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Reafiŝi aŭ citafiŝi" @@ -6594,35 +7093,47 @@ msgstr "Reafiŝi aŭ citafiŝi" msgid "Reposted By" msgstr "Reafiŝita de" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Reafiŝita de {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Reafiŝita de <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Reafiŝita de vi" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "Reafiŝoj" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Reafiŝoj de ĉi tiu afiŝo" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "Peti ŝanĝon" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "Reafiŝoj de viaj reafiŝoj" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "Sciigoj pri reafiŝoj de viaj reafiŝoj" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "Peti kodon" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Devigi alternativan tekston antaŭ ol afiŝi" @@ -6630,7 +7141,7 @@ msgstr "Devigi alternativan tekston antaŭ ol afiŝi" msgid "Require an email code to sign in to your account." msgstr "Devigi retmesaĝan kodon por ensaluti al via konto." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Necesa por ĉi tiu provizanto" @@ -6642,10 +7153,6 @@ msgstr "Devigita en via regiono" msgid "Resend" msgstr "Resendi" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Resendi retmesaĝon" msgid "Resend Verification Email" msgstr "Resendi konfirman retmesaĝon" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "Restarigi kubutumon pri agada abono" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Restariga kodo" @@ -6667,8 +7180,8 @@ msgstr "Restariga kodo" msgid "Reset Code" msgstr "Restariga kodo" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Restarigi staton de la lernilo" @@ -6687,21 +7200,23 @@ msgstr "Reprovas la lastan agon, kiu eraris" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Reprovi" @@ -6721,19 +7236,19 @@ msgstr "Revenas al hejmpaĝo" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Revenas al antaŭa paĝo" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Revenas al la antaŭa paŝo" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Revenas al la antaŭa paŝo" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Konservi" @@ -6762,15 +7276,13 @@ msgstr "Konservi" msgid "Save birthday" msgstr "Konservi naskiĝtagon" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Konservi ŝanĝojn" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Konservi ŝanĝojn" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Konservi QR-kodon" msgid "Save to my feeds" msgstr "Konservi al miaj fluoj" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Konservitaj fluoj" @@ -6802,18 +7314,14 @@ msgstr "Konservitaj fluoj" msgid "Saved to your feeds" msgstr "Konservita al viaj fluoj" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Konservas ĉiujn ŝanĝojn de via profilo" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Konservi agordojn de bildstucado" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Diru saluton!" @@ -6826,16 +7334,16 @@ msgstr "Scienco" msgid "Scroll to top" msgstr "Rulumi al la supro" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Serĉi" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Serĉi afiŝojn de @{0}" @@ -6861,7 +7369,7 @@ msgstr "Serĉi \"{query}\"" msgid "Search for \"{searchText}\"" msgstr "Serĉi \"{searchText}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Serĉu fluojn, kiujn vi volas proponi al aliuloj." @@ -6877,10 +7385,14 @@ msgstr "Serĉi pliajn fluojn" msgid "Search for posts, users, or feeds" msgstr "Serĉi afiŝojn, uzantojn aŭ fluojn" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Serĉi GIF-ojn" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "Serĉado nun estas nedisponebla kiam elsalutinta" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Serĉi miajn afiŝojn" @@ -6890,12 +7402,12 @@ msgstr "Serĉi miajn afiŝojn" msgid "Search posts" msgstr "Serĉi afiŝojn" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Serĉi profilojn" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Traserĉi Tenor" @@ -6903,7 +7415,7 @@ msgstr "Traserĉi Tenor" msgid "Search..." msgstr "Serĉi..." -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Serĉas profilojn" @@ -6912,10 +7424,6 @@ msgstr "Serĉas profilojn" msgid "Security step required" msgstr "Sekureca etapo devigita" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Sekureca etapo devigita" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "Vidi afiŝojn pri {tag}" @@ -6936,21 +7444,38 @@ msgstr "Vidi afiŝojn pri #{tag} de uzanto" msgid "See jobs at Bluesky" msgstr "Vidu laborpostenojn ĉe Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "Vidi pli" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "Vidi pli da kontoj kiuj eble plaĉos al vi" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "Vidi pli da proponoj sur la paĝo Esplori" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Vidi ĉi tiun gvidilon" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Serĉ-ŝovilo. Uzu la sagoklavojn por serĉi antaŭen kaj malantaŭen kaj spacoklavon por ludi/paŭzi" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Elekti koloron" #: src/screens/Login/ChooseAccountForm.tsx:77 msgid "Select account" -msgstr "Elekti konton" +msgstr "Elektu konton" #: src/components/AppLanguageDropdown.tsx:60 msgid "Select an app language" @@ -6988,7 +7513,7 @@ msgstr "Elektu el ekzistanta konto" msgid "Select GIF" msgstr "Elektu GIF-on" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Elektu GIF-on \"{0}\"" @@ -6996,6 +7521,11 @@ msgstr "Elektu GIF-on \"{0}\"" msgid "Select how long to mute this word for." msgstr "Elektu por kiom longe silentigi ĉi tiun vorton." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "Elekti lingvon" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Elekti lingvon..." @@ -7004,7 +7534,7 @@ msgstr "Elekti lingvon..." msgid "Select languages" msgstr "Elekti lingvojn" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "Elektu kontrol-servon" @@ -7045,20 +7575,24 @@ msgstr "Elektu kiun lingvon uzi por la apa uzantinterfaco." msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Elektu kiujn lingvojn vi volas en viaj abonitaj fluoj. Se neniu elektita, ĉiuj lingvoj estos montrotaj." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Elektu la daton de via naskiĝo" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Elektu viajn interesojn el la opcioj sube" #: src/screens/Settings/LanguageSettings.tsx:124 msgid "Select your preferred language for translations in your feed." -msgstr "Elektu viajn preferatajn lingvojn por tradukoj en viaj fluoj." +msgstr "Elektu vian preferatan lingvon por tradukoj en via fluo." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "Elektu viajn preferajn sciigajn kanalojn" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "Elektas opcion {0} el {numItems}" @@ -7066,17 +7600,9 @@ msgstr "Elektas opcion {0} el {numItems}" msgid "Send a neat website!" msgstr "Sendu mojosan retejon!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "Sendi konfirmon" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Sendi konfirman retmesaĝon" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Sendi retmesaĝon" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Sendi retmesaĝon" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Sendi prikomentadon" @@ -7095,7 +7621,7 @@ msgstr "Sendi prikomentadon" msgid "Send message" msgstr "Sendi mesaĝon" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "Sendi afiŝon al {name}" @@ -7114,20 +7640,20 @@ msgstr "Sendi raporton" msgid "Send report to {0}" msgstr "Sendi raporton al {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "Sendi raporton al {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Sendi konfirman retmesaĝon" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Sendi per rekta mesaĝo" @@ -7143,7 +7669,7 @@ msgstr "Servila adreso" msgid "Set app icon to {0}" msgstr "Agordi apan piktogramon al {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Agordi naskiĝdaton" @@ -7159,13 +7685,57 @@ msgstr "Agordu vian konton" msgid "Sets email for password reset" msgstr "Agordas retpoŝtadreson por restarigi pasvorton" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Agordoj" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "Agordoj por agado de aliuloj" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "Agordoj por permesi aliuloj esti sciigotaj pri viaj afiŝoj" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "Agordoj por sciigoj pri ŝatoj" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "Agordoj por sciigoj pri mencioj" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "Agordoj por sciigoj pri novaj sekvantoj" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "Agordoj por sciigoj pri ĉio alia" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "Agordoj por sciigoj pri ŝatoj de viaj reafiŝoj" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "Agordoj por sciigoj pri reafiŝoj de viaj reafiŝoj" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "Agordoj por sciigoj pri citaĵoj" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "Agordoj por sciigoj pri respondoj" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "Agordoj por sciigoj pri reafiŝoj" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "Konigu mojosan rakonton!" msgid "Share a fun fact!" msgstr "Konigu anekdoton!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Diskonigi malgraŭ tio" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "Konigi DID-on de aŭtoro" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Konigi ligilon" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Konigi ligilon" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Dialogujo pri ligila konigado" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "Konigi URI-on at:// de afiŝo" @@ -7247,8 +7812,8 @@ msgstr "Konigi ĉi tiun startpakon" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Konigu ĉi tiun startpakon kaj helpu homojn aliĝi vian komunumon ĉe Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "Konigi per..." msgid "Share your favorite feed!" msgstr "Konigu vian plej ŝatatan fluon!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Testanto de komunaj preferoj" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Konigas la ligitan retejon" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Montri" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Montri alternativan tekston" @@ -7297,14 +7858,14 @@ msgstr "Montri ŝildon kaj elfiltri el fluoj" #: src/components/dialogs/Embed.tsx:129 msgid "Show customization options" -msgstr "Montru tajloradajn opciojn" +msgstr "Montri adaptadajn opciojn" #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show hidden replies" msgstr "Montri kaŝitajn respondojn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Montri malpli da similaj afiŝoj" @@ -7312,57 +7873,65 @@ msgstr "Montri malpli da similaj afiŝoj" msgid "Show list anyway" msgstr "Montri liston ĉiuokaze" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Montri pli" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Montri pli da similaj afiŝoj" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "Montri pli da respondoj" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Montri silentigitajn respondojn" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "Montri respondojn de afiŝo per fadena arbovido" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Montri citafiŝojn" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Montri respondojn" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Montri respondojn" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Montri respondojn fadene" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Montri respondojn de miaj sekvatoj antaŭ ĉiuj aliaj respondoj" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Montri respondojn por ĉiuj" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Montri reafiŝojn" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" -msgstr "Montri ekzemplojn de viaj konservitaj fluoj en via fluo de Sekvatoj" +msgstr "Montri ekzemplojn de viaj konservitaj fluoj en via Following-fluo" #: src/lib/moderation/useLabelBehaviorDescription.ts:58 msgid "Show warning" @@ -7372,16 +7941,17 @@ msgstr "Montri averton" msgid "Show warning and filter from feeds" msgstr "Montri averton kaj elfiltri el fluoj" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Montri informojn pri kiam ĉi tiu afiŝo estis kreita" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "Montras aliajn kontojn al kiuj vi povas ŝanĝi" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Montras la enhavon" @@ -7390,14 +7960,15 @@ msgstr "Montras la enhavon" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "Ensaluti al nelistigitan konton" msgid "Sign in to Bluesky or create a new account" msgstr "Ensalutu al Bluesky aŭ kreu novan konton" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "Ensalutu por vidi la afiŝon" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Elsaluti" @@ -7444,8 +8020,8 @@ msgstr "Elsaluti" msgid "Sign Out" msgstr "Elsaluti" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Ĉu elsaluti?" @@ -7459,12 +8035,12 @@ msgstr "Ensaluto devigita" msgid "Signed in as @{0}" msgstr "Ensalutinta kiel @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Similaj kontoj" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Preterpasi" @@ -7472,12 +8048,11 @@ msgstr "Preterpasi" msgid "Skip this flow" msgstr "Preterpasi ĉi tiun fluon" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Malpli granda" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "Dormetas la sciigon" @@ -7490,11 +8065,11 @@ msgstr "Programado" msgid "Some of your verifications are invalid." msgstr "Iuj de viaj konfirmoj estas nevalidaj." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Kelkaj aliaj fluoj, kiuj eble plaĉos al vi" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Kelkaj homoj povas respondi" @@ -7510,10 +8085,11 @@ msgstr "Iu reagis per {0} al {1}" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "Io ne estis tute ĝusta pri la datumoj, kiujn vi provas raporti. Bonvolu kontaki subtenejon." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Io misfunkciis" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Io misokazis, bonvolu reprovi" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Io misfunkciis, bonvolu reprovi." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Io misfunkciis!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "Io misfunkciis. Bonvolu reprovi post momento." + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "Io misfunkciis. Bonvolu reprovi." @@ -7539,20 +8118,23 @@ msgstr "Io misfunkciis. Bonvolu reprovi." msgid "Something wrong? Let us know." msgstr "Ĉu io misfunkciis? Sciigu nin." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "Pardonu! Via seanco eksvalidiĝis. Bonvolu ensaluti denove." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Ordigi respondojn" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Ordigi respondojn laŭ" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Ordigi respondojn al la sama afiŝo laŭ:" @@ -7579,7 +8161,7 @@ msgstr "Trudaĵo; troaj mencioj aŭ respondoj" msgid "Sports" msgstr "Sporto" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "Komencu konversacion, kaj ĝi aperos ĉi tie." @@ -7601,9 +8183,9 @@ msgstr "Komencu aldoni homojn!" msgid "Start chat with {displayName}" msgstr "Komenci babili kun {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Startpako" @@ -7611,12 +8193,12 @@ msgstr "Startpako" msgid "Starter pack by {0}" msgstr "Startpako de {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Startpako de <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Startpako de vi" @@ -7638,19 +8220,21 @@ msgstr "Starterpako ebligas al vi konigi viajn plej ŝatatajn fluojn kaj homojn msgid "Status Page" msgstr "Paĝo pri stato" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Paŝo {0} el {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Konservejo vakigita, nun relanĉu la apon." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Historio de agoj" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Sendi apelacion" msgid "Submit Appeal" msgstr "Sendi apelacion" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "Sendi raporton" @@ -7676,10 +8260,14 @@ msgstr "Sendi raporton" msgid "Subscribe" msgstr "Aboni" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Aboni al @{0} por uzi tiujn etikedojn:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "Aboni al agado de la konto" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Aboni al etikedilo" @@ -7692,8 +8280,12 @@ msgstr "Aboni al ĉi tiu etikedilo" msgid "Subscribe to this list" msgstr "Aboni al ĉi tiu listo" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "Sukceso" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Sukceso!" @@ -7705,7 +8297,7 @@ msgstr "Sukcese konfirmita" msgid "Suggested Accounts" msgstr "Proponitaj kontoj" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Proponitaj por vi" @@ -7714,26 +8306,26 @@ msgstr "Proponitaj por vi" msgid "Suggestive" msgstr "Maldeca" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Sunleviĝo" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Sunsubiro" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Subteno" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Ŝanĝi konton" @@ -7742,24 +8334,24 @@ msgstr "Ŝanĝi konton" msgid "Switch Account" msgstr "Ŝanĝi konton" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Ŝanĝi konton" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "Ŝanĝi al {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Sistema" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Sistema protokolo" @@ -7767,6 +8359,18 @@ msgstr "Sistema protokolo" msgid "Tags only" msgstr "Nur kradvortoj" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "Tuŝetu por informoj" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "Tuŝetu por pliaj informoj" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Diru nin pli" msgid "Terms" msgstr "Kondiĉoj" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Uzokondiĉoj" @@ -7848,10 +8454,6 @@ msgstr "Kampo de teksta enigo" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "Dankon pro via prikomentado! Ĝi estis sendita al la operatoro de la fluo." -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Dankon! Via retpoŝtadreso estis sukcese konfirmita." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Dankon. Via raporto estis sendita." @@ -7864,28 +8466,28 @@ msgstr "Dankon, vi sukcese konfirmis vian retpoŝtadreson. Vi povas fermi ĉi ti msgid "That contains the following:" msgstr "Tio enhavas la jenan:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Tiu identigilo estas jam estas uzata." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Tiu startpako ne troveblas." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Jen ĉio, uloj!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "Tio estas ĉio!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "Post malbloki, la konto povos interagi kun vi." @@ -7900,7 +8502,7 @@ msgstr "La apo estos restartita" msgid "The author of this thread has hidden this reply." msgstr "La aŭtoro de ĉi tiu fadeno kaŝis tiun respondon." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "La reta aplikaĵo de Bluesky" @@ -7920,10 +8522,6 @@ msgstr "La fluo Discover" msgid "The Discover feed now knows what you like" msgstr "La fluo Discover scias, kion plaĉas al vi" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "La retpoŝtadreso kiun vi entajpis, estas la sama kiel via nuna retpoŝtadreso." - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "Estas pli bone uzi la aplikaĵon. Elŝutu Bluesky nun kaj ni revenos tien, kie vi haltis." @@ -7944,8 +8542,16 @@ msgstr "La jenaj etikedoj estis aplikitaj al via enhavo." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "La sekvaj agordoj estos uzataj defaŭlte por ĉiuj kreataj de vi afiŝoj. Vi povas ŝanĝi ilin por unuopa afiŝo per la redaktilo." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "La leĝaro en via loko devigas kontroli ke vi estas plenkreskulo, antaŭ ol vi aliros certajn funkciojn ĉe Bluesky kiel poradolta enhavo kaj rekta mesaĝado." + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "La leĝaro en via loko devigas kontroli ke vi estas plenkreskulo por aliri certajn funkciojn. Tuŝetu por ekscii pli." + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "La afiŝo eble estis forigita." @@ -7953,9 +8559,10 @@ msgstr "La afiŝo eble estis forigita." msgid "The Privacy Policy has been moved to <0/>" msgstr "La regularo pri privateco translokiĝis al <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "La elektita videaĵo estas pli granda ol 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "La elektita videaĵo estas pli granda ol 100 MB. Bonvolu reprovi kun pli malgranda dosiero." #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "La Uzkondiĉoj translokiĝis al" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "La konfirmkodo kiun vi entajpis estas nevalida. Bonvolu certiĝi, ke vi uzis la ĝustan konfirman ligilon aŭ petu la novan." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Etosa" @@ -7990,14 +8597,14 @@ msgstr "Etosa" msgid "There is no time limit for account deactivation, come back any time." msgstr "Ne estas templimo por konta malaktivigo, revenu iam ajn." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Estis problemo konektante al Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Estis problemo konektante servilon" @@ -8006,17 +8613,12 @@ msgstr "Estis problemo konektante servilon" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Estis problemo konektante servilon, bonvolu kontroli vian interretan konekton kaj reprovu." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Estis problemo konektante al via servilo" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Estis problemo ŝargante sciigojn. Tuŝetu ĉi tie por reprovi." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Estis problemo ŝargante afiŝojn. Tuŝeti ĉi tie por reprovi." @@ -8037,7 +8639,7 @@ msgstr "Estis problemo ŝargante viajn listojn. Tuŝetu ĉi tie por reprovi." msgid "There was an issue fetching your service info" msgstr "Problemo okazis dum ŝarĝi infomojn de via servo" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Estis problemo forigante ĉi tiun fluon. Bonvolu kontroli vian interretan konekton kaj reprovu." @@ -8052,9 +8654,9 @@ msgstr "Estis problemo sendante vian raporton. Bonvolu kontroli vian interretan msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Estis problemo ĝisdatigante viajn fluojn, bonvolu kontroli vian interretan konekton kaj reprovu." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Estis problemo ĝisdatigante viajn fluojn, bonvolu kontroli vian interre msgid "There was an issue! {0}" msgstr "Estis problemo! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Estis problemo! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Okazis problemo. Bonvolu kontroli vian interretan konekton kaj reprovi." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Okazis neatendita problemo en la aplikaĵo. Bonvolu sciigi nin se tio okazis al vi!" @@ -8089,9 +8691,9 @@ msgstr "Okazis neatendita problemo en la aplikaĵo. Bonvolu sciigi nin se tio ok msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Estas impeto de novaj uzantoj ĉe Bluesky! Ni aktivigos vian konton kiel eble plej rapide." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." -msgstr "Ĉi tiuj agordoj nur aplikas al la fluo de sekvatoj." +msgstr "Ĉi tiuj agordoj nur aplikas al la Following-fluo." #: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" @@ -8146,7 +8748,7 @@ msgstr "Ĉi tiu enhavo estas gastigata de {0}. Ĉu vi volas ebligi eksterajn aŭ msgid "This content is not available because one of the users involved has blocked the other." msgstr "Ĉi tiu enhavo ne disponeblas pro ke unu el la koncernataj uzantoj blokis la alian." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Ĉi tiu enhavo ne estas videbla sen Bluesky-konto." @@ -8158,6 +8760,10 @@ msgstr "Ĉi tiu konversacio estas kun forigita aŭ malaktivigita konto. Premu po msgid "This email is already associated with your account." msgstr "Ĉi tiu retpoŝtadreso jam estas ligita al via konto." +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "Ĉi tiu funkcio permesas al uzantoj ricevi sciigojn pri viaj novaj afiŝoj kaj respondoj. Por kiu vi volas ŝalti ĝin?" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Ĉi tiu funkcio estas en beta. Vi povas legi pli pri deponejaj eksportoj en <0>ĉi tiu blogafiŝo." @@ -8170,7 +8776,7 @@ msgstr "Ĉi tiu funkcio ne disponeblas dum uzado de apa pasvorto. Bonvolu ensalu msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Ĉi tiu funkcio ne disponeblas dum uzado de apa pasvorto. Bonvolu ensaluti per via ĉefa pasvorto." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Ĉi tiu fluo nune havas grandan datumtrafikon kaj dumtempe nedisponeblas. Bonvolu provi denove poste." @@ -8190,7 +8796,7 @@ msgstr "Ĉi tiu fluo ne plu estas enreta. Anstataŭe ni montras <0>Discover. #: src/screens/Settings/components/ChangeHandleDialog.tsx:593 msgid "This handle is reserved. Please try a different one." -msgstr "Ĉi tiu identigilo estas rezervita. Bonvolu provi alian." +msgstr "Tiu identigilo estas rezervita. Bonvolu provi alian." #: src/components/dialogs/BirthDateSettings.tsx:41 msgid "This information is not shared with other users." @@ -8209,11 +8815,11 @@ msgstr "Ĉi tiu etiketo estis aplikita de la aŭtoro." msgid "This label was applied by you." msgstr "Ĉi tiu etikedo estis aplikita de vi." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Ĉi tiu etikedilo ne deklaris, kiajn etikedojn ĝi publikigas kaj ĝi povas esti neaktiva." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Ĉi tiu ligilo kondukas vin al la jena retejo:" @@ -8233,41 +8839,40 @@ msgstr "Ĉi tiu listo malplenas." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Ĉi tiu kontrolservo neatingeblas. Vidu pli da detaloj sube. Se ĉi tiu problemo daŭras, kontaktu nin." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Ĉi tiu afiŝo asertas, ke ĝi estis kreita je <0>{0}, sed ĝi estis unue vidita ĉe Bluesky je <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Ĉi tiu afiŝo havas nekonatan tipon de fadenado. Via apo eble estas malaktuala." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Ĉi tiu afiŝo estis forigita." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Ĉi tiu afiŝo estas nur videbla al ensalutintaj uzantoj. Ĝi ne estos videbla al ne ensalutintaj homoj." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "Ĉi tiu afiŝo videblas nur al ensalutintaj uzantoj." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." -msgstr "Ĉi tiu afiŝo estos kaŝita el fluoj kaj fadenoj. Tio ne povas esti malfarita." +msgstr "Ĉi tiu afiŝo estos kaŝota el fluoj kaj fadenoj. Tio ne povas esti malfarita." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "La aŭtoro de ĉi tiu afiŝo malŝaltis citafiŝojn." #: src/view/com/profile/ProfileMenu.tsx:482 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Ĉi tiu profilo estas nur videbla al ensalutintaj uzantoj. Ĝi ne estos videbla al ne ensalutintaj homoj." +msgstr "Ĉi tiu profilo estas videbla nur al ensalutintaj uzantoj. Ĝi ne estos videbla al ne ensalutintaj homoj." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Ĉi tiu respondo estos ordigota en kaŝitan sekcion ĉe la subo de via fadeno kaj silentigos sciigojn pri sekvontaj respondoj - ambaŭ por vi kaj aliuloj." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Ĉi tiu servo ne havigis uzokondiĉojn aŭ regularon pri privateco." @@ -8275,6 +8880,10 @@ msgstr "Ĉi tiu servo ne havigis uzokondiĉojn aŭ regularon pri privateco." msgid "This should create a domain record at:" msgstr "Ĉi tio kreu domajnan rikordon ĉe:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "Tio daŭru nur kelkajn minutojn." + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Ĉi tiu uzanto ne havas montratan nomon, kaj tial ne povas esti konfirmita." @@ -8316,16 +8925,18 @@ msgstr "Ĉi tiu uzanto sekvas neniun." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Ĉi tio forigos \"{0}\" de viaj silentigitaj vortoj. Vi ĉiam povos realdoni ĝin poste." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Ĉi tio forigos @{0} el la listo de rapidatingo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Ĉi tio forigos vian afiŝon el ĉi tiu citafiŝo por ĉiuj uzantoj kaj anstataŭigos ĝin per lokokupilo." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Fadenaj agordoj" @@ -8334,24 +8945,27 @@ msgstr "Fadenaj agordoj" msgid "Thread preferences" msgstr "Fadenaj preferoj" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Fadenaj preferoj" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Fadene" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Fadena reĝimo" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Agordoj pri fadenoj" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "Tempo restanta: {0, plural, one {# sekundo} other {# sekundoj}}" @@ -8376,42 +8990,56 @@ msgstr "Al kiu vi volus sendi ĉi tiun raporton?" msgid "Today" msgstr "Hodiaŭ" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Baskuli malvolvon" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Baskuligi por ebligi aŭ malebligi poradoltan enhavon" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Baskulas la sonon" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Plej popularaj" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "La plej popularaj respondoj unue" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Temo" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Traduki" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "Arbovido" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Popularaj" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Popularaj videaĵoj" @@ -8428,14 +9056,10 @@ msgstr "Reprovi" msgid "TV" msgstr "TV" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Du-faza aŭtentikigo (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Entajpu vian deziratan uzantnomon" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Tajpu vian mesaĝon ĉi tie" @@ -8453,7 +9077,7 @@ msgstr "Ne eblas konektiĝi. Bonvolu kontroli vian retkonekton kaj reprovi." #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Ne eblas kontakti vian servon. Bonvolu kontroli vian interretan konekton msgid "Unable to delete" msgstr "Ne eblas forigi" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "Malapliki tirpeton" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "Malapliki tirpeton {currentChannel}" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "Nedisponebla" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "Nedisponeblaj informoj pri fluo" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Malbloki" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Malbloki" @@ -8486,7 +9126,7 @@ msgstr "Malbloki" msgid "Unblock account" msgstr "Malbloki konton" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Ĉu malbloki konton?" @@ -8495,13 +9135,13 @@ msgstr "Ĉu malbloki konton?" msgid "Unblock list" msgstr "Malbloki liston" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Malfari reafiŝon" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Malfari reafiŝon ({0, plural, one {# reafiŝo} other {# reafiŝoj}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Ne sekvi" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Ne sekvi {0}" @@ -8523,7 +9163,7 @@ msgstr "Ne sekvi konton" msgid "Unfollows the user" msgstr "Ĉesas sekvi la uzanton" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Bedaŭrinde, neniu el viaj abonitaj etikediloj subtenas ĉi tiun tipon de raporto." @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "Ne plu ŝati" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Ne plu ŝati ({0, plural, one {# ŝato} other {# ŝatoj}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Malsilentigi" @@ -8555,8 +9195,8 @@ msgstr "Malsilentigi" msgid "Unmute {tag}" msgstr "Malsilentigi {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Malsilentigi konversacion" msgid "Unmute list" msgstr "Malsilentigi liston" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Malsilentigi fadenon" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Malsilentigi videaĵon" @@ -8597,8 +9237,8 @@ msgstr "Depingli fluon" msgid "Unpin from home" msgstr "Depingli de la hejmpaĝo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Depingli de la profilo" @@ -8614,8 +9254,8 @@ msgstr "{0} depinglita de hejmo" msgid "Unpinned from your feeds" msgstr "Depinglita de viaj fadenoj" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "Maldormeti retmesaĝan sciigon" @@ -8636,7 +9276,7 @@ msgstr "Malaboni de ĉi tiu etikedilo" msgid "Unsubscribed from list" msgstr "Malabonita de listo" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Nesubtenata videaĵa tipo" @@ -8662,8 +9302,8 @@ msgstr "Ĝisdatigi <0>{displayName} en listoj" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "Ĝisdatigi retpoŝtadreson" @@ -8676,17 +9316,17 @@ msgstr "Ŝanĝi al {domain}" msgid "Update your email" msgstr "Ĝisdatigi vian retpoŝtadreson" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Ĝisdatigo de citaĵa aldonaĵo malsukcesis" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Ĝisdatigado de responda videbleco malsukcesis" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Ĝisdatigado..." @@ -8698,20 +9338,20 @@ msgstr "Alŝuti foton anstataŭe" msgid "Upload a text file to:" msgstr "Alŝuti tekstodosieron al:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Alŝuti el la fotilo" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Alŝuti el la dosieroj" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Alŝuti el la biblioteko" msgid "Uploading images..." msgstr "Alŝutado de bildoj..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Alŝutado de ligila miniaturo..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Alŝutado de videaĵo..." @@ -8761,6 +9401,10 @@ msgstr "Uzi rekomendatajn agordojn" msgid "Use this to sign in to the other app along with your handle." msgstr "Uzi ĉi tion por registriĝi en la alia aplikaĵo per via identigilo." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "Uzu retpoŝtadreson de via konto aŭ alian realan retpoŝtadreson kiun vi posedas, por ke KWS aŭ Bluesky kontakteblos vin se necese." + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Uzita de:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Listo de uzantoj ĝisdatigita" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Uzantnomo aŭ retpoŝtadreso" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "uzantoj sekvataj de <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "uzantoj sekvantaj <0>@{0}" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Uzantoj, kiujn mi sekvas" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Uzantoj en \"{0}\"" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Uzantoj, kiujn vi sekvas" @@ -8846,11 +9502,11 @@ msgstr "Valoro:" msgid "Verification failed, please try again." msgstr "Konfirmado malsukcesis, bonvolu reprovi." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "Konfirmadaj agordoj" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "Konfirmadaj agordoj" @@ -8870,8 +9526,15 @@ msgstr "Konfirmita de:" msgid "Verify account" msgstr "Konfirmi konton" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "Konfirmi denove" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "Konfirmi kodon" @@ -8880,21 +9543,20 @@ msgstr "Konfirmi kodon" msgid "Verify DNS Record" msgstr "Kontrolu DNS-rikordon" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "Konfirmi retpoŝtadreson" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "Konfirmi retmesaĝan kodon" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Dialogujo pri retpoŝtadresa konfirmo" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "Konfirmi nun" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Kontroli tekstodosieron" msgid "Verify this account?" msgstr "Ĉu konfirmi ĉi tiun konton?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "Konfirmi vian aĝon" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Konfirmi vian retpoŝtadreson" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Konfirmi vian retpoŝtadreson" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "Konfirmado" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "Konfirmado de via stato de garantio pri aĝo" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Versio {appVersion}" +msgid "Version {0}" +msgstr "Versio {0}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Videaĵo" @@ -8928,7 +9598,7 @@ msgstr "Videaĵo" msgid "Video failed to process" msgstr "Pritraktado de videaĵo fiaskis" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Videaĵo-fluo" @@ -8942,15 +9612,15 @@ msgstr "Videaĵo de {0}: {text}" msgid "Video Games" msgstr "Videoludoj" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Videaĵo estas paŭzigita" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Videaĵo estas ludata" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Videaĵo netrovita." @@ -8958,11 +9628,11 @@ msgstr "Videaĵo netrovita." msgid "Video settings" msgstr "Agordoj pri videaĵoj" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Videaĵo alŝutita" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Videaĵo: {0}" @@ -8979,11 +9649,11 @@ msgstr "Videaĵoj devas esti malpli ol 3 minutojn longaj" msgid "View {0}'s avatar" msgstr "Vidi la profilbildon de {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Vidi la profilon de {0}" @@ -8991,7 +9661,7 @@ msgstr "Vidi la profilon de {0}" msgid "View {displayName}'s profile" msgstr "Vidi la profilon de {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Vidi la profilon de blokita uzanto" @@ -9009,7 +9679,6 @@ msgstr "Vidi protokolan eron" msgid "View details" msgstr "Vidi detalojn" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Vidi detalojn por raporti kopirajtan malobservon" @@ -9022,23 +9691,23 @@ msgstr "Vidi tutan fadenon" msgid "View information about these labels" msgstr "Vidu informojn pri ĉi tiuj etikedoj" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Vidi pli" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Vidi profilon" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Vidi la profilbildon" @@ -9054,28 +9723,28 @@ msgstr "Vidi konfirmojn de ĉi tiu uzanto" msgid "View users who like this feed" msgstr "Vidi uzantojn, kiuj ŝatis ĉi tiun fluon" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Vidi videaĵon" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Vidi viajn blokitajn kontojn" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "Vidi viajn defaŭltajn interagajn agordojn de afiŝoj" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Vidi viajn fluojn kaj esplori pli" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Montru viajn kontrol-listojn" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Vidi viajn silentigitajn kontojn" @@ -9083,8 +9752,8 @@ msgstr "Vidi viajn silentigitajn kontojn" msgid "View your verifications" msgstr "Vidi viajn konfirmojn" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Montras la tutan bildon" @@ -9092,16 +9761,20 @@ msgstr "Montras la tutan bildon" msgid "Views video in immersive mode" msgstr "Montras videaĵon plenekrane" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" msgstr "Viziti retejon" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "Viziti viajn sciigajn agordojn" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Laŭteco" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Averti pri enhavo kaj elfiltri el fluoj" msgid "Watch now" msgstr "Spekti nun" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "Ni ne eblis konekti al la sevo provizanta ĉi tiun propran fluon. Ĝi eble estas dumtempe nedisponebla kaj spertas problemojn, aŭ permanente nedisponebla." + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "Ni ne eblis trovi ĉi tiun liston. Ĝi verŝajne estis forigita." + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "Ni ne povis trovi rezultojn por tiu kradvorto." @@ -9128,7 +9809,7 @@ msgstr "Ni ne povis trovi rezultojn por tiu kradvorto." msgid "We couldn't find any results for that topic." msgstr "Ni ne povis trovi rezultojn por tiu temo." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Ni ne povis ŝargi ĉi tiun konversacion" @@ -9136,6 +9817,10 @@ msgstr "Ni ne povis ŝargi ĉi tiun konversacion" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Ni taksas, ke via konto pretos post {estimatedTime}." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "Ni partneris kun <0>KWS por konfirmi ke vi estas plenkreskulo. Kiam vi alklakos \"Komenci\" sube, KWS kontrolos, ĉu vi antaŭe konfirmis vian aĝon uzante ĉi tiun retpoŝtadreson por aliaj ludoj/servoj funkciigitaj de KWS-teknologio. Se ne, KWS sendos al vi retmesaĝon kun instrukcioj por konfirmi vian aĝon. Kiam vi finos, vi estos revenigota por daŭre uzi Bluesky." + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Ni sendis plian konfirman retmesaĝon al <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "Ni esperas, ke vi havas mirindan tempon. Memoru, Bluesky estas:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Ne plu da afiŝoj de viaj sekvantoj. Jen la plej lastaj de <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "Ni rekomendas al vi elekti almenaŭ du interesojn." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Ni sendis retmesaĝon al <0>{0} enhavatan ligilon. Bonvolu alklaki ĝin por plenumi la procezon de retpoŝtadresa konfirmado." -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Ni ne povis determini ĉu vi rajtas alŝuti videaĵojn. Bonvolu provi denove." @@ -9164,10 +9849,14 @@ msgstr "Ni ne povis determini ĉu vi rajtas alŝuti videaĵojn. Bonvolu provi de msgid "We were unable to load your birth date preferences. Please try again." msgstr "Ni ne povis ŝargi viajn preferojn pri naskiĝdato. Bonvolu provi denove." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "Ni ne eblis ŝargi viajn konfiguritajn etikedilojn nuntempe." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "Ni ne eblis ricevi la konfirmadon pro konekta problemo. Eble ĝi alvenos poste. Se jes, via konto ĝisdatigos aŭtomate." + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Ne eblis konetktiĝi. Bonvolu reprovi por kontinui agordadon de via konto. Se tio daŭre fiaskos, vi povos preterlasi ĉi tiun procezon." @@ -9176,13 +9865,29 @@ msgstr "Ne eblis konetktiĝi. Bonvolu reprovi por kontinui agordadon de via kont msgid "We will let you know when your account is ready." msgstr "Ni informos vin kiam via konto estos preta." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Ni sendos retmesaĝon al <0>{0} enhavatan ligilon. Bonvolu alklaki ĝin por plenumi la procezon de retpoŝtadresa konfirmado." #: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." -msgstr "Ni uzos ĉi tion por tajlori vian ĝuon." +msgstr "Ni uzos ĉi tion por adapti vian ĝuon." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "Ni konfirmas vian statuson de garantio pri aĝo kun niaj serviloj. Tio daŭru nur kelkajn sekundojn." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "Ni havas problemojn pravalorizante la procezon de garantio pri aĝo por via konto. Bonvolu <0>kontakti subtenejon por asistado." #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 @@ -9193,7 +9898,7 @@ msgstr "Ni havas retajn problemojn, provu denove" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Ni prezentas novan tavolon de konfirmado ĉe Bluesky — facile videbla kontrolmarko." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Ni ege feliĉas ke vi aliĝas nin!" @@ -9205,15 +9910,15 @@ msgstr "Ni bedaŭras, sed ni ne povis adrestrovi ĉi tiun liston. Se tio daŭras msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Ni bedaŭras, sed ni ne povis ŝargi viajn silentigitajn vortojn nuntempe. Bonvolu provi denove." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Bedaŭrinde, via serĉo malsukcesis. Bonvolu reprovi post kelkaj minutoj." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Ni bedaŭras! La afiŝo al kiu vi respondas estis forigita." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Ni bedaŭras! Ni ne povas trovi la paĝon, kiun vi serĉis." @@ -9222,6 +9927,26 @@ msgstr "Ni bedaŭras! Ni ne povas trovi la paĝon, kiun vi serĉis." msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Ni bedaŭras! Vi povas aboni nur dudek etikedilojn kaj vi atingis vian limon de dudek." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "Ni konfirmis vian staton de garantio pri aĝo. Nun vi povas fermi ĉi tiun dialogujon." + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Rebonvenon!" @@ -9240,7 +9965,7 @@ msgstr "Kiel vi volas nomi vian startpakon?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Kio okazas?" @@ -9256,11 +9981,11 @@ msgstr "Kiuj lingvoj estis uzitaj en ĉi tiu afiŝo?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Kiujn lingvojn vi ŝatus vidi en viaj algoritmaj fadenoj?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Kiu povas interagi kun ĉi tiu afiŝo?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Kiu povas respondi" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "Kiu povas konfirmi?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Ups!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "Ups! Malsukcesis ŝargi popularajn videaĵojn." @@ -9322,12 +10047,12 @@ msgstr "Kial ĉi tiu uzanto estu reviziita?" msgid "Write a message" msgstr "Tajpu mesaĝon" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Tajpu afiŝon" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Tajpu vian respondon" @@ -9343,7 +10068,7 @@ msgstr "Malĝusta DID sendita de servilo. Ricevita: {0}" #: src/components/live/EditLiveDialog.tsx:153 #: src/components/live/GoLiveDialog.tsx:129 msgid "www.mylivestream.tv" -msgstr "www.miaelsendfluo.tv" +msgstr "www.miatujelsendo.tv" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:87 msgid "Yes" @@ -9358,11 +10083,11 @@ msgstr "Jes, malaktivigi" msgid "Yes, delete this starter pack" msgstr "Jes, forigu ĉi tiun startpakon" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Jes, malligi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Jes, kaŝi" @@ -9378,6 +10103,10 @@ msgstr "Hieraŭ" msgid "You" msgstr "Vi" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "Vi estas fidata konfirmanto" @@ -9386,6 +10115,10 @@ msgstr "Vi estas fidata konfirmanto" msgid "You are creating an account on" msgstr "Vi kreas konton ĉe" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "Vi nune ne eblas aliri procezon de Garantio pri aĝo de Bluesky. Bonvolu <0>kontakti nian kontrolad-teamon se vi kredas, ke tio estas eraro." + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Vi estas en vico." @@ -9393,17 +10126,17 @@ msgstr "Vi estas en vico." #: src/components/live/EditLiveDialog.tsx:119 #: src/components/live/EditLiveDialog.tsx:124 msgid "You are Live" -msgstr "Vi elsendfluas" +msgstr "Vi tujelsendas" #: src/components/live/queries.ts:211 msgid "You are no longer live" -msgstr "Vi ne plu elsendfluas" +msgstr "Vi ne plu tujelsendas" #: src/components/live/queries.ts:35 msgid "You are not allowed to go live" msgstr "Vi ne havas permeson elsendflui" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Vi ne rajtas alŝuti videaĵojn." @@ -9413,14 +10146,13 @@ msgstr "Vi sekvas neniun." #: src/components/live/queries.ts:156 msgid "You are now live!" -msgstr "Vi nun elsendfluas!" +msgstr "Vi nun tujelsendas!" #: src/components/verification/VerificationsDialog.tsx:64 msgid "You are verified" msgstr "Vi estas konfirmita" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "Vi estas konfirmita. Vi perdos vian konfirman staton, se vi ŝanĝos vian montratan nomon. <0>Eksciu pli." @@ -9430,7 +10162,7 @@ msgstr "Vi estas konfirmita. Vi perdos vian konfirman staton, se vi ŝanĝos via #: src/screens/Search/modules/ExploreInterestsCard.tsx:45 msgid "You can adjust your interests at any time from \"Content and media\" settings." -msgstr "Vi povas tajlori viajn interesojn iam ajn de agordoj pri \"Enhavo kaj aŭdvidaĵoj\"." +msgstr "Vi povas adapti viajn interesojn iam ajn de agordoj pri \"Enhavo kaj aŭdvidaĵoj\"." #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 @@ -9441,10 +10173,18 @@ msgstr "Vi ankaŭ povas malkovri novajn proprajn fluojn por sekvi." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Vi ankaŭ povas dumtempe malaktivigi vian konton anstataŭe kaj reaktivigi ĝin iam ajn." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "Vi povas elekti ĉu sciigoj havas sonon en la babilejaj agordoj ene de la apo" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Vi povas daŭrigi daŭrantajn konversaciojn sendepende de la agordo kiun vi elektos." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "Vi nun povas elekti esti sciigota kiam specifaj homoj afiŝos. Se estas iu pri kiu vi volas akurataj ĝisdatigoj, iru al ties profilo kaj trovi la novan sonorilan piktogramon apud la sekvi-butonon." + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9452,14 +10192,14 @@ msgstr "Vi nun povas ensaluti per via nova pasvorto." #: src/screens/Deactivated.tsx:133 msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." -msgstr "Vi povas reaktivigi vian konton por daŭrigi ensaluton. Via profilo kaj afiŝoj estos videblaj al aliaj uzantoj." +msgstr "Vi povas reaktivigi vian konton por daŭrigi ensaluton. Via profilo kaj afiŝoj videblos al aliaj uzantoj." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "Vi povas agordi defaŭltajn interagajn agordojn en <0>Agordoj → Kontrolado → Interagaj agordoj." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Vi povas ĝisdatigi ĉi tion poste en viaj agordoj." @@ -9472,23 +10212,23 @@ msgstr "Vi ne havas sekvantojn." msgid "You don't follow any users who follow @{name}." msgstr "Vi sekvas neniun uzanton kiu sekvas @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "Vi ne havas babilpetojn ĉi-momente." #: src/view/com/modals/InviteCodes.tsx:67 msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." -msgstr "Vi ankoraŭ ne havas invitkodojn! Ni sendos al vi kelkajn, kiam vi estos sur Bluesky iom pli longe." +msgstr "Vi ankoraŭ ne havas invitkodojn! Ni sendos al vi kelkajn, kiam vi estos ĉe Bluesky iom pli longe." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Vi havas neniujn alpinglitajn fadenojn." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Vi havas neniun konservitan fluon." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Vi blokis la aŭtoron aŭ vi estas blokita de la aŭtoro." @@ -9502,6 +10242,10 @@ msgstr "Vi blokis ĉi tiun uzanton" msgid "You have blocked this user. You cannot view their content." msgstr "Vi blokis ĉi tiun uzanton. Vi ne povas vidi ties enhavon." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "Vi tute malŝaltis sciigojn pri respondoj, citaĵoj kaj mencioj, do ĉi tiu langeto ne plu ĝisdatigos. Por ŝanĝi tion, vizitu viajn <0>sciigajn agordojn." + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Vi silentigis ĉi tiun konton." msgid "You have muted this user" msgstr "Vi silentigis ĉi tiun uzanton" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Vi ankoraŭ havas neniun konversacion. Komencu iun!" @@ -9547,7 +10291,7 @@ msgstr "Vi ankoraŭ ne blokis iun ajn kontojn. Por bloki konton, rigardu ĝian p msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Vi ankoraŭ ne silentigis iun ajn konton. Por silentigi konton, iru al ties profilo kaj elektu \"Silentigi konton\" en la menuo de ties konto." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Vi atingis la finon" @@ -9572,6 +10316,10 @@ msgstr "Vi ankoraŭ silentigis neniujn vortojn aŭ kradvortojn" msgid "You hid this reply." msgstr "Vi kaŝis ĉi tiun respondon." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "Vi jam iniciatis ĉi tiun procezon antaŭ {0}. Por atingi vian ricevujon, eble daŭros ĝis 5 minutojn por ke mesaĝojn alvenu. Bonvolu konsideri atendi kelkajn minutojn antaŭ ol reprovi." + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Vi rajtas apelacii pri etikedoj surmetite de aliuloj, se vi kredas ke ili estis erare surmetitaj." @@ -9592,7 +10340,7 @@ msgstr "Vi povas aldoni maksimume 3 fluojn" msgid "You may only select up to 4 images" msgstr "Vi povas elekti maksimume 4 bildojn" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "Vi devas esti almenaŭ 13-jaraĝa por krei konton." @@ -9600,6 +10348,14 @@ msgstr "Vi devas esti almenaŭ 13-jaraĝa por krei konton." msgid "You must be following at least seven other people to generate a starter pack." msgstr "Vi devas sekvi almenaŭ sep aliajn homojn por generi startpakon." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "Vi devas finigi vian garantion pri aĝo por aliri la agordojn sube." + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "Vi devas finigi vian garantion pri aĝo por aliri ĉi tiun ekranon." + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Vi devas permesi aliron al via bildbiblioteko por konservi QR-kodon" @@ -9608,6 +10364,11 @@ msgstr "Vi devas permesi aliron al via bildbiblioteko por konservi QR-kodon" msgid "You must select at least one labeler for a report" msgstr "Vi devas elekti almenaŭ unu etikedilon por raporti" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "Vi devas ensaluti por vidi ĉi tiun afiŝon." + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "Vi konfirmu vian retpoŝtadreson, antaŭ ol vi povos ŝalti retpoŝtan 2FA-on." @@ -9616,7 +10377,7 @@ msgstr "Vi konfirmu vian retpoŝtadreson, antaŭ ol vi povos ŝalti retpoŝtan 2 msgid "You previously deactivated @{0}." msgstr "Vi antaŭe malaktivigis @{0}." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "Vi volu nun relanĉi la apon." @@ -9628,22 +10389,26 @@ msgstr "Vi reagis per {0}" msgid "You reacted {0} to {1}" msgstr "Vi reagis per {0} al {1}" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Vi elsalutos el ĉiuj viaj kontoj." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "Vi ne plu ricevos sciigojn pri {0}" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Vi ne plu ricevos sciigojn pri ĉi tiu fadeno" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Vi nun ricevos sciigojn pri ĉi tiu fadeno" #: src/screens/Login/SetNewPasswordForm.tsx:108 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." -msgstr "Retmesaĝe vi ricevos \"restarigan kodon. Enigu tiun kodon ĉi tien, poste enigu vian novan pasvorton." +msgstr "Retmesaĝe vi ricevos \"restarigan kodon\". Enigu tiun kodon ĉi tien, poste entajpu vian novan pasvorton." #: src/screens/Messages/components/ChatListItem.tsx:154 msgid "You: {0}" @@ -9657,11 +10422,11 @@ msgstr "Vi: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Vi: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Vi sekvos la sugestitajn uzantojn kaj fluojn post kiam vi finos krei vian konton!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Vi sekvos la proponitajn uzantojn post kiam vi finos krei vian konton!" @@ -9673,9 +10438,9 @@ msgstr "Vi eksekvos ĉi tiujn homojn kaj {0} aliajn" msgid "You'll follow these people right away" msgstr "Vi sekvos ĉi tiujn homojn tuj" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Vi ricevos retmesaĝon ĉe <0>{0} por konfirmi, ke tiu estas vi." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "Vi ekricevos sciigojn pri {0}!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "Vi elektis kaŝi vorton aŭ kradvorton en ĉi tiu afiŝo." msgid "You've found some people to follow" msgstr "Vi trovis kelkajn personojn por sekvi" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Vi atingis la finon de via fluo! Trovu pliajn kontojn por sekvi." @@ -9711,19 +10480,23 @@ msgstr "Vi atingis la finon de via fluo! Trovu pliajn kontojn por sekvi." msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Vi atingis la maksimuman nombron da permesitaj petoj. Bonvolu reprovi poste." -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Vi atingis vian tagan limon por videaĵ-alŝutoj (tro da bajtoj)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Vi atingis vian tagan limon por videaĵ-alŝutoj (tro da videaĵoj)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Vi elĉerpis videaĵojn por spekti. Ĉu eble estas bona tempo fari paŭzon?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Via konto" @@ -9735,13 +10508,13 @@ msgstr "Via konto estis forigita" msgid "Your account has been suspended" msgstr "Via konto estis suspendita" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Via konto ne estas sufiĉe malnova por alŝuti videaĵojn. Bonvolu reprovi poste." #: src/screens/Settings/components/ExportCarDialog.tsx:67 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." -msgstr "Via konta deponejo enhavanta ĉiujn publikajn datum-rikordojn estas elŝutebla kiel \"CAR\"-dosiero. Tiu dosiero ne enhavas aŭdvidaĵajn enkorpigaĵojn kiel bildoj aŭ viaj privataj datumoj kiuj devas esti elŝutitaj aparte." +msgstr "Via konta deponejo enhavanta ĉiujn publikajn datum-rikordojn estas elŝutebla kiel \"CAR\"-dosiero. Tiu dosiero ne enhavas aŭdvidaĵajn enkorpigaĵojn kiel bildoj aŭ viaj privataj datumoj kiuj devas esti elŝutotaj aparte." #: src/screens/Takendown.tsx:214 msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error." @@ -9751,11 +10524,11 @@ msgstr "Via konto evidentiĝis esti kontraŭ la <0>Uzokondiĉoj de Bluesky Socia msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "Via apelacio estas sendita. Se via apelacio sukcesos, vi ricevos retmesaĝon." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Via naskiĝdato" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Via retumilo ne subtenas la videaĵ-formon. Bonvolu provi uzante alian retumilon." @@ -9771,13 +10544,15 @@ msgstr "Via elekto estos memorota por estontecaj ligiloj. Vi povas ŝanĝi ĝin msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Via nuna identigilo, <0>{0}, estos aŭtomate rezervita por vi. Vi povos denove ekuzi ĝin iam ajn de ĉi tiu konto." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "Via retpoŝtadreso estis ĝisdatigita, sed ĝi ankoraŭ ne estas konfirmita. Sekve bonvolu konfirmi vian novan retpoŝtadreson." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "Via retpoŝtadreso" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Via retpoŝtadreso ŝajnas esti nevalida." @@ -9786,15 +10561,11 @@ msgstr "Via retpoŝtadreso ŝajnas esti nevalida." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "Via retpoŝtadreso ankoraŭ ne estas konfirmita. Bonvolu konfirmi vian retpoŝtadreson por ĝui ĉiujn funkciojn de Bluesky." -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Via retpoŝtadreso ankoraŭ ne estas konfirmita. Tio estas grava elemento de sekureco, kiun ni rekomendas." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "Via unua ŝato!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "Viaj sekvantoj" @@ -9806,19 +10577,15 @@ msgstr "Via fluo de sekvatoj estas malplena! Eksekvu pli da homoj por ekscii, ki msgid "Your full handle will be <0>@{0}" msgstr "Via tuta identigilo estos <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "Via tuta uzantnomo estos <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "Viaj interesoj" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "Viaj interesoj estis ĝisdatigitaj!" @@ -9835,15 +10602,15 @@ msgstr "Viaj silentigitaj vortoj" msgid "Your password has been changed successfully!" msgstr "Via pasvorto estis ŝanĝita sukcese!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "Via pasvorto bezonas almenaŭ 8 signojn." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Via afiŝo estis publikigita" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Viaj afiŝoj estis publikigitaj" @@ -9851,15 +10618,19 @@ msgstr "Viaj afiŝoj estis publikigitaj" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Viaj afiŝoj, ŝatoj, kaj blokigoj estas publikaj. Silentigoj estas privataj." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "Via preferata lingvo" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." -msgstr "Via profilo, afiŝoj, fluoj kaj listoj ne plu estos videblaj por aliaj uzantoj de Bluesky. Vi povas reaktivigi vian konton iam ajn per ensaluto." +msgstr "Via profilo, afiŝoj, fluoj kaj listoj ne plu videblos por aliaj uzantoj de Bluesky. Vi povas reaktivigi vian konton iam ajn per ensaluto." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Via respondo estis publikigita" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "Via raporto estos sendota al <0>{0}." @@ -9867,7 +10638,7 @@ msgstr "Via raporto estos sendota al <0>{0}." msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Via raporto estos sendota al la kontrolservo de Bluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "Viaj elektitaj interesoj helpas nin havigi al vi enhavon, kiu gravas al vi." diff --git a/src/locale/locales/es/messages.po b/src/locale/locales/es/messages.po index 7c68f034dc..d1834a801d 100644 --- a/src/locale/locales/es/messages.po +++ b/src/locale/locales/es/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: es\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:41\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,7 +27,7 @@ msgstr "(activo)" msgid "(contains embedded content)" msgstr "(contiene contenido incrustado)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(sin correo electrónico)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# republicación} other {# republicaciones}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# segundo} other {# segundos}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# elemento sin leer} other {# elementos sin leer}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {# elemento sin leer} other {# elementos sin leer}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {# mes} other {# meses}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {seguidor} other {seguidores}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {siguiendo} other {siguiendo}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {me gusta} other {me gusta}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {me gusta} other {me gusta}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {publicación} other {publicaciones}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {cita} other {citas}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {republicación} other {republicaciones}}" @@ -135,19 +138,27 @@ msgstr "{0} <0>en <1>etiquetas" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>en <1>texto y etiquetas" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" -msgstr "" +msgstr "{0} está en directo" #: src/components/live/queries.ts:39 msgid "{0} is not a valid URL" +msgstr "{0} no es una URL válida" + +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} se han unido esta semana" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} de {1}" @@ -164,8 +175,16 @@ msgstr "{0} reaccionó con {1}" msgid "{0} reacted {1} to {2}" msgstr "{0} reaccionó con {1} a {2}" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "Avatar de {0}" @@ -197,12 +216,12 @@ msgstr "{0} min." msgid "{0}s" msgstr "{0} s" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# elemento sin leer} other {# elementos sin leer}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Paquete de inicio de {displayName}" @@ -214,174 +233,173 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {horas}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuto} other {minutos}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} te siguieron" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "A {firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} les gusta tu feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "A {firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} les gusta tu publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" +msgstr "A {firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} les gusta tu republicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} eliminaron sus verificaciones de tu cuenta" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} han republicado tu publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} han republicado tu republicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} se han inscrito a tu paquete de inicio" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} te han verificado" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} te siguió" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} también te siguió" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "A {firstAuthorLink} le gusta tu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "A {firstAuthorLink} le gusta tu publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" -msgstr "" +msgstr "A {firstAuthorLink} le gusta tu republicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} eliminó su verificación de tu cuenta" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} republicó tu publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" -msgstr "" +msgstr "{firstAuthorLink} republicó tu republicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} se inscribió con tu paquete de inicio" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} te verificó" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} te siguieron" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "A {firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} les gustó tu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "A {firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} les gustó tu publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" +msgstr "A {firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} les gustó tu republicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} eliminaron sus verificaciones de tu cuenta" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} republicaron tu publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} republicaron tu republicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} se han inscrito con tu paquete de inicio" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} te verificaron" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} te siguió" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} también te siguió" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "A {firstAuthorName} le gusta tu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "A {firstAuthorName} le gusta tu publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" -msgstr "" +msgstr "A {firstAuthorName} le gusta tu republicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} eliminó su verificación de tu cuenta" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} republicó tu publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" -msgstr "" +msgstr "{firstAuthorName} republicó tu republicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} se inscribió con tu paquete de inicio" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} te verificó" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} siguiendo" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "No se puede enviar un mensaje a {handle}" #: src/components/live/utils.ts:15 msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" -msgstr "" +msgstr "{hours, plural, one {# hora {minutesString}} other {# horas {minutesString}}}" #: src/components/live/utils.ts:19 msgid "{hours, plural, one {# hour} other {# hours}}" -msgstr "" +msgstr "{hours, plural, one {# hora} other {# horas}}" #. Number of users (always at least 50) who have joined Bluesky using a specific starter pack #: src/components/StarterPack/StarterPackCard.tsx:101 @@ -390,9 +408,9 @@ msgstr "Se han unido {joinedAllTimeCount, plural, other {# usuarios}}." #: src/components/live/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" -msgstr "" +msgstr "{minutes, plural, one {# minuto} other {# minutos}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# notificacion no leída} other {# notificaciones no leídas}}" @@ -412,7 +430,7 @@ msgstr "{rank}." #. trending topic time spent trending. should be as short as possible to fit in a pill #: src/screens/Search/modules/ExploreTrendingTopics.tsx:206 msgid "{type}h ago" -msgstr "Desde hace {type} h" +msgstr "Hace {type} h" #: src/components/verification/VerifierDialog.tsx:60 msgid "{userName} is a trusted verifier" @@ -432,12 +450,12 @@ msgstr "Verificaciones de {userName}" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "Se ha incluido a <0>{0}, <1>{1}, y {2, plural, one {# más} other {# más}} a tu paquete de inicio" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "Se ha incluido a <0>{0}, <1>{1}, y {2, plural, one {# más} other {# más}} a tu paquete de inicio" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {seguidor} other {seguidores}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {siguiendo} other {siguiendo}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} y<1> <2>{1} forman parte de tu paquete de inicio" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} forma parte de tu paquete de inicio" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} miembros" @@ -466,11 +484,11 @@ msgstr "<0>{0} miembros" msgid "<0>{date} at {time}" msgstr "<0>{date} a las {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>En pruebas: si activas esta opción, solo te notificaremos de las respuestas y las citas de las cuentas a las que sigues. Con el tiempo iremos añadiendo más opciones." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<0>Inicia sesión<1> o <2>crea una cuenta<3> <4>para acceder a noticias, deportes, debates políticos y todo lo que sucede en Bluesky." -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Tú y<1> <2>{0} estáis incluidos en tu paquete de inicio" @@ -503,10 +521,14 @@ msgstr "un mensaje" msgid "A new form of verification" msgstr "Una nueva forma de verificar" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Acerca de" @@ -524,25 +546,25 @@ msgstr "Aceptar la solicitud de chat" msgid "Accept Request" msgstr "Aceptar la solicitud" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Accesibilidad" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Ajustes de accesibilidad" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Cuenta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Cuenta seguida" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Cuenta silenciada" msgid "Account Muted by List" msgstr "Cuenta silenciada por una lista" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Opciones de la cuenta" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Cuenta eliminada del acceso rápido" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Has dejado de seguir a esta cuenta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Cuenta no silenciada" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Las cuentas con una marca de verificación ondeada <0><1/> pueden verificar a otras. Bluesky se encarga de seleccionar a estas cuentas de confianza." +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "Actividad de otras personas" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "Notificaciones de actividad" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Añadir" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Agregar {0} más para continuar" @@ -619,7 +651,7 @@ msgstr "Añadir una advertencia de contenido" #: src/components/live/GoLiveDialog.tsx:101 msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event." -msgstr "" +msgstr "Añade un estado temporal a tu perfil sobre tu directo. Cuando alguien haga clic en tu avatar, verá información sobre tu evento en directo." #: src/view/screens/ProfileList.tsx:924 #: src/view/screens/ProfileList.tsx:942 @@ -634,8 +666,8 @@ msgstr "Añadir una cuenta" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Añadir un texto alternativo" msgid "Add alt text (optional)" msgstr "Añadir un texto alternativo (opcional)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Añadir otra cuenta" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Añadir otra publicación" @@ -670,8 +702,8 @@ msgstr "Añadir contraseña de app" msgid "Add emoji reaction" msgstr "Añadir reacción con emoji" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Añadir más detalles (opcional)" @@ -683,7 +715,7 @@ msgstr "Añadir palabra silenciada con los ajustes seleccionados" msgid "Add muted words and tags" msgstr "Añadir palabras silenciadas y etiquetas" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Añadir nueva publicación" @@ -704,7 +736,7 @@ msgstr "Añadir reacción" msgid "Add recommended feeds" msgstr "Añadir feeds recomendados" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "¡Añade algunos feeds a tu paquete de inicio!" @@ -725,10 +757,6 @@ msgstr "Añade este feed a tus feeds" msgid "Add to lists" msgstr "Añadir a las listas" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Añadir a mis feeds" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "Añadir usuario a la lista" @@ -738,11 +766,11 @@ msgstr "Añadir usuario a la lista" msgid "Added to list" msgstr "Añadido a la lista" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Añadido a mis feeds" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "Detalles adicionales (máximo 1000 caracteres)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Detalles adicionales (máximo 300 caracteres)" @@ -750,18 +778,18 @@ msgstr "Detalles adicionales (máximo 300 caracteres)" msgid "Adult" msgstr "Solo para adultos" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Contenido para adultos" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "El contenido para adultos solo se puede activar a través de la web en <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "El contenido para adultos está desactivado." @@ -770,16 +798,32 @@ msgstr "El contenido para adultos está desactivado." msgid "Adult Content labels" msgstr "Etiquetas de contenido para adultos" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Avanzado" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "Verificación de edad" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "No se ha podido enviar la solicitud de verificación de edad, vuelve a intentarlo." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "Solicitud de verificación de edad enviada" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "La verificación de edad tarda unos pocos minutos" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "alice@ejemplo.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Todas" @@ -793,7 +837,7 @@ msgstr "¡Se han seguido todas las cuentas!" msgid "All languages" msgstr "Todos los idiomas" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Todos los feeds que has guardado, en un mismo sitio." @@ -802,16 +846,21 @@ msgstr "Todos los feeds que has guardado, en un mismo sitio." msgid "Allow access to your direct messages" msgstr "Permitir el acceso a tus mensajes directos" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Permitir nuevos mensajes de" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "Permite que las otras personas reciban notificaciones de tus publicaciones" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Permitir citas" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Permitir respuestas de:" @@ -828,13 +877,13 @@ msgstr "¿Ya tienes un código?" msgid "Already signed in as @{0}" msgstr "Ya has iniciado sesión como @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "Texto alternativo" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Texto alternativo" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "El texto alternativo permite describir las imágenes para los usuarios ciegos o con problemas de visión. Además, ayuda a dar más contexto para todas las personas." @@ -861,27 +910,19 @@ msgstr "El texto alternativo aparecerá cortado. {MAX_ALT_TEXT, plural, other {L msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Te hemos enviado un correo electrónico a {0} con un código de confirmación. Introdúcelo a continuación." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "Te hemos enviado un código de confirmación a tu dirección de correo electrónico anterior, {currentEmail}. Introdúcelo a continuación." - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Te hemos enviado un correo electrónico con un código de confirmación. Introdúcelo a continuación." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Se ha producido un error" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Se produjo un error" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Se produjo un error al comprimir el video." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "Error al recuperar el feed." @@ -889,11 +930,11 @@ msgstr "Error al recuperar el feed." msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Se produjo un error al generar tu paquete de inicio. ¿Quieres intentarlo de nuevo?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Se produjo un error al cargar el video. Vuelve a intentarlo." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Se produjo un error mientras cargaba el video. Vuelve a intentarlo." @@ -910,7 +951,7 @@ msgstr "Se produjo un error mientras seleccionabas el video" msgid "An error occurred while trying to follow all" msgstr "Se produjo un error mientras intentabas seguir a todos" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Se produjo un error mientras se cargaba el video." @@ -934,8 +975,8 @@ msgstr "Se produjo un problema mientras intentaba abrir el chat" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "se produjo un error desconocido" msgid "an unknown labeler" msgstr "un etiquetador desconocido" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "y" @@ -963,10 +1004,14 @@ msgstr "y" msgid "Animals" msgstr "Animales" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "GIF animado" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "La verificación llega a Bluesky" @@ -980,7 +1025,13 @@ msgstr "Comportamiento antisocial" msgid "Anybody can interact" msgstr "Cualquiera puede interactuar" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "Cualquier persona que me siga" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "Los nombres de contraseña de app solo pueden contener letras, números, msgid "App password names must be at least 4 characters long" msgstr "El nombre de la contraseña de app debe tener al menos cuatro caracteres" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Contraseñas de app" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Contraseñas de app" @@ -1053,10 +1104,10 @@ msgstr "Apelar la suspensión" msgid "Appeal this decision" msgstr "Apelar esta decisión" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Aparencia" @@ -1065,12 +1116,20 @@ msgstr "Aparencia" msgid "Apply default recommended feeds" msgstr "Aplicar feeds recomendados predeterminados" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Archivado desde {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Publicación archivada" @@ -1078,7 +1137,7 @@ msgstr "Publicación archivada" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "¿Seguro que quieres eliminar la contraseña de app \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "¿Quieres eliminar este mensaje? Se eliminará para ti, pero no para la otra persona." @@ -1098,19 +1157,15 @@ msgstr "¿Quieres salir de esta conversación?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "¿Quieres salir de esta conversación? Los mensajes se eliminarán para ti, pero no para la otra persona." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "¿Quieres eliminar {0} de tus feeds?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "¿Quieres eliminar esto de tus feeds?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "¿Quieres descartar este borrador?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "¿Quieres descartar esta publicación?" @@ -1131,29 +1186,26 @@ msgstr "Arte" msgid "Artistic or non-erotic nudity." msgstr "Desnudez artística o no erótica." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" -msgstr "" +msgstr "Asignar un tema para el algoritmo" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Al menos 3 caracteres" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Las opciones de reproducción automática están ahora en <0>los ajustes de Contenido y medios." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Reproducir videos y GIFs automáticamente" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Reproducir videos y GIFs automáticamente" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Atrás" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Volver a los chats" @@ -1184,7 +1236,7 @@ msgstr "Antes de crear una lista, debes verificar tu correo electrónico." #: src/lib/hooks/useOpenComposer.tsx:14 msgid "Before creating a post or replying, you must first verify your email." -msgstr "" +msgstr "Para publicar o responder, debes verificar tu correo electrónico." #: src/components/StarterPack/ProfileStarterPacks.tsx:235 #: src/components/StarterPack/ProfileStarterPacks.tsx:245 @@ -1193,30 +1245,46 @@ msgstr "Antes de crear un paquete de inicio, debes verificar tu correo electrón #: src/screens/Messages/components/RequestButtons.tsx:235 msgid "Before you can accept this chat request, you must first verify your email." +msgstr "Para aceptar esta solicitud de chat, debes verificar tu correo electrónico." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." +msgstr "Para contactar a otro usuario, debes verificar tu correo electrónico." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Cumpleaños" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Bloquear" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Bloquear" msgid "Block account" msgstr "Bloquear cuenta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "¿Bloquear cuenta?" @@ -1262,20 +1330,20 @@ msgstr "Bloquear usuario" msgid "Block User" msgstr "Bloquear usuario" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Bloqueado" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Cuentas bloqueadas" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Cuentas bloqueadas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Si bloqueas a una cuenta no podrán responder en tus hilos, mencionarte ni interactuar contigo de ninguna manera." @@ -1284,11 +1352,11 @@ msgstr "Si bloqueas a una cuenta no podrán responder en tus hilos, mencionarte msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Si bloqueas a una cuenta no podrán responder en tus hilos, mencionarte ni interactuar contigo de ninguna manera. No verás su contenido y no podrán ver el tuyo." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Publicación bloqueada." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Si bloqueas a un etiquetador aún podrán seguir aplicando etiquetas a tu cuenta." @@ -1309,11 +1377,12 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky no puede confirmar la autenticidad de la fecha declarada." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Clásico™" @@ -1347,6 +1416,14 @@ msgstr "Bluesky no mostrará tu perfil o posts a usuarios que no hayan iniciado msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky verificará proactivamente cuentas destacadas y auténticas." +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Desenfocar imágenes y filtrar desde los feeds" msgid "Books" msgstr "Libros" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Explorar más cuentas en la página Explorar" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Ver más feeds en la página Explorar" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Explorar más sugerencias" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Busca más sugerencias en la página Explorar" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Negocios" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Por {0}" @@ -1428,15 +1502,23 @@ msgstr "Por {0}" msgid "By <0>{0}" msgstr "Por <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Al crear una cuenta, aceptas la <0>Política de privacidad." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Al crear una cuenta, aceptas los <0>Términos de servicio y la <1>Política de privacidad." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Al crear una cuenta, aceptas los <0>Términos de servicio." @@ -1448,14 +1530,17 @@ msgstr "Tuyos" msgid "Camera" msgstr "Cámara" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Cámara" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Cancelar" @@ -1500,11 +1582,7 @@ msgstr "Cancelar la eliminación de la cuenta" msgid "Cancel image crop" msgstr "Cancelar recorte de imagen" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Cancelar edición de perfil" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Cancelar cita" @@ -1516,14 +1594,10 @@ msgstr "Cancelar la reactivación y cerrar la sesión" msgid "Cancel search" msgstr "Cancelar búsqueda" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Cancela apertura del sitio web vinculado" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "No se puede interactuar con un usuario bloqueado" @@ -1551,19 +1625,14 @@ msgstr "Cambiar icono de la app a \"{0}\"" #: src/components/AppLanguageDropdown.tsx:40 msgid "Change app language" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Cambiar la dirección de correo electrónico" +msgstr "Cambiar el idioma de la aplicación" #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Cambiar nombre de usuario" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Cambiar el servicio de moderación" @@ -1579,14 +1648,6 @@ msgstr "Cambiar el idioma de la publicación a {suggestedLanguageName}" msgid "Change report reason" msgstr "Cambiar la razón de la denuncia" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Cambiar correo electrónico" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Cambiar correo electrónico" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Cambia el icono de la app" @@ -1596,10 +1657,15 @@ msgstr "Cambia el icono de la app" msgid "Changes hosting provider" msgstr "Cambia el proveedor de alojamiento" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Chat" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Chat eliminado" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Chat silenciado" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "Bandeja de solicitudes de chat" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Solicitudes de chat" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Ajustes de chat" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Configuración de chat" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat no silenciado" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Chats" @@ -1661,7 +1738,7 @@ msgstr "Te enviamos un código de verificación a tu correo. Introdúcelo aquí: msgid "Choose domain verification method" msgstr "Elige el método de verificación del dominio" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Elija Feeds" @@ -1669,7 +1746,7 @@ msgstr "Elija Feeds" msgid "Choose for me" msgstr "Elige para mi" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Elige a la gente" @@ -1685,23 +1762,23 @@ msgstr "Elige este color como tu avatar" msgid "Choose your account provider" msgstr "Selecciona tu proveedor de cuenta" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Elige tu propia cronología: encuentra el contenido que más te gusta gracias a los feeds de la comunidad." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Elige tu contraseña" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Tu nombre de usuario" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Borrar todos los datos de almacenamiento" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Borrar todos los datos de almacenamiento (reiniciar después de esto)" @@ -1714,23 +1791,27 @@ msgstr "Limpiar caché de imágenes" msgid "Clear search query" msgstr "Borrar consulta de búsqueda" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "clic aquí" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." -msgstr "" +msgstr "Haz clic aquí para reiniciar el proceso de verificación." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" -msgstr "" +msgstr "Haz clic aquí para actualizar tu correo electrónico" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Clic para deshabilitar las citas para esta publicación." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Clic para habilitar las citas para esta publicación." @@ -1750,14 +1831,16 @@ msgstr "Clima" msgid "Clip 🐴 clop 🐴" msgstr "Tacatá 🐴 tacatá 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Tacatá 🐴 tacatá 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Cerrar" @@ -1789,13 +1876,15 @@ msgstr "Cerrar la alerta" msgid "Close bottom drawer" msgstr "Cerrar el cajón inferior" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Cerrar ventana" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Cerrar el menú lateral" @@ -1804,7 +1893,7 @@ msgstr "Cerrar el menú lateral" msgid "Close emoji picker" msgstr "Cerrar el selector de emojis" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Cerrar la ventana de GIF" @@ -1822,7 +1911,7 @@ msgstr "Cerrar el visor de imagen" msgid "Close menu" msgstr "Cerrar el menú" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Cierra este diálogo" @@ -1830,7 +1919,7 @@ msgstr "Cierra este diálogo" msgid "Closes password update alert" msgstr "Cierra la alerta de actualización de contraseña" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "Cierra la ventana de redacción y descarta el borrador" @@ -1843,16 +1932,16 @@ msgstr "Cierra el selector de emojis" msgid "Closes viewer for header image" msgstr "Cierra el espectador para la imagen del encabezado" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Colapsa la lista de usuarios" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Colapsa la lista de usuarios para una notificación en particular" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Modo de color" @@ -1870,7 +1959,8 @@ msgstr "Comedia" msgid "Comics" msgstr "Cómics" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Directrices de la comunidad" @@ -1879,38 +1969,34 @@ msgstr "Directrices de la comunidad" msgid "Complete onboarding and start using your account" msgstr "Completa la incorporación y comienza a usar tu cuenta" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Completa el desafío" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Escribir nueva publicación" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Escribir publicaciones de hasta {0, plural, other {# caracteres}}" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Escribir la respuesta" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Comprimiendo video..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Configuración de filtrado de contenido para la categoría: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Configurado en <0>ajustes de moderación." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Confirmar el idioma del contenido" msgid "Confirm delete account" msgstr "Confirmar eliminación de cuenta" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Confirma tu edad:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Confirma tu fecha de nacimiento" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Confirma tu fecha de nacimiento" msgid "Confirmation code" msgstr "Código de confirmación" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Código de confirmación" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Conectando..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Contactar con el soporte" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Contenido y medios" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Contenido y medios" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Contenido y medios" @@ -1977,7 +2069,8 @@ msgstr "Contenido y medios" msgid "Content Blocked" msgstr "Contenido bloqueado" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Filtros de contenido" @@ -2006,10 +2099,12 @@ msgstr "Advertencia de Contenido" msgid "Content warnings" msgstr "Advertencias de contenido" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Fondo del menú contextual, haga clic para cerrar el menú." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Continuar" msgid "Continue as {0} (currently signed in)" msgstr "Continuar como {0} (actualmente ha iniciado sesión)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Continuar hilo..." @@ -2029,6 +2129,10 @@ msgstr "Continuar hilo..." msgid "Continue to next step" msgstr "Continuar al siguiente paso" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Copiado" msgid "Copied build version to clipboard" msgstr "Versión de compilación copiada al portapapeles" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Copia la versión de la compilación al portapapeles" msgid "Copy" msgstr "Copiar" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Copiar Contraseña de App" @@ -2087,8 +2187,8 @@ msgstr "Copiar Contraseña de App" msgid "Copy at:// URI" msgstr "Copiar URI at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Copiar el DID del autor" @@ -2120,34 +2220,34 @@ msgstr "Copiar Link" msgid "Copy link to list" msgstr "Copia el enlace a la lista" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Copiar el enlace a la publicación" #: src/view/com/profile/ProfileMenu.tsx:243 #: src/view/com/profile/ProfileMenu.tsx:254 msgid "Copy link to profile" -msgstr "" +msgstr "Copiar el enlace al perfil" #: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Copy link to starter pack" -msgstr "" +msgstr "Copiar el enlace al paquete de inicio" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Copiar el texto del mensaje" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Copiar URI at:// de la publicación" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Copiar el texto del post" @@ -2159,11 +2259,25 @@ msgstr "Copiar código QR" msgid "Copy TXT record value" msgstr "Copiar valor del registro TXT" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Política de derechos de autor" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "No se pudo silenciar el chat" msgid "Could not process your video" msgstr "No se pudo procesar tu video" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Crear" @@ -2195,7 +2317,7 @@ msgstr "Crear un código QR para paquete de inicio" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Crea un paquete de inicio" @@ -2205,21 +2327,22 @@ msgstr "Crea un paquete de inicio para mí" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Crear una cuenta" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Crear una cuenta" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Crea una cuenta" @@ -2241,7 +2364,7 @@ msgstr "Crea otro" msgid "Create new account" msgstr "Crear una cuenta nueva" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Crea un reporte de {0}" @@ -2268,7 +2391,7 @@ msgstr "Personalizado" msgid "Customization options" msgstr "Opciones de personalización" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Personaliza quién puede interactuar con esta publicación." @@ -2278,12 +2401,12 @@ msgstr "Personaliza tu experiencia en Bluesky" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Oscuro" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Oscuro" @@ -2292,21 +2415,21 @@ msgstr "Oscuro" msgid "Dark mode" msgstr "Modo oscuro" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Tema oscuro" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Fecha de nacimiento" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Desactivar cuenta" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Moderación de depuración" @@ -2314,7 +2437,7 @@ msgstr "Moderación de depuración" msgid "Debug panel" msgstr "Panel de depuración" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Por Defecto" @@ -2322,8 +2445,8 @@ msgstr "Por Defecto" msgid "Default icons" msgstr "Iconos por defecto" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Iconos por defecto" msgid "Delete" msgstr "Borrar" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Eliminar la cuenta" @@ -2355,7 +2478,7 @@ msgstr "¿Borrar la contraseña de app?" msgid "Delete chat" msgstr "Eliminar el chat" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Borrar registro de declaración de chat" @@ -2370,7 +2493,7 @@ msgstr "Eliminar la conversación" msgid "Delete Conversation" msgstr "Eliminar la conversación" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Borrar para mi" @@ -2378,11 +2501,11 @@ msgstr "Borrar para mi" msgid "Delete list" msgstr "Borrar la lista" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Borrar mensaje" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Borrar mensaje para mi" @@ -2390,9 +2513,9 @@ msgstr "Borrar mensaje para mi" msgid "Delete my account" msgstr "Eliminar mi cuenta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Borrar la publicación" @@ -2409,11 +2532,11 @@ msgstr "¿Borrar paquete de inicio?" msgid "Delete this list?" msgstr "¿Borrar esta lista?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "¿Borrar esta publicación?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Eliminado" @@ -2422,15 +2545,20 @@ msgstr "Eliminado" msgid "Deleted Account" msgstr "Cuenta eliminada" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Se borró la publicación." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Descripción" @@ -2447,12 +2575,12 @@ msgstr "La descripción es demasiado larga. {DESCRIPTION_MAX_GRAPHEMES, plural, msgid "Descriptive alt text" msgstr "Texto descriptivo alternativo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Desvincular cita" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "¿Desvincular cita?" @@ -2466,53 +2594,53 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Modo de desarrollador activado" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Opciones para desarrolladores" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Ajustar quién puede interactuar con esta publicación" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Tenue" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242 msgid "Disable 2FA" -msgstr "" +msgstr "Desactivar la autenticación de doble factor" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157 msgid "Disable email 2FA" -msgstr "" +msgstr "Desactivar la autenticación de doble factor por correo electrónico" #: src/screens/Settings/components/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "Desactivar la autenticación de doble factor por correo electrónico" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Desactivar la retroalimentación háptica" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Desactivar subtítulos" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Deshabilitado" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Descartar" @@ -2520,11 +2648,11 @@ msgstr "Descartar" msgid "Discard changes?" msgstr "¿Descartar cambios?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "¿Descartar borrador?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "¿Descartar publicación?" @@ -2542,7 +2670,7 @@ msgstr "Descubrir feeds" msgid "Discover new custom feeds" msgstr "Descubre nuevos feeds personalizados" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Descubrir nuevos feeds" @@ -2550,7 +2678,7 @@ msgstr "Descubrir nuevos feeds" msgid "Dismiss" msgstr "Descartar" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Descartar error" @@ -2562,26 +2690,26 @@ msgstr "Descartar la guía de introducción" msgid "Dismiss interests" msgstr "Descartar intereses" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Ocultar esta sección" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Mostrar insignias de texto alternativo más grandes" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Nombre para mostrar" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Nombre para Mostrar" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "El nombre para mostrar es demasiado largo" @@ -2603,20 +2731,25 @@ msgstr "No aplicar esta palabra silenciada a los usuarios que sigues" msgid "Does not include nudity." msgstr "No incluye desnudez." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "No comienza ni termina con un guion" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "¡Dominio verificado!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." -msgstr "" +msgstr "¿No tienes código o necesitas uno nuevo? <0>Haz clic aquí." #: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37 msgid "Don't see an email? <0>Click here to resend." +msgstr "¿No has recibido un correo electrónico? <0>Haz clic aquí para reenviarlo." + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "No volver a mostrar" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:115 @@ -2660,7 +2793,7 @@ msgstr "Toca dos veces o presiona durante un instante el mensaje para añadir un msgid "Double tap to close the dialog" msgstr "Doble toque para cerrar el diálogo" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Pulsa dos veces para indicar que te gusta" @@ -2673,7 +2806,7 @@ msgstr "Descargar Bluesky" msgid "Download CAR file" msgstr "Descargar archivo CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Arrastra para agregar imágenes" @@ -2689,18 +2822,10 @@ msgstr "p. ej. alice" msgid "e.g. Alice Lastname" msgstr "p. ej. Alicia Apellido" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "p. ej. Alice Roberts" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "p. ej. alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "p. ej. Artista, amante de los perros, y lector ávido." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "P. ej. desnudez artística." @@ -2725,10 +2850,11 @@ msgstr "p. ej. Usuarios que constantemente responden con publicidad." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Cada código funciona una vez. Recibirás más códigos de invitación periódicamente." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Editar" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Editar" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Editar avatar" @@ -2749,12 +2875,12 @@ msgstr "Editar Feeds" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Editar la imagen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Editar ajustes de interacción" @@ -2770,41 +2896,41 @@ msgstr "Editar los detalles de la lista" #: src/view/com/profile/ProfileMenu.tsx:317 #: src/view/com/profile/ProfileMenu.tsx:323 msgid "Edit live status" -msgstr "" +msgstr "Editar el estado del directo" #: src/view/com/modals/CreateOrEditList.tsx:228 msgid "Edit Moderation List" msgstr "Editar lista de moderación" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Editar mis feeds" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Editar mi perfil" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" -msgstr "Editar Personas" +msgstr "Editar las personas" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Editar ajustes de interacción de la publicación" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Editar el perfil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" -msgstr "Editar Perfil" +msgstr "Editar el perfil" #: src/screens/StarterPack/StarterPackScreen.tsx:580 msgid "Edit starter pack" @@ -2814,19 +2940,11 @@ msgstr "Editar paquete de inicio" msgid "Edit User List" msgstr "Editar lista de usuarios" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Editar quién puede responder" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Editar tu nombre para mostrar" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Edita tu descripción de perfil" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Edita tu paquete de inicio" @@ -2839,8 +2957,8 @@ msgstr "Educación" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "La persona que creó esta lista te ha bloqueado, o tú la has bloqueado a ella." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "Correo electrónico" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "Autenticación de doble factor por correo electrónico desactivada" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "Autenticación de doble factor por correo electrónico activada" @@ -2863,15 +2981,11 @@ msgstr "Correo electrónico reenviado" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:208 msgid "Email sent!" -msgstr "" - -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "Correo electrónico actualizado" +msgstr "Correo electrónico enviado" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" -msgstr "" +msgstr "Verificación de correo electrónico completada" #: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" @@ -2883,8 +2997,8 @@ msgstr "Insertar código HTML" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Incrustar la publicación" @@ -2892,7 +3006,7 @@ msgstr "Incrustar la publicación" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incrusta esta publicación en tu sitio web. Simplemente copia el siguiente fragmento y pégalo en el código HTML de tu sitio web." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Reproductor de video incrustado" @@ -2906,29 +3020,33 @@ msgstr "Activar" msgid "Enable {0} only" msgstr "Activar {0} solamente" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Mostrar contenido para adultos" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92 msgid "Enable email 2FA" -msgstr "" +msgstr "Activar la autenticación de doble factor por correo electrónico" #: src/components/dialogs/EmbedConsent.tsx:81 #: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "Activar medios externos" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Reproducir multimedia de" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Habilitar notificaciones prioritarias" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Activar los subtítulos" @@ -2941,17 +3059,14 @@ msgstr "Habilitar solo esta fuente" msgid "Enable trending topics" msgstr "Activar las tendencias" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Activar los videos populares en el feed Discover" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Activar los videos populares en el feed Discover." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Activado" @@ -2963,7 +3078,7 @@ msgstr "Fin del feed" msgid "Ensure you have selected a language for each subtitle file." msgstr "Asegúrate de haber seleccionado un idioma para cada archivo de subtítulos." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Ingresa una contraseña" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Ingresa una palabra o etiqueta" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" -msgstr "" +msgstr "Ingresa el código" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Ingresa Código" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Entrar en la pantalla completa" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Ingresa tu fecha de nacimiento" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Ingresa tu dirección de correo electrónico" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Ingresa tu nueva dirección de correo electrónico a continuación." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Ingresa tu contraseña" @@ -3022,7 +3129,7 @@ msgstr "Ingresa tu contraseña" msgid "Enter your username and password" msgstr "Ingresa tu nombre de usuario y contraseña" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Entra en pantalla completa" @@ -3030,16 +3137,28 @@ msgstr "Entra en pantalla completa" msgid "Entertainment" msgstr "Ocio" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Error" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Se produjo un error al guardar el archivo" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Error al recibir la respuesta del captcha." @@ -3047,27 +3166,34 @@ msgstr "Error al recibir la respuesta del captcha." msgid "Error:" msgstr "Error:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "Error: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Todos" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Todos pueden responder" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Todos pueden responder a esta publicación." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Todos" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Excluir a los usuarios que sigues" msgid "Excludes users you follow" msgstr "Excluye a los usuarios que sigues" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Salir de pantalla completa" @@ -3106,24 +3232,28 @@ msgstr "Salir de la vista de imagen" msgid "Expand alt text" msgstr "Expandir el texto alternativo" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Expandir lista de usuarios" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Expandir o colapsar la publicación completa a la que estás respondiendo" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Amplía o reduce el texto de la publicación" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "Se esperaba que el uri resolviera a un registro" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "En pruebas" @@ -3142,7 +3272,7 @@ msgstr "Caduca dentro de {0}" #: src/components/live/EditLiveDialog.tsx:131 msgid "Expires in {0} at {1}" -msgstr "" +msgstr "Expira en {0} a las {1}" #: src/lib/moderation/useGlobalLabelStrings.ts:47 #: src/lib/moderation/useGlobalLabelStrings.ts:51 @@ -3153,15 +3283,15 @@ msgstr "Medios explícitos o potencialmente perturbadores." msgid "Explicit sexual images." msgstr "Imágenes sexuales explícitas." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "Explorar" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Exportar mis datos" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Medios externos" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Es posible que medios externos permitan que otros sitios recopilen datos sobre ti y tu dispositivo. No se envía o solicita información hasta que presionas el botón de reproducir." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Preferencias sobre Medios Externos" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "Error al aceptar el chat" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "Error al añadir una reacción de emoji" @@ -3211,8 +3341,8 @@ msgstr "Error al crear contraseña de app. Vuelve a intentarlo." msgid "Failed to create conversation" msgstr "Error al crear la conversación" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Error al crear el paquete de inicio" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "Error al eliminar el chat" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Error al eliminar el mensaje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Error al eliminar la publicación, vuelve a intentarlo" @@ -3238,8 +3368,8 @@ msgstr "Error al eliminar la publicación, vuelve a intentarlo" msgid "Failed to delete starter pack" msgstr "Error al eliminar el paquete de inicio" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "Error al cargar las conversaciones" @@ -3250,14 +3380,32 @@ msgstr "Error al cargar las conversaciones" msgid "Failed to load feeds preferences" msgstr "Error al cargar las preferencias de feeds" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Error al cargar los GIF" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Error al cargar los mensajes anteriores" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "Error al cargar las preferencias." + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Error al cargar los feeds sugeridos" msgid "Failed to load suggested follows" msgstr "Error al cargar las sugerencias de seguimiento" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "Error al marcar todas las solicitudes como leídas" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Error al fijar la publicación" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "Error al eliminar una reacción de emoji" @@ -3291,15 +3439,11 @@ msgstr "Error al eliminar la verificación" msgid "Failed to save image: {0}" msgstr "Error al guardar la imagen: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Error al guardar las preferencias de notificación, vuelve a intentarlo" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "Error al guardar los ajustes, inténtalo de nuevo." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "Error al guardar tus intereses." @@ -3311,31 +3455,35 @@ msgstr "Error al enviar" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122 #: src/components/dialogs/EmailDialog/screens/Verify.tsx:136 msgid "Failed to send email, please try again." -msgstr "" +msgstr "Error al enviar el correo electrónico, vuelve a intentarlo." #: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "Error al enviar la apelación. Por favor, inténtalo de nuevo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Error al cambiar el estado de silencio del hilo, vuelve a intentarlo" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83 msgid "Failed to update email 2FA settings" -msgstr "" +msgstr "Error al actualizar los ajustes de autenticación de doble factor por correo electrónico" #: src/components/dialogs/EmailDialog/screens/Update.tsx:195 msgid "Failed to update email, please try again." -msgstr "" +msgstr "Error al actualizar el correo electrónico, vuelve a intentarlo." #: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "Error al actualizar los feeds" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Error al actualizar los ajustes" @@ -3348,21 +3496,29 @@ msgstr "Error al subir video" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:168 msgid "Failed to verify email, please try again." -msgstr "" +msgstr "Error de verificación del correo electrónico, vuelve a intentarlo." #: src/screens/Settings/components/ChangeHandleDialog.tsx:360 msgid "Failed to verify handle. Please try again." msgstr "Error al verificar el nombre de usuario. Intenta nuevamente." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Feed" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Feed por {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Menú de feed" @@ -3371,35 +3527,39 @@ msgstr "Menú de feed" msgid "Feed toggle" msgstr "Alternar Feed" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Comentarios" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "¡Comentarios enviados!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Feeds" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Los Feeds son algoritmos personalizados que los usuarios construyen con un poco de experiencia en codificación. <0/> para más información." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "¡Feeds actualizados!" @@ -3428,6 +3588,14 @@ msgstr "Filtrar la búsqueda por idioma" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtrar la búsqueda por idioma (actualmente: {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "Filtrar quién puede recibir notificaciones de tu actividad" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Finalizando" @@ -3448,7 +3616,7 @@ msgstr "Buscar a gente para seguir" msgid "Find posts, users, and feeds on Bluesky" msgstr "Buscar publicaciones, usuarios y feeds en Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Finalizar" @@ -3456,17 +3624,17 @@ msgstr "Finalizar" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Negro plano" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Azul plano" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Blanco" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Flexible" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Seguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Seguir {0}" @@ -3518,33 +3686,33 @@ msgstr "Seguir esta cuenta" msgid "Follow all" msgstr "Seguir a todos" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" -msgstr "Seguir de vuelta" +msgstr "Seguir también" #: src/view/com/profile/FollowButton.tsx:81 msgctxt "action" msgid "Follow Back" -msgstr "Seguir de vuelta" +msgstr "Seguir también" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Seguido por <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Seguido por <0>{0} y {1, plural, one {# más} other {# más}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Seguido por <0>{0} y <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Seguido por <0>{0}, <1>{1}, y {2, plural, one {# más} other {# más}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Seguidores de @{0} que conoces" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Seguidores que conoces" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Siguiendo" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Siguiendo" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Siguiendo {0}" @@ -3579,8 +3751,8 @@ msgstr "Siguiendo {handle}" msgid "Following feed preferences" msgstr "Preferencias del feed de cuentas que sigues" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Preferencias del feed de cuentas que sigues" @@ -3592,11 +3764,11 @@ msgstr "Te sigue" msgid "Follows You" msgstr "Te sigue" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Fuente" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Tamaño de fuente" @@ -3613,7 +3785,7 @@ msgstr "Por razones de seguridad, tendremos que enviarte un código de confirmac msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Por razones de seguridad, no podrás volver a verla. Si pierdes esta contraseña de app, tendrás que generar una nueva." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Para una mejor experiencia, recomendamos que uses la fuente del tema." @@ -3643,11 +3815,15 @@ msgstr "¿La olvidaste?" msgid "Frequently Posts Unwanted Content" msgstr "Frecuentemente Publica Contenido Indeseable" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "De @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "De <0/>" @@ -3660,14 +3836,68 @@ msgstr "Galería" msgid "Generate a starter pack" msgstr "Genera un paquete de inicio" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Obtiene ayuda" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "Recibe una notificación cuando alguien responda a tus mensajes." + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "Recibe una notificación cuando alguien republique publicaciones que hayas republicado." + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "Recibe una notificación cuando alguien responda a tus publicaciones." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "Recibe una notificación de nuevas publicaciones" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Recibe notificaciones de mensajes y respuestas de cuentas que elijas." + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "Recibe una notificación cuando {name} publique" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "Recibe notificaciones de la actividad de esta cuenta" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "Recibe una notificación cuando {name} publique" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "Comenzar" @@ -3688,14 +3918,16 @@ msgstr "Ponle cara a tu perfil" msgid "Glaring violations of law or terms of service" msgstr "Violaciones flagrantes de la Ley o de los Términos de servicio" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3733,23 +3965,29 @@ msgstr "Ir al inicio" #: src/view/com/profile/ProfileMenu.tsx:318 #: src/view/com/profile/ProfileMenu.tsx:325 msgid "Go live" -msgstr "" +msgstr "Empezar el directo" #: src/components/live/GoLiveDialog.tsx:93 #: src/components/live/GoLiveDialog.tsx:98 #: src/components/live/GoLiveDialog.tsx:232 #: src/components/live/GoLiveDialog.tsx:241 msgid "Go Live" -msgstr "" +msgstr "Empezar el directo" #: src/components/live/GoLiveDialog.tsx:174 msgid "Go live for" -msgstr "" +msgstr "Empezar el directo para" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "Ir al perfil de {firstAuthorName}" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Ir a la conversación con {0}" @@ -3779,8 +4017,8 @@ msgstr "Contenido explícito" msgid "Half way there!" msgstr "¡Ya estas a mitad de camino!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Nombre de usuario" @@ -3797,7 +4035,7 @@ msgstr "¡Nombre de usuario cambiado!" msgid "Handle too long. Please try a shorter one." msgstr "Nombre de usuario demasiado largo. Intente con uno más corto." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Vibración" @@ -3806,7 +4044,7 @@ msgstr "Vibración" msgid "Harassment, trolling, or intolerance" msgstr "Acoso, troleo o intolerancia" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Etiqueta" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Etiqueta {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." -msgstr "" +msgstr "¿Tienes un código? <0>Haz clic aquí." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "¿Tienes problemas?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Ayuda" @@ -3839,8 +4077,13 @@ msgstr "Sube una foto o crea un avatar para que la gente sepa que no eres un bot msgid "Here is your app password!" msgstr "¡Aquí tienes tu contraseña de app!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Oculto" @@ -3848,16 +4091,16 @@ msgstr "Oculto" msgid "Hidden by your moderation settings." msgstr "Oculto por tus ajustes de moderación." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Lista oculta" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Lista oculta" msgid "Hide" msgstr "Ocultar" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Ocultar" @@ -3875,18 +4118,18 @@ msgstr "Ocultar" msgid "Hide customization options" msgstr "Ocultar las opciones de personalización" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Ocultar el post para mí" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Ocultar respuesta para todos" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Ocultar la respuesta para mí" @@ -3894,12 +4137,12 @@ msgstr "Ocultar la respuesta para mí" msgid "Hide this card" msgstr "Ocultar esta tarjeta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "¿Ocultar esta publicación?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "¿Ocultar esta respuesta?" @@ -3913,11 +4156,11 @@ msgstr "Ocultar las tendencias" msgid "Hide trending topics?" msgstr "¿Quieres ocultar las tendencias?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "¿Quieres ocultar los videos populares?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Ocultar lista de usuarios" @@ -3926,32 +4169,32 @@ msgstr "Ocultar lista de usuarios" msgid "Hide verification badges" msgstr "Ocultar las marcas de verificación" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Oculta el contenido" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Se ha producido algún problema al contactar con el servidor de feeds. Por favor, informa al propietario del feed sobre este problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Parece que el servidor del feed está mal configurado. Por favor, informa al propietario del feed sobre este problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Parece que el servidor del feed está fuera de línea. Por favor, informa al propietario del feed sobre este problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "El servidor del feed ha respondido de forma incorrecta. Por favor, informa al propietario del feed sobre este problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Tenemos problemas para encontrar este feed. Puede que lo hayan borrado." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmmmm, parece que estamos teniendo problemas para cargar estos datos. Consulta a continuación para más detalles. Si este problema persiste, por favor, contáctanos." @@ -3959,15 +4202,15 @@ msgstr "Hmmmm, parece que estamos teniendo problemas para cargar estos datos. Co msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, no conseguimos cargar ese servicio de moderación." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "¡Espera! Estamos dando acceso a videos gradualmente, y aún estás en la lista de espera. ¡Vuelve a consultar pronto!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Inicio" @@ -3984,10 +4227,10 @@ msgstr "Proveedor de alojamiento" msgid "Hot" msgstr "Destacando" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Respuestas destacadas primero" @@ -3996,10 +4239,6 @@ msgstr "Respuestas destacadas primero" msgid "How should we open this link?" msgstr "¿Cómo deberíamos abrir este enlace?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Lo entiendo" msgid "If alt text is long, toggles alt text expanded state" msgstr "Si el texto alternativo es largo, alterna el estado expandido del texto alternativo." -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Si aún no eres un adulto según las leyes de tu país, tu padre, madre o tutor legal debe leer estos Términos en tu nombre." @@ -4031,11 +4270,11 @@ msgstr "Si eliminas esta lista, no podrás recuperarla." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Si tienes tu propio dominio, puedes usarlo como tu nombre de usuario. Este permite auto-verificar tu identidad. <0>obtén más información." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." -msgstr "" +msgstr "Si necesitas actualizar tu correo electrónico, <0>haz clic aquí." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Si eliminas esta publicación, no podrás recuperarla." @@ -4047,6 +4286,10 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Si deseas cambiar tu contraseña, te enviaremos un código para verificar que esta es tu cuenta." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "Si eres desarrollador/a, puedes alojar tu propio servidor." @@ -4075,7 +4318,7 @@ msgstr "Caché de imágenes limpiado, {0} liberado" #: src/lib/media/save-image.ts:26 msgid "Image saved" -msgstr "" +msgstr "Imagen guardada" #: src/lib/media/save-image.ts:45 msgid "Images cannot be saved unless permission is granted to access your photo library." @@ -4091,13 +4334,41 @@ msgstr "Suplantación de identidad o afirmaciones falsas sobre identidad o afili msgid "Impersonation, misinformation, or false claims" msgstr "Suplantación de identidad, desinformación o afirmaciones falsas" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Mensajes inapropiados o enlaces explícitos" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "La bandeja de entrada está vacía" @@ -4105,7 +4376,7 @@ msgstr "La bandeja de entrada está vacía" msgid "Incorrect username or password" msgstr "Nombre de usuario o contraseña no válidos" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Introduce el código enviado a tu correo electrónico para restablecer la contraseña" @@ -4113,7 +4384,7 @@ msgstr "Introduce el código enviado a tu correo electrónico para restablecer l msgid "Input confirmation code for account deletion" msgstr "Introduce el código de confirmación para la eliminación de la cuenta" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Introduce una nueva contraseña" @@ -4129,10 +4400,14 @@ msgstr "Introduce el código que se te ha enviado por correo electrónico." msgid "Interaction limited" msgstr "Interacción limitada" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Ajustes de interacción" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Código de confirmación de autenticación de doble factor no válido." msgid "Invalid handle. Please try a different one." msgstr "Nombre de usuario inválido. Por favor intenta uno diferente." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Registro de publicación inválido o no compatible" @@ -4158,7 +4433,7 @@ msgstr "Código de Verificación no válido" msgid "Invite a Friend" msgstr "Invita a un amigo" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Código de invitación" @@ -4186,15 +4461,15 @@ msgstr "Invita a tus amigos a seguir tus feeds y personas favoritas" msgid "Invites, but personal" msgstr "Invitaciones más personales" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Es correcto" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "¡Solo estás tú por ahora! Agrega más personas a tu paquete de inicio buscando arriba." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "Tarea ID: {0}" @@ -4220,11 +4495,27 @@ msgstr "Únete a la conversación" msgid "Journalism" msgstr "Periodismo" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Etiquetado por {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Etiquetado por el autor." @@ -4237,7 +4528,7 @@ msgstr "Etiquetas" msgid "Labels added" msgstr "Etiquetas añadidas" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Las etiquetas son anotaciones sobre usuarios y contenido. Pueden usarse para ocultar, advertir y categorizar la red." @@ -4253,22 +4544,30 @@ msgstr "Etiquetas en tu contenido" msgid "Language selection" msgstr "Escoger el idioma" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Ajustes de Idiomas" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Idiomas" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Más grande" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Último" @@ -4282,7 +4581,6 @@ msgstr "Aprender más" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "Más información" @@ -4290,6 +4588,10 @@ msgstr "Más información" msgid "Learn More" msgstr "Aprender más" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Más información sobre Bluesky" @@ -4298,15 +4600,23 @@ msgstr "Más información sobre Bluesky" msgid "Learn more about self hosting your PDS." msgstr "Más información sobre cómo autoalojar tu PDS." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "Más información sobre la moderación aplicada a este contenido" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Más información sobre la moderación aplicada a este contenido." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Más información sobre esta advertencia" @@ -4316,12 +4626,16 @@ msgstr "Más información sobre esta advertencia" msgid "Learn more about verification on Bluesky" msgstr "Más información sobre la verificación en Bluesky (en inglés)" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Más información sobre qué es público en Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Aprender más." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Dejar conversación" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Déjalos todos sin marcar para ver cualquier idioma." +msgid "Leave them all unselected to see any language." +msgstr "" -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Salir de Bluesky" @@ -4370,7 +4685,7 @@ msgstr "¡Vamos!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Claro" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Me gusta" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Like ({0, plural, one {# me gusta} other {# me gusta}})" @@ -4397,6 +4712,10 @@ msgstr "Dale \"me gusta\" a 10 publicaciones" msgid "Like 10 posts to train the Discover feed" msgstr "Dale \"me gusta\" a 10 publicaciones para entrenar el feed de Descubrimiento." +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Dar \"me gusta\" a este feed" @@ -4405,8 +4724,8 @@ msgstr "Dar \"me gusta\" a este feed" msgid "Like this labeler" msgstr "Dar \"me gusta\" a este etiquetador" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Le gusta a" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Le gusta a" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Le gusta a {0, plural, one {# usuario} other {# usuarios}}" @@ -4428,20 +4747,36 @@ msgstr "Le gusta a {0, plural, one {# usuario} other {# usuarios}}" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Le gusta a {likeCount, plural, one {# usuario} other {# usuarios}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Me gusta" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "\"Me gusta\" en esta publicación" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Lineal" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Lista" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Lista bloqueada" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Lista por {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "Lista de {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Lista tuya" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "La lista ya no está silenciada" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Listas" @@ -4537,7 +4876,7 @@ msgstr "Cargar más" msgid "Load more suggested feeds" msgstr "Cargar más feeds sugeridos" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Cargar notificaciones nuevas" @@ -4552,11 +4891,11 @@ msgstr "Cargar publicaciones nuevas" msgid "Loading..." msgstr "Cargando..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Registro" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Visibilidad de desconexión" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo de @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo de <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Logo de <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Mantén presionado para abrir el menú de etiquetas para #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Es algo así: XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "" msgid "Make one for me" msgstr "Haz uno para mi" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "¡Asegúrate de que es aquí a donde pretendes ir!" @@ -4606,7 +4945,7 @@ msgstr "¡Asegúrate de que es aquí a donde pretendes ir!" msgid "Manage saved feeds" msgstr "Gestiona los feeds guardados" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "Gestionar los ajustes de verificación" @@ -4614,9 +4953,9 @@ msgstr "Gestionar los ajustes de verificación" msgid "Manage your muted words and tags" msgstr "Gestiona tus palabras y etiquetas silenciadas" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "Marcar todo como leído" @@ -4625,15 +4964,13 @@ msgstr "Marcar todo como leído" msgid "Mark as read" msgstr "Marcar como leído" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "Se ha marcado todo como leído" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "En otro momento" @@ -4645,19 +4982,26 @@ msgstr "Multimedia" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Medios que pueden ser perturbadores o inapropiados para algunos públicos." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "usuarios mencionados" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Usuarios mencionados" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Menciones" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Menú" @@ -4665,7 +5009,7 @@ msgstr "Menú" msgid "Message {0}" msgstr "Mensaje {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Mensaje eliminado" @@ -4674,11 +5018,11 @@ msgstr "Mensaje eliminado" msgid "Message deleted" msgstr "Mensaje eliminado" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "Mensaje de @{0}: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Mensaje del servidor: {0}" @@ -4691,19 +5035,23 @@ msgstr "Campo de entrada de mensaje" msgid "Message is too long" msgstr "El mensaje es muy largo" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "Opciones del mensaje" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Mensajes" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Medianoche" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Cuenta engañosa" msgid "Misleading Post" msgstr "Publicación engañosa" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderación" @@ -4725,17 +5073,17 @@ msgstr "Moderación" msgid "Moderation details" msgstr "Detalles de moderación" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Lista de moderación por {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Lista de moderación por {0}" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Lista de moderación por ti" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Lista de moderación actualizada" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Listas de moderación" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Listas de moderación" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "ajustes de moderación" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Estados de moderación" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Herramientas de moderación" @@ -4775,7 +5123,7 @@ msgstr "Herramientas de moderación" msgid "Moderator has chosen to set a general warning on the content." msgstr "El moderador ha decidido establecer una advertencia general sobre el contenido." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Más" @@ -4790,13 +5138,13 @@ msgstr "Más feeds" msgid "More options" msgstr "Más opciones" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Número de \"me gusta\"" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Respuestas con más \"me gusta\" primero" @@ -4808,8 +5156,8 @@ msgstr "Cine" msgid "Music" msgstr "Música" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Silenciar" @@ -4819,8 +5167,8 @@ msgstr "Silenciar" msgid "Mute {tag}" msgstr "Silenciar {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Silenciar esta palabra solo en etiquetas" msgid "Mute this word until you unmute it" msgstr "Silenciar esta palabra hasta que la vuelvas a habilitar." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Silenciar el hilo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Silenciar palabras y etiquetas" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Cuentas silenciadas" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Cuentas silenciadas" @@ -4898,7 +5246,7 @@ msgstr "Al silenciar a una cuenta no verás sus publicaciones en tu feed o notif msgid "Muted by \"{0}\"" msgstr "Silenciado por \"{0}\"" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Palabras y etiquetas silenciadas" @@ -4911,7 +5259,7 @@ msgstr "Nadie puede ver a quién silencias. Las cuentas silenciadas pueden inter msgid "My Birthday" msgstr "Mi cumpleaños" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Mis feeds" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Naturaleza" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Navegar a {0}" @@ -4958,11 +5306,11 @@ msgstr "Navega a la siguiente pantalla" msgid "Navigates to your profile" msgstr "Navega a tu perfil" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "¿Necesitas cambiarlo?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "¿Necesitas reportar una violación de copyright?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Nuevo" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Nuevo chat" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "Nueva dirección de correo electrónico" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "Nueva característica" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Nuevos mensajes" msgid "New Moderation List" msgstr "Nueva lista de moderación" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Nueva contraseña" @@ -5029,7 +5396,7 @@ msgstr "Nueva contraseña" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Nueva publicación" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Nueva publicación" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Ventana de información para nuevo usuario" @@ -5054,10 +5429,14 @@ msgstr "Ventana de información para nuevo usuario" msgid "New User List" msgstr "Nueva lista de usuarios" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Respuestas nuevas primero" @@ -5071,15 +5450,15 @@ msgstr "Noticias" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "Sin panel de DNS" msgid "No expiry set" msgstr "" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "No se encontraron GIF destacados. Es posible que haya un problema con Tenor." @@ -5119,32 +5498,35 @@ msgstr "" msgid "No likes yet" msgstr "Todavía no tiene \"me gusta\"" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Ya no sigues a {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "Longitud máxima: {MAX_SERVICE_HANDLE_LENGTH, plural, other {# caracteres}}" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "No hay mensajes aún" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" -msgstr "¡Aún no hay notificaciones!" +msgstr "No hay notificaciones" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Nadie" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Nadie, excepto el autor, puede citar esta publicación." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Aún no hay publicaciones." @@ -5171,7 +5553,7 @@ msgstr "Sin resultados" msgid "No results for \"{0}\"." msgstr "No hay resultados para \"{0}\"." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "No se encontraron resultados" @@ -5179,9 +5561,9 @@ msgstr "No se encontraron resultados" msgid "No results found for \"{query}\"" msgstr "No se han encontrado resultados para \"{query}\"" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "No se han encontrado resultados para {query}" @@ -5189,7 +5571,7 @@ msgstr "No se han encontrado resultados para {query}" msgid "No results." msgstr "No hay resultados." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "No se encontraron resultados para \"{search}\"." @@ -5198,7 +5580,7 @@ msgstr "No se encontraron resultados para \"{search}\"." msgid "No thanks" msgstr "No gracias" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Nadie" @@ -5223,59 +5605,76 @@ msgstr "No se encontró a nadie. Intenta buscar a otra persona." msgid "Non-sexual Nudity" msgstr "Desnudez no sexual" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "No lo sigue nadie a quien estés siguiendo" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "No encontrado" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Nota sobre compartir" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: Bluesky es una red abierta y pública. Esta configuración solo limita la visibilidad de tu contenido en la aplicación y el sitio web de Bluesky. Es posible que otras aplicaciones y sitios web no la respeten y muestren tu contenido a los usuarios que hayan cerrado sesión." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" -msgstr "Nada aquí" +msgstr "Nada por aquí" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Filtros de notificación" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Ajustes de notificaciones" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Ajustes de notificaciones" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Sonidos de notificación" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Sonidos de notificación" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Notificaciones" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "ahora" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Desnudez o contenido para adultos no etiquetado como tal" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Apagar" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "¡Qué problema!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "Aceptar" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Está bien" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Respuestas antiguas primero" @@ -5331,19 +5736,19 @@ msgstr "Respuestas antiguas primero" msgid "on<0><1/><2><3/>" msgstr "en<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Reiniciar introducción" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "Falta el texto alternativo en uno o más GIF." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Falta el texto alternativo en una o varias imágenes." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Falta el texto alternativo en uno o más videos." @@ -5351,13 +5756,15 @@ msgstr "Falta el texto alternativo en uno o más videos." msgid "Only .jpg and .png files are supported" msgstr "Solo se admiten archivos .jpg y .png" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Solo {0} puede responder." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Solo contiene letras, números y guiones" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "Solo seguidores a quienes sigo" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Solo se admiten archivos de imagen" msgid "Only WebVTT (.vtt) files are supported" msgstr "Solo se admiten archivos WebVTT (.vtt)" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "¡Uy, algo ha salido mal!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "¡Uy!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Abrir el menú lateral" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Abrir el selector de emojis" @@ -5416,7 +5822,7 @@ msgstr "Abrir el menú de opciones del feed" msgid "Open full emoji list" msgstr "Abrir la lista completa de emoji" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Abrir enlace a {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Abrir enlace a {niceUrl}" msgid "Open message options" msgstr "Abrir opciones de mensaje" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Abrir página de depuración de moderación" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Abrir ajustes de palabras y etiquetas silenciadas" @@ -5453,16 +5859,16 @@ msgstr "" msgid "Open starter pack menu" msgstr "Abrir menú del paquete de inicio" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Abrir pagina de histórico" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Abrir el registro del sistema" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Abre {numItems} opciones." @@ -5490,11 +5896,11 @@ msgstr "Abrir cámara del dispositivo" msgid "Opens captions and alt text dialog" msgstr "Abre diálogo de subtítulos y texto alternativo" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Abre el diálogo de cambio del nombre de usuario" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Abrir la ventana de redacción" @@ -5502,7 +5908,7 @@ msgstr "Abrir la ventana de redacción" msgid "Opens device photo gallery" msgstr "Abrir galería de fotos del dispositivo" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Abre el selector de emojis" @@ -5520,15 +5926,19 @@ msgstr "Abre el flujo para iniciar sesión en tu cuenta existente de Bluesky" msgid "Opens GIF select dialog" msgstr "Abre el diálogo de selección de GIF." -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Abre el centro de ayuda en el navegador" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Abre la lista de códigos de invitación" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "" @@ -5536,12 +5946,8 @@ msgstr "" msgid "Opens password reset form" msgstr "Abre el formulario de restablecimiento de contraseña" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Abre el sitio web vinculado" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Abre este perfil" @@ -5558,7 +5964,7 @@ msgstr "Opcionalmente, proporciona información adicional a continuación:" msgid "Options:" msgstr "Opciones:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "O combina estas opciones:" @@ -5600,6 +6006,10 @@ msgstr "Otra cuenta" msgid "Other..." msgstr "Otro..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "El equipo de moderación ha recibido tu denuncia." @@ -5608,7 +6018,7 @@ msgstr "El equipo de moderación ha recibido tu denuncia." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Nuestros moderadores han revisado denuncias y han decidido deshabilitar tu acceso a los chats en Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Página no encontrada" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Página no encontrada" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Contraseña actualizada" msgid "Password updated!" msgstr "¡Contraseña actualizada!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Pausar" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Pausar video" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Personas" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Personas seguidas por @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Personas siguiendo a @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "Personas a las que sigo" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "" @@ -5704,12 +6119,12 @@ msgstr "Anclar en inicio" msgid "Pin to Home" msgstr "Anclar en inicio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Anclar en tu perfil" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Anclado" @@ -5718,7 +6133,7 @@ msgstr "Anclado" msgid "Pinned {0} to Home" msgstr "{0} anclados en inicio" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Feeds anclados" @@ -5726,38 +6141,38 @@ msgstr "Feeds anclados" msgid "Pinned to your feeds" msgstr "Tus feeds anclados" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Reproducir" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Reproducir {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Reproducir video" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Reproducir Video" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Reproduce o pausa el GIF" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Reproduce o pausa el video" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Reproducir GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Reproduce el video" @@ -5765,12 +6180,16 @@ msgstr "Reproduce el video" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "Añade las etiquetas de advertencia sobre el contenido multimedia que vas a publicar." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Por favor, elige tu identificador." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Por favor, elige tu contraseña." @@ -5782,7 +6201,8 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Por favor, completa la verificación CAPTCHA." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Comprueba que has ingresado tu correo electrónico correctamente." @@ -5804,6 +6224,7 @@ msgstr "Introduce un nombre único para esta contraseña de app o utiliza el que msgid "Please enter a valid code." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "" @@ -5812,7 +6233,11 @@ msgstr "" msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Por favor, introduce una palabra, etiqueta, o frase válida para silenciar" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "" #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Introduce tu correo electrónico." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Introduce tu código de invitación." @@ -5853,6 +6278,19 @@ msgstr "Por favor, explica por qué crees que esta etiqueta fue aplicada incorre msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Por favor, explica por qué crees que tus chats fueron deshabilitados incorrectamente" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "Selecciona un servicio de moderación" @@ -5870,9 +6308,9 @@ msgstr "Por favor, ingresa como @{0}" msgid "Please verify your email" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Verifica tu correo electrónico" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Política" msgid "Porn" msgstr "Pornografía" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Publicar" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Publicar" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Publicar" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Publicar Todo" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Publicación por {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Publicación por {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Publicación eliminada" @@ -5919,11 +6362,14 @@ msgstr "Publicación eliminada" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Error al subir la publicación. Por favor, verifica tu conexión a internet y vuelve a intentarlo." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "Publicación eliminada" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Publicación oculta" @@ -5937,11 +6383,11 @@ msgstr "Publicación ocultada por palabra silenciada" msgid "Post Hidden by You" msgstr "Publicación ocultada por ti" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Ajustes de interacción de la publicación" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Ajustes de interacción de la publicación" @@ -5954,8 +6400,10 @@ msgstr "Lenguaje de la publicación" msgid "Post Languages" msgstr "Lenguajes de la publicación" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Publicación no encontrada" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Publicación desfijado" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Publicaciones" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Los posts pueden ser silenciados según su texto, sus etiquetas o ambos. Recomendamos evitar palabras comunes que aparezcan en muchos posts, ya que podría resultar en que no se muestre ninguna publicación." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Publicaciones ocultas" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Enlace potencialmente engañoso" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "Publicaciones, respuestas" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Preferencias guardadas" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Presiona para reintentar la conexión" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Presiona para reintentar" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Presiona para ver los seguidores de esta cuenta que también sigues." @@ -6015,40 +6469,46 @@ msgstr "Imagen previa" msgid "Primary Language" msgstr "Idioma principal" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Priorizar los usuarios a los que sigues" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Notificaciones prioritarias" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Privacidad" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Privacidad y seguridad" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacidad y Seguridad" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "Ajustes de privacidad y seguridad" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Política de privacidad" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Procesando video..." @@ -6062,15 +6522,14 @@ msgstr "Procesando..." msgid "profile" msgstr "perfil" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Perfil" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Perfil actualizado" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Listas públicas y compartibles que se pueden usar para impulsar feeds." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "Publicar la publicación" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "Publicar las publicaciones" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "Publicar las respuestas" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "Publicar la respuesta" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "Push" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "Notificaciones push" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "Push, todos" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "Push, personas a las que sigues" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "¡Código QR copiado a tu portapapeles!" @@ -6119,44 +6594,52 @@ msgstr "¡El código QR ha sido descargado!" msgid "QR code saved to your camera roll!" msgstr "¡Código QR guardado en tu galería!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Citar la publicación" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "La cita se vinculado de nuevo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "La cita se ha desvinculado correctamente" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Citas deshabilitadas" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Configuración de citas" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Citas" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Citas de esta publicación" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Orden aleatorio" @@ -6164,8 +6647,8 @@ msgstr "Orden aleatorio" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Límite de velocidad excedido - has intentado cambiar tu nombre de usuario demasiadas veces en un periodo breve. Espera un minuto antes de intentarlo nuevamente." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Vincular cita de nuevo" @@ -6177,30 +6660,42 @@ msgstr "React con {emoji}" msgid "Reactivate your account" msgstr "Reactivar tu cuenta" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "Leer {0} {1, plural, one {respuesta} other {respuestas}} más" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Leer la publicación del blog (en inglés)" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Ver menos" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Ver más" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "Leer más respuestas" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Leer el blog de Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Leer las Políticas de Privacidad de Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Leer los Términos y Condiciones de Bluesky" @@ -6213,6 +6708,14 @@ msgstr "Motivo del recurso" msgid "Reason:" msgstr "Razón:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "Recibir notificaciones en la aplicación" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "Recibir notificaciones push" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Búsquedas Recientes" @@ -6234,8 +6737,8 @@ msgstr "Rechazar" msgid "Reject chat request" msgstr "Rechazar la solicitud de chat" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Recargar conversaciones" @@ -6244,10 +6747,9 @@ msgstr "Recargar conversaciones" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Eliminar" @@ -6259,17 +6761,17 @@ msgstr "Eliminar a {displayName} del paquete de inicio" msgid "Remove {historyItem}" msgstr "Eliminar {historyItem}" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Eliminar la cuenta" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Eliminar adjunto" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Eliminar Avatar" @@ -6284,24 +6786,22 @@ msgstr "Eliminar incrustado" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Eliminar feed" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "¿Eliminar feed?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Eliminar de mis feeds" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "¿Eliminar del acceso rápido?" @@ -6311,18 +6811,17 @@ msgid "Remove from saved feeds" msgstr "Eliminar de los feeds guardados" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "¿Eliminar de tus feeds?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Eliminar la imagen" #: src/components/live/EditLiveDialog.tsx:240 #: src/components/live/EditLiveDialog.tsx:247 msgid "Remove live status" -msgstr "" +msgstr "Eliminar el estado \"En directo\"" #: src/components/dialogs/MutedWords.tsx:523 msgid "Remove mute word from your list" @@ -6332,12 +6831,8 @@ msgstr "Eliminar palabra silenciada de tu lista" msgid "Remove profile" msgstr "Eliminar perfil" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Eliminar cita" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Eliminar republicación" @@ -6345,7 +6840,7 @@ msgstr "Eliminar republicación" msgid "Remove subtitle file" msgstr "Eliminar archivo de subtítulo" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Eliminar este feed de tus feeds guardados" @@ -6364,11 +6859,11 @@ msgstr "Eliminar la verificación" msgid "Remove your verification for this account?" msgstr "¿Eliminar tu verificación para esta cuenta?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Eliminado por el autor" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Eliminado por ti" @@ -6377,10 +6872,6 @@ msgstr "Eliminado por ti" msgid "Removed from list" msgstr "Eliminado de la lista" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Eliminado de mis feeds" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Eliminado de mis feeds guardados" @@ -6395,34 +6886,36 @@ msgstr "Eliminado de tus feeds" msgid "Removed verification" msgstr "Verificación eliminada" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Elimina la cita" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Reemplaza con Descubrir" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Respuestas" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Respuestas deshabilitadas" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Las respuestas en esta publicación estan deshabilitadas." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Responder" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Responder ({0, plural, one {# respuesta} other {# respuestas}})" @@ -6436,50 +6929,55 @@ msgstr "Respuesta ocultada por el autor del hilo" msgid "Reply Hidden by You" msgstr "Respuesta ocultada por ti" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "Notificaciones de respuestas" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Ajustes de respuesta" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "La configuración de respuestas es elegida por el autor del hilo" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Orden de las respuestas" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Responder a <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Responder a una publicación bloqueada" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Responder a una publicación" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Responder a ti" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Visibilidad de la respuesta actualizada" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "La respuesta se ha ocultado correctamente" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Denunciar feed" msgid "Report list" msgstr "Denunciar la lista" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Denunciar mensaje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Denunciar la publicación" @@ -6567,25 +7065,26 @@ msgstr "Denunciar este paquete de inicio" msgid "Report this user" msgstr "Denunciar este usuario" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Republicar" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Republicar" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Republicar ({0, plural, one {# republicación} other {# republicaciones}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "Notificaciones de republicaciones" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Republicar o citar publicación" @@ -6594,35 +7093,47 @@ msgstr "Republicar o citar publicación" msgid "Reposted By" msgstr "Republicado por" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Republicado por {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Republicado por <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Republicado por ti" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "Republicaciones" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Republicaciones de esta publicación" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "Solicitar cambio" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "Republicaciones de tus republicaciones" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "Notificaciones de republicaciones de tus republicaciones" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "Solicitar código" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Requerir texto alternativo antes de publicar" @@ -6630,7 +7141,7 @@ msgstr "Requerir texto alternativo antes de publicar" msgid "Require an email code to sign in to your account." msgstr "Requerir un código por correo electrónico antes de iniciar sesión con tu cuenta." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Requerido para este proveedor" @@ -6640,12 +7151,8 @@ msgstr "Requerido en tu región" #: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40 msgid "Resend" -msgstr "" +msgstr "Reenviar" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Reenviar correo" msgid "Resend Verification Email" msgstr "Reenviar correo de verificación" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Código de restablecimiento" @@ -6667,8 +7180,8 @@ msgstr "Código de restablecimiento" msgid "Reset Code" msgstr "Código de restablecimiento" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Restablecer el estado de incorporación" @@ -6687,21 +7200,23 @@ msgstr "Reintenta la última acción, que presentó un error" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Reintentar" @@ -6721,19 +7236,19 @@ msgstr "Volver a la página de inicio" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Volver a la página anterior" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Vuelve al paso anterior" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Vuelve al paso anterior" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Guardar" @@ -6762,15 +7276,13 @@ msgstr "Guardar" msgid "Save birthday" msgstr "Guardar cumpleaños" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Guardar cambios" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Guardar cambios" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Guardar código QR" msgid "Save to my feeds" msgstr "Guardar en mis feeds" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Feeds guardados" @@ -6802,18 +7314,14 @@ msgstr "Feeds guardados" msgid "Saved to your feeds" msgstr "Guardado en tus feeds" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Guarda los cambios en tu perfil" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Guarda los ajustes de recorte de la imagen" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "¡Di hola!" @@ -6826,16 +7334,16 @@ msgstr "Ciencia" msgid "Scroll to top" msgstr "Desplazar hacia arriba" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Buscar" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Buscar en las publicaciones de @{0}" @@ -6861,7 +7369,7 @@ msgstr "Buscar \"{query}\"" msgid "Search for \"{searchText}\"" msgstr "Buscar \"{searchText}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Buscar feeds que quieras sugerir a otros." @@ -6877,10 +7385,14 @@ msgstr "Buscar más feeds" msgid "Search for posts, users, or feeds" msgstr "Buscar publicaciones, usuarios o feeds" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Buscar GIFs" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Buscar en mis publicaciones" @@ -6890,12 +7402,12 @@ msgstr "Buscar en mis publicaciones" msgid "Search posts" msgstr "Buscar en sus publicaciones" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Buscar perfiles" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Buscar en Tenor" @@ -6903,17 +7415,13 @@ msgstr "Buscar en Tenor" msgid "Search..." msgstr "Buscar..." -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Busca perfiles" #: src/components/dialogs/EmailDialog/screens/Update.tsx:243 msgid "Security step required" -msgstr "" - -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" msgstr "Se requiere un paso de seguridad" #: src/components/RichTextTag.tsx:111 @@ -6936,14 +7444,31 @@ msgstr "Ver las publicaciones sobre #{tag} de esta cuenta" msgid "See jobs at Bluesky" msgstr "Ver empleos en Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Ver esta guía" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Control deslizante. Usa las flechas del teclado para avanzar o retroceder y la barra espaciadora para reproducir/pausa" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Selecciona un color" @@ -6954,7 +7479,7 @@ msgstr "Seleccionar cuenta" #: src/components/AppLanguageDropdown.tsx:60 msgid "Select an app language" -msgstr "" +msgstr "Elegir un idioma para la aplicación" #: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 msgid "Select an avatar" @@ -6966,11 +7491,11 @@ msgstr "Selecciona un emoji" #: src/components/Select/index.tsx:204 msgid "Select an option" -msgstr "" +msgstr "Elegir una opción" #: src/screens/Settings/LanguageSettings.tsx:98 msgid "Select app language" -msgstr "" +msgstr "Elegir el idioma de la aplicación" #: src/screens/Settings/LanguageSettings.tsx:164 msgid "Select content languages" @@ -6978,7 +7503,7 @@ msgstr "Seleccionar los idiomas del contenido" #: src/components/live/GoLiveDialog.tsx:179 msgid "Select duration" -msgstr "" +msgstr "Elegir la duración" #: src/screens/Login/index.tsx:144 msgid "Select from an existing account" @@ -6988,7 +7513,7 @@ msgstr "Selecciona de una cuenta existente" msgid "Select GIF" msgstr "Seleccionar GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Seleccionar GIF \"{0}\"" @@ -6996,6 +7521,11 @@ msgstr "Seleccionar GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "Selecciona por cuánto tiempo se debería silenciar esta palabra." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Seleccionar idioma..." @@ -7004,7 +7534,7 @@ msgstr "Seleccionar idioma..." msgid "Select languages" msgstr "Seleccionar idiomas" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "Seleccionar servicio de moderación" @@ -7014,7 +7544,7 @@ msgstr "Seleccionar moderador" #: src/screens/Settings/LanguageSettings.tsx:131 msgid "Select primary language" -msgstr "" +msgstr "Elegir el idioma principal" #: src/view/com/composer/videos/SubtitleFilePicker.tsx:59 #: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 @@ -7045,12 +7575,12 @@ msgstr "Selecciona el idioma de la interfaz de usuario de la aplicación." msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Elige en qué idiomas deseas que estén los posts de tus feeds. Si ninguno es seleccionado, se mostrarán en todos los idiomas." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Elige tu fecha de nacimiento" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Selecciona tus intereses entre las siguientes opciones" @@ -7058,7 +7588,11 @@ msgstr "Selecciona tus intereses entre las siguientes opciones" msgid "Select your preferred language for translations in your feed." msgstr "Elige a qué idioma deseas traducir las publicaciones de tu feed." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "Elegir los canales de notificación que prefieres" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "Selecciona la opción {0} de {numItems}" @@ -7066,17 +7600,9 @@ msgstr "Selecciona la opción {0} de {numItems}" msgid "Send a neat website!" msgstr "¡Envía un sitio web interesante!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "Enviar la confirmación" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Enviar correo de confirmación" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Enviar correo" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Enviar correo" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Enviar comentarios" @@ -7095,9 +7621,9 @@ msgstr "Enviar comentarios" msgid "Send message" msgstr "Enviar mensaje" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" -msgstr "" +msgstr "Enviar la publicación a {name}" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." @@ -7114,20 +7640,20 @@ msgstr "Enviar reporte" msgid "Send report to {0}" msgstr "Enviar reporte a {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "Enviar denuncia a {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Enviar correo de verificación" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Enviar por mensaje directo" @@ -7143,7 +7669,7 @@ msgstr "Dirección del servidor" msgid "Set app icon to {0}" msgstr "Cambiar el icono de la app a {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Establecer cumpleaños" @@ -7159,13 +7685,57 @@ msgstr "Configura tu cuenta" msgid "Sets email for password reset" msgstr "Establece el correo electrónico para restablecer la contraseña" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Ajustes" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "Permitir que los demás reciban notificaciones de tus publicaciones" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,35 +7770,30 @@ msgstr "¡Comparte una historia genial!" msgid "Share a fun fact!" msgstr "¡Comparte un dato curioso!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Compartir de todas maneras" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Compartir enlace" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Compartir enlace" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Ventana para compartir enlace" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" -msgstr "" +msgstr "Compartir el URI at:// de la publicación" #: src/components/StarterPack/ShareDialog.tsx:115 #: src/components/StarterPack/ShareDialog.tsx:126 @@ -7247,34 +7812,30 @@ msgstr "Compartir este paquete de inicio" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Comparte este paquete de inicio y ayuda a las personas a unirse a tu comunidad en Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 #: src/view/com/profile/ProfileMenu.tsx:256 msgid "Share via..." -msgstr "" +msgstr "Compartir por..." #: src/components/dms/ChatEmptyPill.tsx:34 msgid "Share your favorite feed!" msgstr "¡Comparte tu feed favorito!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Probador de Preferencias Compartidas" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Comparte el sitio web enlazado" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Ver" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Ver texto alternativo" @@ -7303,8 +7864,8 @@ msgstr "Mostrar opciones de personalización" msgid "Show hidden replies" msgstr "Mostrar respuestas ocultas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Mostrar menos como esto" @@ -7312,55 +7873,63 @@ msgstr "Mostrar menos como esto" msgid "Show list anyway" msgstr "Mostrar lista de todas maneras" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Ver más" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Mostrar más como esto" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "Mostrar más respuestas" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Mostrar respuestas silenciadas" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Mostrar citas" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Mostrar respuestas" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Mostrar las respuestas como" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Mostrar las respuestas como hilos" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Mostrar las respuestas de las personas a quienes sigues antes que el resto de respuestas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Mostrar respuesta para todos" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Mostrar republicaciones" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Mostrar parte de tus feeds guardados en tu feed Siguiendo" @@ -7372,16 +7941,17 @@ msgstr "Mostrar advertencia" msgid "Show warning and filter from feeds" msgstr "Mostrar advertencia y filtrar de los feeds" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Muestra información sobre la fecha de creación de esta publicación" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "Muestra otras cuentas a las que puedes cambiar" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Muestra el contenido" @@ -7390,14 +7960,15 @@ msgstr "Muestra el contenido" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "Iniciar sesión en una cuenta que no está en la lista" msgid "Sign in to Bluesky or create a new account" msgstr "Inicia sesión en Bluesky o crea una nueva cuenta" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Cerrar sesión" @@ -7444,8 +8020,8 @@ msgstr "Cerrar sesión" msgid "Sign Out" msgstr "Cerrar sesión" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "¿Cerrar sesión?" @@ -7459,12 +8035,12 @@ msgstr "Se requiere iniciar sesión" msgid "Signed in as @{0}" msgstr "Sesión iniciada como @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Cuentas similares" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Saltar" @@ -7472,12 +8048,11 @@ msgstr "Saltar" msgid "Skip this flow" msgstr "Saltar este flujo" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Más pequeño" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "Posponer el recordatorio" @@ -7490,11 +8065,11 @@ msgstr "Programación" msgid "Some of your verifications are invalid." msgstr "Algunas de tus verificaciones no son válidas." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Otros feeds que podrían gustarte" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Algunas personas pueden responder" @@ -7510,10 +8085,11 @@ msgstr "Alguien reaccionó con {0} a {1}" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "Hubo un problema con los datos que intentaste denunciar. Por favor, contacta con el soporte." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Se produjo un error" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Se produjo un error. Por favor, inténtalo de nuevo" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Se produjo un error. Por favor, inténtalo de nuevo" -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "¡Se produjo un error!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "Se produjo un error. Inténtalo de nuevo." @@ -7539,20 +8118,23 @@ msgstr "Se produjo un error. Inténtalo de nuevo." msgid "Something wrong? Let us know." msgstr "¿Algo va mal? Avísanos." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "Lo sentimos, tu sesión ha expirado. Inicia sesión de nuevo." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Ordenar respuestas" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Ordenar respuestas por" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Ordenar respuestas a la misma publicación por:" @@ -7579,7 +8161,7 @@ msgstr "Spam; menciones o respuestas excesivas" msgid "Sports" msgstr "Deportes" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "" @@ -7601,9 +8183,9 @@ msgstr "¡Empieza a añadir personas!" msgid "Start chat with {displayName}" msgstr "Iniciar chat con {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Paquete de inicio" @@ -7611,12 +8193,12 @@ msgstr "Paquete de inicio" msgid "Starter pack by {0}" msgstr "Paquete de inicio de {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Paquete de inicio de <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Paquete de inicio creado por ti" @@ -7627,7 +8209,7 @@ msgstr "El paquete de inicio es inválido" #: src/screens/Search/Explore.tsx:628 #: src/view/screens/Profile.tsx:231 msgid "Starter Packs" -msgstr "Paquete de Inicio" +msgstr "Paquetes de inicio" #: src/components/StarterPack/ProfileStarterPacks.tsx:266 msgid "Starter packs let you easily share your favorite feeds and people with your friends." @@ -7638,19 +8220,21 @@ msgstr "Los paquetes de inicio te permiten compartir fácilmente tus feeds y per msgid "Status Page" msgstr "Página de estado" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Paso {0} de {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Almacenamiento limpio, necesitas reiniciar la aplicación ahora." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Libro de cuentos" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Enviar apelación" msgid "Submit Appeal" msgstr "Enviar apelación" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "Enviar denuncia" @@ -7676,10 +8260,14 @@ msgstr "Enviar denuncia" msgid "Subscribe" msgstr "Suscribirse" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Suscríbete a @{0} para usar estas etiquetas:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Suscribirse al etiquetador" @@ -7692,8 +8280,12 @@ msgstr "Suscribirse a este etiquetador" msgid "Subscribe to this list" msgstr "Suscribirse a esta lista" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "¡Éxito!" @@ -7705,7 +8297,7 @@ msgstr "Verificado correctamente" msgid "Suggested Accounts" msgstr "Cuentas sugeridas" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Sugerido para ti" @@ -7714,26 +8306,26 @@ msgstr "Sugerido para ti" msgid "Suggestive" msgstr "Sugestivo" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Amanecer" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Atardecer" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Soporte" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Cambiar a otra cuenta" @@ -7742,24 +8334,24 @@ msgstr "Cambiar a otra cuenta" msgid "Switch Account" msgstr "Cambiar a otra cuenta" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Cambiar cuentas" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "Cambiar a {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Sistema" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Registro del sistema" @@ -7767,6 +8359,18 @@ msgstr "Registro del sistema" msgid "Tags only" msgstr "Solo etiquetas" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Cuéntanos un poco más" msgid "Terms" msgstr "Condiciones" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Términos de servicio" @@ -7848,10 +8454,6 @@ msgstr "Campo de introducción de texto" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "¡Gracias! Tu correo electrónico ha sido verificado exitosamente." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Gracias. Tu denuncia ha sido enviada." @@ -7864,28 +8466,28 @@ msgstr "Gracias, has verificado tu dirección de correo electrónico exitosament msgid "That contains the following:" msgstr "Eso contiene lo siguiente:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Este nombre de usuario ya está en uso." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "No se pudo encontrar ese paquete de inicio." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "¡Eso es todo, amigos!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "¡Se acabó!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "La cuenta podrá interactuar contigo tras desbloquearla." @@ -7900,7 +8502,7 @@ msgstr "Se reiniciará la app" msgid "The author of this thread has hidden this reply." msgstr "El autor de este hilo ha ocultado esta respuesta." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "La aplicación web de Bluesky" @@ -7920,10 +8522,6 @@ msgstr "El feed de Descubrir" msgid "The Discover feed now knows what you like" msgstr "El feed de Descubrir ahora sabe lo que te gusta" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "La dirección de correo electrónico que has introducido es la misma que tu dirección de correo electrónico actual." - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "La experiencia es mejor en la aplicación. Descarga Bluesky ahora y continuaremos donde lo dejaste." @@ -7944,8 +8542,16 @@ msgstr "Las siguientes etiquetas se aplicaron a tu contenido." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "Estos serán los ajustes por defecto cuando crees una nueva publicación. Puedes cambiarlos para una publicación específica desde la ventana de redacción." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Es posible que se haya borrado la publicación." @@ -7953,14 +8559,15 @@ msgstr "Es posible que se haya borrado la publicación." msgid "The Privacy Policy has been moved to <0/>" msgstr "La Política de Privacidad se ha trasladado a <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "El video seleccionado es mayor de 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "" #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 msgid "The server appears to be experiencing issues. Please try again in a few moments." -msgstr "El servidor parece tener problemas. Por favor intenta nuevamente después de unos momentos." +msgstr "Parece que hay problemas en el servidor. Vuelve a intentarlo en breve." #: src/screens/StarterPack/StarterPackScreen.tsx:741 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." @@ -7982,7 +8589,7 @@ msgstr "Los Términos de servicio se han trasladado a" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "El código de verificación que has proporcionado es inválido. Por favor, asegúrate de haber utilizado el enlace de verificación correcto o solicita uno nuevo." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Tema" @@ -7990,14 +8597,14 @@ msgstr "Tema" msgid "There is no time limit for account deactivation, come back any time." msgstr "No hay límite de tiempo para la desactivación de la cuenta, vuelve cuando quieras." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Hubo un problema al conectarse a Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Hubo un problema al contactar con el servidor" @@ -8006,17 +8613,12 @@ msgstr "Hubo un problema al contactar con el servidor" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Hubo un problema al contactar con el servidor. Por favor, verifica tu conexión a internet e inténtalo de nuevo." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Hubo un problema al contactar con tu servidor" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Hubo un problema al obtener las notificaciones. Toca aquí para intentar de nuevo." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Hubo un problema al obtener las publicaciones. Toca aquí para intentar de nuevo." @@ -8037,7 +8639,7 @@ msgstr "Hubo un problema al obtener tus listas. Toca aquí para intentar de nuev msgid "There was an issue fetching your service info" msgstr "Hubo un problema al obtener tu información de servicio" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Hubo un problema al eliminar este feed. Por favor, verifica tu conexión a internet e inténtalo de nuevo." @@ -8052,9 +8654,9 @@ msgstr "Hubo un problema al enviar tu reporte. Por favor, verifica tu conexión msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Hubo un problema al actualizar tus feeds, por favor verifica tu conexión a internet e inténtalo de nuevo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Hubo un problema al actualizar tus feeds, por favor verifica tu conexió msgid "There was an issue! {0}" msgstr "Ocurrió un problema {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Ocurrió un problema {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Hubo un problema. Por favor, verifica tu conexión a internet y vuelve a intentarlo." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Se ha producido un problema inesperado en la aplicación. Por favor, ¡avísanos si te ha ocurrido esto!" @@ -8089,7 +8691,7 @@ msgstr "Se ha producido un problema inesperado en la aplicación. Por favor, ¡a msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "¡Ha habido una oleada de nuevos usuarios en Bluesky! Activaremos tu cuenta tan pronto como podamos." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Estos ajustes solo aplican para el feed Following." @@ -8146,7 +8748,7 @@ msgstr "Este contenido está alojado por {0}. ¿Deseas habilitar medios externos msgid "This content is not available because one of the users involved has blocked the other." msgstr "Este contenido no está disponible porque uno de los usuarios involucrados ha bloqueado al otro." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Este contenido no se puede ver sin una cuenta de Bluesky." @@ -8158,19 +8760,23 @@ msgstr "Esta conversación es con una cuenta eliminada o desactivada. Presiona p msgid "This email is already associated with your account." msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "Con esta función, los usuarios pueden recibir notificaciones de tus nuevos mensajes y respuestas. ¿Para quién quieres activarlo?" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Esta función está en beta. Puedes leer más sobre la exportación de repositorios en <0>esta publicación del blog." #: src/lib/hooks/useCleanError.ts:49 msgid "This feature is not available while using an app password. Please sign in with your main password." -msgstr "" +msgstr "Esta función no está disponible cuando se usa una contraseña de app. Inicia sesión con tu contraseña principal." #: src/lib/strings/errors.ts:21 msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Esta función no está disponible cuando se usa una contraseña de app. Inicia sesión con tu contraseña principal." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Este feed está recibiendo mucho tráfico y no está disponible temporalmente. Inténtalo de nuevo más tarde." @@ -8199,7 +8805,7 @@ msgstr "Esta información no es compartida con otros usuarios." #: src/components/live/EditLiveDialog.tsx:189 #: src/components/live/GoLiveDialog.tsx:160 msgid "This is not a valid link" -msgstr "" +msgstr "Este enlace no es válido" #: src/components/moderation/ModerationDetailsDialog.tsx:168 msgid "This label was applied by the author." @@ -8209,11 +8815,11 @@ msgstr "Esta etiqueta fue aplicada por el autor." msgid "This label was applied by you." msgstr "Esta etiqueta fue aplicada por ti." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Este etiquetador no ha declarado qué etiquetas publica y puede que no esté activo." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Este enlace te lleva al siguiente sitio web:" @@ -8233,29 +8839,28 @@ msgstr "Esta lista está vacía" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Este servicio de moderación no está disponible. Consulta más detalles a continuación. Si el problema persiste, contáctanos." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Esta publicación declara haber sido creada en <0>{0}, pero fue vista por primera vez por Bluesky en <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Esta publicación tiene un tipo de ajustes de respuesta desconocido. Es posible que tu app no esté actualizada." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Esta publicación ha sido eliminada." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Esta publicación solo es visible para las personas que han iniciado sesión. No podrán verla quienes no hayan iniciado sesión." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "Esta publicación solo es visible para los usuarios que han iniciado sesión." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Esta publicación será ocultada de los feeds y hilos. Esto no se puede deshacer." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "El autor de esta publicación ha deshabilitado las citas." @@ -8263,11 +8868,11 @@ msgstr "El autor de esta publicación ha deshabilitado las citas." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Este perfil solo es visible para las personas que han iniciado sesión. No podrán verlo quienes no hayan iniciado sesión." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Esta respuesta se colocará en una sección oculta al final de tu hilo. Las notificaciones de respuestas posteriores se silenciarán, tanto para ti como para los demás." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Este servicio no ha proporcionado términos de servicio ni una política de privacidad." @@ -8275,6 +8880,10 @@ msgstr "Este servicio no ha proporcionado términos de servicio ni una política msgid "This should create a domain record at:" msgstr "Esto debería crear un registro de dominio en:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Este usuario no tiene un nombre para mostrar, por lo tanto no puede ser verificado." @@ -8316,16 +8925,18 @@ msgstr "Este usuario no sigue a nadie." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Esto eliminará \"{0}\" de tus palabras silenciadas. Siempre puedes añadirla de nuevo más tarde." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Esto eliminará @{0} de la lista de acceso rápido." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Esto eliminará tu publicación de esta cita para todos los usuarios y la reemplazará con un marcador de posición." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Opciones de hilos" @@ -8334,24 +8945,27 @@ msgstr "Opciones de hilos" msgid "Thread preferences" msgstr "Preferencias de hilos" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Preferencias de hilos" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "En hilos" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Modo con hilos" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Preferencias de hilos" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "Tiempo restante: {0, plural, one {# segundo} other {# segundos}}" @@ -8362,7 +8976,7 @@ msgstr "Para desactivar el método de autenticación de doble factor por correo #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215 msgid "To disable your email 2FA method, please verify your access to <0>{0}" -msgstr "" +msgstr "Para desactivar tu método de autenticación de doble factor por correo electrónico, comprueba que puedes acceder a <0>{0}" #: src/components/dms/ReportConversationPrompt.tsx:19 msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." @@ -8376,42 +8990,56 @@ msgstr "¿A quién te gustaría enviar este reporte?" msgid "Today" msgstr "Hoy" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Conmutar el menú desplegable" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Alternar para habilitar o deshabilitar contenido para adultos" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Activa/desactiva el sonido" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Destacados" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "Respuestas destacadas primero" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Tema" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Traducir" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "Vista en árbol" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Tendencias" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Videos populares" @@ -8428,14 +9056,10 @@ msgstr "Intentar de nuevo" msgid "TV" msgstr "Televisión" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Autenticación de doble factor (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Introduce tu nombre de usuario" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Escribe tu mensaje aquí" @@ -8453,7 +9077,7 @@ msgstr "No es posible conectarse. Comprueba tu conexión a Internet e inténtalo #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "No se puede contactar con tu proveedor. Comprueba tu conexión a Interne msgid "Unable to delete" msgstr "No se puede eliminar" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Desbloquear" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Desbloquear" @@ -8486,7 +9126,7 @@ msgstr "Desbloquear" msgid "Unblock account" msgstr "Desbloquear la cuenta" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "¿Desbloquear la cuenta?" @@ -8495,13 +9135,13 @@ msgstr "¿Desbloquear la cuenta?" msgid "Unblock list" msgstr "Desbloquear la lista" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Deshacer la republicación" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Deshacer la republicación ({0, plural, one {# republicación} other {# republicaciones}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Dejar de seguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Dejar de seguir a {0}" @@ -8523,7 +9163,7 @@ msgstr "Dejar de seguir esta cuenta" msgid "Unfollows the user" msgstr "Deja de seguir al usuario" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Desafortunadamente, los etiquetadores a los que te suscribiste no soportan este tipo de denuncia." @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "No me gusta" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "No me gusta ({0, plural, one {# me gusta} other {# me gusta}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Dejar de silenciar" @@ -8555,8 +9195,8 @@ msgstr "Dejar de silenciar" msgid "Unmute {tag}" msgstr "Dejar de silenciar {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Dejar de silenciar la conversación" msgid "Unmute list" msgstr "Dejar de silenciar la lista" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Dejar de silenciar el hilo" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Activar el sonido del video" @@ -8597,8 +9237,8 @@ msgstr "Desfijar el feed" msgid "Unpin from home" msgstr "Desfijar de inicio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Desfijar del perfil" @@ -8614,8 +9254,8 @@ msgstr "{0} desfijado de inicio" msgid "Unpinned from your feeds" msgstr "Desfijado de tus feeds" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "Dejar de posponer el recordatorio de correo electrónico" @@ -8636,7 +9276,7 @@ msgstr "Darse de baja de este etiquetador" msgid "Unsubscribed from list" msgstr "Dado de baja de la lista" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Tipo de video no aceptado" @@ -8662,10 +9302,10 @@ msgstr "Actualizar <0>{displayName} en listas" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" -msgstr "" +msgstr "Actualizar el correo electrónico" #: src/screens/Settings/components/ChangeHandleDialog.tsx:526 #: src/screens/Settings/components/ChangeHandleDialog.tsx:547 @@ -8674,19 +9314,19 @@ msgstr "Actualizar a {domain}" #: src/components/dialogs/EmailDialog/screens/Update.tsx:203 msgid "Update your email" -msgstr "" +msgstr "Actualizar tu correo electrónico" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Error al actualizar el adjunto de la cita" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Actualizar la visibilidad de la respuesta falló" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Actualizando..." @@ -8698,20 +9338,20 @@ msgstr "Sube una foto en su lugar" msgid "Upload a text file to:" msgstr "Carga un archivo de texto en:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Subir desde la cámara" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Subir desde tus archivos" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Subir desde la biblioteca" msgid "Uploading images..." msgstr "Subiendo imágenes..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Subiendo miniatura del enlace..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Subiendo video..." @@ -8761,6 +9401,10 @@ msgstr "Usar recomendados" msgid "Use this to sign in to the other app along with your handle." msgstr "Utilízala para iniciar sesión en la otra app junto a tu nombre de usuario." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Usado por:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Lista de usuarios actualizada" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Nombre de usuario o dirección de correo electrónico" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "usuarios seguidos por <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "usuarios siguiendo a <0>@{0}" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Usuarios que sigo" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Usuarios en \"{0}\"" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Usuarios que sigues" @@ -8846,11 +9502,11 @@ msgstr "Valor:" msgid "Verification failed, please try again." msgstr "Error al verificar, inténtalo de nuevo." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "Ajustes de verificación" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "Ajustes de verificación" @@ -8870,8 +9526,15 @@ msgstr "Verificado por:" msgid "Verify account" msgstr "Verificar la cuenta" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "" @@ -8880,21 +9543,20 @@ msgstr "" msgid "Verify DNS Record" msgstr "Verificar registro DNS" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "Verificar el correo electrónico" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" -msgstr "" +msgstr "Verificar el código del correo electrónico" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Ventana de verificación de correo electrónico" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Verificar archivo de texto" msgid "Verify this account?" msgstr "¿Verificar esta cuenta?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Verifica tu correo electrónico" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Verifica tu correo electrónico" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Versión {appVersion}" +msgid "Version {0}" +msgstr "Versión {0}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Video" @@ -8928,7 +9598,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "El video no se pudo procesar" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Feed de videos" @@ -8942,15 +9612,15 @@ msgstr "Video de {0}: {text}" msgid "Video Games" msgstr "Videojuegos" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Video en pausa" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Reproduciendo video" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Video no encontrado." @@ -8958,11 +9628,11 @@ msgstr "Video no encontrado." msgid "Video settings" msgstr "Configuración del video" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Video subido" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Video: {0}" @@ -8979,11 +9649,11 @@ msgstr "Los videos deben durar menos de 3 minutos" msgid "View {0}'s avatar" msgstr "Ver el avatar de {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Ver el perfil de {0}" @@ -8991,7 +9661,7 @@ msgstr "Ver el perfil de {0}" msgid "View {displayName}'s profile" msgstr "Ver el perfil de {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Ver el perfil del usuario bloqueado" @@ -9009,7 +9679,6 @@ msgstr "Ver entrada de depuración" msgid "View details" msgstr "Ver detalles" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Ver más detalles sobre cómo reportar una violación de Derechos de Autor" @@ -9022,23 +9691,23 @@ msgstr "Ver hilo completo" msgid "View information about these labels" msgstr "Ver información sobre estas etiquetas" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Ver más" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Ver perfil" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Ver el avatar" @@ -9054,28 +9723,28 @@ msgstr "Ver las verificaciones de este usuario" msgid "View users who like this feed" msgstr "Ver usuarios a los que les gusta este feed" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Ver el video" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Ver tus cuentas bloqueadas" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "Consulta tus ajustes de interacción con las publicaciones" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Ver tus feeds y explorar más" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Ver tus listas de moderación" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Ver tus cuentas silenciadas" @@ -9083,8 +9752,8 @@ msgstr "Ver tus cuentas silenciadas" msgid "View your verifications" msgstr "Ver tus verificaciones" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Muestra la imagen a tamaño completo" @@ -9092,16 +9761,20 @@ msgstr "Muestra la imagen a tamaño completo" msgid "Views video in immersive mode" msgstr "Muestra el video en modo inmersivo" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" msgstr "Visitar el sitio" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "Entra a tus ajustes de notificación" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Volumen" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9118,6 +9791,14 @@ msgstr "Advertir contenido y filtrar de los feeds" #: src/components/live/LiveStatusDialog.tsx:156 #: src/components/live/LiveStatusDialog.tsx:169 msgid "Watch now" +msgstr "Ver" + +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." msgstr "" #: src/screens/Hashtag.tsx:205 @@ -9128,7 +9809,7 @@ msgstr "No pudimos encontrar resultados para ese hashtag." msgid "We couldn't find any results for that topic." msgstr "No hemos encontrado resultados para ese tema." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "No pudimos cargar esta conversación" @@ -9136,6 +9817,10 @@ msgstr "No pudimos cargar esta conversación" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Estimamos {estimatedTime} hasta que tu cuenta esté lista." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Hemos enviado otro correo electrónico de verificación a <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "Esperamos que lo pases bien. Recuerda, Bluesky es:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Ya no quedan publicaciones de las cuentas que sigues. Aquí está lo último de <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "Te recomendamos que elijas al menos dos intereses." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." -msgstr "" +msgstr "Hemos enviado un correo electrónico a <0>{0} con un enlace. Haz clic en el enlace para completar la verificación del correo electrónico." -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "No pudimos determinar si tienes permiso para cargar videos. Inténtalo de nuevo." @@ -9164,10 +9849,14 @@ msgstr "No pudimos determinar si tienes permiso para cargar videos. Inténtalo d msgid "We were unable to load your birth date preferences. Please try again." msgstr "No pudimos cargar tus preferencias de fecha de nacimiento. Por favor, inténtalo de nuevo." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "No pudimos cargar tus etiquetadores configurados en este momento." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "No pudimos conectarnos. Inténtalo de nuevo para continuar configurando tu cuenta. Si sigue fallando, puedes omitir este proceso." @@ -9176,14 +9865,30 @@ msgstr "No pudimos conectarnos. Inténtalo de nuevo para continuar configurando msgid "We will let you know when your account is ready." msgstr "Te informaremos cuando tu cuenta esté lista." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." -msgstr "" +msgstr "Vamos a enviar un correo electrónico a <0>{0} con un enlace. Haz clic en el enlace para completar la verificación del correo electrónico." #: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "Usaremos esta información para personalizar tu experiencia." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Estamos teniendo problemas de red, inténtalo de nuevo" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Hemos incluido una nueva capa de verificación en Bluesky: una marca fácil de ver." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "¡Es nuestro placer tenerte aquí!" @@ -9205,15 +9910,15 @@ msgstr "Lo sentimos, pero no pudimos resolver esta lista. Si esto persiste, por msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Lo sentimos, pero no pudimos cargar tus palabras silenciadas en este momento. Por favor, inténtalo de nuevo." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Lo sentimos, pero no se ha podido completar tu búsqueda. Inténtalo de nuevo en unos minutos." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "¡Lo sentimos! Se ha eliminado la publicación a la que estás respondiendo." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "¡Lo sentimos! No encontramos la página que buscabas." @@ -9222,6 +9927,26 @@ msgstr "¡Lo sentimos! No encontramos la página que buscabas." msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "¡Lo sentimos! Solo puedes suscribirte a veinte etiquetadores, y has alcanzado tu límite de veinte." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "¡Hola otra vez!" @@ -9240,7 +9965,7 @@ msgstr "¿Cómo quieres llamar a tu paquete de inicio?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "¿Qué hay de nuevo?" @@ -9256,11 +9981,11 @@ msgstr "¿En qué idioma está esta publicación?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "¿Qué idiomas te gustaría ver en tus feeds?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "¿Quién puede interactuar con esta publicación?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Quién puede responder" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "¿Quién puede verificar?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "¡Vaya!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "¡Vaya! No se han podido cargar los videos populares." @@ -9322,12 +10047,12 @@ msgstr "¿Por qué crees que este usuario debe ser revisado?" msgid "Write a message" msgstr "Escribe un mensaje" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Escribe una publicación" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Escribe una respuesta" @@ -9343,7 +10068,7 @@ msgstr "DID equivocado devuelto por el servidor. Se recibió: {0}" #: src/components/live/EditLiveDialog.tsx:153 #: src/components/live/GoLiveDialog.tsx:129 msgid "www.mylivestream.tv" -msgstr "" +msgstr "www.midirecto.tv" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:87 msgid "Yes" @@ -9358,11 +10083,11 @@ msgstr "Sí, desactivar" msgid "Yes, delete this starter pack" msgstr "Sí, eliminar este paquete de inicio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Sí, separar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Sí, ocultar" @@ -9378,6 +10103,10 @@ msgstr "Ayer" msgid "You" msgstr "Tú" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "Tú eres un verificador de confianza" @@ -9386,6 +10115,10 @@ msgstr "Tú eres un verificador de confianza" msgid "You are creating an account on" msgstr "Estás creando una cuenta en" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Estás en cola." @@ -9393,17 +10126,17 @@ msgstr "Estás en cola." #: src/components/live/EditLiveDialog.tsx:119 #: src/components/live/EditLiveDialog.tsx:124 msgid "You are Live" -msgstr "" +msgstr "Estás emitiendo en directo" #: src/components/live/queries.ts:211 msgid "You are no longer live" -msgstr "" +msgstr "Ya no estás emitiendo en directo" #: src/components/live/queries.ts:35 msgid "You are not allowed to go live" -msgstr "" +msgstr "No tienes permiso para emitir en directo" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "No tienes permiso para subir videos." @@ -9413,14 +10146,13 @@ msgstr "No estás siguiendo a nadie." #: src/components/live/queries.ts:156 msgid "You are now live!" -msgstr "" +msgstr "¡Estás en directo!" #: src/components/verification/VerificationsDialog.tsx:64 msgid "You are verified" msgstr "Estás verificado" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "Estás verificado. Perderás tu estado de verificación si cambias tu nombre para mostrar. <0>Más información (en inglés)." @@ -9441,10 +10173,18 @@ msgstr "También puedes descubrir nuevos Feeds personalizados para seguir." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "También puedes desactivar temporalmente tu cuenta y reactivarla en cualquier momento." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "Puedes elegir si las notificaciones de chat tienen sonido en la configuración del chat dentro de la aplicación" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Puedes continuar las conversaciones en curso independientemente de la configuración que elijas." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Ahora puedes iniciar sesión con tu nueva contraseña." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Puedes reactivar tu cuenta para continuar iniciando sesión. Tu perfil y publicaciones serán visibles para otros usuarios." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "Puedes definir los ajustes de interacción por defecto en <0>Ajustes → Moderación → Ajustes de interacción." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Puedes cambiar esta opción en Ajustes." @@ -9472,7 +10212,7 @@ msgstr "No tienes ningún seguidor." msgid "You don't follow any users who follow @{name}." msgstr "No sigues a ningún usuario que siga a @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "Por el momento, no tienes solicitudes de chat." @@ -9480,15 +10220,15 @@ msgstr "Por el momento, no tienes solicitudes de chat." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "¡Aún no tienes ningún código de invitación! Te enviaremos algunos cuando lleves un poco más de tiempo en Bluesky." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "No tienes ningún feed fijado." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "No tienes ningún feed guardado." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Has bloqueado al autor o has sido bloqueado por el autor." @@ -9502,6 +10242,10 @@ msgstr "Has bloqueado a este usuario" msgid "You have blocked this user. You cannot view their content." msgstr "Has bloqueado a este usuario. No puedes ver su contenido." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "Has desactivado las notificaciones de respuestas, citas y menciones, por lo que esta pestaña no se actualizará más. Para cambiarlo, ve a los <0>Ajustes de notificaciones." + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Has silenciado esta cuenta." msgid "You have muted this user" msgstr "Has silenciado a este usuario" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "No tienes conversaciones. ¡Comienza una!" @@ -9547,13 +10291,13 @@ msgstr "Aún no has bloqueado ninguna cuenta. Para bloquear una cuenta, ve a su msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Aún no has silenciado ninguna cuenta. Para silenciar una cuenta, ve a su perfil y selecciona \"Silenciar cuenta\" en el menú de su cuenta." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Has llegado al final" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:187 msgid "You have successfully verified your email address. You can close this dialog." -msgstr "" +msgstr "Has verificado tu dirección de correo electrónico correctamente. Puedes cerrar esta ventana." #: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." @@ -9572,6 +10316,10 @@ msgstr "Aún no has silenciado ninguna palabra o etiqueta" msgid "You hid this reply." msgstr "Has ocultado esta respuesta." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Puedes apelar etiquetas no propias si sientes que fueron colocadas por error." @@ -9592,7 +10340,7 @@ msgstr "Solo puedes añadir hasta 3 feeds" msgid "You may only select up to 4 images" msgstr "Solo puedes seleccionar hasta 4 imágenes" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "La edad mínima para crear una cuenta es de 13 años." @@ -9600,6 +10348,14 @@ msgstr "La edad mínima para crear una cuenta es de 13 años." msgid "You must be following at least seven other people to generate a starter pack." msgstr "Debes seguir al menos a siete personas más para generar un paquete de inicio." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Debes otorgar acceso a tu biblioteca de fotos para guardar un código QR" @@ -9608,6 +10364,11 @@ msgstr "Debes otorgar acceso a tu biblioteca de fotos para guardar un código QR msgid "You must select at least one labeler for a report" msgstr "Debes seleccionar al menos un etiquetador para una denuncia" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "Debes iniciar sesión para ver este mensaje." + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "Necesitas verificar tu dirección de correo electrónico antes de activar la autenticación de doble factor por correo electrónico." @@ -9616,7 +10377,7 @@ msgstr "Necesitas verificar tu dirección de correo electrónico antes de activa msgid "You previously deactivated @{0}." msgstr "Anteriormente desactivaste a @{0}." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "Probablemente quieras reiniciar la aplicación ahora." @@ -9628,16 +10389,20 @@ msgstr "Reaccionaste con {0}" msgid "You reacted {0} to {1}" msgstr "Reaccionaste con {0} a {1}" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Se cerrará la sesión de todas tus cuentas." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Ya no recibirás notificaciones de este hilo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Ahora recibirás notificaciones de este hilo" @@ -9657,11 +10422,11 @@ msgstr "Tú: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Tú: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "¡Comenzarás a seguir a los usuarios y feeds sugeridos una vez que termines de crear tu cuenta!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "¡Comenzarás a seguir a los usuarios sugeridos cuando hayas terminado de crear tu cuenta!" @@ -9673,9 +10438,9 @@ msgstr "Comenzarás a seguir a estas personas y a {0} más" msgid "You'll follow these people right away" msgstr "Comenzarás a seguir a estas personas de inmediato" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Recibirás un correo electrónico en <0>{0} para verificar que eres tú." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,27 +10468,35 @@ msgstr "Has elegido ocultar una palabra o etiqueta dentro de esta publicación." msgid "You've found some people to follow" msgstr "Has encontrado algunas personas a las que seguir" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "¡Has llegado al fin de tu feed! Encuentra más cuentas para seguir." #: src/lib/hooks/useCleanError.ts:58 msgid "You've reached the maximum number of requests allowed. Please try again later." +msgstr "Has alcanzado el número máximo de solicitudes permitidas. Inténtalo de nuevo más tarde." + +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:421 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Has alcanzado tu límite diario de carga de videos (demasiados bytes)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Has alcanzado tu límite diario de carga de videos (demasiados videos)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Has visto todos los videos que había. ¿Qué te parece si hacemos una pausa?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Tu cuenta" @@ -9735,7 +10508,7 @@ msgstr "Tu cuenta ha sido eliminada" msgid "Your account has been suspended" msgstr "Se ha suspendido tu cuenta" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Tu cuenta aún no tiene suficiente antigüedad para subir videos. Inténtalo de nuevo más tarde." @@ -9751,11 +10524,11 @@ msgstr "Se ha constatado que tu cuenta infringió <0>los Términos de servicio d msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "Hemos recibido tu apelación. Si se acepta, te avisaremos por correo electrónico." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Tu fecha de nacimiento" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Tu navegador no soporta este formato de video. Por favor, inténtalo con uno diferente." @@ -9771,30 +10544,28 @@ msgstr "Recordaremos tu preferencia para enlaces futuros. Puedes cambiarla cuand msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Tu nombre de usuario actual, <0>{0}, quedará automáticamente reservado para ti. Puedes volver a él cuando quieras desde esta cuenta." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "Se ha actualizado tu correo electrónico, pero todavía no se ha verificado. La siguiente etapa consiste en verificarlo." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Tu correo electrónico parece no ser válido." #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65 msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Tu correo electrónico aún no ha sido verificado. Por tu seguridad, recomendamos que lo verifiques." +msgstr "Aún no has verificado tu correo electrónico. Hazlo para poder disfrutar de todas las funciones de Bluesky." #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "¡Tu primer \"me gusta\"!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "Tus seguidores" @@ -9806,19 +10577,15 @@ msgstr "¡Tu feed de Siguiendo esta vacío! Sigue a más usuarios para ver sus p msgid "Your full handle will be <0>@{0}" msgstr "Tu nombre de usuario completo será <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "Tu nombre de usuario completo será <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "Tus intereses" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "Se han actualizado tus intereses." @@ -9835,15 +10602,15 @@ msgstr "Tus palabras silenciadas" msgid "Your password has been changed successfully!" msgstr "¡Tu contraseña ha sido cambiada exitosamente!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "La contraseña debe tener al menos 8 caracteres." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Publicado" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Publicados" @@ -9851,15 +10618,19 @@ msgstr "Publicados" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Tus publicaciones, a qué le das \"me gusta\" y a quién bloqueas son públicos. Nadie puede ver a quien silencias." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Tu perfil, publicaciones, feeds y listas dejarán de ser visibles para otros usuarios de Bluesky. Puedes reactivar tu cuenta en cualquier momento iniciando sesión." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Respuesta publicada" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "Se enviará tu denuncia a <0>{0}." @@ -9867,7 +10638,7 @@ msgstr "Se enviará tu denuncia a <0>{0}." msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Tu reporte ha sido enviado al servicio de moderación de Bluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "Los intereses que selecciones nos ayudarán a ofrecerte contenido interesante para ti." diff --git a/src/locale/locales/eu/messages.po b/src/locale/locales/eu/messages.po index d575ac73f8..50d5d6b248 100644 --- a/src/locale/locales/eu/messages.po +++ b/src/locale/locales/eu/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: eu\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 00:49\n" "Last-Translator: \n" "Language-Team: Basque\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,7 +27,7 @@ msgstr "(aktiboa)" msgid "(contains embedded content)" msgstr "(kapsulatutako edukia dauka)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(e-postarik ez)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {berpost #} other {# berpost}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {segundu #} other {# segundu}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {Elementu bat} other {# elementu}} irakurri gabe" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {Elementu bat} other {# elementu}} irakurri gabe" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, other {# hilabete}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {jarraitzaile} other {jarraitzaile}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {jarraitzen} other {jarraitzen}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {gogoko} other {gogoko}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {gogoko} other {gogoko}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {post} other {post}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {aipamen} other {aipamen}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {berpost} other {berpost}}" @@ -135,6 +138,10 @@ msgstr "{0} <0> <1>etiketetan" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0> <1>testu eta etiketetan" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} jarraitzen" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "{0} zuzenean dago" @@ -143,11 +150,15 @@ msgstr "{0} zuzenean dago" msgid "{0} is not a valid URL" msgstr "{0} ez da URL baliozkoa" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "{0} ez dago eskuragarri" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} aste honetan elkartua" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} {1}-etik" @@ -164,8 +175,16 @@ msgstr "{0} erreakzioantu du {1}" msgid "{0} reacted {1} to {2}" msgstr "{0} erreakzioantu du {1} {2}-i" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0}, {1} -ren feeda, {2} -k gustoko du" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0}, {1}-ren zerrenda" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "{0}-ren abatarra" @@ -197,12 +216,12 @@ msgstr "{0}min" msgid "{0}s" msgstr "{0}seg" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {Elementu bat} other {# elementu}} irakurri gabe" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "{displayName}-ren Abio Multzoa" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {ordu} other {ordu}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minutu} other {minutu}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} jarraitzen dizute" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure neurrira egindako feeda gogoko dute" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure posta gogoko dute" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}} zure berposta gogoko dute" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}} zure kontuaren egiaztapenak kendu dituzte" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure postari berpost egin diote" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}} zure berpostari berpost egin diote" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure abio multzoan izena eman dute" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}} egiaztatu zaituzte" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} jarraitzen dizu" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} bueltan jarraitzen dizu" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} zure neurrira egindako feeda gustoko du" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} zure posta gogoko du" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink}-k zure berposta gogoko du" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} zure kontuaren egiaztapenak kendu dituzte" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} zure postari berpost egin dio" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink}-k zure berpostari berpost egin dio" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} zure abio multzoan izena eman du" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink}-k egiaztatu zaitu" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} jarraitzen dizute" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure neurrira egindako feeda gogoko dute" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure posta gogoko dute" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}} zure berposta gogoko dute" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}} zure kontuaren egiaztapenak kendu dituzte" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure postari berpost egin diote" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}} zure berpostari berpost egin diote" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure abio multzoan izena eman dute" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}} egiaztatu zaituzte" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} jarraitzen dizu" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} bueltan jarraitzen dizu" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} zure neurrira egindako feeda gustoko du" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} zure posta gogoko du" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName}-k zure berposta gogoko du" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} zure kontuaren egiaztapenak kendu dituzte" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} zure postari berpost egin dio" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName}-k zure berpostari berpost egin dio" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} zure abio multzoan izena eman du" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName}-k egiaztatu zaitu" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} jarraitzen" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "{handle} ezin zaio mezua bidali" @@ -392,7 +410,7 @@ msgstr "{joinedAllTimeCount, plural, other {# erabiltzaile}} elkartu dira!" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "{minutes, plural, one {minutu #} other {# minutu}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {Elementu bat} other {# elementu}} irakurri gabe" @@ -432,12 +450,12 @@ msgstr "{userName}-ren egiaztapenak" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, eta {2, plural, one {beste #} other {beste #}} zure abio multzoan daude" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, eta {2, plural, one {beste #} other {beste #}} zure abio multzoan daude" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {jarraitzaile} other {jarraitzaile}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {jarraitzen} other {jarraitzen}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} eta<1> <2>{1} zure abio multzoan daude" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} zure abio multzoan dago" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} kide" @@ -466,11 +484,11 @@ msgstr "<0>{0} kide" msgid "<0>{date} at {time}" msgstr "<0>{date} {time}-etan" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Esperimentala: Hobespen hau gaituta dagoenean, bakarrik jarraitzen dituzun erabiltzaileen erantzun eta aipamen jakinarazpenak jasoko dituzu. Denborarekin hemen kontrol gehiago gehitzen jarraituko dugu." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<0>Hasi saioa<1> edo <2>sortu kontu bat<3> <4>Bluesky-n gertatzen den guztia, berriak, kirolak, politika eta abar bilatzeko." -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Zueta<1> <2>{0} zure abio multzoan zaudete" @@ -503,10 +521,14 @@ msgstr "mezu bat" msgid "A new form of verification" msgstr "Egiaztatzeko modu berri bat" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "Jarraitu botoiaren ondoan kanpai ikono bat duen profil orri baten pantaila-argazkia, jarduera berrien jakinarazpenen funtzioa adierazten duena." + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Honi buruz" @@ -524,25 +546,25 @@ msgstr "Onartu txateatzeko eskaera" msgid "Accept Request" msgstr "Onartu Eskaera" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Erabilerraztasun" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Erabilerraztasun Doikuntzak" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Kontua" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Kontua jarraituta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Kontua Mututua" msgid "Account Muted by List" msgstr "Kontua Mututua Zerrendagatik" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Kontuaren aukerak" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Kontua ezabatua sarrera azkarretik" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Kontua jarraitzeari utzita" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Kontua desmutututa" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Egiaztapen-marka urdin ondulatua <0><1/> duten kontuek beste batzuk egiazta ditzakete. Egiaztatzaile fidagarri hauek Blueskyk hautatzen ditu." +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "Beste batzuen jarduera" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "Jarduera jakinarazpenak" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Gehitu" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Gehitu {0} gehiago jarraitzeko" @@ -634,8 +666,8 @@ msgstr "Gehitu kontua" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Gehitu aukerazko testua" msgid "Add alt text (optional)" msgstr "Gehitu aukerazko testua (hautazkoa)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Gehitu beste kontu bat" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Gehitu beste post bat" @@ -670,8 +702,8 @@ msgstr "Gehitu Aplikazio Pasahitza" msgid "Add emoji reaction" msgstr "Gehitu emoji erreakzioa" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Gehitu xehetasun gehiago (hautazkoa)" @@ -683,7 +715,7 @@ msgstr "Gehitu mutututako hitza aukeratutako ezarpenekin" msgid "Add muted words and tags" msgstr "Gehitu hitz mutuak eta etiketak" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Gehitu post berria" @@ -704,7 +736,7 @@ msgstr "Gehitu Erreakzioa" msgid "Add recommended feeds" msgstr "Gehitu gomendatutako feddak" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Gehitu feed batzuk zure abio multzoari!" @@ -725,10 +757,6 @@ msgstr "Gehitu feed hau zure feedetara" msgid "Add to lists" msgstr "Gehitu zerrendetara" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Gehitu nire feedetara" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "Gehitu erabiltzailea zerrendara" @@ -738,11 +766,11 @@ msgstr "Gehitu erabiltzailea zerrendara" msgid "Added to list" msgstr "Zerrendara gehitua" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Nire feedetara gehitua" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "Xehetasun gehiago (1000 karaktere gehienez)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Xehetasun gehiago (300 karaktere gehienez)" @@ -750,18 +778,18 @@ msgstr "Xehetasun gehiago (300 karaktere gehienez)" msgid "Adult" msgstr "Heldua" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Eduki heldua" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Eduki heldua <0>bsky.app Web bidez bakarrik gaitu daiteke." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Eduki heldua desgaitua dago." @@ -770,16 +798,32 @@ msgstr "Eduki heldua desgaitua dago." msgid "Adult Content labels" msgstr "Eduki Heldu etiketak" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Aurreratua" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "Adinaren Bermea" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "Adinaren berme-kontsulta ez da bidali, saiatu berriro." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "Adinaren berme-eskaera aurkeztu da" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "Adina bermatzeko minutu gutxi batzuk besterik ez dira behar" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "ane@adibidea.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Guztiak" @@ -793,7 +837,7 @@ msgstr "Kontu guztiak jarraituak izan dira!" msgid "All languages" msgstr "Hizkuntza guztiak" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Gorde dituzun feed guztiak, leku bakar batean." @@ -802,16 +846,21 @@ msgstr "Gorde dituzun feed guztiak, leku bakar batean." msgid "Allow access to your direct messages" msgstr "Baimendu sarrera zure mezu zuzenetara" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Baimendu mezu berriak bertatik" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "Utzi besteei zure posten berri izaten" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Baimendu post aipamenak" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Baimendu erantzunak bertatik:" @@ -828,13 +877,13 @@ msgstr "Dagoeneko kode bat daukazu?" msgid "Already signed in as @{0}" msgstr "Dagoeneko izena emanda @{0} bezala" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "AUKERAZKO TESTUA" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "AUKERAZKO TESTUA" msgid "Alt text" msgstr "Aukerazko testua" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Aukerazko Testua" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Aukerazko testuak itsu eta ikusmen urriko erabiltzaileentzako irudiak deskribatzen ditu eta guztientzako testuingurua ematen laguntzen du." @@ -861,27 +910,19 @@ msgstr "Aukerazko testua moztuko da. {MAX_ALT_TEXT, plural, other {Muga: {0} kar msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Mezu elektroniko bat bidali da {0} helbidera. Behean sar dezakezun berrespen-kode bat dakar." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "Mezu elektroniko bat bidali da zure aurreko helbidera, {currentEmail}. Behean sar dezakezun berrespen-kode bat dakar." - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Mezu elektroniko bat bidali da! Mesedez, sartu behean mezu elektronikoak dakarren berrespen-kodea." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Errore bat gertatu da" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Errore bat gertatu da" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Errore bat gertatu da bideoa konprimitzean." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "Errore bat gertatu da feeda eskuratzerakoan." @@ -889,11 +930,11 @@ msgstr "Errore bat gertatu da feeda eskuratzerakoan." msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Errore bat gertatu da zure abio multzoa sortzean. Berriro saiatu nahi duzu?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Errore bat gertatu da bideoa kargatzean. Mesedez, saiatu berriro geroago." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Errore bat gertatu da bideoa kargatzean. Mesedez, saiatu berriro." @@ -910,7 +951,7 @@ msgstr "Errore bat gertatu da bideoa aukeratzean" msgid "An error occurred while trying to follow all" msgstr "Errore bat gertatu da guztiak jarraitzen saiatzean" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Errore bat gertatu da bideoa igotzean." @@ -934,8 +975,8 @@ msgstr "Arazo bat gertatu da txata irekitzen saiatzean" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "errore ezezagun bat gertatu da" msgid "an unknown labeler" msgstr "etiketatzaile ezezaguna" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "eta" @@ -963,10 +1004,14 @@ msgstr "eta" msgid "Animals" msgstr "Animaliak" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "GIF animatuak" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "Iragarpena" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "Bluesky-n egiaztapena iragartzen" @@ -980,7 +1025,13 @@ msgstr "Gizartearen Aurkako Portaera" msgid "Anybody can interact" msgstr "Edozeinek elkarreragin dezake" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "Niri jarraitzen didan edonor" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "Aplikazioaren pasahitzaren izenek letrak, zenbakiak, zuriuneak, marratxo msgid "App password names must be at least 4 characters long" msgstr "Aplikazioaren pasahitzaren izenek 4 karaktere izan behar dituzte gutxienez" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Aplikazio pasahitzak" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Aplikazio Pasahitzak" @@ -1053,10 +1104,10 @@ msgstr "Apelazioa Geldiarazi" msgid "Appeal this decision" msgstr "Apelatu erabaki hau" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Itxura" @@ -1065,12 +1116,20 @@ msgstr "Itxura" msgid "Apply default recommended feeds" msgstr "Aplikatu gomendatutako feed lehenetsiak" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "Aplikatu Tira Eskaera" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "{0}-tik artxibatuta" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Gordetako posta" @@ -1078,7 +1137,7 @@ msgstr "Gordetako posta" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Ziur zaude \"{0}\" aplikazioaren pasahitza ezabatu nahi duzula?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Ziur zaude mezu hau ezabatu nahi duzula? Mezua zuretzako ezabatuko da, baina ez beste parte-hartzaileentzat." @@ -1098,19 +1157,15 @@ msgstr "Ziur zaude elkarrizketa hau utzi nahi duzula?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Ziur zaude elkarrizketa hau utzi nahi duzula? Zure mezuak ezabatuko dira zuretzako, baina ez beste parte-hartzaileentzat." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Ziur zaude {0} zure feedetatik ezabatu nahi duzula?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Ziur zaude hau zure feedetatik ezabatu nahi duzula?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Ziur zaude zirriborro hau baztertu nahi duzula?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Ziur zaude post hau baztertu nahi duzula?" @@ -1131,29 +1186,26 @@ msgstr "Artea" msgid "Artistic or non-erotic nudity." msgstr "Biluztasun artistikoa edo ez erotikoa" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "Algoritmoari gaia esleitu" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Gutxienez 3 karaktere" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Erreprodukzio automatikoko aukerak <0>Edukia eta Multimedia ezarpenetara mugitu dira." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Bideo eta GIF erreprodukzio automatikoa" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "Eskuragarri" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Bideo eta GIF erreprodukzio automatikoa" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Atzera" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Itzuli Txatetara" @@ -1195,28 +1247,44 @@ msgstr "Abio multzo bat sortu aurretik, zure posta elektronikoa egiaztatu behar msgid "Before you can accept this chat request, you must first verify your email." msgstr "Txateatzeko eskaera hau onartu aurretik, zure posta elektronikoa egiaztatu behar duzu." +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "{name}-ren posten jakinarazpenak jaso aurretik, zure helbide elektronikoa egiaztatu behar duzu." + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "Beste erabiltzaile bati mezua bidali aurretik, zure posta elektronikoa egiaztatu behar duzu." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "Hasi" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "Adina bermatzeko prozesua hasi" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "Bete beheko eremuak adinaren berme prozesua hasteko." + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Urtebetetzea" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Blokeatu" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Blokeatu" msgid "Block account" msgstr "Kontua blokeatu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Kontua Blokeatu?" @@ -1262,20 +1330,20 @@ msgstr "Blokeatu erabiltzailea" msgid "Block User" msgstr "Blokeatu Erabiltzailea" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Blokeatua" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Blokeatutako kontuak" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Blokeatutako Kontuak" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blokeatutako kontuek ezin dute zure harietan erantzun, zu aipatu edo zurekin elkarreragin." @@ -1284,11 +1352,11 @@ msgstr "Blokeatutako kontuek ezin dute zure harietan erantzun, zu aipatu edo zur msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Blokeatutako kontuek ezin dute zure harietan erantzun, zu aipatu edo zurekin elkarreragin. Ez duzu haien edukia ikusiko eta zurea ikustea galaraziko zaie." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Post blokeatua." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blokeatzeak ez dio etiketatzaile honi eragotziko etiketak zure kontuan aplikatzea." @@ -1309,11 +1377,12 @@ msgstr "Blog-a" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky-k ezin du baieztatu erreklamatutako dataren benetakotasuna." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1347,6 +1416,14 @@ msgstr "Bluesky-k ez die zure profila eta postak erakutsiko saioa hasita ez dute msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky-k modu proaktiboan egiaztatuko ditu kontu aipagarriak eta benetakoak." +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "Bluesky-ren Komunitatearen Gidalerroak" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "Bluesky-ren Komunitate Gidalerro Eguneratuak" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Irudiak lausotu eta iragazi feedetatik" msgid "Books" msgstr "Liburuak" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Nabigatu kontu gehiagotatik Arakatu orrian" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Nabigatu feed gehiagotatik Arakatu orrian" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Nabigatu proposamen gehiagotatik" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Nabigatu proposamen gehiagotatik Arakatu orrian" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Negozio" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "{0}-gatik" @@ -1428,15 +1502,23 @@ msgstr "{0}-gatik" msgid "By <0>{0}" msgstr "<0>{0}-gatik" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "\"Jarraitu\" sakatzean, eguneratze hauek ulertu eta onartzen dituzula aitortzen duzu." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "Jarraituz gero, <0>KWS Erabilera Baldintzak onartzen dituzu eta KWS-k zure egiaztatutako egoera zure lotutako helbide elektronikoarekin gordeko duela onartzen duzu, <1>KWS Pribatutasun Politikaren arabera. Horrek esan nahi du ez duzula berriro egiaztatu beharko hurrengoan helbide elektroniko hau KWS teknologiak bultzatutako beste aplikazio, joko eta zerbitzu batzuetarako erabiltzen duzunean." + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Kontu bat sortuz gero, <0>Pribatutasun Politika onartzen duzu." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Kontua sortzean <0>Zerbitzu Baldintzak eta <1>Pribatutasun Politika onartzen dituzu." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Kontua sortzean <0>Zerbitzu Baldintzak onartzen dituzu." @@ -1448,14 +1530,17 @@ msgstr "Zugatik" msgid "Camera" msgstr "Kamera" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Kamera" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Utzi" @@ -1500,11 +1582,7 @@ msgstr "Utzi kontua ezabatzea" msgid "Cancel image crop" msgstr "Utzi irudiaren mozketa" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Utzi profilaren edizioa" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Utzi postaren aipamena" @@ -1516,14 +1594,10 @@ msgstr "Utzi berriro aktibatzea eta amaitu saioa" msgid "Cancel search" msgstr "Utzi bilaketa" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Estekatutako webgunea irekitzea bertan behera uzten du" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Ezin da blokeatutako erabiltzaile batekin elkarreragin" @@ -1553,17 +1627,12 @@ msgstr "Aldatu aplikazioaren ikonoa \"{0}\"-ra" msgid "Change app language" msgstr "Aldatu aplikazioaren hizkuntza" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Aldatu e-posta helbidea" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Aldatu Erabiltzailea" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Aldatu moderazio zerbitzua" @@ -1579,14 +1648,6 @@ msgstr "Aldatu postaren hizkuntza {suggestedLanguageName}-ra" msgid "Change report reason" msgstr "Aldatu salaketa arrazoia" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Aldatu Zure E-posta" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Aldatu zure e-posta helbidea" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Aplikazioaren ikonoa aldatzen du" @@ -1596,10 +1657,15 @@ msgstr "Aplikazioaren ikonoa aldatzen du" msgid "Changes hosting provider" msgstr "Hostatze-hornitzailea aldatzen du" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "Aldaketak gordeta" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Txateatu" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Txata ezabatuta" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "Txat mezuak - isilak" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "Txat mezuak - soinuarekin" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Txata mutututa" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "Txateatzeko eskaeren sarrera-ontzia" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Txateatzeko eskaerak" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Txataren ezarpenak" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Txataren Ezarpenak" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Txata desmutututa" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Txatak" @@ -1661,7 +1738,7 @@ msgstr "Egiaztatu zure sarrera-ontzia, baieztapen kodea hartu eta sartu hemen:" msgid "Choose domain verification method" msgstr "Aukeratu domeinua egiaztatzeko metodoa" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Aukeratu Feedak" @@ -1669,7 +1746,7 @@ msgstr "Aukeratu Feedak" msgid "Choose for me" msgstr "Aukeratu niretzat" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Aukeratu Jendea" @@ -1685,23 +1762,23 @@ msgstr "Aukeratu kolore hau zure abatar gisa" msgid "Choose your account provider" msgstr "Aukeratu zure kontu hornitzailea" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Aukeratu zure denbora-lerroa! Komunitateak sortutako feedek maite duzun edukia aurkitzen laguntzen dizu." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Aukeratu zure pasahitza" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Aukeratu zure erabiltzaile-izena" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Garbitu biltegiratze-datu guztiak" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Garbitu biltegiratze-datu guztiak (berrabiarazi hau egin ondoren)" @@ -1714,23 +1791,27 @@ msgstr "Garbitu irudien cachea" msgid "Clear search query" msgstr "Garbitu bilaketa-kontsulta" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "Egin klik informazioa lortzeko" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "klik hemen" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "Egin klik hemen egiaztapen-prozesua berrabiarazteko." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "Egin klik hemen zure posta elektronikoa eguneratzeko" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Egin klik post honen aipamen postak desgaitzeko." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Egin klik post honen aipamen postak gaitzeko." @@ -1750,14 +1831,16 @@ msgstr "Giroa" msgid "Clip 🐴 clop 🐴" msgstr "Klip 🐴 klop 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Klip 🐴 klop 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Itxi" @@ -1789,13 +1876,15 @@ msgstr "Itxi alerta" msgid "Close bottom drawer" msgstr "Itxi beheko tiradera" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Itxi elkarrizketa-koadroa" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Itxi marrazki menua" @@ -1804,7 +1893,7 @@ msgstr "Itxi marrazki menua" msgid "Close emoji picker" msgstr "Itxi emoji-hautatzailea" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Itxi GIF elkarrizketa-koadroa" @@ -1822,7 +1911,7 @@ msgstr "Itxi irudi ikuslea" msgid "Close menu" msgstr "Itxi menua" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Itxi elkarrizketa-koadro hau" @@ -1830,7 +1919,7 @@ msgstr "Itxi elkarrizketa-koadro hau" msgid "Closes password update alert" msgstr "Pasahitzak eguneratzeko alerta ixten du" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "Post-konpositorea ixten du eta post-zirriborroa baztertzen du" @@ -1843,16 +1932,16 @@ msgstr "Emoji-hautatzailea ixten du" msgid "Closes viewer for header image" msgstr "Goiburuko irudiaren ikuslea ixten du" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Tolestu erabiltzaileen zerrenda" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Jakinarazpen jakin baterako erabiltzaileen zerrenda tolesten du" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Kolore modua" @@ -1870,7 +1959,8 @@ msgstr "Komedia" msgid "Comics" msgstr "Komikiak" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Komunitate-gidalerroak" @@ -1879,38 +1969,34 @@ msgstr "Komunitate-gidalerroak" msgid "Complete onboarding and start using your account" msgstr "Osatu sartzea eta hasi zure kontua erabiltzen" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Osatu erronka" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Idatzi post berria" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Idatzi {0, plural, other {# karaktere}} gehienezko postak" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Idatzi erantzuna" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Bideoa konprimitzen..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Konfiguratu edukia iragazteko ezarpena kategoriarako: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "<0>Moderazio-ezarpenetan konfiguratuta." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Berretsi edukiaren hizkuntza-ezarpenak" msgid "Confirm delete account" msgstr "Berretsi kontua ezabatzea" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Egiaztatu zure adina:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Berretsi zure jaioteguna" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Berretsi zure jaioteguna" msgid "Confirmation code" msgstr "Baieztapen kodea" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Baieztapen Kodea" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Konektatzen..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "Konexio arazoa" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "Jarri harremanetan gure moderazio taldearekin" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Jarri laguntzarekin harremanetan" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "Jarri gurekin harremanetan" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Edukiak eta Media" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Edukiak eta media" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Edukiak eta Media" @@ -1977,7 +2069,8 @@ msgstr "Edukiak eta Media" msgid "Content Blocked" msgstr "Edukia Blokeatuta" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Eduki-iragazkiak" @@ -2006,10 +2099,12 @@ msgstr "Edukien Abisua" msgid "Content warnings" msgstr "Edukien abisuak" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Testuinguru-menuaren atzeko planoa, egin klik menua ixteko." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Jarraitu" msgid "Continue as {0} (currently signed in)" msgstr "Jarraitu {0} gisa (une honetan saioa hasita)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "Jarraitu haria" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Jarraitu haria..." @@ -2029,6 +2129,10 @@ msgstr "Jarraitu haria..." msgid "Continue to next step" msgstr "Jarraitu hurrengo urratsera" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "Elkarrizketa" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Kopiatua" msgid "Copied build version to clipboard" msgstr "Konpilazio bertsioa arbelean kopiatu da" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Eraikitze-bertsioa arbelean kopiatzen du" msgid "Copy" msgstr "Kopiatu" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "Kopiatu hala ere" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Kopiatu Aplikazioaren Pasahitza" @@ -2087,8 +2187,8 @@ msgstr "Kopiatu Aplikazioaren Pasahitza" msgid "Copy at:// URI" msgstr "Kopiatu at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Kopiatu egilearen DID" @@ -2120,10 +2220,10 @@ msgstr "Kopiatu Esteka" msgid "Copy link to list" msgstr "Kopiatu esteka zerrendara" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Kopiatu esteka postera" @@ -2136,18 +2236,18 @@ msgstr "Kopiatu esteka profilera" msgid "Copy link to starter pack" msgstr "Kopiatu abio multzoaren esteka" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Kopiatu mezuaren testua" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Kopiatu posta at:// URI" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Kopiatu postaren testua" @@ -2159,11 +2259,25 @@ msgstr "Kopiatu QR kodea" msgid "Copy TXT record value" msgstr "Kopiatu TXT erregistroaren balioa" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Copyright Politika" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "Ezin izan da feed pertsonalizatura konektatu" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "Ezin izan da feed zerbitzura konektatu" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "Ezin izan da profila aurkitu" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "Ezin izan da txata mututu" msgid "Could not process your video" msgstr "Ezin izan da zure bideoa prozesatu" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "Ezin izan dira aldaketak gorde: {0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "Ezin izan dira jakinarazpenen ezarpenak eguneratu" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Sortu" @@ -2195,7 +2317,7 @@ msgstr "Sortu QR kodea abio multzo baterako" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Sortu abio multzo bat" @@ -2205,21 +2327,22 @@ msgstr "Sortu niretzat abio multzo bat" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Sortu kontua" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Sortu Kontua" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Sortu kontu bat" @@ -2241,7 +2364,7 @@ msgstr "Sortu beste bat" msgid "Create new account" msgstr "Sortu kontu berria" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Sortu salaketa {0}rentzat" @@ -2268,7 +2391,7 @@ msgstr "Pertsonalizatua" msgid "Customization options" msgstr "Pertsonalizazio-aukerak" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Pertsonalizatu post honekin nork elkarreragin dezakeen." @@ -2278,12 +2401,12 @@ msgstr "Zure Bluesky esperientzia pertsonalizatzen du" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Iluna" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Iluna" @@ -2292,21 +2415,21 @@ msgstr "Iluna" msgid "Dark mode" msgstr "Modu iluna" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Gai iluna" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Jaiotze data" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Desaktibatu kontua" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Arazketa Moderazioa" @@ -2314,7 +2437,7 @@ msgstr "Arazketa Moderazioa" msgid "Debug panel" msgstr "Arazketa panela" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Lehenetsia" @@ -2322,8 +2445,8 @@ msgstr "Lehenetsia" msgid "Default icons" msgstr "Ikono lehenetsiak" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Ikono lehenetsiak" msgid "Delete" msgstr "Ezabatu" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Ezabatu kontua" @@ -2355,7 +2478,7 @@ msgstr "Aplikazioaren pasahitza ezabatu nahi duzu?" msgid "Delete chat" msgstr "Ezabatu txata" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Ezabatu txat-adierazpenaren erregistroa" @@ -2370,7 +2493,7 @@ msgstr "Ezabatu elkarrizketa" msgid "Delete Conversation" msgstr "Ezabatu Elkarrizketa" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Ezabatu niretzat" @@ -2378,11 +2501,11 @@ msgstr "Ezabatu niretzat" msgid "Delete list" msgstr "Ezabatu zerrenda" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Ezabatu mezua" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Ezabatu mezua niretzat" @@ -2390,9 +2513,9 @@ msgstr "Ezabatu mezua niretzat" msgid "Delete my account" msgstr "Ezabatu nire kontua" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Ezabatu posta" @@ -2409,11 +2532,11 @@ msgstr "Abio multzoa ezabatu nahi duzu?" msgid "Delete this list?" msgstr "Zerrenda hau ezabatu nahi duzu?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Post hau ezabatu nahi duzu?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Ezabatu da" @@ -2422,15 +2545,20 @@ msgstr "Ezabatu da" msgid "Deleted Account" msgstr "Ezabatutako Kontua" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "Ezabatutako zerrenda" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Ezabatutako posta." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Deskribapena" @@ -2447,12 +2575,12 @@ msgstr "Deskribapena luzeegia da. {DESCRIPTION_MAX_GRAPHEMES, plural, other {Geh msgid "Descriptive alt text" msgstr "Aukerazko testu deskribatzailea" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Kendu aipamena" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Postaren aipamena kendu?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Garatzaile modua gaituta" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Garatzaile aukerak" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Elkarrizketa: egokitu mezu honekin nork elkarreragin dezakeen" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Lausotu" @@ -2492,27 +2620,27 @@ msgstr "Desgaitu 2FA posta elektronikoa" msgid "Disable Email 2FA" msgstr "Desgaitu 2FA posta elektronikoa" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Desgaitu feedback haptikoa" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Desgaitu azpitituluak" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Desgaituta" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Baztertu" @@ -2520,11 +2648,11 @@ msgstr "Baztertu" msgid "Discard changes?" msgstr "Aldaketak baztertu?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Zirriborroa baztertu?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Posta baztertu?" @@ -2542,7 +2670,7 @@ msgstr "Aurkitu Feedak" msgid "Discover new custom feeds" msgstr "Aurkitu feed pertsonalizatu berriak" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Aurkitu Feed Berriak" @@ -2550,7 +2678,7 @@ msgstr "Aurkitu Feed Berriak" msgid "Dismiss" msgstr "Baztertu" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Baztertu errorea" @@ -2562,26 +2690,26 @@ msgstr "Baztertu hasteko gida" msgid "Dismiss interests" msgstr "Baztertu interesak" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "Baztertu mezua" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Baztertu atal hau" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Erakutsi aukerazko testu bereizgarri handiagoak" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Bistaratzeko izena" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Bistaratzeko Izena" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Bistaratzeko izena luzeegia da" @@ -2603,15 +2731,11 @@ msgstr "Ez aplikatu hitz mututu hau jarraitzen dituzun erabiltzaileei" msgid "Does not include nudity." msgstr "Ez du biluztasunik." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Ez da marratxo batekin hasten edo amaitzen" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Domeinua egiaztatu da!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Ez duzu koderik edo berri bat behar duzu? <0>Egin klik hemen." @@ -2619,6 +2743,15 @@ msgstr "Ez duzu koderik edo berri bat behar duzu? <0>Egin klik hemen." msgid "Don't see an email? <0>Click here to resend." msgstr "Ez duzu mezu elektronikorik ikusten? <0>Egin klik hemen berriro bidaltzeko." +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "Ez erakutsi berriro" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "Ez kezkatu! Mezu eta ezarpen guztiak gordeta daude eta heldua zarela egiaztatu ondoren eskuragarri egongo dira." + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "Kolpetxo bikoitza edo luze sakatu erreakzio bat gehitzeko" msgid "Double tap to close the dialog" msgstr "Sakatu birritan elkarrizketa-koadroa ixteko" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Kolpetxo bikoitza gogoko emateko" @@ -2673,7 +2806,7 @@ msgstr "Deskargatu Bluesky" msgid "Download CAR file" msgstr "Deskargatu CAR fitxategia" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Jausi irudiak gehitzeko" @@ -2689,18 +2822,10 @@ msgstr "adib. alice" msgid "e.g. Alice Lastname" msgstr "adib. Alice Abizena" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "adib. Alice Roberts" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "adib. alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "adib. Artista, txakur-zalea eta irakurle amorratua." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Adib. biluzi artistikoak." @@ -2725,10 +2850,11 @@ msgstr "adib. Iragarkiekin behin eta berriz erantzuten duten erabiltzaileak." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Kode bakoitzak behin funtzionatzen du. Aldian-aldian gonbidapen-kode gehiago jasoko dituzu." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Editatu" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Editatu" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Editatu abatarra" @@ -2749,12 +2875,12 @@ msgstr "Editatu Feedak" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Editatu irudia" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Editatu interakzio-ezarpenak" @@ -2776,33 +2902,33 @@ msgstr "Zuzeneko egoera editatu" msgid "Edit Moderation List" msgstr "Editatu Moderazio-Zerrenda" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Editatu Nire Feedak" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Editatu nire profila" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "Editatu {0}-ren jakinarazpenak" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Editatu Jendea" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Editatu posten interakzio-ezarpenak" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Editatu profila" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Editatu Profila" @@ -2814,19 +2940,11 @@ msgstr "Editatu abio multzoa" msgid "Edit User List" msgstr "Editatu Erabiltzaileen Zerrenda" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Editatu nork erantzun dezakeen" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Editatu zure bistaratzeko izena" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Editatu zure profileko deskribapena" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Editatu zure abio multzoa" @@ -2839,8 +2957,8 @@ msgstr "Hezkuntza" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "Edo zerrenda honen sortzaileak blokeatu zaitu edo zuk blokeatu duzu sortzailea." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "Posta elektronikoa" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "E-posta bidezko 2FA desgaituta" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "2FA posta elektronikoa gaituta" @@ -2865,10 +2983,6 @@ msgstr "Posta elektronikoa Birbidali" msgid "Email sent!" msgstr "Posta elektronikoa bidalia!" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "E-posta eguneratuta!" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "Helbide elektronikoaren egiaztapena osatu da!" @@ -2883,8 +2997,8 @@ msgstr "Txertatu HTML kodea" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Txertatu posta" @@ -2892,7 +3006,7 @@ msgstr "Txertatu posta" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Txertatu post hau zure webgunean. Kopiatu hurrengo kode zatia eta itsatsi zure webguneko HTML kodean." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Bideo erreproduzitzailea txertatua" @@ -2906,7 +3020,7 @@ msgstr "Gaitu" msgid "Enable {0} only" msgstr "Gaitu {0} soilik" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Gaitu helduentzako edukia" @@ -2919,16 +3033,20 @@ msgstr "Gaitu 2FA posta elektronikoa" msgid "Enable external media" msgstr "Gaitu kanpoko multimedia" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Gaitu multimedia-erreproduzitzaileak" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Gaitu lehentasunezko jakinarazpenak" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "Kontu baten jakinarazpenak gaitzeko, bisitatu haren profila eta sakatu <0>kanpai ikonoa <1/>." -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "Gaitu push jakinarazpenak" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Gaitu azpitituluak" @@ -2941,17 +3059,14 @@ msgstr "Gaitu iturri hau soilik" msgid "Enable trending topics" msgstr "Gaitu joera-gaiak" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Gaitu joera bideoak zure Aurkitu feedean" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Gaitu joera bideoak zure Aurkitu feedean." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Gaituta" @@ -2963,7 +3078,7 @@ msgstr "Feedaren amaiera" msgid "Ensure you have selected a language for each subtitle file." msgstr "Ziurtatu azpititulu-fitxategi bakoitzeko hizkuntza bat hautatu duzula." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Sartu pasahitz bat" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Sartu hitz edo etiketa bat" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "Sartu kodea" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Sartu Kodea" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Sartu pantaila osoan" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Sartu zure jaiotze data" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Sartu zure posta elektroniko helbidea" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Sartu zure helbide elektroniko berria behean." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Sartu zure pasahitza" @@ -3022,7 +3129,7 @@ msgstr "Sartu zure pasahitza" msgid "Enter your username and password" msgstr "Sartu zure erabiltzaile-izena eta pasahitza" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Pantaila osora sartzen da" @@ -3030,16 +3137,28 @@ msgstr "Pantaila osora sartzen da" msgid "Entertainment" msgstr "Entretenimendua" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Errorea" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "Errorea posta kargatzean" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "Errorea hobespena kargatzean" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "Errore mezua" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Errore bat gertatu da fitxategia gordetzean" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Errore bat gertatu da captcha erantzuna jasotzean." @@ -3047,27 +3166,34 @@ msgstr "Errore bat gertatu da captcha erantzuna jasotzean." msgid "Error:" msgstr "Errorea:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "Errorea: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Denek" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Denek erantzun dezakete" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Denek erantzun dezakete post honi." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Edonork" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "Beste guztia" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Baztertu jarraitzen dituzun erabiltzaileak" msgid "Excludes users you follow" msgstr "Jarraitzen dituzun erabiltzaileak baztertzen ditu" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Irten pantaila osotik" @@ -3106,24 +3232,28 @@ msgstr "Irudiaren ikuspegitik irteten da" msgid "Expand alt text" msgstr "Zabaldu aukerazko testua" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Zabaldu erabiltzaileen zerrenda" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Zabaldu edo tolestu erantzuten ari zaren post osoa" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "Zabaldu postaren testua" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Postaren testua zabaldu edo tolesten du" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "Erregistro batean ebaztea espero zen uri-a" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Esperimentala" @@ -3153,15 +3283,15 @@ msgstr "Esplizituak edo kezkagarriak izan daitezkeen multimediak." msgid "Explicit sexual images." msgstr "Sexu-irudi esplizituak." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "Arakatu" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Esportatu nire datuak" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Kanpoko Multimedia" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Kanpoko multimediak webguneek zuri eta zure gailuari buruzko informazioa biltzeko aukera izan dezake. Ez da informaziorik bidali edo eskatzen \"play\" botoia sakatu arte." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Kanpoko Multimedia Hobespenak" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "Ezin izan da txata onartu" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "Errorea emoji erreakzioa gehitzean" @@ -3211,8 +3341,8 @@ msgstr "Ezin izan da sortu aplikazioaren pasahitza. Mesedez, saiatu berriro." msgid "Failed to create conversation" msgstr "Ezin izan da elkarrizketa sortu" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Ezin izan da sortu abio multzoa" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "Ezin izan da txata ezabatu" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Ezin izan da mezua ezabatu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Ezin izan da posta ezabatu. Mesedez, saiatu berriro" @@ -3238,8 +3368,8 @@ msgstr "Ezin izan da posta ezabatu. Mesedez, saiatu berriro" msgid "Failed to delete starter pack" msgstr "Ezin izan da abio multzoa ezabatu" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "Ezin izan dira elkarrizketak kargatu" @@ -3250,14 +3380,32 @@ msgstr "Ezin izan dira elkarrizketak kargatu" msgid "Failed to load feeds preferences" msgstr "Ezin izan dira kargatu feeden hobespenak" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Ezin izan dira GIF-ak kargatu" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "Ezin izan dira jakinarazpenen ezarpenak kargatu." + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Ezin izan dira kargatu iraganeko mezuak" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "Ezin izan da hobespena kargatu." + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Ezin izan dira iradokitako feedak kargatu" msgid "Failed to load suggested follows" msgstr "Ezin izan dira kargatu iradokitako jarraipenak" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "Ezin izan dira eskaera guztiak irakurri gisa markatu" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Ezin izan da posta ainguratu" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "Errorea emoji errakzioa kentzerakoan" @@ -3291,15 +3439,11 @@ msgstr "Ezin izan da egiaztapena kendu" msgid "Failed to save image: {0}" msgstr "Ezin izan da irudia gorde: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Ezin izan dira gorde jakinarazpen-hobespenak. Mesedez, saiatu berriro" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "Ezin izan dira ezarpenak gorde. Mesedez, saiatu berriro." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "Ezin izan dira zure interesak gorde." @@ -3318,7 +3462,7 @@ msgstr "Ezin izan da posta elektronikoa bidali. Mesedez, saiatu berriro." msgid "Failed to submit appeal, please try again." msgstr "Ezin izan da apelazioa bidali. Mesedez, saiatu berriro." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Ezin izan da mututu/ez mututu haria. Mesedez, saiatu berriro" @@ -3335,7 +3479,11 @@ msgstr "Ezin izan da posta elektronikoa eguneratu. Mesedez, saiatu berriro." msgid "Failed to update feeds" msgstr "Ezin izan dira feedak eguneratu" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "Ezin izan da jakinarazpen-adierazpena eguneratu" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Ezin izan dira ezarpenak eguneratu" @@ -3354,15 +3502,23 @@ msgstr "Ezin izan da posta elektronikoa egiaztatu. Mesedez, saiatu berriro." msgid "Failed to verify handle. Please try again." msgstr "Ezin izan da handle-a egiaztatu. Mesedez, saiatu berriro." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Feeda" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "{0}-ren feeda" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "Feed sortzailea" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "Feed identifikatzailea" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Feed menua" @@ -3371,35 +3527,39 @@ msgstr "Feed menua" msgid "Feed toggle" msgstr "Feeda aktibatu/desaktibatu" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "Feeda ez dago erabilgarri" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Feedbacka" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Feedbacka bidalita!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Feedak" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Feedak erabiltzaileek kodetze esperientzia txiki batekin eraikitzen dituzten algoritmo pertsonalizatuak dira. <0/> informazio gehiago lortzeko." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Feedak eguneratuta!" @@ -3428,6 +3588,14 @@ msgstr "Iragazi bilaketa hizkuntzaren arabera" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Iragazi bilaketa hizkuntzaren arabera (oraingoa: {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "Iragazi nork aukera dezakeen zure jardueraren jakinarazpenak jasotzea" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "Iragazi noren jakinarazpenak jasotzen dituzun" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Amaitzen" @@ -3448,7 +3616,7 @@ msgstr "Aurkitu jarraitzeko jendea" msgid "Find posts, users, and feeds on Bluesky" msgstr "Aurkitu postak, erabiltzaileak eta feedak Bluesky-n" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Amaitu" @@ -3456,17 +3624,17 @@ msgstr "Amaitu" msgid "Fitness" msgstr "Sasoia" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Beltz laua" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Urdin laua" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Zuri laua" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Malgua" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Jarraitu" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Jarraitu {0}" @@ -3518,7 +3686,7 @@ msgstr "Jarraitu kontua" msgid "Follow all" msgstr "Jarraitu denak" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Jarraitu Bueltan" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Jarraitu Bueltan" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Jarraitua <0>{0}-gatik" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Jarraitua <0>{0}-gatik eta {1, plural, one {#-gatik} other {#-gatik}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Jarraitua <0>{0}-gatik eta <1>{1}-gatik" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Jarraitua <0>{0}-gatik, <1>{1}-gatik eta {2, plural, one {#-gatik} other {#-gatik}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Ezagutzen dituzun @{0}-ren jarraitzaileak" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Ezagutzen dituzun jarraitzaileak" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Jarraitzen" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Jarraitzen" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Jarraitzen {0}" @@ -3579,8 +3751,8 @@ msgstr "{handle}-ri jarraitzen" msgid "Following feed preferences" msgstr "Jarraitzen dituzun feeden hobespenak" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Jarraitzen dituzun Feeden Hobespenak" @@ -3592,11 +3764,11 @@ msgstr "Jarraitzen dizu" msgid "Follows You" msgstr "Jarraitzen Dizu" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Letra-tipoa" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Letra-tipo tamaina" @@ -3613,7 +3785,7 @@ msgstr "Segurtasun arrazoiengatik, baieztapen kode bat bidali beharko dugu zure msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Segurtasun arrazoiengatik, ezingo duzu hau berriro ikusi. Aplikazioaren pasahitza galtzen baduzu, berri bat sortu beharko duzu." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Esperientzia onena lortzeko, gaiaren letra-tipoa erabiltzea gomendatzen dizugu." @@ -3643,11 +3815,15 @@ msgstr "Ahaztuta?" msgid "Frequently Posts Unwanted Content" msgstr "Nahi ez den edukia maiz argitaratzen du" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "Nondik" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "@{sanitizedAuthor}-tik" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "<0/>-tik" @@ -3660,14 +3836,68 @@ msgstr "Galeria" msgid "Generate a starter pack" msgstr "Abio multzo bat sortu" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Laguntza" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "Jaso jakinarazpenak jendeak jarraitzen zaituenean." + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "Jaso jakinarazpenak jendeari berpostatu dituzun postak gustatzen zaizkionean." + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "Jaso jakinarazpenak jendeari zure postak gustatzen zaizkionean." + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "Jaso jakinarazpenak jendea aipatzen zaituenean." + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "Jaso jakinarazpenak jendeak zure postak aipatzen dituenean." + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "Jaso jakinarazpenak jendeak zure postak erantzuten dituenean." + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "Jaso jakinarazpenak jendeak zure berpostak berriro berpostatzen dituenean." + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "Jaso jakinarazpenak jendeak zure postak berpostatzen dituenean." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "Jaso jakinarazpenak post berriei buruz" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Jaso jakinarazpenak aukeratzen dituzun kontuetako post eta erantzunen inguruan." + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "Jaso {name}-ren post berrien jakinarazpenak" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "Jaso kontu honen jardueraren jakinarazpenak" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "Jaso jakinarazpena {name}-k posteatzen duenean" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "Jaso jakinarazpena norbaitek posteatzen duenean" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "Hasi" @@ -3688,14 +3918,16 @@ msgstr "Eman aurpegia zure profilari" msgid "Glaring violations of law or terms of service" msgstr "Legearen edo zerbitzu-baldintzen urraketa nabarmenak" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "Zuzenean Jarri" msgid "Go live for" msgstr "Zuzenera joan" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "Joan {firstAuthorName}-ren profilera" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "Joan kontuaren ezarpenetara" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Joan {0}rekin elkarrizketara" @@ -3779,8 +4017,8 @@ msgstr "Multimedia Grafikoa" msgid "Half way there!" msgstr "Bide erdia!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Handle-a" @@ -3797,7 +4035,7 @@ msgstr "Handle aldatua!" msgid "Handle too long. Please try a shorter one." msgstr "Handle luzeegia. Mesedez, saiatu laburrago batekin." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Haptikoak" @@ -3806,7 +4044,7 @@ msgstr "Haptikoak" msgid "Harassment, trolling, or intolerance" msgstr "Jazarpena, troleoa edo intolerantzia" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Traola" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "{tag} traola" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "Baduzu koderik? <0>Egin klik hemen." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Arazoak dituzu?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Laguntza" @@ -3839,8 +4077,13 @@ msgstr "Lagundu jendeari jakiten ez zarela bot bat argazki bat kargatuz edo abat msgid "Here is your app password!" msgstr "Hemen duzu zure aplikazioaren pasahitza!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "Kaixo 👋" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Ezkutua" @@ -3848,16 +4091,16 @@ msgstr "Ezkutua" msgid "Hidden by your moderation settings." msgstr "Ezkutatuta zure moderazio doikuntzagatik." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Ezkutuko zerrenda" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Ezkutuko zerrenda" msgid "Hide" msgstr "Ezkutatu" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Ezkutatu" @@ -3875,18 +4118,18 @@ msgstr "Ezkutatu" msgid "Hide customization options" msgstr "Ezkutatu pertsonalizazio-aukerak" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Ezkutatu posta niretzat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Ezkutatu erantzuna guztientzako" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Ezkutatu erantzuna niretzat" @@ -3894,12 +4137,12 @@ msgstr "Ezkutatu erantzuna niretzat" msgid "Hide this card" msgstr "Ezkutatu txartel hau" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Ezkutatu post hau?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Ezkutatu erantzun hau?" @@ -3913,11 +4156,11 @@ msgstr "Ezkutatu joera-gaiak" msgid "Hide trending topics?" msgstr "Joera-gaiak ezkutatu?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Joera-bideoak ezkutatu?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Ezkutatu erabiltzaile zerrenda" @@ -3926,32 +4169,32 @@ msgstr "Ezkutatu erabiltzaile zerrenda" msgid "Hide verification badges" msgstr "Ezkutatu egiaztapen-bereizgarriak" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Edukia ezkutatzen du" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Mmm, arazoren bat gertatu da feed zerbitzariarekin harremanetan jartzean. Mesedez, jakinarazi feedaren jabeari arazo honen berri." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Mmm, feed zerbitzaria gaizki konfiguratuta dagoela dirudi. Mesedez, jakinarazi feedaren jabeari arazo honen berri." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Mmm, feed zerbitzaria konexiorik gabe dagoela dirudi. Mesedez, jakinarazi feedaren jabeari arazo honen berri." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Mmm, feed zerbitzariak erantzun txarra eman du. Mesedez, jakinarazi feedaren jabeari arazo honen berri." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Mmm, arazoak ditugu feed hau aurkitzeko. Baliteke ezabatu izana." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Mmmmm, badirudi arazoak ditugula datu hauek kargatzeko. Ikus behean xehetasun gehiagorako. Arazo honek jarraitzen badu, jar zaitez gurekin harremanetan." @@ -3959,15 +4202,15 @@ msgstr "Mmmmm, badirudi arazoak ditugula datu hauek kargatzeko. Ikus behean xehe msgid "Hmmmm, we couldn't load that moderation service." msgstr "Mmmmm, ezin izan dugu kargatu moderazio-zerbitzu hori." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Eutsi! Pixkanaka bideorako sarbidea ematen ari gara, eta ilaran zain zaude oraindik. Begiratu berriro laster!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Hasiera" @@ -3984,10 +4227,10 @@ msgstr "Hostatze hornitzailea" msgid "Hot" msgstr "Pil-pilean" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Erantzun berrienak lehenik" @@ -3996,10 +4239,6 @@ msgstr "Erantzun berrienak lehenik" msgid "How should we open this link?" msgstr "Nola ireki behar dugu esteka hau?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Ulertzen dut" msgid "If alt text is long, toggles alt text expanded state" msgstr "Autazko testua luzea bada, autazko testuaren hedapen egoera aldatzen du" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Zure herrialdeko legeen arabera oraindik heldua ez bazara, zure gurasoek edo legezko tutoreek Baldintza hauek irakurri beharko dituzte zure izenean." @@ -4031,11 +4270,11 @@ msgstr "Zerrenda hau ezabatzen baduzu, ezin izango duzu berreskuratu." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Zure domeinua baduzu, hori erabil dezakezu handle gisa. Honek zure nortasuna egiaztatzeko aukera ematen dizu. <0>Lortu informazio gehiago hemen." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "Zure posta elektronikoa eguneratu behar baduzu, <0>egin klik hemen." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Post hau kentzen baduzu, ezin izango duzu berreskuratu." @@ -4047,6 +4286,10 @@ msgstr "Zure helbide elektronikoa eguneratzen baduzu, posta elektronikoaren 2FA msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Pasahitza aldatu nahi baduzu, kode bat bidaliko dizugu zure kontua dela egiaztatzeko." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "Zure kontuaren jardueraren jakinarazpenak nork jaso ditzakeen mugatu nahi baduzu, hau alda dezakezu <0>Ezarpenak → Pribatutasuna eta Segurtasuna atalean." + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "Garatzailea bazara, zure zerbitzari propioa osta dezakezu." @@ -4091,13 +4334,41 @@ msgstr "Identitate faltsua edo identitateari buruzko erreklamazio faltsua edo af msgid "Impersonation, misinformation, or false claims" msgstr "Identitate faltsua, desinformazioa edo erreklamazio faltsuak" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "Aplikazioan" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "Jakinarazpenak aplikazioan" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "Aplikazioan, Guztiontzat" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "Aplikazioan, Jarraitzen duzun jendea" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "Aplikazioan, Push" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "Aplikazioan, Push, Guztiontzat" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "Aplikazioan, Push, Jarraitzen duzun jendea" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Mezu desegokiak edo esteka esplizituak" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "Sarrera-ontzia hutsik!" @@ -4105,7 +4376,7 @@ msgstr "Sarrera-ontzia hutsik!" msgid "Incorrect username or password" msgstr "Erabiltzaile-izen edo pasahitz baliogabea" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Sartu zure posta elektronikora bidalitako kodea pasahitza berrezartzeko" @@ -4113,7 +4384,7 @@ msgstr "Sartu zure posta elektronikora bidalitako kodea pasahitza berrezartzeko" msgid "Input confirmation code for account deletion" msgstr "Sartu baieztapen kodea kontua ezabatzeko" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Idatzi pasahitz berria" @@ -4129,10 +4400,14 @@ msgstr "Sartu posta elektronikoz bidali zaizun kodea" msgid "Interaction limited" msgstr "Elkarrekintza mugatua" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Interakzio ezarpenak" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "Jarduera-jakinarazpenak aurkeztea" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "2FA baieztapen kode baliogabea." msgid "Invalid handle. Please try a different one." msgstr "Handle baliogabea. Mesedez, saiatu beste bat." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Post erregistro baliogabea edo onartzen ez duena" @@ -4158,7 +4433,7 @@ msgstr "Egiaztapen-kode baliogabea" msgid "Invite a Friend" msgstr "Gonbidatu Lagun bat" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Gonbidapen kodea" @@ -4186,15 +4461,15 @@ msgstr "Gonbidatu lagunak zure gogoko feedak eta jendea jarraitzera" msgid "Invites, but personal" msgstr "Gonbidapenak, baina pertsonalak" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Zuzena da" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Oraintxe bakarrik zaude! Gehitu jende gehiago zure abio multzoari goiko bilaketan." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "Lan ID: {0}" @@ -4220,11 +4495,27 @@ msgstr "Bat egin elkarrizketan" msgid "Journalism" msgstr "Kazetaritza" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "Mantendu nazazu informatuta" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "KWS Pribatutasun Politika" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "KWS Erabilera Baldintzak" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "KWS webgunea" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "{0}-k etiketatua." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Egileak etiketatua." @@ -4237,7 +4528,7 @@ msgstr "Etiketak" msgid "Labels added" msgstr "Etiketak gehitu dira" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Etiketak erabiltzaileei eta edukiei buruzko oharrak dira. Ezkutatzeko, abisatzeko eta sarea sailkatzeko erabil daitezke." @@ -4253,22 +4544,30 @@ msgstr "Etiketak zure edukian" msgid "Language selection" msgstr "Hizkuntza hautatzea" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Hizkuntza Ezarpenak" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Hizkuntzak" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Handiagoa" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "Azkenekoz duela {timeAgo} hasi zen" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "Azkenekoz orain hasi da" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Azkena" @@ -4282,7 +4581,6 @@ msgstr "gehiago ikasi" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "Ikasi gehiago" @@ -4290,6 +4588,10 @@ msgstr "Ikasi gehiago" msgid "Learn More" msgstr "Gehiago Ikasi" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "Adinaren bermeari buruz gehiago ikasi" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Gehiago ikasi Bluesky-ri buruz" @@ -4298,15 +4600,23 @@ msgstr "Gehiago ikasi Bluesky-ri buruz" msgid "Learn more about self hosting your PDS." msgstr "Gehiago ikasi zure PDS auto-hostatzeari buruz." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "Gehiago ikasi eduki honi aplikatutako moderazioari buruz" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Gehiago ikasi eduki honi aplikatutako moderazioari buruz." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "Aldaketa hauei buruz gehiago jakiteko eta zure iritziak gurekin nola partekatu jakiteko, <0>gure blog-eko argitalpena irakurri." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Aldaketa hauei buruz gehiago jakiteko eta zure iritziak gurekin nola partekatu jakiteko, gure blog-eko argitalpena irakurri." + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Gehiago ikasi abisu honi buruz" @@ -4316,12 +4626,16 @@ msgstr "Gehiago ikasi abisu honi buruz" msgid "Learn more about verification on Bluesky" msgstr "Ikasi gehiago Bluesky-n egiaztapenari buruz" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Gehiago ikasi Bluesky-n publikoa denari buruz." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "Informazio gehiago zure <0>kontuaren ezarpenetan." + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Ikasi gehiago." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Utzi elkarrizketa" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Utzi guztiak markatu gabe edozein hizkuntza ikusteko." +msgid "Leave them all unselected to see any language." +msgstr "Utzi guztiak aukeratu gabe edozein hizkuntza ikusteko." -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Bluesky uzten" @@ -4370,7 +4685,7 @@ msgstr "Goazen!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Argia" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Gogoko" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Gogoko ({0, plural, one {gogoko #} other {# gogoko}})" @@ -4397,6 +4712,10 @@ msgstr "10 post gogoko egin" msgid "Like 10 posts to train the Discover feed" msgstr "Aurkitu feeda trebatzeko 10 post gogoko egin" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "Gustoko jakinarazpenak" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Feed hau gogoko dut" @@ -4405,8 +4724,8 @@ msgstr "Feed hau gogoko dut" msgid "Like this labeler" msgstr "Etiketatzaile hau gogoko dut" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Gogoko du" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Gogoko Du" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Gogoko du {0, plural, one {# erabiltzaileak} other {# erabiltzaileek}}" @@ -4428,20 +4747,36 @@ msgstr "Gogoko du {0, plural, one {# erabiltzaileak} other {# erabiltzaileek}}" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Gogoko du {likeCount, plural, one {# erabiltzaileak} other {# erabiltzaileek}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Gogoko" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "Zure berposten gustokoak" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "Zure berpost jakinarazpenen gustokoak" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Gogoko post honetan" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Lineala" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Zerrenda" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Zerrenda blokeatuta" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "{0}-ren Zerrenda" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "<0/>-ren zerrenda" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Zure zerrenda" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "Zerrenda sortzailea" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Zerrenda desmutututa" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Zerrendak" @@ -4537,7 +4876,7 @@ msgstr "Kargatu gehiago" msgid "Load more suggested feeds" msgstr "Kargatu iradokitako feed gehiago" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Kargatu jakinarazpen berriak" @@ -4552,11 +4891,11 @@ msgstr "Kargatu post berriak" msgid "Loading..." msgstr "Kargatzen..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Erregistroa" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Saioa amaitutako ikusgarritasuna" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "@sawaratsuki.bsky.social-ren logotipoa" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "<0>@sawaratsuki.bsky.social-ren logotipoa" @@ -4573,7 +4912,7 @@ msgstr "<0>@sawaratsuki.bsky.social-ren logotipoa" msgid "Long press to open tag menu for #{tag}" msgstr "Luze sakatu #{tag} etiketa-menua irekitzeko" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "XXXXX-XXXX itxura du" @@ -4597,7 +4936,7 @@ msgstr "Egin doikuntzak zure kontuko posta elektronikoaren ezarpenetan" msgid "Make one for me" msgstr "Egin bat niretzat" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Ziurtatu hori dela joan nahi duzun tokia!" @@ -4606,7 +4945,7 @@ msgstr "Ziurtatu hori dela joan nahi duzun tokia!" msgid "Manage saved feeds" msgstr "Kudeatu gordetako feedak" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "Kudeatu egiaztapen-ezarpenak" @@ -4614,9 +4953,9 @@ msgstr "Kudeatu egiaztapen-ezarpenak" msgid "Manage your muted words and tags" msgstr "Kudeatu mutututa dauden hitzak eta etiketak" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "Markatu denak irakurri gisa" @@ -4625,15 +4964,13 @@ msgstr "Markatu denak irakurri gisa" msgid "Mark as read" msgstr "Markatu irakurri gisa" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "Denak irakurri gisa markatuta" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "Agian beranduago" @@ -4645,19 +4982,26 @@ msgstr "Multimedia" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Publiko batzuentzat kezkagarriak edo desegokiak izan daitezkeen multimediak." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "Aipamen jakinarazpenak" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "aipatutako erabiltzaileak" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Aipatutako erabiltzaileak" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Aipamenak" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Menua" @@ -4665,7 +5009,7 @@ msgstr "Menua" msgid "Message {0}" msgstr "Mezua {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Mezua ezabatuta" @@ -4674,11 +5018,11 @@ msgstr "Mezua ezabatuta" msgid "Message deleted" msgstr "Mezua ezabatuta" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "@{0}-ren mezua: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Zerbitzariaren mezua: {0}" @@ -4691,19 +5035,23 @@ msgstr "Mezua sartzeko eremua" msgid "Message is too long" msgstr "Mezua luzeegia da" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "Mezuaren aukerak" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Mezuak" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Gauerdia" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "Hainbat jakinarazpen" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Kontu Engainagarria" msgid "Misleading Post" msgstr "Post engainagarria" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderazioa" @@ -4725,17 +5073,17 @@ msgstr "Moderazioa" msgid "Moderation details" msgstr "Moderazio xehetasunak" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "{0}-ren moderazio zerrenda" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "<0/>-ren moderazio zerrenda" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Zure moderazio zerrenda" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Moderazio-zerrenda eguneratuta" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Moderazio zerrendak" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Moderazio Zerrendak" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "moderazio ezarpenak" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Moderazio-egoerak" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Moderazio tresnak" @@ -4775,7 +5123,7 @@ msgstr "Moderazio tresnak" msgid "Moderator has chosen to set a general warning on the content." msgstr "Moderatzaileak edukiari buruzko abisu orokor bat ezartzea aukeratu du." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Gehiago" @@ -4790,13 +5138,13 @@ msgstr "Feed gehiago" msgid "More options" msgstr "Aukera gehiago" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Gogokoenak lehenengo" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Erantzun gogokoenak lehenengo" @@ -4808,8 +5156,8 @@ msgstr "Pelikulak" msgid "Music" msgstr "Musika" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Mututu" @@ -4819,8 +5167,8 @@ msgstr "Mututu" msgid "Mute {tag}" msgstr "Mututu {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Mututu hitz hau etiketetan soilik" msgid "Mute this word until you unmute it" msgstr "Mututu hitz hau zuk mututu gabe utzi arte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Mututu haria" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Mututu hitzak eta etiketak" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Mutututako kontuak" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Mutututako Kontuak" @@ -4898,7 +5246,7 @@ msgstr "Mutututako kontuei postak kendu zaizkie zure feedetatik eta jakinarazpen msgid "Muted by \"{0}\"" msgstr "\"{0}\"-k mututua" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Mutututako hitzak eta etiketak" @@ -4911,7 +5259,7 @@ msgstr "Mututzea pribatua da. Mutututako kontuek zurekin elkarreragin dezakete, msgid "My Birthday" msgstr "Nire Urtebetetzea" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Nire Feedak" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Natura" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Nabigatu {0}-ra" @@ -4958,11 +5306,11 @@ msgstr "Hurrengo pantailara nabigatzen da" msgid "Navigates to your profile" msgstr "Zure profilera nabigatzen du" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Aldatu behar duzu?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "Copyright urraketa, eskaera legal edo araudi-betetze arazo baten berri eman behar duzu?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Copyright-urraketa baten berri eman behar al duzu?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Berria" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "{firstAuthorLink}-rena {postsCount, plural, one {post berria} other {post berriak}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "{firstAuthorName}-ren {postsCount, plural, one {post berria} other {post berriak}}" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Txat berria" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "E-posta helbide berria" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "Ezaugarri Berria" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "Jarraitzaile berrien jakinarazpenak" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "Jarraitzaile berriak" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Mezu berriak" msgid "New Moderation List" msgstr "Moderazio Zerrenda berria" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Pasahitz berria" @@ -5029,7 +5396,7 @@ msgstr "Pasahitz Berria" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Post berria" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Post Berria" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}}-ren post berriak" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}}-ren post berriak" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Erabiltzaileen berriaren informazio elkarrizketa-koadroa" @@ -5054,10 +5429,14 @@ msgstr "Erabiltzaileen berriaren informazio elkarrizketa-koadroa" msgid "New User List" msgstr "Erabiltzaile Zerrenda berria" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Erantzun berrienak lehenengo" @@ -5071,15 +5450,15 @@ msgstr "Berriak" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "DNS Panelik gabe" msgid "No expiry set" msgstr "Iraungitze-datarik ez" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Ez da aurkitu GIF aipagarririk. Baliteke Tenor-ekin arazoren bat egotea." @@ -5119,32 +5498,35 @@ msgstr "Irudirik ez" msgid "No likes yet" msgstr "Ez dago gogokorik oraindik" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Jada ez da {0} jarraitzen" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "Ezin da {MAX_SERVICE_HANDLE_LENGTH, plural, other {# karaktere}} baino luzeagoa izan" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Oraindik ez dago mezurik" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Oraindik ez dago jakinarazpenik!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Inor ez" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Egileak beste inork ezin du mezu hau aipatu." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "Ez dago postik hemen" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Oraindik ez dago postik." @@ -5171,7 +5553,7 @@ msgstr "Ez dago emaitzarik" msgid "No results for \"{0}\"." msgstr "Emaitzarik ez honentzat: \"{0}\"." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Ez da emaitzarik aurkitu" @@ -5179,9 +5561,9 @@ msgstr "Ez da emaitzarik aurkitu" msgid "No results found for \"{query}\"" msgstr "Ez da emaitzarik aurkitu \"{query}\"-rentzat" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Ez da emaitzarik aurkitu {query}-rentzat" @@ -5189,7 +5571,7 @@ msgstr "Ez da emaitzarik aurkitu {query}-rentzat" msgid "No results." msgstr "Ez dago emaitzarik." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Ez da aurkitu \"{search}\" bilaketaren emaitzarik." @@ -5198,7 +5580,7 @@ msgstr "Ez da aurkitu \"{search}\" bilaketaren emaitzarik." msgid "No thanks" msgstr "Ez, eskerrik asko" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Inor" @@ -5223,59 +5605,76 @@ msgstr "Ez da inor aurkitu. Saiatu beste norbait bilatzen." msgid "Non-sexual Nudity" msgstr "Biluztasun ez sexuala" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "Bat ere ez" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "Ez dio jarraitzen zuk jarraitzen diozun inork" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Ez da aurkitu" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Partekatzeari buruzko oharra" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Oharra: Bluesky sare ireki eta publikoa da. Ezarpen honek zure edukiaren ikusgarritasuna mugatzen du Bluesky aplikazioan eta webgunean, eta baliteke beste aplikazio batzuek ezarpen hau ez errespetatzea. Baliteke zure edukia saioa amaitutako erabiltzaileei erakustea beste aplikazio eta webgune batzuek." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "Oharra: Post hau saioa hasi duten erabiltzaileentzat bakarrik ikus daiteke." + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Hemen ezer ez" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Jakinarazpen-iragazkiak" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Jakinarazpen-ezarpenak" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Jakinarazpen-Ezarpenak" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Jakinarazpen soinuak" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Jakinarazpen Soinuak" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Jakinarazpenak" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "Beste guztiaren jakinarazpenak, adibidez, norbait zure abio-multzo baten bidez sartzen denean." + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "orain" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Biluztasuna edo helduentzako edukia ez dago horrela etiketaturik" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Itzalita" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Ai ez!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "Ados" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Ados" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Erantzun zaharrenak lehenik" @@ -5331,19 +5736,19 @@ msgstr "Erantzun zaharrenak lehenik" msgid "on<0><1/><2><3/>" msgstr "<0><1/><2><3/>-n" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Sartzea berrezarri" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "GIF bati edo gehiagori aukerazko testua falta zaio." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Irudi bati edo gehiagori aukerazko testua falta zaio." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Bideo bati edo gehiagori aukerazko testua falta zaio." @@ -5351,13 +5756,15 @@ msgstr "Bideo bati edo gehiagori aukerazko testua falta zaio." msgid "Only .jpg and .png files are supported" msgstr ".jpg eta .png fitxategiak soilik onartzen dira" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "{0}-k bakarrik erantzun dezake." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Letrak, zenbakiak eta marratxoak bakarrik" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "Jarraitzen ditudan jarraitzaileak bakarrik" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Irudi-fitxategiak soilik onartzen dira" msgid "Only WebVTT (.vtt) files are supported" msgstr "WebVTT (.vtt) fitxategiak soilik onartzen dira" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Arazoren bat izan da!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Ups!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Ireki marrazki menua" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Ireki emoji-hautatzailea" @@ -5416,7 +5822,7 @@ msgstr "Ireki feed aukeren menua" msgid "Open full emoji list" msgstr "Ireki emoji zerrenda osoa" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Ireki esteka {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Ireki esteka {niceUrl}" msgid "Open message options" msgstr "Ireki mezuen aukerak" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Ireki moderazioaren arazketa orria" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Ireki mutututako hitzen eta etiketen ezarpenak" @@ -5453,16 +5859,16 @@ msgstr "Ireki partekatzeko menua" msgid "Open starter pack menu" msgstr "Ireki abio multzoaren menua" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Ireki ipuin liburuaren orria" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Ireki sistemaren erregistroa" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "{numItems} aukerak irekitzen ditu" @@ -5490,11 +5896,11 @@ msgstr "Kamera irekitzen du gailuan" msgid "Opens captions and alt text dialog" msgstr "Azpidatzi eta aukerazko testuen elkarrizketa-koadroa irekitzen du" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Handle aldaketa elkarrizketa-koadroa irekitzen du" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Konpositorea irekitzen du" @@ -5502,7 +5908,7 @@ msgstr "Konpositorea irekitzen du" msgid "Opens device photo gallery" msgstr "Gailuaren argazki galeria irekitzen du" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Emoji-hautatzailea irekitzen du" @@ -5520,15 +5926,19 @@ msgstr "Fluxua irekitzen du lehendik duzun Bluesky kontuan saioa hasteko" msgid "Opens GIF select dialog" msgstr "GIF hautatzeko elkarrizketa-koadroa irekitzen du" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Laguntza-zerbitzua arakatzailean irekitzen du" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "{0} esteka irekitzen du" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Gonbidapen kodeen zerrenda irekitzen du" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "Zuzeneko egoeraren elkarrizketa-koadroa irekitzen du" @@ -5536,12 +5946,8 @@ msgstr "Zuzeneko egoeraren elkarrizketa-koadroa irekitzen du" msgid "Opens password reset form" msgstr "Pasahitza berrezartzeko formularioa irekitzen du" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Estekatutako webgunea irekitzen du" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Profil hau irekitzen du" @@ -5558,7 +5964,7 @@ msgstr "Aukeran, eman informazio gehigarria behean:" msgid "Options:" msgstr "Aukerak:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Edo konbinatu aukera hauek:" @@ -5600,6 +6006,10 @@ msgstr "Beste kontu bat" msgid "Other..." msgstr "Beste bat..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "Gure blogeko argitalpena" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "Gure moderazio taldeak zure salaketa jaso du." @@ -5608,7 +6018,7 @@ msgstr "Gure moderazio taldeak zure salaketa jaso du." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Gure moderatzaileek salaketak berrikusi dituzte eta Bluesky-ko txatetarako sarbidea desgaitzea erabaki dute." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Orria ez da aurkitu" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Orria Ez da Aurkitu" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Pasahitza eguneratu da" msgid "Password updated!" msgstr "Pasahitza eguneratuta!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Pausa" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Pausatu bideoa" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Jendea" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "@{0}-k jarraitzen duen jendea" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "@{0}-ri jarraitzen dion jendea" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "Jarraitzen ditudan pertsonak" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "Ukatu egin da zure argazki liburutegira sartzeko baimena. Mesedez, gaitu zure sistemaren ezarpenetan." @@ -5704,12 +6119,12 @@ msgstr "Ainguratu hasierara" msgid "Pin to Home" msgstr "Ainguratu Hasierara" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Ainguratu zure profilera" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Ainguratua" @@ -5718,7 +6133,7 @@ msgstr "Ainguratua" msgid "Pinned {0} to Home" msgstr "{0} Hasierara ainguratua" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Ainguratutako Feedak" @@ -5726,38 +6141,38 @@ msgstr "Ainguratutako Feedak" msgid "Pinned to your feeds" msgstr "Ainguratua zure feedetara" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Erreproduzitu" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Erreproduzitu {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Erreproduzitu bideoa" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Erreproduzitu Bideoa" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "GIF-a erreproduzitu edo pausatzen du" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Bideoa erreproduzitu edo pausatzen du" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "GIF-a erreproduzitzen du" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Bideoa erreproduzitzen du" @@ -5765,12 +6180,16 @@ msgstr "Bideoa erreproduzitzen du" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "Gehitu posteatzen ari zaren multimediari dagozkion eduki-abisuak." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "Mesedez, begiratu zure posta elektronikoaren sarrera-ontzia argibide gehiago lortzeko. Minutu bat edo bi behar izan daitezke iristeko." + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Mesedez, zure handle-a aukeratu" #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Mesedez, zure pasahitza aukeratu" @@ -5782,7 +6201,8 @@ msgstr "Mesedez, egin klik bidali dizugun mezu elektronikoan dagoen estekan zure msgid "Please complete the verification captcha." msgstr "Mesedez, bete egiaztapen-captcha." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Egiaztatu zure e-posta helbidea zuzen idatzi duzula." @@ -5804,6 +6224,7 @@ msgstr "Mesedez, sartu izen esklusibo bat aplikazio honen pasahitzarentzat edo e msgid "Please enter a valid code." msgstr "Mesedez, sartu baliozko kode bat." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "Mesedez, sartu baliozko helbide elektroniko bat." @@ -5812,7 +6233,11 @@ msgstr "Mesedez, sartu baliozko helbide elektroniko bat." msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Mesedez, idatzi baliozko hitz, etiketa edo esaldi bat mututzeko" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "Mesedez, sartu baliozko eta ez-aldi baterako helbide elektroniko bat. Baliteke etorkizunean helbide elektroniko honetara sartu behar izatea." + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "Mesedez, sartu behean <0>{0} helbidera bidali dugun kodea." @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "Mesedez, sartu zure aurreko helbide elektronikora bidali dizugun segurtasun-kodea." #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Mesedez, sartu zure helbide elektronikoa." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Mesedez, sartu zure gonbidapen kodea." @@ -5853,6 +6278,19 @@ msgstr "Mesedez, azaldu zergatik uste duzun etiketa hau gaizki aplikatu duela {0 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Mesedez, azaldu zergatik uste duzun zure txatak gaizki desgaitu zirela" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "Mesedez, itzuli edo aktibatu elementu hau, eduki aktiboaren hasierara itzultzeko." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "Mesedez, eman moderatzaileek zure Adinaren Bermearen egoera behar bezala ebaluatzeko behar dituzten xehetasun gehigarri guztiak." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "Mesedez, aukeratu hizkuntza bat" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "Mesedez, aukeratu moderazio zerbitzu bat" @@ -5870,9 +6308,9 @@ msgstr "Hasi saioa @{0} gisa" msgid "Please verify your email" msgstr "Mesedez, egiazttu zure helbide elektronikoa" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Mesedez, Egiaztatu Zure Posta Elektronikoa" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "Mesedez, idatzi zure mezua jarraian:" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Politika" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Posteatu" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Posteatu" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Posteatu" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Posteatu Dena" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "Post blokeatuta" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "{0}-ren posta" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "@{0}-ren posta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Posta ezabatuta" @@ -5919,11 +6362,14 @@ msgstr "Posta ezabatuta" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Ezin izan da posta kargatu. Egiaztatu Interneteko konexioa eta saiatu berriro." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "Posta ezabatu da" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Post ezkutua" @@ -5937,11 +6383,11 @@ msgstr "Post Ezkutua Mutututako Hitz batengatik" msgid "Post Hidden by You" msgstr "Zuk Ezkututako Posta" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Postaren elkarrekintza-ezarpenak" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Postaren Interakzio-Ezarpenak" @@ -5954,8 +6400,10 @@ msgstr "Postaren hizkuntza" msgid "Post Languages" msgstr "Postaren Hizkuntzak" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Posta ez da aurkitu" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Postaren aingura kendu da" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Postak" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Postak mututu daitezke testuaren, etiketen edo bietan oinarrituta. Post askotan agertzen diren hitz arruntak saihestea gomendatzen dugu, postik ez erakustea eragin baitezake." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Post ezkutuak" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Engainagarria Izan Daitekeen Esteka" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "Postak, Erantzunak" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Hobespena gorde da" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "Engainagarria izan daitekeen esteka" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "Engainagarria izan daitekeen esteka abisua" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Sakatu berriro konektatzen saiatzeko" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Sakatu berriro saiatzeko" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Sakatu zuk ere jarraitzen duzun kontu honen jarraitzaileak ikusteko" @@ -6015,40 +6469,46 @@ msgstr "Aurreko irudia" msgid "Primary Language" msgstr "Lehen Hizkuntza" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Lehenetsi zure Jarraipenak" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Lehentasunezko jakinarazpenak" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Pribatutasuna" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Pribatutasuna eta segurtasuna" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Pribatutasuna eta Segurtasuna" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "Pribatutasun eta Segurtasun ezarpenak" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Pribatutasun Politika" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Bideoa prozesatzen..." @@ -6062,15 +6522,14 @@ msgstr "Prozesatzen..." msgid "profile" msgstr "profila" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Profila" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Profila eguneratu da" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Feedak gidatzeko erabil daitezkeen zerrenda publikoak eta partekagarriak." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "Argitaratu posta" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "Argitaratu postak" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "Argitaratu erantzunak" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "Argitaratu erantzuna" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "Push" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "Push jakinarazpenak" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "Push, Guztiontzat" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "Push, Jarraitzen duzun jendea" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "QR kodea zure arbelean kopiatu da!" @@ -6119,44 +6594,52 @@ msgstr "QR kodea deskargatu da!" msgid "QR code saved to your camera roll!" msgstr "QR kodea gorde da zure kameran!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "Aipamen jakinarazpenak" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Posta aipatu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "Aipatutako posta berriro erantsi da" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "Aipatutako posta behar bezala kendu da" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Post aipamenak desgaituta daude" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Aipamen ezarpenak" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Aipamenak" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Post honen aipamenak" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Ausazko (\"Poster-en erruleta\" bezala ezagutua)" @@ -6164,8 +6647,8 @@ msgstr "Ausazko (\"Poster-en erruleta\" bezala ezagutua)" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Saiakera muga gainditu da. Gehiegitan saiatu zara handle-a aldatzen denbora laburrean. Mesedez, itxaron minutu bat berriro saiatu aurretik." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Erantsi berriro aipamena" @@ -6177,30 +6660,42 @@ msgstr "Erreakzionatu {emoji}-rekin" msgid "Reactivate your account" msgstr "Berriz aktibatu zure kontua" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "Irakurri {0} {1, plural, one {erantzun} other {erantzun}} gehiago" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Irakurri blogeko posta" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Irakurri gutxiago" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Irakurri gehiago" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "Irakurri erantzun gehiago" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "Irakurri gure blogeko argitalpena" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Irakurri Bluesky bloga" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Irakurri Bluesky Pribatutasun Politika" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Irakurri Bluesky Zerbitzu-Baldintzak" @@ -6213,6 +6708,14 @@ msgstr "Apelazio arrazoia" msgid "Reason:" msgstr "Arrazoia:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "Jaso aplikazio barruko jakinarazpenak" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "Jaso push jakinarazpenak" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Azken Bilaketak" @@ -6234,8 +6737,8 @@ msgstr "Baztertu" msgid "Reject chat request" msgstr "Baztertu txateatzeko eskaera" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Berriz kargatu elkarrizketak" @@ -6244,10 +6747,9 @@ msgstr "Berriz kargatu elkarrizketak" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Kendu" @@ -6259,17 +6761,17 @@ msgstr "Kendu {displayName} abio multzotik" msgid "Remove {historyItem}" msgstr "Kendu {historyItem}" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Kendu kontua" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Kendu eranskina" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Kendu Abatarra" @@ -6284,24 +6786,22 @@ msgstr "Kendu kapsulatzea" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Kendu feeda" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Feeda kendu?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Kendu nire feedetatik" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Sarrera azkarretik kendu?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "Kendu feed gordetatik" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "Zure feedetatik kendu?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Kendu irudia" @@ -6332,12 +6831,8 @@ msgstr "Kendu hitz mututua zure zerrendatik" msgid "Remove profile" msgstr "Kendu profila" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Kendu aipamena" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Kendu berposta" @@ -6345,7 +6840,7 @@ msgstr "Kendu berposta" msgid "Remove subtitle file" msgstr "Kendu azpitituluen fitxategia" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Kendu feed hau gordetako zure feedetatik" @@ -6364,11 +6859,11 @@ msgstr "Kendu egiaztapena" msgid "Remove your verification for this account?" msgstr "Zure egiaztapena kendu kontu honi?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Egileak kenduta" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Zuk kenduta" @@ -6377,10 +6872,6 @@ msgstr "Zuk kenduta" msgid "Removed from list" msgstr "Zerrendatik kenduta" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Nire feedetatik kenduta" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Gordetako feedetatik kenduta" @@ -6395,34 +6886,36 @@ msgstr "Zure feedetatik kenduta" msgid "Removed verification" msgstr "Egiaztapena kenduta" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Aipatutako posta kentzen du" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Ordeztu Aurkitu-gatik" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Erantzunak" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Erantzunak desgaituta daude" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Mezu honen erantzunak desgaituta daude." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Erantzun" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Erantzuna ({0, plural, one {erantzun #} other {# erantzun}})" @@ -6436,50 +6929,55 @@ msgstr "Erantzuna Hariaren Egileak Ezkutatuta" msgid "Reply Hidden by You" msgstr "Erantzuna Zuk Ezkutatuta" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "Erantzun jakinarazpenak" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Erantzunaren ezarpenak" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "Erantzun ezarpenak hariaren egileak aukeratzen ditu" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Erantzunak ordenatzea" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "<0><1/>-ri erantzun" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Erantzun blokeatutako post bati" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Post bati erantzun" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Zuri erantzun" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Erantzunen ikusgarritasuna eguneratu da" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Erantzuna behar bezala ezkutatu da" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Salatu feeda" msgid "Report list" msgstr "Salatu zerrenda" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Salatu mezua" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Salatu posta" @@ -6567,25 +7065,26 @@ msgstr "Salatu abio multzo hau" msgid "Report this user" msgstr "Salatu erabiltzaile hau" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Berpostatu" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Berpostatu" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Berposta ({0, plural, one {berpost #} other {# berpost}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "Berpost jakinarazpenak" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Berpostatu edo aipatu posta" @@ -6594,35 +7093,47 @@ msgstr "Berpostatu edo aipatu posta" msgid "Reposted By" msgstr "Nork berpostatua" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "{0}-k berpostatua" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "<0><1/>-k berpostatua" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Zuk berpostatua" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "Berpostak" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Berpostatu post hau" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "Eskatu aldaketa" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "Zure berposten berpostak" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "Zure berposten berpost jakinarazpenak" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "Eskaera Kodea" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Eskatu aukerazko testua argitaratu aurretik" @@ -6630,7 +7141,7 @@ msgstr "Eskatu aukerazko testua argitaratu aurretik" msgid "Require an email code to sign in to your account." msgstr "Eskatu posta-kode bat zure kontuan saioa hasteko." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Beharrezkoa hornitzaile honetarako" @@ -6642,10 +7153,6 @@ msgstr "Beharrezkoa zure eskualdean" msgid "Resend" msgstr "Berbidali" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Berriro bidali Posta Elektronikoa" msgid "Resend Verification Email" msgstr "Bidali berriro Egiaztapen Mezu Elektronikoa" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "Berrezarri jarduera harpidetza bultzada" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Berrezarri kodea" @@ -6667,8 +7180,8 @@ msgstr "Berrezarri kodea" msgid "Reset Code" msgstr "Berrezarri Kodea" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Berrezarri sartze-egoera" @@ -6687,21 +7200,23 @@ msgstr "Azken ekintza berriro saiatzen da, errorea izan duena" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Saiatu berriro" @@ -6721,19 +7236,19 @@ msgstr "Hasierako orrira itzultzen da" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Aurreko orrialdera itzultzen da" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Aurreko urratsera itzultzen da" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Aurreko urratsera itzultzen da" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Gorde" @@ -6762,15 +7276,13 @@ msgstr "Gorde" msgid "Save birthday" msgstr "Gorde jaiotze data" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Gorde aldaketak" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Gorde Aldaketak" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Gorde QR kodea" msgid "Save to my feeds" msgstr "Gorde nire feedetan" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Gordetako Feedak" @@ -6802,18 +7314,14 @@ msgstr "Gordetako Feedak" msgid "Saved to your feeds" msgstr "Zure feedetan gordeta" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Zure profilean edozein aldaketa gordetzen du" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Irudi mozketa ezarpenak gordetzen ditu" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Esan kaixo!" @@ -6826,16 +7334,16 @@ msgstr "Zientzia" msgid "Scroll to top" msgstr "Joan gora" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Bilatu" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Bilatu @{0}-ren postak" @@ -6861,7 +7369,7 @@ msgstr "Bilatu \"{query}\"" msgid "Search for \"{searchText}\"" msgstr "Bilatu \"{searchText}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Bilatu besteei iradoki nahi diezun feedak." @@ -6877,10 +7385,14 @@ msgstr "Bilatu feed gehiago" msgid "Search for posts, users, or feeds" msgstr "Bilatu postak, erabiltzaileak edo feedak" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Bilatu GIF-ak" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "Bilaketa ez dago erabilgarri saioa itxita dagoenean" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Bilatu nire postak" @@ -6890,12 +7402,12 @@ msgstr "Bilatu nire postak" msgid "Search posts" msgstr "Bilatu postak" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Bilatu profilak" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Bilatu Tenor-en" @@ -6903,7 +7415,7 @@ msgstr "Bilatu Tenor-en" msgid "Search..." msgstr "Bilatu..." -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Profilak bilatzen ditu" @@ -6912,10 +7424,6 @@ msgstr "Profilak bilatzen ditu" msgid "Security step required" msgstr "Segurtasun urratsa behar da" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Segurtasun Urratsa Behar da" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "Ikusi {tag} postak" @@ -6936,14 +7444,31 @@ msgstr "Ikusi erabiltzailearen #{tag} postak" msgid "See jobs at Bluesky" msgstr "Ikusi Bluesky-n lanpostuak" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "Ikusi gehiago" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "Ikusi gustuko izan ditzakezun kontu gehiago" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "Ikusi iradokitutako profil gehiago Arakatu orrian" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Ikus gida hau" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Bilaketa graduatzailea. Erabili gezi-teklak aurrera eta atzera bilatzeko, eta espazioa erreproduzitzeko/pausatzeko" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "Aukeratu {0}" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Aukeratu kolore bat" @@ -6988,7 +7513,7 @@ msgstr "Aukeratu lehendik dagoen kontu batetik" msgid "Select GIF" msgstr "Aukeratu GIF-a" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Aukeratu GIF-a \"{0}\"" @@ -6996,6 +7521,11 @@ msgstr "Aukeratu GIF-a \"{0}\"" msgid "Select how long to mute this word for." msgstr "Aukeratu zenbat denboraz mututu hitz hau." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "Aukeratu hizkuntza" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Aukeratu hizkuntza..." @@ -7004,7 +7534,7 @@ msgstr "Aukeratu hizkuntza..." msgid "Select languages" msgstr "Aukeratu hizkuntzak" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "Aukeratu moderazio zerbitzua" @@ -7045,12 +7575,12 @@ msgstr "Aukeratu zein hizkuntza erabili aplikazioaren interfazerako." msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Aukeratu harpidetutako feedak zein hizkuntzatan nahi dituzun. Bat ere ez bada aukeratzen, hizkuntza guztiak erakutsiko dira." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Aukeratu zure jaioteguna" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Aukeratu zure interesak beheko aukeretatik" @@ -7058,7 +7588,11 @@ msgstr "Aukeratu zure interesak beheko aukeretatik" msgid "Select your preferred language for translations in your feed." msgstr "Aukeratu zure feedean itzulpenak egiteko nahi duzun hizkuntza." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "Hautatu zure gogoko jakinarazpen kanalak" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "{0}/{numItems} aukera hautatzen du" @@ -7066,17 +7600,9 @@ msgstr "{0}/{numItems} aukera hautatzen du" msgid "Send a neat website!" msgstr "Bidali webgune txukun bat!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "Bidali baieztapena" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Bidali baieztapen mezu elektronikoa" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Bidali mezu elektronikoa" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Bidali Mezu Elektronikoa" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Bidali iritzia" @@ -7095,7 +7621,7 @@ msgstr "Bidali iritzia" msgid "Send message" msgstr "Bidali mezua" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "Bidali posta {name}-ri" @@ -7114,20 +7640,20 @@ msgstr "Bidali salaketa" msgid "Send report to {0}" msgstr "Bidali salaketa hona {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "Bidali salaketa {title}-ra" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Bidali egiaztapen-mezu elektronikoa" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Bidali mezu zuzenaren bidez" @@ -7143,7 +7669,7 @@ msgstr "Zerbitzariaren helbidea" msgid "Set app icon to {0}" msgstr "Ezarri {0} aplikazio ikono gisa" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Ezarri jaiotze-data" @@ -7159,13 +7685,57 @@ msgstr "Konfiguratu zure kontua" msgid "Sets email for password reset" msgstr "Pasahitza berrezartzeko posta elektronikoa ezartzen du" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Ezarpenak" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "Besteen jardueraren ezarpenak" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "Zure posten berri beste batzuei emateko ezarpenak" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "Gustoko jakinarazpenen ezarpenak" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "Aipamen jakinarazpenen ezarpenak" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "Jarraitzile berrien jakinarazpenen ezarpenak" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "Beste guztiaren jakinarazpenen ezarpenak" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "Zure berpost gustokoen jakinarazpenen ezarpenak" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "Zure berpost berposten jakinarazpenen ezarpenak" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "Aipamen jakinarazpenen ezarpenak" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "Erantzun jakinarazpenen ezarpenak" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "Berpost jakinarazpenen ezarpenak" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "Partekatu istorio polit bat!" msgid "Share a fun fact!" msgstr "Partekatu datu dibertigarri bat!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Partekatu hala ere" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "Partekatu egilearen DID" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Partekatu esteka" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Partekatu Esteka" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Partekatu estekaren elkarrizketa-koadroa" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "Partekatu posta hemen:// URI" @@ -7247,8 +7812,8 @@ msgstr "Partekatu abio multzo hau" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Partekatu abio multzo hau eta lagundu jendea zure Bluesky komunitatean sartzen." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "Partekatu hemen..." msgid "Share your favorite feed!" msgstr "Partekatu zure feed gogokoena!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Partekatutako Hobespenen Probatzailea" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Estekatutako webgunea partekatzen du" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Erakutsi" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Erakutsi aukerazko testua" @@ -7303,8 +7864,8 @@ msgstr "Erakutsi pertsonalizazio-aukerak" msgid "Show hidden replies" msgstr "Erakutsi erantzun ezkutuak" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Erakutsi honelako gutxiago" @@ -7312,55 +7873,63 @@ msgstr "Erakutsi honelako gutxiago" msgid "Show list anyway" msgstr "Erakutsi zerrenda hala ere" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Erakutsi gehiago" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Erakutsi horrelako gehiago" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "Erakutsi erantzun gehiago" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Erakutsi erantzun mututuak" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "Erakutsi postaren erantzunak hari-zuhaitz ikuspegi batean" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Erakutsi post aipatuak" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Erakutsi erantzunak" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Erakutsi erantzunak honela" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Erakutsi erantzunak hari gisa" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Erakutsi jarraitzen duzun jendearen erantzunak gainerako erantzunen aurretik" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Erakutsi erantzuna guztientzako" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Erakutsi berpostak" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Erakutsi gordetako feeden laginak zure Jarraitzen feedean" @@ -7372,16 +7941,17 @@ msgstr "Erakutsi abisua" msgid "Show warning and filter from feeds" msgstr "Erakutsi feedetako abisua eta iragazkia" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Post hau noiz sortu zenari buruzko informazioa erakusten du" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "Alda ditzakezun beste kontu batzuk erakusten ditu" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Edukia erakusten du" @@ -7390,14 +7960,15 @@ msgstr "Edukia erakusten du" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "Hasi saioa zerrendan ez dagoen kontuan" msgid "Sign in to Bluesky or create a new account" msgstr "Hasi saioa Bluesky-n edo sortu kontu berri bat" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "Hasi saioa posta ikusteko" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Amaitu saioa" @@ -7444,8 +8020,8 @@ msgstr "Amaitu saioa" msgid "Sign Out" msgstr "Amaitu saioa" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Saioa amaitu?" @@ -7459,12 +8035,12 @@ msgstr "Saioa hasi behar da" msgid "Signed in as @{0}" msgstr "@{0} gisa hasi duzu saioa" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Antzeko kontuak" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Saltatu" @@ -7472,12 +8048,11 @@ msgstr "Saltatu" msgid "Skip this flow" msgstr "Saltatu fluxu hau" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Txikiagoa" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "Gogorarazpena atzeratzen du" @@ -7490,11 +8065,11 @@ msgstr "Software Garatzailea" msgid "Some of your verifications are invalid." msgstr "Zure egiaztapenetako batzuk baliogabeak dira." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Gustatuko litzaizukeen beste feed batzuk" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Batzuek erantzun dezakete" @@ -7510,10 +8085,11 @@ msgstr "Norbaitek erreakzionatu du {0} {1}-i" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "Zerbait ez zegoen ondo salatzen saiatzen ari zaren datuekin. Mesedez, jarri laguntzarekin harremanetan." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Zerbait gaizki joan da" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Arazoren bat izan da. Mesedez, saiatu berriro" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Arazoren bat izan da. Mesedez, saiatu berriro." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Arazoren bat izan da!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "Arazoren bat izan da. Mesedez, saiatu berriro geroago." + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "Arazoren bat izan da. Mesedez, saiatu berriro." @@ -7539,20 +8118,23 @@ msgstr "Arazoren bat izan da. Mesedez, saiatu berriro." msgid "Something wrong? Let us know." msgstr "Zerbait gaizki? Jakinaraziguzu." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "Barkatu! Zure saioa iraungi da. Mesedez, hasi saioa berriro." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Ordenatu erantzunak" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Ordenatu erantzunak honen arabera" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Ordenatu post bereko erantzunak honela:" @@ -7579,7 +8161,7 @@ msgstr "Spama; gehiegizko aipamen edo erantzunak" msgid "Sports" msgstr "Kirolak" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "Hasi elkarrizketa bat, eta hemen agertuko da." @@ -7601,9 +8183,9 @@ msgstr "Hasi jendea gehitzen!" msgid "Start chat with {displayName}" msgstr "Txat berria hasi {displayName}-rekin" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Abio Multzoa" @@ -7611,12 +8193,12 @@ msgstr "Abio Multzoa" msgid "Starter pack by {0}" msgstr "{0}-ren abio multzoa" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "<0/>-ren abio multzoa" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Zure abio multzoa" @@ -7638,19 +8220,21 @@ msgstr "Abio multzoek zure gogoko feedak eta jendea zure lagunekin erraz parteka msgid "Status Page" msgstr "Egoera Orria" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "{0}/{1} urratsa" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Biltegia garbitu da, aplikazioa berrabiarazi behar duzu orain." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Ipuin liburua" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Bidali apelazioa" msgid "Submit Appeal" msgstr "Bidali Apelazioa" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "Bidali salaketa" @@ -7676,10 +8260,14 @@ msgstr "Bidali salaketa" msgid "Subscribe" msgstr "Harpidetu" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Harpidetu @{0}-ra etiketa hauek erabiltzeko:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "Harpidetu kontuaren jarduerara" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Harpidetu Etiketatzailera" @@ -7692,8 +8280,12 @@ msgstr "Harpidetu etiketatzaile honetara" msgid "Subscribe to this list" msgstr "Harpidetu zerrenda honetara" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "Arrakasta" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Arrakasta!" @@ -7705,7 +8297,7 @@ msgstr "Behar bezala egiaztatu da" msgid "Suggested Accounts" msgstr "Iradokitako Kontuak" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Zuretzat proposatua" @@ -7714,26 +8306,26 @@ msgstr "Zuretzat proposatua" msgid "Suggestive" msgstr "Lizuna" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Egunsentia" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Ilunabarra" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Laguntza" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Aldatu kontua" @@ -7742,24 +8334,24 @@ msgstr "Aldatu kontua" msgid "Switch Account" msgstr "Kontua Aldatu" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Kontuak aldatu" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "Aldatu {0}-ra" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Sistema" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Sistemaren erregistroa" @@ -7767,6 +8359,18 @@ msgstr "Sistemaren erregistroa" msgid "Tags only" msgstr "Etiketak soilik" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "Ukitu informazioa lortzeko" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "Ukitu informazio gehiago lortzeko" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "Sakatu eguneratze hauek ulertu eta onartzen dituzula onartzeko eta Bluesky erabiltzen jarraitzeko" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Kontaiguzu apur bat gehiago" msgid "Terms" msgstr "Baldintzak" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Zerbitzu-Baldintzak" @@ -7848,10 +8454,6 @@ msgstr "Testua idazteko eremua" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "Eskerrik asko zure iritziagatik! Feedaren operadoreari bidali zaio." -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Eskerrik asko! Zure helbide elektronikoa behar bezala egiaztatu da." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Eskerrik asko. Zure salaketa bidali da." @@ -7864,28 +8466,28 @@ msgstr "Eskerrik asko, zure helbide elektronikoa behar bezala egiaztatu duzu. Le msgid "That contains the following:" msgstr "Horrek honako hauek ditu:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Handle hori dagoeneko hartua dago." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Ezin izan da aurkitu abio multzo hori." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "Erabiltzaile-izen hori dagoeneko hartuta dago" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Hori da guztia, lagunok!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "Hori da dena!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "Kontua zurekin elkarreragin ahal izango du desblokeatu ondoren." @@ -7900,7 +8502,7 @@ msgstr "Aplikazioa berrabiaraziko da" msgid "The author of this thread has hidden this reply." msgstr "Hari honen egileak erantzun hau ezkutatu du." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Bluesky web aplikazioa" @@ -7920,10 +8522,6 @@ msgstr "Ezagutu feeda" msgid "The Discover feed now knows what you like" msgstr "Ezagutu feedak badaki zer gustatzen zaizun" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "Sartu duzun e-posta helbidea oraingo berbera da." - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "Esperientzia hobea da aplikazioan. Deskargatu Bluesky orain eta utzi zenuen lekuan hartuko dugu berriro." @@ -7944,8 +8542,16 @@ msgstr "Etiketa hauek aplikatu zaizkio zure edukiari." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "Hurrengo ezarpenak zure lehenetsitakoak bezala erabiliko dira post berriak sortzean. Hauek editatu ditzakezu post zehatz batentzat editorea erabiliz." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "Zure kokapeneko legeek adin nagusikoa zarela egiaztatzea eskatzen dute Bluesky-ko zenbait funtziotara sartu aurretik, hala nola helduentzako edukia eta mezu zuzenak." + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "Zure kokapeneko legeek heldua zarela egiaztatzea eskatzen dute funtzio batzuetara sartzeko. Sakatu informazio gehiago lortzeko." + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Baliteke posta ezabatu izana." @@ -7953,9 +8559,10 @@ msgstr "Baliteke posta ezabatu izana." msgid "The Privacy Policy has been moved to <0/>" msgstr "Pribatutasun-politika <0/>-ra eraman da" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "Aukeratutako bideoa 100 MB baino handiagoa da." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "Hautatutako bideoa 100 MB baino handiagoa da. Mesedez, saiatu berriro fitxategi txikiago batekin." #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "Zerbitzu Baldintzak hona eraman da" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "Eman duzun egiaztapen-kodea ez da zuzena. Mesedez, ziurtatu egiaztapen-esteka zuzena erabili duzula edo eskatu berri bat." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Gaia" @@ -7990,14 +8597,14 @@ msgstr "Gaia" msgid "There is no time limit for account deactivation, come back any time." msgstr "Ez dago kontua desaktibatzeko denbora-mugarik, itzuli edonoiz." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Arazo bat izan da Tenor-era konektatzean." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Arazo bat izan da zerbitzariarekin harremanetan jartzeko" @@ -8006,17 +8613,12 @@ msgstr "Arazo bat izan da zerbitzariarekin harremanetan jartzeko" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Arazo bat izan da zerbitzariarekin harremanetan jartzeko. Mesedez, egiaztatu Interneteko konexioa eta saiatu berriro." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Arazo bat izan da zure zerbitzariarekin harremanetan jartzeko" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Arazo bat izan da jakinarazpenak eskuratzean. Sakatu hemen berriro saiatzeko." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Arazo bat izan da postak eskuratzean. Sakatu hemen berriro saiatzeko." @@ -8037,7 +8639,7 @@ msgstr "Arazo bat izan da zure zerrendak eskuratzean. Sakatu hemen berriro saiat msgid "There was an issue fetching your service info" msgstr "Arazo bat izan da zure zerbitzu informazioa eskuratzean" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Arazo bat izan da feed hau kentzean. Egiaztatu Interneteko konexioa eta saiatu berriro." @@ -8052,9 +8654,9 @@ msgstr "Arazo bat izan da zure salaketa bidaltzean. Mesedez, egiaztatu zure Inte msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Arazo bat izan da feedak eguneratzean. Egiaztatu Interneteko konexioa eta saiatu berriro." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Arazo bat izan da feedak eguneratzean. Egiaztatu Interneteko konexioa et msgid "There was an issue! {0}" msgstr "Arazo bat egon da! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Arazo bat egon da! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Arazo bat egon da. Mesedez, egiaztatu Interneteko konexioa eta saiatu berriro." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Aplikazioan ustekabeko arazo bat egon da. Mesedez, esan iezaguzu hau gertatu zaizun!" @@ -8089,7 +8691,7 @@ msgstr "Aplikazioan ustekabeko arazo bat egon da. Mesedez, esan iezaguzu hau ger msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Erabiltzaile berri mordoa izan da Blueskyra! Zure kontua aktibatuko dugu ahal bezain laster." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Ezarpen hauek Jarraitzen feedari soilik aplikatzen zaizkio." @@ -8146,7 +8748,7 @@ msgstr "Eduki hau {0}-k dauka. Kanpoko multimedia gaitu nahi duzu?" msgid "This content is not available because one of the users involved has blocked the other." msgstr "Eduki hau ez dago erabilgarri inplikatutako erabiltzaileetako batek bestea blokeatu duelako." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Eduki hau ezin da ikusi Bluesky konturik gabe." @@ -8158,6 +8760,10 @@ msgstr "Elkarrizketa ezabatuta edo desaktibatuta dagoen kontu batekin da. Sakatu msgid "This email is already associated with your account." msgstr "Helbide elektroniko hau zure kontuarekin lotuta dago dagoeneko." +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "Ezaugarri honek erabiltzaileei zure post eta erantzun berrien jakinarazpenak jasotzeko aukera ematen die. Norentzat gaitu nahi duzu hau?" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Ezaugarri hau beta-n dago. Biltegien esportazioei buruzko informazio gehiago irakur dezakezu <0>blog-argitalpen honetan ." @@ -8170,7 +8776,7 @@ msgstr "Ezaugarri hau ez dago erabilgarri aplikazioaren pasahitza erabiltzen duz msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Ezaugarri hau ez dago erabilgarri aplikazioaren pasahitza erabiltzen duzun bitartean. Mesedez, hasi saioa zure pasahitz nagusiarekin." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Feed honek trafiko handia jasotzen ari da eta aldi baterako ez dago erabilgarri. Mesedez, saiatu berriro geroago." @@ -8209,11 +8815,11 @@ msgstr "Etiketa hau egileak aplikatu du." msgid "This label was applied by you." msgstr "Etiketa hau zuk aplikatu duzu." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Etiketatzaile honek ez du deklaratu zein etiketa argitaratzen dituen, eta baliteke aktibo ez egotea." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Esteka honek honako webgunera eramaten zaitu:" @@ -8233,29 +8839,28 @@ msgstr "Zerrenda hau hutsik dago." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Moderazio-zerbitzu hau ez dago erabilgarri. Ikus behean xehetasun gehiagorako. Arazo honek jarraitzen badu, jarri gurekin harremanetan." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Post honek <0>{0}-n sortu dela dio, baina Bluesky-k <1>{1}-n ikusi zuen lehen aldiz." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Post honek hari mota ezezagun bat du. Baliteke zure aplikazioa zaharkituta egotea." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Post hau ezabatu da." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Post hau saioa hasitako erabiltzaileek soilik ikus dezakete. Saioa hasita ez dagoen jendearentzat ez da ikusgai egongo." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "Post hau saioa hasi duten erabiltzaileentzat bakarrik ikus daiteke." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Post hau feed eta harietatik ezkutatuta egongo da. Hau ezin da desegin." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "Post honen egileak aipamenak desgaitu ditu." @@ -8263,11 +8868,11 @@ msgstr "Post honen egileak aipamenak desgaitu ditu." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Profil hau saioa hasitako erabiltzaileek soilik ikus dezakete. Saioa hasita ez dagoen jendearentzat ez da ikusgai egongo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Erantzun hau zure hariaren beheko aldean ezkutuko atal batean ordenatuko da eta hurrengo erantzunen jakinarazpenak mututuko ditu, bai zuretzako bai besteentzako." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Zerbitzu honek ez du zerbitzu-baldintzarik edo pribatutasun-politikarik eman." @@ -8275,6 +8880,10 @@ msgstr "Zerbitzu honek ez du zerbitzu-baldintzarik edo pribatutasun-politikarik msgid "This should create a domain record at:" msgstr "Honek domeinu-erregistro bat sortu beharko luke hemen:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "Minutu batzuk besterik ez luke iraun behar." + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Erabiltzaile honek ez du bistaratzeko izenik, beraz, ezin da egiaztatu." @@ -8316,16 +8925,18 @@ msgstr "Erabiltzaile hau ez du inor jarraitzen." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Honek \"{0}\" ezabatuko du mutututa dauden hitzetatik. Geroago gehi dezakezu beti." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Honek @{0} sarbide azkarreko zerrendatik kenduko du." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Honek zure posta aipatutako post honetatik kenduko du erabiltzaile guztientzat, eta leku-marka batekin ordezkatuko du." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Hariaren aukerak" @@ -8334,24 +8945,27 @@ msgstr "Hariaren aukerak" msgid "Thread preferences" msgstr "Hariaren hobespenak" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Hariaren Hobespenak" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Harikatua" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Haridun modua" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Harien Hobespenak" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "Geratzen den denbora: {0, plural, other {# segundu}}" @@ -8376,42 +8990,56 @@ msgstr "Nori bidali nahiko zenioke salaketa hau?" msgid "Today" msgstr "Gaur" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Aldatu goitibeherako aukera" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Aldatu helduentzako edukia gaitzeko edo desgaitzeko" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Soinua aktibatu/desaktibatzen du" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Joan gora" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "Goiko erantzunak lehenik" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Gaia" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Itzuli" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "Zuhaitz-ikuspegia" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Joera" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Joera Bideoak" @@ -8428,14 +9056,10 @@ msgstr "Saiatu berriro" msgid "TV" msgstr "Telebista" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Bi faktoreko autentifikazioa (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Idatzi nahi duzun erabiltzaile-izena" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Idatzi zure mezua hemen" @@ -8453,7 +9077,7 @@ msgstr "Ezin da konektatu. Mesedez, egiaztatu Interneteko konexioa eta saiatu be #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Ezin da zure zerbitzuarekin harremanetan jarri. Mesedez, egiaztatu zure msgid "Unable to delete" msgstr "Ezin da ezabatu" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "Ez aplikatu Tira Eskaera" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "Ez aplikatu Tira Eskaera {currentChannel}" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "Ez dago eskuragarri" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "Feedaren informazioa ez dago erabilgarri" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Desblokeatu" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Desblokeatu" @@ -8486,7 +9126,7 @@ msgstr "Desblokeatu" msgid "Unblock account" msgstr "Desblokeatu kontua" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Kontua Desblokeatu?" @@ -8495,13 +9135,13 @@ msgstr "Kontua Desblokeatu?" msgid "Unblock list" msgstr "Desblokeatu zerrenda" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Desegin berposta" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Desegin berposta ({0, plural, one {berpost #} other {# berpost}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Jarraitzen utzi" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "{0} jarraitzen utzi" @@ -8523,7 +9163,7 @@ msgstr "Utzi kontua jarraitzeari" msgid "Unfollows the user" msgstr "Erabiltzailea jarraitzeari uzten dio" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Zoritxarrez, harpidetutako etiketatzaileetako batek ere ez du onartzen salaketa mota hau." @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "Ez gogoko" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Ez gogoko ({0, plural, one {gogoko #} other {# gogoko}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Desmututu" @@ -8555,8 +9195,8 @@ msgstr "Mututzea utzi" msgid "Unmute {tag}" msgstr "{tag} ez mututu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Elkarrizketa ez mututu" msgid "Unmute list" msgstr "Desmututu zerrenda" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Haria ez mututu" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Bideoa ez mututu" @@ -8597,8 +9237,8 @@ msgstr "Kendu aingura Feedari" msgid "Unpin from home" msgstr "Aingura kendu hasieratik" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Aingura kendu profiletik" @@ -8614,8 +9254,8 @@ msgstr "{0}-ri aingura kendu Hasieratik" msgid "Unpinned from your feeds" msgstr "Aingura kendu zure feedetatik" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "Utzi e-posta bidezko gogorarazpena atzeratzeari" @@ -8636,7 +9276,7 @@ msgstr "Harpidetza kendu etiketatzaile honi" msgid "Unsubscribed from list" msgstr "Zerrendatik harpidetza kenduta" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Onartzen ez den bideo mota" @@ -8662,8 +9302,8 @@ msgstr "Eguneratu <0>{displayName} Zerrendetan" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "Eguneratu posta elektronikoa" @@ -8676,17 +9316,17 @@ msgstr "Eguneratu {domain}ra" msgid "Update your email" msgstr "Eguneratu zure posta elektronikoa" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Ezin izan da eguneratu aipamenaren eranskina" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Ezin izan da eguneratu erantzunen ikusgaitasuna" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Eguneratzen..." @@ -8698,20 +9338,20 @@ msgstr "Kargatu argazki bat ordez" msgid "Upload a text file to:" msgstr "Kargatu testu-fitxategi bat hona:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Kargatu Kameratik" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Kargatu Fitxategietatik" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Kargatu Liburutegitik" msgid "Uploading images..." msgstr "Irudiak kargatzen..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Estekaren miniatura kargatzen..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Bideoa kargatzen..." @@ -8761,6 +9401,10 @@ msgstr "Erabilera gomendatua" msgid "Use this to sign in to the other app along with your handle." msgstr "Erabili hau zure handle-arekin batera beste aplikazioan saioa hasteko." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "Erabili zure kontuko helbide elektronikoa, edo zuk kontrolatzen duzun beste benetako helbide elektroniko bat, KWS edo Bluesky-k zurekin harremanetan jarri behar badute." + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Honek erabiltzen du:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Erabiltzaile zerrenda eguneratua" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "Erabiltzaile-izenak ezin du {MAX_SERVICE_HANDLE_LENGTH, plural, other {# karaktere}} baino luzeagoa izan" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "Erabiltzaile-izenak ezin du marratxo batekin hasi edo amaitu" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "Erabiltzaile-izenak letrak (a-z), zenbakiak eta marratxoak bakarrik izan behar ditu" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Erabiltzaile-izena edo helbide elektronikoa" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "<0>@{0}-k jarraitzen dituen erabiltzaileak" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "<0>@{0} erabiltzaileak jarraitzen" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Nik jarraitzen ditudan erabiltzaileak" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "\"{0}\"-n dauden erabiltzaileak" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Nik jarraitzen ditudan erabiltzaileak" @@ -8846,11 +9502,11 @@ msgstr "Balioa:" msgid "Verification failed, please try again." msgstr "Egiaztapena huts egin du, saiatu berriro." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "Egiaztapen-ezarpenak" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "Egiaztapen-Ezarpenak" @@ -8870,8 +9526,15 @@ msgstr "Honek egiaztatuta:" msgid "Verify account" msgstr "Egiaztatu kontua" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "Egiaztatu berriro" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "Egiaztatu kodea" @@ -8880,21 +9543,20 @@ msgstr "Egiaztatu kodea" msgid "Verify DNS Record" msgstr "Egiaztatu DNS erregistroa" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "Egiaztatu e-posta" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "Egiaztatu posta elektroniko kodea" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Egiaztatu posta elektronikoko elkarrizketa-koadroa" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "Egiaztatu orain" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Egiaztatu testu-fitxategia" msgid "Verify this account?" msgstr "Kontu hau egiaztatu?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "Egiaztatu zure adina" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Egiaztatu zure posta elektronikoa" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Egiaztatu zure posta elektronikoa" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "Egiaztatzen" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "Zure adinaren berme-egoera egiaztatzen" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "{appVersion} bertsioa" +msgid "Version {0}" +msgstr "{0} bertsioa" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Bideoa" @@ -8928,7 +9598,7 @@ msgstr "Bideoa" msgid "Video failed to process" msgstr "Ezin izan da prozesatu bideoa" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Bideo Feeda" @@ -8942,15 +9612,15 @@ msgstr "{0}-ren bideoa: {text}" msgid "Video Games" msgstr "Bideo-jokoak" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Bideoa geldirik dago" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Bideoa erreproduzitzen ari da" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Ez da bideoa aurkitu." @@ -8958,11 +9628,11 @@ msgstr "Ez da bideoa aurkitu." msgid "Video settings" msgstr "Bideo ezarpenak" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Bideoa kargatuta" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Bideoa: {0}" @@ -8979,11 +9649,11 @@ msgstr "Bideoek 3 minutu baino gutxiago iraun behar dute" msgid "View {0}'s avatar" msgstr "Ikusi {0}-ren abatarra" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Ikusi {0}-ren profila" @@ -8991,7 +9661,7 @@ msgstr "Ikusi {0}-ren profila" msgid "View {displayName}'s profile" msgstr "Ikusi {displayName}-ren profila" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Ikusi blokeatutako erabiltzailearen profila" @@ -9009,7 +9679,6 @@ msgstr "Ikusi arazketa-sarrera" msgid "View details" msgstr "Ikusi xehetasunak" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Ikusi copyright-urraketa salatzeko xehetasunak" @@ -9022,23 +9691,23 @@ msgstr "Ikusi hari osoa" msgid "View information about these labels" msgstr "Ikusi etiketa hauei buruzko informazioa" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Ikusi gehiago" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Ikusi profila" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Ikusi abatarra" @@ -9054,28 +9723,28 @@ msgstr "Ikusi erabiltzaile honen egiaztapenak" msgid "View users who like this feed" msgstr "Ikusi feed hau gogoko duten erabiltzaileak" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Bideoa ikusi" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Ikusi zuk blokeatutako kontuak" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "Ikusi post interakzio-ezarpen lehenetsiak" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Ikusi zure feedak eta arakatu gehiago" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Ikusi zure moderazio zerrendak" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Ikusi zuk mutututako kontuak" @@ -9083,8 +9752,8 @@ msgstr "Ikusi zuk mutututako kontuak" msgid "View your verifications" msgstr "Ikusi zure egiaztapenak" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Irudi osoa ikusten du" @@ -9092,16 +9761,20 @@ msgstr "Irudi osoa ikusten du" msgid "Views video in immersive mode" msgstr "Bideoa murgiltze moduan ikusten du" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" msgstr "Webgunea bisitatu" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "Bisitatu jakinarazpenen ezarpenak" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Bolumena" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Edukia ohartarazi eta iragazi feedetatik" msgid "Watch now" msgstr "Ikusi orain" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "Ezin izan dugu pertsonalizatutako feed hau eskaintzen duen zerbitzura konektatu. Baliteke aldi baterako arazoa izatea edo betirako ez erabilgarri egotea." + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "Ezin izan dugu zerrenda hau aurkitu. Seguruenik ezabatu egin zen." + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "Ezin izan dugu etiketa horren emaitzarik aurkitu." @@ -9128,7 +9809,7 @@ msgstr "Ezin izan dugu etiketa horren emaitzarik aurkitu." msgid "We couldn't find any results for that topic." msgstr "Ezin izan dugu gai horren emaitzarik aurkitu." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Ezin izan dugu kargatu elkarrizketa hau" @@ -9136,6 +9817,10 @@ msgstr "Ezin izan dugu kargatu elkarrizketa hau" msgid "We estimate {estimatedTime} until your account is ready." msgstr "{estimatedTime} kalkulatzen dugu zure kontua prest egon arte." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "<0>KWS-rekin lankidetzan aritu gara heldua zarela egiaztatzeko. Beheko \"Hasi\" botoian klik egiten duzunean, KWS-k egiaztatuko du zure adina lehenago egiaztatu duzun helbide elektroniko hau erabiliz KWS teknologiak bultzatutako beste joko/zerbitzu batzuetarako. Hala ez bada, KWS-k zure adina egiaztatzeko argibideak bidaliko dizkizu posta elektronikoz. Amaitutakoan, Bluesky erabiltzen jarraitzeko aukera emango dizugu berriro." + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Beste egiaztapen-mezu bat bidali dugu <0>{0} helbidera." @@ -9148,15 +9833,15 @@ msgstr "Oso ondo pasatzea espero dugu. Gogoratu, Bluesky hau da:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Zure jarraitzaileen postik gabe geratu gara. Hona hemen <0/>-ren azkena." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "Gutxienez bi interes hautatzea gomendatzen dugu." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Esteka bat duen mezu elektroniko bat bidali dugu <0>{0} helbidera. Egin klik gainean helbide elektronikoaren egiaztapen prozesua osatzeko." -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Ezin izan dugu zehaztu bideoak kargatzeko baimena duzun ala ez. Mesedez, saiatu berriro." @@ -9164,10 +9849,14 @@ msgstr "Ezin izan dugu zehaztu bideoak kargatzeko baimena duzun ala ez. Mesedez, msgid "We were unable to load your birth date preferences. Please try again." msgstr "Ezin izan ditugu kargatu zure jaiotze dataren hobespenak. Mesedez, saiatu berriro." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "Une honetan ezin izan ditugu kargatu konfiguratutako etiketatzaileak." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "Konexio arazo batengatik ezin izan dugu egiaztapena jaso. Geroago irits daiteke. Iritsiz gero, zure kontua automatikoki eguneratuko da." + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Ezin izan gara konektatu. Mesedez, saiatu berriro zure kontua konfiguratzen jarraitzen. Huts egiten jarraitzen badu, fluxu hau salta dezakezu." @@ -9176,7 +9865,7 @@ msgstr "Ezin izan gara konektatu. Mesedez, saiatu berriro zure kontua konfigurat msgid "We will let you know when your account is ready." msgstr "Zure kontua prest dagoenean jakinaraziko dizugu." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Esteka bat duen mezu elektroniko bat bidaliko dugu <0>{0} helbidera. Egin klik gainean helbide elektronikoaren egiaztapen prozesua osatzeko." @@ -9184,6 +9873,22 @@ msgstr "Esteka bat duen mezu elektroniko bat bidaliko dugu <0>{0} helbidera. msgid "We'll use this to help customize your experience." msgstr "Hau erabiliko dugu zure esperientzia pertsonalizatzeko." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Gure <0>Komunitatearen Gidalerroak ere eguneratzen ari gara, eta zure ekarpena nahi dugu! Gidalerro berri hauek 2025eko urriaren 15ean jarriko dira indarrean." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Gure Komunitatearen Gidalerroak ere eguneratzen ari gara, eta zure ekarpena nahi dugu! Gidalerro berri hauek 2025eko urriaren 15ean jarriko dira indarrean." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "Zure adinaren berme-egoera gure zerbitzariekin baieztatzen ari gara. Segundo batzuk besterik ez luke iraungo." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "Arazoak ditugu zure kontuaren adinaren berme prozesua abiarazteko. Mesedez, <0>jarri harremanetan laguntza-zerbitzuarekin laguntza jasotzeko." + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Sare arazoak ditugu, saiatu berriro" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Bluesky-n egiaztapen-geruza berri bat sartzen ari gara — erraz ikusteko egiaztapen-marka bat." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Pozik gaude gurekin bat egin izanagatik!" @@ -9205,15 +9910,15 @@ msgstr "Sentitzen dugu, baina ezin izan dugu zerrenda hau konpondu. Honek jarrai msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Sentitzen dugu, baina momentu honetan ezin izan ditugu kargatu zure mutututako hitzak. Mesedez, saiatu berriro." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Sentitzen dugu, baina ezin izan da bilaketa osatu. Mesedez, saiatu berriro minutu batzuk barru." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Sentitzen dugu! Erantzuten ari zaren posta ezabatu da." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Sentitzen dugu! Ezin dugu aurkitu bilatzen ari zaren orria." @@ -9222,6 +9927,26 @@ msgstr "Sentitzen dugu! Ezin dugu aurkitu bilatzen ari zaren orria." msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Sentitzen dugu! Hogei etiketatzailetara baino ezin duzu harpidetu, eta hogeiren mugara iritsi zara." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "Gure <0>Zerbitzu-baldintzak, <1>Pribatutasun-politika eta <2>Copyright-politika eguneratzen ari gara, 2025eko irailaren 15etik aurrera indarrean sartuko direnak." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "Gure politikak eguneratzen ari gara" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "Gure Zerbitzu-baldintzak, Pribatutasun-politika eta Copyright-politika eguneratzen ari gara, 2025eko irailaren 15etik aurrera indarrean sartuko direnak." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Gure Zerbitzu Baldintzak, Pribatutasun Politika eta Copyright Politika eguneratzen ari gara, 2025eko irailaren 15etik aurrera indarrean. Gure Komunitate Gidalerroak ere eguneratzen ari gara, eta zure ekarpena nahi dugu! Gidalerro berri hauek 2025eko urriaren 15ean jarriko dira indarrean. Aldaketa hauei buruz gehiago jakiteko eta zure iritziak gurekin nola partekatu jakiteko, irakurri gure blog-argitalpena." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "Zure adinaren berme egoera baieztatu dugu. Elkarrizketa-leiho hau itxi dezakezu orain." + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Ongi etorri berriro ere!" @@ -9240,7 +9965,7 @@ msgstr "Nola deitu nahi diozu zure abio multzoari?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Zer da?" @@ -9256,11 +9981,11 @@ msgstr "Zein hizkuntza erabiltzen dira post honetan?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Zein hizkuntzatan ikusi nahiko zenituzke zure feed algoritmikoak?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Nork elkarreragin dezake post honekin?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Nork erantzun dezake" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "Nork egiaztatu dezake?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Aiba!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "Aiba! Joera bideoak kargatzeak huts egin du." @@ -9322,12 +10047,12 @@ msgstr "Zergatik berrikusi behar da erabiltzaile hau?" msgid "Write a message" msgstr "Idatzi mezu bat" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Idatzi posta" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Idatzi zure erantzuna" @@ -9358,11 +10083,11 @@ msgstr "Bai, desaktibatu" msgid "Yes, delete this starter pack" msgstr "Bai, ezabatu abio multzo hau" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Bai, kendu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Bai, ezkutatu" @@ -9378,6 +10103,10 @@ msgstr "Atzo" msgid "You" msgstr "Zu" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "<0>Bluesky-ren Komunitate Gidalerroak ere onartzen dituzu. <1>Gure Komunitate Gidalerroen bertsio eguneratua urriaren 15ean indarrean jarriko da." + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "Egiaztatzaile fidagarria zara" @@ -9386,6 +10115,10 @@ msgstr "Egiaztatzaile fidagarria zara" msgid "You are creating an account on" msgstr "Kontua sortzen ari zara hemen" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "Une honetan ezin duzu Bluesky-ren Adinaren Bermearen fluxua atzitu. Mesedez, <0>jarri harremanetan gure moderazio taldearekin errore bat dela uste baduzu." + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Ilaran zaude." @@ -9403,7 +10136,7 @@ msgstr "Jada ez zaude zuzenean" msgid "You are not allowed to go live" msgstr "Ez duzu baimenik zuzenean jartzeko" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Ezin dituzu bideoak kargatu." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "Egiaztatuta zaude" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "Egiaztatuta zaude. Zure egiaztapen-egoera galduko duzu bistaratzeko izena aldatzen baduzu. <0>Ikasi gehiago." @@ -9441,10 +10173,18 @@ msgstr "Jarraitu beharreko Feed Pertsonalizatu berriak ere aurki ditzakezu." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Horren ordez, zure kontua aldi baterako desaktibatu dezakezu eta edozein unetan berriro aktibatu." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "Txat-jakinarazpenek soinua izan dezaketen ala ez aukera dezakezu aplikazioaren txat-ezarpenetan" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Etengabeko elkarrizketekin jarrai dezakezu aukeratzen duzun ezarpena edozein dela ere." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "Orain pertsona zehatzek posteatzen dutenean jakinarazpenak jasotzea aukera dezakezu. Norbaitengandik puntualki eguneratzeak jaso nahi badituzu, joan haren profilera eta bilatu kanpai ikono berria jarraitu botoiaren ondoan." + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Orain pasahitz berriarekin saioa hasi dezakezu." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Zure kontua berriro aktiba dezakezu saioa hasten jarraitzeko. Zure profila eta postak beste erabiltzaileek ikusgai izango dituzte." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "Interakzio-ezarpen lehenetsiak ezar ditzakezu <0>Ezarpenak → Moderazioa → Interakzio-ezarpenak atalean." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Geroago eguneratu dezakezu hau zure ezarpenetan." @@ -9472,7 +10212,7 @@ msgstr "Ez duzu jarraitzailerik." msgid "You don't follow any users who follow @{name}." msgstr "Ez duzu jarraitzen @{name}-k jarraitzen duen erabiltzailerik." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "Ez daukazu txateatzeko eskaerarik oraingoz." @@ -9480,15 +10220,15 @@ msgstr "Ez daukazu txateatzeko eskaerarik oraingoz." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Oraindik ez duzu gonbidapen-koderik! Bluesky-n pixka bat gehiago egoten zarenean bidaliko dizkizugu." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Ez duzu feed ainguraturik." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Ez duzu gordetako feedik." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Egilea blokeatu duzu edo egileak blokeatu zaitu." @@ -9502,6 +10242,10 @@ msgstr "Erabiltzaile hau blokeatu duzu" msgid "You have blocked this user. You cannot view their content." msgstr "Erabiltzaile hau blokeatu duzu. Ezin duzu bere edukia ikusi." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "Erabat desgaitu dituzu erantzun eta aipamen jakinarazpenak, beraz, fitxa hau ez da gehiago eguneratuko. Hori doitzeko, joan zure <0>jakinarazpenen ezarpenetara." + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Kontu hau mututu duzu." msgid "You have muted this user" msgstr "Erabiltzaile hau mututu duzu" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Ez duzu elkarrizketarik oraindik. Hasi bat!" @@ -9547,7 +10291,7 @@ msgstr "Oraindik ez duzu konturik blokeatu. Kontu bat blokeatzeko, joan bere pro msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Oraindik ez duzu mututu konturik. Kontu bat mututzeko, joan bere profilera eta hautatu \"Mututu kontua\" bere kontuko menuan." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Bukaerara iritsi zara" @@ -9572,6 +10316,10 @@ msgstr "Ez duzu oraindik hitzik edo etiketarik mututu" msgid "You hid this reply." msgstr "Erantzun hau ezkutatu duzu." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "Fluxu hau dagoeneko hasi zenuen, duela {0}. Baliteke 5 minutu arte behar izatea mezu elektronikoak zure sarrera-ontzira iristeko. Mesedez, itxaron minutu batzuk berriro saiatu aurretik." + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Norberarenak ez diren etiketak apelatu ditzakezu akatsean jarri direla uste baduzu." @@ -9592,7 +10340,7 @@ msgstr "Gehienez 3 feed gehi ditzakezu" msgid "You may only select up to 4 images" msgstr "Gehienez 4 irudi hauta ditzakezu" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "Kontua sortzeko 13 urte edo gehiago izan behar dituzu." @@ -9600,6 +10348,14 @@ msgstr "Kontua sortzeko 13 urte edo gehiago izan behar dituzu." msgid "You must be following at least seven other people to generate a starter pack." msgstr "Gutxienez beste zazpi pertsona jarraitu behar dituzu abio multzo bat sortzeko." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "Adinaren bermea bete behar duzu beheko ezarpenetara sartzeko." + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "Adinaren bermea bete behar duzu pantaila honetara sartzeko." + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Zure argazki liburutegirako sarbidea eman behar duzu QR kodea gordetzeko" @@ -9608,6 +10364,11 @@ msgstr "Zure argazki liburutegirako sarbidea eman behar duzu QR kodea gordetzeko msgid "You must select at least one labeler for a report" msgstr "Gutxienez etiketatzaile bat hautatu behar duzu salaketa baterako" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "Saioa hasi behar duzu post hau ikusteko." + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "Zure e-posta helbidea egiaztatu behar duzu e-posta bidezko 2FA gaitu aurretik." @@ -9616,7 +10377,7 @@ msgstr "Zure e-posta helbidea egiaztatu behar duzu e-posta bidezko 2FA gaitu aur msgid "You previously deactivated @{0}." msgstr "Aurretik @{0} desaktibatu zenuen." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "Aplikazioa orain berrabiaraztea komeni da." @@ -9628,16 +10389,20 @@ msgstr "Erreakzionatu duzu {0}" msgid "You reacted {0} to {1}" msgstr "Erreakzionatu duzu {0} {1}-i" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Zure kontu guztietatik aterako zara." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "Aurrerantzean ez duzu {0}-ren jakinarazpenik jasoko" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Aurrerantzean ez duzu hari honen jakinarazpenik jasoko" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Hari honen jakinarazpenak jasoko dituzu orain" @@ -9657,11 +10422,11 @@ msgstr "Zu: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Zu: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Iradokitako erabiltzaileak eta feedak jarraituko dituzu zure kontua sortzen amaitzean!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Iradokitako erabiltzaileak jarraituko dituzu kontua sortzen amaitzean!" @@ -9673,9 +10438,9 @@ msgstr "Pertsona hauek eta beste {0} jarraituko dituzu" msgid "You'll follow these people right away" msgstr "Pertsona hauek jarraituko dituzu berehala" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Mezu elektroniko bat jasoko duzu <0>{0} helbidean zu zarela egiaztatzeko." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "{0}-ri buruzko jakinarazpenak jasotzen hasiko zara!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "Post honetan hitz edo etiketa bat ezkutatzea aukeratu duzu." msgid "You've found some people to follow" msgstr "Jarraitzeko jendea aurkitu duzu" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "Eduki aktiboaren amaierara iritsi zara." + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Zure feedaren amaierara iritsi zara! Bilatu jarraitzeko kontu gehiago." @@ -9711,19 +10480,23 @@ msgstr "Zure feedaren amaierara iritsi zara! Bilatu jarraitzeko kontu gehiago." msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Eskaera kopuru maximoa gainditu duzu. Mesedez, saiatu berriro geroago." -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "Eduki aktiboaren hasierara iritsi zara." + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Bideoak kargatzeko eguneko mugara iritsi zara (byte gehiegi)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Bideoak kargatzeko eguneko mugara iritsi zara (bideo gehiegi)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Ikusteko bideorik gabe geratu zara. Agian momentu ona da atsedena hartzeko?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Zure kontua" @@ -9735,7 +10508,7 @@ msgstr "Zure kontua ezabatu da" msgid "Your account has been suspended" msgstr "Zure kontua bertan behera utzi da" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Zure kontuak ez du oraindik bideoak kargatzeko adina. Mesedez, saiatu berriro geroago." @@ -9751,11 +10524,11 @@ msgstr "Zure kontua <0>Bluesky Sozial Zerbitzu-Baldintzak urratzen dituela i msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "Zure apelazioa bidali da. Zure apelazioa onartzen bada, mezu elektroniko bat jasoko duzu." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Zure jaiotze-data" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Zure arakatzaileak ez du bideo formatua onartzen. Mesedez, saiatu beste arakatzaile batekin." @@ -9771,13 +10544,15 @@ msgstr "Zure aukera etorkizuneko esteketarako gogoratuko da. Edozein unetan alda msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Zure oraingo handlea <0>{0} zuretzako automatikoki erreserbatuko da. Edozein momentutan berriro aukeratu dezakezu kontu honetatik." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "Zure e-posta helbidea eguneratu da baina oraindik ez dago egiaztatuta. Jarraitzeko, egiaztatu zure e-posta berria." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "Zure helbide elektronikoa" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Zure helbide elektronikoa ez dirudi zuzena denik." @@ -9786,15 +10561,11 @@ msgstr "Zure helbide elektronikoa ez dirudi zuzena denik." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "Zure helbide elektronikoa ez da oraindik egiaztatu. Mesedez, egiaztatu zure helbide elektronikoa Bluesky-ren funtzio guztiez gozatzeko." -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Zure helbide elektronikoa ez da oraindik egiaztatu. Gomendatzen dugun segurtasun-urrats garrantzitsua da." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "Zure lehenengo gogokoa!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "Zure jarraitzaileak" @@ -9806,19 +10577,15 @@ msgstr "Zure jarraitzen feeda hutsik dago! Jarraitu erabiltzaile gehiago zer ger msgid "Your full handle will be <0>@{0}" msgstr "Zure handle osoa <0>@{0} da" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "Zure erabiltzaile-izen osoa <0>@{0} izango da" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "Zure interesak" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "Zure interesak eguneratu dira!" @@ -9835,15 +10602,15 @@ msgstr "Zure mutututako hitzak" msgid "Your password has been changed successfully!" msgstr "Zure pasahitza ondo aldatu da!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "Pasahitzak 8 karaktereko luzera izan behar du gutxienez." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Zure posta argitaratu da" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Zure postak argitaratu dira" @@ -9851,15 +10618,19 @@ msgstr "Zure postak argitaratu dira" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Zure postak, gogokoak eta blokeatuak publikoak dira. Mutututakoak pribatuak dira." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "Zure hizkuntza hobetsia" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Zure profila, postak, feedak eta zerrendak ez dira ikusgai egongo beste Bluesky erabiltzaileentzat. Zure kontua edonoiz aktiba dezakezu saioa hasita." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Zure erantzuna argitaratu da" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "Zure salaketa <0>{0}-ra bidaliko da." @@ -9867,7 +10638,7 @@ msgstr "Zure salaketa <0>{0}-ra bidaliko da." msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Zure salaketa Bluesky Moderazio Zerbitzura bidaliko da" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "Aukeratutako interesek gogoko duzun edukia zerbitzatzen laguntzen digute." diff --git a/src/locale/locales/fi/messages.po b/src/locale/locales/fi/messages.po index 895f824921..64524730b6 100644 --- a/src/locale/locales/fi/messages.po +++ b/src/locale/locales/fi/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: fi\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,7 +27,7 @@ msgstr "(aktiivinen)" msgid "(contains embedded content)" msgstr "(sisältää upotettua sisältöä)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(ei sähköpostiosoitetta)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# uudelleenjulkaisu} other {# uudelleenjulkaisua}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# sekunti} other {# sekuntia}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -90,17 +90,18 @@ msgstr "" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {seuraaja} other {seuraajaa}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {seurattu} other {seurattua}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {tykkäys} other {tykkäystä}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {tykkäys} other {tykkäystä}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {julkaisu} other {julkaisua}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {lainaus} other {lainausta}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {uudelleenjulkaisu} other {uudelleenjulkaisua}}" @@ -135,6 +138,10 @@ msgstr "{0} <0><1>tunnisteissa" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0><1>tekstissä ja tunnisteissa" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "" @@ -143,11 +150,15 @@ msgstr "" msgid "{0} is not a valid URL" msgstr "" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} liittyi tällä viikolla" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0}/{1}" @@ -164,8 +175,16 @@ msgstr "" msgid "{0} reacted {1} to {2}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "Käyttäjän {0} profiilikuva" @@ -197,12 +216,12 @@ msgstr "{0} min" msgid "{0}s" msgstr "{0} s" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Käyttäjän {displayName} aloituspaketti" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {tunti} other {tuntia}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuutti} other {minuuttia}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} ja <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} seurasivat sinua" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} ja <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} tykkäsivät mukautetusta syötteestäsi" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} ja <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} tykkäsivät julkaisustasi" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} ja <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} uudelleenjulkaisivat julkaisusi" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} ja <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} rekisteröityivät aloituspakettisi avulla" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} seurasi sinua" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} seurasi sinua takaisin" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} tykkäsi mukautetusta syötteestäsi" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} tykkäsi julkaisustasi" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} uudelleenjulkaisi julkaisusi" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} rekisteröityi aloituspakettisi avulla" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} ja {additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} seurasivat sinua" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} ja {additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} tykkäsivät mukautetusta syötteestäsi" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} ja {additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} tykkäsivät julkaisustasi" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} ja {additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} uudelleenjulkaisivat julkaisusi" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} ja {additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} rekisteröityivät aloituspakettisi avulla" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} seurasi sinua" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} seurasi sinua takaisin" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} tykkäsi mukautetusta syötteestäsi" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} tykkäsi julkaisustasi" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} uudelleenjulkaisi julkaisusi" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} rekisteröityi aloituspakettisi avulla" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} seurattua" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "Käyttäjälle {handle} ei voi viestiä" @@ -392,7 +410,7 @@ msgstr "" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -432,12 +450,12 @@ msgstr "" msgid "+{computedTotal}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} ja {2, plural, one {# muu} other {# muuta}} sisältyvät aloituspakettiisi" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} ja {2, plural, one {# muu} other {# muuta}} sisältyvät aloituspakettiisi" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {seuraaja} other {seuraajaa}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {seurattu} other {seurattua}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} ja<1> <2>{1} sisältyvät aloituspakettiisi" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} sisältyy aloituspakettiisi" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "Listan <0>{0} jäsenet" @@ -466,11 +484,11 @@ msgstr "Listan <0>{0} jäsenet" msgid "<0>{date} at {time}" msgstr "<0>{date} klo {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Kokeellinen: Kun tämä asetus on käytössä, saat vain vastaus- ja lainausilmoituksia seuraamiltasi käyttäjiltä. Jatkamme uusien säätöjen lisäämistä tähän ajan kuluessa." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Sinä ja<1> <2>{0} sisällytte aloituspakettiisi" @@ -503,10 +521,14 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Tietoja" @@ -524,25 +546,25 @@ msgstr "" msgid "Accept Request" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Saavutettavuus" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Saavutettavuusasetukset" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Tili" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Tiliä seurattu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Tili mykistetty" msgid "Account Muted by List" msgstr "Tili mykistetty listan perusteella" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Tilin valinnat" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Tili poistettu pikakäytöstä" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Tilin seuraaminen lopetettu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Tilin mykistys poistettu" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Lisää" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Lisää vielä {0} jatkaaksesi" @@ -634,8 +666,8 @@ msgstr "Lisää tili" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Lisää tekstivastine" msgid "Add alt text (optional)" msgstr "Lisää tekstivastine (valinnainen)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Lisää toinen tili" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Lisää toinen julkaisu" @@ -670,8 +702,8 @@ msgstr "Lisää sovellussalasana" msgid "Add emoji reaction" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "" @@ -683,7 +715,7 @@ msgstr "" msgid "Add muted words and tags" msgstr "Lisää mykistettyjä sanoja ja tunnisteita" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Lisää uusi julkaisu" @@ -704,7 +736,7 @@ msgstr "" msgid "Add recommended feeds" msgstr "Lisää suositellut syötteet" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Lisää syötteitä aloituspakettiisi!" @@ -725,10 +757,6 @@ msgstr "Lisää tämä syöte syötteisiisi" msgid "Add to lists" msgstr "Lisää listoihin" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Lisää syötteisiini" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "" @@ -738,11 +766,11 @@ msgstr "" msgid "Added to list" msgstr "Lisätty listaan" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Lisätty syötteisiini" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "" @@ -750,18 +778,18 @@ msgstr "" msgid "Adult" msgstr "Aikuinen" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Aikuissisältö" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Aikuissisällön voi ottaa käyttöön vain selainsovelluksen <0>bsky.app kautta." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Aikuissisältö on poissa käytöstä." @@ -770,16 +798,32 @@ msgstr "Aikuissisältö on poissa käytöstä." msgid "Adult Content labels" msgstr "Aikuissisällön merkinnät" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Edistyneet" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Kaikki" @@ -793,7 +837,7 @@ msgstr "Kaikkia tilejä seurattiin!" msgid "All languages" msgstr "" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Kaikki tallentamasi syötteet yhdessä paikassa." @@ -802,16 +846,21 @@ msgstr "Kaikki tallentamasi syötteet yhdessä paikassa." msgid "Allow access to your direct messages" msgstr "Salli pääsy yksityisviesteihisi" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Salli uudet viestit" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Salli lainausjulkaisut" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Salli vastaukset" @@ -828,13 +877,13 @@ msgstr "Onko sinulla jo koodi?" msgid "Already signed in as @{0}" msgstr "Kirjautuneena jo sisään käyttäjänä @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "Tekstivastine" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Tekstivastine" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Tekstivastine kuvailee kuvia sokeille ja heikkonäköisille käyttäjille sekä lisää kontekstia kaikille." @@ -861,27 +910,19 @@ msgstr "" msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Osoitteeseen {0} on lähetetty sähköpostiviesti. Siinä on vahvistuskoodi, jonka voit syöttää alle." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Sinulle on lähetetty sähköpostiviesti! Syötä siinä oleva vahvistuskoodi alle." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "On tapahtunut virhe" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Tapahtui virhe" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Videota pakattaessa tapahtui virhe." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "" @@ -889,11 +930,11 @@ msgstr "" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Aloituspakettiasi luotaessa tapahtui virhe. Haluatko yrittää uudelleen?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Videota ladattaessa tapahtui virhe. Yritä myöhemmin uudelleen." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Videota ladattaesa tapahtui virhe. Yritä uudelleen." @@ -910,7 +951,7 @@ msgstr "Videota valittaessa tapahtui virhe" msgid "An error occurred while trying to follow all" msgstr "Yritettäessä seurata kaikkia tapahtui virhe" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Ladattaessa videota palveluun tapahtui virhe." @@ -934,8 +975,8 @@ msgstr "Yritettäessä avata chattia ilmenei ongelma" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "tapahtui tuntematon virhe" msgid "an unknown labeler" msgstr "tuntematon merkitsijä" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "ja" @@ -963,10 +1004,14 @@ msgstr "ja" msgid "Animals" msgstr "Eläimet" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "Animoitu GIF" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "" @@ -980,7 +1025,13 @@ msgstr "Epäsosiaalinen käytös" msgid "Anybody can interact" msgstr "Kaikki voivat olla vuorovaikutuksessa" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "Sovellussalasanojen nimet voivat sisältää vain kirjaimia, numeroita, msgid "App password names must be at least 4 characters long" msgstr "Sovellussalasanojen nimien on oltava vähintään 4 merkkiä pitkiä" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Sovellussalasanat" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Sovellussalasanat" @@ -1053,10 +1104,10 @@ msgstr "" msgid "Appeal this decision" msgstr "Valita tästä päätöksestä" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Ulkoasu" @@ -1065,12 +1116,20 @@ msgstr "Ulkoasu" msgid "Apply default recommended feeds" msgstr "Käytä oletusarvoisia suositeltuja syötteitä" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Arkistoitu ajankohdasta {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Arkistoitu julkaisu" @@ -1078,7 +1137,7 @@ msgstr "Arkistoitu julkaisu" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Haluatko varmasti poistaa sovellussalasanan ”{0}”?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Haluatko varmasti poistaa tämän viestin? Viesti poistuu sinulta mutta ei toiselta keskusteluun osallistuneelta." @@ -1098,19 +1157,15 @@ msgstr "" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Haluatko varmasti poistua tästä keskustelusta? Viestisi poistuvat sinulta mutta eivät toiselta keskusteluun osallistuneelta." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Haluatko varmasti poistaa syötteen {0} syötteistäsi?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Haluatko varmasti poistaa tämän syötteistäsi?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Haluatko varmasti hylätä tämän luonnoksen?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Haluatko varmasti hylätä tämän julkaisun?" @@ -1131,29 +1186,26 @@ msgstr "Taide" msgid "Artistic or non-erotic nudity." msgstr "Taiteellinen tai ei-eroottinen alastomuus." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Vähintään 3 merkkiä" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Automaattisen toiston valinnat on siirretty <0>Sisältö ja media -asetuksiin." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Toista videot ja GIF-animaatiot automaattisesti" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Toista videot ja GIF-animaatiot automaattisesti" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Takaisin" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "" @@ -1195,28 +1247,44 @@ msgstr "Ennen aloituspaketin luomista sinun on vahvistettava sähköpostiosoitte msgid "Before you can accept this chat request, you must first verify your email." msgstr "" +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Syntymäpäivä" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Estä" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Estä" msgid "Block account" msgstr "Estä tili" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Estetäänkö tili?" @@ -1262,20 +1330,20 @@ msgstr "" msgid "Block User" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Estetty" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Estetyt tilit" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Estetyt tilit" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Estetyt tilit eivät voi vastata ketjuihisi, mainita sinua tai olla muuten vuorovaikutuksessa kanssasi." @@ -1284,11 +1352,11 @@ msgstr "Estetyt tilit eivät voi vastata ketjuihisi, mainita sinua tai olla muut msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Estetyt tilit eivät voi vastata ketjuihisi, mainita sinua tai olla muuten vuorovaikutuksessa kanssasi. Et näe niiden sisältöä, eivätkä ne näe sinun sisältöäsi." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Estetty julkaisu." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Estäminen ei estä tätä merkitsijää asettamasta merkintöjä tilillesi." @@ -1309,11 +1377,12 @@ msgstr "Blogi" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky ei voi vahvistaa väitetyn päivämäärän oikeellisuutta." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1347,6 +1416,14 @@ msgstr "Bluesky ei näytä profiiliasi eikä julkaisujasi kirjautumattomille kä msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Sumenna kuvat ja suodata syötteistä" msgid "Books" msgstr "Kirjat" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Selaa lisää tilejä Explore-sivulla" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Selaa lisää syötteitä Explore-sivulla" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Selaa lisää ehdotuksia" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Selaa lisää ehdotuksia Explore-sivulla" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Yritys" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Käyttäjältä {0}" @@ -1428,15 +1502,23 @@ msgstr "Käyttäjältä {0}" msgid "By <0>{0}" msgstr "Käyttäjältä <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Luomalla tilin hyväksyt <0>tietosuojakäytännön." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Luomalla tilin hyväksyt <0>käyttöehdot ja <1>tietosuojakäytännön." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Luomalla tilin hyväksyt <0>käyttöehdot." @@ -1448,14 +1530,17 @@ msgstr "" msgid "Camera" msgstr "Kamera" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Kamera" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Peruuta" @@ -1500,11 +1582,7 @@ msgstr "Peruuta tilin poisto" msgid "Cancel image crop" msgstr "Peruuta kuvan rajaus" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Peruuta profiilin muokkaus" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Peruuta julkaisun lainaus" @@ -1516,14 +1594,10 @@ msgstr "Peruuta tilin käyttöönpalautus ja kirjaudu ulos" msgid "Cancel search" msgstr "Peruuta haku" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Peruuttaa linkitetyn verkkosivuston avaamisen" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Estetyn käyttäjän kanssa ei voi olla vuorovaikutuksessa" @@ -1553,17 +1627,12 @@ msgstr "Vaihda sovelluskuvakkeeksi ”{0}”" msgid "Change app language" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Vaihda sähköpostiosoite" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Vaihda käyttäjätunnus" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "" @@ -1579,14 +1648,6 @@ msgstr "Vaihda julkaisun kieleksi {suggestedLanguageName}" msgid "Change report reason" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Vaihda sähköpostiosoitteesi" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Vaihda sähköpostiosoitteesi" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "" @@ -1596,10 +1657,15 @@ msgstr "" msgid "Changes hosting provider" msgstr "" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Chatti" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Chatti mykistetty" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Chatin asetukset" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Chatin asetukset" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chatti mykistetty" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "" @@ -1661,7 +1738,7 @@ msgstr "Tarkista sähköpostisi ja syötä saamasi vahvistuskoodi alle:" msgid "Choose domain verification method" msgstr "Valitse verkkotunnuksen vahvistusmenetelmä" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Valitse syötteet" @@ -1669,7 +1746,7 @@ msgstr "Valitse syötteet" msgid "Choose for me" msgstr "Valitse puolestani" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Valitse käyttäjät" @@ -1685,23 +1762,23 @@ msgstr "Valitse tämä väri profiilikuvaksesi" msgid "Choose your account provider" msgstr "" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Valitse oma aikajanasi! Yhteisön rakentamat syötteet auttavat löytämään mieleistäsi sisältöä." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Valitse salasanasi" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Valitse käyttäjätunnuksesi" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Tyhjennä kaikki tallennustilan tiedot" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Tyhjennä kaikki tallennustilan tiedot (käynnistä uudelleen tämän jälkeen)" @@ -1714,23 +1791,27 @@ msgstr "" msgid "Clear search query" msgstr "Tyhjennä hakukysely" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "napsauta tästä" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Napsauta poistaaksesi lainausjulkaisut käytöstä tältä julkaisulta." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Napsauta ottaaksesi lainausjulkaisut käyttöön tälle julkaisulle." @@ -1750,14 +1831,16 @@ msgstr "Ilmasto" msgid "Clip 🐴 clop 🐴" msgstr "Kopoti 🐴 kopoti 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Kopoti 🐴 kopoti 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Sulje" @@ -1789,13 +1876,15 @@ msgstr "Sulje hälytys" msgid "Close bottom drawer" msgstr "Sulje alavalikko" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Sulje valintaikkuna" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "" @@ -1804,7 +1893,7 @@ msgstr "" msgid "Close emoji picker" msgstr "Sulje emojinvalitsin" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Sulje GIF-valintaikkuna" @@ -1822,7 +1911,7 @@ msgstr "Sulje kuvankatselu" msgid "Close menu" msgstr "" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Sulje tämä valintaikkuna" @@ -1830,7 +1919,7 @@ msgstr "Sulje tämä valintaikkuna" msgid "Closes password update alert" msgstr "Sulkee salasanan päivityshälytyksen" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "" @@ -1843,16 +1932,16 @@ msgstr "" msgid "Closes viewer for header image" msgstr "Sulkee kuvan katseluohjelman" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Pienennä käyttäjäluettelo" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Pienentää tämän ilmoituksen käyttäjäluettelon" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Väritila" @@ -1870,7 +1959,8 @@ msgstr "Komedia" msgid "Comics" msgstr "Sarjakuvat" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Yhteisöohjeet" @@ -1879,38 +1969,34 @@ msgstr "Yhteisöohjeet" msgid "Complete onboarding and start using your account" msgstr "Suorita käyttöönotto loppuun ja aloita tilisi käyttö" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Suorita haaste loppuun" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Laadi uusi julkaisu" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Laadi vastaus" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Pakataan videota…" -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Määritä sisällönsuodatusasetus luokalle {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Määritetään <0>moderointiasetuksissa." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Vahvista sisällön kieliasetukset" msgid "Confirm delete account" msgstr "Vahvista tilin poisto" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Vahvista ikäsi:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Vahvista syntymäaikasi" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Vahvista syntymäaikasi" msgid "Confirmation code" msgstr "Vahvistuskoodi" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Vahvistuskoodi" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Yhdistetään…" -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Ota yhteys tukeen" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Sisältö ja media" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Sisältö ja media" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Sisältö ja media" @@ -1977,7 +2069,8 @@ msgstr "Sisältö ja media" msgid "Content Blocked" msgstr "Sisältö estetty" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Sisällönsuodattimet" @@ -2006,10 +2099,12 @@ msgstr "Sisältövaroitus" msgid "Content warnings" msgstr "Sisältövaroitukset" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Kontekstivalikon tausta-alue. Napsauta sulkeaksesi valikon." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Jatka" msgid "Continue as {0} (currently signed in)" msgstr "Jatka käyttäjänä {0} (nyt kirjautuneena)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Jatka ketjua…" @@ -2029,6 +2129,10 @@ msgstr "Jatka ketjua…" msgid "Continue to next step" msgstr "Jatka seuraavaan vaiheeseen" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Kopioitu" msgid "Copied build version to clipboard" msgstr "Ohjelmiston versio kopioitu leikepöydälle" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "" msgid "Copy" msgstr "Kopioi" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Kopioi sovellussalasana" @@ -2087,8 +2187,8 @@ msgstr "Kopioi sovellussalasana" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "" @@ -2120,10 +2220,10 @@ msgstr "Kopioi linkki" msgid "Copy link to list" msgstr "Kopioi listan linkki" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Kopioi julkaisun linkki" @@ -2136,18 +2236,18 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Kopioi viestin teksti" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Kopioi julkaisun teksti" @@ -2159,11 +2259,25 @@ msgstr "Kopioi QR-koodi" msgid "Copy TXT record value" msgstr "Kopioi TXT-tietueen arvo" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Tekijänoikeuskäytäntö" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "Chattia ei voitu mykistää" msgid "Could not process your video" msgstr "Videota ei voitu käsitellä" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Luo" @@ -2195,7 +2317,7 @@ msgstr "Luo QR-koodi aloituspaketille" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Luo aloituspaketti" @@ -2205,21 +2327,22 @@ msgstr "Luo aloituspaketti minulle" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Luo tili" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Luo tili" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Luo tili" @@ -2241,7 +2364,7 @@ msgstr "Luo toinen" msgid "Create new account" msgstr "Luo uusi tili" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Luo raportti: {0}" @@ -2268,7 +2391,7 @@ msgstr "Mukautettu" msgid "Customization options" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Mukauta, kuka voi olla vuorovaikutuksessa tämän julkaisun kanssa." @@ -2278,12 +2401,12 @@ msgstr "" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Tumma" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Tumma" @@ -2292,21 +2415,21 @@ msgstr "Tumma" msgid "Dark mode" msgstr "Tumma ulkoasu" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Tumma teema" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Syntymäaika" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Poista tili käytöstä" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Avaa moderoinnin vianetsintä" @@ -2314,7 +2437,7 @@ msgstr "Avaa moderoinnin vianetsintä" msgid "Debug panel" msgstr "Vianetsintäpaneeli" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Oletus" @@ -2322,8 +2445,8 @@ msgstr "Oletus" msgid "Default icons" msgstr "Oletuskuvakkeet" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Oletuskuvakkeet" msgid "Delete" msgstr "Poista" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Poista tili" @@ -2355,7 +2478,7 @@ msgstr "Poistetaanko sovellussalasana?" msgid "Delete chat" msgstr "" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Poista chatin deklaraatiotietue" @@ -2370,7 +2493,7 @@ msgstr "" msgid "Delete Conversation" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Poista itseltäni" @@ -2378,11 +2501,11 @@ msgstr "Poista itseltäni" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Poista viesti" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Poista viesti itseltäni" @@ -2390,9 +2513,9 @@ msgstr "Poista viesti itseltäni" msgid "Delete my account" msgstr "Poista tilini" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Poista julkaisu" @@ -2409,11 +2532,11 @@ msgstr "Poistetaanko aloituspaketti?" msgid "Delete this list?" msgstr "Poistetaanko tämä lista?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Poistetaanko tämä julkaisu?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Poistettu" @@ -2422,15 +2545,20 @@ msgstr "Poistettu" msgid "Deleted Account" msgstr "Poistettu tili" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Poistettu julkaisu." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Kuvaus" @@ -2447,12 +2575,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Kuvaileva tekstivastine" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Irrota lainaus" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Irrotetaanko lainausjulkaisu?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Kehittäjän valinnat" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Valintaikkuna: säädä, kuka voi olla vuorovaikutuksessa tämän julkaisun kanssa" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Himmeä" @@ -2492,27 +2620,27 @@ msgstr "" msgid "Disable Email 2FA" msgstr "Poista sähköpostiin perustuva kaksivaiheinen tunnistautuminen käytöstä" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Poista haptinen palaute käytöstä" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Poista tekstitykset käytöstä" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Poissa käytöstä" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Hylkää" @@ -2520,11 +2648,11 @@ msgstr "Hylkää" msgid "Discard changes?" msgstr "Hylätäänkö muutokset?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Hylätäänkö luonnos?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Hylätäänkö julkaisu?" @@ -2542,7 +2670,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "Löydä uusia mukautettuja syötteitä" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Löydä uusia syötteitä" @@ -2550,7 +2678,7 @@ msgstr "Löydä uusia syötteitä" msgid "Dismiss" msgstr "Hylkää" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Hylkää virhe" @@ -2562,26 +2690,26 @@ msgstr "Hylkää aloitusopas" msgid "Dismiss interests" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Näytä suuremmat tekstivastineen merkit" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Näyttönimi" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Näyttönimi" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Näyttönimi on liian pitkä" @@ -2603,15 +2731,11 @@ msgstr "Älä käytä tätä mykistyssanaa seuraamiisi käyttäjiin" msgid "Does not include nudity." msgstr "Ei sisällä alastomuutta." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Ei ala yhdysviivalla eikä lopu sellaiseen" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Verkkotunnus vahvistettu!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -2619,6 +2743,15 @@ msgstr "" msgid "Don't see an email? <0>Click here to resend." msgstr "" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "" msgid "Double tap to close the dialog" msgstr "Kaksoisnapauta sulkeaksesi valintaikkunan" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "" @@ -2673,7 +2806,7 @@ msgstr "Lataa Bluesky" msgid "Download CAR file" msgstr "Lataa CAR-tiedosto" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Raahaa tähän lisätäksesi kuvia" @@ -2689,18 +2822,10 @@ msgstr "esim. maija" msgid "e.g. Alice Lastname" msgstr "esim. Maija Sukunimi" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "esim. Maija Mallikas" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "esim. maija.fi" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "esim. Taiteilija, koiraharrastaja ja innokas lukija." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Esim. taiteelliset alastonkuvat." @@ -2725,10 +2850,11 @@ msgstr "esim. Käyttäjät, jotka vastaavat toistuvasti mainoksilla." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Jokainen koodi toimii kerran. Saat lisää kutsukoodeja määräajoin." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Muokkaa" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Muokkaa" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Muokkaa profiilikuvaa" @@ -2749,12 +2875,12 @@ msgstr "Muokkaa syötteitä" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Muokkaa kuvaa" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Muokkaa vuorovaikutusasetuksia" @@ -2776,33 +2902,33 @@ msgstr "" msgid "Edit Moderation List" msgstr "Muokkaa moderointilistaa" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Muokkaa syötteitäni" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Muokkaa profiiliani" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Muokkaa käyttäjiä" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Muokkaa julkaisun vuorovaikutusasetuksia" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Muokkaa profiilia" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Muokkaa profiilia" @@ -2814,19 +2940,11 @@ msgstr "Muokkaa aloituspakettia" msgid "Edit User List" msgstr "Muokkaa käyttäjälistaa" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Muokkaa, kuka voi vastata" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Muokkaa näyttönimeäsi" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Muokkaa profiilisi kuvausta" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Muokkaa aloituspakettiasi" @@ -2839,8 +2957,8 @@ msgstr "Koulutus" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "Joko listan tekijä on estänyt sinut tai sitten sinä olet estänyt listan tekijän." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "Sähköpostiosoite" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "Sähköpostiin perustuva kaksivaiheinen tunnistautuminen poissa käytöstä" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "Sähköpostiin perustuva kaksivaiheinen tunnistautuminen käytössä" @@ -2865,10 +2983,6 @@ msgstr "Sähköpostiviesti lähetetty uudelleen" msgid "Email sent!" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "" @@ -2883,8 +2997,8 @@ msgstr "Upotuksen HTML-koodi" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Upota julkaisu" @@ -2892,7 +3006,7 @@ msgstr "Upota julkaisu" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Upota tämä julkaisu verkkosivustollesi. Kopioi vain seuraava koodinpätkä ja liitä se sivustosi HTML-koodiin." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Upotettu videosoitin" @@ -2906,7 +3020,7 @@ msgstr "Ota käyttöön" msgid "Enable {0} only" msgstr "Ota vain {0} käyttöön" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Ota aikuissisältö käyttöön" @@ -2919,16 +3033,20 @@ msgstr "" msgid "Enable external media" msgstr "Ota ulkoinen media käyttöön" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Ota mediatoistimet käyttöön palveluille" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Ota etusijan ilmoitukset käyttöön" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Ota tekstitykset käyttöön" @@ -2941,17 +3059,14 @@ msgstr "Ota käyttöön vain tämä lähde" msgid "Enable trending topics" msgstr "Ota trendaavat aiheet käyttöön" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "" - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Käytössä" @@ -2963,7 +3078,7 @@ msgstr "Syötteen loppu" msgid "Ensure you have selected a language for each subtitle file." msgstr "Varmista, että olet valinnut jokaisen tekstitystiedoston kielen." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Syötä salasana" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Syötä sana tai tunniste" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Syötä koodi" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Siirry koko näytön tilaan" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Syötä syntymäaikasi" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Syötä sähköpostiosoitteesi" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Syötä uusi sähköpostiosoitteesi alle." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "" @@ -3022,7 +3129,7 @@ msgstr "" msgid "Enter your username and password" msgstr "Syötä käyttäjätunnuksesi ja salasanasi" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "" @@ -3030,16 +3137,28 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Virhe" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Tiedostoa tallennettaessa tapahtui virhe" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Virhe captcha-vastauksen vastaanottamisessa." @@ -3047,27 +3166,34 @@ msgstr "Virhe captcha-vastauksen vastaanottamisessa." msgid "Error:" msgstr "Virhe:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Kaikilta" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Kaikki voivat vastata" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Kaikki voivat vastata tähän julkaisuun." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Kaikilta" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Sulje pois seuraamasi käyttäjät" msgid "Excludes users you follow" msgstr "Sulkee pois seuraamasi käyttäjät" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Poistu koko näytön tilasta" @@ -3106,24 +3232,28 @@ msgstr "Poistuu kuvan katselutilasta" msgid "Expand alt text" msgstr "Laajenna tekstivastine" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Laajenna käyttäjäluettelo" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Laajenna tai pienennä julkaisu, johon olit vastaamassa" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "Odotettiin URIn resolvoituvan tietueeseen" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Kokeellinen" @@ -3153,15 +3283,15 @@ msgstr "Siveetön tai mahdollisesti häiritsevä media." msgid "Explicit sexual images." msgstr "Siveettömän seksuaaliset kuvat." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Vie tietoni" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Ulkoinen media" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Ulkoinen media voi mahdollistaa verkkosivustoille tietojenkeruun sinusta ja laitteestasi. Tietoja ei lähetetä eikä pyydetä, ellet paina ”toista”-painiketta." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Ulkoisten median asetukset" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "" @@ -3211,8 +3341,8 @@ msgstr "Sovellussalasanan luominen epäonnistui. Yritä uudelleen." msgid "Failed to create conversation" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Aloituspaketin luominen epäonnistui" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Viestin poistaminen epäonnistui" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Julkaisun poistaminen epäonnistui, yritä uudelleen" @@ -3238,8 +3368,8 @@ msgstr "Julkaisun poistaminen epäonnistui, yritä uudelleen" msgid "Failed to delete starter pack" msgstr "Aloituspaketin poistaminen epäonnistui" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "" @@ -3250,14 +3380,32 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Syötteiden asetusten lataaminen epäonnistui" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "GIF-animaatioiden lataaminen epäonnistui" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Vanhojen viestien lataaminen epäonnistui" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Ehdotettujen syötteiden lataaminen epäonnistui" msgid "Failed to load suggested follows" msgstr "Ehdotettujen seurattavien lataaminen epäonnistui" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Julkaisun kiinnittäminen epäonnistui" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "" @@ -3291,15 +3439,11 @@ msgstr "" msgid "Failed to save image: {0}" msgstr "Kuvan {0} tallentaminen epäonnistui" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Ilmoitusasetusten tallentaminen epäonnistui, yritä uudelleen" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "" @@ -3318,7 +3462,7 @@ msgstr "" msgid "Failed to submit appeal, please try again." msgstr "Valituksen lähettäminen epäonnistui. Yritä uudelleen." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Ketjun mykistäminen tai mykistyksen poistaminen epäonnistui, yritä uudelleen" @@ -3335,7 +3479,11 @@ msgstr "" msgid "Failed to update feeds" msgstr "Syötteiden päivittäminen epäonnistui" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Asetusten päivittäminen epäonnistui" @@ -3354,15 +3502,23 @@ msgstr "" msgid "Failed to verify handle. Please try again." msgstr "Käyttäjätunnuksen vahvistaminen epäonnistui. Yritä uudelleen." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Syöte" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Syöte käyttäjältä {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Syötteen valikko" @@ -3371,35 +3527,39 @@ msgstr "Syötteen valikko" msgid "Feed toggle" msgstr "Syötteen vaihtokytkin" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Palaute" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Palaute lähetetty!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Syötteet" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Syötteet ovat käyttäjien rakentamia mukautettuja algoritmeja, jotka vaativat vain vähän ohjelmointitaitoa. <0/> saadaksesi lisätietoa." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Syötteet päivitetty!" @@ -3428,6 +3588,14 @@ msgstr "" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Viimeistely" @@ -3448,7 +3616,7 @@ msgstr "Etsi käyttäjiä seurattavaksi" msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Valmis" @@ -3456,17 +3624,17 @@ msgstr "Valmis" msgid "Fitness" msgstr "Kuntoilu" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Joustava" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Seuraa" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Seuraa tiliä {0}" @@ -3518,7 +3686,7 @@ msgstr "Seuraa tiliä" msgid "Follow all" msgstr "Seuraa kaikkia" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Seuraa takaisin" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Seuraa takaisin" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Seuraajana <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Seuraajina <0>{0} ja {1, plural, one {# muu} other {# muuta}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Seuraajina <0>{0} ja <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Seuraajina <0>{0}, <1>{1} ja {2, plural, one {# muu} other {# muuta}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Tuntemasi käyttäjän @{0} seuraajat" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Tuntemasi seuraajat" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Seuratut" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Seuratut" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Seurataan käyttäjää {0}" @@ -3579,8 +3751,8 @@ msgstr "" msgid "Following feed preferences" msgstr "Seuratut-syötteen asetukset" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Seuratut-syötteen asetukset" @@ -3592,11 +3764,11 @@ msgstr "Seuraa sinua" msgid "Follows You" msgstr "Seuraa sinua" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Fontti" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Fonttikoko" @@ -3613,7 +3785,7 @@ msgstr "Turvallisuussyistä meidän on lähetettävä vahvistuskoodi sähköpost msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Turvallisuussyistä et voi tarkastella tätä enää uudelleen. Jos kadotat sovellussalasanan, sinun on luotava uusi." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Parhaan käyttökokemuksen saavuttamiseksi suosittelemme käyttämään teemafonttia." @@ -3643,11 +3815,15 @@ msgstr "Unohditko?" msgid "Frequently Posts Unwanted Content" msgstr "Julkaisee usein ei-toivottua sisältöä" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "Käyttäjältä @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "Syötteestä <0/>" @@ -3660,14 +3836,68 @@ msgstr "Galleria" msgid "Generate a starter pack" msgstr "Generoi aloituspaketti" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Näytä ohje" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "" @@ -3688,14 +3918,16 @@ msgstr "Anna profiilillesi kasvot" msgid "Glaring violations of law or terms of service" msgstr "Räikeät lain tai käyttöehtojen rikkomukset" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Siirry keskusteluun käyttäjän {0} kanssa" @@ -3779,8 +4017,8 @@ msgstr "Graafinen media" msgid "Half way there!" msgstr "Puolivälissä!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Käyttäjätunnus" @@ -3797,7 +4035,7 @@ msgstr "Käyttäjätunnus vaihdettu!" msgid "Handle too long. Please try a shorter one." msgstr "Käyttäjätunnus liian pitkä. Kokeile lyhyempää." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Haptiikka" @@ -3806,7 +4044,7 @@ msgstr "Haptiikka" msgid "Harassment, trolling, or intolerance" msgstr "Häirintä, trollaus tai suvaitsemattomuus" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Aihetunniste" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Aihetunniste {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "" -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Ongelmia?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Ohje" @@ -3839,8 +4077,13 @@ msgstr "Auta ihmisiä tietämään, ettet ole botti, lataamalla palveluun kuva t msgid "Here is your app password!" msgstr "Tässä on sovellussalasanasi!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "" @@ -3848,16 +4091,16 @@ msgstr "" msgid "Hidden by your moderation settings." msgstr "" -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Piilotettu lista" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Piilotettu lista" msgid "Hide" msgstr "Piilota" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Piilota" @@ -3875,18 +4118,18 @@ msgstr "Piilota" msgid "Hide customization options" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Piilota julkaisu minulta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Piilota vastaus kaikilta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Piilota vastaus minulta" @@ -3894,12 +4137,12 @@ msgstr "Piilota vastaus minulta" msgid "Hide this card" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Piilotetaanko tämä julkaisu?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Piilotetaanko tämä vastaus?" @@ -3913,11 +4156,11 @@ msgstr "Piilota trendaavat aiheet" msgid "Hide trending topics?" msgstr "Piilotetaanko trendaavat aiheet?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Piilota käyttäjäluettelo" @@ -3926,32 +4169,32 @@ msgstr "Piilota käyttäjäluettelo" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm, otettaessa yhteyttä syötteen palvelimeen ilmeni jonkinlainen ongelma. Ilmoita asiasta syötteen omistajalle." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm, syötteen palvelin vaikuttaa olevan väärin konfiguroitu. Ilmoita asiasta syötteen omistajalle." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm, syötteen palvelin vaikuttaa olevan poissa linjoilta. Ilmoita asiasta syötteen omistajalle." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm, syötteen palvelin antoi virheellisen vastauksen. Ilmoita asiasta syötteen omistajalle." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, meillä on vaikeuksia löytää tätä syötettä. Se on ehkä poistettu." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmm, näiden tietojen lataamisessa vaikuttaa olevan vaikauksia. Katso lisätietoja alta. Jos ongelma jatkuu, ota yhteys meihin." @@ -3959,15 +4202,15 @@ msgstr "Hmm, näiden tietojen lataamisessa vaikuttaa olevan vaikauksia. Katso li msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmm, emme pystyneet lataamaan tätä moderointipalvelua." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Odottakaa! Annamme vähitellen pääsyn videoon, ja olet yhä odotusjonossa. Tarkista tilanne pian uudelleen!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Koti" @@ -3984,10 +4227,10 @@ msgstr "Hostingyritys" msgid "Hot" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Kuumat vastaukset ensin" @@ -3996,10 +4239,6 @@ msgstr "Kuumat vastaukset ensin" msgid "How should we open this link?" msgstr "Kuinka haluat avata tämän linkin?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Ymmärrän" msgid "If alt text is long, toggles alt text expanded state" msgstr "Jos tekstivastine on pitkä, laajentaa tai pienentää sen" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Jos et ole vielä aikuinen kotimaasi lakien mukaan, huoltajasi tai laillisen edustajasi on luettava nämä ehdot puolestasi." @@ -4031,11 +4270,11 @@ msgstr "Jos poistat tämän listan, et voi palauttaa sitä." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Jos sinulla on oma verkkotunnus, voit käyttää sitä käyttäjätunnuksenasi. Näin voit itse vahvistaa henkilöllisyytesi. <0>Lue lisää täältä." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Jos poistat tämän julkaisun, et voi palauttaa sitä." @@ -4047,6 +4286,10 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Jos haluat vaihtaa salasanasi, lähetämme sinulle koodin vahvistaaksemme, että tämä on tilisi." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "" @@ -4091,13 +4334,41 @@ msgstr "Henkilönä esiintyminen taikka väärät väitteet henkilöllisyydestä msgid "Impersonation, misinformation, or false claims" msgstr "Henkilönä esiintyminen, valetieto tai väärät väitteet" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Sopimattomat viestit tai siveettömät linkit" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "" @@ -4105,7 +4376,7 @@ msgstr "" msgid "Incorrect username or password" msgstr "Väärä käyttäjätunnus tai salasana" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Syötä sähköpostiisi lähetetty koodi salasanan palautusta varten" @@ -4113,7 +4384,7 @@ msgstr "Syötä sähköpostiisi lähetetty koodi salasanan palautusta varten" msgid "Input confirmation code for account deletion" msgstr "Syötä vahvistuskoodi tilin poistoa varten" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Syötä uusi salasana" @@ -4129,10 +4400,14 @@ msgstr "Syötä sinulle sähköpostitse lähetetty koodi" msgid "Interaction limited" msgstr "Vuorovaikutusta rajoitettu" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Virheellinen kaksivaiheisen tunnistautumisen vahvistuskoodi." msgid "Invalid handle. Please try a different one." msgstr "Virheellinen käyttäjätunnus. Kokeile toista." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Virheellinen tai ei-tuettu julkaisutietue" @@ -4158,7 +4433,7 @@ msgstr "Virheellinen vahvistuskoodi" msgid "Invite a Friend" msgstr "Kutsu ystävä" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Kutsukoodi" @@ -4186,15 +4461,15 @@ msgstr "Kutsu kavereitasi seuraamaan suosikkisyötteitäsi ja -käyttäjiäsi" msgid "Invites, but personal" msgstr "Kutsuja mutta henkilökohtaisia" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Se on oikein" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Vain sinä olet nyt tässä! Lisää muita käyttäjiä aloituspakettiisi yllä olevalla haulla." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "Työpaikan tunnus: {0}" @@ -4220,11 +4495,27 @@ msgstr "Liity keskusteluun" msgid "Journalism" msgstr "Journalismi" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Merkinnnyt {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Tekijän merkitsemä." @@ -4237,7 +4528,7 @@ msgstr "Merkinnät" msgid "Labels added" msgstr "Merkinnät lisätty" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Merkinnät ovat käyttäjiä ja sisältöä koskevia huomioita. Niitä voidaan käyttää verkoston piilottamiseen, varoittamiseen ja luokitteluun." @@ -4253,22 +4544,30 @@ msgstr "Sisältösi merkinnät" msgid "Language selection" msgstr "Kielen valinta" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Kieliasetukset" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Kielet" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Suurempi" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Uusimmat" @@ -4282,7 +4581,6 @@ msgstr "lue lisää" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "" @@ -4290,6 +4588,10 @@ msgstr "" msgid "Learn More" msgstr "Lue lisää" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Lue lisää Blueskysta" @@ -4298,15 +4600,23 @@ msgstr "Lue lisää Blueskysta" msgid "Learn more about self hosting your PDS." msgstr "Lue lisää PDS:n itse hostaamisesta." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Lue lisää tähän sisältöön kohdistuvasta moderoinnista." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Lue lisää tästä varoituksesta" @@ -4316,12 +4626,16 @@ msgstr "Lue lisää tästä varoituksesta" msgid "Learn more about verification on Bluesky" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Lue lisää siitä, mikä on julkista Blueskyssa." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Lue lisää." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Poistu keskustelusta" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Jätä kaikki valitsematta nähdäksesi minkä tahansa kielen." +msgid "Leave them all unselected to see any language." +msgstr "" -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Poistutaan Blueskysta" @@ -4370,7 +4685,7 @@ msgstr "Aloitetaan!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Vaalea" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Tykkää" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Tykkää ({0, plural, one {# tykkäys} other {# tykkäystä}})" @@ -4397,6 +4712,10 @@ msgstr "Tykkää 10 julkaisusta" msgid "Like 10 posts to train the Discover feed" msgstr "Tykkää 10 julkaisusta kouluttaaksesi Discover-syötettä" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Tykkää tästä syötteestä" @@ -4405,8 +4724,8 @@ msgstr "Tykkää tästä syötteestä" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Tykänneet" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Tykänneet" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Tykännyt {0, plural, one {# käyttäjä} other {# käyttäjää}}" @@ -4428,20 +4747,36 @@ msgstr "Tykännyt {0, plural, one {# käyttäjä} other {# käyttäjää}}" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Tykännyt {likeCount, plural, one {# käyttäjä} other {# käyttäjää}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Tykkäykset" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Tämän julkaisun tykkäykset" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Lineaarisesti" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Lista" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Lista estetty" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Lista käyttäjältä {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "Lista käyttäjältä <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Oma listasi" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Listan mykistys poistettu" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Listat" @@ -4537,7 +4876,7 @@ msgstr "Lue lisää" msgid "Load more suggested feeds" msgstr "Lataa lisää ehdotettuja syötteitä" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Lataa uusia ilmoituksia" @@ -4552,11 +4891,11 @@ msgstr "Lataa uusia julkaisuja" msgid "Loading..." msgstr "Ladataan…" -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Loki" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Näkyvyys kirjautumattomana" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo käyttäjältä @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo käyttäjältä <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Logo käyttäjältä <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Paina pitkään avataksesi valikon tunnisteelle #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Näkyy muodossa XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "" msgid "Make one for me" msgstr "Tee minulle sellainen" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Varmista, että olet menossa oikeaan paikkaan!" @@ -4606,7 +4945,7 @@ msgstr "Varmista, että olet menossa oikeaan paikkaan!" msgid "Manage saved feeds" msgstr "Hallinnoi tallennettuja syötteitä" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "" @@ -4614,9 +4953,9 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "Hallinnoi mykistettyjä sanoja ja tunnisteita" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "" @@ -4625,15 +4964,13 @@ msgstr "" msgid "Mark as read" msgstr "Merkitse luetuksi" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "" @@ -4645,19 +4982,26 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Media, joka voi olla häiritsevää tai sopimatonta joillekin yleisöille." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "mainitut käyttäjät" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Mainituilta käyttäjiltä" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Maininnat" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Valikko" @@ -4665,7 +5009,7 @@ msgstr "Valikko" msgid "Message {0}" msgstr "Lähetä viesti käyttäjälle {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Viesti poistettu" @@ -4674,11 +5018,11 @@ msgstr "Viesti poistettu" msgid "Message deleted" msgstr "Viesti poistettu" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Viesti palvelimelta: {0}" @@ -4691,19 +5035,23 @@ msgstr "Viestin syöttökenttä" msgid "Message is too long" msgstr "Viesti on liian pitkä" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Viestit" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Harhaanjohtava tili" msgid "Misleading Post" msgstr "Harhaanjohtava julkaisu" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderointi" @@ -4725,17 +5073,17 @@ msgstr "Moderointi" msgid "Moderation details" msgstr "Moderoinnin yksityiskohdat" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Moderointilista käyttäjältä {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Moderointilista käyttäjältä <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Oma moderointilistasi" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Moderointilista päivitetty" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Moderointilistat" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Moderointilistat" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "moderointiasetukset" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Moderointitilat" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Moderointityökalut" @@ -4775,7 +5123,7 @@ msgstr "Moderointityökalut" msgid "Moderator has chosen to set a general warning on the content." msgstr "Moderaattori on valinnut asettaa sisällölle yleisen varoituksen." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Lisää" @@ -4790,13 +5138,13 @@ msgstr "Lisää syötteitä" msgid "More options" msgstr "Lisää valintoja" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Tykätyimmät ensin" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Tykätyimmät vastaukset ensin" @@ -4808,8 +5156,8 @@ msgstr "Elokuvat" msgid "Music" msgstr "Musiikki" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Mykistä" @@ -4819,8 +5167,8 @@ msgstr "Mykistä" msgid "Mute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Mykistä tämä sana vain tunnisteissa" msgid "Mute this word until you unmute it" msgstr "Mykistä tämä sana kunnes poistat sen mykistyksen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Mykistä ketju" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Mykistä sanoja ja tunnisteita" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Mykistetyt tilit" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Mykistetyt tilit" @@ -4898,7 +5246,7 @@ msgstr "Mykistettyjen tilien julkaisut poistetaan syötteestäsi ja ilmoituksist msgid "Muted by \"{0}\"" msgstr "Mykistänyt ”{0}”" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Mykistetyt sanat ja tunnisteet" @@ -4911,7 +5259,7 @@ msgstr "Mykistäminen on yksityistä. Mykistetyt tilit voivat edelleen olla vuor msgid "My Birthday" msgstr "Syntymäpäiväni" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Syötteeni" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Luonto" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Siirry kohteeseen {0}" @@ -4958,11 +5306,11 @@ msgstr "Siirtyy seuraavalle näytölle" msgid "Navigates to your profile" msgstr "Siirtyy profiiliisi" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Tarvitseeko sinun vaihtaa se?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Tarvitseeko sinun ilmiantaa tekijänoikeusrikkomus?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Uusi" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Uusi chatti" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Uusia viestejä" msgid "New Moderation List" msgstr "Uusi moderointilista" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Uusi salasana" @@ -5029,7 +5396,7 @@ msgstr "Uusi salasana" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Uusi julkaisu" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Uusi julkaisu" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Käyttäjän uusien tietojen valintaikkuna" @@ -5054,10 +5429,14 @@ msgstr "Käyttäjän uusien tietojen valintaikkuna" msgid "New User List" msgstr "Uusi käyttäjälista" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Uusimmat vastaukset ensin" @@ -5071,15 +5450,15 @@ msgstr "Uutiset" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "Ei DNS-paneelia" msgid "No expiry set" msgstr "" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Esillä olevia GIF-kuvia ei löydy. Tenorissa saattaa olla ongelma." @@ -5119,32 +5498,35 @@ msgstr "" msgid "No likes yet" msgstr "Ei vielä tykkäyksiä" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Et enää seuraa käyttäjää {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Ei vielä viestejä" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Ei vielä ilmoituksia!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Ei keneltäkään" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Vain tekijä voi lainata tätä julkaisua." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Ei vielä julkaisuja." @@ -5171,7 +5553,7 @@ msgstr "Ei tuloksia" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Tuloksia ei löytynyt" @@ -5179,9 +5561,9 @@ msgstr "Tuloksia ei löytynyt" msgid "No results found for \"{query}\"" msgstr "Ei tuloksia haulle ”{query}”" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Ei tuloksia haulle {query}" @@ -5189,7 +5571,7 @@ msgstr "Ei tuloksia haulle {query}" msgid "No results." msgstr "" -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Ei tuloksia haulle ”{search}”." @@ -5198,7 +5580,7 @@ msgstr "Ei tuloksia haulle ”{search}”." msgid "No thanks" msgstr "Ei kiitos" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Ei keneltäkään" @@ -5223,59 +5605,76 @@ msgstr "Ketään ei löytynyt. Kokeile hakea jotakuta muuta." msgid "Non-sexual Nudity" msgstr "Ei-seksuaalinen alastomuus" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Ei löydy" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Huomio jakamisesta" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Huomio: Bluesky on avoin ja julkinen verkosto. Tämä asetus rajoittaa vain sisältösi näkyvyyttä Bluesky-sovelluksessa ja -verkkosivustolla, eivätkä muut sovellukset välttämättä noudata tätä asetusta. Sisältösi voi silti näkyä kirjautumattomille käyttäjille muissa sovelluksissa ja muilla sivustoilla." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Täällä ei mitään" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Ilmoitusten suodattimet" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Ilmoitusasetukset" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Ilmoitusasetukset" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Ilmoitusasäänet" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Ilmoitusasäänet" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Ilmoitukset" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "nyt" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Merkitsemätön alastomuus tai aikuissisältö" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Pois" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Voi ei!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Selvä" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Vanhimmat vastaukset ensin" @@ -5331,19 +5736,19 @@ msgstr "Vanhimmat vastaukset ensin" msgid "on<0><1/><2><3/>" msgstr "palvelussa<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Käyttöönoton nollaus" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "Ainakin yhdeltä GIF-animaatiolta puuttuu tekstivastine." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Ainakin yhdeltä kuvalta puuttuu tekstivastine." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Ainakin yhdeltä videolta puuttuu tekstivastine." @@ -5351,13 +5756,15 @@ msgstr "Ainakin yhdeltä videolta puuttuu tekstivastine." msgid "Only .jpg and .png files are supported" msgstr "Vain .jpg- ja .png-tiedostoja tuetaan" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Vain {0} voi vastata." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Sisältää vain kirjaimia, numeroita ja yhdysviivoja" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Vain kuvatiedostoja tuetaan" msgid "Only WebVTT (.vtt) files are supported" msgstr "Vain WebVTT (.vtt) -tiedostoja tuetaan" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Hups, jokin meni vikaan!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Hups!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Avaa alavalikko" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Avaa emojinvalitsin" @@ -5416,7 +5822,7 @@ msgstr "Avaa syötteen valinnat" msgid "Open full emoji list" msgstr "" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Avaa linkki {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Avaa linkki {niceUrl}" msgid "Open message options" msgstr "Avaa viestin valinnat" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Avaa moderoinnin vianetsintäsivu" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Avaa mykistettyjen sanojen ja tunnisteiden asetukset" @@ -5453,16 +5859,16 @@ msgstr "" msgid "Open starter pack menu" msgstr "Avaa aloituspaketin valikko" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Avaa storybook-sivu" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Avaa järjestelmäloki" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Avaa {numItems} valintaa" @@ -5490,11 +5896,11 @@ msgstr "Avaa laitteen kameran" msgid "Opens captions and alt text dialog" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Avaa editorin" @@ -5502,7 +5908,7 @@ msgstr "Avaa editorin" msgid "Opens device photo gallery" msgstr "Avaa laitteen kuvagallerian" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "" @@ -5520,15 +5926,19 @@ msgstr "Avaa vaiheet olemassa olevaan Bluesky-tiliisi kirjautumiseksi" msgid "Opens GIF select dialog" msgstr "Avaa GIF-valintaikkunan" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Avaa kutsukoodien luettelon" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "" @@ -5536,12 +5946,8 @@ msgstr "" msgid "Opens password reset form" msgstr "Avaa salasanan palautuslomakkeen" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Avaa linkitetyn verkkosivun" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Avaa tämän profiilin" @@ -5558,7 +5964,7 @@ msgstr "Anna halutessasi lisätietoa alla:" msgid "Options:" msgstr "Valinnat:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Tai yhdistele näitä valintoja:" @@ -5600,6 +6006,10 @@ msgstr "Toinen tili" msgid "Other..." msgstr "Muu…" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "" @@ -5608,7 +6018,7 @@ msgstr "" msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Moderaattorimme ovat arvioineet raportteja ja päättäneet estää pääsysi Blueskyn chatteihin." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Sivua ei löydy" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Sivua ei löydy" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Salasana päivitetty" msgid "Password updated!" msgstr "Salasana päivitetty!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Pysäytä" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Pysäytä video" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Käyttäjät" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Käyttäjät, joita @{0} seuraa" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Käyttäjät, jotka seuraavat tiliä @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "" @@ -5704,12 +6119,12 @@ msgstr "Kiinnitä kotinäkymään" msgid "Pin to Home" msgstr "Kiinnitä kotinäkymään" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Kiinnitä profiiliisi" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Kiinnitetty" @@ -5718,7 +6133,7 @@ msgstr "Kiinnitetty" msgid "Pinned {0} to Home" msgstr "Kiinnitetty {0} kotinäkymään" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Kiinnitetyt syötteet" @@ -5726,38 +6141,38 @@ msgstr "Kiinnitetyt syötteet" msgid "Pinned to your feeds" msgstr "Kiinnitetty syötteisiisi" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Toista" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Toista {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Toista video" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Toista video" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Toistaa GIF-animaation" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "" @@ -5765,12 +6180,16 @@ msgstr "" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Valitse käyttäjätunnuksesi." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Valitse salasanasi." @@ -5782,7 +6201,8 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Täydennä vahvistus-captcha, ole hyvä." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "" @@ -5804,6 +6224,7 @@ msgstr "Anna tälle sovellussalasanalle uniikki nimi tai käytä satunnaisesti l msgid "Please enter a valid code." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "" @@ -5812,7 +6233,11 @@ msgstr "" msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Syötä mykistettäväksi kelpaava sana, tunniste tai fraasi" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "" #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Syötä sähköpostiosoitteesi." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Syötä kutsukoodisi." @@ -5853,6 +6278,19 @@ msgstr "Selitä, miksi {0} on mielestäsi virheellisesti asettanut tämän merki msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Selitä, miksi chattisi on mielestäsi virheellisesti poistettu käytöstä" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "" @@ -5870,9 +6308,9 @@ msgstr "Kirjaudu sisään käyttäjänä @{0}" msgid "Please verify your email" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Vahvista sähköpostiosoitteesi" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Politiikka" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Julkaise" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Julkaise" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Julkaise" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Julkaise kaikki" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Julkaissut {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Julkaissut @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Julkaisu poistettu" @@ -5919,11 +6362,14 @@ msgstr "Julkaisu poistettu" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Julkaisun lataaminen palveluun epäonnistui. Tarkista internetyhteytesi ja yritä uudelleen." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Julkaisu piilotettu" @@ -5937,11 +6383,11 @@ msgstr "Mykistetyn sanan perusteella piilotettu julkaisu" msgid "Post Hidden by You" msgstr "Piilottamasi julkaisu" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Julkaisun vuorovaikutusasetukset" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "" @@ -5954,8 +6400,10 @@ msgstr "Julkaisukieli" msgid "Post Languages" msgstr "Julkaisukielet" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Julkaisua ei löydy" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Julkaisu irrotettu" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Julkaisut" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Julkaisuja voi mykistää tekstin, tunnisteiden tai kummankin perusteella. Suosittelemme välttämään yleisiä sanoja, jotka esiintyvät monissa julkaisuissa. Muuten voi käydä niin, ettei mitään julkaisuja näytetä." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Julkaisut piilotettu" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Mahdollisesti harhaanjohtava linkki" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Asetus tallennettu" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Paina yrittääksesi muodostaa yhteyden uudelleen" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Paina yrittääksesi uudelleen" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Paina näyttääksesi tämän tilin seuraajat, joita seuraat myös itse" @@ -6015,40 +6469,46 @@ msgstr "Edellinen kuva" msgid "Primary Language" msgstr "Ensisijainen kieli" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Aseta seurattusi ensisijaisiksi" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Etusijan ilmoitukset" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Yksityisyys" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Yksityisyys ja turvallisuus" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Yksityisyys ja turvallisuus" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Tietosuojakäytäntö" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Käsitellään videota…" @@ -6062,15 +6522,14 @@ msgstr "Käsitellään…" msgid "profile" msgstr "profiili" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Profiili" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Profiili päivitetty" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Julkisia, jaettavia listoja, joita voidaan käyttää syötteiden ohjaamiseen." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "QR-koodi kopiooitu leikepöydelle!" @@ -6119,44 +6594,52 @@ msgstr "QR-koodi ladattu!" msgid "QR code saved to your camera roll!" msgstr "QR-koodi tallennettu kuvagalleriaasi!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Lainaa julkaisua" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "Lainausjulkaisu liitettiin uudelleen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "Lainausjulkaisu irrotettiin onnistuneesti" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Lainausjulkaisut poissa käytöstä" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Lainausasetukset" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Lainaukset" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Tämän julkaisun lainaukset" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Satunnainen (niin sanottu ”lähettäjän ruletti”)" @@ -6164,8 +6647,8 @@ msgstr "Satunnainen (niin sanottu ”lähettäjän ruletti”)" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Nopeusraja ylitettiin – olet yrittänyt vaihtaa käyttäjätunnustasi liian monta kertaa lyhyessä ajassa. Odota hetki ennen kuin yrität uudelleen." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Liitä lainaus uudelleen" @@ -6177,30 +6660,42 @@ msgstr "" msgid "Reactivate your account" msgstr "Palauta tilisi käyttöön" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Lue Blueskyn blogia" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Lue Blueskyn tietosuojakäytäntö" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Lue Blueskyn käyttöehdot" @@ -6213,6 +6708,14 @@ msgstr "" msgid "Reason:" msgstr "Syy:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Viimeaikaiset haut" @@ -6234,8 +6737,8 @@ msgstr "" msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Lataa keskustelut uudelleen" @@ -6244,10 +6747,9 @@ msgstr "Lataa keskustelut uudelleen" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Poista" @@ -6259,17 +6761,17 @@ msgstr "Poista {displayName} aloituspaketista" msgid "Remove {historyItem}" msgstr "" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Poista tili" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Poista liite" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Poista profiilikuva" @@ -6284,24 +6786,22 @@ msgstr "Poista upotus" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Poista syöte" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Poistetaanko syöte?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Poista syötteistäni" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Poistetaanko pikakäytöstä?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "Poista tallennetuista syötteistä" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Poista kuva" @@ -6332,12 +6831,8 @@ msgstr "Poista mykistyssana listastasi" msgid "Remove profile" msgstr "Poista profiili" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Poista lainaus" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Poista uudelleenjulkaisu" @@ -6345,7 +6840,7 @@ msgstr "Poista uudelleenjulkaisu" msgid "Remove subtitle file" msgstr "Poista tekstitystiedosto" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Poista tämä syöte tallennetuista syötteistäsi" @@ -6364,11 +6859,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Tekijän poistama" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Poistamasi" @@ -6377,10 +6872,6 @@ msgstr "Poistamasi" msgid "Removed from list" msgstr "Poistettu listasta" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Poistettu syötteistäni" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Poistettu tallennetuista syötteistä" @@ -6395,34 +6886,36 @@ msgstr "Poistettu syötteistäsi" msgid "Removed verification" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Poistaa lainausjulkaisun" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Korvaa syötteellä Discover" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Vastaukset" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Vastaaminen poissa käytöstä" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Tähän julkaisuun vastaaminen on poissa käytöstä." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Vastaa" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Vastaa ({0, plural, one {# vastaus} other {# vastausta}})" @@ -6436,50 +6929,55 @@ msgstr "Ketjun aloittajan piilottama vastaus" msgid "Reply Hidden by You" msgstr "Piilottamasi vastaus" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Vastausasetukset" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "Vastausasetukset ovat ketjun aloittajan valitsemat" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Vastausten järjestely" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Vastaa käyttäjälle <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Vastaa estettyyn julkaisuun" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Vastaa julkaisuun" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Vastaa sinulle" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Vastauksen näkyvyys päivitetty" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Vastaus piilotettiin onnistuneesti" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Ilmianna syöte" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Ilmianna viesti" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Ilmianna julkaisu" @@ -6567,25 +7065,26 @@ msgstr "Ilmianna tämä aloituspaketti" msgid "Report this user" msgstr "Ilmianna tämä käyttäjä" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Uudelleenjulkaise" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Uudelleenjulkaise" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Uudelleenjulkaise ({0, plural, one {# uudelleenjulkaisu} other {# uudelleenjulkaisua}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Uudelleenjulkaise tai lainaa julkaisua" @@ -6594,26 +7093,38 @@ msgstr "Uudelleenjulkaise tai lainaa julkaisua" msgid "Reposted By" msgstr "Uudelleenjulkaisseet" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "{0} uudelleenjulkaisi" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "<0><1/> uudelleenjulkaisi" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Uudelleenjulkaisit" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Tämän julkaisun uudelleenjulkaisut" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" msgstr "" #: src/view/com/modals/ChangePassword.tsx:253 @@ -6621,8 +7132,8 @@ msgstr "" msgid "Request Code" msgstr "Pyydä koodia" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Edellytä tekstivastinetta ennen julkaisua" @@ -6630,7 +7141,7 @@ msgstr "Edellytä tekstivastinetta ennen julkaisua" msgid "Require an email code to sign in to your account." msgstr "Edellytä sähköpostikoodia tilillesi kirjautumiseen." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Vaaditaan tälle palveluntarjoajalle" @@ -6642,10 +7153,6 @@ msgstr "Pakollinen alueellasi" msgid "Resend" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Lähetä sähköpostiviesti uudelleen" msgid "Resend Verification Email" msgstr "Lähetä vahvistussähköpostiviesti uudelleen" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Palautuskoodi" @@ -6667,8 +7180,8 @@ msgstr "Palautuskoodi" msgid "Reset Code" msgstr "Palautuskoodi" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Nollaa käyttöönoton tila" @@ -6687,21 +7200,23 @@ msgstr "Yrittää uudelleen viimeisintä toimintoa, joka epäonnistui" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Yritä uudelleen" @@ -6721,19 +7236,19 @@ msgstr "Palaa kotinäkymään" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Palaa edelliselle sivulle" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Tallenna" @@ -6762,15 +7276,13 @@ msgstr "Tallenna" msgid "Save birthday" msgstr "Tallenna syntymäpäivä" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Tallenna muutokset" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Tallenna muutokset" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Tallenna QR-koodi" msgid "Save to my feeds" msgstr "Tallenna syötteisiini" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Tallennetut syötteet" @@ -6802,18 +7314,14 @@ msgstr "Tallennetut syötteet" msgid "Saved to your feeds" msgstr "Tallennettu syötteisiisi" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Tallentaa profiilisi muutokset" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Tallentaa kuvan rajausasetukset" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Tervehdi!" @@ -6826,16 +7334,16 @@ msgstr "Tiede" msgid "Scroll to top" msgstr "Vieritä alkuun" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Haku" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -6861,7 +7369,7 @@ msgstr "Haku ”{query}”" msgid "Search for \"{searchText}\"" msgstr "Haku ”{searchText}”" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Hae syötteitä, joita haluat ehdottaa toisille." @@ -6877,10 +7385,14 @@ msgstr "" msgid "Search for posts, users, or feeds" msgstr "" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Hae GIF-animaatioita" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "" @@ -6890,12 +7402,12 @@ msgstr "" msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Hae profiileja" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Hae Tenorista" @@ -6903,7 +7415,7 @@ msgstr "Hae Tenorista" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "" @@ -6912,10 +7424,6 @@ msgstr "" msgid "Security step required" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Turvatarkistus vaaditaan" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "" @@ -6936,14 +7444,31 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Katso Blueskyn työpaikat" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Katso tämä opas" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Kelauksen liukusäädin. Käytä nuolinäppäimiä eteen- ja taaksepäin kelaamiseen ja välilyöntiä toistamiseen tai pysäyttämiseen." +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Valitse väri" @@ -6988,7 +7513,7 @@ msgstr "Valitse olemassa olevalta tililtä" msgid "Select GIF" msgstr "Valitse GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Valitse GIF ”{0}”" @@ -6996,6 +7521,11 @@ msgstr "Valitse GIF ”{0}”" msgid "Select how long to mute this word for." msgstr "Valitse, kuinka pitkään tämä sana mykistetään." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Valitse kieli…" @@ -7004,7 +7534,7 @@ msgstr "Valitse kieli…" msgid "Select languages" msgstr "Valitse kielet" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "" @@ -7045,12 +7575,12 @@ msgstr "" msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Valitse, mitä kieliä haluat tilaamiesi syötteiden sisältävän. Jos et valitse mitään, kaikki kielet näytetään." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Aseta syntymäaikasi" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Valitse kiinnostuksen kohteesi alla olevista vaihtoehdoista" @@ -7058,7 +7588,11 @@ msgstr "Valitse kiinnostuksen kohteesi alla olevista vaihtoehdoista" msgid "Select your preferred language for translations in your feed." msgstr "Valitse käännösten kieli syötteessäsi." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "" @@ -7066,17 +7600,9 @@ msgstr "" msgid "Send a neat website!" msgstr "Lähetä siisti verkkosivusto!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Lähetä vahvistussähköpostiviesti" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Lähetä sähköpostiviesti" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Lähetä sähköpostiviesti" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Lähetä palautetta" @@ -7095,7 +7621,7 @@ msgstr "Lähetä palautetta" msgid "Send message" msgstr "Lähetä viesti" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "" @@ -7114,20 +7640,20 @@ msgstr "Lähetä raportti" msgid "Send report to {0}" msgstr "Lähetä raportti palveluun {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Lähetä vahvistussähköpostiviesti" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Lähetä yksityisviestillä" @@ -7143,7 +7669,7 @@ msgstr "Palvelimen osoite" msgid "Set app icon to {0}" msgstr "Aseta sovelluskuvakkeeksi {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Aseta syntymäaika" @@ -7159,13 +7685,57 @@ msgstr "Määritä tilisi" msgid "Sets email for password reset" msgstr "Asettaa sähköpostiosoitteen salasanan palautusta varten" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Asetukset" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "Jaa siisti tarina!" msgid "Share a fun fact!" msgstr "Jaa hauska fakta!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Jaa kuitenkin" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Jaa linkki" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Jaa linkki" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Jaa linkki -valintaikkuna" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "" @@ -7247,8 +7812,8 @@ msgstr "Jaa tämä aloituspaketti" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Jaa tämä aloituspaketti ja auta muita liittymään yhteisöösi Blueskyssa." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "" msgid "Share your favorite feed!" msgstr "Jaa suosikkisyötteesi!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Jaettujen asetusten testeri" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Jakaa linkitetyn verkkosivun" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Näytä" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Näytä tekstivastine" @@ -7303,8 +7864,8 @@ msgstr "" msgid "Show hidden replies" msgstr "Näytä piilotetut vastaukset" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Näytä vähemmän tällaista" @@ -7312,55 +7873,63 @@ msgstr "Näytä vähemmän tällaista" msgid "Show list anyway" msgstr "Näytä lista silti" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Näytä lisää" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Näytä enemmän tällaista" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Näytä mykistetyt vastaukset" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Näytä lainausjulkaisut" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Näytä vastaukset" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Näytä vastaukset" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Näytä vastaukset ketjuna" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Näytä seuraamiesi käyttäjien vastaukset ennen muita vastauksia" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Näytä vastaus kaikille" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Näytä uudelleenjulkaisut" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Näytä näytteitä tallennetuista syötteistäsi Seuratut-syötteessäsi" @@ -7372,16 +7941,17 @@ msgstr "Näytä varoitus" msgid "Show warning and filter from feeds" msgstr "Näytä varoitus ja suodata syötteistä" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "" @@ -7390,14 +7960,15 @@ msgstr "" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "Kirjaudu tiliin, joka ei ole luettelossa" msgid "Sign in to Bluesky or create a new account" msgstr "Kirjaudu Blueskyhin tai luo uusi tili" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Kirjaudu ulos" @@ -7444,8 +8020,8 @@ msgstr "Kirjaudu ulos" msgid "Sign Out" msgstr "Kirjaudu ulos" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Kirjaudutaanko ulos?" @@ -7459,12 +8035,12 @@ msgstr "Sisäänkirjautuminen vaaditaan" msgid "Signed in as @{0}" msgstr "Kirjautunut sisään käyttäjänä @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Samankaltaisia tilejä" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Ohita" @@ -7472,12 +8048,11 @@ msgstr "Ohita" msgid "Skip this flow" msgstr "Ohita nämä vaiheet" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Pienempi" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "" @@ -7490,11 +8065,11 @@ msgstr "Ohjelmistokehitys" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Muita syötteitä, joista saattaisit pitää" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Jotkut voivat vastata" @@ -7510,10 +8085,11 @@ msgstr "" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "" -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Jokin meni vikaan" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Jokin meni vikaan, yritä uudelleen" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Jokin meni vikaan. Yritä uudelleen." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Jokin meni vikaan!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "Jokin meni vikaan. Yritä uudelleen." @@ -7539,20 +8118,23 @@ msgstr "Jokin meni vikaan. Yritä uudelleen." msgid "Something wrong? Let us know." msgstr "Onko jokin vialla? Kerro meille." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "Pahoittelut! Istuntosi on vanhentunut. Kirjaudu sisään uudelleen." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Järjestele vastaukset" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Järjestele vastaukset seuraavasti:" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Järjestele saman julkaisun vastaukset seuraavasti:" @@ -7579,7 +8161,7 @@ msgstr "Roskaposti; liialliset maininnat tai vastaukset" msgid "Sports" msgstr "Urheilu" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "" @@ -7601,9 +8183,9 @@ msgstr "Ala lisätä käyttäjiä!" msgid "Start chat with {displayName}" msgstr "Aloita chatti käyttäjän {displayName} kanssa" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Aloituspaketti" @@ -7611,12 +8193,12 @@ msgstr "Aloituspaketti" msgid "Starter pack by {0}" msgstr "Aloituspaketti käyttäjältä {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Aloituspaketti käyttäjältä <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Oma aloituspakettisi" @@ -7638,19 +8220,21 @@ msgstr "Aloituspakettien avulla voit jakaa helposti suosikkisyötteesi ja -käyt msgid "Status Page" msgstr "Tilasivu" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Vaihe {0}/{1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Tallennustila tyhjennetty. Sinun on nyt käynnistettävä sovellus uudelleen." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "" @@ -7676,10 +8260,14 @@ msgstr "" msgid "Subscribe" msgstr "Tilaa" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Tilaa @{0} käyttääksesi näitä merkintöjä:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Tilaa merkitsijä" @@ -7692,8 +8280,12 @@ msgstr "Tilaa tämä merkitsijä" msgid "Subscribe to this list" msgstr "Tilaa tämä lista" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Onnistui!" @@ -7705,7 +8297,7 @@ msgstr "" msgid "Suggested Accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Ehdotuksia sinulle" @@ -7714,26 +8306,26 @@ msgstr "Ehdotuksia sinulle" msgid "Suggestive" msgstr "Vihjaileva" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Tuki" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Vaihda tiliä" @@ -7742,24 +8334,24 @@ msgstr "Vaihda tiliä" msgid "Switch Account" msgstr "Vaihda tiliä" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Järjestelmä" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Järjestelmäloki" @@ -7767,6 +8359,18 @@ msgstr "Järjestelmäloki" msgid "Tags only" msgstr "Vain tunnisteissa" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Kerro hieman lisää" msgid "Terms" msgstr "Ehdot" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Käyttöehdot" @@ -7848,10 +8454,6 @@ msgstr "Tekstikenttä" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Kiitos! Sähköpostiosoitteesi on vahvistettu onnistuneesti!" - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Kiitos. Raporttisi on lähetetty." @@ -7864,28 +8466,28 @@ msgstr "Kiitos, olet vahvistanut sähköpostiosoitteesi onnistuneesti. Voit sulk msgid "That contains the following:" msgstr "Se sisältää seuraavaa:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Tuo käyttätunnus on jo käytössä." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Tätä aloituspakettia ei löydy." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Siinä kaikki, ihmiset!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "Tili voi olla vuorovaikutuksessa kanssasi, kun poistat eston." @@ -7900,7 +8502,7 @@ msgstr "Sovellus käynnistyy uudelleen" msgid "The author of this thread has hidden this reply." msgstr "Ketjun aloittaja on piilottanut tämän vastauksen." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Blueskyn selainsovellus" @@ -7920,10 +8522,6 @@ msgstr "Discover-syöte" msgid "The Discover feed now knows what you like" msgstr "Discover-syöte tietää nyt, mistä pidät" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "" - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "Kokemus on parempi sovelluksessa. Lataa Bluesky nyt, niin jatkamme siitä, mihin jäit." @@ -7944,8 +8542,16 @@ msgstr "Seuraavat merkinnät asetettiin sisällöllesi." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Julkaisu on ehkä poistettu." @@ -7953,9 +8559,10 @@ msgstr "Julkaisu on ehkä poistettu." msgid "The Privacy Policy has been moved to <0/>" msgstr "Tietosuojakäytäntö on siirretty kohtaan <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "Valittu video on suurempi kuin 100 Mt." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "" #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "Käyttöehdot on siirretty kohtaan" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "Antamasi vahvistuskoodi on virheellinen. Varmista, että olet käyttänyt oikeaa vahvistuslinkkiä, tai pyydä uusi." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Teema" @@ -7990,14 +8597,14 @@ msgstr "Teema" msgid "There is no time limit for account deactivation, come back any time." msgstr "Tilin käytöstä poistamiseen ei ole aikarajaa. Palaa takaisin milloin tahansa." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Yhteyden muodostamisessa Tenoriin ilmeni ongelma." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Yhteydenotossa palvelimeen ilmeni ongelma" @@ -8006,17 +8613,12 @@ msgstr "Yhteydenotossa palvelimeen ilmeni ongelma" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Yhteydenotossa palvelimeen ilmeni ongelma. Tarkista internetyhteytesi ja yritä uudelleen." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Yhteydenotossa palvelimeen ilmeni ongelma" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Ilmoitusten hakemisessa ilmeni ongelma. Napauta tästä yrittääksesi uudelleen." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Julkaisujen hakemisessa ilmeni ongelma. Napauta tästä yrittääksesi uudelleen." @@ -8037,7 +8639,7 @@ msgstr "Listojesi hakemisessa ilmeni ongelma. Napauta tästä yrittääksesi uud msgid "There was an issue fetching your service info" msgstr "Palvelutietojesi hakemisessa ilmeni ongelma" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Tämän syötteen poistamisessa ilmeni ongelma. Tarkista internetyhteytesi ja yritä uudelleen." @@ -8052,9 +8654,9 @@ msgstr "Raportin lähettämisessä ilmeni ongelma. Tarkista internetyhteytesi." msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Syötteidesi päivityksessä ilmeni ongelma. Tarkista internetyhteytesi ja yritä uudelleen." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Syötteidesi päivityksessä ilmeni ongelma. Tarkista internetyhteytesi msgid "There was an issue! {0}" msgstr "Ilmeni ongelma! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Ilmeni ongelma! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Ilmeni ongelma. Tarkista internetyhteytesi ja yritä uudelleen." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Sovelluksessa ilmeni odottamaton ongelma. Kerro meille, jos tämä tapahtui sinulle!" @@ -8089,7 +8691,7 @@ msgstr "Sovelluksessa ilmeni odottamaton ongelma. Kerro meille, jos tämä tapah msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Blueskyyn on tullut paljon uusia käyttäjiä! Aktivoimme tilisi niin pian kuin mahdollista." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Nämä asetukset vaikuttavat vain Seuratut-syötteeseen." @@ -8146,7 +8748,7 @@ msgstr "Tätä sisältöä hostaa {0}. Haluatko sallia ulkoisen median?" msgid "This content is not available because one of the users involved has blocked the other." msgstr "Tämä sisältö ei ole saatavilla, koska toinen käyttäjistä on estänyt toisen." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Tämä sisältö ei ole nähtävissä ilman Bluesky-tiliä." @@ -8158,6 +8760,10 @@ msgstr "" msgid "This email is already associated with your account." msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Tämä ominaisuus on beetavaiheessa. Voit lukea lisää arkistojen viennistä <0>tästä blogijulkaisusta." @@ -8170,7 +8776,7 @@ msgstr "" msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Tämä ominaisuus ei ole saatavilla sovellussalasanaa käytettäessä. Kirjaudu sisään pääsalasanallasi." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Tämä syöte saa tällä hetkellä paljon liikennettä ja on tilapäisesti pois käytöstä. Yritä uudelleen myöhemmin." @@ -8209,11 +8815,11 @@ msgstr "Tämä merkintä on tekijän asettama." msgid "This label was applied by you." msgstr "Tämä merkintä on itse asettamasi." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Tämä merkitsijä ei ole ilmoittanut, mitä merkintöjä se julkaisee, eikä välttämättä ole aktiivinen." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Tämä linkki vie sinut seuraavalle verkkosivustolle:" @@ -8233,29 +8839,28 @@ msgstr "Tämä lista on tyhjä." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Tämä moderointipalvelu ei ole saatavilla. Katso lisätietoja alta. Jos ongelma jatkuu, ota yhteys meihin." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Tämä julkaisu väittää olevansa luotu <0>{0}, mutta ensi kerran se on nähty Blueskyssa <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Tämä julkaisu on poistettu." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Tämä julkaisu on näkyvissä vain kirjautuneille käyttäjille. Sitä ei näytetä kirjautumattomille henkilöille." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Tämä julkaisu piilotetaan syötteistä ja ketjuista. Tätä ei voi kumota." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "Tämän julkaisun tekijä on poistanut lainausjulkaisut käytöstä." @@ -8263,11 +8868,11 @@ msgstr "Tämän julkaisun tekijä on poistanut lainausjulkaisut käytöstä." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Tämä profiili näkyy vain kirjautuneille käyttäjille. Se ei näy kirjautumattomille henkilöille." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Tämä vastaus sijoitetaan piilotettuun osaan ketjusi loppuun, ja ilmoitukset myöhemmistä vastauksista – niin omista kuin muidenkin – mykistetään." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Tämä palvelu ei ole toimittanut käyttöehtoja tai tietosuojakäytäntöä." @@ -8275,6 +8880,10 @@ msgstr "Tämä palvelu ei ole toimittanut käyttöehtoja tai tietosuojakäytänt msgid "This should create a domain record at:" msgstr "Tämän pitäisi luoda tietue verkkotunnukseen" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" @@ -8316,16 +8925,18 @@ msgstr "Tämä käyttäjä ei seuraa ketään." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Tämä poistaa sanan ”{0}” mykistyksistäsi. Voit lisätä sen takaisin myöhemmin." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Tämä poistaa tilin @{0} pikakäyttöluettelosta." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Tämä poistaa julkaisusi tästä lainausjulkaisusta kaikilta käyttäjiltä ja korvaa sen paikkamerkillä." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Ketjun valinnat" @@ -8334,24 +8945,27 @@ msgstr "Ketjun valinnat" msgid "Thread preferences" msgstr "Ketjun asetukset" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Ketjun asetukset" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Ketjuna" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Ketjunäkymä" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Ketjujen asetukset" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "" @@ -8376,42 +8990,56 @@ msgstr "Kenelle haluaisit lähettää tämän raportin?" msgid "Today" msgstr "Tänään" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Avaa tai sulje pudotusvalikko" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Vaihda ottaaksesi aikuisille tarkoitetun sisällön käyttöön tai poistaaksesi sen käytöstä" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Suosituimmat" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Aihe" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Käännä" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Trendaavat" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "" @@ -8428,14 +9056,10 @@ msgstr "Yritä uudelleen" msgid "TV" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Kaksivaiheinen tunnistautuminen" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Kirjoita haluamasi käyttäjätunnus" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Kirjoita viestisi tähän" @@ -8453,7 +9077,7 @@ msgstr "Yhteyden muodostaminen ei onnistu. Tarkista internetyhteytesi ja yritä #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Yhteyden muodostaminen palveluusi ei onnistu. Tarkista internetyhteytesi msgid "Unable to delete" msgstr "Poistaminen ei onnistu" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Poista esto" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Poista esto" @@ -8486,7 +9126,7 @@ msgstr "Poista esto" msgid "Unblock account" msgstr "Poista tilin esto" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Poistetaanko tilin esto?" @@ -8495,13 +9135,13 @@ msgstr "Poistetaanko tilin esto?" msgid "Unblock list" msgstr "" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Kumoa uudelleenjulkaisu" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Kumoa uudelleenjulkaisu ({0, plural, one {# uudelleenjulkaisu} other {# uudelleenjulkaisua}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Älä seuraa" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Lopeta käyttäjän {0} seuraaminen" @@ -8523,7 +9163,7 @@ msgstr "Lopeta tilin seuraaminen" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "Älä tykkää" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Älä tykkää ({0, plural, one {# tykkäys} other {# tykkäystä}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "" @@ -8555,8 +9195,8 @@ msgstr "Poista mykistys" msgid "Unmute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Poista keskustelun mykistys" msgid "Unmute list" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Poista ketjun mykistys" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Poista videon mykistys" @@ -8597,8 +9237,8 @@ msgstr "" msgid "Unpin from home" msgstr "Irrota kotinäkymästä" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Irrota profiilista" @@ -8614,8 +9254,8 @@ msgstr "Irrotettu {0} kotinäkymästä" msgid "Unpinned from your feeds" msgstr "Irrotettu syötteistäsi" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "" @@ -8636,7 +9276,7 @@ msgstr "Peruuta merkitsijän tilaus" msgid "Unsubscribed from list" msgstr "Listan tilaus peruutettu" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Ei-tuettu videotyyppi" @@ -8662,8 +9302,8 @@ msgstr "Päivitä <0>{displayName} listoissa" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "" @@ -8676,17 +9316,17 @@ msgstr "Päivitä verkkotunnukseen {domain}" msgid "Update your email" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Lainauksen liitoksen päivittäminen epäonnistui" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Vastauksen näkyvyyden päivittäminen epäonnistui" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Päivitetään…" @@ -8698,20 +9338,20 @@ msgstr "Lataa palveluun sen sijaan kuva" msgid "Upload a text file to:" msgstr "Lataa tekstitiedosto osoitteeseen" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Lataa kamerasta" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Lataa tiedostoista" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Lataa kirjastosta" msgid "Uploading images..." msgstr "Ladataan kuvia palveluun…" -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Ladataan linkin pikkukuvaa palveluun…" -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Ladataan videota palveluun…" @@ -8761,6 +9401,10 @@ msgstr "Käytä suositeltuja" msgid "Use this to sign in to the other app along with your handle." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Käyttänyt" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Käyttäjälista päivitetty" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Käyttäjätunnus tai sähköpostiosoite" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "käyttäjät, joita <0>@{0} seuraa" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Seuraamiltani käyttäjiltä" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Käyttäjiltä listassa ”{0}”" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "" @@ -8846,11 +9502,11 @@ msgstr "Arvo:" msgid "Verification failed, please try again." msgstr "" -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "" @@ -8870,8 +9526,15 @@ msgstr "" msgid "Verify account" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "" @@ -8880,21 +9543,20 @@ msgstr "" msgid "Verify DNS Record" msgstr "Vahvista DNS-tietue" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Vahvista sähköpostiosoite -valintaikkuna" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Vahvista tekstitiedosto" msgid "Verify this account?" msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Vahvista sähköpostiosoitteesi" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Vahvista sähköpostiosoitteesi" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Versio {appVersion}" +msgid "Version {0}" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "" @@ -8928,7 +9598,7 @@ msgstr "" msgid "Video failed to process" msgstr "Videon käsitteleminen epäonnistui" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "" @@ -8942,15 +9612,15 @@ msgstr "" msgid "Video Games" msgstr "Videopelit" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Videota ei löydy." @@ -8958,11 +9628,11 @@ msgstr "Videota ei löydy." msgid "Video settings" msgstr "Videon asetukset" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Video ladattu palveluun" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "" @@ -8979,11 +9649,11 @@ msgstr "" msgid "View {0}'s avatar" msgstr "Näytä käyttäjän {0} profiilikuva" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Näytä käyttäjän {0} profiili" @@ -8991,7 +9661,7 @@ msgstr "Näytä käyttäjän {0} profiili" msgid "View {displayName}'s profile" msgstr "Näytä käyttäjän {displayName} profiili" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Näytä estetyn käyttäjän profiili" @@ -9009,7 +9679,6 @@ msgstr "Näytä vianetsintäkirjaus" msgid "View details" msgstr "Näytä lisätietoja" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Näytä lisätietoja tekijänoikeusrikkomuksen ilmiantamisesta" @@ -9022,23 +9691,23 @@ msgstr "Näytä koko ketju" msgid "View information about these labels" msgstr "Näytä tietoja näistä merkinnöistä" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Näytä profiili" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Näytä profiilikuva" @@ -9054,28 +9723,28 @@ msgstr "" msgid "View users who like this feed" msgstr "Näytä tästä syötteestä tykänneet käyttäjät" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Näytä estämäsi tilit" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Näytä syötteesi ja löydä lisää" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Näytä moderointilistasi" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Näytä mykistämäsi tilit" @@ -9083,8 +9752,8 @@ msgstr "Näytä mykistämäsi tilit" msgid "View your verifications" msgstr "" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "" @@ -9092,16 +9761,20 @@ msgstr "" msgid "Views video in immersive mode" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "Käy sivustolla" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Äänenvoimakkuus" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Varoita sisällöstä ja suodata syötteistä" msgid "Watch now" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "" + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "Emme löytäneet tuloksia tälle aihetunnisteelle." @@ -9128,7 +9809,7 @@ msgstr "Emme löytäneet tuloksia tälle aihetunnisteelle." msgid "We couldn't find any results for that topic." msgstr "Emme löytäneet tuloksia tästä aiheesta." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Emme voineet ladata tätä keskustelua" @@ -9136,6 +9817,10 @@ msgstr "Emme voineet ladata tätä keskustelua" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Arvioimme, että tilisi valmistumiseen kuluu {estimatedTime}." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Olemme lähettäneet toisen vahvistussähköpostiviestin osoitteeseen <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "Toivomme sinulle ihania hetkiä. Muista, että Bluesky on" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Seurattusi julkaisut loppuivat tähän. Tässä ovat uusimmat syötteestä <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Emme onnistuneet määrittämään, saatko ladata palveluun videoita. Yritä uudelleen." @@ -9164,10 +9849,14 @@ msgstr "Emme onnistuneet määrittämään, saatko ladata palveluun videoita. Yr msgid "We were unable to load your birth date preferences. Please try again." msgstr "Emme onnistuneet lataamaan syntymäaika-asetuksiasi. Yritä uudelleen." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "Emme tällä kertaa onnistuneet lataamaan määriteltyjä merkitsijöitäsi." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Yhteyden muodostaminen ei onnistunut. Yritä uudelleen jatkaaksesi tilisi määritystä. Jos ongelma jatkuu, voit ohittaa nämä vaiheet." @@ -9176,7 +9865,7 @@ msgstr "Yhteyden muodostaminen ei onnistunut. Yritä uudelleen jatkaaksesi tilis msgid "We will let you know when your account is ready." msgstr "Ilmoitamme, kun tilisi on valmis." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -9184,6 +9873,22 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "Käytämme tätä mukauttaaksemme kokemustasi." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Meillä on verkko-ongelmia, yritä uudelleen" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Olemme innoissamme, että liityt joukkoomme!" @@ -9205,15 +9910,15 @@ msgstr "Pahoittelemme, mutta emme onnistuneet resolvoimaan tätä listaa. Jos t msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Pahoittelut, mutta emme tällä kertaa onnistuneet lataamaan mykistettyjä sanojasi. Yritä uudelleen." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Pahoittelut, mutta hakuasi ei voitu suorittaa loppuun. Yritä uudelleen muutaman minuutin kuluttua." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Pahoittelut! Julkaisu, johon olet vastaamassa, on poistettu." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Pahoittelut! Emme löydä etsimääsi sivua." @@ -9222,6 +9927,26 @@ msgstr "Pahoittelut! Emme löydä etsimääsi sivua." msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Pahoittelut! Voit tilata vain kaksikymmentä merkitsijää, ja olet saavuttanut kahdenkymmenen rajasi." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Tervetuloa takaisin!" @@ -9240,7 +9965,7 @@ msgstr "Millä nimellä haluat kutsua aloituspakettiasi?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Mitä kuuluu?" @@ -9256,11 +9981,11 @@ msgstr "Mitä kieliä tässä julkaisussa käytetään?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Mitä kieliä haluaisit nähdä algoritmisyötteissä?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Kuka voi olla vuorovaikutuksessa tämän julkaisun kanssa?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Kuka voi vastata" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Hupsista!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "" @@ -9322,12 +10047,12 @@ msgstr "Miksi tämä käyttäjä tulisi arvioida?" msgid "Write a message" msgstr "Kirjoita viesti" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Kirjoita julkaisu" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Kirjoita vastauksesi" @@ -9358,11 +10083,11 @@ msgstr "Kyllä, poista käytöstä" msgid "Yes, delete this starter pack" msgstr "Kyllä, poista tämä aloituspaketti" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Kyllä, irrota" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Kyllä, piilota" @@ -9378,6 +10103,10 @@ msgstr "Eilen" msgid "You" msgstr "Kirjautunut käyttäjä" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "" @@ -9386,6 +10115,10 @@ msgstr "" msgid "You are creating an account on" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Olet jonossa." @@ -9403,7 +10136,7 @@ msgstr "" msgid "You are not allowed to go live" msgstr "" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Sinun ei ole mahdollista ladata videoita palveluun." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "" @@ -9441,10 +10173,18 @@ msgstr "Voit myös selata uusia mukautettuja syötteitä seurattavaksi." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Voit myös poistaa tilisi käytöstä väliaikaisesti ja palauttaa sen käyttöön milloin tahansa." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Voit jatkaa meneillään olevia keskusteluja riippumatta valitsemastasi asetuksesta." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Voit nyt kirjautua sisään uudella salasanallasi." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Voit palauttaa tilisi käyttöön jatkaaksesi sisäänkirjautumista. Profiilisi ja julkaisusi tulevat näkyviin muille käyttäjille." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "" #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Voit päivittää tämän myöhemmin asetuksistasi." @@ -9472,7 +10212,7 @@ msgstr "Sinulla ei ole yhtään seuraajaa." msgid "You don't follow any users who follow @{name}." msgstr "Et seuraa ketään, joka seuraa käyttäjää @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "" @@ -9480,15 +10220,15 @@ msgstr "" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Sinulla ei ole vielä kutsukoodeja! Lähetämme sinulle sellaisia, kun olet ollut Blueskyssa hieman pidempään." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Sinulla ei ole kiinnitettyjä syötteitä." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Sinulla ei ole tallennettuja syötteitä." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Olet estänyt tekijän, tai tekijä on estänyt sinut." @@ -9502,6 +10242,10 @@ msgstr "Olet estänyt tämän käyttäjän" msgid "You have blocked this user. You cannot view their content." msgstr "Olet estänyt tämän käyttäjän. Et voi nähdä hänen sisältöään." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Olet mykistänyt tämän tilin." msgid "You have muted this user" msgstr "Olet mykistänyt tämän käyttäjän" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Sinulla ei ole vielä keskusteluja. Aloita sellainen!" @@ -9547,7 +10291,7 @@ msgstr "Et ole estänyt vielä yhtään tiliä. Estääksesi tilin siirry hänen msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Et ole mykistänyt vielä yhtään tiliä. Mykistääksesi tilin siirry hänen profiiliinsa ja valitse valikosta ”Mykistä tili”." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Olet päässyt loppuun" @@ -9572,6 +10316,10 @@ msgstr "Et ole mykistänyt vielä yhtään sanaa tai tunnistetta" msgid "You hid this reply." msgstr "Piilotit tämän vastauksen." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Voit valittaa muiden asettamista merkinnöistä, jos ne ovat mielestäsi virheellisiä." @@ -9592,7 +10340,7 @@ msgstr "Voit lisätä enintään 3 syötettä" msgid "You may only select up to 4 images" msgstr "Voit valita enintään 4 kuvaa" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "" @@ -9600,6 +10348,14 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Sinun on seurattava ainakin seitsemää muuta käyttäjää, jotta voit luoda aloituspaketin." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Sinun on myönnettävä pääsy kuvakirjastoosi tallentaaksesi QR-koodin" @@ -9608,6 +10364,11 @@ msgstr "Sinun on myönnettävä pääsy kuvakirjastoosi tallentaaksesi QR-koodin msgid "You must select at least one labeler for a report" msgstr "Sinun on valittava raporttia varten ainakin yksi merkitsijä" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "" @@ -9616,7 +10377,7 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "Poistit aiemmin käytöstä tilin @{0}." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "" @@ -9628,16 +10389,20 @@ msgstr "" msgid "You reacted {0} to {1}" msgstr "" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Sinut kirjataan ulos kaikista tileistäsi." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Et saa enää ilmoituksia tästä ketjusta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Saat nyt ilmoituksia tästä ketjusta" @@ -9657,11 +10422,11 @@ msgstr "Sinä: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Sinä: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Alat seurata ehdotettuja käyttäjiä ja syötteitä, kun olet saanut tilisi luomisen valmiiksi!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Alat seurata ehdotettuja käyttäjiä, kun olet saanut tilisi luomisen valmiiksi!" @@ -9673,9 +10438,9 @@ msgstr "Alat seurata näitä käyttäjiä ja {0} muuta" msgid "You'll follow these people right away" msgstr "Alat seurata näitä käyttäjiä välittömästi" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Saat sähköpostia osoitteeseen <0>{0}, jotta voit vahvistaa henkilöllisyytesi." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "Olet valinnut piilottaa tässä julkaisussa esiintyvän sanan tai tunnis msgid "You've found some people to follow" msgstr "Olet löytänyt käyttäjiä seurattavaksi" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Olet päässyt syötteesi loppuun! Etsi lisää tilejä seurattavaksi." @@ -9711,19 +10480,23 @@ msgstr "Olet päässyt syötteesi loppuun! Etsi lisää tilejä seurattavaksi." msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Olet saavuttanut päiväkohtaisen videolatausten rajoituksen (liian monta tavua)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Olet saavuttanut päiväkohtaisen videolatausten rajoituksen (liian monta videota)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Tilisi" @@ -9735,7 +10508,7 @@ msgstr "Tilisi on poistettu" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Tilisi ei ole riittävän vanha videoiden lataamiseksi palveluun. Yritä myöhemmin uudelleen." @@ -9751,11 +10524,11 @@ msgstr "" msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Syntymäaikasi" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Selaimesi ei tue tätä videotiedostomuotoa. Kokeile eri selainta." @@ -9771,13 +10544,15 @@ msgstr "" msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Nykyinen käyttäjätunnuksesi <0>{0} pysyy automaattisesti sinulle varattuna. Voit vaihtaa siihen takaisin tältä tililtä milloin tahansa." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Sähköpostiosoitteesi on nähtävästi virheellinen." @@ -9786,15 +10561,11 @@ msgstr "Sähköpostiosoitteesi on nähtävästi virheellinen." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Sähköpostiosoitettasi ei ole vielä vahvistettu. Tämä on tärkeä turvatoimi, jota suosittelemme." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "Ensimmäinen tykkäyksesi!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "" @@ -9806,19 +10577,15 @@ msgstr "Seuraamiesi syöte on tyhjä! Seuraa lisää käyttäjiä nähdäksesi, msgid "Your full handle will be <0>@{0}" msgstr "Koko tuleva käyttäjätunnuksesi on <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "Koko tuleva käyttäjätunnuksesi on <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "" @@ -9835,15 +10602,15 @@ msgstr "Mykistämäsi sanat" msgid "Your password has been changed successfully!" msgstr "Salasanasi on vaihdettu onnistuneesti!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Julkaisusi on julkaistu" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Julkaisusi on julkaistu" @@ -9851,15 +10618,19 @@ msgstr "Julkaisusi on julkaistu" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Julkaisusi, tykkäyksesi ja estosi ovat julkisia. Mykistykset ovat yksityisiä." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Profiilisi, julkaisusi, syötteesi ja listasi eivät enää näy muille Blueskyn käyttäjille. Voit palauttaa tilisi käyttöön milloin tahansa kirjautumalla sisään." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Vastauksesi on julkaistu" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -9867,7 +10638,7 @@ msgstr "" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Raporttisi lähetetään Blueskyn moderointipalveluun" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "" diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po index 4a21a838d0..3d40fab7b4 100644 --- a/src/locale/locales/fr/messages.po +++ b/src/locale/locales/fr/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: fr\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: French\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -25,9 +25,9 @@ msgstr "(en cours)" #: src/screens/Messages/components/ChatListItem.tsx:160 msgid "(contains embedded content)" -msgstr "(contient du contenu intégré)" +msgstr "(avec un contenu intégré)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(pas d’e-mail)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# repost} other {# reposts}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# seconde} other {# secondes}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# élément non lu} other {# éléments non lus}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {# élément non lu} other {# éléments non lus}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {# mois} other {# mois}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {abonné·e} other {abonné·e·s}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {abonnement} other {abonnements}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {a aimé} other {ont aimé}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {a aimé} other {ont aimé}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {post} other {posts}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {citation} other {citations}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {repost} other {reposts}}" @@ -135,6 +138,10 @@ msgstr "{0} <0>dans <1>les mots-clés" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>dans <1>le texte et les mots-clés" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} abonnements" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "{0} est en direct" @@ -143,11 +150,15 @@ msgstr "{0} est en direct" msgid "{0} is not a valid URL" msgstr "{0} n’est pas une URL valide" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "{0} n’est pas disponible" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} personnes se sont inscrites cette semaine" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} sur {1}" @@ -164,8 +175,16 @@ msgstr "{0} a réagi avec {1}" msgid "{0} reacted {1} to {2}" msgstr "{0} a réagi avec {1} à {2}" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0}, un fil d’actu de {1}, aimé par {2}" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0}, une liste de {1}" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "Avatar de {0}" @@ -197,12 +216,12 @@ msgstr "{0} min" msgid "{0}s" msgstr "{0} s" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# élément non lu} other {# éléments non lus}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Kit de démarrage de {displayName}" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {heure} other {heures}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minute} other {minutes}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} vous ont suivi" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont aimé votre fil d’actu personnalisé" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont aimé votre post" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont aimé votre repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre} other {{formattedAuthorsCount} autres}} ont retiré leurs vérifications de votre compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont republié votre post" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont republié votre repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} se sont inscrits avec votre kit de démarrage" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre} other {{formattedAuthorsCount} autres}} ont vérifié votre compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} vous a suivi·e" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} vous a suivi·e en retour" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} a aimé votre fil d’actu personnalisé" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} a aimé votre post" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} a aimé votre repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} a retiré sa vérification de votre compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} a republié votre post" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} a republié votre repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} s’est inscrit·e avec votre kit de démarrage" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} a vérifié votre compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} vous ont suivi" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont aimé votre fil d’actu personnalisé" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont aimé votre post" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont aimé votre repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre} other {{formattedAuthorsCount} autres}} ont retiré leurs vérifications de votre compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont republié votre post" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont republié votre repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} se sont inscrits avec votre kit de démarrage" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre} other {{formattedAuthorsCount} autres}} ont vérifié votre compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} a suivi votre compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} a suivi votre compte en retour" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} a aimé votre fil d’actu personnalisé" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} a aimé votre post" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} a aimé votre repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} a retiré sa vérification de votre compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} a republié votre post" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} a republié votre repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" -msgstr "{firstAuthorLink} s’est inscrit·e avec votre kit de démarrage" +msgstr "{firstAuthorName} s’est inscrit·e avec votre kit de démarrage" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} a vérifié votre compte" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} abonnements" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "{handle} ne peut être contacté par message" @@ -392,7 +410,7 @@ msgstr "{joinedAllTimeCount, plural, other {# personnes se sont}} inscrites !" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "{minutes, plural, one {# minute} other {# minutes}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# élément non lu} other {# éléments non lus}}" @@ -432,12 +450,12 @@ msgstr "Vérifications de {userName}" msgid "+{computedTotal}" msgstr "+ {computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} et {2, plural, one {# autre} other {# autres}} font partie de votre kit de démarrage" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} et {2, plural, one {# autre} other {# autres}} sont inclus dans votre kit de démarrage" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {abonné·e} other {abonné·e·s}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {abonnement} other {abonnements}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} et<1> <2>{1} faites partie de votre kit de démarrage" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} fait partie de votre kit de démarrage" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} membres" @@ -466,11 +484,11 @@ msgstr "<0>{0} membres" msgid "<0>{date} at {time}" msgstr "<0>{date} à {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Expérimental : lorsque cette préférence est activée, vous ne recevrez que les notifications de réponse et de citation des comptes que vous suivez. Nous continuerons à ajouter d’autres contrôles au fil du temps." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<0>Se connecter<1> ou <2>créer un compte<3><4> pour rechercher des actualités, du sport, de la politique, et tout ce qui se passe d’autre en ce moment sur Bluesky." -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Vous et<1> <2>{0} faites partie de votre kit de démarrage" @@ -503,10 +521,14 @@ msgstr "un message" msgid "A new form of verification" msgstr "Une nouvelle forme de vérification" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "Une capture d’écran d’une page de profil avec une icône de cloche à côté du bouton de suivi, indiquant la nouvelle fonctionnalité de notification d’activité." + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "À propos" @@ -524,25 +546,25 @@ msgstr "Accepter la demande de discussion" msgid "Accept Request" msgstr "Accepter la demande" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Accessibilité" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Paramètres d’accessibilité" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Compte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Compte suivi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Compte masqué" msgid "Account Muted by List" msgstr "Compte masqué par liste" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Options de compte" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Compte supprimé de l’accès rapide" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Compte désabonné" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Compte réaffiché" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Les comptes avec une coche bleue émaillée <0><1/> peuvent en vérifier d’autres. Ces vérificateurs de confiance sont sélectionnés par Bluesky." +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "Activité des autres" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "Notifications d’activité" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Ajouter" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Ajouter {0} autres pour continuer" @@ -634,8 +666,8 @@ msgstr "Ajouter un compte" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Ajouter un texte alt" msgid "Add alt text (optional)" msgstr "Ajouter un texte alt (facultatif)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Ajouter un autre compte" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Ajouter un autre post" @@ -670,8 +702,8 @@ msgstr "Ajouter un mot de passe d’application" msgid "Add emoji reaction" msgstr "Ajouter une réaction émoji" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Ajouter plus de détails (facultatif)" @@ -683,7 +715,7 @@ msgstr "Ajouter un mot à cacher avec les paramètres choisis" msgid "Add muted words and tags" msgstr "Ajouter des mots et des mots-clés masqués" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Ajouter un post" @@ -704,7 +736,7 @@ msgstr "Ajouter une réaction" msgid "Add recommended feeds" msgstr "Ajouter les fils d’actu recommandés" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Ajoutez des fils d’actu à votre kit de démarrage !" @@ -725,10 +757,6 @@ msgstr "Ajouter ce fil à vos fils d’actu" msgid "Add to lists" msgstr "Ajouter à des listes" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Ajouter à mes fils d’actu" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "Ajouter le compte à la liste" @@ -738,11 +766,11 @@ msgstr "Ajouter le compte à la liste" msgid "Added to list" msgstr "Ajouté à la liste" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Ajouté à mes fils d’actu" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "Détails supplémentaires (1000 caractères maximum)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Détails supplémentaires (300 caractères maximum)" @@ -750,18 +778,18 @@ msgstr "Détails supplémentaires (300 caractères maximum)" msgid "Adult" msgstr "Adulte" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Contenu pour adultes" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Le contenu pour adultes ne peut être activé que via le Web sur <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Le contenu pour adultes est désactivé." @@ -770,16 +798,32 @@ msgstr "Le contenu pour adultes est désactivé." msgid "Adult Content labels" msgstr "Étiquettes de contenu adulte" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Avancé" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "Vérification d’âge" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "Échec de l’envoi de la demande de vérification d’âge, veuillez réessayer." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "La demande de vérification d’âge a été envoyée" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "La vérification d’âge ne prend que quelques minutes" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "alice@example.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Toutes" @@ -793,7 +837,7 @@ msgstr "Tous les comptes ont été suivis !" msgid "All languages" msgstr "Toutes les langues" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Tous les fils d’actu que vous avez enregistrés, au même endroit." @@ -802,16 +846,21 @@ msgstr "Tous les fils d’actu que vous avez enregistrés, au même endroit." msgid "Allow access to your direct messages" msgstr "Autoriser l’accès à vos messages privés" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Autoriser les nouveaux messages de" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "Autoriser les autres à être notifié de vos posts" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Autoriser les citations" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Autoriser les réponses de :" @@ -828,13 +877,13 @@ msgstr "Avez-vous déjà un code ?" msgid "Already signed in as @{0}" msgstr "Déjà connecté·e en tant que @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "Texte alt" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Texte alt" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Le texte alt décrit les images pour les personnes aveugles et malvoyantes, et aide à donner un contexte à tout le monde." @@ -861,27 +910,19 @@ msgstr "Le texte alt sera tronqué. Limite : {MAX_ALT_TEXT, plural, one {{0} ca msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Un e-mail a été envoyé à {0}. Il comprend un code de confirmation que vous pouvez saisir ici." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "Un e-mail a été envoyé à votre adresse précédente, {currentEmail}. Il comprend un code de confirmation que vous pouvez saisir ici." - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Un e-mail a été envoyé ! Entrez ci-dessous le code de confirmation présent dans l’e-mail." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Une erreur s’est produite" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Une erreur s’est produite" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Une erreur s’est produite lors de la compression de la vidéo." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "Une erreur s’est produite lors de la récupération du fil d’actu." @@ -889,11 +930,11 @@ msgstr "Une erreur s’est produite lors de la récupération du fil d’actu." msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Une erreur s’est produite lors de la génération de votre kit de démarrage. Vous voulez réessayer ?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Une erreur s’est produite lors du chargement de la vidéo. Veuillez réessayer plus tard." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Une erreur s’est produite lors du chargement de la vidéo. Veuillez réessayer." @@ -910,7 +951,7 @@ msgstr "Une erreur s’est produite lors de la sélection de la vidéo" msgid "An error occurred while trying to follow all" msgstr "Une erreur s’est produite en essayant de suivre tous les comptes" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Une erreur s’est produite lors de l’envoi de la vidéo." @@ -934,8 +975,8 @@ msgstr "Un problème est survenu lors de l’ouverture de la discussion" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "une erreur inconnue s’est produite" msgid "an unknown labeler" msgstr "un étiqueteur inconnu" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "et" @@ -963,10 +1004,14 @@ msgstr "et" msgid "Animals" msgstr "Animaux" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "GIF animé" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "Annonce" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "La vérification arrive sur Bluesky" @@ -980,7 +1025,13 @@ msgstr "Comportement antisocial" msgid "Anybody can interact" msgstr "Tout le monde peut interagir" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "Quiconque qui me suit" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "Les noms de mots de passe d’application peut seulement contenir des le msgid "App password names must be at least 4 characters long" msgstr "Les noms de mots de passe d’application doivent comporter au moins 4 caractères." -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Mots de passe d’application" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Mots de passe d’application" @@ -1053,10 +1104,10 @@ msgstr "Faire appel de la suspension" msgid "Appeal this decision" msgstr "Faire appel de cette décision" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Affichage" @@ -1065,12 +1116,20 @@ msgstr "Affichage" msgid "Apply default recommended feeds" msgstr "Utiliser les fils d’actu recommandés par défaut" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "Appliquer la pull request" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Archive datée du {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Post archivé" @@ -1078,7 +1137,7 @@ msgstr "Post archivé" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Êtes-vous sûr de vouloir supprimer le mot de passe d’application « {0} » ?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Êtes-vous sûr de vouloir supprimer ce message ? Ce message sera supprimé pour vous, mais pas pour l’autre personne." @@ -1098,19 +1157,15 @@ msgstr "Êtes-vous sûr de vouloir quitter cette conversation ?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Êtes-vous sûr de vouloir partir de cette conversation ? Vos messages seront supprimés pour vous, mais pas pour l’autre personne." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Êtes-vous sûr de vouloir supprimer {0} de vos fils d’actu ?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Êtes-vous sûr de vouloir supprimer cela de vos fils d’actu ?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Êtes-vous sûr de vouloir abandonner ce brouillon ?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Êtes-vous sûr de vouloir abandonner ce post ?" @@ -1131,29 +1186,26 @@ msgstr "Art" msgid "Artistic or non-erotic nudity." msgstr "Nudité artistique ou non érotique." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "Assigner un sujet pour l’algo" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Au moins 3 caractères" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurores" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Les options de la lecture automatique ont été déplacées dans les <0>paramètres Contenu et médias." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Lire automatiquement les vidéos et les GIFs" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "Disponible" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Lire automatiquement les vidéos et les GIFs" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Retour" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Retour aux discussions" @@ -1195,28 +1247,44 @@ msgstr "Veuillez vérifier votre e-mail avant de créer un kit de démarrage." msgid "Before you can accept this chat request, you must first verify your email." msgstr "Veuillez vérifier votre e-mail avant d’accepter cette demande de discussion." +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "Avant de pouvoir recevoir des notifications pour les posts de {name}, vous devez d’abord vérifier votre e-mail." + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "Veuillez vérifier votre e-mail avant d’envoyer des messages à d’autres personnes." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "Commencer" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "Commencer la vérification d’âge" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "Commencez la vérification d’âge en complétant les champs ci-dessous." + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Date de naissance" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Bloquer" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Bloquer" msgid "Block account" msgstr "Bloquer le compte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Bloquer ce compte ?" @@ -1262,20 +1330,20 @@ msgstr "Bloquer le compte" msgid "Block User" msgstr "Bloquer le compte" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Bloqué" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Comptes bloqués" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Comptes bloqués" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 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." @@ -1284,11 +1352,11 @@ msgstr "Les comptes bloqués ne peuvent pas répondre à vos discussions, vous m msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Les comptes bloqués ne peuvent pas répondre à vos discussions, vous mentionner ou interagir avec vous. Vous ne verrez pas leur contenu et ils ne pourront pas voir le vôtre." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Post bloqué." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Le blocage n’empêche pas cet étiqueteur de placer des étiquettes sur votre compte." @@ -1309,11 +1377,12 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky ne peut pas confirmer l’authenticité de la date déclarée." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1347,6 +1416,14 @@ msgstr "Bluesky n’affichera pas votre profil et vos posts à des personnes non msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky va vérifier de manière proactive les comptes connus et authentiques." +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "Règles de bonne conduite sur Bluesky" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "Règles mises à jour de bonne conduite sur Bluesky" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Flouter les images et les filtrer des fils d’actu" msgid "Books" msgstr "Livres" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Parcourir d’autres comptes sur la page « Explorer »" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Parcourir d’autres fils d’actu sur la page « Explorer »" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Parcourir d’autres suggestions" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Parcourir d’autres suggestions sur la page « Explorer »" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Affaires" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Par {0}" @@ -1428,17 +1502,25 @@ msgstr "Par {0}" msgid "By <0>{0}" msgstr "Par <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "En cliquant sur « Continuer » vous reconnaissez que vous comprenez et acceptez ces mises à jour." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "En continuant, vous acceptez les <0>Conditions générales de KWS (en anglais) et comprenez que KWS conservera votre situation de vérification avec un hash de votre adresse e-mail conformément à la <1>Politique de confidentialité de KWS (en anglais). Cela signifie que vous n’aurez pas besoin de vérifier à nouveau cet e-mail dans d’autres apps, jeux et services utilisant la technologie de KWS." + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "En créant un compte, vous acceptez la <0>Politique de confidentialité." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." -msgstr "En créant un compte, vous acceptez les <0>Conditions d’utilisation et la <1>Politique de confidentialité." +msgstr "En créant un compte, vous acceptez les <0>Conditions générales et la <1>Politique de confidentialité." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." -msgstr "En créant un compte, vous acceptez les <0>Conditions d’utilisation." +msgstr "En créant un compte, vous acceptez les <0>Conditions générales." #: src/screens/Search/components/StarterPackCard.tsx:105 msgid "By you" @@ -1448,14 +1530,17 @@ msgstr "Par vous" msgid "Camera" msgstr "Caméra" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Caméra" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Annuler" @@ -1500,11 +1582,7 @@ msgstr "Annuler la suppression de compte" msgid "Cancel image crop" msgstr "Annuler le recadrage de l’image" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Annuler les modifications du profil" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Annuler la citation" @@ -1516,14 +1594,10 @@ msgstr "Annuler la réactivation et se déconnecter" msgid "Cancel search" msgstr "Annuler la recherche" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Annule l’ouverture du site web lié" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Impossible d’interagir avec un compte bloqué" @@ -1553,17 +1627,12 @@ msgstr "Changer l’icône de l’application pour « {0} »" msgid "Change app language" msgstr "Changer la langue de l’appli." -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Modifier votre adresse e-mail" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Modifier le pseudo" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Changer de service de modération" @@ -1579,14 +1648,6 @@ msgstr "Modifier la langue du post en {suggestedLanguageName}" msgid "Change report reason" msgstr "Changer la raison du signalement" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Modifier votre e-mail" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Modifier votre adresse e-mail" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Change l’icône de l’application" @@ -1596,10 +1657,15 @@ msgstr "Change l’icône de l’application" msgid "Changes hosting provider" msgstr "Change l’hébergeur" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "Modifications enregistrées" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Discussions" @@ -1609,38 +1675,49 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Conversation supprimée" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "Discussions - en sourdine" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "Discussions - normales" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" -msgstr "Discussion masquée" +msgstr "Discussion en sourdine" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "Demandes de discussion en attente" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Demandes de discussion" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Paramètres de discussion" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Paramètres de discussion" #: src/components/dms/ConvoMenu.tsx:178 msgctxt "toast" msgid "Chat unmuted" -msgstr "Discussion réaffichée" +msgstr "Discussion sans sourdine" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Discussions" @@ -1661,7 +1738,7 @@ msgstr "Consultez votre boîte de réception, vous avez du recevoir un e-mail co msgid "Choose domain verification method" msgstr "Sélectionnez une méthode de vérification de domaine" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Choisissez des fils d’actu" @@ -1669,7 +1746,7 @@ msgstr "Choisissez des fils d’actu" msgid "Choose for me" msgstr "Choisir pour moi" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Choisissez des personnes" @@ -1685,23 +1762,23 @@ msgstr "Choisir cette couleur comme avatar" msgid "Choose your account provider" msgstr "Choisir votre hébergeur" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Construisez votre propre page d’accueil ! Abonnez-vous à des fils d’actu de la communauté pour y retrouver ce que vous aimez." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Choisissez votre mot de passe" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Votre pseudo" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Effacer toutes les données de stockage" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Effacer toutes les données de stockage (redémarrer ensuite)" @@ -1714,23 +1791,27 @@ msgstr "Purger le cache des images" msgid "Clear search query" msgstr "Effacer la recherche" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "Cliquez pour plus d’infos" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "cliquez ici" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "Cliquez ici pour redémarrer le processus de vérification." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "Cliquez ici pour mettre à jour votre adresse e-mail" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Cliquez pour désactiver les citations de ce post." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Cliquez pour activer les citations de ce post." @@ -1750,14 +1831,16 @@ msgstr "Climat" msgid "Clip 🐴 clop 🐴" msgstr "Cataclop 🐴 cataclop 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Cataclop 🐴 cataclop 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Fermer" @@ -1789,13 +1876,15 @@ msgstr "Fermer l’alerte" msgid "Close bottom drawer" msgstr "Fermer le tiroir du bas" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Fermer le dialogue" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Ferme le menu latéral" @@ -1804,7 +1893,7 @@ msgstr "Ferme le menu latéral" msgid "Close emoji picker" msgstr "Fermer le sélecteur d’emoji" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Fermer le dialogue des GIFs" @@ -1822,7 +1911,7 @@ msgstr "Fermer la visionneuse d’images" msgid "Close menu" msgstr "Fermer le menu" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Fermer ce dialogue" @@ -1830,7 +1919,7 @@ msgstr "Fermer ce dialogue" msgid "Closes password update alert" msgstr "Ferme la notification de mise à jour du mot de passe" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "Ferme la fenêtre de rédaction et abandonne le brouillon de post" @@ -1843,16 +1932,16 @@ msgstr "Ferme le sélecteur d’émoji" msgid "Closes viewer for header image" msgstr "Ferme la visionneuse pour l’image d’en-tête" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Fermer la liste des comptes" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Réduit la liste des comptes pour une notification donnée" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Mode de couleur" @@ -1870,47 +1959,44 @@ msgstr "Comédie" msgid "Comics" msgstr "Bandes dessinées" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" -msgstr "Directives communautaires" +msgstr "Règles de bonne conduite" #: src/screens/Onboarding/StepFinished.tsx:311 msgid "Complete onboarding and start using your account" msgstr "Terminez le didacticiel et commencez à utiliser votre compte" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Compléter le défi" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Écrire un nouveau post" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Permet d’écrire des posts de {0, plural, other {# caractères}} maximum" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Rédiger une réponse" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Compression de la vidéo en cours…" -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Configure les paramètres de filtrage de contenu pour la catégorie : {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Configuré dans <0>les paramètres de modération." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Confirmer les paramètres de langue" msgid "Confirm delete account" msgstr "Confirmer la suppression du compte" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Confirmez votre âge :" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Confirme votre date de naissance" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Confirme votre date de naissance" msgid "Confirmation code" msgstr "Code de confirmation" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Code de confirmation" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Connexion…" -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "Problème de connexion" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "Contacter notre équipe de modération" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Contacter le support" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "Nous contacter" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Contenu et médias" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Contenu et médias" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Contenu et médias" @@ -1977,7 +2069,8 @@ msgstr "Contenu et médias" msgid "Content Blocked" msgstr "Contenu bloqué" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Filtres de contenu" @@ -2006,10 +2099,12 @@ msgstr "Avertissement sur le contenu" msgid "Content warnings" msgstr "Avertissements sur le contenu" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Menu contextuel en arrière-plan, cliquez pour fermer le menu." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Continuer" msgid "Continue as {0} (currently signed in)" msgstr "Continuer comme {0} (actuellement connecté)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "Poursuivre le fil de discussion" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Poursuivre le fil de discussion…" @@ -2029,6 +2129,10 @@ msgstr "Poursuivre le fil de discussion…" msgid "Continue to next step" msgstr "Passer à l’étape suivante" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "Discussion" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Copié" msgid "Copied build version to clipboard" msgstr "Version de build copiée dans le presse-papier" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Copie la version de build vers le presse-papier" msgid "Copy" msgstr "Copier" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "Copier quand même" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Copier le mot de passe d’application" @@ -2087,8 +2187,8 @@ msgstr "Copier le mot de passe d’application" msgid "Copy at:// URI" msgstr "Copier l’URI at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Copier le DID de l’auteur·ice" @@ -2120,10 +2220,10 @@ msgstr "Copier le lien" msgid "Copy link to list" msgstr "Copier le lien vers la liste" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Copier le lien vers le post" @@ -2136,18 +2236,18 @@ msgstr "Copier le lien vers le profil" msgid "Copy link to starter pack" msgstr "Copier le lien vers le kit de démarrage" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Copier le texte du message" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Copier l’URI at:// du post" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Copier le texte du post" @@ -2159,11 +2259,25 @@ msgstr "Copier le code QR" msgid "Copy TXT record value" msgstr "Copier la valeur du registre TXT" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Politique sur les droits d’auteur" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "Impossible de se connecter au fil d’actu personnalisé" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "Impossible de se connecter au service de fil d’actu" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "Impossible de retrouver le profil" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2179,12 +2293,20 @@ msgstr "Impossible de charger la liste" #: src/components/dms/ConvoMenu.tsx:182 msgid "Could not mute chat" -msgstr "Impossible de masquer la discussion" +msgstr "Impossible de mettre la discussion en sourdine" #: src/view/com/composer/videos/VideoPreview.web.tsx:66 msgid "Could not process your video" msgstr "Impossible de traiter votre vidéo" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "Impossible d’enregistrer les changements : {0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "Impossible de mettre à jour les paramètres de notification" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Créer" @@ -2195,7 +2317,7 @@ msgstr "Créer un code QR pour un kit de démarrage" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Créer un kit de démarrage" @@ -2205,21 +2327,22 @@ msgstr "Créer un kit de démarrage pour moi" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "S’inscrire" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Créer un compte" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Créer un compte" @@ -2241,7 +2364,7 @@ msgstr "Créer un autre" msgid "Create new account" msgstr "Créer un nouveau compte" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Créer un signalement pour {0}" @@ -2268,7 +2391,7 @@ msgstr "Personnalisé" msgid "Customization options" msgstr "Paramètres de personnalisation" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Personnalisez les comptes qui peuvent interagir avec ce post." @@ -2278,12 +2401,12 @@ msgstr "Personnalise votre expérience de Bluesky" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Sombre" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Sombre" @@ -2292,21 +2415,21 @@ msgstr "Sombre" msgid "Dark mode" msgstr "Mode sombre" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Thème sombre" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Date de naissance" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Désactiver le compte" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Déboguer la modération" @@ -2314,7 +2437,7 @@ msgstr "Déboguer la modération" msgid "Debug panel" msgstr "Panneau de débug" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Par défaut" @@ -2322,8 +2445,8 @@ msgstr "Par défaut" msgid "Default icons" msgstr "Icônes par défaut" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Icônes par défaut" msgid "Delete" msgstr "Supprimer" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Supprimer le compte" @@ -2355,7 +2478,7 @@ msgstr "Supprimer le mot de passe de l’appli ?" msgid "Delete chat" msgstr "Supprimer la conversation" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Supprimer la déclaration d’ouverture aux discussions" @@ -2370,7 +2493,7 @@ msgstr "Supprimer la conversation" msgid "Delete Conversation" msgstr "Supprimer la conversation" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Supprimer pour moi" @@ -2378,11 +2501,11 @@ msgstr "Supprimer pour moi" msgid "Delete list" msgstr "Supprimer la liste" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Supprimer le message" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Supprimer le message pour moi" @@ -2390,9 +2513,9 @@ msgstr "Supprimer le message pour moi" msgid "Delete my account" msgstr "Supprimer mon compte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Supprimer le post" @@ -2409,11 +2532,11 @@ msgstr "Supprimer le kit de démarrage ?" msgid "Delete this list?" msgstr "Supprimer cette liste ?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Supprimer ce post ?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Supprimé" @@ -2422,15 +2545,20 @@ msgstr "Supprimé" msgid "Deleted Account" msgstr "Compte supprimé" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "Liste supprimée" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Post supprimé." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Description" @@ -2447,12 +2575,12 @@ msgstr "Description trop longue. La taille maximum est de {DESCRIPTION_MAX_GRAPH msgid "Descriptive alt text" msgstr "Texte alt descriptif" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Détacher la citation" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Détacher la citation ?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Mode développement activé" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Options pour développeurs" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Une boîte de dialogue : réglez qui peut interagir avec ce post" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Atténué" @@ -2492,27 +2620,27 @@ msgstr "Désactiver le 2FA par e-mail" msgid "Disable Email 2FA" msgstr "Désactiver le 2FA par e-mail" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Désactiver le retour haptique" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Désactiver les sous-titres" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Désactivé" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Abandonner" @@ -2520,11 +2648,11 @@ msgstr "Abandonner" msgid "Discard changes?" msgstr "Abandonner les changements ?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Abandonner le brouillon ?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Abandonner ce post ?" @@ -2542,7 +2670,7 @@ msgstr "Découvrir des fils d’actu" msgid "Discover new custom feeds" msgstr "Découvrir des fils d’actu personnalisés" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Découvrir de nouveaux fils d’actu" @@ -2550,7 +2678,7 @@ msgstr "Découvrir de nouveaux fils d’actu" msgid "Dismiss" msgstr "Ignorer" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Ignorer l’erreur" @@ -2562,26 +2690,26 @@ msgstr "Annuler le guide de démarrage" msgid "Dismiss interests" msgstr "Ignorer les centres d’intérêt" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "Fermer le message" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Ignorer cette section" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Afficher des badges de texte alt plus grands" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Nom d’affichage" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Nom d’affichage" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Nom d’affichage trop long" @@ -2603,15 +2731,11 @@ msgstr "Ne pas appliquer ce mot masqué aux comptes que vous suivez" msgid "Does not include nudity." msgstr "Ne comprend pas de nudité." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Ne commence pas ou ne se termine pas par un trait d’union" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Domaine vérifié !" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Vous n’avez pas de code ou en voulez un nouveau ? <0>Cliquez ici." @@ -2619,6 +2743,15 @@ msgstr "Vous n’avez pas de code ou en voulez un nouveau ? <0>Cliquez ici." msgid "Don't see an email? <0>Click here to resend." msgstr "Pas d’e-mail à l’horizon ? <0>Cliquez ici pour le renvoyer." +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "Ne plus afficher" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "Pas d’inquiétude ! Tous les messages existants et vos paramètres sont préservés et seront disponibles après avoir prouvé que vous êtes adulte." + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "Tapez deux fois ou appuyez longtemps sur le message pour ajouter une ré msgid "Double tap to close the dialog" msgstr "Tapez deux fois pour fermer cette boîte de dialogue" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Tapez deux fois pour aimer" @@ -2673,7 +2806,7 @@ msgstr "Télécharger Bluesky" msgid "Download CAR file" msgstr "Télécharger le fichier CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Déposer pour ajouter des images" @@ -2689,18 +2822,10 @@ msgstr "ex. alice" msgid "e.g. Alice Lastname" msgstr "ex. Alice Nomdefamille" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "ex. Alice Roberts" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "ex. alice.fr" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "ex. Artiste, amie des chiens et lectrice passionnée." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Nudité artistique par exemple." @@ -2725,10 +2850,11 @@ msgstr "ex. Les comptes qui répondent toujours avec des pubs." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Chaque code ne fonctionne qu’une seule fois. Vous recevrez régulièrement d’autres codes d’invitation." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Modifier" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Modifier" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Modifier l’avatar" @@ -2749,12 +2875,12 @@ msgstr "Modifier les fils d’actu" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Modifier l’image" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Modifier les paramètres d’interaction" @@ -2776,33 +2902,33 @@ msgstr "Modifier le statut « En direct »" msgid "Edit Moderation List" msgstr "Modifier la liste de modération" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Modifier mes fils d’actu" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Modifier votre profil" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "Modifier les notifications de {0}" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Modifier les personnes" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Modifier les paramètres d’interaction du post" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Modifier le profil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Modifier le profil" @@ -2814,19 +2940,11 @@ msgstr "Modifier le kit de démarrage" msgid "Edit User List" msgstr "Modifier la liste de comptes" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Modifier qui peut répondre" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Modifier votre nom d’affichage" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Modifier la description de votre profil" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Modifier votre kit de démarrage" @@ -2839,8 +2957,8 @@ msgstr "Éducation" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "Soit l’auteur·ice de cette liste vous a bloqué soit vous en avez bloqué l’auteur·ice." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "E-mail" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "2FA par e-mail désactivé" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "Auth. à deux facteurs par e-mail activé" @@ -2865,10 +2983,6 @@ msgstr "E-mail renvoyé" msgid "Email sent!" msgstr "E-mail envoyé !" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "Adresse e-mail mise à jour !" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "Vérification de l’e-mail terminée !" @@ -2883,8 +2997,8 @@ msgstr "Code HTML à intégrer" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Intégrer le post" @@ -2892,7 +3006,7 @@ msgstr "Intégrer le post" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Intégrez ce post à votre site web. Il suffit de copier l’extrait suivant et de le coller dans le code HTML de votre site web." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Lecteur vidéo intégré" @@ -2906,7 +3020,7 @@ msgstr "Activer" msgid "Enable {0} only" msgstr "Activer {0} uniquement" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Activer le contenu pour adultes" @@ -2919,16 +3033,20 @@ msgstr "Activer le 2FA par e-mail" msgid "Enable external media" msgstr "Activer les médias externes" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Activer les lecteurs médias pour" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Activer les notifications prioritaires" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "Activez les notifications pour un compte en visitant leur profil puis en appuyant sur l’<0>icône de cloche <1/>." -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "Activer les alertes (notifs push)" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Activer les sous-titres" @@ -2941,17 +3059,14 @@ msgstr "Active cette source uniquement" msgid "Enable trending topics" msgstr "Activer les tendances" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Activer les vidéos tendances dans votre fil Discover" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Activer les vidéos tendances dans votre fil Discover." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Activé" @@ -2963,7 +3078,7 @@ msgstr "Fin du fil d’actu" msgid "Ensure you have selected a language for each subtitle file." msgstr "Assurez-vous d’avoir sélectionné une langue pour chaque fichier de sous-titres." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Saisir un mot de passe" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Saisir un mot ou un mot-clé" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "Entrer le code" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Entrer le code" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Passer en plein écran" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Saisissez votre date de naissance" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Entrez votre e-mail" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Entrez votre nouvelle e-mail ci-dessous." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Saisir votre mot de passe" @@ -3022,7 +3129,7 @@ msgstr "Saisir votre mot de passe" msgid "Enter your username and password" msgstr "Entrez votre pseudo et votre mot de passe" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Passe en mode plein écran" @@ -3030,16 +3137,28 @@ msgstr "Passe en mode plein écran" msgid "Entertainment" msgstr "Divertissement" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Erreur" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "Échec du chargement du post" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "Erreur lors du chargement des préférences" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "Message d’erreur" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Échec lors de l’enregistrement du fichier" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Erreur de réception de la réponse captcha." @@ -3047,27 +3166,34 @@ msgstr "Erreur de réception de la réponse captcha." msgid "Error:" msgstr "Erreur :" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "Erreur : {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Tout le monde" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Tout le monde peut répondre" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Tout le monde peut répondre à ce post." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Tout le monde" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "Divers" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Exclure les comptes que vous suivez" msgid "Excludes users you follow" msgstr "Exclut les comptes que vous suivez" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Quitter le plein écran" @@ -3106,24 +3232,28 @@ msgstr "Sort de la vue de l’image" msgid "Expand alt text" msgstr "Développer le texte alt" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Développer la liste des comptes" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Développe ou réduit le post complet auquel vous répondez" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "Développer le post" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Développe ou réduit le texte du post" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "URI attendue pour résoudre un enregistrement" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Expérimental" @@ -3153,15 +3283,15 @@ msgstr "Médias explicites ou potentiellement dérangeants." msgid "Explicit sexual images." msgstr "Images sexuelles explicites." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "Explorer" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Exporter mes données" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Média externe" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 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:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Préférences sur les médias externes" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "Échec de l’acceptation de la conversation" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "Échec de l’ajout de la réaction émoji" @@ -3211,8 +3341,8 @@ msgstr "La création du mot de passe d’application a échoué. Veuillez réess msgid "Failed to create conversation" msgstr "Échec de la création de la conversation" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Échec de la création du kit de démarrage" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "Échec de la suppression de la conversation" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Échec de la suppression du message" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Échec de la suppression du post, veuillez réessayer" @@ -3238,8 +3368,8 @@ msgstr "Échec de la suppression du post, veuillez réessayer" msgid "Failed to delete starter pack" msgstr "Échec de la suppression du kit de démarrage" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "Échec du chargement des conversations" @@ -3250,14 +3380,32 @@ msgstr "Échec du chargement des conversations" msgid "Failed to load feeds preferences" msgstr "Échec du chargement des fils d’actu" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Échec du chargement des GIFs" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "Échec du chargement des paramètres de notification." + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Échec du chargement de l’historique" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "Échec du chargement des préférences." + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Échec du chargement des fils d’actu suggerés" msgid "Failed to load suggested follows" msgstr "Échec du chargement des suivis suggérés" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "Échec du marquage de toutes les demandes comme lues" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Échec de l’épinglage du post" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "Échec du retrait de la réaction émoji" @@ -3291,15 +3439,11 @@ msgstr "Échec du retrait de la vérification" msgid "Failed to save image: {0}" msgstr "Échec de l’enregistrement de l’image : {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Échec de l’enregistrement des préférences de notification, veuillez réessayer" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "L’enregistrement des paramètres a échoué. Veuillez réessayer." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "Échec de l’enregistrement de vos centres d’intérêt." @@ -3318,7 +3462,7 @@ msgstr "Échec de l’envoi de l’e-mail, veuillez réessayer." msgid "Failed to submit appeal, please try again." msgstr "Échec de l’envoi de l’appel, veuillez réessayer." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Échec de l’activation ou désactivation du masquage du fil de discussion, veuillez réessayer" @@ -3335,7 +3479,11 @@ msgstr "Échec de la mise à jour de l’e-mail, veuillez réessayer." msgid "Failed to update feeds" msgstr "Échec de la mise à jour des fils d’actu" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "Échec de la mise à jour de la déclaration de notification" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Échec de la mise à jour des paramètres" @@ -3354,15 +3502,23 @@ msgstr "Échec de la vérification de l’e-mail, veuillez réessayer." msgid "Failed to verify handle. Please try again." msgstr "La vérification du pseudo a échoué. Veuillez réessayer." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Fil d’actu" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Fil d’actu par {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "Fil d’actu créé par" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "Identifiant du fil d’actu" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Menu du fil d’actu" @@ -3371,35 +3527,39 @@ msgstr "Menu du fil d’actu" msgid "Feed toggle" msgstr "Ajouter/enlever le fil d’actu" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "Fil d’actu indisponible" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Commentaires" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Commentaire envoyé !" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Fils d’actu" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Les fils d’actu sont des algorithmes personnalisés qui se construisent avec un peu d’expertise en programmation. <0/> pour plus d’informations." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Fils d’actu mis à jour !" @@ -3428,6 +3588,14 @@ msgstr "Filtrer les résultats par langue" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtrer les résultats par langue (actuellement : {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "Filtrer qui peut décider de recevoir des notifications pour votre activité" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "Filtrer de qui vous recevrez des notifications" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Finalisation" @@ -3448,7 +3616,7 @@ msgstr "Trouver des comptes à suivre" msgid "Find posts, users, and feeds on Bluesky" msgstr "Trouver des posts, des comptes et des fils d’actu sur Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Terminer" @@ -3456,17 +3624,17 @@ msgstr "Terminer" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Noir plat" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Bleu plat" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Blanc plat" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Flexible" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Suivre" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Suivre {0}" @@ -3518,7 +3686,7 @@ msgstr "Suivre le compte" msgid "Follow all" msgstr "Suivre tous" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Suivre en retour" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Suivre en retour" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Suivi par <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Suivi par <0>{0} et {1, plural, one {# autre} other {# autres}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Suivi par <0>{0} et <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Suivi par <0>{0}, <1>{1} et {2, plural, one {# autre} other {# autres}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Abonné·e·s de @{0} que vous connaissez" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Abonné·e·s que vous connaissez" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Suivi" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Suivis" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Suit {0}" @@ -3579,8 +3751,8 @@ msgstr "Suit {handle}" msgid "Following feed preferences" msgstr "Préférences du fil des abonnements" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Préférences du fil des abonnements" @@ -3592,11 +3764,11 @@ msgstr "Vous suit" msgid "Follows You" msgstr "Vous suit" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Police de caractères" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Taille de police" @@ -3613,7 +3785,7 @@ msgstr "Pour des raisons de sécurité, nous devrons envoyer un code de confirma msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Pour des raisons de sécurité, vous ne pouvez consulter ceci qu’une seule fois. Si vous perdez ce mot de passe d’application, vous devrez en générer un nouveau." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Pour une meilleure expérience, nous vous recommandons d’utiliser la police thématique." @@ -3643,11 +3815,15 @@ msgstr "Oublié ?" msgid "Frequently Posts Unwanted Content" msgstr "Publication fréquente de contenu indésirable" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "Provenant de" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "De @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "Tiré de <0/>" @@ -3660,14 +3836,68 @@ msgstr "Galerie" msgid "Generate a starter pack" msgstr "Générer un kit de démarrage" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Obtenir de l’aide" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "Notifier quand des comptes vous suivent." + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "Notifier quand des comptes aiment des posts que vous avez republiés." + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "Notifier quand des comptes aiment vos posts." + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "Notifier quand des comptes vous mentionnent." + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "Notifier quand des comptes vous citent." + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "Notifier quand des comptes répondent à vos posts." + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "Notifier quand des comptes republient à leur tour un de vos reposts." + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "Notifier quand des comptes republient vos posts." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "Recevoir une notification à chaque nouveau post" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Recevez des notifications à chaque nouveau post ou nouvelle réponse des comptes que vous choisissez." + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "Recevoir des notifications pour les nouveaux posts de {name}" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "Recevoir des notifications pour l’activité de ce compte" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "Recevoir des notifications quand {name} poste" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "Recevez des notifications quand quelqu’un poste" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "C’est parti" @@ -3686,16 +3916,18 @@ msgstr "Donner à votre profil un visage" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39 #: src/lib/moderation/useReportOptions.ts:39 msgid "Glaring violations of law or terms of service" -msgstr "Violations flagrantes de la loi ou des conditions d’utilisation" +msgstr "Violations flagrantes de la loi ou des conditions générales" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "Passer en direct" msgid "Go live for" msgstr "Passer en direct pendant" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "Voir le profil de {firstAuthorName}" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "Aller aux paramètres du compte" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Aller à la conversation avec {0}" @@ -3779,8 +4017,8 @@ msgstr "Médias crus" msgid "Half way there!" msgstr "On y est presque !" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Pseudo" @@ -3797,7 +4035,7 @@ msgstr "Pseudo changé !" msgid "Handle too long. Please try a shorter one." msgstr "Ce pseudo est trop long. Veuillez utiliser un pseudo plus court." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Haptiques" @@ -3806,7 +4044,7 @@ msgstr "Haptiques" msgid "Harassment, trolling, or intolerance" msgstr "Harcèlement, trolling ou intolérance" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Mot-clé" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Mot-clé : {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "Vous avez un code ? <0>Cliquez ici." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Un souci ?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Aide" @@ -3839,8 +4077,13 @@ msgstr "Aidez les gens à savoir que vous n’êtes pas un bot en envoyant une i msgid "Here is your app password!" msgstr "Voici votre mot de passe d’application !" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "Bonjour 👋" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Masqué" @@ -3848,16 +4091,16 @@ msgstr "Masqué" msgid "Hidden by your moderation settings." msgstr "Masqué par vos paramètres de modération." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Liste cachée" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Liste cachée" msgid "Hide" msgstr "Cacher" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Cacher" @@ -3875,18 +4118,18 @@ msgstr "Cacher" msgid "Hide customization options" msgstr "Masquer les paramètres de personnalisation" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Cacher ce post pour moi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Cacher cette réponse pour tout le monde" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Cacher cette réponse pour moi" @@ -3894,12 +4137,12 @@ msgstr "Cacher cette réponse pour moi" msgid "Hide this card" msgstr "Cacher cette carte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Cacher ce post ?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Cacher cette réponse ?" @@ -3913,11 +4156,11 @@ msgstr "Cacher les tendances" msgid "Hide trending topics?" msgstr "Cacher les tendances ?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Cacher les vidéos tendances ?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Cacher la liste des comptes" @@ -3926,32 +4169,32 @@ msgstr "Cacher la liste des comptes" msgid "Hide verification badges" msgstr "Masquer les badges de vérification" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Cache ce contenu" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm, un problème s’est produit avec le serveur de fils d’actu. Veuillez informer le fournisseur du fil d’actu de ce problème." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm, le serveur de fils d’actu semble être mal configuré. Veuillez informer le fournisseur du fil d’actu de ce problème." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm, le serveur de fils d’actu semble être hors ligne. Veuillez informer le fournisseur du fil d’actu de ce problème." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm, le serveur de fils d’actu ne répond pas. Veuillez informer le fournisseur du fil d’actu de ce problème." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, nous n’arrivons pas à trouver ce fil d’actu. Il a peut-être été supprimé." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmm, il semble que nous ayons des difficultés à charger ces données. Voir ci-dessous pour plus de détails. Si le problème persiste, contactez-nous." @@ -3959,15 +4202,15 @@ msgstr "Hmm, il semble que nous ayons des difficultés à charger ces données. msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmm, nous n’avons pas pu charger ce service de modération." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Attendez ! Nous donnons progressivement accès à la vidéo et vous faites toujours la queue. Revenez bientôt !" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Accueil" @@ -3984,10 +4227,10 @@ msgstr "Hébergeur" msgid "Hot" msgstr "Populaire" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Réponses actives en premier" @@ -3996,10 +4239,6 @@ msgstr "Réponses actives en premier" msgid "How should we open this link?" msgstr "Comment ouvrir ce lien ?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Je comprends" msgid "If alt text is long, toggles alt text expanded state" msgstr "Si le texte alt est trop long, change son mode d’affichage" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Si vous n’êtes pas encore un adulte selon les lois de votre pays, vos parents ou votre tuteur légal doivent lire ces conditions en votre nom." @@ -4029,13 +4268,13 @@ msgstr "Si vous supprimez cette liste, vous ne pourrez pas la récupérer." #: src/screens/Settings/components/ChangeHandleDialog.tsx:267 msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." -msgstr "Si vous possédez votre propre domaine, vous pouvez l’utiliser comme pseudo. Cela vous permet d’auto-vérifier votre identité. <0>En savoir plus" +msgstr "Si vous possédez votre propre domaine, vous pouvez l’utiliser comme pseudo. Cela vous permet d’auto-vérifier votre identité. <0>En savoir plus (en anglais)" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "Si vous avez besoin de mettre à jour votre adresse e-mail, <0>cliquez ici." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Si vous supprimez ce post, vous ne pourrez pas le récupérer." @@ -4047,6 +4286,10 @@ msgstr "Si vous mettez à jour votre adresse e-mail, la 2FA par e-mail sera dés msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Si vous souhaitez modifier votre mot de passe, nous vous enverrons un code pour vérifier qu’il s’agit bien de votre compte." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "Si vous voulez restreindre qui peut recevoir des notifications concernant votre propre activité, vous pouvez le faire depuis <0>Paramètres → Confidentialité et sécurité." + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "Si vous êtes développeur, vous pouvez héberger votre propre serveur." @@ -4091,13 +4334,41 @@ msgstr "Usurpation d’identité ou fausses déclarations concernant l’identit msgid "Impersonation, misinformation, or false claims" msgstr "Usurpation d’identité, désinformation ou fausses déclarations" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "Dans l’app." + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "Notifications dans l’app." + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "Dans l’app., de tout le monde" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "Dans l’app., des comptes suivis" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "Dans l’app., alertes" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "Dans l’app., alertes, de tout le monde" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "Dans l’app., alertes, des comptes suivis" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Messages inappropriés ou liens explicites" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "C’est vide !" @@ -4105,7 +4376,7 @@ msgstr "C’est vide !" msgid "Incorrect username or password" msgstr "Pseudo ou mot de passe incorrect" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Entrez le code envoyé à votre e-mail pour réinitialiser le mot de passe" @@ -4113,7 +4384,7 @@ msgstr "Entrez le code envoyé à votre e-mail pour réinitialiser le mot de pas msgid "Input confirmation code for account deletion" msgstr "Entrez le code de confirmation pour supprimer le compte" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Entrez le nouveau mot de passe" @@ -4129,10 +4400,14 @@ msgstr "Entrez le code qui vous a été envoyé par e-mail" msgid "Interaction limited" msgstr "Interaction limitée" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Paramètres d’interaction" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "Voici les notifications d’activité" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Code de confirmation 2FA invalide." msgid "Invalid handle. Please try a different one." msgstr "Votre pseudo est invalide. Veuillez utiliser un pseudo différent." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Enregistrement de post invalide ou non pris en charge" @@ -4158,7 +4433,7 @@ msgstr "Code de vérification invalide" msgid "Invite a Friend" msgstr "Inviter un ami" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Code d’invitation" @@ -4186,15 +4461,15 @@ msgstr "Invitez vos ami·e·s à suivre vos fils d’actu et vos personnes préf msgid "Invites, but personal" msgstr "Invitations, mais personnelles" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "C’est correct" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Il n’y a que vous pour l’instant ! Ajoutez d’autres personnes à votre kit de démarrage en effectuant une recherche ci-dessus." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "ID de job : {0}" @@ -4220,11 +4495,27 @@ msgstr "Participez à la conversation" msgid "Journalism" msgstr "Journalisme" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "Tenez-moi au courant" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "Politique de confidentialité de KWS (en anglais)" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "Conditions générales de KWS (en anglais)" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "Site de KWS" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Étiqueté par {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Étiqueté par l’auteur·ice." @@ -4237,7 +4528,7 @@ msgstr "Étiquettes" msgid "Labels added" msgstr "Étiquettes ajoutées" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Les étiquettes sont des annotations sur les comptes et le contenu. Elles peuvent être utilisées pour masquer, avertir et catégoriser le réseau." @@ -4253,60 +4544,79 @@ msgstr "Étiquettes sur votre contenu" msgid "Language selection" msgstr "Sélection de la langue" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Paramètres linguistiques" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Langues" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Plus grande" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "Démarré la dernière fois il y a {timeAgo}" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "Démarré la dernière fois à l’instant" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Dernier" #: src/screens/Settings/components/ChangeHandleDialog.tsx:271 msgid "learn more" -msgstr "en savoir plus" +msgstr "en savoir plus (en anglais)" #: src/components/verification/VerificationsDialog.tsx:165 #: src/components/verification/VerifierDialog.tsx:132 #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" -msgstr "En savoir plus" +msgstr "En savoir plus (en anglais)" #: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" msgstr "En savoir plus" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "En savoir plus sur la vérification d’âge" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" -msgstr "En savoir plus sur Bluesky" +msgstr "En savoir plus sur Bluesky (en anglais)" #: src/view/com/auth/server-input/index.tsx:218 msgid "Learn more about self hosting your PDS." -msgstr "En savoir plus sur l’auto-hébergement de PDS." +msgstr "En savoir plus sur l’auto-hébergement de PDS (en anglais)." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "En savoir plus sur la modération appliquée à ce contenu" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "En savoir plus sur la modération appliquée à ce contenu." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "Apprenez-en plus sur ces changements et sur la manière dont vous pouvez partager vos réflexions avec nous en <0>lisant notre article de blog (en anglais)." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Apprenez-en plus sur ces changements et sur la manière dont vous pouvez partager vos réflexions avec nous en lisant notre article de blog (en anglais)." + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "En savoir plus sur cet avertissement" @@ -4316,12 +4626,16 @@ msgstr "En savoir plus sur cet avertissement" msgid "Learn more about verification on Bluesky" msgstr "En savoir plus sur la vérification sur Bluesky (en anglais)" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." -msgstr "En savoir plus sur ce qui est public sur Bluesky." +msgstr "En savoir plus sur ce qui est public sur Bluesky (en anglais)." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "En savoir plus dans vos <0>paramètres de compte." + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "En savoir plus." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Partir de la conversation" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Si vous ne cochez rien, toutes les langues s’afficheront." +msgid "Leave them all unselected to see any language." +msgstr "Si vous n’en sélectionnez aucune, toutes les langues s’afficheront." -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Vous quittez Bluesky" @@ -4370,7 +4685,7 @@ msgstr "Allons-y !" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Clair" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Aimer" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Aimer ({0, plural, one {# ont aimé} other {# ont aimé}})" @@ -4397,6 +4712,10 @@ msgstr "Aimer 10 posts" msgid "Like 10 posts to train the Discover feed" msgstr "Aimez 10 posts afin de former le fil d’actu « Discover »" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "Notifications « J’aime »" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Aimer ce fil d’actu" @@ -4405,8 +4724,8 @@ msgstr "Aimer ce fil d’actu" msgid "Like this labeler" msgstr "Aimer cet étiqueteur" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Aimé par" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Aimé par" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Aimé par {0, plural, one {# compte} other {# comptes}}" @@ -4428,20 +4747,36 @@ msgstr "Aimé par {0, plural, one {# compte} other {# comptes}}" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Aimé par {likeCount, plural, one {# compte} other {# comptes}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Posts aimés" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "« J’aime » de vos reposts" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "Notifications « J’aime » de vos reposts" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Mentions « J’aime » sur ce post" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Linéaire" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Liste" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Liste bloquée" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Liste par {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "Liste par <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Liste par vous" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "Liste créée par" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Liste réaffichée" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Listes" @@ -4537,7 +4876,7 @@ msgstr "Charger plus" msgid "Load more suggested feeds" msgstr "Charger d’autres fils d’actu suggérés" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Charger les nouvelles notifications" @@ -4552,11 +4891,11 @@ msgstr "Charger les nouveaux posts" msgid "Loading..." msgstr "Chargement…" -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Journaux" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Visibilité déconnectée" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo par @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo par <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Logo par <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Appuyer longtemps pour ouvrir le menu de mot-clé pour #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "De la forme XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "Ajuster les paramètres d’e-mail pour votre compte" msgid "Make one for me" msgstr "En faire un pour moi" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 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 !" @@ -4606,7 +4945,7 @@ msgstr "Assurez-vous que c’est bien là que vous avez l’intention d’aller msgid "Manage saved feeds" msgstr "Gérer vos fils d’actu enregistrés" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "Gérer les paramètres de vérification" @@ -4614,9 +4953,9 @@ msgstr "Gérer les paramètres de vérification" msgid "Manage your muted words and tags" msgstr "Gérer les mots et les mots-clés masqués" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "Tout marquer comme lus" @@ -4625,15 +4964,13 @@ msgstr "Tout marquer comme lus" msgid "Mark as read" msgstr "Marqué comme lu" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "Tout marqué comme lus" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "Peut-être plus tard" @@ -4645,19 +4982,26 @@ msgstr "Média" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Médias qui peuvent être perturbants ou inappropriés pour certains publics." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "Notifications des mentions" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "comptes mentionnés" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Comptes mentionnés" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Mentions" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Menu" @@ -4665,7 +5009,7 @@ msgstr "Menu" msgid "Message {0}" msgstr "Envoyer un message à {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Message supprimé" @@ -4674,11 +5018,11 @@ msgstr "Message supprimé" msgid "Message deleted" msgstr "Message supprimé" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "Message de @{0} : {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Message du serveur : {0}" @@ -4691,19 +5035,23 @@ msgstr "Champ d’écriture du message" msgid "Message is too long" msgstr "Le message est trop long" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "Options de message" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Messages" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Minuit" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "Notifications diverses" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Compte trompeur" msgid "Misleading Post" msgstr "Post trompeur" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Modération" @@ -4725,17 +5073,17 @@ msgstr "Modération" msgid "Moderation details" msgstr "Détails de la modération" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Liste de modération par {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Liste de modération par <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Liste de modération par vous" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Liste de modération mise à jour" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Listes de modération" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Listes de modération" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "paramètres de modération" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "États de modération" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Outils de modération" @@ -4775,7 +5123,7 @@ msgstr "Outils de modération" msgid "Moderator has chosen to set a general warning on the content." msgstr "La modération a choisi d’ajouter un avertissement général sur le contenu." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Plus" @@ -4790,13 +5138,13 @@ msgstr "Plus de fils d’actu" msgid "More options" msgstr "Plus d’options" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Les plus aimés en premier" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Réponses les plus aimées en premier" @@ -4808,8 +5156,8 @@ msgstr "Cinéma" msgid "Music" msgstr "Musique" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Désactiver le son" @@ -4819,8 +5167,8 @@ msgstr "Désactiver le son" msgid "Mute {tag}" msgstr "Masquer {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Masquer ce mot dans les mots-clés uniquement" msgid "Mute this word until you unmute it" msgstr "Masquer ce mot jusqu’à ce que vous le réaffichiez" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Masquer ce fil de discussion" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Masquer les mots et les mots-clés" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Comptes masqués" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Comptes masqués" @@ -4898,7 +5246,7 @@ msgstr "Les comptes masqués voient leurs posts supprimés de votre fil d’actu msgid "Muted by \"{0}\"" msgstr "Masqué par « {0} »" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Mots et mots-clés masqués" @@ -4911,7 +5259,7 @@ msgstr "Ce que vous masquez reste privé. Les comptes masqués peuvent interagir msgid "My Birthday" msgstr "Ma date de naissance" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Mes fils d’actu" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Nature" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Navigue vers {0}" @@ -4958,11 +5306,11 @@ msgstr "Navigue vers le prochain écran" msgid "Navigates to your profile" msgstr "Navigue vers votre profil" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Besoin de la changer ?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "Besoin de signaler une violation de droit d’auteur, un problème de conformité réglementaire, ou faire une requête légale ?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Besoin de signaler une violation des droits d’auteur ?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Nouveau" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "{postsCount, plural, one {Nouveau post} other {Nouveaux posts}} de {firstAuthorLink}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "{postsCount, plural, one {Nouveau post} other {Nouveaux posts}} de {firstAuthorName}" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Nouvelle discussion" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "Nouvelle adresse e-mail" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "Nouvelle fonctionnalité" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "Notifications de nouveaux comptes abonnés" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "Nouveaux comptes abonnés" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Nouveaux messages" msgid "New Moderation List" msgstr "Nouvelle liste de modération" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Nouveau mot de passe" @@ -5029,7 +5396,7 @@ msgstr "Nouveau mot de passe" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Nouveau post" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Nouveau post" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Nouveaux posts de {firstAuthorLink} et <0>{additionalAuthorsCount, plural,one {{formattedAuthorsCount} autre} other {{formattedAuthorsCount} autres}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Nouveaux posts de {firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre} other {{formattedAuthorsCount} autres}}" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Dialogue d’information sur un nouveau compte" @@ -5054,10 +5429,14 @@ msgstr "Dialogue d’information sur un nouveau compte" msgid "New User List" msgstr "Nouvelle liste de comptes" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Réponses les plus récentes en premier" @@ -5071,15 +5450,15 @@ msgstr "Actualités" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "Pas de panneau DNS" msgid "No expiry set" msgstr "Pas d’expiration définie" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Aucun GIFs vedettes à afficher. Il y a peut-être un souci chez Tenor." @@ -5119,32 +5498,35 @@ msgstr "Pas d’image" msgid "No likes yet" msgstr "Pas encore de mentions « j’aime »" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Ne suit plus {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "Pas plus de {MAX_SERVICE_HANDLE_LENGTH, plural, one {# caractère} other {# caractères}}" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Pas encore de messages" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Pas encore de notifications !" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Personne" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Personne d’autre que l’auteur·ice ne peut citer ce post." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "Pas de posts ici" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Pas encore de posts." @@ -5171,7 +5553,7 @@ msgstr "Aucun résultat" msgid "No results for \"{0}\"." msgstr "Aucun résultat pour « {0} »." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Aucun résultat trouvé" @@ -5179,9 +5561,9 @@ msgstr "Aucun résultat trouvé" msgid "No results found for \"{query}\"" msgstr "Aucun résultat trouvé pour « {query} »" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Aucun résultat trouvé pour {query}" @@ -5189,7 +5571,7 @@ msgstr "Aucun résultat trouvé pour {query}" msgid "No results." msgstr "Aucun résultat." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Pas de résultats pour « {search} »." @@ -5198,7 +5580,7 @@ msgstr "Pas de résultats pour « {search} »." msgid "No thanks" msgstr "Non merci" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Personne" @@ -5223,59 +5605,76 @@ msgstr "Personne n’a été trouvé. Essayez de chercher quelqu’un d’autre. msgid "Non-sexual Nudity" msgstr "Nudité non sexuelle" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "Aucune" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "Pas suivi par quiconque que vous suivez" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Introuvable" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Note sur le partage" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "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/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "Note : Ce post n’est visible qu’aux personnes connectées." + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Rien ici" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Filtres de notification" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Paramètres de notification" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Paramètres de notification" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Sons de notification" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Sons de notification" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Notifications" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "Notifications pour tout le reste, comme quand quelqu’un s’inscrit via l’un de vos kits de démarrage." + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "maintenant" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Nudité ou contenu adulte non identifié comme tel" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Éteint" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Oh non !" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "OK" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "OK" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Plus anciennes réponses en premier" @@ -5331,19 +5736,19 @@ msgstr "Plus anciennes réponses en premier" msgid "on<0><1/><2><3/>" msgstr "sur<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Réinitialiser le didacticiel" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "Un ou plusieurs GIFs n’ont pas de texte alt." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Une ou plusieurs images n’ont pas de texte alt." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Une ou plusieurs vidéos n’ont pas de texte alt." @@ -5351,13 +5756,15 @@ msgstr "Une ou plusieurs vidéos n’ont pas de texte alt." msgid "Only .jpg and .png files are supported" msgstr "Seuls les fichiers .jpg et .png sont acceptés" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Seul {0} peut répondre." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Ne contient que des lettres, des chiffres et des traits d’union" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "Seulement des abonné·e·s que je suis" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Seuls les fichiers d’images sont pris en charge" msgid "Only WebVTT (.vtt) files are supported" msgstr "Seuls les fichiers WebVTT (.vtt) sont pris en charge" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Oups, quelque chose n’a pas marché !" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Oups !" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Ouvre le menu latéral" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Ouvrir le sélecteur d’emoji" @@ -5416,7 +5822,7 @@ msgstr "Ouvrir le menu des options de fil d’actu" msgid "Open full emoji list" msgstr "Ouvrir la liste complète des emojis" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Ouvrir le lien vers {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Ouvrir le lien vers {niceUrl}" msgid "Open message options" msgstr "Ouvrir les options de message" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Ouvrir la page de débogage de modération" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Ouvrir les paramètres des mots masqués et mots-clés" @@ -5453,16 +5859,16 @@ msgstr "Ouvrir le menu de partage" msgid "Open starter pack menu" msgstr "Ouvrir le menu du kit de démarrage" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Ouvrir la page Storybook" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Ouvrir le journal du système" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Ouvre {numItems} options" @@ -5490,11 +5896,11 @@ msgstr "Ouvre l’appareil photo de l’appareil" msgid "Opens captions and alt text dialog" msgstr "Ouvre la boîte de dialogue sur les sous-titres et le texte alt" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Ouvre la boîte de dialogue de changement de pseudo" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Ouvre la fenêtre de rédaction" @@ -5502,7 +5908,7 @@ msgstr "Ouvre la fenêtre de rédaction" msgid "Opens device photo gallery" msgstr "Ouvre la galerie de photos de l’appareil" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Ouvre le sélecteur d’emoji" @@ -5520,15 +5926,19 @@ msgstr "Ouvre le parcours pour vous connecter à votre compte Bluesky existant" msgid "Opens GIF select dialog" msgstr "Ouvre la sélection de GIF" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Ouvre le site d’aide dans un navigateur" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "Ouvre le lien vers {0}" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Ouvre la liste des codes d’invitation" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "Ouvre la fenêtre de statut « En direct »" @@ -5536,12 +5946,8 @@ msgstr "Ouvre la fenêtre de statut « En direct »" msgid "Opens password reset form" msgstr "Ouvre le formulaire de réinitialisation du mot de passe" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Ouvre le site web lié" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Ouvre ce profil" @@ -5558,7 +5964,7 @@ msgstr "Ajoutez des informations supplémentaires ci-dessous (optionnel) :" msgid "Options:" msgstr "Options :" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Ou une combinaison de ces options :" @@ -5600,6 +6006,10 @@ msgstr "Autre compte" msgid "Other..." msgstr "Autre…" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "Notre article de blog (en anglais)" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "Notre équipe de modération a reçu votre signalement." @@ -5608,7 +6018,7 @@ msgstr "Notre équipe de modération a reçu votre signalement." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Notre modération a examiné les signalements qu’elle a reçu et a décidé de désactiver votre accès aux discussions sur Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Page introuvable" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Page introuvable" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Mise à jour du mot de passe" msgid "Password updated!" msgstr "Mot de passe mis à jour !" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Mettre en pause" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Mettre en pause la vidéo" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Personnes" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Personnes suivies par @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Personnes qui suivent @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "Comptes suivis" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "Permission d’accès à votre photothèque refusée. Veuillez l’autoriser depuis vos paramètres système." @@ -5704,12 +6119,12 @@ msgstr "Ajouter à l’accueil" msgid "Pin to Home" msgstr "Ajouter à l’accueil" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Épingler à votre profil" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Épinglé" @@ -5718,7 +6133,7 @@ msgstr "Épinglé" msgid "Pinned {0} to Home" msgstr "{0} ajouté à l’accueil" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Fils épinglés" @@ -5726,38 +6141,38 @@ msgstr "Fils épinglés" msgid "Pinned to your feeds" msgstr "Épinglé à vos fils d’actu" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Lire" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Lire {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Lancer la vidéo" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Lancer la vidéo" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Lance ou met en pause le GIF" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Lance ou met en pause la vidéo" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Lance le GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Lance la vidéo" @@ -5765,12 +6180,16 @@ msgstr "Lance la vidéo" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "Veuillez ajouter toute étiquette d’avertissement de contenu pertinente pour le média que vous postez." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "Veuillez vérifier votre boîte de réception d’e-mail pour la suite des instructions. Cela peut prendre une minute ou deux à arriver." + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Veuillez choisir votre pseudo." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Veuillez choisir votre mot de passe." @@ -5782,7 +6201,8 @@ msgstr "Veuillez cliquer sur le lien dans l’e-mail que nous venons de vous env msgid "Please complete the verification captcha." msgstr "Veuillez compléter le captcha de vérification." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Veuillez vérifier scrupuleusement que vous avez écrit votre adresse e-mail correctement." @@ -5804,6 +6224,7 @@ msgstr "Veuillez saisir un nom unique pour ce mot de passe d’application ou ut msgid "Please enter a valid code." msgstr "Veuillez saisir un code valide." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "Veuillez saisir une adresse e-mail valide." @@ -5812,7 +6233,11 @@ msgstr "Veuillez saisir une adresse e-mail valide." msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Veuillez entrer un mot, un mot-clé ou une phrase valide à masquer" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "Veuillez entrer une adresse e-mail valide et non temporaire. Vous pourriez avoir besoin d’accéder à cette adresse dans le futur." + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "Veuillez saisir le code que nous avons envoyé à <0>{0} ci-dessous." @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "Veuillez saisir le code de sécurité que nous avons envoyé à votre précédente adresse e-mail." #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Veuillez entrer votre e-mail." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Veuillez saisir votre code d’invitation." @@ -5853,6 +6278,19 @@ msgstr "Expliquez-nous pourquoi vous pensez que cette étiquette a été appliqu msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Expliquez-nous pourquoi vous pensez que vos discussions ont été désactivées de manière indûe" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "Revenez en arrière, ou activez cet élément pour revenir au début du contenu actuel." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "Veuillez fournir tous les détails supplémentaires que vous pensez nécessaires à la modération pour évaluer correctement l’état de votre vérification d’âge." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "Veuillez sélectionner une langue" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "Veuillez sélectionner un service de modération" @@ -5870,9 +6308,9 @@ msgstr "Identifiez-vous en tant que @{0}" msgid "Please verify your email" msgstr "Veuillez vérifier votre e-mail" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Veuillez vérifier votre e-mail" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "Veuillez écrire votre message ci-dessous :" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Politique" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Poster" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Post" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Poster" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Tout poster" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "Post bloqué" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Post de {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Post de @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Post supprimé" @@ -5919,11 +6362,14 @@ msgstr "Post supprimé" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Échec de l’envoi du post. Vérifiez votre connexion Internet et réessayez." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "Post supprimé" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Post caché" @@ -5937,11 +6383,11 @@ msgstr "Post caché par mot masqué" msgid "Post Hidden by You" msgstr "Post caché par vous" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Paramètres d’interaction du post" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Paramètres d’interaction du post" @@ -5954,8 +6400,10 @@ msgstr "Langue du post" msgid "Post Languages" msgstr "Langues du post" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Post introuvable" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Post désépinglé" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Posts" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Les posts peuvent être masqués en fonction de leur texte, de leurs mots-clés ou des deux. Nous vous recommandons d’éviter les mots communs qui apparaissent dans de nombreux posts, car cela peut avoir pour conséquence qu’aucun post ne s’affiche." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Posts cachés" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "Posts, réponses" + +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" msgstr "Lien potentiellement trompeur" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Préférence enregistrée" +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "Avertissement de lien potentiellement trompeur" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Appuyer pour tenter une reconnection" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Appuyer pour réessayer" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Appuyer pour voir les personnes qui suivent ce compte et que vous suivez également" @@ -6015,40 +6469,46 @@ msgstr "Image précédente" msgid "Primary Language" msgstr "Langue principale" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Prioriser vos abonnements" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Notifications prioritaires" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Vie privée" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Confidentialité et sécurité" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Confidentialité et sécurité" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "Paramètres de confidentialité et sécurité" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" -msgstr "Charte de confidentialité" +msgstr "Politique de confidentialité" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Traitement de la vidéo en cours…" @@ -6062,15 +6522,14 @@ msgstr "Traitement…" msgid "profile" msgstr "profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Profil" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Profil mis à jour" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Listes publiques et partageables de comptes qui peuvent alimenter les fils d’actu." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "Publier le post" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "Publier les posts" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "Publier les réponses" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "Publier la réponse" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "Alertes" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "Alertes (notifs push)" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "Alertes, de tout le monde" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "Alertes, des comptes suivis" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "Code QR copié dans votre presse-papier !" @@ -6119,44 +6594,52 @@ msgstr "Code QR a été téléchargé !" msgid "QR code saved to your camera roll!" msgstr "Code QR enregistré dans votre photothèque !" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "Notifications de citation" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Citer le post" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "La citation a été ré-attachée" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "La citation a été détachée avec succès" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Citations désactivées" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Paramètres des citations" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Citations" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Citations de ce post" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Aléatoire" @@ -6164,8 +6647,8 @@ msgstr "Aléatoire" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Limite de changements dépassée – vous avez essayé de changer votre pseudo trop souvent dans une courte période. Veuillez attendre avant de réessayer." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Réattacher la citation" @@ -6177,32 +6660,44 @@ msgstr "Réagir avec {emoji}" msgid "Reactivate your account" msgstr "Réactiver votre compte" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "Lire {0} {1, plural, one {réponse} other {réponses}} en plus" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" -msgstr "Lire le post de blog (en anglais)" +msgstr "Lire l’article de blog (en anglais)" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Lire moins" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Lire plus" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "Lire plus de réponses" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "Lire notre article de blog (en anglais)" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" -msgstr "Lire le blog de Bluesky" +msgstr "Lire le blog de Bluesky (en anglais)" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" -msgstr "Lire la politique de confidentialité de Bluesky" +msgstr "Lire la politique de confidentialité de Bluesky (en anglais)" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" -msgstr "Lire les conditions d’utilisation de Bluesky" +msgstr "Lire les conditions générales de Bluesky (en anglais)" #: src/screens/Takendown.tsx:162 #: src/screens/Takendown.tsx:170 @@ -6213,6 +6708,14 @@ msgstr "Raison de l’appel" msgid "Reason:" msgstr "Raison :" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "Recevoir des notifications dans l’app." + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "Recevoir des alertes (notifs push)" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Recherches récentes" @@ -6234,8 +6737,8 @@ msgstr "Décliner" msgid "Reject chat request" msgstr "Décliner la demande de discussion" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Rafraîchir les conversations" @@ -6244,10 +6747,9 @@ msgstr "Rafraîchir les conversations" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Supprimer" @@ -6259,17 +6761,17 @@ msgstr "Supprimer {displayName} du kit de démarrage" msgid "Remove {historyItem}" msgstr "Supprimer {historyItem}" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Supprimer compte" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Supprimer la pièce jointe" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Supprimer l’avatar" @@ -6284,24 +6786,22 @@ msgstr "Supprimer l’intégration" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Supprimer le fil d’actu" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Supprimer le fil d’actu ?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Supprimer de mes fils d’actu" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Supprimer de l’accès rapide ?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "Supprimer des fils d’actu enregistrés" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "Supprimer de vos fils d’actu ?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Supprimer l’image" @@ -6332,12 +6831,8 @@ msgstr "Supprimer le mot masqué de votre liste" msgid "Remove profile" msgstr "Supprimer le profil" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Supprimer la citation" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Supprimer le repost" @@ -6345,7 +6840,7 @@ msgstr "Supprimer le repost" msgid "Remove subtitle file" msgstr "Supprimer le fichier de sous-titres" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Supprimer ce fil d’actu de vos fils d’actu enregistrés" @@ -6364,11 +6859,11 @@ msgstr "Retirer la vérification" msgid "Remove your verification for this account?" msgstr "Retirer votre vérification de ce compte ?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Supprimé par l’auteur·ice" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Supprimé par vous" @@ -6377,10 +6872,6 @@ msgstr "Supprimé par vous" msgid "Removed from list" msgstr "Supprimé de la liste" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Supprimé de mes fils d’actu" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Supprimé de vos fils d’actu enregistrés" @@ -6395,34 +6886,36 @@ msgstr "Supprimé de vos fils d’actu" msgid "Removed verification" msgstr "Vérification retirée" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Supprime le post cité" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Remplacer par Discover" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Réponses" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Les réponses sont désactivées" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Les réponses à ce post sont désactivées." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Répondre" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Répondre ({0, plural, one {# réponse} other {# réponses}})" @@ -6436,50 +6929,55 @@ msgstr "Réponse cachée par l’auteur·ice du fil de discussion" msgid "Reply Hidden by You" msgstr "Réponse cachée par vous" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "Notifications de réponses" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Paramètres de réponse" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "Les paramètres de réponse sont choisis par l’auteur·ice du fil de discussion" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Ordre des réponses" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Réponse à <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Réponse à un post bloqué" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Réponse à un post" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Réponse à vous" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Visibilité de la réponse mise à jour" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "La réponse a été cachée avec succès" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Signaler le fil d’actu" msgid "Report list" msgstr "Signaler la liste" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Signaler le message" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Signaler le post" @@ -6567,25 +7065,26 @@ msgstr "Signaler ce kit de démarrage" msgid "Report this user" msgstr "Signaler ce compte" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Republier" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Republier" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Republier ({0, plural, one {# repost} other {# reposts}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "Notifications de reposts" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Republier ou citer" @@ -6594,35 +7093,47 @@ msgstr "Republier ou citer" msgid "Reposted By" msgstr "Republié par" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Republié par {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Republié par <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Republié par vous" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "Reposts" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Reposts de ce post" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "Demander la modification" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "Reposts de vos reposts" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "Notifications des reposts de vos reposts" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "Demander un code" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Nécessiter un texte alt avant de publier" @@ -6630,7 +7141,7 @@ msgstr "Nécessiter un texte alt avant de publier" msgid "Require an email code to sign in to your account." msgstr "Nécessiter un code par e-mail pour se connecter au compte." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Obligatoire pour cet hébergeur" @@ -6642,10 +7153,6 @@ msgstr "Nécessaire dans votre région" msgid "Resend" msgstr "Renvoyer" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Renvoyer l’e-mail" msgid "Resend Verification Email" msgstr "Renvoyer l’e-mail de vérification" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "Réinitialiser la présentation des suivis d’activité" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Réinitialiser le code" @@ -6667,8 +7180,8 @@ msgstr "Réinitialiser le code" msgid "Reset Code" msgstr "Code de réinitialisation" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Réinitialisation du didacticiel" @@ -6687,21 +7200,23 @@ msgstr "Réessaye la dernière action, qui a échoué" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Réessayer" @@ -6721,19 +7236,19 @@ msgstr "Retour à la page d’accueil" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Retour à la page précédente" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Retourne à l’étape précédente" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Retourne à l’étape précédente" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Enregistrer" @@ -6762,15 +7276,13 @@ msgstr "Enregistrer" msgid "Save birthday" msgstr "Enregistrer la date de naissance" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Enregistrer les modifications" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Enregistrer" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Enregistrer le code QR" msgid "Save to my feeds" msgstr "Enregistrer dans mes fils d’actu" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Fils d’actu enregistrés" @@ -6802,18 +7314,14 @@ msgstr "Fils d’actu enregistrés" msgid "Saved to your feeds" msgstr "Enregistré à mes fils d’actu" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Enregistre les changements sur votre profil" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Enregistre les paramètres de recadrage de l’image" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Dites bonjour !" @@ -6826,16 +7334,16 @@ msgstr "Science" msgid "Scroll to top" msgstr "Remonter en haut" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Recherche" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Rechercher dans les posts de @{0}" @@ -6861,7 +7369,7 @@ msgstr "Recherche de « {query} »" msgid "Search for \"{searchText}\"" msgstr "Recherche de « {searchText} »" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Recherchez des fils d’actu que vous voulez suggérer à d’autres personnes." @@ -6877,10 +7385,14 @@ msgstr "Rechercher plus de fils d’actu" msgid "Search for posts, users, or feeds" msgstr "Rechercher des posts, des comptes ou des fils d’actu" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Rechercher des GIFs" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "La recherche est indisponible en ce moment sans connexion à un compte" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Rechercher dans mes posts" @@ -6890,12 +7402,12 @@ msgstr "Rechercher dans mes posts" msgid "Search posts" msgstr "Rechercher dans ses posts" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Rechercher dans les profils" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Rechercher dans Tenor" @@ -6903,7 +7415,7 @@ msgstr "Rechercher dans Tenor" msgid "Search..." msgstr "Rechercher…" -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Recherche parmi les profils" @@ -6912,10 +7424,6 @@ msgstr "Recherche parmi les profils" msgid "Security step required" msgstr "Étape de sécurité requise" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Étape de sécurité requise" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "Voir les posts {tag}" @@ -6934,16 +7442,33 @@ msgstr "Voir les posts #{tag} de ce compte" #: src/view/com/auth/SplashScreen.web.tsx:178 msgid "See jobs at Bluesky" -msgstr "Voir les offres d’emploi chez Bluesky" +msgstr "Voir les offres d’emploi chez Bluesky (en anglais)" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "Voir plus" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "Plus de comptes qui pourraient vous plaire" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "Voir plus de profils suggérés depuis la page Explorer" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Voir ce guide" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Curseur de recherche. Utiliser les touches de flèches pour avancer ou reculer, et Espace pour la lecture/pause." +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "Sélectionner {0}" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Sélectionner une couleur" @@ -6988,7 +7513,7 @@ msgstr "Sélectionner un compte existant" msgid "Select GIF" msgstr "Sélectionner le GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Sélectionner le GIF « {0} »" @@ -6996,6 +7521,11 @@ msgstr "Sélectionner le GIF « {0} »" msgid "Select how long to mute this word for." msgstr "Sélectionnez la durée pendant laquelle vous souhaitez masquer ce mot." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "Sélectionner une langue" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Sélectionner la langue…" @@ -7004,7 +7534,7 @@ msgstr "Sélectionner la langue…" msgid "Select languages" msgstr "Sélectionner les langues" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "Sélectionner un service de modération" @@ -7045,12 +7575,12 @@ msgstr "Choisissez la langue à utiliser pour l’interface de l’application." msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Sélectionnez les langues que vous souhaitez voir figurer dans les fils d’actu que vous suivez. Si aucune langue n’est sélectionnée, toutes les langues seront affichées." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Sélectionnez votre date de naissance" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Sélectionnez vos centres d’intérêt parmi les options ci-dessous" @@ -7058,7 +7588,11 @@ msgstr "Sélectionnez vos centres d’intérêt parmi les options ci-dessous" msgid "Select your preferred language for translations in your feed." msgstr "Sélectionnez votre langue préférée pour traduire votre fils d’actu." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "Sélectionner vos canaux de notification préférés" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "Sélectionne l’option {0} sur {numItems}" @@ -7066,17 +7600,9 @@ msgstr "Sélectionne l’option {0} sur {numItems}" msgid "Send a neat website!" msgstr "Envoyez un site chouette !" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "Envoyer la confirmation" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Envoyer l’e-mail de confirmation" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Envoyer e-mail" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Envoyer l’e-mail" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Envoyer des commentaires" @@ -7095,7 +7621,7 @@ msgstr "Envoyer des commentaires" msgid "Send message" msgstr "Envoyer le message" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "Envoyer le post à {name}" @@ -7114,20 +7640,20 @@ msgstr "Envoyer le signalement" msgid "Send report to {0}" msgstr "Envoyer le signalement à {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "Envoyer le signalement à {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Envoyer l’e-mail de vérification" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Envoyer par message privé" @@ -7143,7 +7669,7 @@ msgstr "Adresse du serveur" msgid "Set app icon to {0}" msgstr "Définir l’icône de l’application comme {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Entrez votre date de naissance" @@ -7159,13 +7685,57 @@ msgstr "Créez votre compte" msgid "Sets email for password reset" msgstr "Définit l’e-mail pour la réinitialisation du mot de passe" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Paramètres" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "Paramètres des notifications d’activité d’autres comptes" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "Paramètres autorisant les autres à être notifié de vos posts" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "Paramètres des notifications « J’aime »" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "Paramètres des notifications de mentions" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "Paramètres des notifications de nouveaux comptes abonnés" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "Paramètres des notifications diverses" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "Paramètres des notifications « J’aime » de vos reposts" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "Paramètres des notifications des reposts de vos reposts" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "Paramètres des notifications de citations" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "Paramètres des notifications de réponses" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "Paramètres des notifications de reposts" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "Partagez une histoire sympa !" msgid "Share a fun fact!" msgstr "Partagez une anecdote insolite !" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Partager quand même" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "Partager le DID de l’auteur" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Partager le lien" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Partager le lien" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Dialogue pour le partage d’un lien" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "Partager l’URI at:// du post" @@ -7247,8 +7812,8 @@ msgstr "Partagez ce kit de démarrage" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Partagez ce kit de démarrage et aidez les gens à rejoindre votre communauté sur Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "Partager via…" msgid "Share your favorite feed!" msgstr "Partagez votre fil d’actu favori !" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Testeur de préférences partagées" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Partage le site web lié" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Afficher" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Voir le texte alt" @@ -7303,8 +7864,8 @@ msgstr "Afficher les paramètres de personnalisation" msgid "Show hidden replies" msgstr "Afficher les réponses cachées" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "En montrer moins comme ça" @@ -7312,55 +7873,63 @@ msgstr "En montrer moins comme ça" msgid "Show list anyway" msgstr "Afficher quand même la liste" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Voir plus" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "En montrer plus comme ça" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "Afficher plus de réponses" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Afficher les réponses masquées" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "Afficher les réponses en vue arborescente" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Afficher les citations" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Afficher les réponses" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Type d’affichage des réponses" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Afficher les réponses comme des fils" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Afficher les réponses des comptes que vous suivez avant les autres réponses" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Afficher la réponse pour tout le monde" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Afficher les reposts" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Afficher des extraits de vos fils d’actu enregistrés dans votre fil d’abonnements" @@ -7372,16 +7941,17 @@ msgstr "Afficher l’avertissement" msgid "Show warning and filter from feeds" msgstr "Afficher l’avertissement et filtrer des fils d’actu" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Affiche plus d’informations sur la date de création de ce post" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "Affiche les autres comptes vers lesquels vous pouvez basculer" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Affiche le contenu" @@ -7390,14 +7960,15 @@ msgstr "Affiche le contenu" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "Se connecter à un compte qui n’est pas listé" msgid "Sign in to Bluesky or create a new account" msgstr "Connectez-vous à Bluesky ou créez un nouveau compte" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "Se connecter pour voir le post" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Déconnexion" @@ -7444,8 +8020,8 @@ msgstr "Déconnexion" msgid "Sign Out" msgstr "Se déconnecter" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Se déconnecter ?" @@ -7459,12 +8035,12 @@ msgstr "Connexion requise" msgid "Signed in as @{0}" msgstr "Connecté en tant que @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Comptes similaires" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Ignorer" @@ -7472,12 +8048,11 @@ msgstr "Ignorer" msgid "Skip this flow" msgstr "Passer cette étape" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Plus petite" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "Repousse le rappel" @@ -7490,11 +8065,11 @@ msgstr "Développement de logiciels" msgid "Some of your verifications are invalid." msgstr "Certaines de vos vérifications ne sont pas valides." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Quelques autres fils d’actu qui pourraient vous intéresser" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Quelques comptes peuvent répondre" @@ -7510,10 +8085,11 @@ msgstr "Quelqu’un a réagi à {1} avec {0}" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "Il y a un souci avec les données que vous essayez de signaler. Veuillez contacter le support." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Quelque chose n’a pas marché" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Quelque chose n’a pas marché, veuillez réessayer" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Quelque chose n’a pas marché, veuillez réessayer." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Quelque chose n’a pas marché !" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "Quelque chose n’a pas marché. Veuillez réessayer plus tard." + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "Quelque chose n’a pas marché. Veuillez réessayer." @@ -7539,20 +8118,23 @@ msgstr "Quelque chose n’a pas marché. Veuillez réessayer." msgid "Something wrong? Let us know." msgstr "Un problème ? Dites-nous tout." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "Désolé ! Votre session a expiré. Essayez de vous reconnecter." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Trier les réponses" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Trier les réponses par" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Trier les réponses au même post par :" @@ -7579,7 +8161,7 @@ msgstr "Spam ; mentions ou réponses excessives" msgid "Sports" msgstr "Sports" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "Démarrez une conversation, et elle apparaîtra ici." @@ -7601,9 +8183,9 @@ msgstr "Commencez à ajouter des personnes !" msgid "Start chat with {displayName}" msgstr "Démarrer une discussion avec {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Kit de démarrage" @@ -7611,12 +8193,12 @@ msgstr "Kit de démarrage" msgid "Starter pack by {0}" msgstr "Kit de démarrage par {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Kit de démarrage par <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Kit de démarrage par vous" @@ -7638,19 +8220,21 @@ msgstr "Les kits de démarrage vous permettent de partager facilement vos fils d msgid "Status Page" msgstr "État du service" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Étape {0} sur {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Stockage effacé, vous devez redémarrer l’application maintenant." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Historique" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Faire appel" msgid "Submit Appeal" msgstr "Faire appel" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "Envoyer le signalement" @@ -7676,10 +8260,14 @@ msgstr "Envoyer le signalement" msgid "Subscribe" msgstr "S’abonner" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Abonnez-vous à @{0} pour utiliser ces étiquettes :" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "Suivre l’activité du compte" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "S’abonner à l’étiqueteur" @@ -7692,8 +8280,12 @@ msgstr "S’abonner à cet étiqueteur" msgid "Subscribe to this list" msgstr "S’abonner à cette liste" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "Succès" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Succès !" @@ -7705,7 +8297,7 @@ msgstr "Vérification réussie" msgid "Suggested Accounts" msgstr "Comptes suggérés" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Suggérés pour vous" @@ -7714,26 +8306,26 @@ msgstr "Suggérés pour vous" msgid "Suggestive" msgstr "Suggestif" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Lever du soleil" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Coucher du soleil" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Soutien" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Changer de compte" @@ -7742,24 +8334,24 @@ msgstr "Changer de compte" msgid "Switch Account" msgstr "Changer de compte" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Changer de compte" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "Basculer vers {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Système" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Journal système" @@ -7767,6 +8359,18 @@ msgstr "Journal système" msgid "Tags only" msgstr "Mots-clés seulement" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "Tapez pour plus d’infos" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "Tapez pour plus d’infos" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "Appuyez pour reconnaître que vous comprenez et acceptez ces mises à jour et pour continuer à utiliser Bluesky" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,14 +8415,16 @@ msgstr "Dites-nous en un peu plus" msgid "Terms" msgstr "Conditions générales" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" -msgstr "Conditions d’utilisation" +msgstr "Conditions générales" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:60 #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:99 @@ -7848,10 +8454,6 @@ msgstr "Champ de saisie de texte" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "Merci pour votre retour ! Il sera envoyé au fournisseur du fil d’actu." -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Merci ! Votre adresse e-mail a été vérifiée avec succès." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Nous vous remercions. Votre signalement a été envoyé." @@ -7864,28 +8466,28 @@ msgstr "Merci, vous avez vérifié avec succès votre adresse e-mail. Vous pouve msgid "That contains the following:" msgstr "Qui contient les éléments suivants :" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Ce pseudo est déjà occupé." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Ce kit de démarrage n’a pas pu être trouvé." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "Ce pseudo est déjà utilisé" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Et voilà, c’est tout !" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "C’est tout !" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "Ce compte pourra interagir avec vous après le déblocage." @@ -7900,13 +8502,13 @@ msgstr "L’application redémarrera." msgid "The author of this thread has hidden this reply." msgstr "L’auteur·ice de ce fil de discussion a masqué cette réponse." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "L’application web Bluesky" #: src/view/screens/CommunityGuidelines.tsx:38 msgid "The Community Guidelines have been moved to <0/>" -msgstr "Les lignes directrices communautaires ont été déplacées vers <0/>" +msgstr "Les règles de bonne conduite ont été déplacées vers <0/>" #: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" @@ -7920,10 +8522,6 @@ msgstr "Le fil d’actu « Discover »" msgid "The Discover feed now knows what you like" msgstr "Le fil d’actu « Discover » sait désormais ce que vous aimez" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "L’adresse e-mail que vous avez entrée est la même que votre adresse e-mail courante." - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "L’expérience est meilleure dans l’application. Téléchargez Bluesky maintenant et nous reprendrons là où vous en étiez." @@ -7944,8 +8542,16 @@ msgstr "Les étiquettes suivantes ont été appliquées à votre contenu." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "Les paramètres qui suivent seront utilisées comme vos paramètres par défaut quand vous créerez de nouveaux posts. Vous pouvez les modifier pour un post spécifique depuis la fenêtre de rédaction." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "Les lois locales nécessitent de vérifier que vous êtes adulte pour avoir accès à certaines fonctionnalités de Bluesky, comme le contenu adulte ou les messages privés." + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "Les lois locales nécessitent de vérifier que vous êtes adulte pour accéder à certaines fonctionnalités. Appuyez pour en savoir plus." + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Ce post a peut-être été supprimé." @@ -7953,9 +8559,10 @@ msgstr "Ce post a peut-être été supprimé." msgid "The Privacy Policy has been moved to <0/>" msgstr "Notre politique de confidentialité a été déplacée vers <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "La vidéo sélectionnée a une taille supérieure à 100 Mo." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "La vidéo sélectionnée dépasse les 100 Mo. Veuillez réessayer avec un fichier plus petit." #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7976,13 +8583,13 @@ msgstr "Le formulaire d’assistance a été déplacé. Si vous avez besoin d’ #: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" -msgstr "Nos conditions d’utilisation ont été déplacées vers" +msgstr "Nos conditions générales ont été déplacées vers" #: src/components/intents/VerifyEmailIntentDialog.tsx:94 msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "Le code de vérification que vous avez fourni n’est pas valide. Assurez-vous que vous avez utilisé le bon lien de vérification ou demandez-en un nouveau." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Thème" @@ -7990,14 +8597,14 @@ msgstr "Thème" msgid "There is no time limit for account deactivation, come back any time." msgstr "Il n’y a pas de limite de temps pour la désactivation du compte, revenez quand vous voulez." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Il y a eu un problème de connexion à Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Il y a eu un problème de connexion au serveur" @@ -8006,17 +8613,12 @@ msgstr "Il y a eu un problème de connexion au serveur" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Il y a eu un problème de connexion au serveur, vérifiez votre connexion Internet et réessayez." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Il y a eu un problème de connexion à votre serveur" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Il y a eu un problème lors de la récupération des notifications. Appuyez ici pour réessayer." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Il y a eu un problème lors de la récupération des posts. Appuyez ici pour réessayer." @@ -8037,7 +8639,7 @@ msgstr "Il y a eu un problème lors de la récupération de vos listes. Appuyez msgid "There was an issue fetching your service info" msgstr "Il y a eu un problème lors de la récupération de vos informations de service" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Il y a eu un problème lors de la suppression de ce fil d’actu. Vérifiez votre connexion internet et réessayez." @@ -8052,9 +8654,9 @@ msgstr "Il y a eu un problème lors de l’envoi de votre signalement. Vérifiez msgid "There was 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. Vérifiez votre connexion internet et réessayez." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Il y a eu un problème lors de la mise-à-jour de vos fils d’actu. Vé msgid "There was an issue! {0}" msgstr "Il y a eu un problème ! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Il y a eu un problème ! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Il y a eu un problème. Vérifiez votre connexion Internet et réessayez." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Un problème inattendu s’est produit dans l’application. N’hésitez pas à nous faire savoir si cela vous est arrivé !" @@ -8089,7 +8691,7 @@ msgstr "Un problème inattendu s’est produit dans l’application. N’hésite msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Il y a eu un afflux de nouveaux personnes sur Bluesky ! Nous activerons ton compte dès que possible." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Ces paramètres s’appliquent seulement pour votre fil d’abonnements." @@ -8146,7 +8748,7 @@ msgstr "Ce contenu est hébergé par {0}. Voulez-vous activer les médias extern msgid "This content is not available because one of the users involved has blocked the other." msgstr "Ce contenu n’est pas disponible car l’un des comptes impliqués a bloqué l’autre." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Ce contenu n’est pas visible sans un compte Bluesky." @@ -8158,9 +8760,13 @@ msgstr "Cette conversation se fait avec un compte supprimé ou désactivé. Appu msgid "This email is already associated with your account." msgstr "Cette adresse e-mail est déjà associée à votre compte." +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "Cette fonctionnalité permet aux personnes de recevoir des notifications pour vos nouveaux posts et réponses. Pour qui souhaitez-vous autoriser cela ?" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." -msgstr "Cette fonctionnalité est en version bêta. Vous pouvez en savoir plus sur les exportations de dépôts dans <0>ce blogpost." +msgstr "Cette fonctionnalité est en version bêta. Vous pouvez en savoir plus sur les exportations de dépôts dans <0>cet article de blog (en anglais)." #: src/lib/hooks/useCleanError.ts:49 msgid "This feature is not available while using an app password. Please sign in with your main password." @@ -8170,7 +8776,7 @@ msgstr "Cette fonctionnalité n’est pas disponible lorsque vous utilisez un mo msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Cette fonctionnalité n’est pas disponible lorsque vous utilisez un mot de passe d’application. Veuillez vous connecter avec le mot de passe de votre compte." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Ce fil d’actu reçoit actuellement un trafic important, il est temporairement indisponible. Veuillez réessayer plus tard." @@ -8209,21 +8815,21 @@ msgstr "Cette étiquette a été apposée par l’auteur·ice." msgid "This label was applied by you." msgstr "Cette étiquette a été apposée par vous." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Cet étiqueteur n’a pas déclaré les étiquettes qu’il publie et peut ne pas être actif." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Ce lien vous conduit au site Web suivant :" #: src/screens/List/ListHiddenScreen.tsx:151 msgid "This list – created by <0>{0} – contains possible violations of Bluesky's community guidelines in its name or description." -msgstr "Cette liste – créée par <0>{0} – contient des violations possibles des directives communautaires de Bluesky dans son nom ou sa description." +msgstr "Cette liste – créée par <0>{0} – contient des violations possibles des règles de bonne conduite sur Bluesky dans son nom ou sa description." #: src/screens/List/ListHiddenScreen.tsx:146 msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description." -msgstr "Cette liste – que vous avez créée – contient des violations possibles des directives communautaires de Bluesky dans son nom ou sa description." +msgstr "Cette liste – que vous avez créée – contient des violations possibles des règles de bonne conduite sur Bluesky dans son nom ou sa description." #: src/view/screens/ProfileList.tsx:962 msgid "This list is empty." @@ -8233,29 +8839,28 @@ msgstr "Cette liste est vide." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Ce service de modération n’est pas disponible. Voir ci-dessous pour plus de détails. Si le problème persiste, contactez-nous." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Ce post déclare avoir été créé le <0>{0}, mais a été vu pour la première fois par Bluesky le <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Ce post a un type inconnu de restriction de fil. Votre appli. n’est peut-être pas à jour." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Ce post a été supprimé." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Ce post n’est visible que pour les personnes connectées. Il ne sera pas visible pour les personnes qui ne sont pas connectées." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "Ce post n’est visible qu’aux personnes connectées." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Ce post sera masqué des fils d’actu et des fils de discussion. C’est irréversible." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "L’auteur·ice de ce post a désactivé les citations." @@ -8263,18 +8868,22 @@ msgstr "L’auteur·ice de ce post a désactivé les citations." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Ce profil n’est visible que pour les personnes connectées. Il ne sera pas visible pour les personnes qui ne sont pas connectées." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Cette réponse sera classée dans une section cachée au bas de votre fil de discussion et masquera les notifications pour les réponses suivantes – à la fois pour vous-même et pour les autres." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." -msgstr "Ce service n’a pas fourni de conditions d’utilisation ni de politique de confidentialité." +msgstr "Ce service n’a pas fourni de conditions générales ni de politique de confidentialité." #: src/screens/Settings/components/ChangeHandleDialog.tsx:456 msgid "This should create a domain record at:" msgstr "Cela devrait créer un enregistrement de domaine à :" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "Cela ne devrait prendre que quelques minutes." + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Ce compte n’a pas de nom d’affichage, et ne peut donc pas être vérifié." @@ -8316,16 +8925,18 @@ msgstr "Ce compte ne suit personne." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Cela supprimera « {0} » de vos mots masqués. Vous pourrez toujours le réintégrer plus tard." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Cela supprimera @{0} de la liste d’accès rapide." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Cela retirera votre post de cette citation pour tout le monde, et le remplacera par un espace vide." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Options de fil de discussion" @@ -8334,24 +8945,27 @@ msgstr "Options de fil de discussion" msgid "Thread preferences" msgstr "Préférences des fils de discussion" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Préférences des fils de discussion" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Sous forme de fils" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Mode sous forme de fils" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Préférences des fils de discussion" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "Temps restant : {0, plural, one {# seconde} other {# secondes}}" @@ -8376,42 +8990,56 @@ msgstr "À qui souhaitez-vous envoyer ce signalement ?" msgid "Today" msgstr "Aujourd’hui" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Activer le menu déroulant" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Activer ou désactiver le contenu pour adultes" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Rétablit/désactive le son" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Meilleur" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "Meilleures réponses en premier" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Sujet" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Traduire" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "Vue arborescente" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Tendances" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Vidéos tendances" @@ -8428,14 +9056,10 @@ msgstr "Réessayer" msgid "TV" msgstr "TV" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Auth. à deux facteurs (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Entrez votre pseudo" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Écrivez votre message ici" @@ -8453,7 +9077,7 @@ msgstr "Connexion échouée. Veuillez vérifier votre connexion Internet et rée #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Impossible de contacter votre service. Vérifiez votre connexion Interne msgid "Unable to delete" msgstr "Impossible de supprimer" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "Désappliquer la Pull Request" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "Désappliquer la Pull Request {currentChannel}" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "Indisponible" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "Informations sur le fil d’actu indisponible" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Débloquer" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Débloquer" @@ -8486,7 +9126,7 @@ msgstr "Débloquer" msgid "Unblock account" msgstr "Débloquer le compte" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Débloquer le compte ?" @@ -8495,13 +9135,13 @@ msgstr "Débloquer le compte ?" msgid "Unblock list" msgstr "Débloquer la liste" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Annuler le repost" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Annuler le repost ({0, plural, one {# repost} other {# reposts}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Se désabonner" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Se désabonner de {0}" @@ -8523,7 +9163,7 @@ msgstr "Se désabonner du compte" msgid "Unfollows the user" msgstr "Se désabonne du compte" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Malheureusement, aucun des étiqueteurs auxquels vous êtes abonnés ne supporte ce type de signalement." @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "Retirer la mention « J’aime »" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Retirer la mention « J’aime » ({0, plural, one {# ont aimé} other {# ont aimé}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Rétablir le son" @@ -8555,8 +9195,8 @@ msgstr "Réafficher" msgid "Unmute {tag}" msgstr "Réafficher {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Réafficher la conversation" msgid "Unmute list" msgstr "Réafficher la liste" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Réafficher ce fil de discussion" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Rétablir le son de la vidéo" @@ -8597,8 +9237,8 @@ msgstr "Désépingler le fil d’actu" msgid "Unpin from home" msgstr "Désépingler de l’accueil" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Désépingler du profil" @@ -8614,8 +9254,8 @@ msgstr "{0} retiré de la page d’accueil" msgid "Unpinned from your feeds" msgstr "Désépinglé de vos fils d’actu" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "Dérepousse le rappel d’e-mail" @@ -8636,7 +9276,7 @@ msgstr "Se désabonner de cet étiqueteur" msgid "Unsubscribed from list" msgstr "Désabonné de la liste" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Type de vidéo non pris en charge" @@ -8662,8 +9302,8 @@ msgstr "Mise à jour de <0>{displayName} dans les listes" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "Mettre à jour l’e-mail" @@ -8676,17 +9316,17 @@ msgstr "Mettre à jour pour {domain}" msgid "Update your email" msgstr "Mettre à jour votre e-mail" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "La mise à jour de l’attachement de la citation a échoué" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "La mise à jour de la visibilité de la réponse a échoué" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Mise à jour…" @@ -8698,20 +9338,20 @@ msgstr "Envoyer plutôt une photo" msgid "Upload a text file to:" msgstr "Envoyer un fichier texte vers :" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Envoyer à partir de l’appareil photo" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Envoyer à partir de fichiers" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Envoyer à partir de la photothèque" msgid "Uploading images..." msgstr "Envoi des images en cours…" -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Envoi de la miniature du lien en cours…" -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Envoi de la vidéo en cours…" @@ -8761,6 +9401,10 @@ msgstr "Utiliser les recommandés" msgid "Use this to sign in to the other app along with your handle." msgstr "Utilisez-le pour vous connecter à l’autre application avec votre pseudo." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "Utilisez l’adresse e-mail de votre compte, ou une autre adresse e-mail véritable que vous contrôlez, au cas où KWS ou Bluesky auraient besoin de vous contacter." + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Utilisé par :" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Liste de compte mise à jour" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "Le pseudo ne doit pas dépasser {MAX_SERVICE_HANDLE_LENGTH, plural, one {# caractère} other {# caractères}}" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "Le pseudo ne doit pas commencer ou se terminer par un trait d’union" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "Le pseudo ne doit contenir que des lettres sans accents (a–z), des nombres et des traits d’union" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Pseudo ou e-mail" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "comptes suivis par <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "comptes abonnés à <0>@{0}" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Comptes que je suis" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Comptes dans « {0} »" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Comptes que vous suivez" @@ -8846,11 +9502,11 @@ msgstr "Valeur :" msgid "Verification failed, please try again." msgstr "La vérification a échoué, veuillez réessayer." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "Paramètres de vérification" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "Paramètres de vérification" @@ -8870,8 +9526,15 @@ msgstr "Vérifié par :" msgid "Verify account" msgstr "Vérifier le compte" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "Vérifier à nouveau" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "Vérifier le code" @@ -8880,21 +9543,20 @@ msgstr "Vérifier le code" msgid "Verify DNS Record" msgstr "Vérifier l’enregistrement DNS" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "Vérifier l’e-mail" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "Vérifier le code d’e-mail" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Boîte de dialogue de vérification de l’adresse e-mail" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "Vérifier maintenant" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Vérifier le fichier texte" msgid "Verify this account?" msgstr "Vérifier le compte ?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "Vérifier votre âge" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Vérifier votre e-mail" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Vérifiez votre e-mail" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "Vérification en cours" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "En attente de la confirmation de votre vérification d’âge" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Version {appVersion}" +msgid "Version {0}" +msgstr "Version {0}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Vidéo" @@ -8928,7 +9598,7 @@ msgstr "Vidéo" msgid "Video failed to process" msgstr "Le traitement de la vidéo a échoué" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Fil de vidéos" @@ -8942,15 +9612,15 @@ msgstr "Vidéo de {0} : {text}" msgid "Video Games" msgstr "Jeux vidéo" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Vidéo en pause" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Vidéo en cours de lecture" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Vidéo non trouvée." @@ -8958,11 +9628,11 @@ msgstr "Vidéo non trouvée." msgid "Video settings" msgstr "Paramètres vidéo" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Vidéo envoyée" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Vidéo : {0}" @@ -8979,11 +9649,11 @@ msgstr "Les vidéos doivent faire moins de 3 minutes" msgid "View {0}'s avatar" msgstr "Voir l’avatar de {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Voir le profil de {0}" @@ -8991,13 +9661,13 @@ msgstr "Voir le profil de {0}" msgid "View {displayName}'s profile" msgstr "Voir le profil de {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Voir le profil du compte bloqué" #: src/screens/Settings/components/ExportCarDialog.tsx:100 msgid "View blogpost for more details" -msgstr "Voir l’article de blog pour plus de détails" +msgstr "Voir l’article de blog (en anglais) pour plus de détails" #: src/view/screens/Log.tsx:57 msgid "View debug entry" @@ -9009,7 +9679,6 @@ msgstr "Afficher l’entrée de débogage" msgid "View details" msgstr "Voir les détails" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Voir les détails pour signaler une violation du droit d’auteur" @@ -9022,23 +9691,23 @@ msgstr "Voir le fil de discussion entier" msgid "View information about these labels" msgstr "Voir les informations sur ces étiquettes" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Voir plus" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Voir le profil" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Afficher l’avatar" @@ -9054,28 +9723,28 @@ msgstr "Voir les vérifications de ce compte" msgid "View users who like this feed" msgstr "Voir les comptes qui ont aimé ce fil d’actu" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Voir la vidéo" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Consulter vos comptes bloqués" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "Afficher vos paramètres d’interaction de post par défaut" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Consultez vos fils d’actu et explorez-en plus" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Consulter vos listes de modération" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Consulter vos comptes masqués" @@ -9083,8 +9752,8 @@ msgstr "Consulter vos comptes masqués" msgid "View your verifications" msgstr "Voir vos vérifications" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Affiche l’image complète" @@ -9092,16 +9761,20 @@ msgstr "Affiche l’image complète" msgid "Views video in immersive mode" msgstr "Affiche la vidéo en mode immersif" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" msgstr "Visiter le site" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "Visiter vos paramètres de notification" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Volume" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Avertir du contenu et filtrer des fils d’actu" msgid "Watch now" msgstr "Regarder maintenant" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "Nous ne pouvons pas nous connecter au service qui fournit ce fil d’actu personnalisé. Il rencontre peut-être des problèmes le rendant temporairement indisponible, ou est peut-être définitivement indisponible." + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "Nous n’avons pas pu retrouver cette liste. Elle a sans doute été supprimée." + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "Nous n’avons trouvé aucun résultat pour ce mot-clé." @@ -9128,7 +9809,7 @@ msgstr "Nous n’avons trouvé aucun résultat pour ce mot-clé." msgid "We couldn't find any results for that topic." msgstr "Nous n’avons trouvé aucun résultat pour ce sujet." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Nous ne pouvons pas charger cette conversation" @@ -9136,6 +9817,10 @@ msgstr "Nous ne pouvons pas charger cette conversation" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Nous estimons que votre compte sera prêt dans {estimatedTime}." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "Nous sommes partenaires de <0>KWS pour vérifier que vous êtes adulte. Lorsque vous cliquerez sur « Commencer » ci-dessous, KWS vérifiera si vous avez déjà vérifié votre âge avec cette adresse e-mail pour d’autres jeux ou services utilisant la technologie de KWS. Si ce n’est pas le cas, KWS vous enverra par e-mail des instructions pour vérifier votre âge. Quand vous l’aurez fait, vous serez redirigé ici pour continuer d’utiliser Bluesky." + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Nous avons envoyé un autre e-mail de vérification à <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "Nous espérons que vous passerez un excellent moment. N’oubliez pas qu msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Nous n’avons plus de posts provenant des comptes que vous suivez. Voici le dernier de <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "Nous vous recommandons de sélectionner au moins deux centres d’intérêt." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Nous avons envoyé un e-mail à <0>{0} contenant un lien. Veuillez cliquer dessus pour terminer le processus de vérification par e-mail." -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Nous n’avons pas pu déterminer si vous étiez autorisé à envoyer des vidéos. Veuillez réessayer." @@ -9164,10 +9849,14 @@ msgstr "Nous n’avons pas pu déterminer si vous étiez autorisé à envoyer de msgid "We were unable to load your birth date preferences. Please try again." msgstr "Nous n’avons pas pu charger vos préférences en matière de date de naissance. Veuillez réessayer." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "Nous n’avons pas pu charger vos étiqueteurs configurés pour le moment." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "Nous n’arrivons pas à recevoir la vérification à cause d’un problème de connexion. Elle peut arriver plus tard. Si c’est le cas, votre compte sera mis à jour automatiquement." + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Nous n’avons pas pu nous connecter. Veuillez réessayer pour continuer à configurer votre compte. Si l’échec persiste, vous pouvez sauter cette étape." @@ -9176,7 +9865,7 @@ msgstr "Nous n’avons pas pu nous connecter. Veuillez réessayer pour continuer msgid "We will let you know when your account is ready." msgstr "Nous vous informerons lorsque votre compte sera prêt." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Nous enverrons un e-mail à <0>{0} contenant un lien. Vous devrez cliquer dessus pour terminer le processus de vérification par e-mail." @@ -9184,6 +9873,22 @@ msgstr "Nous enverrons un e-mail à <0>{0} contenant un lien. Vous devrez cl msgid "We'll use this to help customize your experience." msgstr "Nous utiliserons ces informations pour personnaliser votre expérience." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Nous mettons également à jour nos <0>règles de bonne conduite, et nous voulons vos commentaires ! Ces nouvelles règles entreront en vigueur le 15 octobre 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Nous mettons également à jour nos règles de bonne conduite, et nous voulons vos commentaires ! Ces nouvelles règles entreront en vigueur le 15 octobre 2025." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "Nous confirmons votre vérification d’âge avec nos serveurs. Cela ne devrait prendre que quelques secondes." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "Nous rencontrons des problèmes pour initialiser le processus de vérification d’âge pour votre compte. Veuillez <0>contacter le support pour obtenir de l’aide." + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Nous avons des soucis de réseau, réessayez" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Nous introduisons un nouveau niveau de vérification sur Bluesky — une coche facile à voir." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Nous sommes ravis de vous accueillir !" @@ -9205,15 +9910,15 @@ msgstr "Nous sommes désolés, mais nous n’avons pas pu charger cette liste. S msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Nous sommes désolés, mais nous n’avons pas pu charger vos mots masqués pour le moment. Veuillez réessayer." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Nous sommes désolés, mais votre recherche a été annulée. Veuillez réessayer dans quelques minutes." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Nous sommes désolés ! Le post auquel vous répondez a été supprimé." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Nous sommes désolés ! La page que vous recherchez est introuvable." @@ -9222,6 +9927,26 @@ msgstr "Nous sommes désolés ! La page que vous recherchez est introuvable." msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Nous sommes désolés ! Vous ne pouvez vous abonner qu’à vingt étiqueteurs, et vous avez atteint votre limite de vingt." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "Nous mettons à jour nos <0>Conditions générales, notre <1>Politique de confidentialité, et notre <2>Politique de droit d’auteur, s’appliquant au 15 septembre 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "Nous mettons à jour nos conditions" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "Nous mettons à jour nos Conditions générales, notre Politique de confidentialité, et notre Politique de droit d’auteur, s’appliquant au 15 septembre 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Nous mettons à jour nos Conditions générales, notre Politique de confidentialité, et notre Politique de droit d’auteur, s’appliquant au 15 septembre 2025. Nous mettons également à jour nos règles de bonne conduite, et nous voulons vos commentaires ! Ces nouvelles règles entreront en vigueur le 15 octobre 2025. Apprenez-en plus sur ces changements et sur la manière dont vous pouvez partager vos réflexions avec nous en lisant notre article de blog (en anglais)." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "Nous avons confirmé la vérification de votre âge. Vous pouvez désormais fermer cette fenêtre." + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Bienvenue !" @@ -9240,7 +9965,7 @@ msgstr "Quel est le nom de votre kit de démarrage ?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Quoi de neuf ?" @@ -9256,11 +9981,11 @@ msgstr "Quelles sont les langues utilisées dans ce post ?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Quelles langues aimeriez-vous voir apparaître dans vos fils d’actu algorithmiques ?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Qui peut interagir avec ce post ?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Qui peut répondre ?" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "Qui peut vérifier ?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Oups !" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "Oups ! Les vidéos tendances n’ont pas réussi à se charger." @@ -9322,12 +10047,12 @@ msgstr "Pourquoi ce compte doit-il être examiné ?" msgid "Write a message" msgstr "Écrire un message" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Rédiger un post" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Rédigez votre réponse" @@ -9358,11 +10083,11 @@ msgstr "Oui, désactiver" msgid "Yes, delete this starter pack" msgstr "Oui, supprimer ce kit de démarrage" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Oui, détacher" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Oui, cacher" @@ -9378,6 +10103,10 @@ msgstr "Hier" msgid "You" msgstr "Vous" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "Vous acceptez également les <0>Règles de bonne conduite sur Bluesky. Une <1>version mise à jour de nos règles entreront en vigueur le 15 octobre." + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "Vous êtes un vérificateur de confiance" @@ -9386,6 +10115,10 @@ msgstr "Vous êtes un vérificateur de confiance" msgid "You are creating an account on" msgstr "Vous créez un compte sur" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "Vous ne pouvez pas accéder actuellement au processus de vérification d’âge de Bluesky. Veuillez <0>contacter notre équipe de modération si vous pensez que c’est une erreur." + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Vous êtes dans la file d’attente." @@ -9403,7 +10136,7 @@ msgstr "Vous n’êtes plus en direct" msgid "You are not allowed to go live" msgstr "Vous n’êtes pas autorisé à partir en direct" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Vous n’êtes pas autorisé à envoyer des vidéos." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "Votre compte est vérifié" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "Votre compte est vérifié. Il perdra son statut de vérification si vous changez votre nom d’affichage. <0>En savoir plus (en anglais)." @@ -9441,10 +10173,18 @@ msgstr "Vous pouvez aussi découvrir de nouveaux fils d’actu personnalisés à msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Vous pouvez également désactiver temporairement votre compte et le réactiver quand vous voulez." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "Vous pouvez choisir si les discussions sont en sourdine ou non depuis les paramètres de chaque discussion depuis l’app" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Vous pouvez poursuivre les conversations en cours quel que soit le paramètre que vous choisissez." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "Vous pouvez désormais choisir de recevoir une notification quand certains comptes spécifiques postent. S’il y a quelqu’un dont vous souhaitez avoir des nouvelles au plus vite, rendez-vous sur son profil et cherchez la nouvelle icône de cloche à côté du bouton de suivi." + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Vous pouvez maintenant vous connecter avec votre nouveau mot de passe." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Vous pouvez réactiver votre compte pour continuer à vous connecter. Votre profil et vos posts seront visibles par les autres personnes." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "Vous pouvez définir les paramètres d’interaction par défaut dans <0>Paramètres → Modération → Paramètres d’interaction." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Vous pourrez changer ça plus tard depuis vos paramètres." @@ -9472,7 +10212,7 @@ msgstr "Vous n’avez pas d’abonné·e·s." msgid "You don't follow any users who follow @{name}." msgstr "Vous ne suivez aucun des comptes qui suivent @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "Vous n’avez aucune demande de discussion en attente actuellement." @@ -9480,15 +10220,15 @@ msgstr "Vous n’avez aucune demande de discussion en attente actuellement." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Vous n’avez encore aucun code d’invitation ! Nous vous en enverrons lorsque vous serez sur Bluesky depuis un peu plus longtemps." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Vous n’avez encore aucun fil d’actu épinglé." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Vous n’avez encore aucun fil d’actu enregistré." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Vous avez bloqué cet·te auteur·ice ou vous avez été bloqué par celui-ci." @@ -9502,6 +10242,10 @@ msgstr "Vous avez bloqué ce compte" msgid "You have blocked this user. You cannot view their content." msgstr "Vous avez bloqué ce compte. Vous ne pouvez pas voir son contenu." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "Vous avez complètement désactivé les notifications de mentions, de citations et de réponses, donc cet onglet ne sera plus mis à jour. Pour changer cela, visitez vos <0>paramètres de notification." + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Vous avez masqué ce compte." msgid "You have muted this user" msgstr "Vous avez masqué ce compte" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Vous n’avez pas encore de conversations. Démarrez en une !" @@ -9547,7 +10291,7 @@ msgstr "Vous n’avez pas encore bloqué de comptes. Pour bloquer un compte, all msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Vous n’avez encore masqué aucun compte. Pour masquer un compte, allez sur son profil et sélectionnez « Masquer le compte » dans le menu de son compte." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Vous avez atteint la fin" @@ -9572,6 +10316,10 @@ msgstr "Vous n’avez pas encore masqué de mot ou de mot-clé" msgid "You hid this reply." msgstr "Vous avez caché cette réponse." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "Vous avez déjà démarré ce processus, il y a {0}. Cela peut prendre jusqu’à 5 minutes aux e-mails pour arriver dans votre boîte de réception. Veuillez attendre quelques minutes avant de réessayer." + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Vous pouvez faire appel des étiquettes poseés par des tiers si vous pensez qu’elles ont été appliquées par erreur." @@ -9592,7 +10340,7 @@ msgstr "Vous ne pouvez ajouter que 3 fils d’actu au maximum" msgid "You may only select up to 4 images" msgstr "Vous ne pouvez sélectionner qu’un total de 4 images." -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "Vous devez avoir 13 ans ou plus pour créer un compte." @@ -9600,6 +10348,14 @@ msgstr "Vous devez avoir 13 ans ou plus pour créer un compte." msgid "You must be following at least seven other people to generate a starter pack." msgstr "Vous devez suivre au moins sept autres personnes pour générer un kit de démarrage." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "Vous devez procéder à la vérification d’âge pour accéder aux paramètres ci-dessous." + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "Vous devez procéder à la vérification d’âge pour accéder à cet écran." + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Vous devez autoriser l’accès à votre photothèque pour enregistrer un code QR" @@ -9608,6 +10364,11 @@ msgstr "Vous devez autoriser l’accès à votre photothèque pour enregistrer u msgid "You must select at least one labeler for a report" msgstr "Vous devez sélectionner au moins un étiqueteur pour un signalement" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "Vous devez vous connecter pour voir ce post." + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "Vous devez vérifier votre adresse e-mail avant de pouvoir utiliser la 2FA par e-mail." @@ -9616,7 +10377,7 @@ msgstr "Vous devez vérifier votre adresse e-mail avant de pouvoir utiliser la 2 msgid "You previously deactivated @{0}." msgstr "Vous avez précédemment désactivé @{0}." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "Vous voulez sans doute redémarrer l’appli. maintenant." @@ -9628,16 +10389,20 @@ msgstr "Vous avez réagi avec {0}" msgid "You reacted {0} to {1}" msgstr "Vous avez réagi à {1} avec {0}" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Vous serez déconnecté·e de tous vos comptes." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "Vous ne recevrez plus de notifications concernant {0}" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Vous ne recevrez plus de notifications pour ce fil de discussion" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Vous recevrez désormais des notifications pour ce fil de discussion" @@ -9657,11 +10422,11 @@ msgstr "Vous : {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Vous : {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Vous suivrez les comptes et fils d’actu suggérés une fois que vous aurez créé votre compte !" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Vous suivrez les comptes suggérés une fois que vous aurez créé votre compte !" @@ -9673,9 +10438,9 @@ msgstr "Vous suivrez ces personnes et {0} autres" msgid "You'll follow these people right away" msgstr "Vous suivrez ces personnes immédiatement" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Vous recevrez un e-mail à <0>{0} pour vérifier que c’est vous." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "Vous recevrez désormais des notifications concernant {0} !" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "Vous avez choisi de masquer un mot ou un mot-clé dans ce post." msgid "You've found some people to follow" msgstr "Vous avez trouvé des personnes à suivre" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "Vous êtes arrivé à la fin du contenu actuel." + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Vous avez atteint la fin de votre fil d’actu ! Trouvez d’autres comptes à suivre." @@ -9711,19 +10480,23 @@ msgstr "Vous avez atteint la fin de votre fil d’actu ! Trouvez d’autres com msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Vous avez atteint le nombre maximum de requêtes autorisées. Veuillez réessayer plus tard." -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "Vous êtes arrivé au début du contenu actuel." + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Vous avez atteint votre limite quotidienne d’envoi de vidéos (trop d’octets)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Vous avez atteint votre limite quotidienne d’envoi de vidéos (trop de vidéos)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Vous êtes venus à bout de vidéos à regarder. Peut-être est-ce un bon moment pour prendre une pause ?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Votre compte" @@ -9735,7 +10508,7 @@ msgstr "Votre compte a été supprimé" msgid "Your account has been suspended" msgstr "Votre compte a été suspendu" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Votre compte n’est pas encore assez ancien pour envoyer des vidéos. Veuillez réessayer plus tard." @@ -9751,11 +10524,11 @@ msgstr "Votre compte a été considéré comme violant les <0>Conditions génér msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "Votre appel a été envoyé. Si votre appel est réussi, vous recevrez un e-mail." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Votre date de naissance" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Votre navigateur ne prend pas en charge le format vidéo. Essayez plutôt avec un autre navigateur." @@ -9771,13 +10544,15 @@ msgstr "Votre choix sera mémorisé pour les futurs liens. Vous pouvez changer msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Votre pseudo actuel <0>{0} sera automatiquement conservé et vous sera réservé. Vous pourrez y revenir à tout moment depuis ce compte." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "Votre adresse e-mail a été mis à jour, mais n’a pas été vérifié. L’étape suivante consiste à vérifier votre nouvelle adresse e-mail." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "Votre e-mail" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Votre e-mail semble être invalide." @@ -9786,15 +10561,11 @@ msgstr "Votre e-mail semble être invalide." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "Votre adresse e-mail n’a pas encore été vérifiée. Veuillez vérifier votre adresse e-mail pour profiter de toutes les fonctionnalités de Bluesky." -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Votre e-mail n’a pas encore été vérifié. Il s’agit d’une mesure de sécurité importante que nous recommandons." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "Votre première mention « j’aime » !" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "Comptes qui vous suivent" @@ -9806,19 +10577,15 @@ msgstr "Votre fil d’actu des comptes suivis est vide ! Suivez plus de comptes msgid "Your full handle will be <0>@{0}" msgstr "Votre pseudo complet sera <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "Votre pseudo complet sera <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "Vos centres d’intérêt" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "Vos centres d’intérêt ont été mis à jour !" @@ -9835,15 +10602,15 @@ msgstr "Vos mots masqués" msgid "Your password has been changed successfully!" msgstr "Votre mot de passe a été modifié avec succès !" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "Votre mot de passe doit comporter au moins 8 caractères." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Votre post a été publié" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Vos posts ont été publiés" @@ -9851,15 +10618,19 @@ msgstr "Vos posts ont été publiés" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Vos posts, vos mentions « j’aime » et vos blocages sont publics. Les silences (comptes masqués) sont privés." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "Votre langue préférée" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Votre profil, vos posts, vos fils d’actu et vos listes ne seront plus visibles par d’autres personnes sur Bluesky. Vous pouvez réactiver votre compte à tout moment en vous connectant." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Votre réponse a été publiée" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "Votre signalement sera envoyé à <0>{0}." @@ -9867,7 +10638,7 @@ msgstr "Votre signalement sera envoyé à <0>{0}." msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Votre signalement sera envoyé au Service de Modération de Bluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "Votre sélection de centres d’intérêt nous aide à vous proposer des contenus qui vous tiennent à cœur." diff --git a/src/locale/locales/fy/messages.po b/src/locale/locales/fy/messages.po index 6e80bc6d07..2d7ca12b2b 100644 --- a/src/locale/locales/fy/messages.po +++ b/src/locale/locales/fy/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: fy\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 01:46\n" "Last-Translator: \n" "Language-Team: Frisian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,7 +27,7 @@ msgstr "(aktyf)" msgid "(contains embedded content)" msgstr "(befettet ynsletten ynhâld)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(gjin e-mailadres)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# opnij pleatsing} other {# opnij pleatsingen}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# sekonde} other {# sekonden}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# net-lêzen item} other {# net-lêzen items}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {# net-lêzen item} other {# net-lêzen items}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {#mo} other {#mo}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {folger} other {folgers}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {folgjend} other {folgjend}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {mei-’k-wol-oer} other {mei-’k-wol-oers}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {mei-’k-wol-oer} other {mei-’k-wol-oers}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {berjocht} other {berjochten}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {sitaat} other {sitaten}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {opnij pleatsing} other {opnij pleatsingen}}" @@ -135,6 +138,10 @@ msgstr "{0} <0>in <1>tags" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>in <1>tekst en tags" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} folgjend" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "{0} is live" @@ -143,11 +150,15 @@ msgstr "{0} is live" msgid "{0} is not a valid URL" msgstr "{0} is net in falide URL" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "{0} is net beskikber" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} dizze wike lid wurden" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} fan {1}" @@ -164,8 +175,16 @@ msgstr "{0} reagearre {1}" msgid "{0} reacted {1} to {2}" msgstr "{0} reagearre {1} op {2}" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0}, in feed fan {1}, {2} mei der wol oer" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0}, in list fan {1}" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "Avatar fan {0}" @@ -197,12 +216,12 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}s" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# net-lêzen item} other {# net-lêzen items}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Startpakket fan {displayName}" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {oere} other {oeren}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minút} other {minuten}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe dy folge" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} meie wol oer dyn personalisearre feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} meie wol oer dyn berjocht" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" +msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} meie wol oer dyn opnij-pleatsing" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe harren ferifikaasjes fan dyn account fuortsmiten" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe dyn berjocht opnij pleatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe dyn berjocht opnij pleatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe harren registrearre mei dyn startpakket" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe dy ferifiearre" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} folge dy" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} folge dy werom" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} mei wol oer dyn personalisearre feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} mei wol oer dyn bericht" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" -msgstr "" +msgstr "{firstAuthorLink} mei wol oer dyn opnij-pleatsing" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} hat de ferifiearring fan dyn account fuortsmiten" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} hat dyn berjocht opnij pleatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" -msgstr "" +msgstr "{firstAuthorLink} hat dyn opnij-pleatsing opnij pleatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} registrearre harren mei dyn startpakket" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} hat dy ferifiearre" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe dy folge" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} meie wol oer dyn personalisearre feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} meie wol oer dyn berjocht" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" +msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} meie wol oer dyn opnij-pleatsing" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe harren ferifikaasjes fan dyn account fuortsmiten" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe dyn berjocht opnij pleatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe dyn opnij-pleatsing opnij pleatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe harren registrearre mei dyn startpakket" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe dy ferifiearre" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} folge dy" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} folge dy werom" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} mei wol oer dyn personalisearre feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} mei wol oer dyn berjocht" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" -msgstr "" +msgstr "{firstAuthorName} mei wol oer dyn opnij-pleatsing" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} hat de ferifiearring fan dyn account fuortsmiten" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} hat dyn berjocht opnij pleatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" -msgstr "" +msgstr "{firstAuthorName} hat dyn opnij-pleatsing opnij pleatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} registrearre harren mei dyn startpakket" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} hat dy ferifiearre" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} folgjend" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "{handle} kin gjin priveeberjocht ûntfange" @@ -392,7 +410,7 @@ msgstr "{joinedAllTimeCount, plural, one {}other {# bûkers binne}} derby kaam!" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "{minutes, plural, one {# minút} other {# minuten}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# net-lêzen item} other {# net-lêzen items}}" @@ -432,12 +450,12 @@ msgstr "Ferifikaasjes fan {userName}" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, en {2, plural, one {# oare} other {# oaren}} binne ynbegrepen yn dyn startpakket" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, en {2, plural, one {# oare} other {# oaren}} binne ynbegrepen yn dyn startpakket" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {folger} other {folgers}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {folgjend} other {folgjend}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} en<1> <2>{1} binne ynbegrepen yn dyn startpakket" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} is ynbegrepen yn dyn startpakket" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} leden" @@ -466,11 +484,11 @@ msgstr "<0>{0} leden" msgid "<0>{date} at {time}" msgstr "<0>{date} om {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Eksperiminteel: wannear’t dizze foarkar ynskeakele is ûntfangsto allinnich antwurd- en sitaatmeldingen fan brûkers dy’tsto folgest. Wy sille yn de rin fan de tiid hjir mear bestjoeringseleminten oan tafoegje." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<0>Meld dy oan<1>of <2>meitsje in account oan<3><4>om te sykjen nei nijs, sport, polityk en al wat der op Bluesky bart." -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Do en<1> <2>{0} binne ynbegrepen yn dyn startpakket" @@ -503,10 +521,14 @@ msgstr "in berjocht" msgid "A new form of verification" msgstr "In nij ferifikaasjeformulier" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "In skermôfdruk fan in profylside mei in belpiktogram njonken de folch-knop, wêrmei’t de nije funksje foar aktiviteitsmeldingen oanjûn wurdt." + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Oer" @@ -524,25 +546,25 @@ msgstr "Chatfersyk akseptearje" msgid "Accept Request" msgstr "Fersyk akseptearje" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Tagonklikheid" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Tagonklikheidsynstellingen" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Account folge" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Account negearre" msgid "Account Muted by List" msgstr "Account negearre troch list" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Accountopsjes" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Account út flugge tagong fuortsmiten" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Account ûntfolge" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Account negearre opheven" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Accounts mei in skulpe blau finkje <0><1/> kinne oaren ferifiearje. Dizze fertroude ferifiearders binne troch Bluesky selektearre." +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "Aktiviteiten fan oaren" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "Aktiviteitsmeldingen" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Tafoegje" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Foegje noch {0} ta om troch te gean" @@ -634,8 +666,8 @@ msgstr "Account tafoegje" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Alt-tekst tafoegje" msgid "Add alt text (optional)" msgstr "Alt-tekst tafoegje (opsjoneel)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Noch in account tafoegje" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Noch in berjocht tafoegje" @@ -670,8 +702,8 @@ msgstr "App-wachtwurd tafoegje" msgid "Add emoji reaction" msgstr "Emoji-reaksje tafoegje" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Mear details tafoegje (opsjoneel)" @@ -683,7 +715,7 @@ msgstr "Dôvwurd tafoegje mei keazen ynstellingen" msgid "Add muted words and tags" msgstr "Negearre wurden en tags tafoegje" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Nij berjocht tafoegje" @@ -704,7 +736,7 @@ msgstr "Reaksje tafoegje" msgid "Add recommended feeds" msgstr "Oanrekommandearre feeds tafoegje" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Foegje wat feeds ta oan dyn startpakket!" @@ -725,10 +757,6 @@ msgstr "Dizze feed oan dyn feeds tafoegje" msgid "Add to lists" msgstr "Oan listen tafoegje" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Tafoegje oan myn feeds" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "Brûker oan list tafoegje" @@ -738,11 +766,11 @@ msgstr "Brûker oan list tafoegje" msgid "Added to list" msgstr "Tafoege oan list" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Tafoege oan myn feeds" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "Oanfoljende details (maksimaal 1000 tekens)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Oanfoljende details (maksimaal 300 tekens)" @@ -750,18 +778,18 @@ msgstr "Oanfoljende details (maksimaal 300 tekens)" msgid "Adult" msgstr "Folwoeksene" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Ynhâld foar folwoeksenen" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Ynhâld foar folwoeksenen kin allinnich ynskeakele wurde fia it ynternet op <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Ynhâld foar folwoeksenen is útskeakele." @@ -770,16 +798,32 @@ msgstr "Ynhâld foar folwoeksenen is útskeakele." msgid "Adult Content labels" msgstr "Labels foar ynhâld foar folwoeksenen" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Avansearre" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "Leeftiidsferifikaasje" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "Leeftiidsferifikaasjefersyk is net ferstjoerd, probearje it opnij." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "Leeftiidsferifikaasjefersyk is yntsjinne" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "Leeftiidsferifikaasjefersyk duorret mar in pear minuten" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "alice@example.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Alles" @@ -793,7 +837,7 @@ msgstr "Do hast alle accounts folge!" msgid "All languages" msgstr "Alle talen" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Alle feeds dy’tsto bewarre hast, byinoar op ien plak." @@ -802,16 +846,21 @@ msgstr "Alle feeds dy’tsto bewarre hast, byinoar op ien plak." msgid "Allow access to your direct messages" msgstr "Jou tagong ta dyn priveeberjochten" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Nije priveeberjochten akseptearje fan" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "Stean oaren ta om op de hichte hâlden te wurden fan dyn berjochten" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Sitaatberjochten tastean" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Antwurden tastean fan:" @@ -828,13 +877,13 @@ msgstr "Hasto al in koade?" msgid "Already signed in as @{0}" msgstr "Al oanmeld as @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "Alt-tekst" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Alt-tekst" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Alt-tekst beskriuwt ôfbyldingen foar bline en fisueel beheinde brûkers en biedt elkenien kontekst." @@ -861,27 +910,19 @@ msgstr "Alt-tekst sil ôfkoart wurde. {MAX_ALT_TEXT, plural, one {}other {Limyt: msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Der is in e-mailberjocht ferstjoerd nei {0}. Dizze befettet in befêstigingskoade dy’tsto hjirûnder ynfiere kinst." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "Der is in e-mailberjocht ferstjoerd nei dyn foarige e-mailadres, {currentEmail}. Dizze befettet in befêstigingskoade dy’tsto hjirûnder ynfiere kinst." - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Der is in e-mailberjocht ferstjoerd! Fier hjirûnder de befêstigingskoade yn dy’t yn it e-mailberjocht opnommen is." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Der is in flater bard" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Der is in flater bard" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Der is in flater bard wylst it komprimearjen fan de fideo." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "Der is in flater bard by it opheljen fan de feed." @@ -889,11 +930,11 @@ msgstr "Der is in flater bard by it opheljen fan de feed." msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Der is in flater bard by it generearjen fan dyn startpakket. Wolsto it opnij probearje?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Der is in flater bard wylst it laden fan de fideo. Probearje it letter opnij." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Der is in flater bard wylst it laden fan de fideo. Probearje it nochris." @@ -910,7 +951,7 @@ msgstr "Der is in flater bard by it selektearjen fan de fideo" msgid "An error occurred while trying to follow all" msgstr "Der is in flater bard wylst it besykjen om elkenien te folgjen" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Der is in flater bard by it opladen fan de fideo." @@ -934,8 +975,8 @@ msgstr "Der is in flater bard by it iepenjen fan de chat" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "der is in ûnbekende flater bard" msgid "an unknown labeler" msgstr "in ûnbekende labeler" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "en" @@ -963,10 +1004,14 @@ msgstr "en" msgid "Animals" msgstr "Bisten" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "Animearre GIF" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "Meidieling" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "Oankundiging fan ferifikaasje op Bluesky" @@ -980,7 +1025,13 @@ msgstr "Asosjaal gedrach" msgid "Anybody can interact" msgstr "Elkenien kin reagearje" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "Elkenien dy’t my folget" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "App-wachtwurdnammen meie allinnich letters, sifers, spaasjes, streekjes msgid "App password names must be at least 4 characters long" msgstr "App-wachtwurdnammen moatte minimaal 4 tekens lang wêze" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "App-wachtwurden" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "App-wachtwurden" @@ -1053,10 +1104,10 @@ msgstr "Beswier tsjin skorsing meitsje" msgid "Appeal this decision" msgstr "Beswier tsjin dizze beslissing meitsje" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Werjefte" @@ -1065,12 +1116,20 @@ msgstr "Werjefte" msgid "Apply default recommended feeds" msgstr "Standert oanrekommandearre feeds brûke" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "Pull-fersyk tapasse" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Argivearre fan {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Argivearre berjocht" @@ -1078,7 +1137,7 @@ msgstr "Argivearre berjocht" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Bisto wis datsto it app-wachtwurd ‘{0}’ fuorsmite wolst?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Bisto wis datsto dit priveeberjocht fuortsmite wolst? It priveeberjocht wurdt foar dy fuortsmiten, mar net foar de oare dielnimmer." @@ -1098,19 +1157,15 @@ msgstr "Bisto wis datsto dit petear ferlitte wolst?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Bisto wis datsto dit petear ferlitte wolst? Dyn priveeberjochten wurde foar dy fuortsmiten, mar net foar de oare dielnimmer." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Bisto wis datsto {0} út dyn feeds fuortsmite wolst?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Bisto wis datsto dit út dyn feeds fuortsmite wolst?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Bisto wis datsto dit konsept fuortsmite wolst?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Bisto wis datsto dit berjocht fuortsmite wolst?" @@ -1131,29 +1186,26 @@ msgstr "Keunst" msgid "Artistic or non-erotic nudity." msgstr "Artistike of net-erotyske neakenbylden." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "Underwerp foar algoritme tawize" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Op syn minst 3 tekens" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "De opsjes foar automatysk ôfspyljen binne ferpleatst nei de <0>Ynstellingen foar ynhâld en media." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Fideo’s en GIF’s automatysk ôfspylje" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "Beskikber" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Fideo’s en GIF’s automatysk ôfspylje" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Tebek" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Werom nei chats" @@ -1195,28 +1247,44 @@ msgstr "Do moatst earst dyn e-mailadres befêstigje eardatsto in startpakket mak msgid "Before you can accept this chat request, you must first verify your email." msgstr "Do moatst earst dyn e-mailadres befêstigje eardatsto in petearfersyk akseptearje kinst." +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "Eardatsto meldingen ûntfange kinst foar berjochten fan {name}, moatsto earst dyn e-mailadres ferifiearje." + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "Do moatst earst dyn e-mailadres befêstigje eardatsto in oare brûker in priveeberjocht stjoere kinst." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "Starte" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "Leeftiidsferifikaasjeproses starte" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "Start it leeftiidsferifikaasjeproses troch de ûndersteande fjilden yn te foljen." + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Jierdei" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Blokkearje" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Blokkearje" msgid "Block account" msgstr "Account blokkearje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Account blokkearje?" @@ -1262,20 +1330,20 @@ msgstr "Brûker blokkearje" msgid "Block User" msgstr "Brûker blokkearje" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Blokkearre" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Blokkearre accounts" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Blokkearre accounts" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blokkearre accounts kinne net reagearje op dyn petearen, dy net fermelde en net op in oare manier mei dy kommunisearje." @@ -1284,11 +1352,11 @@ msgstr "Blokkearre accounts kinne net reagearje op dyn petearen, dy net fermelde msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Blokkearre accounts kinne net reagearje op dyn petearen, dy net fermelde en net op in oare manier mei dy kommunisearje. Do sjochst harren tekst net en sy dy fan dy ek net." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Blokkearre berjocht." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blokkearjen wjerhâld dizze labeler der net fan om labels op dyn account te pleatsen." @@ -1309,11 +1377,12 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kin de wierheid fan dizze datum net befêstigje." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1347,6 +1416,14 @@ msgstr "Bluesky sil dyn profyl en berjochten net toane oan ôfmelde brûkers. Oa msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky sil pro-aktyf bekende en autentike accounts ferifiearje." +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "Bluesky-mienskipsrjochtlinen" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "Bywurke Bluesky-mienskipsrjochtlinen" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Ofbyldingen dizich meitsje en út dyn feeds filterje" msgid "Books" msgstr "Boeken" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Blêdzje troch brûkers op de ûntdekkingsside" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Blêdzje troch feeds op de ûntdekkingsside" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Blêdzje troch mear suggestjes" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Blêdzje troch mear suggestjes op de ûntdekkingsside" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Saaklik" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Troch {0}" @@ -1428,15 +1502,23 @@ msgstr "Troch {0}" msgid "By <0>{0}" msgstr "Troch <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "Troch op ‘Trochgean’ te klikken, erkensto datsto dizze updates begrypst en dermei akkoard giest." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "Troch fierder te gean, giest akkoard mei de <0>KWS-brûksbetingsten en befêstichsto dat KWS dyn ferifiearre status bewarje sil mei dyn hashte e-mailadres yn oerienstimming mei it <1>KWS-privacybelied. Dit betsjut datsto, de folgjende kear datsto dit e-mailadres brûkst foar oare apps, spultsjes en tsjinsten oandreaun troch KWS-technology, net opnij hoegst te ferifiearjen." + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Mei it oanmeitsjen fan in account giesto akkoard mei it <0>Privacybelied." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Mei it oanmeitsjen fan in account giesto akkoard mei de <0>Tsjinstbetingsten en it <1>Privacybelied." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Mei it oanmeitsjen fan in account giesto akkoard mei de <0>Tsjinstbetingsten." @@ -1448,14 +1530,17 @@ msgstr "Troch dy" msgid "Camera" msgstr "Kamera" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Kamera" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Annulearje" @@ -1500,11 +1582,7 @@ msgstr "Accountfuortsmiten annulearje" msgid "Cancel image crop" msgstr "Bysnijen ôfbylding annulearje" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Profylwiziging annulearje" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Sitaatberjocht annulearje" @@ -1516,14 +1594,10 @@ msgstr "Weraktivearring annulearje en ôfmelde" msgid "Cancel search" msgstr "Sykopdracht annulearje" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Annulearret it iepenjen fan de keppele website" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Do kinst net yn kontakt komme mei in blokkearre brûker" @@ -1553,17 +1627,12 @@ msgstr "App-piktogram wizigje nei ‘{0}’" msgid "Change app language" msgstr "App-taal wijzigen" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "E-mailadres wizigje" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Handle wizigje" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Moderaasjetsjinst wizigje" @@ -1579,14 +1648,6 @@ msgstr "Berjochttaal wizigje nei {suggestedLanguageName}" msgid "Change report reason" msgstr "Rapportearreden wizigje" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Dyn e-mailadres wizigje" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Dyn e-mailadres wizigje" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "App-piktogram wizigje" @@ -1596,10 +1657,15 @@ msgstr "App-piktogram wizigje" msgid "Changes hosting provider" msgstr "Hostingprovider wizigje" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "Wizigingen bewarre" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Chat" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Chat fuortsmiten" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "Petearberjochten – stil" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "Petearberjochten – lûd" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Chat negearre" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "Chatfersyk Postfek YN" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Chatfersiken" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Chatynstellingen" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Chatynstellingen" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat net mear negearre" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Chats" @@ -1661,7 +1738,7 @@ msgstr "Kontrolearje dyn Postfek YN foar in e-mailberjocht mei de befêstigingsk msgid "Choose domain verification method" msgstr "Domeinferifikaasjemetoade kieze" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Feeds kieze" @@ -1669,7 +1746,7 @@ msgstr "Feeds kieze" msgid "Choose for me" msgstr "Foar my kieze" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Persoanen kieze" @@ -1685,23 +1762,23 @@ msgstr "Dizze kleur as dyn avatar kieze" msgid "Choose your account provider" msgstr "Dyn accountprovider kieze" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Kies dyn eigen tiidline! Feeds makke troch de mienskip helpe dy om ynhâld te finen dêr’tsto wol oer meist." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Dyn wachtwurd kieze" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Dyn brûkershandle kieze" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Alle bewarre gegevens wiskje" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Alle bewarre gegevens wiskje (start de app hjirnei opnij)" @@ -1714,23 +1791,27 @@ msgstr "Ofbyldingsbuffer wiskje" msgid "Clear search query" msgstr "Sykopdracht wiskje" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "Klik foar ynformaasje" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "klik hjir" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "Klik hjir om it ferifikaasjeproses opnij te starten." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "Klik hjir om dyn e-mailadres by te wurkjen" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Klik om sitaatberjochten foar dit berjocht te ferbieden." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Klik om sitaatberjochten foar dit berjocht ta te stean." @@ -1750,14 +1831,16 @@ msgstr "Klimaat" msgid "Clip 🐴 clop 🐴" msgstr "Klik 🐴 klak 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Klik 🐴 klak 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Slute" @@ -1789,13 +1876,15 @@ msgstr "Warskôging slute" msgid "Close bottom drawer" msgstr "Paniel ûnderoan slute" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Dialoochfinster slute" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Lademenu slute" @@ -1804,7 +1893,7 @@ msgstr "Lademenu slute" msgid "Close emoji picker" msgstr "Emoji-kiezer slute" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "GIF-dialoochfinster slute" @@ -1822,7 +1911,7 @@ msgstr "Ofbyldingsviewer slute" msgid "Close menu" msgstr "Menu slute" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Dit dialoochfinster slute" @@ -1830,7 +1919,7 @@ msgstr "Dit dialoochfinster slute" msgid "Closes password update alert" msgstr "Slút warskôging foar bywurkjen wachtwurd" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "Slút opstellen berjocht en negearret konsept" @@ -1843,16 +1932,16 @@ msgstr "Slút de emoji-kiezer" msgid "Closes viewer for header image" msgstr "Slút viewer foar headerôfbylding" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Brûkerslist ynklappe" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Klapt de brûkerslist foar in bepaalde melding yn" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Kleurmodus" @@ -1870,7 +1959,8 @@ msgstr "Komeedzje" msgid "Comics" msgstr "Strips" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Mienskipsrjochtlinen" @@ -1879,38 +1969,34 @@ msgstr "Mienskipsrjochtlinen" msgid "Complete onboarding and start using your account" msgstr "Foltôgje de yntroduksje en begjin mei it brûken fan dyn account" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Foltôgje de útdaging" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Nij berjocht opstelle" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Do kinst berjochten opstelle mei in lingte fan maksimaal {0, plural, other {# karakters}}" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Antwurd opstelle" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Fideo komprimearje…" -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Konfigurearje ynhâldsfilterynstelling foar kategory: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Konfigurearre yn <0>moderaasje-ynstellingen." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Taalynstellingen fan ynhâld befêstigje" msgid "Confirm delete account" msgstr "Account fuortsmite befêstigje" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Befêstigje dyn leeftiid:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Befêstigje dyn bertedatum" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Befêstigje dyn bertedatum" msgid "Confirmation code" msgstr "Befêstigingskoade" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Befêstigingskoade" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Ferbine…" -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "Ferbiningsprobleem" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "Nim kontakt op mei ús moderaasjeteam" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Kontakt opnimme mei stipe" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "Nim kontakt mei ús op" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Ynhâld & media" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Ynhâld en media" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Ynhâld en media" @@ -1977,7 +2069,8 @@ msgstr "Ynhâld en media" msgid "Content Blocked" msgstr "Ynhâld blokkearre" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Ynhâldsfilters" @@ -2006,10 +2099,12 @@ msgstr "Ynhâldswarskôging" msgid "Content warnings" msgstr "Ynhâldswarskôgingen" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Kontekstmenu-eftergrûn, klik om it menu te sluten." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Trochgean" msgid "Continue as {0} (currently signed in)" msgstr "Trochgean as {0} (op dit stuit oanmeld)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "Petear trochsette" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Fierder lêze…" @@ -2029,6 +2129,10 @@ msgstr "Fierder lêze…" msgid "Continue to next step" msgstr "Trochgean nei folgjende stap" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "Petear" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Kopiearre" msgid "Copied build version to clipboard" msgstr "Buildferzje nei klamboerd kopiearre" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Kopiearret buildferzje nei klamboerd" msgid "Copy" msgstr "Kopiearje" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "Dochs kopiearje" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "App-wachtwurd kopiearje" @@ -2087,8 +2187,8 @@ msgstr "App-wachtwurd kopiearje" msgid "Copy at:// URI" msgstr "at:// URI kopiearje" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Auteur-DID kopiearje" @@ -2120,10 +2220,10 @@ msgstr "Keppeling kopiearje" msgid "Copy link to list" msgstr "Keppeling nei list kopiearje" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Keppeling nei berjocht kopiearje" @@ -2136,18 +2236,18 @@ msgstr "Keppeling nei profyl kopiearje" msgid "Copy link to starter pack" msgstr "Keppeling nei startpakket kopiearje" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Berjochttekst kopiearje" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Berjocht at:// URI kopiearje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Berjochttekst kopiearje" @@ -2159,11 +2259,25 @@ msgstr "QR-koade kopiearje" msgid "Copy TXT record value" msgstr "TXT-recordwearde kopiearje" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Auteursrjochtbelied" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "Ferbine mei oanpaste feed mislearre" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "Ferbine mei feedtsjinst mislearre" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "Profyl net fûn" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "Kin chat net negearje" msgid "Could not process your video" msgstr "Kin dyn fideo net ferwurkje" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "Wizigingen koene net bewarre wurde: {0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "Meldingsynstellingen bywurkje mislearre" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Oanmeitsje" @@ -2195,7 +2317,7 @@ msgstr "Meitsje in QR-koade foar in startpakket" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Meitsje in startpakket" @@ -2205,21 +2327,22 @@ msgstr "Meitsje in startpakket foar my" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Registrearje" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Registrearje" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "In account oanmeitsje" @@ -2241,7 +2364,7 @@ msgstr "Noch ien oanmeitsje" msgid "Create new account" msgstr "Nij account oanmeitsje" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Melding meitsje foar {0}" @@ -2268,7 +2391,7 @@ msgstr "Oanpast" msgid "Customization options" msgstr "Oanpassingsopsjes" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Pas oan wa’t reagearje kin op dit berjocht." @@ -2278,12 +2401,12 @@ msgstr "Past dyn Bluesky-ûnderfining oan" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Tsjuster" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Donker" @@ -2292,21 +2415,21 @@ msgstr "Donker" msgid "Dark mode" msgstr "Donkere modus" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Donker tema" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Bertedatum" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Account de-aktivearje" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Moderaasje debugge" @@ -2314,7 +2437,7 @@ msgstr "Moderaasje debugge" msgid "Debug panel" msgstr "Paniel debugge" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Standert" @@ -2322,8 +2445,8 @@ msgstr "Standert" msgid "Default icons" msgstr "Standert piktogrammen" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Standert piktogrammen" msgid "Delete" msgstr "Fuortsmite" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Account fuortsmite" @@ -2355,7 +2478,7 @@ msgstr "App-wachtwurd fuortsmite?" msgid "Delete chat" msgstr "Chat fuortsmite" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Chatdeklaraasjerecord fuortsmite" @@ -2370,7 +2493,7 @@ msgstr "Petear fuortsmite" msgid "Delete Conversation" msgstr "Petear fuortsmite" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Foar my fuortsmite" @@ -2378,11 +2501,11 @@ msgstr "Foar my fuortsmite" msgid "Delete list" msgstr "List fuortsmite" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Berjocht fuortsmite" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Berjocht foar my fuortsmite" @@ -2390,9 +2513,9 @@ msgstr "Berjocht foar my fuortsmite" msgid "Delete my account" msgstr "Myn account fuortsmite" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Berjocht fuortsmite" @@ -2409,11 +2532,11 @@ msgstr "Startpakket fuortsmite?" msgid "Delete this list?" msgstr "Dizze list fuortsmite?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Dit berjocht fuortsmite?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Fuortsmiten" @@ -2422,15 +2545,20 @@ msgstr "Fuortsmiten" msgid "Deleted Account" msgstr "Fuortsmiten account" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "Fuortsmiten list" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Fuortsmiten berjocht." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Omskriuwing" @@ -2447,12 +2575,12 @@ msgstr "Omskriuwing is te lang. {DESCRIPTION_MAX_GRAPHEMES, plural, other {It ma msgid "Descriptive alt text" msgstr "Beskriuwende alt-tekst" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Sitaat loskeppelje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Sitaat loskeppelje?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Untwikkelersmodus ynskeakele" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Untwikkelersopsjes" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Dialooch: oanpasse wa’t op dit berjocht reagearje mei" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Dôvje" @@ -2492,27 +2620,27 @@ msgstr "E-mail-2FA útskeakelje" msgid "Disable Email 2FA" msgstr "E-mail-2FA útskeakelje" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Fielbere feedback útskeakelje" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Undertiteling útskeakelje" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Utskeakele" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Fuortsmite" @@ -2520,11 +2648,11 @@ msgstr "Fuortsmite" msgid "Discard changes?" msgstr "Wizigingen fuortsmite?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Konsept fuortsmite?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Berjocht fuortsmite?" @@ -2542,7 +2670,7 @@ msgstr "Feeds ûntdekke" msgid "Discover new custom feeds" msgstr "Nije personalisearre feeds ûntdekke" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Nije feeds ûntdekke" @@ -2550,7 +2678,7 @@ msgstr "Nije feeds ûntdekke" msgid "Dismiss" msgstr "Slute" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Flater negearje" @@ -2562,26 +2690,26 @@ msgstr "Starthantlieding ôfslute" msgid "Dismiss interests" msgstr "Ynteressen negearje" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "Berjocht slute" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Dizze seksje slute" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Gruttere alt-tekstbadges toane" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Werjeftenamme" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Werjeftenamme" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Werjeftenamme is te lang" @@ -2603,15 +2731,11 @@ msgstr "Dit negearwurd net brûke foar brûkers dy’tsto folgest" msgid "Does not include nudity." msgstr "Befettet gjin neakens." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Begjint en einiget net mei in keppelteken" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Domein ferifiearre!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Hasto gjin koade of in nije nedicht? <0>Klik hjir." @@ -2619,6 +2743,15 @@ msgstr "Hasto gjin koade of in nije nedicht? <0>Klik hjir." msgid "Don't see an email? <0>Click here to resend." msgstr "Gjin e-mailberjocht ûntfongen? <0>Klik hjir om opnij te ferstjoeren." +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "Net mear toane" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "Meitsje dy gjin soargen! Alle besteande berjochten en ynstellingen wurde bewarre en sille beskikber wêze neidatsto ferifieard hast datsto in folwoeksene bist." + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "Tik dûbeld of druk lang op in berjocht, om in reaksje ta te foegjen" msgid "Double tap to close the dialog" msgstr "Tik dûbeld om de dialooch te sluten" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Tik dûbeld om der wol oer te meien" @@ -2673,7 +2806,7 @@ msgstr "Bluesky downloade" msgid "Download CAR file" msgstr "CAR-bestân downloade" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Falle litte om ôfbyldingen ta te foegjen" @@ -2689,18 +2822,10 @@ msgstr "byg. alice" msgid "e.g. Alice Lastname" msgstr "byg. Alice Efternamme" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "Bygelyks Alice Roberts" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "bygelyks alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "Bygelyks keunstner, hûneleafhawwer en fûleindich lêzer." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Bygelyks artistyk neaken." @@ -2725,10 +2850,11 @@ msgstr "Bygelyks brûkers dy’t faker mei advertinsjes reagearje." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Elke koade wurket ien kear. Do ûntfangst periodyk mear útnûgingskoaden." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Bewurkje" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Bewurkje" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Avatar bewurkje" @@ -2749,12 +2875,12 @@ msgstr "Feeds bewurkje" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Ofbylding bewurkje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Ynteraksje-ynstellingen bewurkje" @@ -2776,33 +2902,33 @@ msgstr "Live-status bewurkje" msgid "Edit Moderation List" msgstr "Moderaasjelist bewurkje" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Myn feeds bewurkje" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Myn profyl bewurkje" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "Meldingen fan {0} bewurkje" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Persoanen bewurkje" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Berjochtynteraksje-ynstellingen bewurkje" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Profyl bewurkje" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Profyl bewurkje" @@ -2814,19 +2940,11 @@ msgstr "Startpakket bewurkje" msgid "Edit User List" msgstr "Brûkerslist bewurkje" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Wa’t reagearje kin bewurkje" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Dyn werjeftenamme bewurkje" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Dyn profylbeskriuwing bewurkje" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Dyn startpakket bewurkje" @@ -2839,8 +2957,8 @@ msgstr "Underwiis" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "De makker fan dizze list hat dy blokkearre, of do hast de makker blokkearre." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "E-mailadres" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "E-mail-2FA útskeakele" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "E-mail-2FA ynskeakele" @@ -2865,10 +2983,6 @@ msgstr "E-mailberjocht opnij ferstjoerd" msgid "Email sent!" msgstr "E-mailberjocht ferstjoerd!" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "E-mailadres bywurke!" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "E-mailferifikaasje foltôge!" @@ -2883,8 +2997,8 @@ msgstr "HTML-koade ynslute" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Berjocht ynslute" @@ -2892,7 +3006,7 @@ msgstr "Berjocht ynslute" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Nim dit bericht op yn dyn website. Kopiearje ienfâldichwei it folgjende fragmint en plak it yn de HTML-koade fan dyn website." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Yntegrearre fideospiler" @@ -2906,7 +3020,7 @@ msgstr "Ynskeakelje" msgid "Enable {0} only" msgstr "Allinnich {0} ynskeakelje" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Ynhâld foar folwoeksenen ynskeakelje" @@ -2919,16 +3033,20 @@ msgstr "E-mail-2FA ynskeakelje" msgid "Enable external media" msgstr "Eksterne media ynskeakelje" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Mediaspilers ynskeakelje foar" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Prioriteitsmeldingen ynskeakelje" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "Skeakelje meldingen yn foar in account troch harren profyl te besykjen en op it <0>belpiktogram <1/> te drukken." -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "Pushmeldingen ynskeakelje" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Undertiteling ynskeakelje" @@ -2941,17 +3059,14 @@ msgstr "Allinnich dizze boarne ynskeakelje" msgid "Enable trending topics" msgstr "Populêre ûnderwerpen ynskeakelje" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Populêre fideo’s yn dyn Discover-feed ynskeakelje" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Populêre fideo’s yn dyn Discover-feed ynskeakelje." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Ynskeakele" @@ -2963,7 +3078,7 @@ msgstr "Ein fan feed" msgid "Ensure you have selected a language for each subtitle file." msgstr "Soargje derfoar datsto foar elk ûndertitelbestân in taal selektearrest." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Fier in wachtwurd yn" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Fier in wurd of tag yn" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "Koade ynfiere" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Koade ynfiere" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Folslein skerm iepenje" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Fier dyn bertedatum yn" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Fier dyn e-mailadres yn" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Fier hjirûnder dyn nije e-mailadres yn." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Fier fyn wachtwurd yn" @@ -3022,7 +3129,7 @@ msgstr "Fier fyn wachtwurd yn" msgid "Enter your username and password" msgstr "Fier dyn brûkersnamme en wachtwurd yn" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Iepenet folslein skerm" @@ -3030,16 +3137,28 @@ msgstr "Iepenet folslein skerm" msgid "Entertainment" msgstr "Ferdivedaasje" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Flater" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "Flater by laden berjocht" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "Flater by laden foarkar" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "Flaterberjocht" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Der is in flater bard by it bewarjen fan it bestân" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Flater by ûntfangen fan captcha-antwurd." @@ -3047,27 +3166,34 @@ msgstr "Flater by ûntfangen fan captcha-antwurd." msgid "Error:" msgstr "Flater:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "Flater: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Elkenien" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Elkenien kin reagearje" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Elkenien kin reagearje op dit berjocht." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Elkenien" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "Al it oare" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Brûkers útslute dy’tsto folgest" msgid "Excludes users you follow" msgstr "Slút brûkers dy’tsto folgest út" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Folslein skerm slute" @@ -3106,24 +3232,28 @@ msgstr "Ferlit ôfbyldingswerjefte" msgid "Expand alt text" msgstr "Alt-tekst útklappe" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Brûkerslist útklappe" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Ut- of ynklappe fan it folsleine berjocht dêr’tsto op reagearrest" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "Berjochttekst útklappe" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Klapt berjochttekst út of yn" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "Ferwacht waard dat uri omset wurde koe nei in record" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Eksperimenteel" @@ -3153,15 +3283,15 @@ msgstr "Eksplisite of mooglik oanstjitjaande media." msgid "Explicit sexual images." msgstr "Eksplisite seksuele ôfbyldingen." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "Untdekke" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Myn gegevens eksportearje" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Eksterne media" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Eksterne media kinne websites tastean om ynformaasje oer dy en dyn apparaat te sammeljen. Der wurdt gjin ynformaasje ferstjoerd of frege oantsto op de knop ‘ôfspylje’ drukst." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Eksterne-mediafoarkarren" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "Chat akseptearje mislearre" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "Tafoegjen emoji-reaksje mislearre" @@ -3211,8 +3341,8 @@ msgstr "Koe app-wachtwurd net oanmeitsje. Probearje it nochris." msgid "Failed to create conversation" msgstr "Oanmeitsjen fan petear mislearre" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "It oanmeitsjen fan it startpakket is mislearre" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "Fuortsmiten fan chat mislearre" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Priveeberjocht kin net fuorsmiten wurde" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Berjocht fuortsmiten mislearre, probearje it opnij" @@ -3238,8 +3368,8 @@ msgstr "Berjocht fuortsmiten mislearre, probearje it opnij" msgid "Failed to delete starter pack" msgstr "Fuortsmiten fan it startpakket is mislearre" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "Laden van konversaasjes mislearre" @@ -3250,14 +3380,32 @@ msgstr "Laden van konversaasjes mislearre" msgid "Failed to load feeds preferences" msgstr "Laden fan feedfoarkarren is mislearre" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Laden fan GIF’s is mislearre" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "Meldingsynstellingen lade mislearre." + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Laden fan eardere priveeberjochten is mislearre" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "Laden fan foarkar mislearre." + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Laden fan foarstelde feeds is mislearre" msgid "Failed to load suggested follows" msgstr "It is net slagge om in list te laden mei folchsuggestjes" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "Alle fersiken as lêzen markearje mislearre" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Fêstsetten fan berjocht is mislearre" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "Fuortsmiten emoji-reaksje mislearre" @@ -3291,15 +3439,11 @@ msgstr "Fuortsmiten fan ferifikaasje mislearre" msgid "Failed to save image: {0}" msgstr "It bewarjen fan de ôfbylding is mislearre: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Bewarjen fan meldingsfoarkarren is mislearre, probearje it opnij" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "Ynstellingen bewarjen mislearre. Probearje it opnij." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "Dyn ynteressen bewarje mislearre." @@ -3318,7 +3462,7 @@ msgstr "E-mailberjocht ferstjoere mislearre, probearje it opnij." msgid "Failed to submit appeal, please try again." msgstr "It yntsjinjen fan beswier is mislearre, probearje it opnij." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "It wikseljen tusken wol/net-negearje fan it petear is mislearre, probearje it opnij" @@ -3335,7 +3479,11 @@ msgstr "E-mailadres bywurkjen mislearre, probearje it opnij." msgid "Failed to update feeds" msgstr "Net slagge om de feeds by te wurkjen" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "Bywurkjen meldingsdeklaraasje mislearre" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Ynstellingen bywurkje mislearre" @@ -3354,15 +3502,23 @@ msgstr "E-mailadres ferifiearjen mislearre, probearje it opnij." msgid "Failed to verify handle. Please try again." msgstr "Kin handle net ferifiearje. Probearje nochris." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Feed" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Feed troch {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "Feedmakker" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "Feedidentifikator" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Feedmenu" @@ -3371,35 +3527,39 @@ msgstr "Feedmenu" msgid "Feed toggle" msgstr "Feed wikselje" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "Feed net beskikber" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Feedback" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Feedback ferstjoerd!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Feeds" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Feeds binne personalisearre algoritmen dy’t brûkers mei in bytsje programmearkennis bouwe. <0/> foar mear ynformaasje." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Feeds bywurke!" @@ -3428,6 +3588,14 @@ msgstr "Filter sykje op taal" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filter sykje op taal (op dit stuit: {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "Filter wa’t kieze kin meldingen foar dyn aktiviteit te ûntfangen" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "Filter fan wa’tsto meldingen ûntfangst" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Foltôgje" @@ -3448,7 +3616,7 @@ msgstr "Sykje minsken om te folgjen" msgid "Find posts, users, and feeds on Bluesky" msgstr "Sykje berjochten, brûkers en feeds op Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Foltôgje" @@ -3456,17 +3624,17 @@ msgstr "Foltôgje" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Plat swart" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Plat blau" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Plat wyt" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Fleksibel" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Folgje" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "{0} folgje" @@ -3518,7 +3686,7 @@ msgstr "Account folgje" msgid "Follow all" msgstr "Alle folgje" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Weromfolgje" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Weromfolgje" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Folge troch <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Folge troch <0>{0} en {1, plural, one {# oar} other {# oaren}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Folge troch <0>{0} en <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Folge troch <0>{0}, <1>{1} en {2, plural, one {# oar} other {# oaren}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Folgers fan @{0} dy’tsto kinst" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Folgers dy’tsto kinst" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Folgjend" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Folgjend" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Folget {0}" @@ -3579,8 +3751,8 @@ msgstr "Do folgest {handle}" msgid "Following feed preferences" msgstr "Folchfeedfoarkarren" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Folchfeedfoarkarren" @@ -3592,11 +3764,11 @@ msgstr "Folget dy" msgid "Follows You" msgstr "Folget dy" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Lettertype" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Lettergrutte" @@ -3613,7 +3785,7 @@ msgstr "Om feilichheidsredenen moatte wy in befêstigingskoade nei dyn e-mailadr msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Om feilichheidsredenen kinsto dit net mear besjen. Do moatst in nij app-wachtwurd generearje asto dit app-wachtwurd kwytrekkest." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Foar de beste ûnderfining riede wy dy oan it temalettertype te brûken." @@ -3643,11 +3815,15 @@ msgstr "Ferjitten?" msgid "Frequently Posts Unwanted Content" msgstr "Publisearret faak net-winske ynhâld" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "Fan" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "Fan @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "Fan <0/>" @@ -3660,14 +3836,68 @@ msgstr "Galerij" msgid "Generate a starter pack" msgstr "In startpakket generearje" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Krij help" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "Untfang meldingen wannear’t minsken dy folgje." + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "Untfang meldingen wannear’t minsken wol oer berjochten meie dy’tsto opnij pleatst hast." + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "Untfang meldingen wannear’t minsken wol oer dyn berjochten meie." + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "Untfang meldingen wannear’t minsken dy neame." + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "Untfang meldingen wannear’t minsken dyn berjochten sitearje." + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "Untfang meldingen wannear’t minsken op dyn berjochten reagearje." + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "Untfang meldingen wannear’t minsken dyn opnij-pleatsingen opnij pleatse." + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "Untfang meldingen wannear’t minsken dyn berjochten opnij pleatse." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "Meldingen oer nije berjochten ûntfange" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Meldingen oer berjochten en antwurden fan accounts dy’tsto kiest ûntfange." + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "Meldingen oer nije berjochten fan {name} ûntfange" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "In melding ûntfange oer de aktiviteit fan dizze account" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "In melding ûntfange wannear’t {name} berjochten pleatst" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "In melding ûntfange wannear’t ien in berjocht pleatst" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "Oan de slach" @@ -3688,14 +3918,16 @@ msgstr "Jou dyn profyl in gesicht" msgid "Glaring violations of law or terms of service" msgstr "Dúdlike oertrêdingen fan de wet of tsjinstbetingsten" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "Gean live" msgid "Go live for" msgstr "Gean live foar" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "Gean nei it profyl fan {firstAuthorName}" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "Gean nei accountynstellingen" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Nei petear mei {0}" @@ -3779,8 +4017,8 @@ msgstr "Grafyske media" msgid "Half way there!" msgstr "Healweis!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Handle" @@ -3797,7 +4035,7 @@ msgstr "Handle wizige!" msgid "Handle too long. Please try a shorter one." msgstr "Handle te lang. Probearje in koartere." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Haptyske feedback" @@ -3806,7 +4044,7 @@ msgstr "Haptyske feedback" msgid "Harassment, trolling, or intolerance" msgstr "Pesterijen, trolling of yntolerânsje" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Hashtag" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Hashtag {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "Hasto in koade? <0>Klik hjir." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Hasto problemen?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Help" @@ -3839,8 +4077,13 @@ msgstr "Lit minsken witte datsto gjin bot bist troch in foto op te laden of in a msgid "Here is your app password!" msgstr "Hjir is dyn app-wachtwurd!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "Ha goeie 👋" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Ferstoppe" @@ -3848,16 +4091,16 @@ msgstr "Ferstoppe" msgid "Hidden by your moderation settings." msgstr "Ferstoppe troch dyn moderaasjeynstellingen." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Ferburgen list" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Ferburgen list" msgid "Hide" msgstr "Ferstopje" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Ferstopje" @@ -3875,18 +4118,18 @@ msgstr "Ferstopje" msgid "Hide customization options" msgstr "Oanpassingsopsjes ferstoppe" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Berjocht foar my ferstopje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Reaksje foar elkenien ferstopje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Reaksje foar my ferstopje" @@ -3894,12 +4137,12 @@ msgstr "Reaksje foar my ferstopje" msgid "Hide this card" msgstr "Dizze kaart ferstopje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Dit berjocht ferstopje?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Dizze reaksje ferstopje?" @@ -3913,11 +4156,11 @@ msgstr "Populêre ûnderwerpen ferstopje" msgid "Hide trending topics?" msgstr "Populêre ûnderwerpen ferstopje?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Populêre fideo’s ferstopje?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Brûkerslist ferstopje" @@ -3926,32 +4169,32 @@ msgstr "Brûkerslist ferstopje" msgid "Hide verification badges" msgstr "Ferifikaasjebadges ferstopje" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Ferstoppet de ynhâld" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm, der is in probleem bard by it ferbinen mei de feedserver. Stel de feedeigener op de hichte fan dit probleem." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm, de feedserver liket ferkeard konfigurearre te wêzen. Stel de feedeigener op de hichte fan dit probleem." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm, de feedserver liket offlie te wêzen. Stel de feedeigener op de hichte fan dit probleem." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm, de feedserver hat in ûnjildich antwurd werom jûn. Stel de feedeigener op de hichte fan dit probleem." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, wy hawwe problemen mei it finen fan dizze feed. Dizze is mooglik fuortsmiten." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmm, it liket derop dat wy problemen hawwe mei it laden fan dizze gegevens. Sjoch hjirûnder foar mear ynformaasje. Nim kontakt mei ús op as dit probleem bliuwt." @@ -3959,15 +4202,15 @@ msgstr "Hmm, it liket derop dat wy problemen hawwe mei it laden fan dizze gegeve msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmm, wy koene dy moderaasjetsjinst net lade." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Wachtsje even! Wy jouwe stadichoan tagong ta fideo en do stiest noch hieltyd yn de rige. Kom fluch werom!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Startside" @@ -3984,10 +4227,10 @@ msgstr "Hostingprovider" msgid "Hot" msgstr "Populêr" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Populêre antwurden earst" @@ -3996,10 +4239,6 @@ msgstr "Populêre antwurden earst" msgid "How should we open this link?" msgstr "Hoe moatte wy dizze keppeling iepenje?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Ik begryp it" msgid "If alt text is long, toggles alt text expanded state" msgstr "As de alt-tekst lang is wurdt de alt-tekst yn- of útklapt" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Asto neffens de wetten fan dyn lân noch gjin folwoeksene bist moat dyn âlder of wetlike fâd dizze nammens dy lêze." @@ -4031,11 +4270,11 @@ msgstr "Asto dizze list fuotsmytst, kinsto dizze net mear werstelle." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Asto in eigen domein hast, kinsto dat as handle brûke. Sa kinsto dyn identiteit sels ferifiearje. <0>Klik hjir foar mear ynformaasje." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "Asto dyn e-mailadres bywurkje moatst, <0>klik hjir." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Asto dit berjocht fuortsmytst, kinsto it net mear werstelle." @@ -4047,6 +4286,10 @@ msgstr "Asto dyn e-mailadres bywurkest, wurdt e-mail-2FA útskeakele." msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Asto dyn wachtwoord wizigje wolst stjoere wy dy in koade om te ferifiearjen dat dit dyn account is." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "Asto beheine wolst wa’t meldingen foar de aktiviteit fan dyn account ûntfange kin, kinsto dit wizigje yn <0>Ynstellingen → Privacy en Befeiliging." + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "Asto in ûntwikkeler bist, kinsto dyn eigen server hoste." @@ -4091,13 +4334,41 @@ msgstr "Imitaasje fan identiteit of falske bewearingen oer identiteit of affilia msgid "Impersonation, misinformation, or false claims" msgstr "Imitaasje fan identiteit, ferkearde ynformaasje of falske bewearingen" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "Yn-app" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "Yn-app-meldingen" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "Yn-app, elkenien" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "Yn-app, minsken dy’tsto folgest" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "Yn-app, pushberjocht" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "Yn-app, pushberjocht, elkenien" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "Yn-app, pushberjocht, minsken dy’tsto folgest" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Unpaslike priveeberjochten of eksplisite keppelingen" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "Postfek YN nul!" @@ -4105,7 +4376,7 @@ msgstr "Postfek YN nul!" msgid "Incorrect username or password" msgstr "Unjildige brûkersnamme of wachtwurd" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Ynfierkoade ferstjoerd nei dyn e-mailadres foar it opnij ynstellen fan dyn wachtwurd" @@ -4113,7 +4384,7 @@ msgstr "Ynfierkoade ferstjoerd nei dyn e-mailadres foar it opnij ynstellen fan d msgid "Input confirmation code for account deletion" msgstr "Fier de befêstigingskoade yn foar it fuortsmiten fan de account" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Fier nij wachtwurd yn" @@ -4129,10 +4400,14 @@ msgstr "Fer de koade yn dy’t nei dy e-maild is" msgid "Interaction limited" msgstr "Ynteraksje beheind" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Ynteraksjeynstellingen" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "Yntroduksje aktiviteitsmeldingen" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Unjildige 2FA-befêstigingskoade." msgid "Invalid handle. Please try a different one." msgstr "Unjildige handle. Probearje in oare." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Unjildich of net-stipe berjochtrecord" @@ -4158,7 +4433,7 @@ msgstr "Unjildige ferifikaasjekoade" msgid "Invite a Friend" msgstr "In freon útnûgje" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Utnûgingskoade" @@ -4186,15 +4461,15 @@ msgstr "Nûgje freonen út om dyn favorite feeds en persoanen te folgjen" msgid "Invites, but personal" msgstr "Utnûgingen, mar dan persoanlik" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Dat is korrekt" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Do bist no noch de iennige! Foegje mear persoanen ta oan dyn startpakket troch hjirboppe te sykjen." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "Taak-ID: {0}" @@ -4220,11 +4495,27 @@ msgstr "Doh mei oan it petear" msgid "Journalism" msgstr "Sjoernalistyk" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "Hâld my op de hichte" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "KWS-privacybelied" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "KWS-gebrûksbetingsten" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "KWS-website" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Labele troch {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Labele troch de auteur." @@ -4237,7 +4528,7 @@ msgstr "Labels" msgid "Labels added" msgstr "Labels tafoege" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Labels binne oantekeningen oer brûkers en ynhâld. Se kinne brûkt wurde om it te ferstopjen, te warskôgjen en it netwurk te kategorisearjen." @@ -4253,22 +4544,30 @@ msgstr "Labels op dyn ynhâld" msgid "Language selection" msgstr "Taalseleksje" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Taalynstellingen" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Talen" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Grutter" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "Lêst start {timeAgo} lyn" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "Lêst start, sakrekt" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Lêste" @@ -4282,7 +4581,6 @@ msgstr "mear ynfo" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "Mear ynfo" @@ -4290,6 +4588,10 @@ msgstr "Mear ynfo" msgid "Learn More" msgstr "Mear ynfo" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "Mear ynfo oer leeftiidsferifikaasje" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Mear ynfo oer Bluesky" @@ -4298,15 +4600,23 @@ msgstr "Mear ynfo oer Bluesky" msgid "Learn more about self hosting your PDS." msgstr "Mear ynfo oer it sels hosten fan dyn PDS." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "Mear info oer de moderaasje tapast op dizze ynhâld" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Mear info oer de moderaasje tapast op dizze ynhâld." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "Lês mear oer dizze wizigingen en hoe’tsto dyn tinzen mei ús diele kinst troch <0>ús blogberjocht te lêzen." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Lês mear oer dizze wizigingen en hoe’tsto dyn tinzen mei ús diele kinst troch ús blogberjocht te lêzen." + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Mear ynfo oer dizze warskôging" @@ -4316,12 +4626,16 @@ msgstr "Mear ynfo oer dizze warskôging" msgid "Learn more about verification on Bluesky" msgstr "Mear ynfo oer ferifikaasje op Bluesky" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Mear ynfo oer wat iepenbier is op Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "Mear ynformaasje yn dyn <0>accountynstellingen." + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Mear ynfo." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Petear ferlitte" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Alle útskeakele litte om elke taal te sjen." +msgid "Leave them all unselected to see any language." +msgstr "Lit se allegearre net selektearre om elke taal te sjen." -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Bluesky ferlitte" @@ -4370,7 +4685,7 @@ msgstr "Los!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Ljocht" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Mei ’k wol oer" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Mei ’k wol oer ({0, plural, one {# mei-’k-wol-oer} other {# mei-’k-wol-oers}})" @@ -4397,6 +4712,10 @@ msgstr "Mei wol oer 10 berjochten" msgid "Like 10 posts to train the Discover feed" msgstr "Mei wol oer 10 berjochten om de Untdekken-feed te trainen" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "Mei-’k-wol-oer-meldingen" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Mei wol oer dizze feed" @@ -4405,8 +4724,8 @@ msgstr "Mei wol oer dizze feed" msgid "Like this labeler" msgstr "Mei wol oer dizze labeler" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Mei hjir wol oer" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Mei ’k wol oer troch" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Mei ’k wol oer troch {0, plural, one {# brûker} other {# brûkers}}" @@ -4428,20 +4747,36 @@ msgstr "Mei ’k wol oer troch {0, plural, one {# brûker} other {# brûkers}}" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Mei ’k wol oer troch {likeCount, plural, one {# brûker} other {# brûkers}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Mei-’k-wol-oers" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "Mei-’k-wol-oers fan dyn opnij-pleatsingen" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "Meldingen oer mei-’k-wol-oers fan dyn opnij-pleatsingen" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Mei-’k-wol-oers op dit berjocht" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Lineêr" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "List" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "List blokkearre" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "List troch {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "List troch <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "List fan dy" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "Listmakker" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "List net-negearre" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Listen" @@ -4537,7 +4876,7 @@ msgstr "Mear lade" msgid "Load more suggested feeds" msgstr "Mear foarstelde feeds lade" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Nije meldingen lade" @@ -4552,11 +4891,11 @@ msgstr "Nije berjochten lade" msgid "Loading..." msgstr "Lade…" -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Lochboek" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Sichtberheid ôfmelden" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo troch @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo troch <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Logo troch <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Yndrukt hâlde om tagmenu te iepenjen foar #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Liket op XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "E-mailynstellingen foar dyn account oanpasse" msgid "Make one for me" msgstr "Meitsje ien foar my" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Wês wis dat dit is wêr’tsto hinne wolst!" @@ -4606,7 +4945,7 @@ msgstr "Wês wis dat dit is wêr’tsto hinne wolst!" msgid "Manage saved feeds" msgstr "Bewarre feeds beheare" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "Ferifikaasjeynstellingen beheare" @@ -4614,9 +4953,9 @@ msgstr "Ferifikaasjeynstellingen beheare" msgid "Manage your muted words and tags" msgstr "Dyn negearre wurden en tags beheare" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "Alles as lêzen markearje" @@ -4625,15 +4964,13 @@ msgstr "Alles as lêzen markearje" msgid "Mark as read" msgstr "As lêzen markearje" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "Alles as lêzen markearre" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "Miskien letter" @@ -4645,19 +4982,26 @@ msgstr "Media" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Media dy’t foar bepaalde doelgroepen oanstjitjouwend of ûngepast wêze kinne." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "Meldingen fan fermeldingen" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "fermelde brûkers" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Fermelde brûkers" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Fermeldingen" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Menu" @@ -4665,7 +5009,7 @@ msgstr "Menu" msgid "Message {0}" msgstr "Berjocht nei {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Berjocht fuortsmiten" @@ -4674,11 +5018,11 @@ msgstr "Berjocht fuortsmiten" msgid "Message deleted" msgstr "Berjocht fuortsmiten" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "Berjocht fan @{0}: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Berjocht fan server: {0}" @@ -4691,19 +5035,23 @@ msgstr "Ynfierfjild priveeberjocht" msgid "Message is too long" msgstr "Berjocht is te lang" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "Berjochtopsjes" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Berjochten" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Middernacht" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "Ferskate meldingen" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Misliedende account" msgid "Misleading Post" msgstr "Misliedend berjocht" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderaasje" @@ -4725,17 +5073,17 @@ msgstr "Moderaasje" msgid "Moderation details" msgstr "Moderaasjedetails" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Moderaasjelist troch {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Moderaasjelist troch <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Moderaasjelist troch dy" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Moderaasjelist bywurke" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Moderaasjelisten" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Moderaasjelisten" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "moderaasjeynstellingen" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Moderaasjetastannen" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Moderaasje-ark" @@ -4775,7 +5123,7 @@ msgstr "Moderaasje-ark" msgid "Moderator has chosen to set a general warning on the content." msgstr "De moderator hat derfoar keazen om in algemiene warskôging yn te stellen foar de ynhâld." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Mear" @@ -4790,13 +5138,13 @@ msgstr "Mear feeds" msgid "More options" msgstr "Mear opsjes" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Meast mei-’k-wol-oers earst" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Meast mei’k-wol-oers antwurden earst" @@ -4808,8 +5156,8 @@ msgstr "Films" msgid "Music" msgstr "Muzyk" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Negearje" @@ -4819,8 +5167,8 @@ msgstr "Negearje" msgid "Mute {tag}" msgstr "{tag} negearje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Dit wurd allinnich yn tags negearje" msgid "Mute this word until you unmute it" msgstr "Dit wurd negearje oantsto it negearjen annulearrest" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Petear negearje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Wurden en tags negearje" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Negearre accounts" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Negearre accounts" @@ -4898,7 +5246,7 @@ msgstr "Fan negearre accounts wurde de berjochten fuortsmiten út dyn feed en ú msgid "Muted by \"{0}\"" msgstr "Negearre troch ‘{0}’" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Negearre wurden en tags" @@ -4911,7 +5259,7 @@ msgstr "Negearjen is privee. Negearre accounts kinne mei dy kommunisearje, mar d msgid "My Birthday" msgstr "Myn bertedei" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Myn feeds" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Natuer" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Navigearje nei {0}" @@ -4958,11 +5306,11 @@ msgstr "Navigearje nei folgjende skerm" msgid "Navigates to your profile" msgstr "Navigearret nei dyn profyl" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Moatsto it wizigje?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "Moatst melding meitsje fan in skeining fan it auteursrjocht, in wetlike oanfraach, of in kwestje fan neilibjen fan de regeljouwing?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Wolsto in ynbreuk op it auteursrjocht melde?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Nij" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "{postsCount, plural, one {Nij berjocht} other {Nije berjochten}} fan {firstAuthorLink}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "{postsCount, plural, one {Nij berjocht} other {Nije berjochten}} fan {firstAuthorName}" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Nije chat" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "Nij e-mailadres" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "Nije funksje" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "Meldingen oer nije folgers" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "Nije folgers" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Nije berjochten" msgid "New Moderation List" msgstr "Nije moderaasjelist" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Nij wachtwurd" @@ -5029,7 +5396,7 @@ msgstr "Nij wachtwurd" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Nij berjocht" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Nij berjocht" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Nije berjochten fan {firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Nije berjochten fan {firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}}" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Nije-brûker-ynformaasjedialooch" @@ -5054,10 +5429,14 @@ msgstr "Nije-brûker-ynformaasjedialooch" msgid "New User List" msgstr "Nije brûkerslist" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Nijste antwurden earst" @@ -5071,15 +5450,15 @@ msgstr "Nijs" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "Gjin DNS-paniel" msgid "No expiry set" msgstr "Gjin ferrintiid ynsteld" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Gjin oanrekommandearre GIF’s fûn. Der is mooglik in probleem mei Tenor." @@ -5119,32 +5498,35 @@ msgstr "Gjin ôfbylding" msgid "No likes yet" msgstr "Noch gjin mei-’k-wol-oers" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Do folgest {0} net mear" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "Net langer as {MAX_SERVICE_HANDLE_LENGTH, plural, other {# karakters}}" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Noch gjin berjochten" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Noch gjin meldingen!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Net ien" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Allinnich de auteur mei dit berjocht sitearje." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "Noch gjin hjir" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Noch gjin berjochten." @@ -5171,7 +5553,7 @@ msgstr "Gjin resultaten" msgid "No results for \"{0}\"." msgstr "Gjin resultaten foar ‘{0}’." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Gjin resultaten fûn" @@ -5179,9 +5561,9 @@ msgstr "Gjin resultaten fûn" msgid "No results found for \"{query}\"" msgstr "Gjin resultaten fûn foar ‘{query}’" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Gjin resultaten fûn foar {query}" @@ -5189,7 +5571,7 @@ msgstr "Gjin resultaten fûn foar {query}" msgid "No results." msgstr "Gjin resultaten." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Gjin resultaten fûn foar ‘{search}’." @@ -5198,7 +5580,7 @@ msgstr "Gjin resultaten fûn foar ‘{search}’." msgid "No thanks" msgstr "Nee, tank" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Gjinien" @@ -5223,59 +5605,76 @@ msgstr "Gjinien fûn, Probearje in oar te sykjen." msgid "Non-sexual Nudity" msgstr "Net-seksuele neakens" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "Gjin" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "Net folge troch ien dy’tsto folgest" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Net fûn" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Opmerking oer diele" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Opmerking: Bluesky is in iepen en iepenbier netwurk. Dizze ynstelling beheint allinnich de sichtberheid fan dyn ynhâld op de Bluesky-app en -website. Oare apps respektearje dizze ynstelling mooglik net. Dyn ynhâld kin noch hieltyd toand wurde oan ôfmelde brûkers troch oare apps en websites." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "Opmerking: dit berjocht is allinnich sichtber foar oanmelde brûkers." + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Neat hjir" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Meldingsfilters" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Meldingsynstellingen" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Meldingsynstellingen" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Meldingslûden" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Meldingslûden" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Meldingen" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "Meldingen foar al it oare, lykas wannear’t ien lid wurdt fia ien fan dyn startpakketten." + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "no" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Neakens of ynhâld foar folwoeksenen dy’t net as sadanich labele is" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Ut" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Och heden!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "OK" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Oké" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Aldste antwurden earst" @@ -5331,19 +5736,19 @@ msgstr "Aldste antwurden earst" msgid "on<0><1/><2><3/>" msgstr "op<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Yntroduksje opnij toane" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "Alt-tekst ûntbrekt by ien of mear GIF’s." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Alt-tekst ûntbrekt by ien of mear ôfbyldingen." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Alt-tekst ûntbrekt by ien of mear fideo’s." @@ -5351,13 +5756,15 @@ msgstr "Alt-tekst ûntbrekt by ien of mear fideo’s." msgid "Only .jpg and .png files are supported" msgstr "Allinnich .jpg- en .png-bestannen wurde stipe" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Allinnich {0} kin reagearje." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Befettet allinnich letters, sifers en keppeltekens" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "Allinnich folgers dy’t ik folgje" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Allinnich ôfbyldingsbestannen wurde stipe" msgid "Only WebVTT (.vtt) files are supported" msgstr "Allinnich WebVTT (.vtt)-bestannen wurde stipe" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Och heden! Der is wat misgien!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Wûpsty!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Menu iepenje" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Emoji-kiezer iepenje" @@ -5416,7 +5822,7 @@ msgstr "Menu Feedopsjes iepenje" msgid "Open full emoji list" msgstr "Folsleine emojilist iepenje" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Keppeling nei {niceUrl} iepenje" @@ -5424,11 +5830,11 @@ msgstr "Keppeling nei {niceUrl} iepenje" msgid "Open message options" msgstr "Berjochtopsjes iepenje" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Moderaasje-debugside iepenje" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Negearre wurden en tags-ynstellingen iepenje" @@ -5453,16 +5859,16 @@ msgstr "Dielmenu iepenje" msgid "Open starter pack menu" msgstr "Startpakketmenu iepenje" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Ferhaleboekside iepenje" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Systeemlochboek iepenje" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Iepenet {numItems} opsjes" @@ -5490,11 +5896,11 @@ msgstr "Iepenet kamera op apparaat" msgid "Opens captions and alt text dialog" msgstr "Iepenet ûnderskriften en Alt-tekstfinster" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Iepenet it dialoochfinster ‘Handle wizigje’" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Iepenet composer" @@ -5502,7 +5908,7 @@ msgstr "Iepenet composer" msgid "Opens device photo gallery" msgstr "Iepenet fotogalerij fan apparaat" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Iepenet de emoji-kiezer" @@ -5520,15 +5926,19 @@ msgstr "Iepenet it proses om dy oan te melden by dyn besteande Bluesky-account" msgid "Opens GIF select dialog" msgstr "Iepenet dialoochfinster foar GIF-seleksje" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Iepenet de helpdesk yn dyn browser" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "Iepenet keppeling {0}" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Iepenet list mei útnûgingskoaden" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "Iepenet live-statusdialooch" @@ -5536,12 +5946,8 @@ msgstr "Iepenet live-statusdialooch" msgid "Opens password reset form" msgstr "Iepenet formulier om it wachtwud opnij yn te stellen" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Iepenet de keppele website" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Iepenet dit profyl" @@ -5558,7 +5964,7 @@ msgstr "Fier opsjoneel hjirûnder oanfoljende ynformaasje yn:" msgid "Options:" msgstr "Opsjes:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Of kombinearje dizze opsjes:" @@ -5600,6 +6006,10 @@ msgstr "Oare account" msgid "Other..." msgstr "Oars…" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "Us blogberjocht" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "Us moderaasjeteam hat dyn melding ûntfongen." @@ -5608,7 +6018,7 @@ msgstr "Us moderaasjeteam hat dyn melding ûntfongen." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Us moderators hawwe de meldingen besjoen en besletten dyn tagong ta chats op Bluesky út te skeakeljen." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Side net fûn" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Side net fûn" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Wachtwurd bywurke" msgid "Password updated!" msgstr "Wachtwurd bywurke!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Pauzearje" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Fideo pauzearje" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Persoanen" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Persoanen folge troch @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Persoanen dy’t @{0} folgje" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "Minsken dy’t ik folgje" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "Tagong ta dyn fotobiblioteek is wegere. Skeakelje dit yn dyn systeemynstellingen yn." @@ -5704,12 +6119,12 @@ msgstr "Fêstsette op startside" msgid "Pin to Home" msgstr "Fêstsette op startside" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Fêstmeitsje oan dyn profyl" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Fêstset" @@ -5718,7 +6133,7 @@ msgstr "Fêstset" msgid "Pinned {0} to Home" msgstr "{0} fêstset op startside" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Fêstsette feeds" @@ -5726,38 +6141,38 @@ msgstr "Fêstsette feeds" msgid "Pinned to your feeds" msgstr "Fêstset oan dyn feeds" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Ofspylje" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "{0} ôfspylje" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Fideo ôfspylje" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Fideo ôfspylje" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Spilet of pauzearret de GIF" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Spilet of pauzearret de fideo" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Spilet de GIF ôf" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Spilet de fideo ôf" @@ -5765,12 +6180,16 @@ msgstr "Spilet de fideo ôf" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "Foegje alle belutsene ynhâldswarkôgingen foar de media dy’tsto pleatst ta." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "Kontrolearje dyn Postfek YN foar fierdere ynstruksjes. It kin efkes duorje eardat dit berjocht binnenkomt." + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Dyn handle kieze." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Kies dyn wachtwurd." @@ -5782,7 +6201,8 @@ msgstr "Klik op de keppeling yn it e-mailberjocht dat wy sakrekt ferstjoerd haww msgid "Please complete the verification captcha." msgstr "Fier de ferifikaasje-captcha yn." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Kontrolearje nochris oft jo jo e-mailadres korrekt ynfierd hawwe." @@ -5804,6 +6224,7 @@ msgstr "Fier in unike namme yn foar dit app-wachtwurd of brûk ús willekeurich msgid "Please enter a valid code." msgstr "Fier in falide koade yn." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "Fier in falide e-mailadres yn." @@ -5812,7 +6233,11 @@ msgstr "Fier in falide e-mailadres yn." msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Fier in jildich wurd, tag of wurdgroep yn om te negearjen" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "Fier in jildich, net-tydlik e-mailadres yn. Mooglik moetsto dit e-mailadres yn de takomst brûke." + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "Fier hjirûnder de koade dy’t wy nei <0>{0} ferstjoerd hawwe yn." @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "Fier de befeiligingskoade dy’t wy nei dyn foarige e-mailadres ferstjoerd hawwe yn." #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Fier dyn e-mailadres yn." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Fier dyn útnûgingskoade yn." @@ -5853,6 +6278,19 @@ msgstr "Lis út wêromsto tinkst dat dit label net krekt tapast is troch {0}" msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Lis út wêromsto tinkst dat dyn chats ûnrjochtlik útskeakele binne" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "Gean werom of aktivearje dit elemint om werom te kearen nei de start fan de aktive ynhâld." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "Jou alle oanfoljende gegevens op wêrfan do tinkst dat de moderators dizze nedich hawwe, om dyn leeftiidsferifikaasjestatus goed beoardiele te kinnen." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "Selektearje in taal" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "Selektearje in moderaasjetsjinst" @@ -5870,9 +6308,9 @@ msgstr "Meld dy oan as @{0}" msgid "Please verify your email" msgstr "Ferifiearje dyn e-mailadres" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Ferifiearje dyn e-mailadres" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "Skriuw hjirûnder dyn berjocht:" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Polityk" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Pleatse" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Berjocht" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Pleatse" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Alles pleatse" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "Berjocht blokkearre" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Berjocht fan {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Berjocht fan @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Berjocht fuortsmiten" @@ -5919,11 +6362,14 @@ msgstr "Berjocht fuortsmiten" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Berjocht kin net opladen wurde. Kontrolearje dyn ynternetferbining en probearje it opnij." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "Berjocht is fuortsmiten" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Berjocht ferstoppe" @@ -5937,11 +6383,11 @@ msgstr "Berjocht ferstoppe troch negearre wurd" msgid "Post Hidden by You" msgstr "Berjocht troch dy ferstoppe" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Ynstellingen foar berjochtynteraksje" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Ynstellingen foar berjochtynteraksje" @@ -5954,8 +6400,10 @@ msgstr "Taal fan it berjocht" msgid "Post Languages" msgstr "Talen fan it berjocht" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Berjocht net fûn" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Berjocht losmakke" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Berjochten" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Berjochten kinne negearre wurde op basis fan tekst, tags of beide. Wy riede oan om faak foarkommende wurden dy’t yn in protte berjochten foarkomme te mijen, omdat dit der ta liede kin dat der gjin berjochten mear toand wurde." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Berjocht ferstoppe" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "Berjochten, antwurden" + +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" msgstr "Mooglik misliedende keppeling" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Foarkar bewarre" +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "Warskôging mooglik misliedende keppeling" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Druk om opnij ferbining te meitsjen" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Druk om opnij te probearjen" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Druk om de folgers fan dizze account te besjen dy’tsto ek folgest" @@ -6015,40 +6469,46 @@ msgstr "Foarige ôfbylding" msgid "Primary Language" msgstr "Primêre taal" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Prioriteit oan dyn folgers jaan" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Prioriteitsmeldingen" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Privacy" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Privacy en befeiliging" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacy en befeiliging" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "Privacy- en befeiligingsystellingen" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Privacybelied" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Fideo ferwurkje…" @@ -6062,15 +6522,14 @@ msgstr "Ferwurkje…" msgid "profile" msgstr "profyl" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Profyl" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Profyl bywurke" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Iepenbiere, dielbere listen dy’t brûkt wurde kinne om reklame te meitsjen." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "Berjocht pleatse" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "Berjochten pleatse" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "Antwurden publisearje" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "Antwurd publisearje" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "Push" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "Pushmeldingen" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "Push, elkenien" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "Push, minsken dy’tsto folgest" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "QR-koade nei dyn klamboerd kopiearre!" @@ -6119,44 +6594,52 @@ msgstr "QR-koade is download!" msgid "QR code saved to your camera roll!" msgstr "QR-koade bewarre yn dyn fotobiblioteek!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "Sitaatmeldingen" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Berjocht sitearje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "Sitaatberjocht is opnij tafoege" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "Sitaatberjocht is mei sukses losmakke" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Sitaatberjochten útskeakele" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Sitaatynstellingen" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Sitaten" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Sitaten fan dit berjocht" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "In ferskaat (ek bekend as ‘Berjochterûlette’)" @@ -6164,8 +6647,8 @@ msgstr "In ferskaat (ek bekend as ‘Berjochterûlette’)" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Oer de snelheidslimyt – do hast yn koarte tiid te faak probearre dyn handle te wizigjen. Wachtsje in minút eardatsto it opnij probearrest." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Sitaat opnij tafoegje" @@ -6177,30 +6660,42 @@ msgstr "Mei {emoji} reagearje" msgid "Reactivate your account" msgstr "Dyn account opnij aktivearje" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "Lês noch {0} {1, plural, one {reaksje} other {reaksjes}}" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Blogartikel lêze" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Minder ynfo" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Mear ynfo" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "Mear reaksjes lêze" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "Lês ús blogberjocht" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Lês it Bluesky-blog" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Lês it Bluesky-privacybelied" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Lês de Bluesky-tsjinstbetingsten" @@ -6213,6 +6708,14 @@ msgstr "Reden fan berop" msgid "Reason:" msgstr "Reden:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "Yn-app-meldingen ûntfange" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "Pushmeldingen ûntfange" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Resinte sykopdrachten" @@ -6234,8 +6737,8 @@ msgstr "Ofwize" msgid "Reject chat request" msgstr "Chatfersyk ôfwize" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Petearen opnij lade" @@ -6244,10 +6747,9 @@ msgstr "Petearen opnij lade" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Fuortsmite" @@ -6259,17 +6761,17 @@ msgstr "{displayName} út startpakket fuortsmite" msgid "Remove {historyItem}" msgstr "{historyItem} fuortsmite" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Account fuortsmite" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Bylage fuortsmite" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Avatar fuortsmite" @@ -6284,24 +6786,22 @@ msgstr "Ynlsluting fuortsmite" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Feed fuortsmite" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Feed fuortsmite?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Ut myn feeds fuortsmite" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Ut flugge tagong fuortsmite?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "Ut bewarre feeds fuortsmite" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "Ut myn feeds fuortsmite?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Ofbylding fuortsmite" @@ -6332,12 +6831,8 @@ msgstr "In negearre wurd út dyn list fuortsmite" msgid "Remove profile" msgstr "Profyl fuortsmite" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Sitaat fuortsmite" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Opnij-pleatsing fuortsmite" @@ -6345,7 +6840,7 @@ msgstr "Opnij-pleatsing fuortsmite" msgid "Remove subtitle file" msgstr "Undertitelbestân fuortsmite" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Dizze feed út dyn bewarre feeds fuortsmite" @@ -6364,11 +6859,11 @@ msgstr "Ferifikaasje fuortsmite" msgid "Remove your verification for this account?" msgstr "Dyn ferifikaasje foar dizze account fuortsmite?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Troch auteur fuortsmiten" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Troch dy fuortsmiten" @@ -6377,10 +6872,6 @@ msgstr "Troch dy fuortsmiten" msgid "Removed from list" msgstr "Ut list fuortsmiten" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Ut myn feeds fuortsmiten" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Ut myn bewarre feeds fuortsmiten" @@ -6395,34 +6886,36 @@ msgstr "Ut myn feeds fuortsmiten" msgid "Removed verification" msgstr "Ferifikaasje fuortsmiten" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Smyt sitearre berjocht fuort" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Ferfange troch Untdekke" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Antwurden" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Antwurden útskeakele" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Antwurden op dit berjocht binne útskeakele." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Reagearje" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Beäntwurdzje ({0, plural, one {# antwurd} other {# antwurden}})" @@ -6436,50 +6929,55 @@ msgstr "Reaksje ferstoppe troch auteur fan petear" msgid "Reply Hidden by You" msgstr "Reaksje ferstoppe troch dy" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "Meldingen fan reaksjes" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Reaksjeynstellingen" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "Reaksjeynstellingen wurde keazen troch de auteur fan it petear" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Reaksjsortearring" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Reagearje op <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Reagearje op in blokkearre berjocht" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Reagearje op in berjocht" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Reagearje op dy" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Sichtberheid fan reaksje bywurke" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Reaksje is mei sukses ferstoppe" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Feed melde" msgid "Report list" msgstr "List melde" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Priveeberjocht melde" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Berjocht melde" @@ -6567,25 +7065,26 @@ msgstr "Dit startpakket melde" msgid "Report this user" msgstr "Dizze brûker melde" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Opnij pleatse" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Opnij pleatse" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Opnij pleatse ({0, plural, one {# werpleatsing} other {# werpleatsingen}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "Meldingen fan opnij-pleatsingen" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Opnij pleatse of berjocht sitearje" @@ -6594,35 +7093,47 @@ msgstr "Opnij pleatse of berjocht sitearje" msgid "Reposted By" msgstr "Opnij pleatst troch" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Opnij pleatst troch {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Opnij pleatst troch <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Opnij pleatst troch dy" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "Opnij-pleatsingen" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Opnij-pleatsingen fan dit berjocht" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "Wiziging oanfreegje" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "Opnij-pleatsingen fan dyn opnij-pleatsingen" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "Meldingen oer opnij-pleatsingen fan dyn opnij-pleatsingen" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "Koade oanfreegje" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Alt-tekst fereaskje foar it pleatsen" @@ -6630,7 +7141,7 @@ msgstr "Alt-tekst fereaskje foar it pleatsen" msgid "Require an email code to sign in to your account." msgstr "In e-mailkoade is nedig om dy oan te melden by dyn account." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Fereaske foar dizze provider" @@ -6642,10 +7153,6 @@ msgstr "Fereaske yn dyn regio" msgid "Resend" msgstr "Opnij ferstjoere" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "E-mailberocht opnij ferstjoere" msgid "Resend Verification Email" msgstr "Ferifikaasje-e-mailberocht opnij ferstjoere" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "Aktiviteitstawizing foar abonnemint opnij ynstelle" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Koade opnij ynstelle" @@ -6667,8 +7180,8 @@ msgstr "Koade opnij ynstelle" msgid "Reset Code" msgstr "Koade opnij ynstelle" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Yntroduksje-status opnij ynstelle" @@ -6687,21 +7200,23 @@ msgstr "Werhellet de lêste aksje, dêr’t in flater by barde" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Opnij probearje" @@ -6721,19 +7236,19 @@ msgstr "Tebek nei de startside" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Tebek nei de foarige side" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Tebek nei de foarige stap" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Tebek nei de foarige stap" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Bewarje" @@ -6762,15 +7276,13 @@ msgstr "Bewarje" msgid "Save birthday" msgstr "Jierdei bewarje" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Wizigingen bewarje" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Wizigingen bewarje" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "QR-koade bewarje" msgid "Save to my feeds" msgstr "Yn myn feeds bewarje" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Feeds bewarje" @@ -6802,18 +7314,14 @@ msgstr "Feeds bewarje" msgid "Saved to your feeds" msgstr "Bewarre yn dyn feeds" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Alle wizigingen fan dyn profyl bewarje" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Bewarret ynstellingen foar bysnijen fan ôfbyldingen" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Sis hallo!" @@ -6826,16 +7334,16 @@ msgstr "Wittenskip" msgid "Scroll to top" msgstr "Nei boppe" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Sykje" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Berjochten fan @{0} trochsykje" @@ -6861,7 +7369,7 @@ msgstr "Sykje nei ‘{query}’" msgid "Search for \"{searchText}\"" msgstr "Sykje nei ‘{searchText}’" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Sykje nei feeds dy’tsto oan oaren foarstelle wolst." @@ -6877,10 +7385,14 @@ msgstr "Nei mear feeds sykje" msgid "Search for posts, users, or feeds" msgstr "Berjochten, brûkers of feeds sykje" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "GIF’s sykje" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "Sykjen is op dit stuit net beskikber wannear ôfmeld" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Myn berjochten trochsykje" @@ -6890,12 +7402,12 @@ msgstr "Myn berjochten trochsykje" msgid "Search posts" msgstr "Berjochten trochsykje" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Profilen sykje" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Sykje op Tenor" @@ -6903,7 +7415,7 @@ msgstr "Sykje op Tenor" msgid "Search..." msgstr "Sykje…" -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Siket nei profilen" @@ -6912,10 +7424,6 @@ msgstr "Siket nei profilen" msgid "Security step required" msgstr "Befeiligingsstap fereaske" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Befeiligingsstap fereaske" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "{tag}-berjochten besjen" @@ -6936,14 +7444,31 @@ msgstr "#{tag}-berjochten fan brûker besjen" msgid "See jobs at Bluesky" msgstr "Fakatueres by Bluesky bejen" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "Mear toane" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "Meer accounts tonen die je misschien leuk vindt" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "Mear foarstelde profilen op de side Untdekke toane" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Besjoch dizze gids" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Sykslider. Brûk de pylktoetsen om foarút en efterút te sykjen en spaasje om ôf te spyljen/pauzearjen" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "Selektearje {0}" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "In kleur selektearje" @@ -6988,7 +7513,7 @@ msgstr "Fan in besteand account selektearje" msgid "Select GIF" msgstr "GIF selektearje" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "GIF ‘{0}’ selektearje" @@ -6996,6 +7521,11 @@ msgstr "GIF ‘{0}’ selektearje" msgid "Select how long to mute this word for." msgstr "Selektearje hoe lang asto dit wurd negearje wolst." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "Taal selektearje" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Taal selektearje…" @@ -7004,7 +7534,7 @@ msgstr "Taal selektearje…" msgid "Select languages" msgstr "Taal selektearje" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "Moderaasjetsjinst selektearje" @@ -7045,12 +7575,12 @@ msgstr "Selektearje de taal dy’t brûkt wurde moat foar de brûkersinterface f msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Selektearje hokker talen asto opnimme wolst yn dyn abonnearre feeds. Alle talen wurde werjûn as der gjin talen selektearre binne." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Dyn bertedatum selektearje" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Selektearje dyn ynteressen út de ûndersteande opsjes" @@ -7058,7 +7588,11 @@ msgstr "Selektearje dyn ynteressen út de ûndersteande opsjes" msgid "Select your preferred language for translations in your feed." msgstr "Selektearje de taal wêryn’tsto de oersettingen yn dyn feed werjaan wolst." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "Selektearje dyn winske meldingskanalen" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "Selektearret opsje {0} fan {numItems}" @@ -7066,17 +7600,9 @@ msgstr "Selektearret opsje {0} fan {numItems}" msgid "Send a neat website!" msgstr "Stjoer in kreaze website!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "Befêstiging ferstjoere" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Befêstigings-emailberjocht ferstjoere" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "E-mailberocht ferstjoere" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "E-mailberocht ferstjoere" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Feedback ferstjoere" @@ -7095,7 +7621,7 @@ msgstr "Feedback ferstjoere" msgid "Send message" msgstr "Berjocht ferstjoere" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "Berjocht nei {name} ferstjoere" @@ -7114,20 +7640,20 @@ msgstr "Melding ferstjoere" msgid "Send report to {0}" msgstr "Melding nei {0} ferstjoere" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "Melding nei {title} ferstjoere" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Ferifikaasje-e-mailberjocht ferstjoere" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "As priveeberjocht ferstjoere" @@ -7143,7 +7669,7 @@ msgstr "Serveradres" msgid "Set app icon to {0}" msgstr "App-piktogram ynstelle op {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Bertedatum ynstelle" @@ -7159,13 +7685,57 @@ msgstr "Dyn account ynstelle" msgid "Sets email for password reset" msgstr "Stelt e-mail yn foar it opnij ynstellen fan wachtwurden" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Ynstellingen" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "Ynstellingen foar aktiviteit fan oaren" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "Ynstellingen foar tastimming om oaren op de hichte te stellen fan dyn berjochten" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "Ynstellingen foar mei-’k-wol-oer-meldingen" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "Ynstellingen foar fermeldingsmeldingen" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "Ynstellingen foar nije-folgersmeldingen" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "Ynstellingen foar meldingen fan al it oare" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "Ynstellingen foar meldingen fan mei-’k-wol-oers fan dyn opnij-pleatsingen" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "Ynstellingen foar meldingen fan opnij-pleatsingen fan dyn opnij-pleatsingen" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "Ynstellingen foar sitaatmeldingen" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "Ynstellingen foar antwurdmeldingen" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "Ynstellingen foar meldingen fan opnij-pleatsingen" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "In aardich ferhaal diele!" msgid "Share a fun fact!" msgstr "In aardichheidsje diele!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Dochs diele" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "Auteurs-DID diele" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Keppeling diele" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Keppeling diele" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Keppelingdialooch diele" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "Berjocht at:// URI diele" @@ -7247,8 +7812,8 @@ msgstr "Dit startpakket diele" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Diel dit startpakket en help minsken lid te wurden fan dyn mienskip op Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "Diele fia…" msgid "Share your favorite feed!" msgstr "Dyn favorite feed diele!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Dielde foarkarren-tester" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Dielt de keppele website" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Toane" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Alt-tekst toane" @@ -7303,8 +7864,8 @@ msgstr "Oanpassingsopsjes toane" msgid "Show hidden replies" msgstr "Ferstoppe reaksjes toane" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Minder hjirfan toane" @@ -7312,55 +7873,63 @@ msgstr "Minder hjirfan toane" msgid "Show list anyway" msgstr "List dochs toane" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Mear toane" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Mear hjirfan toane" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "Mear reaksjes toane" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Negearre reaksjes toane" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "Petearreaksjes yn konversaasjebyld toane" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Sitaatberjochten toane" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Antwurden toane" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Antwurden toane as" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Antwurden as petear toane" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Antwurden fan minsken dy’tsto folgest foar alle oare antwurden toane" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Reaksje foar elkenien toane" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Opnij-pleatsingen toane" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Foarbylden fan dyn bewarre feeds yn dyn Following-feed toane" @@ -7372,16 +7941,17 @@ msgstr "Warskôging toane" msgid "Show warning and filter from feeds" msgstr "Warskôging en filter út feeds toane" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Toant ynformaasje oer wannear’t dit bejoicht oanmakke is" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "Toant oare accounts wêrneisto wikselje kinst" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Toant de ynhâld" @@ -7390,14 +7960,15 @@ msgstr "Toant de ynhâld" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "Oanmelde by in account dat net yn de list stiet" msgid "Sign in to Bluesky or create a new account" msgstr "Meld dy oan by Bluesky of meitsje in nij account" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "Meld dy oan om berjocht te besjen" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Ofmelde" @@ -7444,8 +8020,8 @@ msgstr "Ofmelde" msgid "Sign Out" msgstr "Ofmelde" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Ofmelde?" @@ -7459,12 +8035,12 @@ msgstr "Oanmelden fereaske" msgid "Signed in as @{0}" msgstr "Oanmeld as @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Fergelykbere accounts" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Oerslaan" @@ -7472,12 +8048,11 @@ msgstr "Oerslaan" msgid "Skip this flow" msgstr "Dizze flow oerslaan" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Lytser" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "Snûzet it omtinken" @@ -7490,11 +8065,11 @@ msgstr "Softwareûntwikkeler" msgid "Some of your verifications are invalid." msgstr "Guon fan dyn ferifikaasjes binne ûnjildich." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Inkelde oare feeds dêr’tsto miskien wol oer meist" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Guon minsken kinne reagearje" @@ -7510,10 +8085,11 @@ msgstr "Ien hat mei {0} reagearre op {1}" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "Der is wat net hielendal krekt mei de gegevens dy’tsto probearrest te melden. Nim kontakt op mei stipe." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Der is wat misgien" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Der is wat misgien, probearje it nochris" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Der is wat misgien, probearje it nochris." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Der is wat misgien!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "Der is wat misgien. Probearje it oer in amerijke nochris." + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "Der is wat misgien. Probearje it nochris." @@ -7539,20 +8118,23 @@ msgstr "Der is wat misgien. Probearje it nochris." msgid "Something wrong? Let us know." msgstr "Klopt er wat net? Lit it ús witte." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "Sorry, dyn sesje is ferrûn. Meld dy opnij oan." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Reaksjes sortearje" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Reaksjes sortearje op" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Reaksjes op itselde berjocht sortearje op:" @@ -7579,7 +8161,7 @@ msgstr "Spam; oermjittich protte fermeldingen of reaksjes" msgid "Sports" msgstr "Sport" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "Start in petear, en it sil hjir ferskine." @@ -7601,9 +8183,9 @@ msgstr "Begjin mei minsken ta te foegjen!" msgid "Start chat with {displayName}" msgstr "Chat starte mei {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Startpakket" @@ -7611,12 +8193,12 @@ msgstr "Startpakket" msgid "Starter pack by {0}" msgstr "Startpakket troch {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Startpakket troch <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Startpakket troch dy" @@ -7638,19 +8220,21 @@ msgstr "Mei startpakketten kinsto ienfâldich dyn favorite feeds en persoanen me msgid "Status Page" msgstr "Statusside" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Stap {0} fan {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Unthâld wiske, do moatst de app no opnij opstarte." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Ferhaleboek" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Beswier yntsjinje" msgid "Submit Appeal" msgstr "Beswier yntsjinje" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "Melding yntsjinje" @@ -7676,10 +8260,14 @@ msgstr "Melding yntsjinje" msgid "Subscribe" msgstr "Abonnearje" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Abonnearje dy op @{0} om dizze labels te brûken:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "Abonnearje op accountaktiviteit" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Abonnearje op labeler" @@ -7692,8 +8280,12 @@ msgstr "Abonnearje op dizze labeler" msgid "Subscribe to this list" msgstr "Abonnearje op dizze list" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "Slagge" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Slagge!" @@ -7705,7 +8297,7 @@ msgstr "Mei sukses ferifiearre" msgid "Suggested Accounts" msgstr "Foarstelde accounts" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Foarsteld foar dy" @@ -7714,26 +8306,26 @@ msgstr "Foarsteld foar dy" msgid "Suggestive" msgstr "Suggestyf" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Sinneopgong" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Sinneûndergong" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Stipe" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Fan account wikselje" @@ -7742,24 +8334,24 @@ msgstr "Fan account wikselje" msgid "Switch Account" msgstr "Fan account wikselje" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Fan accounts wikselje" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "Wikselje nei {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Systeem" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Systeemlochboek" @@ -7767,6 +8359,18 @@ msgstr "Systeemlochboek" msgid "Tags only" msgstr "Allinnich tags" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "Tik foar ynformaasje" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "Tik foar mear ynformaasje" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "Tik om te erkennen datsto dizze updates begrypst en dermei akkoard giest en trochgiest mei it gebrûk fan Bluesky" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Fertel ús wat mear" msgid "Terms" msgstr "Betingsten" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Tsjinstbetingsten" @@ -7848,10 +8454,6 @@ msgstr "Tekstynfierfjild" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "Dank foar dyn kommentaar! It is nei de feedbehearder stjoerd." -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Tank! Dyn e-mailadres is mei sukes ferifiearre." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Tank. Dyn melding is ferstjoerd." @@ -7864,28 +8466,28 @@ msgstr "Tank, do hast dyn e-mailadres mei sukses ferifiearre. Do kinst dit dialo msgid "That contains the following:" msgstr "Dat it folgjende befettet:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Dy handle is al yn gebrûk." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Dat startpakket kin net fûn wurde." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "Dy brûkersnamme is al yn gebrûk" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Dat is alles minsken!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "Dat wie alles!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "De account kin nei it deblokkearjen mei dy kommunisearje." @@ -7900,7 +8502,7 @@ msgstr "De app wurdt opnij opstart" msgid "The author of this thread has hidden this reply." msgstr "De auteur fan dit petear hat dizze reaksje ferstoppe." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "De Bluesky-webapplikaasje" @@ -7920,10 +8522,6 @@ msgstr "De Untdekke-feed" msgid "The Discover feed now knows what you like" msgstr "De Untdekke-feed wit no wêr’tsto wol oer meist" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "It e-mailadres datsto ynfierd hast is itselde as dyn aktuele e-mailadres." - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "De ûnderfining is better yn de app. Download Bluesky no en wy pakke it op dêr’tsto bleaun wiest." @@ -7944,8 +8542,16 @@ msgstr "De folgjende labels binne op dyn ynhâld tapast." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "De folgjende ynstellingen wurde brûkt as standert by it meitsjen fan nije berjochten. Do kinst dizze foar in spesifyk berjocht út it opstelfinster bewurkje." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "De wetten op dyn lokaasje fereaske datsto dy as folwoeksene ferifiearst, eardatsto tagong krijst ta bepaalde funksjes op Bluesky, lykas ynhâld faor folwoeksenen en direkte berjochten." + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "De wetten op dyn lokaasje fereaske datsto dy as folwoeksene ferifiearst, om tagong te krijen ta bepaalde funksjes. Tik foar mear ynfo." + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "It berjocht is mooglik fuortsmiten." @@ -7953,9 +8559,10 @@ msgstr "It berjocht is mooglik fuortsmiten." msgid "The Privacy Policy has been moved to <0/>" msgstr "It privacybelied is ferpleatst nei <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "De selektearre fideo is grutter as 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "De selektearre fideo is grutter as 100 MB. Probearje it opnij mei in lytser bestân." #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "De Tsjinstbetingsten binne ferpleatst nei" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "De ferifikaasjekoade dy’tsto opjûn hast is ûnjildich. Kontrolearje oftsto de krekte ferifikaasjekeppeling brûkt hast of freegje in nije oan." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Tema" @@ -7990,14 +8597,14 @@ msgstr "Tema" msgid "There is no time limit for account deactivation, come back any time." msgstr "Der is gjin tiidslimyt foar it de-aktivearjen fan de account; do kinst op elk momint weromkomme." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Der is in probleem bard by it ferbinen mei Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Der is in probleem bard by it ferbinen mei de server" @@ -8006,17 +8613,12 @@ msgstr "Der is in probleem bard by it ferbinen mei de server" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Der is in probleem bard by it ferbinen mei de server. Kontrolearje dyn ynternetferbining en probearje it opnij." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Der is in probleem bard by it ferbinen mei dyn server" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Der is in probleem bard by it opheljen fan meldingen. Tik hjir om it opnij te probearjen." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Der is in probleem bard by it opheljen fan berjochten. Tik hjir om it opnij te probearjen." @@ -8037,7 +8639,7 @@ msgstr "Der is in probleem bard by it opheljen fan dyn list. Tik hjir om it opni msgid "There was an issue fetching your service info" msgstr "Der is in probleem bard by it opheljen fan dyn tsjinstgegevens" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Der is in probleem bard by it fuortsmiten fan dizze feed. Kontrolearje dyn ynternetferbining en probearje it opnij." @@ -8052,9 +8654,9 @@ msgstr "Der is in probleem bard by it ferstjoeren fan dyn melding. Kontrolearje msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Der is in probleem bard by it bywurkjen fan dyn feeds. Kontrolearje dyn ynternetferbining en probearje it opnij." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Der is in probleem bard by it bywurkjen fan dyn feeds. Kontrolearje dyn msgid "There was an issue! {0}" msgstr "Der is in probleem bard! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Der is in probleem bard! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Der is in probleem bard. Kontrolearje dyn ynternetferbining en probearje it opnij." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Der is in ûnferwacht probleem bard yn de applikaasje. Lit it ús witte as dit by dy bard is!" @@ -8089,7 +8691,7 @@ msgstr "Der is in ûnferwacht probleem bard yn de applikaasje. Lit it ús witte msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Der is in grutte oanrin fan nije brûkers nei Bluesky! Wy aktivearje dyn account sa gau as mooglik." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Dizze ynstellingen binne allinnich fan tapassing op de folgjende feed." @@ -8146,7 +8748,7 @@ msgstr "Dizze ynhâld wurdt host troch {0}. Wolsto eksterne media ynskeakelje?" msgid "This content is not available because one of the users involved has blocked the other." msgstr "Dizze ynhâld is net beskikber, omdat ien fan de belutsene brûkers de oare blokkearre hat." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Dizze ynhâld is net sichtber sûnder in Bluesky-account." @@ -8158,6 +8760,10 @@ msgstr "Dit petear is mei in fuortsmiten of de-aktivearre account. Druk foar ops msgid "This email is already associated with your account." msgstr "Dit e-maialdres is al mei dyn account assosjearre." +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "Mei dizze funksje kinne brûkers meldingen ûntfange foar dyn nije berjochten en antwurden. Foar wa wolsto dit ynskeakelje?" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Dizze funksje is yn bèta. Do kinst mear lêze oer repository-eksporten yn <0>dit blogberjocht." @@ -8170,7 +8776,7 @@ msgstr "Dizze funksje is net beskikber by gebrûk fan in app-wachtwurd. Meld dy msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Dizze funksje is net beskikber by gebrûk fan in app-wachtwurd. Meld dy oan mei dyn haadwachtwurd." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Dizze feed ûntvangt op dit stuit in protte ferkear en is tydlik net beskikber. Probearje it letter opnij." @@ -8209,11 +8815,11 @@ msgstr "Dit label is oanbrocht troch de auteur." msgid "This label was applied by you." msgstr "Dit label is oanbrocht troch dy." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Dizze labeler hat net oanjûn hokker labels hy publisearret en is mooglik net aktyf." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Dizze keppeling bringt dy nei de folgjende website:" @@ -8233,29 +8839,28 @@ msgstr "Dizze list is leech." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Dizze moderaasjetsjinst is net beskikber. Sjoch hjirûnder foar mear details. Nim kontakt mei ús op as dit probleem bliuwt." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Dit berjocht beweart makke te wêzen op <0>{0}, mar waard foar it earst sjoen troch Bluesky op <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Der sit in ûnbekend type reaksjebeheining op dit berjocht. Mooglik is dyn app ferâldere." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Dit berjocht is fuortsmiten." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Dit bericht is allinnich sichtber foar oanmelde brûkers. It is net sichtber foar minsken dy’t net oanmeld binne." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "Dit berjocht is allinnich sichtber foar oanmelde brûkers." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Dit berjocht wurdt ferstoppe foar feeds en petearen. Dit kin net ûngedien makke wurde." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "De auteur fan dit berjocht hat it pleatsen fan sitaten útskeakele." @@ -8263,11 +8868,11 @@ msgstr "De auteur fan dit berjocht hat it pleatsen fan sitaten útskeakele." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Dit profyl is allinnich sichtber foar oanmelde brûkers. It is net sichtber foar minsken dy’t net oanmeld binne." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Dizze reaksje wurdt sortearre yn in ferstoppe seksje ûnderoan it petear en negearret meldingen foar folgjende reaksjes – sawol foar dy as foar oaren." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Dizze tsjinst hat gjin tsjinstbetingsten of in privacybelied." @@ -8275,6 +8880,10 @@ msgstr "Dizze tsjinst hat gjin tsjinstbetingsten of in privacybelied." msgid "This should create a domain record at:" msgstr "Dit soe in domeinrecord oanmeitsje moatte op:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "Dit soe mar in pear minuten duorje moatte." + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Dizze brûker hat gjin werjeftenamme en kin dertroch net ferifiearre wurde." @@ -8316,16 +8925,18 @@ msgstr "Dizze brûker folget net ien." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Hjirmei wurdt ‘{0}’ út dyn negearre wurden fuortsmiten. Do kinst it letter altyd wer tafoegje." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Hjirmei wurdt @{0} fuortsmiten út de flugge tagongslist." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Hjirmei wurdt dyn berjocht foar alle brûkers út it sitaat fuortsmiten en ferfongen troch in plakhâlder." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Konversaasje-opsjes" @@ -8334,24 +8945,27 @@ msgstr "Konversaasje-opsjes" msgid "Thread preferences" msgstr "Petearfoarkarren" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Petearfoarkarren" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "As petear" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Petearmodus" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Petearfoarkarren" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "Restearjende tiid: {0, plural, one {# sekonde} other {# sekonden}}" @@ -8376,42 +8990,56 @@ msgstr "Oan wa wolsto dizze melding stjoere?" msgid "Today" msgstr "Hjoed" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Menu toane/ferstopje" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Wikselje om ynhâld foar folwoeksenen yn of út te skeakeljen" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Set it lûd oan of út" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Populêr" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "Populêre reaksjes earst" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Underwerp" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Oersette" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "Konversaasjebyld" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Populêr" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Populêre fideo’s" @@ -8428,14 +9056,10 @@ msgstr "Probearje opnij" msgid "TV" msgstr "TV" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Twafaktorautentikaasje (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Fier dyn winske brûkersnamme yn" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Typ hjir dyn priveebericht" @@ -8453,7 +9077,7 @@ msgstr "Kin gjin ferbinding meitsje. Kontrolearje dyn ynternetferbining en probe #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Kin gjin kontakt meitsje mei dyn tsjinst. Kontrolearje dyn ynternetferbi msgid "Unable to delete" msgstr "Kin net fuortsmite" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "Pull-fersyk net mear tapasse" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "Pull-fersyk net mear tapasse {currentChannel}" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "Net beskikber" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "Feedynformaasje net beskikber" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Deblokkearje" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Deblokkearje" @@ -8486,7 +9126,7 @@ msgstr "Deblokkearje" msgid "Unblock account" msgstr "Account deblokkearje" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Account deblokkearje?" @@ -8495,13 +9135,13 @@ msgstr "Account deblokkearje?" msgid "Unblock list" msgstr "List deblokkearje" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Opnij pleatsen ûngedien meitsje" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Opnij pleatsen ûngedien meitsje ({0, plural, one {# opnijpleatsing} other {# opnijpleatsingen}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Untfolgje" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "{0} ûntfolgje" @@ -8523,7 +9163,7 @@ msgstr "Account ûntfolgje" msgid "Unfollows the user" msgstr "Untfolget de brûker" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Spitigernôch stipet gjin fan dyn abonnearre labelers dit rapporttype." @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "Mei ’k net mear oer" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Mei ik net mear oer ({0, plural, one {# mei-’k-net-mear-oer} other {# mei-’k-net-mear-oers}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Net mear negearje" @@ -8555,8 +9195,8 @@ msgstr "Net mear negearje" msgid "Unmute {tag}" msgstr "{tag} net mear negearje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Petear net mear negearje" msgid "Unmute list" msgstr "List net mear negearje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Petear net mear negearje" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Fideo net mear negearje" @@ -8597,8 +9237,8 @@ msgstr "Feed losmeitsje" msgid "Unpin from home" msgstr "Fan startside losmeitsje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Fan profyl losmeitsje" @@ -8614,8 +9254,8 @@ msgstr "{0} fan startside losmakke" msgid "Unpinned from your feeds" msgstr "Fan dyn feeds losmakke" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "E-mailomtinken aktyf meitsje" @@ -8636,7 +9276,7 @@ msgstr "Fan dizze labeler ôfmelde" msgid "Unsubscribed from list" msgstr "Fan lis ôfmeld" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Net stipe type fideo" @@ -8662,8 +9302,8 @@ msgstr "<0>{displayName} yn listen bywurkje" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "E-mailadres bywurkje" @@ -8676,17 +9316,17 @@ msgstr "Bywurkje nei {domain}" msgid "Update your email" msgstr "Dyn e-mailadres bywurkje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Bywurkjen fan sitaatbylage is mislearre" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Bywurkjen fan sichtberheid fan reaksje is mislearre" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Bywurkje…" @@ -8698,20 +9338,20 @@ msgstr "Laad yn stee dêrfan in foto op" msgid "Upload a text file to:" msgstr "Laad in tekstbestân op nei:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Fan kamera ôf oplade" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Fan bestannen út oplade" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Fan bibloteek út oplade" msgid "Uploading images..." msgstr "Ofbyldingen oplade…" -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Keppelingminiatuer oplade…" -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Fideo oplade…" @@ -8761,6 +9401,10 @@ msgstr "Oanrekommandearre brûke" msgid "Use this to sign in to the other app along with your handle." msgstr "Brûk dit om dy tegearre mei dyn handle oan te melden by de oare app." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "Brûk it e-mailadres fan dyn account, of in oar echt e-mailadres datsto hast, yn it gefal dat KWS of Bluesky kontakt mei dy opnimme wol." + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Brûkt troch:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Brûkerslist bywurke" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "Brûkersnamme mei net langer as {MAX_SERVICE_HANDLE_LENGTH, plural, one {}other {# tekens}} wêze" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "Brûkersnamme mei net mei in keppelteken begjinne of einigje" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "Brûkersnamme mei allinnich letters (a-z), sifers en keppeltekens befetsje" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Brûkersnamme of e-mailadres" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "brûkers folge troch <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "brûkers dy’t <0>@{0} folgje" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Brûkers dy’t ik folgje" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Brûkers yn ‘{0}’" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Brûkers dy’tsto folgest" @@ -8846,11 +9502,11 @@ msgstr "Wearde:" msgid "Verification failed, please try again." msgstr "Ferifikaasje mislearre, probearje it opnij." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "Ferifikaasjeynstellingen" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "Ferifikaasjeynstellingen" @@ -8870,8 +9526,15 @@ msgstr "Ferifiearre troch:" msgid "Verify account" msgstr "Account ferifiearje" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "Opnij ferifiearje" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "Koade ferifiearje" @@ -8880,21 +9543,20 @@ msgstr "Koade ferifiearje" msgid "Verify DNS Record" msgstr "DNS-record ferifiearje" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "E-mailadres ferifiearje" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "E-mailkoade ferifiearje" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Dialoochfinster E-mailadres ferifiearje" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "No ferifiearje" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Tekstbestân ferifiearje" msgid "Verify this account?" msgstr "Dizze account ferifiearje?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "Dyn leeftiid ferifiearje" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Ferifiearje dyn e-mailadres" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Ferifiearje dyn e-mailadres" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "Ferifiearje" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "Status fan leeftiidsferifikaasje" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Ferzje {appVersion}" +msgid "Version {0}" +msgstr "Ferzje {0}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Fideo" @@ -8928,7 +9598,7 @@ msgstr "Fideo" msgid "Video failed to process" msgstr "Fideo kin net ferwurke wurde" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Fideofeed" @@ -8942,15 +9612,15 @@ msgstr "Fideo fan {0}: {text}" msgid "Video Games" msgstr "Fideospultsjes" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Fideo is pauzearre" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Fideo spilet" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Fideo net fûn." @@ -8958,11 +9628,11 @@ msgstr "Fideo net fûn." msgid "Video settings" msgstr "Fideo-ynstellingen" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Fideo opladen" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Fideo: {0}" @@ -8979,11 +9649,11 @@ msgstr "Fideo’s moatte minder as 3 minuten lang wêze" msgid "View {0}'s avatar" msgstr "Avatar fan {0} besjen" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Profyl fan {0} besjen" @@ -8991,7 +9661,7 @@ msgstr "Profyl fan {0} besjen" msgid "View {displayName}'s profile" msgstr "Profyl fan {displayName} besjen" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Profyl fan blokkearre brûker besjen" @@ -9009,7 +9679,6 @@ msgstr "Debug-item besjen" msgid "View details" msgstr "Details besjen" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Details foar melden fan in auteursrjochtskeining besjen" @@ -9022,23 +9691,23 @@ msgstr "Folslein petear besjen" msgid "View information about these labels" msgstr "Ynformaasje oer dizze labels besjen" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Mear besjen" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Profyl besjen" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Avatar besjen" @@ -9054,28 +9723,28 @@ msgstr "Ferifikaasjes fan dizze account besjen" msgid "View users who like this feed" msgstr "Brûkers dy’t oer dizze feed meie besjen" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Fideo besjen" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Dyn blokkearre accounts besjen" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "Dyn standert ynstellingen foar ynteraksje-berjochten besjen" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Dyn feeds besjen en ûntdek mear" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Dyn moderaasjelisten besjen" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Dyn negearre accounts besjen" @@ -9083,8 +9752,8 @@ msgstr "Dyn negearre accounts besjen" msgid "View your verifications" msgstr "Dyn ferifikaasjes besjen" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Toant folsleine ôfbylding" @@ -9092,16 +9761,20 @@ msgstr "Toant folsleine ôfbylding" msgid "Views video in immersive mode" msgstr "Toant fideo yn folslein skerm" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "Website besjen" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "Website besykje" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "Besjoch dyn meldingsynstellingen" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Folume" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Warskôgje oer ynhâld en filterje út feeds" msgid "Watch now" msgstr "No besjen" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "Wy koene gjin ferbining meitsje mei de tsjinst dy’t de oanpaste feed leveret. It kin tydlik net beskikber wêze en problemen ûnderfine, of permanint net beskikber wêze." + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "Wy koene dizze list net fine. It is wierskynlik fuortsmiten." + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "Wy koene gjin resultaten fine foar dy hashtag." @@ -9128,7 +9809,7 @@ msgstr "Wy koene gjin resultaten fine foar dy hashtag." msgid "We couldn't find any results for that topic." msgstr "Wy koene gjin resultaten fine foar dit ûnderwerp." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Wy koene dit petear net lade" @@ -9136,6 +9817,10 @@ msgstr "Wy koene dit petear net lade" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Wy skatte {estimatedTime} oant dat dyn account klear is." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "Wy wurkje gear mei <0>KWS om te kontrolearjen oftsto in folwoeksene bist. Wannear’tsto hjirûnder op ‘Starte’ klikst, sil KWS kontrolearje oftsto earder dyn leeftiid ferifiearre hast mei help fan dit e-mailadres foar oare spultsjes/tsjinsten oandreaun troch KWS-technology. Sa net, dan sil KWS dy ynstruksjes maile om dyn leeftiid te ferifiearjen. Wannear’tsto klear bist, wurdsto werombrocht om Bluesky brûke te bliuwen." + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Wy hawwe in nije ferifikaasje-e-mailberjocht ferstjoerd nei <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "Wy hoopje datsto in geweldige tiid hast. Ferjit net, Bluesky is:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Wy hawwe gjin berjochten mear fan folge accounts. Hjir is it lêste nijs fan <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "Wy rekommandearje oan om op syn minst twa ynteressen te selektearjen." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Wy hawwe in e-mailberjocht nei <0>{0} mei in keppeling ferstjoerd. Klik derop om it e-mailferifikaasjeproses te foltôgjen." -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Wy hawwe net bepale kinnen oftsto fideo’s oplade meist. Probearj it opnij." @@ -9164,10 +9849,14 @@ msgstr "Wy hawwe net bepale kinnen oftsto fideo’s oplade meist. Probearj it op msgid "We were unable to load your birth date preferences. Please try again." msgstr "Wy kinne dyn bertedatumfoarkarren net lade. Probearje it opnij." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "Wy koene dyn konfigurearre labelers op dit stuit net lade." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "Wy koene troch in ferbiningsprobleem de ferifikaasje net ûntfange. It kin letter oankomme. As dit it gefal is, sil dyn account automatysk bywurke wurde." + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Wy koene gjin ferbining meitsje. Probearje it opnij om troch te gean mei it ynstellen fan dyn account. As it mislearren bliuwt, kinsto dizze stappen oerslaan." @@ -9176,7 +9865,7 @@ msgstr "Wy koene gjin ferbining meitsje. Probearje it opnij om troch te gean mei msgid "We will let you know when your account is ready." msgstr "Wy litte dy witte wannear’t dyn account klear is." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Wy stjoere in e-mailberjocht nei <0>{0} mei in keppeling. Klik derop om it e-mailferifikaasjeproses te foltôgjen." @@ -9184,6 +9873,22 @@ msgstr "Wy stjoere in e-mailberjocht nei <0>{0} mei in keppeling. Klik derop msgid "We'll use this to help customize your experience." msgstr "Wy brûke dizze ynformaasje om dyn ûnderfining te personalisearjen." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Wy wurkje ek ús <0>Mienskipsrjochtlinen by, en wy wolle dyn ynput! Dizze nije rjochtlinen sille fan krêft wurde op 15 oktober 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Wy wurkje ek ús Mienskipsrjochtlinen by, en wy wolle dyn ynput! Dizze nije rjochtlinen sille fan krêft wurde op 15 oktober 2025." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "Wy befêstigje de status fan dyn leeftiidsferifikaasje by ús servers. Dit duorret mar inkelde sekonden." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "Wy hawwe problemen mei it inisjalisearjen fan it leeftiidsbewiisproses foar dyn account. Nim <0>kontakt op mei stipe foar help." + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Der binne netwurkproblemen, probearje it opnij" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Wy yntrodusearje in nije ferifikaasjelaach op Bluesky – in iefâldich-te-sjen finkje." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Wy binne och sa bliid datsto by ús bist!" @@ -9205,15 +9910,15 @@ msgstr "It spyt ús, mar wy kinne dizze list net ophelje. Nim kontakt op mei de msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "It spyt ús, mar wy koene dyn negearre wurden op dit stuit net lade. Probearje it opnij." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "It spyt ús, mar dyn sykopdracht kin net foltôge wurde. Probearje it oer in pear minuten opnij." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "It spyt ús! It berjocht wêropsto reagearrest is fuortsmiten." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "It spyt ús! Wy kinne de side dy’tsto sochtst net fine." @@ -9222,6 +9927,26 @@ msgstr "It spyt ús! Wy kinne de side dy’tsto sochtst net fine." msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "It spyt ús! Do kinst dy mar op tweintich labelers abonnearje en do hast dizze limyt berikt." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "Wy wurkje ús <0>Gebrûksbetingsten, <1>Privacybelied en <2>Auteursrjochtbelied by, effektyf fan 15 septimber 2025 ôf." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "Wy wurkje ús belied by" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "Wy wurkje ús Gebrûksbetingsten, Privacybelied en Auteursrjochtbelied by, effektyf fan 15 septimber 2025 ôf." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Wy wurkje ús gebrûksbetingsten, privacybelied en it auteursrjochtbelied by op 15 septimber 2025. Wy wurkje ek ús Mienskipsrjochtlinen by en wy wolle dyn ynput! Dizze nije rjochtsnoeren sille fan krêft wurde op 15 oktober 2025. Lês mear oer dizze wizigingen en hoe’tsto dyn tinzen mei ús diele kinne troch ús blogberjocht te lêzen." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "Wy hawwe de status fan dyn leeftiidsbewiis befêstige. Do kinst dit dialoochfinster no slute." + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Wolkom werom!" @@ -9240,7 +9965,7 @@ msgstr "Hoe wolsto dyn startpakket neame?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Hoe giet it?" @@ -9256,11 +9981,11 @@ msgstr "Hokker talen wurde yn dit berjocht brûkt?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Hokker talen wolsto yn dyn algoritmyske feeds sjen?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Wa kin reagearje op dit berjocht?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Wa kin reagearje" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "Wa kin ferifiearje?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Wûpsty!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "Wûpsty! Populêre fideo’s laden mislearre." @@ -9322,12 +10047,12 @@ msgstr "Wêrom moat dizze brûker beoardiele wurde?" msgid "Write a message" msgstr "Skriuw in berjocht" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Skriuw berjocht" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Skriuw dyn reaksje" @@ -9358,11 +10083,11 @@ msgstr "Ja, de-aktivearje" msgid "Yes, delete this starter pack" msgstr "Ja, smyt dit startpakket fuort" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Ja, losmeitsje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Ja, ferstopje" @@ -9378,6 +10103,10 @@ msgstr "Juster" msgid "You" msgstr "Do" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "Do giest ek akkoard mei de <0>Bluesky-mienskipsrjochtlinen. <1>In bywurke ferzje fan ús Mienskipsrjochtlinen sil op 15 oktober fan krêft wurde." + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "Do bist in fertroude ferifiearder" @@ -9386,6 +10115,10 @@ msgstr "Do bist in fertroude ferifiearder" msgid "You are creating an account on" msgstr "Do makkest in account op" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "Do kinst op dit stuit gjin tagong krije ta Bluesky’s leeftiidsbewiisproses. Nim <0>kontakt op mei ús moderaasjeteam asto tinkst dat dit in flater is." + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Do stiest yn de rige." @@ -9403,7 +10136,7 @@ msgstr "Do bist net langer live" msgid "You are not allowed to go live" msgstr "It is dy net tastien live te gean" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Do meist gjin fideo’s oplade." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "Do bist ferfiearre" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "Do bist ferifiearre. Do silst dyn ferifikaasjestatus ferlieze asto dyn werjeftenamme wizigest. <0>Mear ynfo." @@ -9441,10 +10173,18 @@ msgstr "Do kinst ek nije personalisearre feeds ûntdekke om te folgjen." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Do kinst dyn account yn stee dêrfan ek tydlik de-aktivearje en op elk winske momint opnij aktivearje." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "Do kinst yn de chatynstellingen yn de app kieze oft chatmeldingen lûd hawwe" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Do kinst rinnende petearen trochsette, nettsjinsteande hokker ynstelling do kiest." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "Do kinst der no foar kieze om in melding te ûntfangen wannear’t spesifike persoanen in berjocht pleatse. As der ien is wêrfansto updates ûntfange wolst, gean dan nei harren profyl en sykje it nije bel-piktogram njonken de folch-knop." + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Do kinst dy no oanmelde mei dyn nije wachtwurd." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Do kinst dyn account opnij aktivearje om troch gean te kinnen mei oanmelden. Dyn profyl en berjochten binne dan sichtber foar oare brûkers." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "Do kinst standert ynteraksjeynstellingen ynstelle yn <0>Ynstellingen → Moderaasje → Ynteraksje-ynstellingen." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Do kinst dit letter bywurkje fan dyn ynstellingen út." @@ -9472,7 +10212,7 @@ msgstr "Do hast gjin folgers." msgid "You don't follow any users who follow @{name}." msgstr "Do folgest gjin brûkers dy’t @{name} folgje." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "Do hast op dit stuit gjin chatfersiken." @@ -9480,15 +10220,15 @@ msgstr "Do hast op dit stuit gjin chatfersiken." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Do hast noch gjin útnûgingskoaden! Wy stjoere dy der in pear asto wat langer op Bluesky bist." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Do hast gjin fêstsette feeds." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Do hast gjin bewarre feeds." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Do hast de auteur blokkearre of do bist troch de auteur blokkearre." @@ -9502,6 +10242,10 @@ msgstr "Do hast dizze brûker blokkeerre" msgid "You have blocked this user. You cannot view their content." msgstr "Do hast dizze brûker blokkeerre. Do kinst de ynhâld net besjen." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "Do hast beäntwurdzje, sitearje en fermeldingsmeldingen folslein útskeakele, dus dit ljepblêd wurdt net langer bywurke. Besykje dyn <0>meldingsynstellingen om dit oan te passen." + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Do hast dizze account negearre." msgid "You have muted this user" msgstr "Do hast dizze brûker negearre" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Do hast noch gjin petearen. Begjin der ien!" @@ -9547,7 +10291,7 @@ msgstr "Do hast noch gjin accounts blokkearre. Om in account te blokkearjen gies msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Do hast noch gjin accounts negearre. Om in account te negearjen giesto nei it profyl en selektearresto ‘Account negearje’ yn it menu fan de account." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Do bist oan it ein kaam" @@ -9572,6 +10316,10 @@ msgstr "Do negearrest noch gjin wurden of tags" msgid "You hid this reply." msgstr "Do hast dizze reaksje ferstoppe." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "Do bist dit proses al begûn, {0} lyn. It kin oant 5 minuten duorje eardat e-mailberichten dyn Postfek YN berikke. Oerweagje om in pear minuten te wachtsjen eardatsto it opnij probearje." + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Do kinst beswier meitsje tsjin labels pleatst troch oaren asto fynst dat se ûnrjochtlik pleatst binne." @@ -9592,7 +10340,7 @@ msgstr "Do meist maksimaal 3 feeds tafoegje" msgid "You may only select up to 4 images" msgstr "Do meist maksimaal 4 ôfbyldingen selektearje" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "Do moatst op syn minst 13 jier âld wêze om in account oant te meitsjen." @@ -9600,6 +10348,14 @@ msgstr "Do moatst op syn minst 13 jier âld wêze om in account oant te meitsjen msgid "You must be following at least seven other people to generate a starter pack." msgstr "Do moatst op syn minst 7 oare persoanen folgje om in startpakket te generearjen." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "Om tagong te krijen ta de ynstellingen hjirûnder, moatsto dyn leeftiidsferifikaasje foltôgje." + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "Om tagong te krijen ta dit skerm, moatsto dyn leeftiidsferifikaasje foltôgje." + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Do moatst tagong ta dyn fotobiblioteek jaan om in QR-koade te bewarjen" @@ -9608,6 +10364,11 @@ msgstr "Do moatst tagong ta dyn fotobiblioteek jaan om in QR-koade te bewarjen" msgid "You must select at least one labeler for a report" msgstr "Do moatst minimaal ien labeler selektearje foar in melding" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "Do moatst oanmelde om dit berjocht te besjen." + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "Do moatst dyn e-mailadres ferifiearje eardatsto e-mail-2FA ynskeakelje kinst." @@ -9616,7 +10377,7 @@ msgstr "Do moatst dyn e-mailadres ferifiearje eardatsto e-mail-2FA ynskeakelje k msgid "You previously deactivated @{0}." msgstr "Do hast @{0} earder de-aktivearre." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "Do wolst de app wierskynlik no opnij starte." @@ -9628,16 +10389,20 @@ msgstr "Do hast mei {0} reagearre" msgid "You reacted {0} to {1}" msgstr "Do hast mei {0} op {1} reagearre" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Do wurdst by al dyn accounts ôfmeld." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "Do ûntfangst gjin meldingen mear foar {0}" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Do ûntfangst gjin meldingen mear foar dit petear" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Do ûntfangst no meldingen foar dit petear" @@ -9657,11 +10422,11 @@ msgstr "Do: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Do: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Do folgest de foarstelde brûkers en feeds, sa gau asto klear bist mei it oanmeitsjen fan dyn account!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Do folgest de foarstelde brûkers, sa gau asto klear bist mei it oanmeitsjen fan dyn account!" @@ -9673,9 +10438,9 @@ msgstr "Do folgest dizze persoanen en {0} oaren" msgid "You'll follow these people right away" msgstr "Do folgest dizze persoanen daliks" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Do ûntfangst in e-mailberjocht op <0>{0} om te ferifiearjen datsto it bist." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "Do silst meldingen foar {0} ûntfange!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "Do hast derfoar keazen om in wurd of tag yn dit berjocht te ferstopjen." msgid "You've found some people to follow" msgstr "Do hastt inkelde minsken fûn om te folgjen" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "Do hast it ein fan de aktive ynhâld berikt." + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Do hast it ein fan dyn feed berikt! Sykje noch mear accounts om te folgjen." @@ -9711,19 +10480,23 @@ msgstr "Do hast it ein fan dyn feed berikt! Sykje noch mear accounts om te folgj msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Do bist oer it maksimaal tal tasteane fersiken. Probearje it letter nochris." -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "Do hast it begjin fan de aktive ynhâld berikt." + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Do bist oer dyn deistige limyt foar fideo-oplaads (te folle bytes)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Do bist oer dyn deistige limyt foar fideo-oplaads (te folle fideo’s)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Do hast gjin fideo’s mear om te besjen. Miskien is it in goed momint om skoft te hâlden?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Dyn account" @@ -9735,7 +10508,7 @@ msgstr "Dyn account is fuortsmiten" msgid "Your account has been suspended" msgstr "Dyn account is opskoarten" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Dyn account is noch net âld genôch om fideo’s op te laden. Probearje it letter nochris." @@ -9751,11 +10524,11 @@ msgstr "Dyn account is yn striid mei de <0>Tsjinstbetingsten fan Bluesky Social< msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "Dyn beswier is yntsjinne. Asto yn it gelyk stelst wurdst, ûntfangsto in e-mailberjocht." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Dyn bertedatum" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Dyn browser stipet de fideo-yndieling net. Probearje in oare browser." @@ -9771,13 +10544,15 @@ msgstr "Dyn kar sil foar takomstige keppelingen ûnthâlden wurde. Do kinst it o msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Dyn aktuele handle <0>{0} bliuwt automatysk foar dy reservearre. Do kinst fan dizze account út altyd hjir nei weromskeakelje." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "Dyn e-mailadres is bywurke, mar it is noch net ferifiearre. Ferifiearje as folgjende stap dyn nije e-mailadres." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "Jouw e-mailadres" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Dyn e-mailadres liket ûnjildich te wêzen." @@ -9786,15 +10561,11 @@ msgstr "Dyn e-mailadres liket ûnjildich te wêzen." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "Dyn e-mailadres is noch net ferifiearre. Ferifiearje dyn e-mailadres om alle funksjes fan Bluesky brûke te kinnen." -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Dyn e-mailadres is noch net ferifiearre. Dit is in wichtige befeiligingsstap dy’t wy oanrekommandearje." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "Dyn earste mei-’k-wol-oer!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "Dyn folgers" @@ -9806,19 +10577,15 @@ msgstr "Dyn folgjende feed is leech! Folgje mear brûkers om te sjen wat der bar msgid "Your full handle will be <0>@{0}" msgstr "Dyn folsleine handle wurdt <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "Dyn folsleine brûkersnamme wurdt <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "Dyn ynteressen" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "Dyn ynteressen wurde bywurke!" @@ -9835,15 +10602,15 @@ msgstr "Dyn negearre wurden" msgid "Your password has been changed successfully!" msgstr "Dyn wachtwurd is mei sukses wizige!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "Dyn wachtwurd moat op syn minst 8 tekens lang wêze." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Dyn berjocht is publisearre" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Dyn berjochten binne publisearre" @@ -9851,15 +10618,19 @@ msgstr "Dyn berjochten binne publisearre" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Dyn berjochten, mei-’k-wol-oers en blokkearringen binne iepenbier. Negearringen binne privee." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "Voorkeurstaal" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Dyn profyl, berjochten, feeds en listen binne net langer sichtber foar oare Bluesky-brûkers. Do kinst dyn account op elk momint opnij aktivearje troch oan te melden." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Dyn reaksje is publisearre" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "Dyn melding wurdt nei <0>{0} ferstjoerd." @@ -9867,7 +10638,7 @@ msgstr "Dyn melding wurdt nei <0>{0} ferstjoerd." msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Dyn melding wurdt nei de Bluesky-moderaasjetsjinst ferstjoerd" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "Dyn selektearre ynteressen helpe ús dy ynhâld dy’t dy ynteressearret te toanen." diff --git a/src/locale/locales/ga/messages.po b/src/locale/locales/ga/messages.po index a7b0e495d5..910bfd56bb 100644 --- a/src/locale/locales/ga/messages.po +++ b/src/locale/locales/ga/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ga\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: Irish\n" "Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" @@ -27,7 +27,7 @@ msgstr "(gníomhach)" msgid "(contains embedded content)" msgstr "(tá ábhar leabaithe ann)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(gan ríomhphost)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# athphostáil} two {# athphostáil} few {# athphostái msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {soicind amháin} two {# shoicind} few {# shoicind} many {# soicind} other {# soicind}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -90,17 +90,18 @@ msgstr "" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {leantóir} two {leantóir} few {leantóir} many {leantóir} other {leantóir}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {á leanúint} two {á leanúint} few {á leanúint} many {á leanúint} other {á leanúint}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {moladh} two {mholadh} few {mholadh} many {moladh} other {moladh}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {moladh} two {mholadh} few {mholadh} many {moladh} other msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {phostáil} two {phostáil} few {phostáil} many {bpostáil} other {postáil}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {postáil athluaite} two {phostáil athluaite} few {phostáil athluaite} many {bpostáil athluaite} other {postáil athluaite}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {athphostáil} two {athphostáil} few {athphostáil} many {athphostáil} other {athphostáil}}" @@ -135,6 +138,10 @@ msgstr "{0} <0>i <1>gclibeanna" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>i <1>dtéacs agus i gclibeanna" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "" @@ -143,11 +150,15 @@ msgstr "" msgid "{0} is not a valid URL" msgstr "" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "Chláraigh {0} an tseachtain seo" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} as {1}" @@ -164,8 +175,16 @@ msgstr "" msgid "{0} reacted {1} to {2}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "abhatár {0}" @@ -197,12 +216,12 @@ msgstr "{0}n" msgid "{0}s" msgstr "{0}s" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Pacáiste Fáilte {displayName}" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {uair} two {uair} few {uair} many {uair} msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {nóiméad} two {nóiméad} few {nóiméad} many {nóiméad} other {nóiméad}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "Lean {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} thú" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "Mhol {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} do shainfhotha" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "Mhol {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} do phostáil" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "D'athphostáil {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} do phostáil" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "Chláraigh {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} le do phacáiste fáilte" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "Lean {firstAuthorLink} thú" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "Lean {firstAuthorLink} thú" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "Mhol {firstAuthorLink} do shainfhotha" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "Mhol {firstAuthorLink} do phostáil" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "D'athphostáil {firstAuthorLink} do phostáil" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "Chláraigh {firstAuthorLink} le do phacáiste fáilte" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "Lean {firstAuthorName} agus {additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} thú" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "Mhol {firstAuthorName} agus {additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} do shainfhotha" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "Mhol {firstAuthorName} agus {additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} do phostáil" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "D'athphostáil {firstAuthorName} agus {additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} do phostáil" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "Chláraigh {firstAuthorName} agus {additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} le do phacáiste fáilte" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "Lean {firstAuthorName} thú" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "Lean {firstAuthorName} thú" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "Mhol {firstAuthorName} do shainfhotha" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "Mhol {firstAuthorName} do phostáil" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "D'athphostáil {firstAuthorName} do phostáil" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "Chláraigh {firstAuthorName} le do phacáiste fáilte" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} á leanúint" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "Ní féidir TD a chur chuig {handle}" @@ -392,7 +410,7 @@ msgstr "" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -432,12 +450,12 @@ msgstr "" msgid "+{computedTotal}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "Cuireadh <0>{0}, <1>{1}, agus {2, plural, one {duine amháin eile} two {beirt eile} few {# dhuine eile} many {# nduine eile} other {# duine eile}} i do phacáiste fáilte" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "Cuireadh <0>{0}, <1>{1}, agus {2, plural, one {duine amháin eile} two {beirt eile} few {# dhuine eile} many {# nduine eile} other {# duine eile}} i do phacáiste fáilte" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {leantóir} two {leantóir} few {leantóir} m msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {á leanúint} two {á leanúint} few {á leanúint} many {á leanúint} other {á leanúint}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "Cuireadh <0>{0} agus<1> <2>{1} i do phacáiste fáilte" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "Cuireadh <0>{0} i do phacáiste fáilte" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} ball" @@ -466,11 +484,11 @@ msgstr "<0>{0} ball" msgid "<0>{date} at {time}" msgstr "<0>{date} ag {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Turgnamhach: Nuair atá an sainrogha cumasaithe, ní bhfaighidh tú fógraí faoi fhreagraí agus athlua a dhéanann úsáideoirí atá á leanúint agat. Cuirfear breis rialaithe leis seo thar am." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "Cuireadh <0>tusa agus<1> <2>{0} i do phacáiste fáilte" @@ -503,10 +521,14 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Maidir leis" @@ -524,25 +546,25 @@ msgstr "" msgid "Accept Request" msgstr "Glac leis an iarratas" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Inrochtaineacht" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Socruithe Inrochtaineachta" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Cuntas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Cuntas leanta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Balbhaíodh an Cuntas" msgid "Account Muted by List" msgstr "Balbhaíodh an Cuntas trí Liosta" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Roghanna cuntais" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Baineadh an cuntas ón mearliosta" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Cuntas díleanta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Níl an cuntas balbhaithe a thuilleadh" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Cuir leis" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Cuir {0} eile leis chun dul ar aghaidh" @@ -634,8 +666,8 @@ msgstr "Cuir cuntas leis seo" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Cuir téacs malartach leis seo" msgid "Add alt text (optional)" msgstr "Cuir téacs malartach leis seo (roghnach)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Cuir cuntas eile leis" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Cuir postáil eile leis" @@ -670,8 +702,8 @@ msgstr "Cuir pasfhocal aipe leis seo" msgid "Add emoji reaction" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Cuir tuilleadh sonraí leis (roghnach)" @@ -683,7 +715,7 @@ msgstr "" msgid "Add muted words and tags" msgstr "Cuir focail agus clibeanna a balbhaíodh leis seo" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Cuir postáil nua leis" @@ -704,7 +736,7 @@ msgstr "" msgid "Add recommended feeds" msgstr "Cuir fothaí molta leis seo" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Cuir roinnt fothaí le do phacáiste fáilte!" @@ -725,10 +757,6 @@ msgstr "Cuir an fotha seo le do chuid fothaí" msgid "Add to lists" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Cuir le mo chuid fothaí" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "" @@ -738,11 +766,11 @@ msgstr "" msgid "Added to list" msgstr "Curtha leis an liosta" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Curtha le mo chuid fothaí" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Tuilleadh sonraí (300 carachtar ar a mhéad)" @@ -750,18 +778,18 @@ msgstr "Tuilleadh sonraí (300 carachtar ar a mhéad)" msgid "Adult" msgstr "Daoine fásta" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Ábhar do dhaoine fásta" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Ní féidir ábhar do dhaoine fásta a chur ar fáil ach tríd an nGréasán ag <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Tá ábhar do dhaoine fásta curtha ar ceal." @@ -770,16 +798,32 @@ msgstr "Tá ábhar do dhaoine fásta curtha ar ceal." msgid "Adult Content labels" msgstr "Lipéid d'ábhar do dhaoine fásta" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Ardleibhéal" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Uile" @@ -793,7 +837,7 @@ msgstr "Leanadh na cuntais go léir!" msgid "All languages" msgstr "Gach teanga" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Na fothaí go léir a shábháil tú, in áit amháin." @@ -802,16 +846,21 @@ msgstr "Na fothaí go léir a shábháil tú, in áit amháin." msgid "Allow access to your direct messages" msgstr "Ceadaigh fáil ar do chuid TDanna" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Ceadaigh teachtaireachtaí nua ó" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Ceadaigh postálacha athluaite" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Ceadaigh freagraí ó:" @@ -828,13 +877,13 @@ msgstr "An bhfuil cód agat cheana?" msgid "Already signed in as @{0}" msgstr "Logáilte isteach cheana mar @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "Téacs malartach" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Téacs Malartach" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Cuireann an téacs malartach síos ar na híomhánna do dhaoine atá dall nó a bhfuil lagú radhairc orthu agus cuireann sé an comhthéacs ar fáil do chuile dhuine." @@ -861,27 +910,19 @@ msgstr "" msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Cuireadh teachtaireacht ríomhphoist chuig {0}. Tá cód dearbhaithe faoi iamh. Is féidir leat an cód a chur isteach thíos anseo." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Seoladh teachtaireacht rphoist chugat! Cuir isteach an cód dearbhaithe ón ríomhphost." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Tharla earráid" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Tharla earráid" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Tharla earráid agus an físeán á chomhbhrú." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "" @@ -889,11 +930,11 @@ msgstr "" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Tharla earráid agus do phacáiste fáilte á chruthú. An bhfuil fonn ort triail eile a bhaint as?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Tharla earráid agus an físeán á lódáil. Bain triail eile as ar ball." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Tharla earráid agus an físeán á lódáil. Bain triail eile as." @@ -910,7 +951,7 @@ msgstr "Tharla earráid agus an físeán á roghnú" msgid "An error occurred while trying to follow all" msgstr "Tharla earráid agus na cuntais go léir á leanúint" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Tharla earráid agus an físeán á uaslódáil." @@ -934,8 +975,8 @@ msgstr "Tharla fadhb agus an comhrá á oscailt" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "tharla earráid nach eol dúinn" msgid "an unknown labeler" msgstr "lipéadóir anaithnid" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "agus" @@ -963,10 +1004,14 @@ msgstr "agus" msgid "Animals" msgstr "Ainmhithe" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "GIF beo" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "" @@ -980,7 +1025,13 @@ msgstr "Iompar Frithshóisialta" msgid "Anybody can interact" msgstr "Tá gach duine in ann idirghníomhú leis" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "Ní féidir ach litreacha, uimhreacha, spásanna, fleiscíní, agus fost msgid "App password names must be at least 4 characters long" msgstr "Caithfidh ainm pasfhocal aipe a bheith ar a laghad ceithre charachtar ar fad" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Pasfhocail aipe" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Pasfhocail aipe" @@ -1053,10 +1104,10 @@ msgstr "" msgid "Appeal this decision" msgstr "Déan achomharc i gcoinne an chinnidh seo" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Cuma" @@ -1065,12 +1116,20 @@ msgstr "Cuma" msgid "Apply default recommended feeds" msgstr "Bain úsáid as fothaí réamhshocraithe a moladh" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Cartlannaithe ó {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Postáil sa chartlann" @@ -1078,7 +1137,7 @@ msgstr "Postáil sa chartlann" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "An bhfuil tú cinnte gur mhaith leat an pasfhocal aipe \"{0}\" a scriosadh?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "An bhfuil tú cinnte gur mhaith leat an teachtaireacht seo a scrios? Scriosfar duitse í ach ní don duine eile atá páirteach." @@ -1098,19 +1157,15 @@ msgstr "An bhfuil tú cinnte gur mhaith leat an comhrá seo a fhágáil?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "An bhfuil tú cinnte gur mhaith leat imeacht ón gcomhrá seo? Scriosfar duitse é ach ní don duine eile atá páirteach." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "An bhfuil tú cinnte gur mhaith leat {0} a bhaint de do chuid fothaí?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "An bhfuil tú cinnte gur mhaith leat é seo a bhaint de do chuid fothaí?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "An bhfuil tú cinnte gur mhaith leat an dréacht seo a scriosadh?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "An bhfuil tú cinnte gur mhaith leat an phostáil seo a scriosadh?" @@ -1131,29 +1186,26 @@ msgstr "Ealaín" msgid "Artistic or non-erotic nudity." msgstr "Lomnochtacht ealaíonta nó gan a bheith gáirsiúil." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "3 charachtar ar a laghad" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Bogadh roghanna seinnte uathoibríoch go dtí <0>Socruithe Ábhair agus Meáin." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Seinn físeáin agus GIFanna go huathoibríoch" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Seinn físeáin agus GIFanna go huathoibríoch" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Ar ais" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "" @@ -1195,28 +1247,44 @@ msgstr "Ní mór duit do ríomhphost a dheimhniú roimh phacáiste fáilte a chr msgid "Before you can accept this chat request, you must first verify your email." msgstr "" +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Breithlá" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Blocáil" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Blocáil" msgid "Block account" msgstr "Blocáil an cuntas seo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Blocáil an cuntas seo?" @@ -1262,20 +1330,20 @@ msgstr "Blocáil an t-úsáideoir" msgid "Block User" msgstr "Blocáil an t-úsáideoir" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Blocáilte" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Cuntais bhlocáilte" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Cuntais bhlocáilte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Ní féidir leis na cuntais bhlocáilte freagra a thabhairt ar do chomhráite, tagairt a dhéanamh duit, ná aon phlé eile a bheith acu leat." @@ -1284,11 +1352,11 @@ msgstr "Ní féidir leis na cuntais bhlocáilte freagra a thabhairt ar do chomhr msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Ní féidir leis na cuntais bhlocáilte freagra a thabhairt ar do chomhráite, tagairt a dhéanamh duit, ná aon phlé eile a bheith acu leat. Ní fheicfidh tú a gcuid ábhair agus ní fheicfidh siad do chuid ábhair." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Postáil bhlocáilte." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Ní bhacann blocáil an lipéadóir seo ar lipéid a chur ar do chuntas." @@ -1309,11 +1377,12 @@ msgstr "Blag" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Ní féidir le Bluesky an dáta maíte a dheimhniú." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1347,6 +1416,14 @@ msgstr "Ní thaispeánfaidh Bluesky do phróifíl ná do chuid postálacha d’ msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Déan íomhánna doiléir agus scag ó fhothaí iad" msgid "Books" msgstr "Leabhair" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Tabhair súil ar thuilleadh cuntas ar an leathanach Taiscéalaíocht" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Tabhair súil ar thuilleadh fothaí ar an leathanach Taiscéalaíocht" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Tabhair súil ar thuilleadh moltaí" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Tabhair súil ar thuilleadh moltaí ar an leathanach Taiscéalaíocht" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Gnó" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Le {0}" @@ -1428,15 +1502,23 @@ msgstr "Le {0}" msgid "By <0>{0}" msgstr "Le <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Má chruthaíonn tú cuntas, glacann tú leis an <0>bPolasaí Príobháideachta." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Má chruthaíonn tú cuntas, glacann tú leis na <0>Téarmaí Seirbhíse agus leis an <1>bPolasaí Príobháideachta." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Má chruthaíonn tú cuntas, glacann tú leis na <0>Téarmaí Seirbhíse." @@ -1448,14 +1530,17 @@ msgstr "" msgid "Camera" msgstr "Ceamara" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Ceamara" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Cealaigh" @@ -1500,11 +1582,7 @@ msgstr "Ná scrios an chuntas" msgid "Cancel image crop" msgstr "Cealaigh bearradh na híomhá" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Cuir athrú na próifíle ar ceal" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Ná déan athlua na postála" @@ -1516,14 +1594,10 @@ msgstr "" msgid "Cancel search" msgstr "Cealaigh an cuardach" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Cuireann sé seo oscailt an tsuímh gréasáin atá nasctha ar ceal" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Ní féidir plé le húsáideoir blocáilte" @@ -1553,17 +1627,12 @@ msgstr "Athraigh deilbhín na haipe go \"{0}\"" msgid "Change app language" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Athraigh do sheoladh ríomhphoist" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Athraigh mo leasainm" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "" @@ -1579,14 +1648,6 @@ msgstr "" msgid "Change report reason" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Athraigh do ríomhphost" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Athraigh do sheoladh ríomhphoist" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "" @@ -1596,10 +1657,15 @@ msgstr "" msgid "Changes hosting provider" msgstr "" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Comhrá" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Balbhaíodh an comhrá" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Socruithe comhrá" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Socruithe Comhrá" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Díbhalbhaíodh an comhrá" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "" @@ -1661,7 +1738,7 @@ msgstr "Féach ar do bhosca ríomhphoist le haghaidh teachtaireachta leis an gc msgid "Choose domain verification method" msgstr "Roghnaigh modh deimhnithe fearainn" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Roghnaigh Fothaí" @@ -1669,7 +1746,7 @@ msgstr "Roghnaigh Fothaí" msgid "Choose for me" msgstr "Roghnaigh ar mo shon" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Roghnaigh Daoine" @@ -1685,23 +1762,23 @@ msgstr "Roghnaigh an dath seo mar abhatár duit" msgid "Choose your account provider" msgstr "" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Tóg d'amlíne féin! Is féidir teacht ar ábhar a thaitneoidh leat le fothaí a thógann an pobal." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Roghnaigh do phasfhocal" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Do leasainm" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Glan na sonraí ar fad atá i dtaisce." -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Glan na sonraí ar fad atá i dtaisce. Ansin atosaigh." @@ -1714,23 +1791,27 @@ msgstr "" msgid "Clear search query" msgstr "Glan an cuardach" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "cliceáil anseo" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Cliceáil chun cosc a chur ar phostálacha athluaite den phostáil seo." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Cliceáil chun postálacha athluaite den phostáil seo a cheadú." @@ -1750,14 +1831,16 @@ msgstr "Aeráid" msgid "Clip 🐴 clop 🐴" msgstr "Trup, Trup a Chapaillín 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Trup, Trup a Chapaillín 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Dún" @@ -1789,13 +1876,15 @@ msgstr "Dún an rabhadh" msgid "Close bottom drawer" msgstr "Dún an tarraiceán íochtair" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Dún an dialóg" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "" @@ -1804,7 +1893,7 @@ msgstr "" msgid "Close emoji picker" msgstr "Dún an roghnóir emoji" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Dún an dialóg GIF" @@ -1822,7 +1911,7 @@ msgstr "Dún amharcóir na n-íomhánna" msgid "Close menu" msgstr "" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Dún an dialóg seo" @@ -1830,7 +1919,7 @@ msgstr "Dún an dialóg seo" msgid "Closes password update alert" msgstr "Dúnann sé seo an rabhadh faoi uasdátú an phasfhocail" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "" @@ -1843,16 +1932,16 @@ msgstr "" msgid "Closes viewer for header image" msgstr "Dúnann sé seo an t-amharcóir le haghaidh íomhá an cheanntáisc" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Laghdaigh an liosta úsáideoirí" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Laghdaíonn sé seo liosta na n-úsáideoirí le haghaidh an fhógra sin" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Mód datha" @@ -1870,7 +1959,8 @@ msgstr "Greann" msgid "Comics" msgstr "Greannáin" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Treoirlínte an phobail" @@ -1879,38 +1969,34 @@ msgstr "Treoirlínte an phobail" msgid "Complete onboarding and start using your account" msgstr "Críochnaigh agus tosaigh ag baint úsáide as do chuntas." -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Freagair an dúshlán" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Cum postáil nua" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Scríobh freagra" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Físeán á chomhbhrú..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Socraigh scagadh an ábhair le haghaidh catagóir: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Le socrú i <0>socruithe na modhnóireachta." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Dearbhaigh socruithe le haghaidh teanga an ábhair" msgid "Confirm delete account" msgstr "Dearbhaigh scriosadh an chuntais" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Dearbhaigh d'aois:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Dearbhaigh do bhreithlá" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Dearbhaigh do bhreithlá" msgid "Confirmation code" msgstr "Cód dearbhaithe" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Cód Dearbhaithe" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Ag nascadh…" -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Teagmháil le Support" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Ábhar agus Meáin" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Ábhar agus meáin" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Ábhar agus Meáin" @@ -1977,7 +2069,8 @@ msgstr "Ábhar agus Meáin" msgid "Content Blocked" msgstr "Ábhar Blocáilte" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Scagthaí ábhair" @@ -2006,10 +2099,12 @@ msgstr "Rabhadh ábhair" msgid "Content warnings" msgstr "Rabhadh ábhair" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Cúlra an roghchláir comhthéacs, cliceáil chun an roghchlár a dhúnadh." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Lean ar aghaidh" msgid "Continue as {0} (currently signed in)" msgstr "Lean ort mar {0} (atá logáilte isteach faoi láthair)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Lean leis an snáithe..." @@ -2029,6 +2129,10 @@ msgstr "Lean leis an snáithe..." msgid "Continue to next step" msgstr "Lean ar aghaidh go dtí an chéad chéim eile" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Cóipeáilte" msgid "Copied build version to clipboard" msgstr "Leagan cóipeáilte sa ghearrthaisce" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "" msgid "Copy" msgstr "Cóipeáil" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Cóipeáil an Pasfhocal Aipe" @@ -2087,8 +2187,8 @@ msgstr "Cóipeáil an Pasfhocal Aipe" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "" @@ -2120,10 +2220,10 @@ msgstr "Cóipeáil an Nasc" msgid "Copy link to list" msgstr "Cóipeáil an nasc leis an liosta" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Cóipeáil an nasc leis an bpostáil" @@ -2136,18 +2236,18 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Cóipeáil téacs na teachtaireachta" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Cóipeáil téacs na postála" @@ -2159,11 +2259,25 @@ msgstr "Cóipeáil an cód QR" msgid "Copy TXT record value" msgstr "Cóipeáil an taifead TXT" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "An polasaí maidir le cóipcheart" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "Níor éiríodh ar an gcomhrá a bhalbhú" msgid "Could not process your video" msgstr "Níorbh fhéidir d'fhíseán a phróiseáil" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Cruthaigh" @@ -2195,7 +2317,7 @@ msgstr "Cruthaigh cód QR le haghaidh pacáiste fáilte" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Cruthaigh pacáiste fáilte" @@ -2205,21 +2327,22 @@ msgstr "Cruthaigh pacáiste fáilte ar mo shon" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Cláraigh" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Cruthaigh cuntas" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Cruthaigh cuntas" @@ -2241,7 +2364,7 @@ msgstr "Cruthaigh ceann eile" msgid "Create new account" msgstr "Cruthaigh cuntas nua" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Cruthaigh tuairisc do {0}" @@ -2268,7 +2391,7 @@ msgstr "Saincheaptha" msgid "Customization options" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Cé atá in ann idirghníomhú leis an bpostáil seo?" @@ -2278,12 +2401,12 @@ msgstr "" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Dorcha" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Dorcha" @@ -2292,21 +2415,21 @@ msgstr "Dorcha" msgid "Dark mode" msgstr "Modh dorcha" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Téama dorcha" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Dáta breithe" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Díghníomhaigh mo chuntas" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Dífhabhtaigh Modhnóireacht" @@ -2314,7 +2437,7 @@ msgstr "Dífhabhtaigh Modhnóireacht" msgid "Debug panel" msgstr "Painéal dífhabhtaithe" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Réamhshocrú" @@ -2322,8 +2445,8 @@ msgstr "Réamhshocrú" msgid "Default icons" msgstr "Deilbhíní réamhshocraithe" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Deilbhíní réamhshocraithe" msgid "Delete" msgstr "Scrios" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Scrios an cuntas" @@ -2355,7 +2478,7 @@ msgstr "Scrios pasfhocal na haipe?" msgid "Delete chat" msgstr "" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Scrios taifead dearbhaithe comhrá" @@ -2370,7 +2493,7 @@ msgstr "Scrios an comhrá" msgid "Delete Conversation" msgstr "Scrios an Comhrá" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Scrios domsa" @@ -2378,11 +2501,11 @@ msgstr "Scrios domsa" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Scrios an teachtaireacht seo" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Scrios an teachtaireacht seo domsa" @@ -2390,9 +2513,9 @@ msgstr "Scrios an teachtaireacht seo domsa" msgid "Delete my account" msgstr "Scrios mo chuntas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Scrios an phostáil" @@ -2409,11 +2532,11 @@ msgstr "An bhfuil fonn ort an pacáiste fáilte seo a scriosadh?" msgid "Delete this list?" msgstr "An bhfuil fonn ort an liosta seo a scriosadh?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "An bhfuil fonn ort an phostáil seo a scriosadh?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Scriosta" @@ -2422,15 +2545,20 @@ msgstr "Scriosta" msgid "Deleted Account" msgstr "Cuntas Scriosta" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Scriosadh an phostáil." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Cur síos" @@ -2447,12 +2575,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Téacs malartach tuairisciúil" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Dícheangail an phostáil athluaite" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "An bhfuil fonn ort an phostáil athluaite a dhícheangal?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Roghanna d'fhorbróirí" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Dialóg: cé atá in ann idirghníomhú leis an bpostáil seo" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Breacdhorcha" @@ -2492,27 +2620,27 @@ msgstr "" msgid "Disable Email 2FA" msgstr "Ná húsáid 2FA trí ríomhphost" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Ná húsáid aiseolas haptach" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Ná húsáid fotheidil" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Díchumasaithe" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Ná sábháil" @@ -2520,11 +2648,11 @@ msgstr "Ná sábháil" msgid "Discard changes?" msgstr "Faigh réidh leis na hathruithe?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Faigh réidh leis an dréacht?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Faigh réidh leis an bpostáil?" @@ -2542,7 +2670,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "Aimsigh sainfhothaí nua" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Aimsigh Fothaí Nua" @@ -2550,7 +2678,7 @@ msgstr "Aimsigh Fothaí Nua" msgid "Dismiss" msgstr "Ruaig" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Ruaig an earráid" @@ -2562,26 +2690,26 @@ msgstr "Scoir an treoir tosaithe" msgid "Dismiss interests" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Déan suaitheantais théacs malartaigh níos mó" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Ainm taispeána" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Ainm Taispeána" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Tá an t-ainm taispeána rófhada" @@ -2603,15 +2731,11 @@ msgstr "Ná cuir an focal balbhaithe i bhfeidhm ar úsáideoirí a leanann tú" msgid "Does not include nudity." msgstr "Níl lomnochtacht ann." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Ní thosaíonn ná chríochnaíonn sé le fleiscín" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Fearann dearbhaithe!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -2619,6 +2743,15 @@ msgstr "" msgid "Don't see an email? <0>Click here to resend." msgstr "" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "" msgid "Double tap to close the dialog" msgstr "Tapáil faoi dhó chun an fhuinneog a dhúnadh" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "" @@ -2673,7 +2806,7 @@ msgstr "Íoslódáil Bluesky" msgid "Download CAR file" msgstr "Íoslódáil comhad CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Scaoil anseo chun íomhánna a chur leis" @@ -2689,18 +2822,10 @@ msgstr "m.sh. cáit" msgid "e.g. Alice Lastname" msgstr "m.sh. Cáit Ní Dhuibhir" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "m.sh. Cáit Ní Dhuibhir" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "m.sh. cait.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "m.sh. Ealaíontóir agus léitheoir craosach; is maith liom madraí!" - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Noicht ealaíonta, mar shampla" @@ -2725,10 +2850,11 @@ msgstr "m.sh. Úsáideoirí a fhreagraíonn le fógraí" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Oibríonn gach cód uair amháin. Gheobhaidh tú tuilleadh cód go tráthrialta." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Eagar" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Eagar" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Cuir an t-abhatár in eagar" @@ -2749,12 +2875,12 @@ msgstr "Cuir Fothaí in Eagar" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Cuir an íomhá seo in eagar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Cuir na socruithe idirghníomhaíochta in eagar" @@ -2776,33 +2902,33 @@ msgstr "" msgid "Edit Moderation List" msgstr "Athraigh liosta na modhnóireachta" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Athraigh mo chuid fothaí" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Cuir mo phróifíl in eagar" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Cuir Daoine in Eagar" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Cuir socruithe idirghníomhaíochta na postála in eagar" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Athraigh an phróifíl" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Athraigh an Phróifíl" @@ -2814,19 +2940,11 @@ msgstr "Cuir an pacáiste fáilte in eagar" msgid "Edit User List" msgstr "Athraigh an liosta d’úsáideoirí" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Cé atá in ann freagra a thabhairt" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Cuir an t-ainm taispeána in eagar" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Athraigh an cur síos i do phróifíl" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Cuir do phacáiste fáilte in eagar" @@ -2839,8 +2957,8 @@ msgstr "Oideachas" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "Cuireadh cruthaitheoir an liosta seo cosc ortsa, nó chuir tusa cosc ar an gcruthaitheoir." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "Ríomhphost" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "Níl 2FA trí ríomhphost ar fáil a thuilleadh" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "Cuireadh 2FA ríomhphoist ar siúl" @@ -2865,10 +2983,6 @@ msgstr "Athsheoladh an ríomhphost" msgid "Email sent!" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "" @@ -2883,8 +2997,8 @@ msgstr "Leabaigh an cód HTML" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Leabaigh an phostáil" @@ -2892,7 +3006,7 @@ msgstr "Leabaigh an phostáil" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Leabaigh an phostáil seo i do shuíomh gréasáin féin. Cóipeáil an píosa cóid seo a leanas isteach san HTML ar do shuíomh." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Fís-seinnteoir leabaithe" @@ -2906,7 +3020,7 @@ msgstr "Cumasaigh" msgid "Enable {0} only" msgstr "Cuir {0} amháin ar fáil" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Cuir ábhar do dhaoine fásta ar fáil" @@ -2919,16 +3033,20 @@ msgstr "" msgid "Enable external media" msgstr "Cuir meáin sheachtracha ar fáil" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Cuir seinnteoirí na meán ar fáil le haghaidh" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Cuir fógraí tábhachtacha ar siúl" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Cuir fotheidil ar siúl" @@ -2941,17 +3059,14 @@ msgstr "Cuir an foinse seo amháin ar fáil" msgid "Enable trending topics" msgstr "Cuir treochtaí ar siúl" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "" - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Cumasaithe" @@ -2963,7 +3078,7 @@ msgstr "Deireadh an fhotha" msgid "Ensure you have selected a language for each subtitle file." msgstr "Deimhnigh gur roghnaigh tú teanga do gach comhad fotheideal." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Cuir pasfhocal isteach" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Cuir focal na clib isteach" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Cuir an cód isteach" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Mód lánscáileáin" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Cuir isteach do bhreithlá" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Cuir isteach do sheoladh ríomhphoist" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Cuir isteach do sheoladh ríomhphoist nua thíos." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "" @@ -3022,7 +3129,7 @@ msgstr "" msgid "Enter your username and password" msgstr "Cuir isteach do leasainm agus do phasfhocal" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "" @@ -3030,16 +3137,28 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Earráid" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Tharla earráid le linn comhad a shábháil" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Earráid agus an freagra ar an captcha á phróiseáil." @@ -3047,27 +3166,34 @@ msgstr "Earráid agus an freagra ar an captcha á phróiseáil." msgid "Error:" msgstr "Earráid:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Chuile dhuine" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Tig le chuile dhuine freagra a thabhairt" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Tig le chuile dhuine freagra a thabhairt ar an bpostáil." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Chuile dhuine" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Ná cuir i bhfeidhm ar úsáideoirí a leanaim" msgid "Excludes users you follow" msgstr "Leis seo, ní chuirtear an balbhú i bhfeidhm ar úsáideoirí a leanann tú" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Fág an mód lánscáileáin" @@ -3106,24 +3232,28 @@ msgstr "Fágann sé seo an radharc ar an íomhá" msgid "Expand alt text" msgstr "Taispeáin an téacs malartach ina iomláine" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Leathnaigh an liosta úsáideoirí" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Leathnaigh nó laghdaigh an téacs iomlán a bhfuil tú ag freagairt" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "Bhíothas ag súil go dtiocfadh taifead ón URI" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Turgnamhach" @@ -3153,15 +3283,15 @@ msgstr "Meáin is féidir a bheith gáirsiúil nó goilliúnach." msgid "Explicit sexual images." msgstr "Íomhánna gnéasacha." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Easpórtáil mo chuid sonraí" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Meáin sheachtracha" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Is féidir le meáin sheachtracha cumas a thabhairt do shuíomhanna ar an nGréasán eolas fútsa agus faoi do ghléas a chnuasach. Ní sheoltar ná iarrtar aon eolas go dtí go mbrúnn tú an cnaipe “play”." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Roghanna maidir le meáin sheachtracha" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "" @@ -3211,8 +3341,8 @@ msgstr "Theip ar phasfhocal aipe a chruthú. Bain triail eile as." msgid "Failed to create conversation" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Theip ar chruthú an phacáiste fáilte" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Teip ar theachtaireacht a scriosadh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Teip ar scriosadh na postála. Déan iarracht eile." @@ -3238,8 +3368,8 @@ msgstr "Teip ar scriosadh na postála. Déan iarracht eile." msgid "Failed to delete starter pack" msgstr "Theip ar scriosadh an phacáiste fáilte" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "" @@ -3250,14 +3380,32 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Teip ar lódáil roghanna na bhfothaí" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Theip ar lódáil na GIFanna" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Teip ar theachtaireachtaí roimhe seo a lódáil" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Teip ar lódáil na bhfothaí molta" msgid "Failed to load suggested follows" msgstr "Teip ar lódáil na gcuntas molta" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Theip ar ghreamú na postála" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "" @@ -3291,15 +3439,11 @@ msgstr "" msgid "Failed to save image: {0}" msgstr "Níor sábháladh an íomhá: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Teip ar na socruithe a shábháil. Déan iarracht eile." - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "" @@ -3318,7 +3462,7 @@ msgstr "" msgid "Failed to submit appeal, please try again." msgstr "Teip ar achomharc a dhéanamh, bain triail eile as, le do thoil." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Teip ar bhalbhú an tsnáithe a athrú; bain triail eile as" @@ -3335,7 +3479,11 @@ msgstr "" msgid "Failed to update feeds" msgstr "Theip ar uasdátú na bhfothaí" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Teip ar shocruithe a uasdátú" @@ -3354,15 +3502,23 @@ msgstr "" msgid "Failed to verify handle. Please try again." msgstr "Theip ar dhearbhú an leasainm. Bain triail eile as." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Fotha" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Fotha le {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Roghchlár an fhotha" @@ -3371,35 +3527,39 @@ msgstr "Roghchlár an fhotha" msgid "Feed toggle" msgstr "Scoránú an fhotha" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Aiseolas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Seoladh an t-aiseolas!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Fothaí" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Is sainalgartaim iad na fothaí. Cruthaíonn úsáideoirí a bhfuil beagán taithí acu ar chódáil iad. <0/> le tuilleadh eolais a fháil." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Uasdátaíodh na fothaí!" @@ -3428,6 +3588,14 @@ msgstr "" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Ag cur crích air" @@ -3448,7 +3616,7 @@ msgstr "Aimsigh daoine le leanúint" msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Críochnaigh" @@ -3456,17 +3624,17 @@ msgstr "Críochnaigh" msgid "Fitness" msgstr "Folláine" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Solúbtha" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Lean" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Lean {0}" @@ -3518,7 +3686,7 @@ msgstr "" msgid "Follow all" msgstr "Lean iad uile" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Lean Ar Ais" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Lean Ar Ais" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Leanta ag <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Leanta ag <0>{0} agus {1, plural, one {duine amháin eile} two {beirt eile} few {# dhuine eile} many {# nduine eile} other {# duine eile}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Leanta ag <0>{0} agus <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Leanta ag <0>{0}, <1>{1}, agus {2, plural, one {duine amháin eile} two {beirt eile} few {# dhuine eile} many {# nduine eile} other {# duine eile}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Leantóirí de chuid @{0} a bhfuil aithne agat orthu" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Leantóirí a bhfuil aithne agat orthu" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Á leanúint" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Á leanúint" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Ag leanúint {0}" @@ -3579,8 +3751,8 @@ msgstr "" msgid "Following feed preferences" msgstr "Roghanna le haghaidh an fhotha Following" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Roghanna don Fhotha Following" @@ -3592,11 +3764,11 @@ msgstr "Leanann sé/sí thú" msgid "Follows You" msgstr "Leanann sé/sí thú" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Clófhoireann" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Clómhéid" @@ -3613,7 +3785,7 @@ msgstr "Ar chúiseanna slándála, beidh orainn cód dearbhaithe a chur chuig do msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "De bharr cúrsaí slándála, ní bheidh tú in ann breathnú air seo arís. Dá gcaillfeá an pasfhocal aipe, bheadh ort ceann nua a chruthú." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Don eispéireas is fearr, molaimid an cló téama." @@ -3643,11 +3815,15 @@ msgstr "Dearmadta?" msgid "Frequently Posts Unwanted Content" msgstr "Is minic a phostálann siad ábhar nach bhfuil de dhíth" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "Ó @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "Ó <0/>" @@ -3660,14 +3836,68 @@ msgstr "Gailearaí" msgid "Generate a starter pack" msgstr "Cruthaigh pacáiste fáilte" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Faigh cabhair" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "" @@ -3688,14 +3918,16 @@ msgstr "Tabhair gnúis do do phróifíl" msgid "Glaring violations of law or terms of service" msgstr "Deargshárú an dlí nó na dtéarmaí seirbhíse" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Téigh go comhrá le {0}" @@ -3779,8 +4017,8 @@ msgstr "Meáin Ghrafacha" msgid "Half way there!" msgstr "Leath bealaigh ann!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Leasainm" @@ -3797,7 +4035,7 @@ msgstr "Athraíodh an leasainm!" msgid "Handle too long. Please try a shorter one." msgstr "Tá an leasainm seo rófhada. Bain triail as ceann níos giorra." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Haptaic" @@ -3806,7 +4044,7 @@ msgstr "Haptaic" msgid "Harassment, trolling, or intolerance" msgstr "Ciapadh, trolláil, nó éadulaingt" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Haischlib" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "" -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Fadhb ort?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Cúnamh" @@ -3839,8 +4077,13 @@ msgstr "Tabhair le fios dúinn nach bot thú trí pictiúr a uaslódáil nó abh msgid "Here is your app password!" msgstr "Seo duit do phasfhocal aipe!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "" @@ -3848,16 +4091,16 @@ msgstr "" msgid "Hidden by your moderation settings." msgstr "" -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Liosta i bhfolach" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Liosta i bhfolach" msgid "Hide" msgstr "Cuir i bhfolach" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Cuir i bhfolach" @@ -3875,18 +4118,18 @@ msgstr "Cuir i bhfolach" msgid "Hide customization options" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Cuir an phostáil seo i bhfolach domsa" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Cuir an freagra i bhfolach do chách" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Cuir an freagra i bhfolach domsa" @@ -3894,12 +4137,12 @@ msgstr "Cuir an freagra i bhfolach domsa" msgid "Hide this card" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "An bhfuil fonn ort an phostáil seo a chur i bhfolach?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "An bhfuil fonn ort an freagra seo a chur i bhfolach?" @@ -3913,11 +4156,11 @@ msgstr "Cuir treochtaí i bhfolach" msgid "Hide trending topics?" msgstr "An bhfuil fonn ort treochtaí a chur i bhfolach?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Cuir liosta na gcuntas i bhfolach" @@ -3926,32 +4169,32 @@ msgstr "Cuir liosta na gcuntas i bhfolach" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm. Tharla fadhb éigin sa dul i dteagmháil le freastalaí an fhotha seo. Cuir é seo in iúl d’úinéir an fhotha, le do thoil." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm. Is cosúil nach bhfuil freastalaí an fhotha seo curtha le chéile i gceart. Cuir é seo in iúl d’úinéir an fhotha, le do thoil." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm. Is cosúil go bhfuil freastalaí an fhotha as líne. Cuir é seo in iúl d’úinéir an fhotha, le do thoil." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm. Thug freastalaí an fhotha drochfhreagra. Cuir é seo in iúl d’úinéir an fhotha, le do thoil." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm. Ní féidir linn an fotha seo a aimsiú. Is féidir gur scriosadh é." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmmm, is cosúil go bhfuil fadhb againn le lódáil na sonraí seo. Féach thíos le haghaidh tuilleadh sonraí. Má mhaireann an fhadhb seo, téigh i dteagmháil linn, le do thoil." @@ -3959,15 +4202,15 @@ msgstr "Hmmm, is cosúil go bhfuil fadhb againn le lódáil na sonraí seo. Féa msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmm, ní raibh muid in ann an tseirbhís modhnóireachta sin a lódáil." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Foighne ort! Tá físeáin á seoladh de réir a chéile, agus tá tú fós ag fanacht ar d'uain. Déan iarracht go luath!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Baile" @@ -3984,10 +4227,10 @@ msgstr "Soláthraí óstála" msgid "Hot" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Freagraí teo chun tosaigh" @@ -3996,10 +4239,6 @@ msgstr "Freagraí teo chun tosaigh" msgid "How should we open this link?" msgstr "Conas ar cheart dúinn an nasc seo a oscailt?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Tuigim" msgid "If alt text is long, toggles alt text expanded state" msgstr "Má tá an téacs malartach rófhada, athraíonn sé seo go téacs leathnaithe" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Ní duine fásta thú de réir dhlí do thíre, tá ar do thuismitheoir nó do chaomhnóir dlíthiúil na Téarmaí seo a léamh ar do shon." @@ -4031,11 +4270,11 @@ msgstr "Má scriosann tú an liosta seo, ní bheidh tú in ann é a fháil ar ai msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Má tá fearann de do chuid féin agat, is féidir é sin a úsáid mar leasainm, agus sa chaoi sin, d'aitheantas féin a dhearbhú. <0>Tuilleadh eolais." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Má bhaineann tú an phostáil seo, ní bheidh tú in ann í a fháil ar ais." @@ -4047,6 +4286,10 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Más mian leat do phasfhocal a athrú, seolfaimid cód duit chun dearbhú gur leatsa an cuntas seo." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "" @@ -4091,13 +4334,41 @@ msgstr "Pearsanú nó maíomh mícheart maidir le cé atá ann nó a gceangal" msgid "Impersonation, misinformation, or false claims" msgstr "Pearsanú, mífhaisnéis, nó ráitis bhréagacha" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Teachtaireachtaí míchuí nó nascanna graosta" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "" @@ -4105,7 +4376,7 @@ msgstr "" msgid "Incorrect username or password" msgstr "Leasainm nó pasfhocal míchruinn" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Cuir isteach an cód a seoladh chuig do ríomhphost leis an bpasfhocal a athrú" @@ -4113,7 +4384,7 @@ msgstr "Cuir isteach an cód a seoladh chuig do ríomhphost leis an bpasfhocal a msgid "Input confirmation code for account deletion" msgstr "Cuir isteach an cód dearbhaithe leis an gcuntas a scriosadh" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Cuir isteach an pasfhocal nua" @@ -4129,10 +4400,14 @@ msgstr "Cuir isteach an cód a chuir muid chugat i dteachtaireacht r-phoist" msgid "Interaction limited" msgstr "Idirghníomhaíocht teoranta" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Tá an cód 2FA seo neamhbhailí." msgid "Invalid handle. Please try a different one." msgstr "Leasainm neamhbhailí. Bain triail as ceann eile." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Taifead postála atá neamhbhailí nó gan bhunús" @@ -4158,7 +4433,7 @@ msgstr "Cód Deimhnithe Neamhbhailí" msgid "Invite a Friend" msgstr "Tabhair cuireadh chuig cara leat" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Cód cuiridh" @@ -4186,15 +4461,15 @@ msgstr "Tabhair cuireadh do do chuid cairde na fothaí agus na daoine is fearr l msgid "Invites, but personal" msgstr "Cuirí, ach pearsanta" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Tá. Tá sé ceart" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Níl ann ach tusa anois! Cuardaigh thuas le tuilleadh daoine a chur le do phacáiste fáilte." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "ID an Jab: {0}" @@ -4220,11 +4495,27 @@ msgstr "Glac páirt sa chomhrá" msgid "Journalism" msgstr "Iriseoireacht" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Lipéad curtha ag {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Lipéadaithe ag an údar." @@ -4237,7 +4528,7 @@ msgstr "Lipéid" msgid "Labels added" msgstr "Cuireadh lipéid leis" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Nótaí faoi úsáideoirí nó ábhar is ea lipéid. Is féidir úsáid a bhaint astu leis an líonra a cheilt, a chatagóiriú, agus fainic a chur air." @@ -4253,22 +4544,30 @@ msgstr "Lipéid ar do chuid ábhair" msgid "Language selection" msgstr "Rogha teanga" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Socruithe teanga" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Teangacha" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Níos Mó" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Is Déanaí" @@ -4282,7 +4581,6 @@ msgstr "tuilleadh eolais" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "" @@ -4290,6 +4588,10 @@ msgstr "" msgid "Learn More" msgstr "Le tuilleadh a fhoghlaim" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Tuilleadh eolais maidir le Bluesky" @@ -4298,15 +4600,23 @@ msgstr "Tuilleadh eolais maidir le Bluesky" msgid "Learn more about self hosting your PDS." msgstr "Tuilleadh eolais faoi do fhreastalaí pearsanta féin a óstáil." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Foghlaim níos mó faoin modhnóireacht a dhéantar ar an ábhar seo." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Le tuilleadh a fhoghlaim faoin rabhadh seo" @@ -4316,12 +4626,16 @@ msgstr "Le tuilleadh a fhoghlaim faoin rabhadh seo" msgid "Learn more about verification on Bluesky" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Le tuilleadh a fhoghlaim faoi céard atá poiblí ar Bluesky" -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Tuilleadh eolais." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Éirigh as an gcomhrá" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Fág iad uile gan tic le teanga ar bith a fheiceáil." +msgid "Leave them all unselected to see any language." +msgstr "" -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Ag fágáil slán ag Bluesky" @@ -4370,7 +4685,7 @@ msgstr "Ar aghaidh linn!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Sorcha" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Moladh" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Mol ({0, plural, one {# mholadh} two {# mholadh} few {# mholadh} many {# moladh} other {# moladh}})" @@ -4397,6 +4712,10 @@ msgstr "Mol 10 bpostáil." msgid "Like 10 posts to train the Discover feed" msgstr "Mol 10 bpostáil leis an bhfotha Discover a thraenáil" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Mol an fotha seo" @@ -4405,8 +4724,8 @@ msgstr "Mol an fotha seo" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Molta ag" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Molta ag" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Molta ag {0, plural, one {úsáideoir amháin} two {# úsáideoir} few {# úsáideoir} many {# n-úsáideoir} other {# úsáideoir}}" @@ -4428,20 +4747,36 @@ msgstr "Molta ag {0, plural, one {úsáideoir amháin} two {# úsáideoir} few { msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Molta ag {likeCount, plural, one {úsáideoir amháin} two {# úsáideoir} few {# úsáideoir} many {# n-úsáideoir} other {# úsáideoir}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Moltaí" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Moltaí don phostáil seo" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Líneach" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Liosta" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Liosta blocáilte" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Liosta le {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "Liosta le <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Liosta de do chuid" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Liosta nach bhfuil balbhaithe níos mó" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Liostaí" @@ -4537,7 +4876,7 @@ msgstr "Lódáil tuilleadh" msgid "Load more suggested feeds" msgstr "Lódáil tuilleadh fothaí molta" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Lódáil fógraí nua" @@ -4552,11 +4891,11 @@ msgstr "Lódáil postálacha nua" msgid "Loading..." msgstr "Ag lódáil …" -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Logleabhar" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Feiceálacht le linn a bheith logáilte amach" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "@sawaratsuki.bsky.social a rinne an lógó" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "<0>@sawaratsuki.bsky.social a rinne an lógó" @@ -4573,7 +4912,7 @@ msgstr "<0>@sawaratsuki.bsky.social a rinne an lógó" msgid "Long press to open tag menu for #{tag}" msgstr "Brú fada le clár na clibe le haghaidh #{tag} a oscailt" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Tá cuma XXXXX-XXXXX air" @@ -4597,7 +4936,7 @@ msgstr "" msgid "Make one for me" msgstr "Déan ceann domsa" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Bí cinnte go bhfuil tú ag iarraidh cuairt a thabhairt ar an áit sin!" @@ -4606,7 +4945,7 @@ msgstr "Bí cinnte go bhfuil tú ag iarraidh cuairt a thabhairt ar an áit sin!" msgid "Manage saved feeds" msgstr "Bainistigh na fothaí a shábháil tú" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "" @@ -4614,9 +4953,9 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "Bainistigh do chuid clibeanna agus na focail a bhalbhaigh tú" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "" @@ -4625,15 +4964,13 @@ msgstr "" msgid "Mark as read" msgstr "Marcáil léite" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "" @@ -4645,19 +4982,26 @@ msgstr "Meáin" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Meáin a d'fhéadfadh a bheith mí-oiriúnach nó a chuirfeadh isteach ar dhaoine áirithe." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "úsáideoirí luaite" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Úsáideoirí luaite" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Luaite" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Clár" @@ -4665,7 +5009,7 @@ msgstr "Clár" msgid "Message {0}" msgstr "Teachtaireacht {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Scriosadh an teachtaireacht" @@ -4674,11 +5018,11 @@ msgstr "Scriosadh an teachtaireacht" msgid "Message deleted" msgstr "Scriosadh an teachtaireacht" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Teachtaireacht ón bhfreastalaí: {0}" @@ -4691,19 +5035,23 @@ msgstr "Réimse ionchur teachtaireachtaí" msgid "Message is too long" msgstr "Tá an teachtaireacht rófhada" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Teachtaireachtaí" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Cuntas atá Míthreorach" msgid "Misleading Post" msgstr "Postáil atá Míthreorach" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Modhnóireacht" @@ -4725,17 +5073,17 @@ msgstr "Modhnóireacht" msgid "Moderation details" msgstr "Mionsonraí modhnóireachta" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Liosta modhnóireachta le {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Liosta modhnóireachta le <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Liosta modhnóireachta leat" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Liosta modhnóireachta uasdátaithe" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Liostaí modhnóireachta" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Liostaí modhnóireachta" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "socruithe modhnóireachta" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Stádais modhnóireachta" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Uirlisí modhnóireachta" @@ -4775,7 +5123,7 @@ msgstr "Uirlisí modhnóireachta" msgid "Moderator has chosen to set a general warning on the content." msgstr "Chuir an modhnóir rabhadh ginearálta ar an ábhar." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Tuilleadh" @@ -4790,13 +5138,13 @@ msgstr "Tuilleadh fothaí" msgid "More options" msgstr "Tuilleadh roghanna" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Líon is mó moltaí chun tosaigh" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Freagraí a fuair an méid is mó moltaí ar dtús" @@ -4808,8 +5156,8 @@ msgstr "Scannáin" msgid "Music" msgstr "Ceol" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Balbhaigh" @@ -4819,8 +5167,8 @@ msgstr "Balbhaigh" msgid "Mute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Balbhaigh an focal seo i gclibeanna amháin" msgid "Mute this word until you unmute it" msgstr "Balbhaigh an focal seo go ndíbhalbhóidh mé é" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Balbhaigh an snáithe seo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Balbhaigh focail ⁊ clibeanna" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Cuntais a balbhaíodh" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Cuntais a balbhaíodh" @@ -4898,7 +5246,7 @@ msgstr "Baintear na postálacha ó na cuntais a chuir tú i bhfolach as d’fhot msgid "Muted by \"{0}\"" msgstr "Curtha i bhfolach ag \"{0}\"" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Focail ⁊ clibeanna a cuireadh i bhfolach" @@ -4911,7 +5259,7 @@ msgstr "Tá an balbhú príobháideach. Is féidir leis na cuntais a bhalbhaigh msgid "My Birthday" msgstr "Mo Bhreithlá" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Mo Chuid Fothaí" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Nádúr" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Téigh go {0}" @@ -4958,11 +5306,11 @@ msgstr "Téann sé seo chuig an gcéad scáileán eile" msgid "Navigates to your profile" msgstr "Téann sé seo chuig do phróifíl" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "An gcaithfidh tú é a athrú?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "An bhfuil tú ag iarraidh sárú cóipchirt a thuairisciú?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Nua" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Comhrá nua" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Teachtaireachtaí nua" msgid "New Moderation List" msgstr "Liosta modhnóireachta nua" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Pasfhocal Nua" @@ -5029,7 +5396,7 @@ msgstr "Pasfhocal Nua" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Postáil nua" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Postáil nua" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Dialóg: eolas faoi úsáideoir nua" @@ -5054,10 +5429,14 @@ msgstr "Dialóg: eolas faoi úsáideoir nua" msgid "New User List" msgstr "Liosta Nua d’Úsáideoirí" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Na freagraí is déanaí ar dtús" @@ -5071,15 +5450,15 @@ msgstr "Nuacht" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "Gan Phainéal DNS" msgid "No expiry set" msgstr "" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Níor aimsíodh GIFanna speisialta. D'fhéadfadh sé gur tharla fadhb le Tenor." @@ -5119,32 +5498,35 @@ msgstr "" msgid "No likes yet" msgstr "Gan moladh fós" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Ní leantar {0} níos mó" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Níl aon teachtaireacht ann fós" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Níl aon fhógra ann fós!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Duine ar bith" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Is é an t-údar amháin atá in ann an phostáil seo a athlua." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Gan phostáil fós." @@ -5171,7 +5553,7 @@ msgstr "Toradh ar bith" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Gan torthaí" @@ -5179,9 +5561,9 @@ msgstr "Gan torthaí" msgid "No results found for \"{query}\"" msgstr "Gan torthaí ar “{query}”" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Gan torthaí ar {query}" @@ -5189,7 +5571,7 @@ msgstr "Gan torthaí ar {query}" msgid "No results." msgstr "" -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Gan torthaí ar \"{search}\"." @@ -5198,7 +5580,7 @@ msgstr "Gan torthaí ar \"{search}\"." msgid "No thanks" msgstr "Níor mhaith liom é sin." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Duine ar bith" @@ -5223,59 +5605,76 @@ msgstr "Ní fuarthas éinne. Bain triail as duine éigin eile a chuardach." msgid "Non-sexual Nudity" msgstr "Lomnochtacht Neamhghnéasach" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Ní bhfuarthas é sin" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Nóta faoi roinnt" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nod leat: is gréasán oscailte poiblí Bluesky. Ní chuireann an socrú seo srian ar fheiceálacht do chuid ábhair ach amháin ar aip agus suíomh Bluesky. Is féidir nach gcloífidh aipeanna eile leis an socrú seo. Is féidir go dtaispeánfar do chuid ábhair d’úsáideoirí atá logáilte amach ar aipeanna agus suíomhanna eile." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Tada anseo" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Scagairí fógra" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Socruithe fógra" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Socruithe Fógra" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Fuaimeanna fógra" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Fuaimeanna Fógra" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Fógraí" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "anois" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Lomnochtacht nó ábhar do dhaoine fásta nach bhfuil an lipéad sin air" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "As" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Úps!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "OK" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Maith go leor" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Na freagraí is sine ar dtús" @@ -5331,19 +5736,19 @@ msgstr "Na freagraí is sine ar dtús" msgid "on<0><1/><2><3/>" msgstr "ar<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Atosú an chláraithe" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "Téacs malartach de dhíth ar GIF nó ar GIFanna." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Tá téacs malartach de dhíth ar íomhá amháin nó níos mó acu." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Téacs malartach de dhíth ar fhíseán nó ar fhíseáin" @@ -5351,13 +5756,15 @@ msgstr "Téacs malartach de dhíth ar fhíseán nó ar fhíseáin" msgid "Only .jpg and .png files are supported" msgstr "Ní oibríonn ach comhaid .jpg agus .png" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Ní féidir ach le {0} freagra a thabhairt." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Níl ann ach litreacha, uimhreacha, agus fleiscíní" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Ní thacaítear ach le comhaid íomhá" msgid "Only WebVTT (.vtt) files are supported" msgstr "Ní oibríonn ach comhaid WebVTT (.vtt)" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Úps! Theip ar rud éigin!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Úps!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Oscail an roghchlár tarraiceáin" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Oscail roghnóir na n-emoji" @@ -5416,7 +5822,7 @@ msgstr "Oscail roghchlár na bhfothaí" msgid "Open full emoji list" msgstr "" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Oscail nasc le {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Oscail nasc le {niceUrl}" msgid "Open message options" msgstr "Oscail na roghanna teachtaireachta" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Oscail leathanach chun modhnóireacht a dhífhabhtú" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Oscail socruithe na gclibeanna agus na bhfocal a bhalbhaigh tú" @@ -5453,16 +5859,16 @@ msgstr "" msgid "Open starter pack menu" msgstr "Oscail clár an phacáiste fáilte" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Oscail leathanach an Storybook" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Oscail logleabhar an chórais" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Osclaíonn sé seo {numItems} rogha" @@ -5490,11 +5896,11 @@ msgstr "Osclaíonn sé seo an ceamara ar an ngléas" msgid "Opens captions and alt text dialog" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Osclaíonn sé seo an t-eagarthóir" @@ -5502,7 +5908,7 @@ msgstr "Osclaíonn sé seo an t-eagarthóir" msgid "Opens device photo gallery" msgstr "Osclaíonn sé seo gailearaí na ngrianghraf ar an ngléas" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "" @@ -5520,15 +5926,19 @@ msgstr "" msgid "Opens GIF select dialog" msgstr "Osclaíonn sé seo fuinneog chun GIF a roghnú" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Osclaíonn sé seo liosta na gcód cuiridh" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "" @@ -5536,12 +5946,8 @@ msgstr "" msgid "Opens password reset form" msgstr "Osclaíonn sé seo an fhoirm leis an bpasfhocal a athrú" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Osclaíonn sé seo an suíomh gréasáin atá nasctha" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Osclaíonn sé an phróifíl seo" @@ -5558,7 +5964,7 @@ msgstr "Is féidir tuilleadh eolais a chur ar fáil thíos:" msgid "Options:" msgstr "Roghanna:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Nó cuir na roghanna seo le chéile:" @@ -5600,6 +6006,10 @@ msgstr "Cuntas eile" msgid "Other..." msgstr "Eile…" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "" @@ -5608,7 +6018,7 @@ msgstr "" msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Tá ár modhnóirí tar éis athbhreithniú a dhéanamh ar thuairiscí. Chinn siad gan ligean duit comhráite a úsáid ar Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Leathanach gan aimsiú" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Leathanach gan aimsiú" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Pasfhocal uasdátaithe" msgid "Password updated!" msgstr "Pasfhocal uasdátaithe!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Sos" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Cuir an físeán ar shos" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Daoine" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Na daoine atá leanta ag @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Na leantóirí atá ag @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "" @@ -5704,12 +6119,12 @@ msgstr "Greamaigh le baile" msgid "Pin to Home" msgstr "Greamaigh le Baile" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Greamaigh le do phróifíl" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Greamaithe" @@ -5718,7 +6133,7 @@ msgstr "Greamaithe" msgid "Pinned {0} to Home" msgstr "Greamaíodh {0} le Baile" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Fothaí greamaithe" @@ -5726,38 +6141,38 @@ msgstr "Fothaí greamaithe" msgid "Pinned to your feeds" msgstr "Greamaithe le do chuid fothaí" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Seinn" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Seinn {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Seinn an físeán" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Seinn an físeán" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Seinneann sé seo an GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "" @@ -5765,12 +6180,16 @@ msgstr "" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Roghnaigh do leasainm, le do thoil." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Roghnaigh do phasfhocal, le do thoil." @@ -5782,7 +6201,8 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Déan an captcha, le do thoil." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "" @@ -5804,6 +6224,7 @@ msgstr "Cuir isteach ainm uathúil ar an bpasfhocal aipe seo, nó bain úsáid a msgid "Please enter a valid code." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "" @@ -5812,7 +6233,11 @@ msgstr "" msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Cuir focal, clib, nó frása inghlactha isteach le balbhú" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "" #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Cuir isteach do sheoladh ríomhphoist, le do thoil." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Cuir isteach do chód cuiridh." @@ -5853,6 +6278,19 @@ msgstr "Abair linn, le do thoil, cén fáth a gcreideann tú gur chuir {0} an li msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Mínigh, le do thoil, an fáth a gcreideann tú go bhfuil sé mícheart nach ligtear duit comhráite a úsáid" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "" @@ -5870,9 +6308,9 @@ msgstr "Logáil isteach mar @{0}" msgid "Please verify your email" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Dearbhaigh do ríomhphost, le do thoil." +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Polaitíocht" msgid "Porn" msgstr "Pornagrafaíocht" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Postáil" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Postáil" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Postáil" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Postáil Uile" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Postáil ó {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Postáil ó @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Scriosadh an phostáil" @@ -5919,11 +6362,14 @@ msgstr "Scriosadh an phostáil" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Níor uaslódáladh an phostáil. Seiceáil do cheangal leis an idirlíon agus bain triail eile as." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Cuireadh an phostáil i bhfolach" @@ -5937,11 +6383,11 @@ msgstr "Postáil nach bhfuil le feiceáil de bharr focail a bhalbhaigh tú" msgid "Post Hidden by You" msgstr "Postáil a chuir tú i bhfolach" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Socruithe idirghníomhaíochta na postála" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "" @@ -5954,8 +6400,10 @@ msgstr "Teanga postála" msgid "Post Languages" msgstr "Teangacha postála" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Ní bhfuarthas an phostáil" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Díghreamaíodh an phostáil" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Postálacha" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Is féidir leat postálacha a bhalbhú bunaithe ar an téacs, clibeanna, nó an dá rud. Molaimid focail choitianta a bhíonn i go leor postálacha a sheachaint, toisc gur féidir nach dtaispeánfaí aon phostáil dá bharr." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Cuireadh na postálacha i bhfolach" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Is féidir go bhfuil an nasc seo míthreorach." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Sábháladh an rogha" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Brúigh le iarracht a thabhairt ar nascadh arís" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Brúigh le iarracht eile a dhéanamh" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Brúigh leis na daoine a leanann an cuntas seo a leanann tú féin a fheiceáil" @@ -6015,40 +6469,46 @@ msgstr "An íomhá roimhe seo" msgid "Primary Language" msgstr "Príomhtheanga" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Cuir na cuntais a leanaim chun tosaigh" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Fógraí tábhachtacha" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Príobháideacht" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Príobháideacht agus slándáil" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Príobháideacht agus Slándáil" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Polasaí Príobháideachta" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Físeán á phróiseáil..." @@ -6062,15 +6522,14 @@ msgstr "Á phróiseáil..." msgid "profile" msgstr "próifíl" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Próifíl" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Próifíl uasdátaithe" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Liostaí poiblí inroinnte ar féidir leo fothaí a bheathú." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "Cóipeáladh an cód QR sa ghearrthaisce" @@ -6119,44 +6594,52 @@ msgstr "Íoslódáladh an cód QR!" msgid "QR code saved to your camera roll!" msgstr "Sábháladh an cód QR i do rolla cheamara!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Postáil athluaite" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "Athcheanglaíodh an phostáil athluaite" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "Dícheanglaíodh an phostáil athluaite" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Ní féidir postálacha a athlua" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Socruithe maidir le postálacha athluaite" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Postálacha athluaite" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Postálacha athluaite den phostáil seo" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Randamach" @@ -6164,8 +6647,8 @@ msgstr "Randamach" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Rinne tú an iomarca iarrachtaí do leasainm a athrú taobh istigh de thréimhse ghearr. Fan cúpla nóiméad sula ndéanann tú iarracht eile." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Athcheangail an phostáil athluaite" @@ -6177,30 +6660,42 @@ msgstr "" msgid "Reactivate your account" msgstr "Athghníomhaigh do chuntas" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Léigh blag Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Léigh Polasaí Príobháideachta Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Léigh Téarmaí Seirbhíse Bluesky" @@ -6213,6 +6708,14 @@ msgstr "" msgid "Reason:" msgstr "Fáth:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Cuardaigh a Rinneadh le Déanaí" @@ -6234,8 +6737,8 @@ msgstr "" msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Athlódáil comhráite" @@ -6244,10 +6747,9 @@ msgstr "Athlódáil comhráite" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Scrios" @@ -6259,17 +6761,17 @@ msgstr "Bain {displayName} den phacáiste fáilte" msgid "Remove {historyItem}" msgstr "" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Bain an cuntas de" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Bain an ceangaltán de" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Bain an tAbhatár Amach" @@ -6284,24 +6786,22 @@ msgstr "Bain an leabú" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Bain an fotha de" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "An bhfuil fonn ort an fotha a bhaint?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Bain de mo chuid fothaí" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "An bhfuil fonn ort é a bhaint den mhearliosta?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "Bain de mo chuid fothaí sábháilte" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Bain an íomhá de" @@ -6332,12 +6831,8 @@ msgstr "Bain focal balbhaithe de do liosta" msgid "Remove profile" msgstr "Bain an phróifíl" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Bain an phostáil athluaite" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Scrios an athphostáil" @@ -6345,7 +6840,7 @@ msgstr "Scrios an athphostáil" msgid "Remove subtitle file" msgstr "Bain an comhad fotheideal" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Bain an fotha seo de do chuid fothaí sábháilte" @@ -6364,11 +6859,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Bainte ag an údar" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Bainte agat" @@ -6377,10 +6872,6 @@ msgstr "Bainte agat" msgid "Removed from list" msgstr "Baineadh den liosta é" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Baineadh de do chuid fothaí é" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Baineadh de do chuid fothaí sábháilte é" @@ -6395,34 +6886,36 @@ msgstr "Baineadh de do chuid fothaí é" msgid "Removed verification" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Baineann sé seo an phostáil athluaite" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Cuir an fotha Discover ina áit" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Freagraí" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Cuireadh bac ar fhreagraí" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Ní féidir freagraí a thabhairt ar an bpostáil seo." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Freagair" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Freagair ({0, plural, one {# fhreagra} two {# fhreagra} few {# fhreagra} many {# bhfreagra} other {# freagra}})" @@ -6436,50 +6929,55 @@ msgstr "Freagra a chuir údar an tsnáithe i bhfolach" msgid "Reply Hidden by You" msgstr "Freagra a chuir tusa i bhfolach" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Socruithe freagraí" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "Is é údar an tsnáithe a roghnaíonn socruithe a bhaineann le freagraí" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Freagraí a shórtáil" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Freagra ar <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Freagra ar phostáil bhlocáilte" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Freagra ar phostáil" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Freagra ort" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Nuashonraíodh infheictheacht na bhfreagraí" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Cuireadh an freagra i bhfolach" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Déan gearán faoi fhotha" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Tuairiscigh an teachtaireacht seo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Déan gearán faoi phostáil" @@ -6567,25 +7065,26 @@ msgstr "Tuairiscigh an pacáiste fáilte seo" msgid "Report this user" msgstr "Déan gearán faoin úsáideoir seo" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Athphostáil" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Athphostáil" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Athphostáil ({0, plural, one {# athphostáil} two {# athphostáil} few {# athphostáil} many {# n-athphostáil} other {# athphostáil}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Athphostáil nó athluaigh an phostáil" @@ -6594,26 +7093,38 @@ msgstr "Athphostáil nó athluaigh an phostáil" msgid "Reposted By" msgstr "Athphostáilte ag" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Athphostáilte ag {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Athphostáilte ag <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Athphostáilte agat" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Athphostálacha den phostáil seo" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" msgstr "" #: src/view/com/modals/ChangePassword.tsx:253 @@ -6621,8 +7132,8 @@ msgstr "" msgid "Request Code" msgstr "Iarr Cód" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Bíodh téacs malartach ann roimh phostáil i gcónaí" @@ -6630,7 +7141,7 @@ msgstr "Bíodh téacs malartach ann roimh phostáil i gcónaí" msgid "Require an email code to sign in to your account." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Riachtanach don soláthraí seo" @@ -6642,10 +7153,6 @@ msgstr "Riachtanach i do réigiún" msgid "Resend" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Athsheol an ríomhphost" msgid "Resend Verification Email" msgstr "Athsheol an ríomhphost dearbhaithe" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Cód athshocraithe" @@ -6667,8 +7180,8 @@ msgstr "Cód athshocraithe" msgid "Reset Code" msgstr "Cód Athshocraithe" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Athshocraigh an próiseas cláraithe" @@ -6687,21 +7200,23 @@ msgstr "Baineann sé seo triail eile as an ngníomh is déanaí, ar theip air" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Bain triail eile as" @@ -6721,19 +7236,19 @@ msgstr "Filleann sé seo abhaile" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Filleann sé seo ar an leathanach roimhe seo" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Sábháil" @@ -6762,15 +7276,13 @@ msgstr "Sábháil" msgid "Save birthday" msgstr "Sábháil do bhreithlá" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Sábháil na hathruithe" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Sábháil na hAthruithe" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Sábháil an cód QR" msgid "Save to my feeds" msgstr "Sábháil i mo chuid fothaí" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Fothaí Sábháilte" @@ -6802,18 +7314,14 @@ msgstr "Fothaí Sábháilte" msgid "Saved to your feeds" msgstr "Sábháilte le mo chuid fothaí" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Sábhálann sé seo aon athrú ar do phróifíl" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Sábhálann sé seo na socruithe le haghaidh íomhánna a laghdú" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Abair heileo!" @@ -6826,16 +7334,16 @@ msgstr "Eolaíocht" msgid "Scroll to top" msgstr "Fill ar an mbarr" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Cuardaigh" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -6861,7 +7369,7 @@ msgstr "Déan cuardach ar “{query}”" msgid "Search for \"{searchText}\"" msgstr "Déan cuardach ar \"{searchText}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Cuardaigh fothaí ar mhaith leat moladh do dhaoine eile." @@ -6877,10 +7385,14 @@ msgstr "" msgid "Search for posts, users, or feeds" msgstr "" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Cuardaigh GIFanna" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "" @@ -6890,12 +7402,12 @@ msgstr "" msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Cuardaigh próifílí" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Cuardaigh Tenor" @@ -6903,7 +7415,7 @@ msgstr "Cuardaigh Tenor" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "" @@ -6912,10 +7424,6 @@ msgstr "" msgid "Security step required" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Céim Slándála de dhíth" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "" @@ -6936,14 +7444,31 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Féach ar phostanna le Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Féach ar an treoirleabhar seo" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Sleamhnán cuardaigh. Úsáid na saigheadeochracha chun dul ar aghaidh nó ar gcúl, agus an spásbharra chun seinm nó cur ar sos" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Roghnaigh dath" @@ -6988,7 +7513,7 @@ msgstr "Roghnaigh ó chuntas atá ann" msgid "Select GIF" msgstr "Roghnaigh GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Roghnaigh GIF \"{0}\"" @@ -6996,6 +7521,11 @@ msgstr "Roghnaigh GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "Cá fhad a bheidh an focal seo balbhaithe?" +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Roghnaigh teanga..." @@ -7004,7 +7534,7 @@ msgstr "Roghnaigh teanga..." msgid "Select languages" msgstr "Roghnaigh teangacha" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "" @@ -7045,12 +7575,12 @@ msgstr "" msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Roghnaigh na teangacha ba mhaith leat a fheiceáil i do chuid fothaí. Mura roghnaíonn tú, taispeánfar ábhar i ngach teanga duit." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Roghnaigh do dháta breithe" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Roghnaigh na rudaí a bhfuil suim agat iontu as na roghanna thíos" @@ -7058,7 +7588,11 @@ msgstr "Roghnaigh na rudaí a bhfuil suim agat iontu as na roghanna thíos" msgid "Select your preferred language for translations in your feed." msgstr "Do rogha teanga nuair a dhéanfar aistriúchán ar ábhar i d'fhotha." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "" @@ -7066,17 +7600,9 @@ msgstr "" msgid "Send a neat website!" msgstr "Seol suíomh gréasáin spéisiúil!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Seol ríomhphost dearbhaithe" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Seol ríomhphost" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Seol ríomhphost" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Seol aiseolas" @@ -7095,7 +7621,7 @@ msgstr "Seol aiseolas" msgid "Send message" msgstr "Seol teachtaireacht" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "" @@ -7114,20 +7640,20 @@ msgstr "Seol an tuairisc" msgid "Send report to {0}" msgstr "Seol an tuairisc chuig {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Seol ríomhphost dearbhaithe" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Seol mar theachtaireacht dhíreach" @@ -7143,7 +7669,7 @@ msgstr "Seoladh an fhreastalaí" msgid "Set app icon to {0}" msgstr "Athraigh deilbhín na haipe go {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Socraigh do bhreithlá" @@ -7159,13 +7685,57 @@ msgstr "Socraigh do chuntas" msgid "Sets email for password reset" msgstr "Socraíonn sé seo an seoladh ríomhphoist le haghaidh athshocrú an phasfhocail" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Socruithe" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "Inis scéal suimiúil!" msgid "Share a fun fact!" msgstr "Roinn rud éigin fútsa féin!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Comhroinn mar sin féin" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Comhroinn an nasc" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Comhroinn Nasc" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Dialóg le nasc a roinnt" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "" @@ -7247,8 +7812,8 @@ msgstr "Roinn an pacáiste fáilte seo" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Roinn an pacáiste fáilte seo agus cuidigh le daoine páirt a ghlacadh i do phobal ar Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "" msgid "Share your favorite feed!" msgstr "Roinn an fotha is fearr leat!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Tástáil Roghanna Comhroinnte" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Roinneann sé seo na suíomh gréasáin atá nasctha" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Taispeáin" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Taispeáin an téacs malartach" @@ -7303,8 +7864,8 @@ msgstr "" msgid "Show hidden replies" msgstr "Taispeáin freagraí i bhfolach" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Níos lú den sórt seo" @@ -7312,55 +7873,63 @@ msgstr "Níos lú den sórt seo" msgid "Show list anyway" msgstr "Taispeáin an liosta mar sin féin" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Tuilleadh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Níos mó den sórt seo" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Taispeáin freagraí balbhaithe" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Taispeáin postálacha athluaite" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Taispeáin freagraí" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Taispeáin freagraí mar" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Taispeáin freagraí i snáitheanna" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Taispeáin freagraí ó na daoine a leanaim roimh aon fhreagra eile" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Taispeáin freagra do chách" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Taispeáin athphostálacha" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Taispeáin samplaí ó do chuid fothaí sábháilte san fhotha Following" @@ -7372,16 +7941,17 @@ msgstr "Taispeáin rabhadh" msgid "Show warning and filter from feeds" msgstr "Taispeáin rabhadh agus scag ó na fothaí é" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "" @@ -7390,14 +7960,15 @@ msgstr "" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "" msgid "Sign in to Bluesky or create a new account" msgstr "" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Logáil amach" @@ -7444,8 +8020,8 @@ msgstr "Logáil amach" msgid "Sign Out" msgstr "" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Logáil amach?" @@ -7459,12 +8035,12 @@ msgstr "Caithfidh tú logáil isteach" msgid "Signed in as @{0}" msgstr "Logáilte isteach mar @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Cuntais eile atá cosúil leis seo" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Ná bac leis" @@ -7472,12 +8048,11 @@ msgstr "Ná bac leis" msgid "Skip this flow" msgstr "Ná bac leis an bpróiseas seo" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Níos Lú" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "" @@ -7490,11 +8065,11 @@ msgstr "Forbairt Bogearraí" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Fothaí eile a mbeadh suim agat iontu" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Tá daoine áirithe in ann freagra a thabhairt" @@ -7510,10 +8085,11 @@ msgstr "" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "" -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Theip ar rud éigin" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Chuaigh rud éigin amú, bain triail eile as" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Chuaigh rud éigin ó rath. Bain triail eile as." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Theip ar rud éigin!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "" @@ -7539,20 +8118,23 @@ msgstr "" msgid "Something wrong? Let us know." msgstr "Rud éigin mícheart? Abair linn." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Sórtáil freagraí" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Sórtáil freagraí de réir" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Sórtáil freagraí ar an bpostáil chéanna de réir:" @@ -7579,7 +8161,7 @@ msgstr "Turscar; an iomarca tagairtí nó freagraí" msgid "Sports" msgstr "Spórt" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "" @@ -7601,9 +8183,9 @@ msgstr "Cuir tús le daoine a leanúint!" msgid "Start chat with {displayName}" msgstr "Tosaigh comhrá le {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Pacáiste Fáilte" @@ -7611,12 +8193,12 @@ msgstr "Pacáiste Fáilte" msgid "Starter pack by {0}" msgstr "Pacáiste fáilte le {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Pacáiste fáilte le <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Pacáiste fáilte a chruthaigh tusa" @@ -7638,19 +8220,21 @@ msgstr "Tig leat na fothaí agus na daoine is fearr leat a roinnt le do chuid ca msgid "Status Page" msgstr "Leathanach Stádais" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Céim {0} as {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Stóráil scriosta, tá ort an aip a atosú anois." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "" @@ -7676,10 +8260,14 @@ msgstr "" msgid "Subscribe" msgstr "Liostáil" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Glac síntiús le @{0} leis na lipéid seo a úsáid:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Glac síntiús le lipéadóir" @@ -7692,8 +8280,12 @@ msgstr "Glac síntiús leis an lipéadóir seo" msgid "Subscribe to this list" msgstr "Liostáil leis an liosta seo" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "D'éirigh leis!" @@ -7705,7 +8297,7 @@ msgstr "" msgid "Suggested Accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Molta duit" @@ -7714,26 +8306,26 @@ msgstr "Molta duit" msgid "Suggestive" msgstr "Gáirsiúil" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Tacaíocht" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Athraigh an cuntas" @@ -7742,24 +8334,24 @@ msgstr "Athraigh an cuntas" msgid "Switch Account" msgstr "Athraigh an cuntas" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Córas" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Logleabhar an chórais" @@ -7767,6 +8359,18 @@ msgstr "Logleabhar an chórais" msgid "Tags only" msgstr "Clibeanna amháin" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Abair beagán níos mó" msgid "Terms" msgstr "Téarmaí" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Téarmaí Seirbhíse" @@ -7848,10 +8454,6 @@ msgstr "Réimse téacs" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Go raibh maith agat! D'éirigh linn do sheoladh ríomhphoist a dheimhniú." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Go raibh maith agat. Seoladh do thuairisc." @@ -7864,28 +8466,28 @@ msgstr "Go raibh maith agat! D'éirigh linn do sheoladh ríomhphoist a dheimhni msgid "That contains the following:" msgstr "Ina bhfuil an méid seo a leanas:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Tá an leasainm sin in úsáid cheana féin." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Níorbh fhéidir an pacáiste fáilte sin a aimsiú." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Sin é é!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "Beidh an cuntas seo in ann caidreamh a dhéanamh leat tar éis duit é a dhíbhlocáil" @@ -7900,7 +8502,7 @@ msgstr "Atosófar an aip" msgid "The author of this thread has hidden this reply." msgstr "Chuir údar an tsnáithe seo an freagra seo i bhfolach." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Feidhmchlár gréasáin Bluesky" @@ -7920,10 +8522,6 @@ msgstr "An fotha Discover" msgid "The Discover feed now knows what you like" msgstr "Tá an fotha Discover eolach ar a bhfuil ag taitneamh leat anois" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "" - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "Tá an t-eispéireas níos fearr san aip. Íoslódáil Bluesky anois agus tosóidh muid arís san áit ar stop tú." @@ -7944,8 +8542,16 @@ msgstr "Cuireadh na lipéid seo a leanas le do chuid ábhair." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Is féidir gur scriosadh an phostáil seo." @@ -7953,9 +8559,10 @@ msgstr "Is féidir gur scriosadh an phostáil seo." msgid "The Privacy Policy has been moved to <0/>" msgstr "Bogadh an Polasaí Príobháideachta go dtí <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "Tá an físeán seo níos mó ná 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "" #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "Bogadh ár dTéarmaí Seirbhíse go dtí" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "D'úsáid tú cód dearbhaithe neamhbhailí. Deimhnigh gur bhain tú úsáid as an nasc ceart, nó iarr ceann nua." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Téama" @@ -7990,14 +8597,14 @@ msgstr "Téama" msgid "There is no time limit for account deactivation, come back any time." msgstr "Níl srian ama le díghníomhú cuntais, fill uair ar bith." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh le Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh leis an bhfreastalaí" @@ -8006,17 +8613,12 @@ msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh leis an bhfreastalaí" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh leis an bhfreastalaí. Seiceáil do cheangal leis an idirlíon agus bain triail eile as." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh le do fhreastalaí" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Bhí fadhb ann maidir le fógraí a fháil. Tapáil anseo le triail eile a bhaint as." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Bhí fadhb ann maidir le postálacha a fháil. Tapáil anseo le triail eile a bhaint as." @@ -8037,7 +8639,7 @@ msgstr "Bhí fadhb ann maidir le do chuid liostaí a fháil. Tapáil anseo le tr msgid "There was an issue fetching your service info" msgstr "Bhí fadhb ann agus d'fhaisnéis seirbhíse á híoslódáil" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Bhí fadhb ann maidir leis an bhfotha seo a bhaint. Seiceáil do cheangal leis an idirlíon agus bain triail eile as." @@ -8052,9 +8654,9 @@ msgstr "Níor seoladh do thuairisc. Seiceáil do cheangal leis an idirlíon, le msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Bhí fadhb ann maidir le do chuid fothaí a nuashonrú. Seiceáil do cheangal leis an idirlíon agus bain triail eile as." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Bhí fadhb ann maidir le do chuid fothaí a nuashonrú. Seiceáil do che msgid "There was an issue! {0}" msgstr "Bhí fadhb ann! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Bhí fadhb ann! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Bhí fadhb ann. Seiceáil do cheangal leis an idirlíon, le do thoil, agus bain triail eile as." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "D’éirigh fadhb gan choinne leis an aip. Abair linn, le do thoil, má tharla sé sin duit!" @@ -8089,7 +8691,7 @@ msgstr "D’éirigh fadhb gan choinne leis an aip. Abair linn, le do thoil, má msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Tá ráchairt ar Bluesky le déanaí! Cuirfidh muid do chuntas ag obair chomh luath agus is féidir." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Cuirtear na socruithe seo i bhfeidhm ar an bhfotha Following amháin." @@ -8146,7 +8748,7 @@ msgstr "Tá an t-ábhar seo ar fáil ó {0}. An bhfuil fonn ort na meáin sheach msgid "This content is not available because one of the users involved has blocked the other." msgstr "Níl an t-ábhar seo le feiceáil toisc gur bhlocáil duine de na húsáideoirí an duine eile." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Níl an t-ábhar seo le feiceáil gan chuntas Bluesky." @@ -8158,6 +8760,10 @@ msgstr "" msgid "This email is already associated with your account." msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Tá an ghné seo á tástáil fós. Tig leat níos mó faoi chartlanna easpórtáilte a léamh sa <0>bhlagphost seo." @@ -8170,7 +8776,7 @@ msgstr "" msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Níl an ghné seo ar fáil má tá tú ag baint úsáide as Pasfhocal Aipe. Logáil isteach le do ghnáth-phasfhocal, le do thoil." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Tá ráchairt an-mhór ar an bhfotha seo faoi láthair. Níl sé ar fáil anois díreach dá bhrí sin. Bain triail eile as níos déanaí, le do thoil." @@ -8209,11 +8815,11 @@ msgstr "Chuir an t-údar an lipéad seo leis." msgid "This label was applied by you." msgstr "Chuir tusa an lipéad seo leis." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Ní dúirt an lipéadóir seo céard iad na lipéid a fhoilsíonn sé, agus is féidir nach bhfuil sé i mbun gnó." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Téann an nasc seo go dtí an suíomh idirlín seo:" @@ -8233,29 +8839,28 @@ msgstr "Tá an liosta seo folamh." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Níl an tseirbhís modhnóireachta ar fáil. Féach tuilleadh sonraí thíos. Má mhaireann an fhadhb seo, téigh i dteagmháil linn." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Deir an phostáil seo gur cruthaíodh í ar <0>{0}, ach chonacthas í ar Bluesky den chéad uair ar <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Scriosadh an phostáil seo." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Ní bheidh an phostáil seo le feiceáil ar do chuid fothaí ná snáitheanna. Ní féidir dul ar ais air seo." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "Chuir údar na postála seo cosc ar phostálacha athluaite." @@ -8263,11 +8868,11 @@ msgstr "Chuir údar na postála seo cosc ar phostálacha athluaite." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Cuirfear an freagra seo i rannán speisialta a bheidh i bhfolach ag bun an tsnáithe seo, agus ní bhfaighidh tusa nó éinne eile fógraí maidir le freagraí eile." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Níor chuir an tseirbhís seo téarmaí seirbhíse ná polasaí príobháideachta ar fáil." @@ -8275,6 +8880,10 @@ msgstr "Níor chuir an tseirbhís seo téarmaí seirbhíse ná polasaí príobh msgid "This should create a domain record at:" msgstr "Ba cheart dó seo taifead fearainn a chruthú ag:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" @@ -8316,16 +8925,18 @@ msgstr "Níl éinne á leanúint ag an úsáideoir seo." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Bainfidh sé seo \"{0}\" de do chuid focal balbhaithe. Tig leat é a chur ar ais níos déanaí." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Leis seo, bainfear @{0} den mhearliosta." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Leis seo, bainfear do phostáil seo den phostáil athluaite seo do gach úsáideoir, agus cuirfear ionadchoinneálaí ina háit." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Roghanna snáitheanna" @@ -8334,24 +8945,27 @@ msgstr "Roghanna snáitheanna" msgid "Thread preferences" msgstr "Roghanna snáitheanna" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Roghanna Snáitheanna" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Modh snáithithe" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Modh snáithithe" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Roghanna Snáitheanna" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "" @@ -8376,42 +8990,56 @@ msgstr "Cé chuige ar mhaith leat an tuairisc seo a sheoladh?" msgid "Today" msgstr "Inniu" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Scoránaigh an bosca anuas" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Scoránaigh le ábhar do dhaoine fásta a cheadú nó gan a cheadú" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Barr" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Ábhar" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Aistrigh" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Treochtaí" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "" @@ -8428,14 +9056,10 @@ msgstr "Bain triail eile as" msgid "TV" msgstr "Teilifís" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Fíordheimhniú déshraithe (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Cuir isteach do leasainm" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Scríobh do theachtaireacht anseo" @@ -8453,7 +9077,7 @@ msgstr "Ní féidir ceangal a bhunú. Seiceáil do cheangal leis an idirlíon ag #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Ní féidir teagmháil a dhéanamh le do sheirbhís. Seiceáil do cheang msgid "Unable to delete" msgstr "Ní féidir é a scriosadh" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Díbhlocáil" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Díbhlocáil" @@ -8486,7 +9126,7 @@ msgstr "Díbhlocáil" msgid "Unblock account" msgstr "Díbhlocáil an cuntas" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "An bhfuil fonn ort an cuntas seo a dhíbhlocáil?" @@ -8495,13 +9135,13 @@ msgstr "An bhfuil fonn ort an cuntas seo a dhíbhlocáil?" msgid "Unblock list" msgstr "" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Cuir stop leis an athphostáil" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Cuir stop leis an athphostáil ({0, plural, one {# athphostáil} two {# athphostáil} few {# athphostáil} many {# n-athphostáil} other {# athphostáil}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Dílean" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Dílean {0}" @@ -8523,7 +9163,7 @@ msgstr "" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "Dímhol" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Dímhol ({0, plural, one {# mholadh} two {# mholadh} few {# mholadh} many {# moladh} other {# moladh}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "" @@ -8555,8 +9195,8 @@ msgstr "Díbhalbhaigh" msgid "Unmute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Ná balbhaigh an comhrá seo níos mó" msgid "Unmute list" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Ná balbhaigh an snáithe seo níos mó" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Ná balbhaigh an físeán seo níos mó" @@ -8597,8 +9237,8 @@ msgstr "" msgid "Unpin from home" msgstr "Díghreamaigh ón mbaile" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Díghreamaigh ón bpróifíl" @@ -8614,8 +9254,8 @@ msgstr "Díghreamaíodh {0} ón mBaile" msgid "Unpinned from your feeds" msgstr "Díghreamaithe ó do chuid fothaí" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "" @@ -8636,7 +9276,7 @@ msgstr "Díliostáil ón lipéadóir seo" msgid "Unsubscribed from list" msgstr "Dhíliostáil tú ón liosta seo" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Físeán nach dtacaítear leis" @@ -8662,8 +9302,8 @@ msgstr "Nuashonraigh <0>{displayName} i Liostaí" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "" @@ -8676,17 +9316,17 @@ msgstr "Uasdátú chuig {domain}" msgid "Update your email" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Theip ar uasdátú an cheangaltáin athluaite" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Theip ar infheictheacht an fhreagra a uasdátú" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Á uasdátú…" @@ -8698,20 +9338,20 @@ msgstr "Uaslódáil grianghraf in ionad" msgid "Upload a text file to:" msgstr "Uaslódáil comhad téacs chuig:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Uaslódáil ó Cheamara" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Uaslódáil ó Chomhaid" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Uaslódáil ó Leabharlann" msgid "Uploading images..." msgstr "Íomhánna á n-uaslódáil..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Mionsamhail á huaslódáil..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Físeán á uaslódáil..." @@ -8761,6 +9401,10 @@ msgstr "Úsáid an ceann molta" msgid "Use this to sign in to the other app along with your handle." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "In úsáid ag:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Liosta úsáideoirí uasdátaithe" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Ainm úsáideora nó ríomhphost" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "úsáideoirí a bhfuil <0>@{0} á leanúint" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Úsáideoirí a leanaim" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Úsáideoirí in ”{0}“" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "" @@ -8846,11 +9502,11 @@ msgstr "Luach:" msgid "Verification failed, please try again." msgstr "" -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "" @@ -8870,8 +9526,15 @@ msgstr "" msgid "Verify account" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "" @@ -8880,21 +9543,20 @@ msgstr "" msgid "Verify DNS Record" msgstr "Dearbhaigh taifead DNS" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Dialóg: dearbhú ríomhphoist" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Dearbhaigh comhad téacs" msgid "Verify this account?" msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Dearbhaigh do sheoladh ríomhphoist" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Dearbhaigh do sheoladh ríomhphoist" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Leagan {appVersion}" +msgid "Version {0}" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Físeán" @@ -8928,7 +9598,7 @@ msgstr "Físeán" msgid "Video failed to process" msgstr "Theip ar phróiseáil an fhíseáin" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "" @@ -8942,15 +9612,15 @@ msgstr "" msgid "Video Games" msgstr "Físchluichí" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Físeán gan aimsiú." @@ -8958,11 +9628,11 @@ msgstr "Físeán gan aimsiú." msgid "Video settings" msgstr "Socruithe físe" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Uaslódáladh an físeán" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Físeán: {0}" @@ -8979,11 +9649,11 @@ msgstr "" msgid "View {0}'s avatar" msgstr "Féach ar an abhatár atá ag {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Amharc ar phróifíl {0}" @@ -8991,7 +9661,7 @@ msgstr "Amharc ar phróifíl {0}" msgid "View {displayName}'s profile" msgstr "Amharc ar phróifíl {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Féach ar phróifíl an úsáideora bhlocáilte" @@ -9009,7 +9679,6 @@ msgstr "Féach ar an iontráil dífhabhtaithe" msgid "View details" msgstr "Féach ar shonraí" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Féach ar shonraí maidir le sárú cóipchirt a thuairisciú" @@ -9022,23 +9691,23 @@ msgstr "Féach ar an snáithe iomlán" msgid "View information about these labels" msgstr "Féach ar eolas faoi na lipéid seo" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Féach ar an bpróifíl" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Féach ar an abhatár" @@ -9054,28 +9723,28 @@ msgstr "" msgid "View users who like this feed" msgstr "Féach ar úsáideoirí ar thaitin an fotha seo leo" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Cuntais bhlocáilte" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Tabhair súil ar do chuid fothaí agus déan tuilleadh taiscéalaíochta" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Féach ar do chuid liostaí modhnóireachta" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Féach ar na cuntais a bhalbhaigh tú" @@ -9083,8 +9752,8 @@ msgstr "Féach ar na cuntais a bhalbhaigh tú" msgid "View your verifications" msgstr "" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "" @@ -9092,16 +9761,20 @@ msgstr "" msgid "Views video in immersive mode" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "Tabhair cuairt ar an suíomh" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Airde fuaime" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Tabhair foláireamh faoi ábhar agus scag as fothaí" msgid "Watch now" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "" + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "Níor aimsigh muid toradh ar bith don haischlib sin." @@ -9128,7 +9809,7 @@ msgstr "Níor aimsigh muid toradh ar bith don haischlib sin." msgid "We couldn't find any results for that topic." msgstr "Níor aimsigh muid toradh ar bith don ábhar sin." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Theip orainn an comhrá seo a lódáil" @@ -9136,6 +9817,10 @@ msgstr "Theip orainn an comhrá seo a lódáil" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Measaimid go mbeidh do chuntas réidh i gceann {estimatedTime}" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Sheolamar ríomhphost dearbhaithe eile chuig <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "Tá súil againn go mbeidh an-chraic agat anseo. Ná déan dearmad go bh msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Níl aon ábhar nua le taispeáint ó na cuntais a leanann tú. Seo duit an t-ábhar is déanaí ó <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Nílimid cinnte an bhfuil cead agat físeáin a uaslódáil. Bain triail eile as." @@ -9164,10 +9849,14 @@ msgstr "Nílimid cinnte an bhfuil cead agat físeáin a uaslódáil. Bain triail msgid "We were unable to load your birth date preferences. Please try again." msgstr "Theip orainn do rogha maidir le dáta breithe a lódáil. Bain triail as arís." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "Theip orainn na lipéadóirí a roghnaigh tú a lódáil faoi láthair." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Níorbh fhéidir linn ceangal a bhunú. Bain triail eile as do chuntas a shocrú. Má mhaireann an fhadhb, ní gá duit an próiseas seo a chur i gcrích." @@ -9176,7 +9865,7 @@ msgstr "Níorbh fhéidir linn ceangal a bhunú. Bain triail eile as do chuntas a msgid "We will let you know when your account is ready." msgstr "Déarfaidh muid leat nuair a bheidh do chuntas réidh." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -9184,6 +9873,22 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "Bainfimid úsáid as seo chun an suíomh a chur in oiriúint duit." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Tá fadhbanna líonra againn, bain triail as arís" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Tá muid an-sásta go bhfuil tú linn!" @@ -9205,15 +9910,15 @@ msgstr "Ár leithscéal, ach ní féidir linn an liosta seo a thaispeáint. Má msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Tá brón orainn, ach theip orainn na focail a bhalbhaigh tú a lódáil an uair seo. Bain triail as arís." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Ár leithscéal, ach níorbh fhéidir linn do chuardach a chur i gcrích. Bain triail eile as i gceann cúpla nóiméad." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Ár leithscéal, ach scriosadh an phostáil atá tú ag freagairt." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Ár leithscéal, ach ní féidir linn an leathanach atá tú ag lorg a aimsiú." @@ -9222,6 +9927,26 @@ msgstr "Ár leithscéal, ach ní féidir linn an leathanach atá tú ag lorg a a msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Ár leithscéal! Ní féidir leat ach fiche lipéadóirí a leanúint agus tá fiche ceann agat cheana féin." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Fáilte ar ais!" @@ -9240,7 +9965,7 @@ msgstr "Cén t-ainm ar mhaith leat a thabhairt ar do phacáiste fáilte?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Aon scéal?" @@ -9256,11 +9981,11 @@ msgstr "Cad iad na teangacha sa phostáil seo?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Cad iad na teangacha ba mhaith leat a fheiceáil i do chuid fothaí algartamacha?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Cé atá in ann idirghníomhú leis an bpostáil seo?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Cé atá in ann freagra a thabhairt" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Úps!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "" @@ -9322,12 +10047,12 @@ msgstr "Cén fáth gur cheart athbhreithniú a dhéanamh ar an úsáideoir seo?" msgid "Write a message" msgstr "Scríobh teachtaireacht" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Scríobh postáil" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Scríobh freagra" @@ -9358,11 +10083,11 @@ msgstr "Tá, díghníomhaigh" msgid "Yes, delete this starter pack" msgstr "Scrios an pacáiste fáilte seo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Tá, dícheangail" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Tá, cuir i bhfolach é" @@ -9378,6 +10103,10 @@ msgstr "Inné" msgid "You" msgstr "Tusa" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "" @@ -9386,6 +10115,10 @@ msgstr "" msgid "You are creating an account on" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Tá tú sa scuaine." @@ -9403,7 +10136,7 @@ msgstr "" msgid "You are not allowed to go live" msgstr "" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Níl cead agat físeáin a uaslódáil." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "" @@ -9441,10 +10173,18 @@ msgstr "Is féidir leat sainfhothaí nua a aimsiú le leanúint." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Is féidir leat do chuntas a dhíghníomhú go sealadach, agus é a athghníomhú uair ar bith." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Is féidir leat leanacht le comhráite beag beann ar cén socrú a roghnaíonn tú." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Is féidir leat logáil isteach le do phasfhocal nua anois." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Is féidir leat do chuntas a athghníomhú chun leanacht ort ag logáil isteach. Beidh úsáideoirí eile in ann do phróifíl agus do chuid postálacha a fheiceáil." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "" #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Tig leat é seo a uasdátú ó do shocruithe." @@ -9472,7 +10212,7 @@ msgstr "Níl aon leantóir agat." msgid "You don't follow any users who follow @{name}." msgstr "Ní leanann tú aon leantóirí de chuid @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "" @@ -9480,15 +10220,15 @@ msgstr "" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Níl aon chóid chuiridh agat fós! Cuirfidh muid cúpla cód chugat tar éis duit beagán ama a chaitheamh anseo." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Níl aon fhothaí greamaithe agat." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Níl aon fhothaí sábháilte agat." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Bhlocáil tú an t-údar nó tá tú blocáilte ag an údar." @@ -9502,6 +10242,10 @@ msgstr "Bhlocáil tú an t-úsáideoir seo" msgid "You have blocked this user. You cannot view their content." msgstr "Bhlocáil tú an cuntas seo. Ní féidir leat a gcuid ábhar a fheiceáil." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Bhalbhaigh tú an cuntas seo." msgid "You have muted this user" msgstr "Bhalbhaigh tú an t-úsáideoir seo" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Níl comhrá ar bith agat fós. Tosaigh ceann!" @@ -9547,7 +10291,7 @@ msgstr "Níor bhlocáil tú aon chuntas fós. Le cuntas a bhlocáil, téigh go d msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Níor bhalbhaigh tú aon chuntas fós. Le cuntas a bhalbhú, téigh go dtí a bpróifíl agus roghnaigh “Balbhaigh an cuntas seo” ar an gclár ansin." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Tá deireadh sroichte agat" @@ -9572,6 +10316,10 @@ msgstr "Níor bhalbhaigh tú aon fhocal ná clib fós" msgid "You hid this reply." msgstr "Chuir tú an freagra seo i bhfolach." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Is féidir leat achomharc a dhéanamh maidir le lipéid nár chuir tú féin má shíleann tú iad a bheith in earráid." @@ -9592,7 +10340,7 @@ msgstr "Ní féidir leat ach suas le 3 fhotha a chur leis seo" msgid "You may only select up to 4 images" msgstr "Ní féidir leat ach suas le 4 íomhá a roghnú" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "" @@ -9600,6 +10348,14 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Ní mór duit seachtar ar a laghad a leanúint le pacáiste fáilte a chruthú." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Ní mór duit fáil ar do leabharlann grianghraf a cheadú le cód QR a shábháil" @@ -9608,6 +10364,11 @@ msgstr "Ní mór duit fáil ar do leabharlann grianghraf a cheadú le cód QR a msgid "You must select at least one labeler for a report" msgstr "Caithfidh tú ar a laghad lipéadóir amháin a roghnú do thuairisc" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "" @@ -9616,7 +10377,7 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "Rinne tú díghníomhú ar @{0} cheana." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "" @@ -9628,16 +10389,20 @@ msgstr "" msgid "You reacted {0} to {1}" msgstr "" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Logálfar amach as gach cuntas thú." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Ní bhfaighidh tú fógraí don snáithe seo a thuilleadh." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Gheobhaidh tú fógraí don snáithe seo anois." @@ -9657,11 +10422,11 @@ msgstr "Tusa: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Tusa: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Leanfaidh tú na húsáideoirí agus na fothaí a moladh tar éis duit do chuntas a chruthú!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Leanfaidh tú na húsáideoirí a moladh tar éis duit do chuntas a chruthú!" @@ -9673,9 +10438,9 @@ msgstr "Leanfaidh tú na daoine seo agus {0} duine eile" msgid "You'll follow these people right away" msgstr "Leanfaidh tú na daoine seo láithreach" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Gheobhaidh tú ríomhphost ag <0>{0} le dearbhú gur tusa atá ann." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "Roghnaigh tú focal nó clib atá sa phostáil seo a chur i bhfolach." msgid "You've found some people to follow" msgstr "Tig leat na daoine seo a leanúint" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Tháinig tú go deireadh d’fhotha! Aimsigh cuntais eile le leanúint." @@ -9711,19 +10480,23 @@ msgstr "Tháinig tú go deireadh d’fhotha! Aimsigh cuntais eile le leanúint." msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Tá tú tar éis an uasteorainn laethúil ar uaslódálacha físeáin a bhaint amach (an iomarca beart)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Tá tú tar éis an uasteorainn laethúil ar uaslódálacha físeáin a bhaint amach (an iomarca físeán)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Do chuntas" @@ -9735,7 +10508,7 @@ msgstr "Scriosadh do chuntas" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Níl tú anseo fada go leor chun físeáin a uaslódáil. Bain triail eile as ar ball." @@ -9751,11 +10524,11 @@ msgstr "" msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Do bhreithlá" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Ní thacaíonn do bhrabhsálaí leis an bhformáid físe. Bain triail as brabhsálaí eile." @@ -9771,13 +10544,15 @@ msgstr "" msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Coimeádfar an leasainm atá agat faoi láthair, <0>{0}, in áirithe duitse. Beidh tú in ann athrú ar ais ón gcuntas seo am ar bith." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Is cosúil go bhfuil do ríomhphost neamhbhailí." @@ -9786,15 +10561,11 @@ msgstr "Is cosúil go bhfuil do ríomhphost neamhbhailí." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Níor dearbhaíodh do sheoladh ríomhphoist fós. Is tábhachtach an chéim shábháilteachta é sin agus molaimid é." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "Do chéad mholadh!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "" @@ -9806,19 +10577,15 @@ msgstr "Tá an fotha de na daoine a leanann tú folamh! Lean tuilleadh úsáideo msgid "Your full handle will be <0>@{0}" msgstr "Do leasainm iomlán anseo: <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "" @@ -9835,15 +10602,15 @@ msgstr "Na focail a bhalbhaigh tú" msgid "Your password has been changed successfully!" msgstr "Athraíodh do phasfhocal!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Foilsíodh do phostáil" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Foilsíodh do chuid postálacha" @@ -9851,15 +10618,19 @@ msgstr "Foilsíodh do chuid postálacha" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Tá do chuid postálacha, moltaí, agus blocálacha poiblí. Is príobháideach iad na cuntais a bhalbhaíonn tú." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Ní bheidh do phróifíl, postálacha, fothaí ná liostaí infheicthe ag úsáideoirí eile Bluesky. Is féidir leat do chuntas a athghníomhú uair ar bith trí logáil isteach." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Foilsíodh do fhreagra" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -9867,7 +10638,7 @@ msgstr "" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Seolfar do thuairisc go dtí Seirbhís Modhnóireachta Bluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "" diff --git a/src/locale/locales/gd/messages.po b/src/locale/locales/gd/messages.po index 940f3f904b..f32d543e93 100644 --- a/src/locale/locales/gd/messages.po +++ b/src/locale/locales/gd/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: gd\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:41\n" +"PO-Revision-Date: 2025-08-12 01:46\n" "Last-Translator: \n" "Language-Team: Scottish Gaelic\n" "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n>2 && n<20) ? 2 : 3;\n" @@ -27,7 +27,7 @@ msgstr "(gnìomhach)" msgid "(contains embedded content)" msgstr "(tha susbaint leabaichte ann)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(gun phost-d)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {air ath-phostadh # turas} two {air ath-phostadh # thura msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# diog} two {# dhiog} few {# diogan} other {# diog}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# nì gun leughadh} two {# nì gun leughadh} few {# nithean gun leughadh} other {# nì gun leughadh}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {# nì gun leughadh} two {# nì gun leughadh} few {# nit msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {# mhìos} two {# mhìos} few {# mìosan} other {# mìos}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {gam leantainn} two {gam leantainn} few {gam leantainn} other {gam leantainn}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {A’ leantainn #} two {A’ leantainn #} few {A’ leantainn #} other {A’ leantainn #}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {’s toil le # seo} two {’s toil le # seo} few {’s toil le # seo} other {’s toil le # seo}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {’s toil le # seo} two {’s toil le # seo} few {’s msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {phost} two {phost} few {puist} other {post}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {luaidh} two {luaidh} few {luaidhean} other {luaidh}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {air ath-phostadh} two {air ath-phostadh} few {air ath-phostadh} other {air ath-phostadh}}" @@ -135,6 +138,10 @@ msgstr "{0} <0>sna <1>tagaichean" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>san <1>teacsa ⁊ sna tagaichean" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "a’ leantainn {0}" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "Tha {0} beò" @@ -143,11 +150,15 @@ msgstr "Tha {0} beò" msgid "{0} is not a valid URL" msgstr "Chan e URL dligheach a th’ ann an {0}" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "Chan eil {0} ri fhaighinn" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} air a dhol an sàs an t-seachdain seo" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} à {1}" @@ -164,8 +175,16 @@ msgstr "Chuir {0} {1} mar fhrith-fhreagairt" msgid "{0} reacted {1} to {2}" msgstr "Chuir {0} {1} mar fhrith-fhreagairt dha {2}" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0}, inbhir le {1}, ’s toil le {2} e" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0}, liosta le {1}" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "An t-avatar aig {0}" @@ -197,12 +216,12 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}d" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# nì gun leughadh} two {# nì gun leughadh} few {# nithean gun leughadh} other {# nì gun leughadh}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "A’ phacaid tòiseachaidh aig {displayName}" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {uair a thìde} two {uair a thìde} few { msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {mhionaid} two {mhionaid} few {mionaidean} other {mionaid}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "Tha {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} gad leantainn a-nis" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "Tha an t-inbhir gnàthaichte agad a’ còrdadh ri {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "’S toil le {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} am post agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "’S toil le {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} an ath-phostadh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "Thug {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} air falbh an dearbhadh a rinn iad air a’ chunntas agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "Dh’ath-phostaich {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} am post agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "Dh’ath-phostaich {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} an ath-phostadh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "Chlàraich {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} aig a’ phacaid tòiseachaidh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "Rinn {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} dearbhadh ort" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "Tha {firstAuthorLink} gad leantainn a-nis" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "Tha {firstAuthorLink} gad leantainn cuideachd a-nis" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "’S toil le {firstAuthorLink} an t-inbhir gnàthaichte agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "Is toil le {firstAuthorLink} am post agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "Is toil le {firstAuthorLink} an ath-phostadh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "Thug {firstAuthorLink} air falbh an dearbhadh a rinn iad air a’ chunntas agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "Dh’ath-phostaich {firstAuthorLink} am post agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "Dh’ath-phostaich {firstAuthorLink} an ath-phostadh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "Chlàraich {firstAuthorLink} aig a’ phacaid tòiseachaidh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "Rinn {firstAuthorLink} dearbhadh ort" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "Tha {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} gad leantainn" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "Tha an t-inbhir gnàthaichte agad a’ còrdadh ri {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "’S toil le {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} am post agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "’S toil le {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} an ath-phostadh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "Thug {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} air falbh an dearbhadh a rinn iad air a’ chunntas agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "Dh’ath-phostaich {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} am post agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "Dh’ath-phostaich {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} an ath-phostadh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "Chlàraich {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} aig a’ phacaid tòiseachaidh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "Rinn {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} dearbhadh ort" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "Tha {firstAuthorName} gad leantainn a-nis" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "Tha {firstAuthorName} gad leantainn cuideachd a-nis" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "’S toil le {firstAuthorName} an t-inbhir gnàthaichte agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "Is toil le {firstAuthorName} am post agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "Is toil le {firstAuthorName} an ath-phostadh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "Thug {firstAuthorName} air falbh an dearbhadh a rinn iad air a’ chunntas agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "Dh’ath-phostaich {firstAuthorName} am post agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "Dh’ath-phostaich {firstAuthorName} an ath-phostadh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "Chlàraich {firstAuthorName} aig a’ phacaid tòiseachaidh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "Rinn {firstAuthorName} dearbhadh ort" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "a’ leantainn {following}" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "Cha ghabh {handle} ri teachdaireachdan" @@ -392,7 +410,7 @@ msgstr "Chaidh {joinedAllTimeCount, plural, one {# chleachdaiche} two {# chleach msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "{minutes, plural, one {# mhionaid} two {# mhionaid} few {# mionaidean} other {# mionaid}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# nì gun leughadh} two {# nì gun leughadh} few {# nithean gun leughadh} other {# nì gun leughadh}}" @@ -432,12 +450,12 @@ msgstr "An dearbhadh a rinn {userName}" msgid "+{computedTotal}" msgstr "⁊ {computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "Tha <0>{0}, <1>{1} agus {2, plural, one {# eile} two {# eile} few {# eile} other {# others}} gan gabhail a-staigh sa phacaid tòiseachaidh agad" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "Tha <0>{0}, <1>{1} agus {2, plural, one {# eile} two {# eile} few {# eile} other {# others}} gan gabhail a-staigh sa phacaid tòiseachaidh agad" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {gam leantainn} two {gam leantainn} few {gam msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "{1, plural, one {a’ leantainn} two {a’ leantainn} few {a’ leantainn} other {a’ leantainn}} <0>{0}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "Tha <0>{0} agus <1> <2>{1} gan gabhail a-staigh sa phacaid tòiseachaidh agad" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "Tha <0>{0} ga ghabhail a-staigh sa phacaid tòiseachaidh agad" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "Na buill aig <0>{0}" @@ -466,11 +484,11 @@ msgstr "Na buill aig <0>{0}" msgid "<0>{date} at {time}" msgstr "<0>{date} aig {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Probhail: Ma bhios an roghainn seo an comas, chan fhaigh thu ach brathan mu fhreagairtean is luaidhean a thaobh luchd-cleachdaidh a tha thu a’ leantainn. Cuiridh sinn barrachd uidheaman-smachd ris an-seo thar ùine." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<0>Clàraich a-steach<1> no <2>cruthaich cunntas<3> <4>airson naidheachdan, spòrs, poileataigs is rud sam bith eile a tha a’ dol air Bluesky a lorg." -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "Tha <0>thusa agus <1> <2>{0} gan gabhail a-staigh sa phacaid tòiseachaidh agad" @@ -503,10 +521,14 @@ msgstr "teachdaireachd" msgid "A new form of verification" msgstr "Dòigh dearbhaidh ùr" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "Glacadh-sgrìn de dhuilleag pròifil le ìomhaigheag cluig ri taobh a’ phutain airson cuideigin a leantainn, ag innse mu ghleus ùr nam brathan gnìomhachd." + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Mu dhèidhinn" @@ -524,25 +546,25 @@ msgstr "Gabh ris an iarrtas cabadaich" msgid "Accept Request" msgstr "Gabh ris an iarrtas" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "So-ruigsinneachd" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Roghainnean na so-ruigsinneachd" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Cunntas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Chaidh an cunntas a leantainn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Chaidh an cunntas a mhùchadh" msgid "Account Muted by List" msgstr "Chaidh an cunntas a mhùchadh le liosta" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Roghainnean a’ chunntais" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Chaidh an cunntas a thoirt air falbh on ghrad-inntrigeadh" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Chan eil thu a’ leantainn a’ chunntais tuilleadh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Chaidh an cunntas a neo-mhùchadh" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "’S urrainn do chunntasan aig a bheil cromag chrom-bhileach ghorm <0><1/> cunntasan eile a dhearbhadh. ’S e Bluesky a thaghas an luchd-dearbhaidh earbsach seo." +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "Gnìomhachd o dhaoine eile" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "Brathan gnìomhachd" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Cuir ris" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Cuir ris {0} a bharrachd mus lean thu air adhart" @@ -634,8 +666,8 @@ msgstr "Cuir cunntas ris" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Cuir roghainn teacsa ris" msgid "Add alt text (optional)" msgstr "Cuir roghainn teacsa ris (roghainneil)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Cuir cunntas eile ris" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Cuir post eile ris" @@ -670,8 +702,8 @@ msgstr "Cuir facal-faire aplacaid ris" msgid "Add emoji reaction" msgstr "Cuir emoji mar fhrith-fhreagairt" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Cuir barrachd fiosrachaidh ris (roghainneil)" @@ -683,7 +715,7 @@ msgstr "Cuir am facal mùchaidh ris leis na roghainnean a thagh thu" msgid "Add muted words and tags" msgstr "Cuir ris faclan is tagaichean mùchaidh" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Cuir post ùr ris" @@ -704,7 +736,7 @@ msgstr "Cuir frith-fhreagairt" msgid "Add recommended feeds" msgstr "Cuir inbhirean a mholadh tu ris" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Cuir inbhirean ris a’ phacaid tòiseachaidh agad!" @@ -725,10 +757,6 @@ msgstr "Cuir an t-inbhir seo ris na h-inbhirean agad" msgid "Add to lists" msgstr "Cuir ri liosta" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Cuir ris na h-inbhirean agam" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "Cuir an cleachdaiche ri liosta" @@ -738,11 +766,11 @@ msgstr "Cuir an cleachdaiche ri liosta" msgid "Added to list" msgstr "Chaidh a chur ris an liosta" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Chaidh a chur ris na h-inbhirean agam" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "Mion-fhiosrachadh a bharrachd (1,000 caractar air a’ char as motha)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Fiosrachadh a bharrachd (300 caractar air a’ char as motha)" @@ -750,18 +778,18 @@ msgstr "Fiosrachadh a bharrachd (300 caractar air a’ char as motha)" msgid "Adult" msgstr "Inbheach" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Susbaint inbheach" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Chan urrainn dhut susbaint inbheach a chur an comas ach air an lìon aig <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Tha an t-susbaint inbheach à comas." @@ -770,16 +798,32 @@ msgstr "Tha an t-susbaint inbheach à comas." msgid "Adult Content labels" msgstr "Leubailean susbaint inbheach" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Adhartach" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "Dearbhadh aoise" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "Dh’fhàillig cur dearbhadh na h-aoise. Feuch ris a-rithist." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "Chaidh do cheist mun dearbhadh aoise a chur" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "Cha toir dearbhadh aoise ach mionaid no dhà" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "meadhbh@eisimpleir.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Na h-uile" @@ -793,7 +837,7 @@ msgstr "Tha thu a’ leantainn a h-uile cunntas a-nis!" msgid "All languages" msgstr "A h-uile cànan" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Gach inbhir a shàbhail thu san aon àite." @@ -802,16 +846,21 @@ msgstr "Gach inbhir a shàbhail thu san aon àite." msgid "Allow access to your direct messages" msgstr "Ceadaich cead-inntrigidh o na teachdaireachdan dìreach agad" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Ceadaich teachdaireachdan ùra" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "Ceadaich gum faigh daoine eile brathan mu phuist a dh’fhoillsicheas tu" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Ceadaich luaidhean air puist" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Ceadaich freagairtean o:" @@ -828,13 +877,13 @@ msgstr "A bheil còd agad mar-thà?" msgid "Already signed in as @{0}" msgstr "Air clàradh a-steach mar @{0} mu thràth" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "Roghainn teacsa" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "Roghainn teacsa" msgid "Alt text" msgstr "Roghainn teacsa" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Roghainn teacsa" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Mìnichidh roghainn teacsa na tha san dealbh do dhaoine a tha dall no air beag-lèirsinn is bheir e co-theacsa dhan a h-uile duine." @@ -861,27 +910,19 @@ msgstr "Thèid an roghainn teacsa a bhuntachadh. Chan eil barrachd air {MAX_ALT_ msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Chaidh post-d a chur gu {0}. Tha còd dearbhaidh na bhroinn as urrainn dhut cur a-steach gu h-ìosal." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "Chaidh post-d a chur chun an t-seòlaidh a bh’ agad roimhe, {currentEmail}. Tha còd dearbhaidh ann, faigh greim air is cuir a-steach gu h-ìosal e." - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Chaidh post-d a chur! Cuir a-steach an còd dearbhaidh a tha sa phost-d gu h-ìosal." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Thachair mearachd" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Thachair mearachd" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Dh’èirich mearachd rè dùmhlachadh a’ video." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "Dh’èirich mearachd rè nuair a bha sinn a’ faighinn an inbhir." @@ -889,11 +930,11 @@ msgstr "Dh’èirich mearachd rè nuair a bha sinn a’ faighinn an inbhir." msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Dh’èirich mearachd nuair a bha sinn a’ gintinn na pacaid tòiseachaidh agad. A bheil thu airson feuchainn ris a-rithist?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Dh’èirich mearachd rè luchdadh a’ video. Feuch ris a-rithist an ceann greis." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Dh’èirich mearachd rè luchdadh a’ video. Feuch ris a-rithist." @@ -910,7 +951,7 @@ msgstr "Dh’èirich mearachd rè taghadh a’ video" msgid "An error occurred while trying to follow all" msgstr "Dh’èirich mearachd nuair a bha sinn airson na h-uile a leantainn" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Dh’èirich mearachd rè luchdadh suas a’ video." @@ -934,8 +975,8 @@ msgstr "Dh’èirich duilgheadas nuair a bha sinn a’ fosgladh na cabadaich" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "dh’èirich mearachd neo-aithnichte" msgid "an unknown labeler" msgstr "leubailiche neo-aithnichte" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "agus" @@ -963,10 +1004,14 @@ msgstr "agus" msgid "Animals" msgstr "Beathaichean" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "GIF beòthaichte" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "Fios-naidheachd" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "Naidheachd mu dhearbhadh air Bluesky" @@ -980,7 +1025,13 @@ msgstr "Giùlan ana-shòisealta" msgid "Anybody can interact" msgstr "Faodaidh duine sam bith eadar-ghabhail a dhèanamh" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "Duine sam bith a tha gam leantainn" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "Chan fhaod ach litrichean, àireamhan, àitichean bàna, tàthanan is fo msgid "App password names must be at least 4 characters long" msgstr "Feumaidh co-dhiù 4 caractaran bhith ann am facal-faire na h-aplacaid" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Faclan-faire nan aplacaidean" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Faclan-faire nan aplacaidean" @@ -1053,10 +1104,10 @@ msgstr "Tog ath-thagradh an aghaidh na dàlach" msgid "Appeal this decision" msgstr "Tog ath-thagradh an aghaidh a’ cho-dhùnaidh seo" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Coltas" @@ -1065,12 +1116,20 @@ msgstr "Coltas" msgid "Apply default recommended feeds" msgstr "Cuir an sàs na h-inbhirean bunaiteach a mholamaid" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "Cuir an t-iarrtas pull an gnìomh" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Air a thasglannachadh ann an {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Post tasglannaichte" @@ -1078,7 +1137,7 @@ msgstr "Post tasglannaichte" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "A bheil thu cinnteach gu bheil thu airson faclan-faire na h-aplacaid “{0}” a sguabadh às?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "A bheil thu cinnteach gu bheil thu airson an teachdaireachd seo a sguabadh às? Thèid an teachdaireachd a sguabadh às dhut-sa ach chan ann dhan chom-pàirtiche eile." @@ -1098,19 +1157,15 @@ msgstr "A bheil thu cinnteach gu bheil thu airson an còmhradh seo fhàgail?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "A bheil thu cinnteach gu bheil thu airson an còmhradh seo fhàgail? Thèid na teachdaireachdan agad a sguabadh às dhut-sa ach chan ann dhan chom-pàirtiche eile." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "A bheil thu cinnteach gu bheil thu airson {0} a thoirt air falbh o na h-inbhirean agad?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "A bheil thu cinnteach gu bheil thu airson seo a thoirt air falbh o na h-inbhirean agad?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "A bheil thu cinnteach gu bheil thu airson an dreachd seo a thilgeil air falbh?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "A bheil thu cinnteach gu bheil thu airson am post seo a thilgeil air falbh?" @@ -1131,29 +1186,26 @@ msgstr "Ealain" msgid "Artistic or non-erotic nudity." msgstr "Lomnochd ealanta no neo-earotaigeach." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "Iomruin cuspair dhan algairim" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Co-dhiù 3 caractaran" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Chaidh roghainnean na fèin-chluich a ghluasad gu <0>roghainnean na susbainte ’s nam meadhanan." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Cluich videothan is GIFs gu fèin-obrachail" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "Ri fhaighinn" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Cluich videothan is GIFs gu fèin-obrachail" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Air ais" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Air ais gu na cabadaich" @@ -1195,28 +1247,44 @@ msgstr "Mus cruthaich thu pacaid tòiseachaidh, feumaidh tu am post-d agad a dhe msgid "Before you can accept this chat request, you must first verify your email." msgstr "Mus urrainn dhut gabhail ris an iarrtas chabadaich seo, feumaidh tu am post-d agad a dhearbhadh." +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "Mus fhaigh thu brathan mu phuist a dh’fhoillsicheas {name}, feumaidh tu am post-d agad a dhearbhadh." + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "Mus cuir thu teachdaireachd gu cleachdaiche eile, feumaidh tu am post-d agad a dhearbhadh." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "Tòisich" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "Tòisich air dearbhadh d’ aoise" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "Tòisich air dearbhadh d’ aoise le bhith a’ lìonadh nan raointean gu h-ìosal." + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Co-là breith" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Bac" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Bac" msgid "Block account" msgstr "Bac an cunntas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "A bheil thu airson an cunntas a bhacadh?" @@ -1262,20 +1330,20 @@ msgstr "Bac an cleachdaiche" msgid "Block User" msgstr "Bac an cleachdaiche" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Bacte" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Cunntasan air am bacadh" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Cunntasan air am bacadh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Chan eil cead aig cunntasan bacte freagairt a chur sna snàithleanan agad, iomradh a dhèanamh ort no eadar-ghabhail eile a dhèanamh leat." @@ -1284,11 +1352,11 @@ msgstr "Chan eil cead aig cunntasan bacte freagairt a chur sna snàithleanan aga msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Chan eil cead aig cunntasan bacte freagairt a chur sna snàithleanan agad, iomradh a dhèanamh ort no eadar-ghabhail eile a dhèanamh leat. Chan fhaic thu an t-susbaint aca agus chan fhaic iad an t-susbaint agad-sa." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Chaidh am post a bhacadh." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Fiù ma bhacas tu an leubailiche seo, ’s urrainn dha leubailean a chur ris a’ chunntas agad fhathast." @@ -1309,11 +1377,12 @@ msgstr "Bloga" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Chan urrainn dha Bluesky dearbhadh gu bheil an ceann-là a thathar a’ cumail a-mach fìor." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1347,6 +1416,14 @@ msgstr "Cha leig Bluesky a’ phròifil agus na puist agad ri daoine nach eil cl msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Nì Bluesky dearbhadh iad fhèin air fìor-chunntasan mòra." +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "Riaghailtean coimhearsnachd Bluesky" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "Riaghailtean ùraichte coimhearsnachd Bluesky" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Cuir sgleò air dealbhan is criathraich iad às na h-inbhirean" msgid "Books" msgstr "Leabhraichean" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Rùraich barrachd chunntasan air an duilleag “Rùraich”" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Rùraich barrachd inbhirean air an duilleag “Rùraich”" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Brabhsaich barrachd mholaidhean" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Rùraich barrachd mholaidhean air an duilleag “Rùraich”" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Gnìomhachas" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Le {0}" @@ -1428,15 +1502,23 @@ msgstr "Le {0}" msgid "By <0>{0}" msgstr "Le <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "Le bhith a’ briogadh air “Air adhart”, bidh tu ag aideachadh gu bheil thu a’ tuigsinn na tha ùr agus ag aontachadh ris." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "Ma leanas tu air adhart, bidh tu ag aontachadh ri <0>teirmichean a’ chleachdaidh aig KWS agus ag aontachadh gun urrainn dha KWS staid an dearbhaidh agad a stòradh leis an t-seòladh phuist-d air a hash-igeadh a rèir <1>poileasaidh prìobhaideachd KWS. Tha seo a’ ciallachadh nach leig thu leas dearbhadh a dhèanamh as ùr an ath-thuras a chleachdas tu am post-d seo ann an aplacaidean, geamannan is seirbheisean eile a chleachdas teicneolas KWS." + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Le bhith a’ cruthachadh cunntas, bidh tu ag aontachadh ri <0>poileasaidh na prìobhaideachd." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Le bhith a’ cruthachadh cunntas, bidh tu ag aontachadh ri <0>teirmichean na seirbheise agus <1>poileasaidh na prìobhaideachd." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Le bhith a’ cruthachadh cunntas, bidh tu ag aontachadh ri <0>teirmichean na seirbheise." @@ -1448,14 +1530,17 @@ msgstr "Leat-sa" msgid "Camera" msgstr "An camara" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "An camara" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Sguir dheth" @@ -1500,11 +1582,7 @@ msgstr "Sguir de sguabadh às a’ chunntas" msgid "Cancel image crop" msgstr "Sguir de bhearradh an deilbh" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Sguir de dheasachadh na pròifil" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Sguir dhen luaidh air a’ phost" @@ -1516,14 +1594,10 @@ msgstr "Sguir dhen ath-ghnìomhachadh is clàraich a-mach" msgid "Cancel search" msgstr "Sguir dhen lorg" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Sguir seo de dh’fhosgladh na làraich-lìn cho-cheangailte" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Chan urrainn dhut eadar-ghabhail a dhèanamh le cleachdaiche a bhac thu" @@ -1553,17 +1627,12 @@ msgstr "Cuir “{0}” an àite ìomhaigheag na h-aplacaid" msgid "Change app language" msgstr "Atharraich cànan na h-aplacaid" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Atharraich an seòladh puist-d" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Atharraich an làmhrachan" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Atharraich seirbheise na modarataireachd" @@ -1579,14 +1648,6 @@ msgstr "Dèan post sa chànan a leanas dheth: {suggestedLanguageName}" msgid "Change report reason" msgstr "Atharraich adhbhar na h-aithrise" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Atharraich am post-d agad" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Atharraich an seòladh puist-d agad" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Atharraichidh seo ìomhaigheag na h-aplacaid" @@ -1596,10 +1657,15 @@ msgstr "Atharraichidh seo ìomhaigheag na h-aplacaid" msgid "Changes hosting provider" msgstr "Atharraichidh seo solaraiche na h-òstaireachd" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "Chaidh na h-atharraichean a shàbhaladh" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Cabadaich" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Chaidh a’ chabadaich a sguabadh às" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "Teachdaireachdan cabadaich – sàmhach" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "Teachdaireachdan cabadaich – fuaim" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Chaidh a’ chabadaich a mhùchadh" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "Bogsa a-steach nan iarrtasan cabadaich" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Iarrtasan cabadaich" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Roghainnean na cabadaich" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Roghainnean na cabadaich" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chaidh a’ chabadaich a neo-mhùchadh" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Cabadaich" @@ -1661,7 +1738,7 @@ msgstr "Thoir sùil air a’ bhogsa a-steach agad airson post-d sa bheil còd de msgid "Choose domain verification method" msgstr "Tagh dòigh airson dearbhadh na h-àrainne" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Tagh inbhirean" @@ -1669,7 +1746,7 @@ msgstr "Tagh inbhirean" msgid "Choose for me" msgstr "Dèan taghadh às mo leth" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Tagh daoine" @@ -1685,23 +1762,23 @@ msgstr "Tagh an dath seo mar avatar agad" msgid "Choose your account provider" msgstr "Tagh solaraiche a’ chunntais agad" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Dealbh loidhne-ama dhut fhèin! Inbhirean leis a’ choimhearsnachd a bheir dhut stuth as toil leat." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Tagh facal-faire dhut" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Tagh ainm-chleachdaiche dhut" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Falamhaich an dàta stòrais air fad" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Falamhaich an dàta stòrais air fad (dèan ath-thòiseachadh às a dhèidh seo)" @@ -1714,23 +1791,27 @@ msgstr "Falamhaich tasgadan nan dealbhan" msgid "Clear search query" msgstr "Falamhaich an ceasnachan luirg" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "Dèan briogadh airson barrachd fiosrachaidh" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "dèan briogadh an-seo" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "Briog an-seo a thòiseachadh air a dhearbhadh." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "Briog an-seo airson am post-d agad ùrachadh" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Dèan briogadh airson puist a nì luaidh air a’ phost seo a chur à comas." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Dèan briogadh airson puist a nì luaidh air a’ phost seo a chur an comas." @@ -1750,14 +1831,16 @@ msgstr "A’ chlìomaid" msgid "Clip 🐴 clop 🐴" msgstr "Turt 🐴 turt 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Turt 🐴 turt 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Dùin" @@ -1789,13 +1876,15 @@ msgstr "Dùin a’ chaismeachd" msgid "Close bottom drawer" msgstr "Dùin an drathair aig a’ bhonn" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Dùin an còmhradh" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Dùin an clàr-taice air an taobh" @@ -1804,7 +1893,7 @@ msgstr "Dùin an clàr-taice air an taobh" msgid "Close emoji picker" msgstr "Dùin ròghnaichear nan emoji" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Dùin còmhradh nan GIF" @@ -1822,7 +1911,7 @@ msgstr "Dùin sealladair an deilbh" msgid "Close menu" msgstr "Dùin an clàr-taice" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Dùin an co-còmhradh seo" @@ -1830,7 +1919,7 @@ msgstr "Dùin an co-còmhradh seo" msgid "Closes password update alert" msgstr "Dùinidh seo caismeachd mu ùrachadh an fhacail-fhaire" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "Dùinidh seo an uinneag sgrìobhaidh is tilgidh e air falbh dreachd a’ phuist" @@ -1843,16 +1932,16 @@ msgstr "Dùinidh seo roghnaichear nan emoji" msgid "Closes viewer for header image" msgstr "Dùinidh seo sealladair dealbh a’ bhanna-chinn" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Co-theannaich liosta an luchd-chleachdaidh" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Co-theannaichidh seo liosta nan cleachdaichean aig a’ bhrath" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Am modh-dhathan" @@ -1870,7 +1959,8 @@ msgstr "Comadaidh" msgid "Comics" msgstr "Dealbhan-èibhinn" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Treòrachadh na coimhearsnachd" @@ -1879,38 +1969,34 @@ msgstr "Treòrachadh na coimhearsnachd" msgid "Complete onboarding and start using your account" msgstr "Coilean am bòrdachadh is tòisich air an cunntas agad a chleachdadh" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Coilean an dùbhlan" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Sgrìobh post ùr" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Sgrìobh puist a bhios suas ri {0, plural, one {# charactar} two {# charactar} few {# caractaran} other {# caractar}} a dh’fhaid" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Sgrìobh freagairt" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "A’ dùmhlachadh a’ video…" -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Rèitich roghainn criathradh na susbainte aig an roinn-seòrsa seo: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Air a rèiteachadh ann an <0>roghainnean na modarataireachd." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Dearbh roghainnean cànain na susbainte" msgid "Confirm delete account" msgstr "Dearbh gu bheil thu airson an cunntas a sguabadh às" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Dearbh d’ aois:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Dearbh latha do bhreith" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Dearbh latha do bhreith" msgid "Confirmation code" msgstr "An còd dearbhaidh" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "An còd dearbhaidh" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "A’ dèanamh ceangal…" -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "Duilgheadas leis a’ cheangal" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "Cuir fios gu sgioba na modarataireachd againn" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Cuir fios gu sgioba na taice" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "Cuir fios thugainn" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Susbaint ⁊ meadhanan" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Susbaint is meadhanan" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Susbaint is meadhanan" @@ -1977,7 +2069,8 @@ msgstr "Susbaint is meadhanan" msgid "Content Blocked" msgstr "Chaidh susbaint a bhacadh" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Criathragan susbainte" @@ -2006,10 +2099,12 @@ msgstr "Rabhadh susbainte" msgid "Content warnings" msgstr "Rabhaidhean susbainte" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Cùlaibh a’ chlàir-thaice cho-theacsail, dèan briogadh airson an clàr-taice a dhùnadh." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Air adhart" msgid "Continue as {0} (currently signed in)" msgstr "Lean ort mar {0} (clàraichte a-staigh aig an àm seo)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "Lean air an t-snàithlean" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Leugh an còrr dhen t-snàithlean…" @@ -2029,6 +2129,10 @@ msgstr "Leugh an còrr dhen t-snàithlean…" msgid "Continue to next step" msgstr "Air adhart gun ath-cheum" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "Còmhradh" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Air lethbhreac a dhèanamh" msgid "Copied build version to clipboard" msgstr "Chaidh lethbhreac de thionndadh a’ bhuild a chur air an stòr-bhòrd" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Cuiridh seo lethbhreac de thionndadh a’ bhuild air an stòr-bhòrd" msgid "Copy" msgstr "Lethbhreac" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "Dèan lethbhreac co-dhiù" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Dèan lethbhreac de dh’fhacal-faire na h-aplacaid" @@ -2087,8 +2187,8 @@ msgstr "Dèan lethbhreac de dh’fhacal-faire na h-aplacaid" msgid "Copy at:// URI" msgstr "Dèan lethbhreac dheth at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Dèan lethbhreac dhe DID an ùghdair" @@ -2120,10 +2220,10 @@ msgstr "Dèan lethbhreac dhen cheangal" msgid "Copy link to list" msgstr "Dèan lethbhreac dhen cheangal ris an liosta" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Dèan lethbhreac dhen cheangal ris a’ phost" @@ -2136,18 +2236,18 @@ msgstr "Cuir lethbhreac dhen cheangal dhan phròifil" msgid "Copy link to starter pack" msgstr "Cuir lethbhreac dhen cheangal dhan pacaid tòiseachaidh" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Dèan lethbhreac de theacsa na teachdaireachd" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Dèan lethbhreac dhen phost aig:// URI" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Dèan lethbhreac de theacsa a’ phuist" @@ -2159,11 +2259,25 @@ msgstr "Dèan lethbhreac dhen chòd QR" msgid "Copy TXT record value" msgstr "Dèan lethbhreac dhen reacord TXT" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Poileasaidh na còrach-lethbhreac" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "Cha b’ urrainn dhuinn ceangal ris an inbhir ghnàthaichte" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "Cha b’ urrainn dhuinn ceangal ri seirbheis an inbhir" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "Cha d’fhuair sinn lorg air a’ phròifil" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "Cha b’ urrainn dhuinn a’ chabadaich a mhùchadh" msgid "Could not process your video" msgstr "Cha b’ urrainn a’ video agad a phròiseasadh" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "Cha b’ urrainn dhuinn na h-atharraichean a shàbhaladh: {0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "Cha b’ urrainn dhuinn roghainnean nam brathan ùrachadh" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Cruthaich" @@ -2195,7 +2317,7 @@ msgstr "Cruthaich còd QR airson pacaid tòiseachaidh" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Cruthaich pacaid tòiseachaidh" @@ -2205,21 +2327,22 @@ msgstr "Cruthaich pacaid tòiseachaidh dhomh" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Cruthaich cunntas" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Cruthaich cunntas" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Cruthaich cunntas" @@ -2241,7 +2364,7 @@ msgstr "Cruthaich fear eile" msgid "Create new account" msgstr "Cruthaich cunntas ùr" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Cruthaich aithris airson {0}" @@ -2268,7 +2391,7 @@ msgstr "Gnàthaichte" msgid "Customization options" msgstr "Roghainnean gnàthachaidh" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Co-dhùin cò aig a bheil cead eadar-ghabhail a dhèanamh leis a’ phost seo." @@ -2278,12 +2401,12 @@ msgstr "Cuir air gleus àrainneachd Bhluesky dhut fhèin" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Dorcha" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Dorcha" @@ -2292,21 +2415,21 @@ msgstr "Dorcha" msgid "Dark mode" msgstr "Am modh dorcha" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Ùrlar dorcha" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Là-breith" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Cuir an cunntas à gnìomh" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Dì-bhugaich a’ mhodarataireachd" @@ -2314,7 +2437,7 @@ msgstr "Dì-bhugaich a’ mhodarataireachd" msgid "Debug panel" msgstr "Leòsan an dì-bhugachaidh" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Bun-roghainn" @@ -2322,8 +2445,8 @@ msgstr "Bun-roghainn" msgid "Default icons" msgstr "Na h-ìomhaigheagan bunaiteach" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Na h-ìomhaigheagan bunaiteach" msgid "Delete" msgstr "Sguab às" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Sguab às an cunntas" @@ -2355,7 +2478,7 @@ msgstr "A bheil thu airson facal-faire na h-aplacaid a sguabadh às?" msgid "Delete chat" msgstr "Sguab a’ chabadaich às" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Sguab às clàr foirgheall na cabadaich" @@ -2370,7 +2493,7 @@ msgstr "Sguab an còmhradh às" msgid "Delete Conversation" msgstr "Sguab às an còmhradh" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Sguab às dhomh-sa" @@ -2378,11 +2501,11 @@ msgstr "Sguab às dhomh-sa" msgid "Delete list" msgstr "Sguab an liosta às" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Sguab an teachdaireachd às" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Sguab an teachdaireachd às dhomh-sa" @@ -2390,9 +2513,9 @@ msgstr "Sguab an teachdaireachd às dhomh-sa" msgid "Delete my account" msgstr "Sguab an cunntas agam às" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Sguab às am post" @@ -2409,11 +2532,11 @@ msgstr "A bheil thu airson a’ phacaid tòiseachaidh seo a sguabadh às?" msgid "Delete this list?" msgstr "A bheil thu airson an liosta seo a sguabadh às?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "A bheil thu airson am seo post a sguabadh às?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Air a sguabadh às" @@ -2422,15 +2545,20 @@ msgstr "Air a sguabadh às" msgid "Deleted Account" msgstr "Cunntas a chaidh a sguabadh às" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "Chaidh an liosta a sguabadh às" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Post a chaidh a sguabadh às." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Tuairisgeul" @@ -2447,12 +2575,12 @@ msgstr "Tha an tuairisgeul ro fhada. {DESCRIPTION_MAX_GRAPHEMES, plural, one {{0 msgid "Descriptive alt text" msgstr "Teacsa a mhìnicheas an t-susbaint" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Dealaich an luaidh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "A bheil thu airson an luaidh air a’ phost a dhealachadh?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Chaidh modh an luchd-leasachaidh a chur an comas" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Roghainnean an luchd-leasachaidh" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Còmhradh: co-dhùin cò aig a bheil cead eadar-ghabhail a dhèanamh leis a’ phost seo" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Doilleir" @@ -2492,27 +2620,27 @@ msgstr "Cuir dearbhadh 2FA air a’ phost-d à comas" msgid "Disable Email 2FA" msgstr "Cuir dearbhadh 2FA air a’ phost-d à comas" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Cuir an fhreagairt haptaigeach à comas" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Cuir na fo-thiotalan à comas" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "À comas" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Tilg air falbh" @@ -2520,11 +2648,11 @@ msgstr "Tilg air falbh" msgid "Discard changes?" msgstr "A bheil thu airson na h-atharraichean a thilgeil air falbh?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "A bheil thu airson an dreachd a thilgeil air falbh?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "A bheil thu airson am post a thilgeil air falbh?" @@ -2542,7 +2670,7 @@ msgstr "Fidir inbhirean" msgid "Discover new custom feeds" msgstr "Fidir inbhirean gnàthaichte ùra" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Fidir inbhirean ùra" @@ -2550,7 +2678,7 @@ msgstr "Fidir inbhirean ùra" msgid "Dismiss" msgstr "Leig seachad" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Leig seachad a’ mhearachd" @@ -2562,26 +2690,26 @@ msgstr "Leig seachad an treòir thòiseachail" msgid "Dismiss interests" msgstr "Leig seachad na rudan sa bheil ùidh agad" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "Leig seachad an teachdaireachd" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Leig seachad an earrann seo" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Seall baidsean nas motha airson roghainn teacsa" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Ainm-taisbeanaidh" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Ainm-taisbeanaidh" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Tha an t-ainm-taisbeanaidh seo ro fhada" @@ -2603,15 +2731,11 @@ msgstr "Na cuir an sàs am facal mùchaidh seo mu choinneamh luchd-cleachdaidh a msgid "Does not include nudity." msgstr "Gun lomnochd na bhroinn." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Chan eil e a’ tòiseachadh no a’ crìochnachadh le tàthan" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Chaidh an àrainn a dhearbhadh!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Nach eil còd agad no a bheil fear ùr a dhìth ort? <0>Briog an-seo." @@ -2619,6 +2743,15 @@ msgstr "Nach eil còd agad no a bheil fear ùr a dhìth ort? <0>Briog an-seo.Click here to resend." msgstr "Nach fhaic thu am post-d sam? <0>Briog an-seo airson a chur às ùr." +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "Na seall seo a-rithist" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "Na gabh dragh! Chaidh gach teachdaireachd is roghainn a shàbhaladh is bidh iad ri do làimh a-rithist an dèidh dhut dearbhadh gur inbheach a th’ annad." + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "Thoir gnogag dhùbailte no dèan brùthadh fada air an teachdaireachd ai msgid "Double tap to close the dialog" msgstr "Thoir gnogag dhùbailte air gus an còmhradh a dhùnadh" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Thoir gnogag dhùbailte a dh’innse gur toil leat e" @@ -2673,7 +2806,7 @@ msgstr "Luchdaich a-nuas Bluesky" msgid "Download CAR file" msgstr "Luchdaich a-nuas am faidhle CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Leig às dealbh airson a chur ris" @@ -2689,18 +2822,10 @@ msgstr "m.e. alice" msgid "e.g. Alice Lastname" msgstr "m.e. Alice Sloinneadh" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "m.e. Alice Roberts" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "m.e. alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "m.e. neach-ealain, gaol air coin is leughadair mòr." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "m.e. lomnochd ealain." @@ -2725,10 +2850,11 @@ msgstr "m.e. luchd-cleachdaidh a chuireas sanasachd mar fhreagairt gu tric." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Obraichidh gach còd aon turas. Gheibh thu barrachd chòdaichean cuiridh o àm gu àm." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Deasaich" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Deasaich" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Deasaich an t-avatar" @@ -2749,12 +2875,12 @@ msgstr "Deasaich na h-inbhirean" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Deasaich an dealbh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Deasaich roghainnean na h-eadar-ghabhalach" @@ -2776,33 +2902,33 @@ msgstr "Deasaich staid an t-srutha bheò" msgid "Edit Moderation List" msgstr "Deasaich an liosta modarataireachd" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Deasaich na h-inbhirean agam" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Deasaich a’ phròifil agam" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "Deasaich na brathan o {0}" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Deasaich na daoine" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Deasaich roghainnean eadar-ghabhail a’ phuist" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Deasaich a’ phròifil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Deasaich a’ phròifil" @@ -2814,19 +2940,11 @@ msgstr "Deasaich a’ phacaid tòiseachaidh" msgid "Edit User List" msgstr "Deasaich liosta an luchd-chleachdaidh" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Co-dhùin cò aig a bheil cead freagairt" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Deasaich an t-ainm-taisbeanaidh agad" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Deasaich tuairisgeul na pròifil agad" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Deasaich a’ phacaid tòiseachaidh agad" @@ -2839,8 +2957,8 @@ msgstr "Foghlam" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "Bhac cruthadair na liosta seo thu no bhac thusa cruthadair na liosta." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "Post-d" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "Tha 2FA air a’ phost-d à comas" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "Tha 2FA air a’ phost-d an comas" @@ -2865,10 +2983,6 @@ msgstr "Chaidh am post-d a chur as ùr" msgid "Email sent!" msgstr "Chaidh am post-d a chur!" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "Chaidh am post-d ùrachadh!" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "Chaidh am post-d a dhearbhadh!" @@ -2883,8 +2997,8 @@ msgstr "Leabaich an còd HTML" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Leabaich am post" @@ -2892,7 +3006,7 @@ msgstr "Leabaich am post" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Leabaich am post seo san làrach-lìn agad. Cha leig thu leas ach lethbhreac dhen snippet a leanas a dhèanamh agus a chur a-steach dhan chòd HTML air an làrach-lìn agad." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Cluicheadair video leabaichte" @@ -2906,7 +3020,7 @@ msgstr "Cuir an comas" msgid "Enable {0} only" msgstr "Na cuir an comas ach {0}" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Cuir comas inbheach an comas" @@ -2919,16 +3033,20 @@ msgstr "Cuir 2FA air a’ phost-d an comas" msgid "Enable external media" msgstr "Cuir meadhanan on taobh a-muigh an comas" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Cuir cluicheadairean mheadhanan an comas airson" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Cuir an comas brathan prìomhachais" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "Cuir an comas brathan o chunntas le bhith a’ tadhal air a’ phròifil is a’ brùthadh <0>ìomhaigheag a’ chluig<1/>." -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "Cuir brathan push an comas" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Cuir fo-thiotalan an comas" @@ -2941,17 +3059,14 @@ msgstr "Cuir an tùs seo a-mhàin an comas" msgid "Enable trending topics" msgstr "Cuir na cuspairean a tha a’ treandadh an comas" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Cuir an comas videothan a tha a’ treandadh san inbhir “Fidir” agad" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Cuir an comas videothan a tha a’ treandadh san inbhir “Fidir” agad." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "An comas" @@ -2963,7 +3078,7 @@ msgstr "Deireadh an inbhir" msgid "Ensure you have selected a language for each subtitle file." msgstr "Dèan cinnteach gun do thagh thu cànan airson gach faidhle fho-thiotalan." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Cuir a-steach facal-faire" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Cuir a-steach facal no taga" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "Cuir a-steach an còd" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Cuir a-steach an còd" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Tòisich an làn-sgrìn" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Cuir a-steach an do latha-breith" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Cuir a-steach an seòladh puist-d agad" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Cuir a-steach an seòladh puist-d ùr agad gu h-ìosal." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Cuir a-steach am facal-faire agad" @@ -3022,7 +3129,7 @@ msgstr "Cuir a-steach am facal-faire agad" msgid "Enter your username and password" msgstr "Cuir a-steach an t-ainm-cleachdaiche ’s am facal-faire agad" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Fosglaidh seo an làn-sgrìn" @@ -3030,16 +3137,28 @@ msgstr "Fosglaidh seo an làn-sgrìn" msgid "Entertainment" msgstr "Dibhearsan" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Mearachd" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "Dh’èirich mearachd rè luchdadh a’ phuist" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "Dh’èirich mearachd rè luchdadh na roghainn" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "Teachdaireachd na mearachd" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Dh’èirich mearachd nuair a bha sinn a’ sàbhaladh an fhaidhle" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Dh’èirich mearachd nuair a bha sinn a’ faighinn freagairt a’ Chaptcha." @@ -3047,27 +3166,34 @@ msgstr "Dh’èirich mearachd nuair a bha sinn a’ faighinn freagairt a’ Chap msgid "Error:" msgstr "Mearachd:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "Mearachd: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Duine sam bith" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Faodaidh duine sam bith freagairt" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Faodaidh duine sam bith am post seo a fhreagairt." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "on a h-uile duine" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "A h-uile rud eile" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Dùin às luchd-cleachdaidh a tha thu gan leantainn" msgid "Excludes users you follow" msgstr "Dùinidh seo às luchd-cleachdaidh a tha thu gan leantainn" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Fàg an làn-sgrìn" @@ -3106,24 +3232,28 @@ msgstr "Fàgaidh seo sealladh an deilbh" msgid "Expand alt text" msgstr "Leudaich an roghainn teacsa" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Leudaich liosta an luchd-chleachdaidh" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Leudaich no co-theannaich am post slàn a tha thu a’ freagairt" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "Leudaich teacsa a’ phuist" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Leudaichidh no co-theannaichidh seo teacsa a’ phuist" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "Bha dùil ri URI airson an clàr fhuasgladh" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Probhail" @@ -3153,15 +3283,15 @@ msgstr "Meadhanan feòlmhor no draghail." msgid "Explicit sexual images." msgstr "Dealbhan feiseil is feòlmhor." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "Rùraich" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Às-phortaich an dàta agam" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Meadhanan on taobh a-muigh" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Ma cheadaicheas tu meadhanan on taobh a-muigh, dh’fhaoidte gun toir seo comas do làraichean-lìn fiosrachadh a chruinneachadh mu do dhèidhinn is mun uidheam agad. Cha tèid fiosrachadh sam bith iarraidh no a chur gus am brùth thu am putan “Cluich”." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Roghainnean nam meadhanan on taobh a-muigh" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "Cha b’ urrainn dhuinn gabhail ris a’ chabadaich" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "Cha b’ urrainn dhuinn an emoji a chur mar fhrith-fhreagairt" @@ -3211,8 +3341,8 @@ msgstr "Cha b’ urrainn dhuinn facal-faire a chruthachadh dhan aplacaid. Feuch msgid "Failed to create conversation" msgstr "Cha b’ urrainn dhuinn an còmhradh a chruthachadh" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Cha b’ urrainn dhuinn pacaid tòiseachaidh a chruthachadh" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "Cha b’ urrainn dhuinn a’ chabadaich a sguabadh às" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Cha b’ urrainn dhuinn an teachdaireachd a sguabadh às" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Cha b’ urrainn dhuinn am post a sguabadh às, feuch ris a-rithist" @@ -3238,8 +3368,8 @@ msgstr "Cha b’ urrainn dhuinn am post a sguabadh às, feuch ris a-rithist" msgid "Failed to delete starter pack" msgstr "Cha b’ urrainn dhuinn a’ phacaid tòiseachaidh a sguabadh às" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "Cha b’ urrainn dhuinn na còmhraidhean a luchdadh" @@ -3250,14 +3380,32 @@ msgstr "Cha b’ urrainn dhuinn na còmhraidhean a luchdadh" msgid "Failed to load feeds preferences" msgstr "Cha b’ urrainn dhuinn roghainnean nan inbhirean a luchdadh" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Cha b’ urrainn dhuinn na GIFs a luchdadh" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "Cha b’ urrainn dhuinn roghainnean nam brathan a luchdadh." + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Cha b’ urrainn dhuinn na seann-teachdaireachdan a luchdadh" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "Cha b’ urrainn dhuinn an roghainn a luchdadh." + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Cha b’ urrainn dhuinn na h-inbhirean a mholamaid a luchdadh" msgid "Failed to load suggested follows" msgstr "Cha b’ urrainn dhuinn na daoine a mholamaid an leantainn a luchdadh" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "Cha b’ urrainn dhuinn comharradh gun deach gach iarrtas a leughadh" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Cha b’ urrainn dhuinn am post a phrìneachadh" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "Cha b’ urrainn dhuinn an emoji a chuir thu mar fhrith-fhreagairt a thoirt air falbh" @@ -3291,15 +3439,11 @@ msgstr "Cha b’ urrainn dhuinn an dearbhadh a thoirt air falbh" msgid "Failed to save image: {0}" msgstr "Cha b’ urrainn dhuinn an dealbh a shàbhaladh: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Cha b’ urrainn dhuinn roghainnean nam brathan a shàbhaladh, feuch ris a-rithist" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "Cha b’ urrainn dhuinn na roghainnean a shàbhaladh. Feuch ris a-rithist." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "Cha b’ urrainn dhuinn na rudan sa bheil ùidh agad a shàbhaladh." @@ -3318,7 +3462,7 @@ msgstr "Cha b’ urrainn dhuinn am post-d a chur, feuch ris a-rithist." msgid "Failed to submit appeal, please try again." msgstr "Cha b’ urrainn dhuinn an t-ath-thagradh a chur, feuch ris a-rithist." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Cha b’ urrainn dhuinn mùchadh an t-snàithlein a thoglachadh, feuch ris a-rithist" @@ -3335,7 +3479,11 @@ msgstr "Cha b’ urrainn dhuinn am post-d ùrachadh, feuch ris a-rithist." msgid "Failed to update feeds" msgstr "Cha b’ urrainn dhuinn na h-inbhirean ùrachadh" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "Cha b’ urrainn dhuinn foirgheall nam brathan ùrachadh" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Cha b’ urrainn dhuinn na roghainnean ùrachadh" @@ -3354,15 +3502,23 @@ msgstr "Cha b’ urrainn dhuinn am post-d a dhearbhadh, feuch ris a-rithist." msgid "Failed to verify handle. Please try again." msgstr "Cha b’ urrainn dhuinn an làmhrachan a dhearbhadh. Feuch ris a-rithist." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Inbhir" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Inbhir le {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "Cruthadair inbhirean" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "Aithnichear inbhirean" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Clàr-taice nan inbhirean" @@ -3371,35 +3527,39 @@ msgstr "Clàr-taice nan inbhirean" msgid "Feed toggle" msgstr "Toglaiche nan inbhirean" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "Chan eil an t-inbhir ri fhaighinn" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Innis dhuinn dè do bheachd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Chaidh do bheachdan a chur!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Inbhirean" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Tha inbhirean nan algairimean gnàthaichte as urrainn do luchd-cleachdaidh a chruthachadh ma tha beagean de sgil aca air còdachadh. <0/> airson barrachd fiosrachaidh." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Chaidh na h-inbhirean ùrachadh!" @@ -3428,6 +3588,14 @@ msgstr "Criathraich an lorg a-rèir cànain" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Criathraich an lorg a-rèir cànain (an-dràsta fhèin: {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "Criathraich cò aig am bi cead iarrtas a chur airson brathan mu do ghnìomhachd fhaighinn" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "Criathraich na daoine a gheibh thu teachdaireachdan uapa" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "A’ cur crìoch air" @@ -3448,7 +3616,7 @@ msgstr "Lorg daoine airson an leantainn" msgid "Find posts, users, and feeds on Bluesky" msgstr "Lorg puist, cleachdaichean is inbhirean air Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Crìochnaich" @@ -3456,17 +3624,17 @@ msgstr "Crìochnaich" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Dubh gun chaisead" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Gorm gun chaisead" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Geal gun chaisead" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Sùbailte" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Lean" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Lean ri {0}" @@ -3518,7 +3686,7 @@ msgstr "Lean ris a’ chunntas" msgid "Follow all" msgstr "Lean ris na h-uile" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Lean iad cuideachd" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Lean iad cuideachd" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Tha <0>{0} ga leantainn" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Tha <0>{0} is {1, plural, one {# eile} two {# eile} few {# eile} other {# eile}} ga leantainn" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Tha <0>{0} agus <1>{1} ga leantainn" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Tha <0>{0}, <1>{1} is {2, plural, one {# eile} two {# eile} few {# eile} other {# eile}} ga leantainn" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Luchd-leantainn aig @{0} as aithne dhut-sa cuideachd" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Luchd-leantainn as aithne dhut" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Ga leantainn" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Ga leantainn" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "A’ leantainn {0} a-nis" @@ -3579,8 +3751,8 @@ msgstr "A’ leantainn {handle}" msgid "Following feed preferences" msgstr "Roghainnean inbhir nan daoine a tha thu a’ leantainn" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Roghainnean inbhir nan daoine a tha thu a’ leantainn" @@ -3592,11 +3764,11 @@ msgstr "Gad leantainn" msgid "Follows You" msgstr "Gad leantainn" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Cruth-clò" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Meud a’ chrutha-chlò" @@ -3613,7 +3785,7 @@ msgstr "Air sgàth adhbharan tèarainteachd, feumaidh sinn còd dearbhaidh a chu msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Air sgàth adhbharan tèarainteachd, chan fhaic thu seo a-rithist. Ma chailleas tu facal-faire na h-aplacaid, bidh agad ri fear ùr a ghintinn." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "’S e cruth-clò an ùrlair as fheàrr a dh’obraicheas, nar beachd-ne." @@ -3643,11 +3815,15 @@ msgstr "Na dhìochuimhnich thu e?" msgid "Frequently Posts Unwanted Content" msgstr "A’ postadh susbaint gun iarraidh gu tric" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "O" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "O @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "O <0/>" @@ -3660,14 +3836,68 @@ msgstr "An gailearaidh" msgid "Generate a starter pack" msgstr "Gin pacaid tòiseachaidh" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Faigh cobhair" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "Faigh brath nuair a leanas daoine thu." + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "Faigh brathan nuair a dh’innseas daoine gur toil leotha rud a dh’ath-phostaich thu." + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "Faigh brathan nuair a dh’innseas daoine gur toil leotha rud a phostaich thu." + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "Faigh brath nuair a nì daoine iomradh ort." + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "Faigh brathan nuair a nì daoine iomradh air post agad." + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "Faigh brathan nuair a fhreagras daoine post agad." + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "Faigh brathan nuair a dh’ath-phostaicheas daoine rud a dh’ath-phostaich thusa." + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "Faigh brathan nuair a dh’ath-phostaicheas daoine rud a phostaich thusa." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "Faigh brathan mu phuist ùra" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Faigh brathan mu phuist is freagairtean o chunntasan a thaghas tu." + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "Faigh brath nuair a dh’fhoillsicheas {name} post ùr" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "Faigh brathan mu ghnìomhachd a’ chunntais seo" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "Faigh brath nuair a dh’fhoillsicheas {name} post ùr" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "Faigh brath nuair a dh’fhoillsicheas cuideigin post ùr" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "Dèan toiseach-tòiseachaidh" @@ -3688,14 +3918,16 @@ msgstr "Cuir aodann ris a’ phròifil agad" msgid "Glaring violations of law or terms of service" msgstr "Briseadh mòr an lagha no teirmichean na seirbheise" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "Cuir struth beò" msgid "Go live for" msgstr "Cuir struth beò fad" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "Tadhail air a’ phròifil aig {firstAuthorName}" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "Tadhail air roghainnean a’ chunntais" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Tadhail air a’ chòmhradh le {0}" @@ -3779,8 +4017,8 @@ msgstr "Meadhanan grafaigeach" msgid "Half way there!" msgstr "Leathach slighe!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Làmhrachan" @@ -3797,7 +4035,7 @@ msgstr "Chaidh an làmhrachan atharrachadh!" msgid "Handle too long. Please try a shorter one." msgstr "Tha an làmhrachan ro fhada. Feuch fear nas giorra." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Haptaigeachd" @@ -3806,7 +4044,7 @@ msgstr "Haptaigeachd" msgid "Harassment, trolling, or intolerance" msgstr "Sàrachadh, trolladh no neo-fhulangas" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Taga-hais" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Taga-hais {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "A bheil còd agad? <0>Briog an-seo." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "A bheil duilgheadasan agad?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Cobhair" @@ -3839,8 +4077,13 @@ msgstr "Dèan nas soilleire e do dhaoine nach e bot a th’ annad le bhith a’ msgid "Here is your app password!" msgstr "Seo dhut facal-faire na h-aplacaid!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "Shin thu 👋" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Falaichte" @@ -3848,16 +4091,16 @@ msgstr "Falaichte" msgid "Hidden by your moderation settings." msgstr "Falaichte ri linn nan roghainnean modarataireachd agad." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Liosta fhalaichte" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Liosta fhalaichte" msgid "Hide" msgstr "Falaich" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Falaich" @@ -3875,18 +4118,18 @@ msgstr "Falaich" msgid "Hide customization options" msgstr "Falaich gach roghainn gnàthachaidh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Falaich am post seo uam-sa" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Falaich an fhreagairt seo on a h-uile duine" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Falaich an fhreagairt seo uam-sa" @@ -3894,12 +4137,12 @@ msgstr "Falaich an fhreagairt seo uam-sa" msgid "Hide this card" msgstr "Falaich a’ chairt seo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "A bheil thu airson am post seo a chur am falach?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "A bheil thu airson an fhreagairt seo a chur am falach?" @@ -3913,11 +4156,11 @@ msgstr "Falaich na cuspairean a tha a’ treandadh" msgid "Hide trending topics?" msgstr "A bheil thu airson na cuspairean a tha a’ treandadh a chur am falach?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "A bheil thu airson na videothan a tha a’ treandadh a chur am falach?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Falaich liosta an luchd-chleachdaidh" @@ -3926,32 +4169,32 @@ msgstr "Falaich liosta an luchd-chleachdaidh" msgid "Hide verification badges" msgstr "Falaich na baidsean dearbhaidh" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Falaichidh seo an t-susbaint" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hm, tha duilgheadas air choireigin ag èirigh gach turas a nì sinn conaltradh le frithealaiche an inbhir. Innis do shealbhadair an inbhir mun duilgheadas seo." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hm, tha coltas gu bheil frithealaiche an inbhir air a dhroch-rèiteachadh. Innis do shealbhadair an inbhir mun duilgheadas seo." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hm, tha coltas gu bheil frithealaiche an inbhir far loidhne. Innis do shealbhadair an inbhir mun duilgheadas seo." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hm, thug frithealaiche an inbhir seachad droch-fhreagairt. Innis do shealbhadair an inbhir mun duilgheadas seo." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hm, chan fhaigh sinn lorg air an inbhir seo. Faodaidh gun deach a sguabadh às." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hm, tha coltas nach urrainn dhuinn an dàta seo a luchdadh. Chì thu barrachd fiosrachaidh mu dhèidhinn gu h-ìosal. Ma mhaireas an duilgheadas seo, cuir fios thugainn." @@ -3959,15 +4202,15 @@ msgstr "Hm, tha coltas nach urrainn dhuinn an dàta seo a luchdadh. Chì thu bar msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hm, cha b’ urrainn dhuinn an t-seirbheis modarataireachd sin a luchdadh." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Air do shocair! Tha sinn a’ toirt comas air video mean air mhean – glacaidh foighidinn iasg. Na bi fada gun tilleadh!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Dhachaigh" @@ -3984,10 +4227,10 @@ msgstr "Solaraiche na h-òstaireachd" msgid "Hot" msgstr "Teth" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Brod nam freagairtean an toiseach" @@ -3996,10 +4239,6 @@ msgstr "Brod nam freagairtean an toiseach" msgid "How should we open this link?" msgstr "Ciamar a dh’fhosglas sinn an ceangal seo dhut?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Tha mi a’ tuigsinn" msgid "If alt text is long, toggles alt text expanded state" msgstr "Ma tha an roghainn teacsa ro fhada, dùisgidh seo staid na roghainn teacsa leudaichte" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Mur eil thu nad inbheach fhathast a-rèir laghan do dhùthcha, feumaidh am pàrant no neach-glèidhidh laghail agad na teirmichean seo a leughadh as do leth." @@ -4031,11 +4270,11 @@ msgstr "Ma sguabas tu às an liosta seo, chan urrainn dhut aiseag às a dhèidh. msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Ma tha àrainn agad fhèin, ’s urrainn dhut sin a chleachdadh mar an làmhrachan agad. Bheir seo comas dhut dearbhadh gur tusa a th’ ann thu fhèin. <0>Barrachd fiosrachaidh an-seo." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "Ma tha agad ris am post-d agad ùrachadh, <0>briog an-seo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Ma bheir thu am post seo air falbh, chan urrainn dhut aiseag às a dhèidh." @@ -4047,6 +4286,10 @@ msgstr "Ma dh’ùraicheas tu an seòladh puist-d agad, thèid an 2FA a chur à msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Ma tha thu airson am facal-faire seo atharrachadh, cuiridh sinn còd thugad a dhèanamh cinnteach gur ann agad-sa a tha an cunntas seo." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "Ma tha thu airson cuingeachadh cò gheibh brathan mu ghnìomhachd sa chunntas agad, is urrainn dhut seo a chur air gleus sna <0>Roghainnean → Prìobhaideachd is tèarainteachd." + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "Mas e neach-leasachaidh a th’ annad, is urrainn dhut frithealaiche a chur air chois thu fhèin." @@ -4091,13 +4334,41 @@ msgstr "Breug-riochdachadh no breugan mun dearbh-aithne no dlùth-chompanas aca" msgid "Impersonation, misinformation, or false claims" msgstr "Breug-riochdachadh, fiosrachadh-brèige no tagraidhean-brèige" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "San aplacaid" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "Brathan san aplacaid" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "San aplacaid; a h-uile duine" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "San aplacaid; daoine a tha thu gan leantainn" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "San aplacaid; push" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "San aplacaid; push, a h-uile duine" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "San aplacaid; push, daoine a tha thu gan leantainn" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Teachdaireachdan mì-iomchaidh no ceanglaichean feòlmhor" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "Bogsa a-steach falamh!" @@ -4105,7 +4376,7 @@ msgstr "Bogsa a-steach falamh!" msgid "Incorrect username or password" msgstr "Tha an t-ainm-cleachdaiche no facal-faire ceàrr" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Chuir sinn còd thugad air a’ phost-d airson am facal-faire ath-shuidheachadh" @@ -4113,7 +4384,7 @@ msgstr "Chuir sinn còd thugad air a’ phost-d airson am facal-faire ath-shuidh msgid "Input confirmation code for account deletion" msgstr "Cuir a-steach an còd dearbhaidh airson an cunntas a sguabadh às" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Cuir a-steach facal-faire ùr" @@ -4129,10 +4400,14 @@ msgstr "Cuir a-steach an còd a chuir sinn thugad air a’ phost-d" msgid "Interaction limited" msgstr "Eadar-ghabhail chuingichte" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Roghainnean na h-eadar-ghabhalach" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "Tha brathan gnìomhachd ri làimh a-nis" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Tha an còd dearbhaidh 2FA mì-dhligheach." msgid "Invalid handle. Please try a different one." msgstr "Feuch fear eile." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Clàr puist mì-dhligheach no fear ris nach eil taic" @@ -4158,7 +4433,7 @@ msgstr "Còd dearbhaidh mì-dhligheach" msgid "Invite a Friend" msgstr "Thoir cuireadh do charaid" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Còd a’ chuiridh" @@ -4186,15 +4461,15 @@ msgstr "Thoir cuireadh dha do charaidean na h-inbhirean is daoine as fheàrr lea msgid "Invites, but personal" msgstr "Cuiridhean ach pearsanta" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Tha e ceart" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Chan eil ann ach thu fhèin an-dràsta fhèin! Cuir barrachd dhaoine ris a’ phacaid tòiseachaidh agad le bhith a’ dèanamh lorg gu h-àrd." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "ID na h-obrach: {0}" @@ -4220,11 +4495,27 @@ msgstr "Thig a chòmhradh" msgid "Journalism" msgstr "Naidheachdas" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "Cùm fios rium" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "Poileasaidh prìobhaideachd KWS" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "Teirmichean a’ chleachdaidh aig KWS" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "Làrach-lìn KWS" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Air a leubaileadh le {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Air a leubaileadh leis an ùghdar." @@ -4237,7 +4528,7 @@ msgstr "Leubailean" msgid "Labels added" msgstr "Chaidh na leubailean a chur ris" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Tha leubailean nan nòtaichean mu chleachdaichean is susbaint. Bheir iad rabhadh do dhaoine, is urrainnear rudan a chur am falach leotha agus na rudan air an lìonra a sheòrsachadh." @@ -4253,22 +4544,30 @@ msgstr "Leubailean a tha ris an t-susbaint agad" msgid "Language selection" msgstr "Taghadh a’ chànain" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Roghainnean cànain" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Cànain" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Nas motha" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "Air a thòiseachadh {timeAgo} air ais turas mu dheireadh" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "Air a thòiseachadh diog air ais turas mu dheireadh" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "As ùire" @@ -4282,7 +4581,6 @@ msgstr "barrachd fiosrachaidh" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "Barrachd fiosrachaidh" @@ -4290,6 +4588,10 @@ msgstr "Barrachd fiosrachaidh" msgid "Learn More" msgstr "Barrachd fiosrachaidh" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "Barrachd fiosrachadh mu dhearbhadh na h-aoise" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Barrachd fiosrachaidh mu dhèidhinn Bluesky" @@ -4298,15 +4600,23 @@ msgstr "Barrachd fiosrachaidh mu dhèidhinn Bluesky" msgid "Learn more about self hosting your PDS." msgstr "Barrachd fiosrachaidh mu fhèin-òstaireachd a’ PDS agad." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "Barrachd fiosrachaidh mun mhodarataireachd a rinneadh air an t-susbaint seo" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Barrachd fiosrachaidh mun mhodarataireachd a rinneadh air an t-susbaint seo." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "Airson barrachd fiosrachaidh mu na tha ùr agus mar a dh’innseas tu dhuinn dè do bheachd, <0>leugh am post sa bhloga againn." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Airson barrachd fiosrachaidh mu na tha ùr agus mar a dh’innseas tu dhuinn dè do bheachd, leugh am post sa bhloga againn." + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Barrachd fiosrachaidh mun rabhadh seo" @@ -4316,12 +4626,16 @@ msgstr "Barrachd fiosrachaidh mun rabhadh seo" msgid "Learn more about verification on Bluesky" msgstr "Barrachd fiosrachaidh mun dearbhadh air Bluesky" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Barrachd fiosrachaidh mu na rudan a tha poblach air Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "Faigh barrachd fiosrachaidh ann an <0>roghainnean a’ chunntais agad." + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Barrachd fiosrachaidh." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Fàg an còmhradh" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." +msgid "Leave them all unselected to see any language." msgstr "Ma tha thu airson stuth fhaicinn ge be dè an cànan, na tagh gin gu h-ìosal." -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "A’ fàgail Bluesky" @@ -4370,7 +4685,7 @@ msgstr "Tiugainn!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Soilleir" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "’S toil" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "’S toil ({0, plural, one {’s toil le # seo} two {’s toil le # seo} few {’s toil le # seo} other {’s toil le # seo}})" @@ -4397,6 +4712,10 @@ msgstr "Nochd gur toil leat 10 puist" msgid "Like 10 posts to train the Discover feed" msgstr "Nochd gur toil leat 10 puist airson teagasg a thoirt dhan inbhir “Fidir”" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "Brathan mu dhaoine a dh’innis gur toil leotha rud" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Innis gur toil leat an t-inbhir seo" @@ -4405,8 +4724,8 @@ msgstr "Innis gur toil leat an t-inbhir seo" msgid "Like this labeler" msgstr "Nochd gur toil leat an leubailich seo" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Daoine as toil leotha seo" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Daoine as toil leotha seo" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "’S toil le {0, plural, one {# seo} two {# seo} few {# seo} other {# seo}}" @@ -4428,20 +4747,36 @@ msgstr "’S toil le {0, plural, one {# seo} two {# seo} few {# seo} other {# se msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "’S toil le {likeCount, plural, one {# seo} two {# seo} few {# seo} other {# seo}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Na ’s toil le daoine" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "’S toil le cuideigin rud a dh’ath-phostaich thu" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "Brathan mu dhaoine a dh’innis gur toil leotha rud a dh’ath-phostaich thu" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Daoine as toil leotha am post seo" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Loidhneach" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Liosta" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Chaidh an liosta a bhacadh" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Liosta le {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "Liosta le <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Liosta leat-sa" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "Cruthadair na liosta" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Chaidh an liosta a neo-mhùchadh" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Liostaichean" @@ -4537,7 +4876,7 @@ msgstr "Luchdaich barrachd dheth" msgid "Load more suggested feeds" msgstr "Luchdaich barrachd inbhirean a mholamaid" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Luchdaich na brathan ùra" @@ -4552,11 +4891,11 @@ msgstr "Luchdaich na puist ùra" msgid "Loading..." msgstr "Ga luchdadh…" -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Loga" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Faicsinneachd do dhaoine a chlàraich a-mach" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "An suaicheantas le @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "An suaicheantas le <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "An suaicheantas le <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Dèan brùthadh fada airson clàr-taice nan tagaichean airson #{tag} fhosgladh" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Tha an coltas a leanas air: XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "Cuir air gleus roghainnean post-d a’ chunntais agad" msgid "Make one for me" msgstr "Dèan fear dhomh" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Dèan cinnteach gur e seo a tha fa-near dhut!" @@ -4606,7 +4945,7 @@ msgstr "Dèan cinnteach gur e seo a tha fa-near dhut!" msgid "Manage saved feeds" msgstr "Stiùirich na h-inbhirean a shàbhail thu" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "Stiùirich na roghainnean dearbhaidh" @@ -4614,9 +4953,9 @@ msgstr "Stiùirich na roghainnean dearbhaidh" msgid "Manage your muted words and tags" msgstr "Stiùirich na faclan is tagaichean a mhùch thu" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "Comharraich gun deach iad uile a leughadh" @@ -4625,15 +4964,13 @@ msgstr "Comharraich gun deach iad uile a leughadh" msgid "Mark as read" msgstr "Comharraich gun deach a leughadh" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "Chaidh comharradh gun deach iad uile a leughadh" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "Uaireigin eile ’s dòcha" @@ -4645,19 +4982,26 @@ msgstr "Meadhanan" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Meadhanan a chuireadh dragh air cuid a dhaoine no a bhiodh mì-iomchaidh." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "Brathan mu iomradh" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "luchd-cleachdaidh air a bheil iomradh" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Luchd-cleachdaidh air a bheil iomradh" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Iomraidhean" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "An clàr-taice" @@ -4665,7 +5009,7 @@ msgstr "An clàr-taice" msgid "Message {0}" msgstr "Cuir teachdaireachd gu {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Chaidh an teachdaireachd a sguabadh às" @@ -4674,11 +5018,11 @@ msgstr "Chaidh an teachdaireachd a sguabadh às" msgid "Message deleted" msgstr "Chaidh an teachdaireachd a sguabadh às" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "Teachdaireachd o @{0}: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Teachdaireachd on fhrithealaiche: {0}" @@ -4691,19 +5035,23 @@ msgstr "Raon ion-chur na teachdaireachd" msgid "Message is too long" msgstr "Tha an teachdaireachd ro fhada" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "Roghainnean na teachdaireachd" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Teachdaireachdan" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Meadhan-oidhche" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "Brathan eile" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Cunntas meallta" msgid "Misleading Post" msgstr "Post meallta" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Modarataireachd" @@ -4725,17 +5073,17 @@ msgstr "Modarataireachd" msgid "Moderation details" msgstr "Mion-fhiosrachadh mun mhodarataireachd" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Liosta modarataireachd le {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Liosta modarataireachd le <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Liosta modarataireachd leat-sa" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Chaidh an liosta modarataireachd ùrachadh" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Liostaichean modarataireachd" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Liostaichean modarataireachd" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "roghainnean modarataireachd" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Staidean modarataireachd" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Innealan modarataireachd" @@ -4775,7 +5123,7 @@ msgstr "Innealan modarataireachd" msgid "Moderator has chosen to set a general warning on the content." msgstr "Thagh modaratair rabhadh coitcheann dhan t-susbaint." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Barrachd" @@ -4790,13 +5138,13 @@ msgstr "Barrachd inbhirean" msgid "More options" msgstr "Barrachd roghainnean" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Na ’s toil le mòran an toiseach" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Na freagairtean as toil le mòran an toiseach" @@ -4808,8 +5156,8 @@ msgstr "Filmichean" msgid "Music" msgstr "Ceòl" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Mùch" @@ -4819,8 +5167,8 @@ msgstr "Mùch" msgid "Mute {tag}" msgstr "Mùch {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Mùch am facal seo ann an tagaichean a-mhàin" msgid "Mute this word until you unmute it" msgstr "Mùch am facal seo gus an neo-mhùch thu e" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Mùch an snàithlean" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Mùch faclan ⁊ tagaichean" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Cunntasan a chaidh am mùchadh" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Cunntasan a chaidh am mùchadh" @@ -4898,7 +5246,7 @@ msgstr "Ma mhùchas tu cunntas, cha nochd na puist aca san inbhir agad no sna br msgid "Muted by \"{0}\"" msgstr "Air a mhùchadh le “{0}”" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Faclan ⁊ tagaichean air am mùchadh" @@ -4911,7 +5259,7 @@ msgstr "Tha am mùchadh prìobhaideach. Ma mhùchas tu cunntas, is urrainn dhaib msgid "My Birthday" msgstr "Mo cho-là breith" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Na h-inbhirean agam" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Nàdar" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Tadhail air {0}" @@ -4958,11 +5306,11 @@ msgstr "Bheir seo thu gun ath-sgrìn" msgid "Navigates to your profile" msgstr "Bheir seo thu gun phròifil agad" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Airson atharrachadh?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "A bheil agad ri aithris a dhèanamh air briseadh còrach-lethbhreac, iarrtas laghail no cùis a thaobh gèilleadh ri riaghailt?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Airson aithris a dhèanamh air briseadh còrach-lethbhreac?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Ùr" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "{postsCount, plural, one {post ùr} two {phost ùr} few {puist ùra} other {post ùra}} o {firstAuthorLink}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "{postsCount, plural, one {post ùr} two {phost ùr} few {puist ùra} other {post ùra}} o {firstAuthorName}" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Cabadaich ùr" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "Seòladh puist-d ùr" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "Gleus ùr" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "Brathan mu luchd-leantainn ùr" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "Luchd-leantainn ùr" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Teachdaireachdan ùra" msgid "New Moderation List" msgstr "Liosta modarataireachd ùr" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Facal-faire ùr" @@ -5029,7 +5396,7 @@ msgstr "Facal-faire ùr" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Post ùr" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Post ùr" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Puist ùra o {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Puist ùra o {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}}" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Còmhradh fiosrachaidh do chleachdaiche ùr" @@ -5054,10 +5429,14 @@ msgstr "Còmhradh fiosrachaidh do chleachdaiche ùr" msgid "New User List" msgstr "Liosta luchd-cleachdaidh ùr" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "As ùire an toiseach" @@ -5071,15 +5450,15 @@ msgstr "Naidheachdan" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "Gun phanail DNS" msgid "No expiry set" msgstr "Cha deach suidheachadh cuin a dh’fhalbhas an ùine air" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Cha d’fhuair sinn lorg air GIF brosnaichte sam bith. Dh’fhaoidte gu bheil duilgheadas aig Tenor." @@ -5119,32 +5498,35 @@ msgstr "Gun dealbh" msgid "No likes yet" msgstr "Cha toil le gin seo fhathast" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Chan eil thu a’ leantainn {0} tuilleadh" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "Chan fhaod e a bhith nas fhaide na {MAX_SERVICE_HANDLE_LENGTH, plural, one {# charactar} two {# charactar} few {# charactaran} other {# caractar}}" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Gun teachdaireachdan fhathast" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Chan eil brath sam bith ann fhathast!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Na ceadaich iad o dhuine sam bith" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Chan fhaod duine sam bith ach an t-ùghdar luaidh a dhèanamh air a’ phost seo." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "Chan eil post sam bith an-seo" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Gun phost fhathast." @@ -5171,7 +5553,7 @@ msgstr "Cha robh toradh ann" msgid "No results for \"{0}\"." msgstr "Cha d’fhuair sinn toradh sam bith airson “{0}”." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Cha deach toradh a lorg" @@ -5179,9 +5561,9 @@ msgstr "Cha deach toradh a lorg" msgid "No results found for \"{query}\"" msgstr "Cha deach toradh a lorg airson “{query}”" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Cha deach toradh a lorg airson “{query}”" @@ -5189,7 +5571,7 @@ msgstr "Cha deach toradh a lorg airson “{query}”" msgid "No results." msgstr "Gun toradh." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Cha deach toradh a lorg airson “{search}”." @@ -5198,7 +5580,7 @@ msgstr "Cha deach toradh a lorg airson “{search}”." msgid "No thanks" msgstr "Cha chuir, mòran taing" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Chan eil duine sam bith" @@ -5223,59 +5605,76 @@ msgstr "Cha d’fhuair sinn lorg air duine sam bith. Feuch is lorg cuideigin eil msgid "Non-sexual Nudity" msgstr "Lomnochd neo-fheiseil" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "Chan eil gin" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "Chan eil neach sam bith a tha thusa a’ leantainn ga leantainn" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Cha deach a lorg" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Fiosrachadh mu cho-roinneadh" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "An aire: Tha Bluesky na lìonra fosgailte agus poblach. Chan eil an roghainn seo a’ cuingeachadh ach faicsinneachd na susbainte agad ann an aplacaid Bluesky is air an làrach-lìn ach dh’fhaoidte nach gèill aplacaidean eile ris an roghainn seo. Dh’fhaoidte gun seall aplacaidean is làraichean-lìn eile an t-susbaint agad do luchd-cleachdaidh a rinn clàradh a-mach." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "An aire: Chan fhaic ach luchd-cleachdaidh a tha clàraichte a-staigh seo." + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Chan eil dad an-seo" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Criathragan nam brathan" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Roghainnean nam brathan" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Roghainnean nam brathan" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Fuaimean nam brathan" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Fuaimean nam brathan" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Brathan" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "Brathan mu rud sam bith eile, can nuair a chuir cuideigin gu feum pacaid-tòiseachaidh agad." + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "an-dràsta" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Lomnochd no susbaint inbheach ach gun leubail d’ a rèir" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Dheth" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Ìoc!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "Ceart ma-thà" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Ceart ma-thà" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "As sine an toiseach" @@ -5331,19 +5736,19 @@ msgstr "As sine an toiseach" msgid "on<0><1/><2><3/>" msgstr "air <0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Ath-shuidheachadh a’ bhòrdachaidh" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "Tha roghainn teacsa a dhìth air co-dhiù aon GIF." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Tha roghainn teacsa a dhìth air co-dhiù aon dealbh." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Tha roghainn teacsa a dhìth air co-dhiù aon video." @@ -5351,13 +5756,15 @@ msgstr "Tha roghainn teacsa a dhìth air co-dhiù aon video." msgid "Only .jpg and .png files are supported" msgstr "Chan eil taic ach ri faidhlichean .jpg agus .png" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Chan fhaod ach {0} freagairt." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Chan fhaod ach litrichean, àireamhan is tàthanan a bhith ann" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "Dìreach luchd-leantainn a tha mise gan leantainn cuideachd" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Chan eil taic ach ri faidhlichean dhealbhan" msgid "Only WebVTT (.vtt) files are supported" msgstr "Chan eil taic ach ri faidhlichean WebVTT (.vtt)" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Ìoc, chaidh rudeigin ceàrr!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Ìoc!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Fosgail an clàr-taice air an taobh" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Fosgail ròghnaichear nan emoji" @@ -5416,7 +5822,7 @@ msgstr "Fosgail clàr-taice roghainnean an inbhir" msgid "Open full emoji list" msgstr "Fosgail liosta shlàn nan emoji" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Fosgail an ceangal ri {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Fosgail an ceangal ri {niceUrl}" msgid "Open message options" msgstr "Fosgail roghainnean nan teachdaireachdan" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Fosgail duilleag dì-bhugachadh na modarataireachd" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Fosgail roghainnean nam faclan is tagaichean mùchte" @@ -5453,16 +5859,16 @@ msgstr "Fosgail clàr-taice a’ cho-roinnidh" msgid "Open starter pack menu" msgstr "Fosgail clàr-taice na pacaide tòiseachaidh" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Fosgail duilleag an leabhair-sgeulachd" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Fosgail log an t-siostaim" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Fosglaidh seo na roghainnean, {numItems} dhiubh" @@ -5490,11 +5896,11 @@ msgstr "Fosglaidh seo an camara air an uidheam" msgid "Opens captions and alt text dialog" msgstr "Fosglaidh seo na caipseanan is còmhradh na roghainn teacsa" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Fosglaidh seo an còmhradh airson atharrachadh an làmhrachain" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Fosglaidh seo an gleus-sgrìobhaidh" @@ -5502,7 +5908,7 @@ msgstr "Fosglaidh seo an gleus-sgrìobhaidh" msgid "Opens device photo gallery" msgstr "Fosglaidh seo gailearaidh dhealbhan an uidheim" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Fosglaidh seo ròghnaichear nan emoji" @@ -5520,15 +5926,19 @@ msgstr "Fosglaidh seo an sruth airson clàradh a-steach dhan chunntas Bhluesky a msgid "Opens GIF select dialog" msgstr "Fosglaidh seo an còmhradh airson GIF a thaghadh" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Fosglaidh seo an taic sa bhrabhsair" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "Fosglaidh seo an ceangal {0}" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Fosglaidh seo liosta nan còdaichean cuiridh" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "Fosglaidh seo còmhradh an t-srutha bheò" @@ -5536,12 +5946,8 @@ msgstr "Fosglaidh seo còmhradh an t-srutha bheò" msgid "Opens password reset form" msgstr "Fosglaidh seo foirm ath-shuidheachadh an fhacail-fhaire" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Fosglaidh seo an làrach-lìn cho-cheangailte" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Fosglaidh seo a’ phròifil" @@ -5558,7 +5964,7 @@ msgstr "Ma thogras tu, thoir seachad fiosrachadh a bharrachd gu h-ìosal:" msgid "Options:" msgstr "Roghainnean:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "No cuir còmhla ris na roghainnean seo:" @@ -5600,6 +6006,10 @@ msgstr "Cunntas eile" msgid "Other..." msgstr "Eile…" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "Am post sa bhlog againn" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "Fhuair an sgioba modarataireachd againn an aithris a chuir thu thugainn." @@ -5608,7 +6018,7 @@ msgstr "Fhuair an sgioba modarataireachd againn an aithris a chuir thu thugainn. msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Thug na modaratairean againn sùil air aithrisean a fhuair sinn is chuir iad romhpa cead-inntrigidh do chabadaich air Bluesky a thoirt air falbh uat." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Cha deach an duilleag a lorg" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Cha deach an duilleag a lorg" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Chaidh am facal-faire ùrachadh" msgid "Password updated!" msgstr "Chaidh am facal-faire ùrachadh!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Cuir na stad" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Cuir a’ video na stad" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Daoine" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Daoine a tha @{0} a’ leantainn" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Daoine a leanas ri @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "Daoine a tha mi gan leantainn" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "Chaidh cead-inntrigidh do leabhar-lann nan dealbhan agad a dhiùltadh. Cuir an comas e ann an roghainnean an t-siostaim agad." @@ -5704,12 +6119,12 @@ msgstr "Prìnich ris an dachaigh" msgid "Pin to Home" msgstr "Prìnich ris an dachaigh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Prìnich ris a’ phròifil agad" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Prìnichte" @@ -5718,7 +6133,7 @@ msgstr "Prìnichte" msgid "Pinned {0} to Home" msgstr "Chaidh {0} a phrìneachadh ris an dachaigh" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Inbhirean prìnichte" @@ -5726,38 +6141,38 @@ msgstr "Inbhirean prìnichte" msgid "Pinned to your feeds" msgstr "Prìnichte ris na h-inbhirean agad" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Cluich" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Cluich {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Cluich a’ video" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Cluich a’ video" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Cluichidh no cuiridh seo na stad an GIF" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Cluichidh no cuiridh seo na stad a’ video" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Cluichidh seo an GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Cluichidh seo a’ video" @@ -5765,12 +6180,16 @@ msgstr "Cluichidh seo a’ video" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "Mas e meadhan d’ a leithid a th’ ann, cuir leubail a bheir rabhadh mun t-susbaint ris an stuth a tha thu a’ postadh." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "Thoir sùil air a’ phost-d agad. Feumaidh an stiùireadh suas ri mionaid no dhà mus bi e ann." + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Tagh làmhrachan dhut." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Tagh facal-faire." @@ -5782,7 +6201,8 @@ msgstr "Briog air a’ cheangal sa phost-d a chuir sinn thugad airson an seòlad msgid "Please complete the verification captcha." msgstr "Coilean an Captcha airson dearbhadh a dhèanamh." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Dèan cinnteach nach eil mearachd sa phost- agad." @@ -5804,6 +6224,7 @@ msgstr "Thoir ainm àraidh air an fhacal-fhaire aplacaid seo no cleachd ainm a t msgid "Please enter a valid code." msgstr "Cuir a-steach còd dligheach." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "Cuir a-steach seòladh puist-d dligheach." @@ -5812,7 +6233,11 @@ msgstr "Cuir a-steach seòladh puist-d dligheach." msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Cuir a-steach facal, abairt no taga dligheach airson a mhùchadh" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "Cuir a-steach seòladh puist-d buan is dligheach. Feumaidh tu am post-d seo a-rithist san àm ri teachd." + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "Cuir a-steach an còd a chuir sinn gu <0>{0} gu h-ìosal." @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "Cuir a-steach an còd tèarainteachd a chuir sinn gu seòladh an t-seann phuist-d agad." #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Cuir a-steach an seòladh puist-d agad." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Cuir a-steach an còd cuiridh agad." @@ -5853,6 +6278,19 @@ msgstr "Mìnich carson a chuir {0} an leubail seo ris air mhearachd nad bheachd- msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Mìnich carson a chaidh a’ chabadaich agad a chur à comas air mhearachd nad bheachd-sa" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "Till no gnìomhaich an eileamaid seo airson tilleadh gu toiseach na susbainte ghnìomhach." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "Thoir seachad mion-fhiosrachadh sam bith eile a bhios feumail dha na modaratairean nad bheachd-sa airson measadh ceart a dhèanamh air staid dearbhadh na h-aoise agad." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "Tagh cànan" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "Tagh seirbheise modarataireachd" @@ -5870,9 +6308,9 @@ msgstr "Clàraich a-steach mar @{0}" msgid "Please verify your email" msgstr "Dearbh am post-d agad" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Dearbh am post-d agad" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "Sgrìobh do theachdaireachd gu h-ìosal:" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Poileataigs" msgid "Porn" msgstr "Pòrnografachd" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Postaich" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Postaich" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Postaich" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Postaich na h-uile" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "Chaidh am post a bhacadh" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Post le {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Post le @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Chaidh am post a sguabadh às" @@ -5919,11 +6362,14 @@ msgstr "Chaidh am post a sguabadh às" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Dh’fhàillig luchdadh suas a’ phuist. Thoir sùil air a’ cheangal ris an eadar-lìon agad is feuch ris a-rithist." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "Chaidh am post a sguabadh às" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Chaidh am post a chur am falach" @@ -5937,11 +6383,11 @@ msgstr "Chaidh am post a chur am falach le facal mùchaidh" msgid "Post Hidden by You" msgstr "Chaidh am post a chur am falach leat fhèin" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Roghainnean eadar-ghabhail a’ phuist" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Roghainnean eadar-ghabhail a’ phuist" @@ -5954,8 +6400,10 @@ msgstr "Cànan a’ phuist" msgid "Post Languages" msgstr "Cànain a’ phuist" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Cha deach am post a lorg" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Chan eil am post prìnichte tuilleadh" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Puist" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "’S urrainn dhut puist a mhùchadh ri linn teacsa a th’ annta, nan tagaichean a th’ aca no an dà rud. Mholamaid dhut gun a bhith a’ mùchadh faclan cumanta a nochdas ann an iomadh post oir dh’fhaoidte nach fhaic thu cus ri linn." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Chaidh na puist a chur am falach" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "Puist, freagairtean" + +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" msgstr "Ceangal a dh’fhaodadh a bhith meallta" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Chaidh an roghainn a shàbhaladh" +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "Rabhadh o cheangal a dh’fhaodadh a bhith meallta" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Dèan brùthadh airson feuchainn ri ath-cheangal" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Dèan brùthadh airson feuchainn ris a-rithist" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Dèan brùthadh is chì thu na daoine a leanas ris a’ chunntas seo a tha thusa a’ leantainn riutha cuideachd" @@ -6015,40 +6469,46 @@ msgstr "An dealbh roimhe" msgid "Primary Language" msgstr "Am prìomh-chànan" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Prìomhachas air daoine a tha thu gan leantainn" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Brathan prìomhachais" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Prìobhaideachd" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Prìobhaideachd ⁊ tèarainteachd" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Prìobhaideachd ⁊ tèarainteachd" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "Roghainnean na prìobhaideachd is na tèarainteachd" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Am poileasaidh prìobhaideachd" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "A’ pròiseasadh a’ video…" @@ -6062,15 +6522,14 @@ msgstr "Ga phròiseasadh…" msgid "profile" msgstr "pròifil" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "A’ phròifil" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Chaidh a’ phròifil ùrachadh" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Poblach, liostaichean as urrainn dhut co-roinneadh airson inbhirean a ruith." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "Foillsich am post" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "Foillsich na puist" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "Foillsich na freagairtean" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "Foillsich an fhreagairt" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "Push" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "Brathan push" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "Push, a h-uile duine" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "Push, daoine a tha thu gan leantainn" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "Chaidh lethbhreac dhen chòd QR a chur air an stòr-bhòrd agad!" @@ -6119,44 +6594,52 @@ msgstr "Chaidh an còd QR a luchdadh a-nuas!" msgid "QR code saved to your camera roll!" msgstr "Chaidh an còd QR a shàbhaladh ann an albam a’ chamara agad!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "Brathan mu luaidh" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Dèan luaidh air a’ phost" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "Chaidh an luaidh air a’ phost a cheangal ris as ùr" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "Chaidh an luaidh air a’ phost a dhealachadh" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Tha luaidhean air puist à comas" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Roghainnean nan luaidhean" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Luaidhean" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Luaidhean air a’ phost seo" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Air thuaiream" @@ -6164,8 +6647,8 @@ msgstr "Air thuaiream" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Seachad air a’ chrìoch – dh’atharraich thu an làmhrachan agad ro thric ann an ùine ghoirid. Fuirich ort greiseag is feuch ris a-rithist an uair sin." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Ceangail an luaidh ris as ùr" @@ -6177,30 +6660,42 @@ msgstr "Cuir {emoji} mar fhrith-fhreagairt" msgid "Reactivate your account" msgstr "Cuir an cunntas agad an gnìomh as ùr" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "Leugh {0} {1, plural, one {fhreagairt} two {fhreagairt} few {freagairtean} other {freagairt}} eile" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Leugh am post air a’ bhloga" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Falaich an còrr" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Leugh an còrr" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "Leugh an còrr dhe na freagairtean" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "Leugh am post sa bhloga againn" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Leugh am bloga aig Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Leugh poileasaidh prìobhaideachd Bhluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Leugh teirmichean na seirbheise aig Bluesky" @@ -6213,6 +6708,14 @@ msgstr "Adhbhar an ath-thagraidh" msgid "Reason:" msgstr "An t-adhbhar:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "Faigh brathan am broinn na h-aplacaid" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "Faigh brathan push" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Na lorg thu o chionn goirid" @@ -6234,8 +6737,8 @@ msgstr "Diùlt" msgid "Reject chat request" msgstr "Diùlt an t-iarrtas cabadaich" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Ath-luchdaich na còmhraidhean" @@ -6244,10 +6747,9 @@ msgstr "Ath-luchdaich na còmhraidhean" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Thoir air falbh" @@ -6259,17 +6761,17 @@ msgstr "Thoir air falbh {displayName} on phacaid tòiseachaidh" msgid "Remove {historyItem}" msgstr "Thoir air falbh {historyItem}" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Thoir an cunntas air falbh" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Thoir an ceanglachan air falbh" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Thoir an t-avatar air falbh" @@ -6284,24 +6786,22 @@ msgstr "Thoir an leabachadh air falbh" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Thoir an t-inbhir air falbh" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "A bheil thu airson an t-inbhir a thoirt air falbh?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Thoir air falbh o na h-inbhirean agam" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "A bheil thu airson a thoirt air falbh on ghrad-inntrigeadh?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "Thoir air falbh o na h-inbhirean a shàbhail thu" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "A bheil thu airson a thoirt air falbh o na h-inbhirean agad?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Thoir an dealbh air falbh" @@ -6332,12 +6831,8 @@ msgstr "Thoir am facal mùchaidh air falbh on liosta agad" msgid "Remove profile" msgstr "Thoir a’ phròifil air falbh" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Thoir an luaidh air falbh" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Thoir an t-ath-phostadh air falbh" @@ -6345,7 +6840,7 @@ msgstr "Thoir an t-ath-phostadh air falbh" msgid "Remove subtitle file" msgstr "Thoir air falbh faidhle nam fo-thiotalan" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Thoir an t-inbhir seo air falbh o na h-inbhirean a shàbhail thu" @@ -6364,11 +6859,11 @@ msgstr "Thoir an dearbhadh air falbh" msgid "Remove your verification for this account?" msgstr "A bheil thu airson an dearbhadh a rinn thu air a’ chunntas seo a thoirt air falbh?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Air a thoirt air falbh leis an ùghdar" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Air a thoirt air falbh leat-sa" @@ -6377,10 +6872,6 @@ msgstr "Air a thoirt air falbh leat-sa" msgid "Removed from list" msgstr "Air a thoirt air falbh on liosta" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Air a thoirt air falbh o na h-inbhirean agad" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Air a thoirt air falbh o na h-inbhirean a shàbhail thu" @@ -6395,34 +6886,36 @@ msgstr "Air a thoirt air falbh o na h-inbhirean agad" msgid "Removed verification" msgstr "Chaidh an dearbhadh a thoirt air falbh" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Bheir seo air falbh am post air an do rinneadh luaidh" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Cuir na àite le “Fidir”" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Freagairtean" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Tha na freagairtean à comas" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Chan urrainnear am post seo a fhreagairt." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Freagair" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Freagair ({0, plural, one {# fhreagairt} two {# fhreagairt} few {# freagairtean} other {# freagairt}})" @@ -6436,50 +6929,55 @@ msgstr "Chaidh an fhreagairt a chur am falach le ùghdar an t-snàithlein" msgid "Reply Hidden by You" msgstr "Chaidh an fhreagairt a chur am falach leat-sa" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "Brathan mu fhreagairtean" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Roghainnean nam freagairtean" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "’S e ùghdar an t-snàithlein a thaghas roghainnean nam freagairtean" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Seòrsachadh nam freagairtean" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Freagair <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Freagair post bacte" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Freagair post" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Freagairt dhut fhèin" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Chaidh faicsinneachd na freagairt ùrachadh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Chaidh an fhreagairt a chur am falach" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Dèan aithris air an inbhir" msgid "Report list" msgstr "Dèan aithris air an liosta" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Dèan aithris air an teachdaireachd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Dèan aithris air a’ phost" @@ -6567,25 +7065,26 @@ msgstr "Dèan aithris air a’ phacaid tòiseachaidh seo" msgid "Report this user" msgstr "Dèan aithris air a’ chleachdaiche seo" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Ath-phostaich" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Ath-phostaich" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Ath-phostaich ({0, plural, one {air ath-phostadh # turas} two {air ath-phostadh # thuras} few {air ath-phostadh # turais} other {air ath-phostadh # turas}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "Brathan mu ath-phostadh" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Ath-phostaich no dèan luaidh air a’ phost" @@ -6594,35 +7093,47 @@ msgstr "Ath-phostaich no dèan luaidh air a’ phost" msgid "Reposted By" msgstr "Air ath-phostadh le" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Rinn {0} ath-phostadh" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Rinn <0><1/> ath-phostadh" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Rinn thu ath-phostadh" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "Ath-phostadh" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Ath-phostaidh a’ phuist seo" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "Iarr atharrachadh" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "Ath-phostadh de rud a dh’ath-phostaich thusa" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "Brathan mu ath-phostadh de rud a dh’ath-phostaich thusa" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "Iarr còd" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Spàrr air daoine roghainn teacsa a chur an sàs mus gabh rud a phostadh" @@ -6630,7 +7141,7 @@ msgstr "Spàrr air daoine roghainn teacsa a chur an sàs mus gabh rud a phostadh msgid "Require an email code to sign in to your account." msgstr "Spàrr ort fhèin còd puist-d a chleachdadh airson clàradh a-steach gun chunntas agad." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Riatanach aig an t-solaraiche seo" @@ -6642,10 +7153,6 @@ msgstr "Riatanach far a bheil thusa" msgid "Resend" msgstr "Cuir às ùr" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Cuir am post-d a-rithist" msgid "Resend Verification Email" msgstr "Cuir post-d dearbhaidh thugam a-rithist" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "Ath-shuidhich putadh nam fo-sgrìobhaidhean gnìomhachd" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Ath-shuidhich an còd" @@ -6667,8 +7180,8 @@ msgstr "Ath-shuidhich an còd" msgid "Reset Code" msgstr "Ath-shuidhich an còd" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Ath-shuidhich staid a’ bhòrdachaidh" @@ -6687,21 +7200,23 @@ msgstr "Feuchaidh seo ris a’ ghnìomh mu dheireadh a-rithist is e air fàillig #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Feuch ris a-rithist" @@ -6721,19 +7236,19 @@ msgstr "Tillidh seo thu gun duilleag-dhachaigh" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Tillidh seo thu gun duilleag roimhpe" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Tillidh seo thu gun cheum roimhe" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Tillidh seo thu gun cheum roimhe" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Sàbhail" @@ -6762,15 +7276,13 @@ msgstr "Sàbhail" msgid "Save birthday" msgstr "Sàbhail an co-là breith" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Sàbhail na h-atharraichean" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Sàbhail na h-atharraichean" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Sàbhail an còd QR" msgid "Save to my feeds" msgstr "Sàbhail sna h-inbhirean agam" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Inbhirean a shàbhail thu" @@ -6802,18 +7314,14 @@ msgstr "Inbhirean a shàbhail thu" msgid "Saved to your feeds" msgstr "Air a shàbhaladh sna h-inbhirean agad" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Sàbhailidh seo gach atharrachadh a rinn thu sa phròifil agad" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Sàbhailidh seo roghainnean bearradh an deilbh" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Can halò!" @@ -6826,16 +7334,16 @@ msgstr "Saidheans" msgid "Scroll to top" msgstr "Sgrolaich gun bhàrr" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Lorg" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Dèan lorg sna puist aig {0}" @@ -6861,7 +7369,7 @@ msgstr "Toraidhean airson “{query}”" msgid "Search for \"{searchText}\"" msgstr "Lorg “{searchText}”" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Lorg inbhirean a bu toil leat moladh do dhaoine eile." @@ -6877,10 +7385,14 @@ msgstr "Lorg barrachd inbhirean" msgid "Search for posts, users, or feeds" msgstr "Lorg puist, cleachdaichean no inbhirean" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Lorg GIFs" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "Chan urrainn dhut lorg a dhèanamh ’s tu gun chlàradh a-steach aig an àm seo" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Lorg sna puist agam" @@ -6890,12 +7402,12 @@ msgstr "Lorg sna puist agam" msgid "Search posts" msgstr "Lorg sna puist" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Lorg sna pròifilean" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Lorg Tenor" @@ -6903,7 +7415,7 @@ msgstr "Lorg Tenor" msgid "Search..." msgstr "Lorg..." -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Luirg airson pròifilean" @@ -6912,10 +7424,6 @@ msgstr "Luirg airson pròifilean" msgid "Security step required" msgstr "Tha feum air ceum tèarainteachd" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Tha feum air ceum tèarainteachd" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "Seall puist ris a bheil taga {tag}" @@ -6936,14 +7444,31 @@ msgstr "Seall puist ris a bheil taga #{tag} leis a’ chleachdaiche" msgid "See jobs at Bluesky" msgstr "Faic dè na dreuchdan bàna aig Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "Seall an còrr" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "Seall barrachd chunntasan a chòrdas riut ma dh’fhaoidte" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "Seall barrachd phròifilean a mholamaid air an duilleag “Rùraich”" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Seall an treòir seo" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Sleamhnachan an t-siridh. Cleachd na saighdean airson gluasad air ais no air adhart agus Space airson a chluich no a chur na stad" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "Tagh {0}" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Tagh dath" @@ -6988,7 +7513,7 @@ msgstr "Tagh cunntas làithreach" msgid "Select GIF" msgstr "Tagh GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Tagh an GIF “{0}”" @@ -6996,6 +7521,11 @@ msgstr "Tagh an GIF “{0}”" msgid "Select how long to mute this word for." msgstr "Co-dhùin dè cho fad ’s a thèid am facal seo a mhùchadh." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "Tagh cànan" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Tagh cànan…" @@ -7004,7 +7534,7 @@ msgstr "Tagh cànan…" msgid "Select languages" msgstr "Tagh cànain" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "Tagh seirbheis modarataireachd" @@ -7045,12 +7575,12 @@ msgstr "Tagh cànan airson eadar-aghaidh na h-aplacaid." msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Tagh na cànain a bu toil leat sna h-inbhirean aig an dèan thu fo-sgrìobhadh. Mur an tagh thu gin, chì thu cànan sam bith." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Tagh latha do bhreith" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Tagh na rudan sa bheil ùidh agad gu h-ìosal" @@ -7058,7 +7588,11 @@ msgstr "Tagh na rudan sa bheil ùidh agad gu h-ìosal" msgid "Select your preferred language for translations in your feed." msgstr "Tagh an cànan as fheàrr leat airson eadar-theangachadh san inbhir agad." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "Tagh na seanailean as fheàrr leat airson brathan" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "Taghaidh seo roghainn {0} à {numItems}" @@ -7066,17 +7600,9 @@ msgstr "Taghaidh seo roghainn {0} à {numItems}" msgid "Send a neat website!" msgstr "Cuir làrach-lìn shnasail!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "Cuir dearbhadh" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Cuir post-d dearbhaidh" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Cuir post-d" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Cuir post-d" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Cuir do bheachdan" @@ -7095,7 +7621,7 @@ msgstr "Cuir do bheachdan" msgid "Send message" msgstr "Cuir an teachdaireachd" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "Cuir am post gu {name}" @@ -7114,20 +7640,20 @@ msgstr "Cuir an aithris" msgid "Send report to {0}" msgstr "Cuir an aithris gu {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "Cuir an aithris gu {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Cuir teachdaireachd dearbhaidh" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Cuir mar theachdaireachd dhìreach" @@ -7143,7 +7669,7 @@ msgstr "Seòladh an fhrithealaiche" msgid "Set app icon to {0}" msgstr "Suidhich “{0}” mar ìomhaigheag na h-aplacaid" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Suidhich latha do bhreith" @@ -7159,13 +7685,57 @@ msgstr "Suidhich an cunntas agad" msgid "Sets email for password reset" msgstr "Suidhichidh seo am post-d airson ath-shuidheachadh an fhacail-fhaire" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Roghainnean" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "Roghainnean a thaobh gnìomhachd dhaoine eile" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "Na roghainnean a bheir cead do dhaoine eile brathan fhaighinn mu na puist agad" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "Roghainnean nam brathan mu dhaoine a dh’innis gur toil leotha rud" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "Roghainnean nam brathan mu iomradh" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "Roghainnean nam brathan mu luchd-leantainn ùr" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "Roghainnean nam brathan mu rud sam bith eile" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "Roghainnean nam brathan mu dhaoine a dh’innis gur toil leotha rud a dh’ath-phostaich thusa" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "Roghainnean nam brathan mu ath-phostadh de rud a dh’ath-phostaich thusa" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "Roghainnean nam brathan mu luaidhean" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "Roghainnean nam brathan mu fhreagairtean" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "Roghainnean nam brathan mu ath-phostadh" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "Co-roinn sgeul smodaig!" msgid "Share a fun fact!" msgstr "Co-roinn fiosrachadh spòrsail!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Co-roinn e co-dhiù" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "Co-roinn DID an ùghdair" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Ceangal co-roinnidh" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Co-roinn an ceangal" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Còmhradh a’ cheangail cho-roinnidh" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "Co-roinn post aig:// URI" @@ -7247,8 +7812,8 @@ msgstr "Co-roinn a’ phacaid tòiseachaidh seo" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Co-roinn a’ phacaid tòiseachaidh seo agus cuidich daoine nad choimhearsnachd a tha air ùr-thighinn gu Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "Co-roinn air…" msgid "Share your favorite feed!" msgstr "Co-roinn an t-inbhir as fheàrr leat!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Deuchainn nan co-roghainnean" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Co-roinnidh seo an làrach-lìn cho-cheangailte" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Seall" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Seall an roghainn teacsa" @@ -7303,8 +7864,8 @@ msgstr "Seall na roghainnean gnàthachaidh" msgid "Show hidden replies" msgstr "Seall na freagairtean falaichte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Seall nas lugha mar seo" @@ -7312,55 +7873,63 @@ msgstr "Seall nas lugha mar seo" msgid "Show list anyway" msgstr "Seall an liosta co-dhiù" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Seall barrachd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Seall barrachd mar seo" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "Seall an còrr dhe na freagairtean" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Seall na freagairtean mùchte" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "Seall freagairtean a’ phuist an cruth craoibhe shnàithleanaichte" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Seall luaidhean air puist" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Seall na freagairtean" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Seall na freagairtean mar" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Seall na freagairtean mar shnàithlean" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Seall freagairtean nan daoine a tha thu gan leantainn air thoiseach air càch" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Seall an fhreagairt dhan a h-uile duine" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Seall ath-phostadh" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Seall buill-eisimpleir nan inbhirean a shàbhail thu san inbhir “A’ leantainn” agad" @@ -7372,16 +7941,17 @@ msgstr "Seall rabhadh" msgid "Show warning and filter from feeds" msgstr "Seall rabhadh is criathraich às na h-inbhirean e" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Innsidh seo cuin a chaidh am post seo a chruthachadh" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "Seallaidh seo na cunntasan eile as urrainn dhut leum thuca" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Seallaidh seo an t-susbaint" @@ -7390,14 +7960,15 @@ msgstr "Seallaidh seo an t-susbaint" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "Clàraich a-steach gu cunntas nach eil air an liosta" msgid "Sign in to Bluesky or create a new account" msgstr "Clàraich a-steach gu Bluesky no cruthaich cunntas ùr" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "Clàraich a-steach airson am post seo fhaicinn" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Clàraich a-mach" @@ -7444,8 +8020,8 @@ msgstr "Clàraich a-mach" msgid "Sign Out" msgstr "Clàraich a-mach" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "A bheil thu airson clàradh a-mach?" @@ -7459,12 +8035,12 @@ msgstr "Feumaidh tu clàradh a-steach" msgid "Signed in as @{0}" msgstr "Chlàraich thu a-steach mar @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Cunntasan coltach ris" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Leum seachad air" @@ -7472,12 +8048,11 @@ msgstr "Leum seachad air" msgid "Skip this flow" msgstr "Leum seachad air an t-sruth seo" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Nas lugha" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "Cuiridh seo an cuimhneachan na dhùsal" @@ -7490,11 +8065,11 @@ msgstr "Luchd-leasachaidh a’ bhathair-bhuig" msgid "Some of your verifications are invalid." msgstr "Tha cuid dhen dearbhadh a rinn thu mì-dhligheach." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Inbhir eile a chòrdas riut ma dh’fhaoidte" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Faodaidh cuid a dhaoine freagairt" @@ -7510,10 +8085,11 @@ msgstr "Chuir cuideigin {0} mar fhrith-fhreagairt dha {1}" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "Bha rudeigin ann nach robh buileach ceart leis an dàta a bha thu airson aithris a dhèanamh air. Cuir fios gu sgioba na taice." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Chaidh rudeigin ceàrr" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Chaidh rudeigin ceàrr, feuch ris a-rithist" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Chaidh rudeigin ceàrr, feuch ris a-rithist." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Chaidh rudeigin ceàrr!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "Chaidh rudeigin ceàrr. Feuch ris a-rithist ann am mionaid." + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "Chaidh rudeigin ceàrr. Feuch ris a-rithist." @@ -7539,20 +8118,23 @@ msgstr "Chaidh rudeigin ceàrr. Feuch ris a-rithist." msgid "Something wrong? Let us know." msgstr "Mearachd air choireigin? Innis dhuinn." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "Tha sinn duilich! Dh’fhalbh an ùine air an t-seisean agad. Clàraich a-steach a-rithist." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Seòrsaich na freagairtean" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Seòrsaich na freagairtean a-rèir" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Seòrsaich na freagairtean aig an aon phost a-rèir:" @@ -7579,7 +8161,7 @@ msgstr "Spama; cus iomraidhean no fhreagairtean" msgid "Sports" msgstr "Spòrs" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "Tòisich air còmhradh is nochdaidh e an-seo." @@ -7601,9 +8183,9 @@ msgstr "Tòisich air daoine a chur ris!" msgid "Start chat with {displayName}" msgstr "Tòisich air cabadaich le {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Pacaid tòiseachaidh" @@ -7611,12 +8193,12 @@ msgstr "Pacaid tòiseachaidh" msgid "Starter pack by {0}" msgstr "Pacaid tòiseachaidh le {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Pacaid tòiseachaidh le <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Pacaid tòiseachaidh leat fhèin" @@ -7638,19 +8220,21 @@ msgstr "Tha e furasta na h-inbhirean is daoine as fheàrr leat a cho-roinneadh l msgid "Status Page" msgstr "Duilleag na staid" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Ceum {0} à {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Chaidh an stòras fhalamhachadh, feumaidh tu an aplacaid ath-thòiseachadh a-nis." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Leabhar-sgeulachd" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Cuir an t-ath-thagradh" msgid "Submit Appeal" msgstr "Cuir an t-ath-thagradh" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "Cuir an aithris thugainn" @@ -7676,10 +8260,14 @@ msgstr "Cuir an aithris thugainn" msgid "Subscribe" msgstr "Fo-sgrìobh" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Fo-sgrìobh aig @{0} airson na leubailean seo a chleachdadh:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "Fo-sgrìobh aig gnìomhachd cunntais" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Fo-sgrìobh aig an leubailiche" @@ -7692,8 +8280,12 @@ msgstr "Fo-sgrìobh aig an leubailiche seo" msgid "Subscribe to this list" msgstr "Fo-sgrìobh dhan liosta seo" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "Soirbheas" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Soirbheas!" @@ -7705,7 +8297,7 @@ msgstr "Chaidh a dhearbhadh" msgid "Suggested Accounts" msgstr "Cunntasan a mholamaid" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Molaidhean dhut" @@ -7714,26 +8306,26 @@ msgstr "Molaidhean dhut" msgid "Suggestive" msgstr "Leth-fheiseil" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Èirigh na grèine" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Laighe na grèine" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Taic" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Leum gu cunntas eile" @@ -7742,24 +8334,24 @@ msgstr "Leum gu cunntas eile" msgid "Switch Account" msgstr "Leum gu cunntas eile" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Leum eadar cunntasan" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "Geàrr leum gu {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "An siostam" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Log an t-siostaim" @@ -7767,6 +8359,18 @@ msgstr "Log an t-siostaim" msgid "Tags only" msgstr "Tagaichean a-mhàin" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "Thoir gnogag airson fiosrachadh" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "Thoir gnogag airson barrachd fiosrachaidh" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "Thoir gnogag airson innse gu bheil thu a’ tuigsinn na tha ùr agus ag aontachadh ris airson cumail a’ dol le Bluesky" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Innis dhuinn beagan a bharrachd" msgid "Terms" msgstr "Na teirmichean" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Teirmichean na seirbheise" @@ -7848,10 +8454,6 @@ msgstr "Raon ion-chur an teacsa" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "Mòran taing airson seo a chur thugainn! Shìn sinn air adhart chun an neach a ruitheas an t-inbhir e." -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Mòran taing! Chaidh am post-d agad a dhearbhadh." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Gun robh math agad. Chaidh an aithris agad a chur." @@ -7864,28 +8466,28 @@ msgstr "Tapadh leat, dhearbh thu an seòladh puist-d agad. ’S urrainn dhut an msgid "That contains the following:" msgstr "Sa bheil na leanas:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Tha an làmhrachan seo aig cuideigin eile mar-thà." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Cha d’fhuair sinn lorg air a’ phacaid tòiseachaidh sin." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "Tha an t-ainm-cleachdaiche seo aig cuideigin eile mar-thà" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Sin agaibh e, a chàirdean!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "Sin e!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "’S urrainn dhan chunntas seo eadar-ghabhail a dhèanamh leat a-rithist an dèidh dhut a dhì-bhacadh." @@ -7900,7 +8502,7 @@ msgstr "Thèid an aplacaid ath-thòiseachadh" msgid "The author of this thread has hidden this reply." msgstr "Dh’fhalaich ùghdar an t-snàithlein seo an fhreagairt seo." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Aplacaid-lìn Bluesky" @@ -7920,10 +8522,6 @@ msgstr "An t-inbhir “Fidir”" msgid "The Discover feed now knows what you like" msgstr "Tha fios aig an inbhir “Fidir” a-nis dè na rudan as toil leat" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "Tha an seòladh puist-d a chuir thu a-steach co-ionnann ris an t-seòladh phuist-d làithreach agad." - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "Gheibh thu àrainneachd nas fheàrr san aplacaid. Luchdaich a-nuas Bluesky an-dràsta agus leanamaid oirnn far an do stad thu." @@ -7944,8 +8542,16 @@ msgstr "Chaidh na leubailean a leanas a chur ris an t-susbaint agad." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "Thèid na roghainnean a leanas a chleachdadh a ghnàth ’s tu a’ cruthachadh post ùr. ’S urrainn dhut an deasachadh airson puist àraidh sa ghleus-sgrìobhaidh." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "Tha laghan do dhùthcha a’ sparradh oirnn dearbhadh gur e inbheach a th’ annad mus fhaigh thu cothrom air gleusan àraidh air Bluesky, mar shusbaint inbheachd is teachdaireachdan eadar luchd-cleachdaidh." + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "Tha laghan do dhùthcha a’ sparradh oirnn dearbhadh gur e inbheach a th’ annad mus fhaigh thu cothrom air gleusan àraidh. Thoir gnogag airson barrachd fiosrachaidh." + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Dh’fhaoidte gun deach am post a sguabadh às." @@ -7953,9 +8559,10 @@ msgstr "Dh’fhaoidte gun deach am post a sguabadh às." msgid "The Privacy Policy has been moved to <0/>" msgstr "Chaidh poileasaidh na prìobhaideachd a ghluasad gu <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "Tha a’ video a thagh thu nas motha na 100MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "Thagh thu video a tha nas motha na 100MB. Feuch ris a-rithist le faidhle nas lugha." #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "Chaidh teirmichean na seirbheise a ghluasad gu" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "Tha an còd dearbhaidh a thug thu seachad mì-dhligheach. Dèan cinnteach gun do chleachd thu an ceangal dearbhaidh ceart no iarr fear ùr." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "An t-ùrlar" @@ -7990,14 +8597,14 @@ msgstr "An t-ùrlar" msgid "There is no time limit for account deactivation, come back any time." msgstr "Chan eil crìoch ùine ann airson cunntas a chur à gnìomh, till an-seo uair sam bith." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Cha b’ urrainn dhuinn ceangal ri Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Cha b’ urrainn dhuinn conaltradh leis an fhrithealaiche" @@ -8006,17 +8613,12 @@ msgstr "Cha b’ urrainn dhuinn conaltradh leis an fhrithealaiche" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Cha b’ urrainn dhuinn conaltradh leis an fhrithealaiche, thoir sùil air a’ cheangal ris an eadar-lìon is feuch ris a-rithist." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Cha b’ urrainn dhuinn conaltradh leis an fhrithealaiche agad" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Cha b’ urrainn dhuinn na brathan fhaighinn dhut. Thoir gnogag airson feuchainn ris a-rithist." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Cha b’ urrainn dhuinn na puist fhaighinn dhut. Thoir gnogag airson feuchainn ris a-rithist." @@ -8037,7 +8639,7 @@ msgstr "Cha b’ urrainn dhuinn na liostaichean agad fhaighinn dhut. Thoir gnoga msgid "There was an issue fetching your service info" msgstr "Cha b’ urrainn dhuinn am fiosrachadh seirbheise agad fhaighinn dhut" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Cha b’ urrainn dhuinn an t-inbhir seo a thoirt air falbh. Thoir sùil air a’ cheangal ris an eadar-lìon agad is feuch ris a-rithist." @@ -8052,9 +8654,9 @@ msgstr "Cha b’ urrainn dhuinn an aithris agad a chur. Thoir sùil air a’ che msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Cha b’ urrainn dhuinn na h-inbhirean agad ùrachadh, thoir sùil air a’ cheangal ris an eadar-lìon is feuch ris a-rithist." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Cha b’ urrainn dhuinn na h-inbhirean agad ùrachadh, thoir sùil air a msgid "There was an issue! {0}" msgstr "Bha duilgheadas ann! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Bha duilgheadas ann! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Bha duilgheadas ann. Thoir sùil air a’ cheangal ris an eadar-lìon agad is feuch ris a-rithist." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Dh’èirich duilgheadas ris nach robh dùil san aplacaid. Innis dhuinn ma thachair sin riut-sa!" @@ -8089,7 +8691,7 @@ msgstr "Dh’èirich duilgheadas ris nach robh dùil san aplacaid. Innis dhuinn msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Tha sluagh mòr air ùr-thighinn dha Bluesky! Cuiridh sinn an cunntas agad an gnìomh cho luath ’s a ghabhas." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Chan eil na roghainnean seo an sàs ach san inbhir “A’ leantainn”." @@ -8146,7 +8748,7 @@ msgstr "Tha an t-susbaint seo air òstaireachd {0}. A bheil thu airson meadhanan msgid "This content is not available because one of the users involved has blocked the other." msgstr "Chan eil an t-susbaint seo ri fhaighinn a chionn ’s gu bheil cleachdaiche an sàs a bhac cuideigin eile a tha an sàs ann." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Chan fhaicear an t-susbaint seo as aonais cunntas Bhluesky." @@ -8158,6 +8760,10 @@ msgstr "Seo còmhradh aig cunntas a chaidh a sguabadh às no a chur à gnìomh. msgid "This email is already associated with your account." msgstr "Tha am post-d seo co-cheangailte ris a’ chunntas agad mu thràth." +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "Bheir an gleus seo comas do dhaoine brathan fhaighinn mu phuist is freagairtean ùra agad. Cò gheibh cothrom air a’ ghleus seo?" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "’S e gleus beta a tha seo. Leugh barrachd mu às-phortadh às an ionad-tasgaidh sa <0>phost bloga seo." @@ -8170,7 +8776,7 @@ msgstr "Chan eil an gleus seo ri làimh fhad ’s a bhios tu a’ cleachdadh fac msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Chan eil an gleus seo ri làimh fhad ’s a bhios tu a’ cleachdadh facal-faire aplacaid. Clàraich a-steach leis a’ phrìomh-fhacal-faire agad." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Tha cus trafaig a’ dol san inbhir seo an-dràsta fhèin agus chan eil e ri làimh an-dràsta fhèin. Feuch ris a-rithist an ceann greis." @@ -8209,11 +8815,11 @@ msgstr "Chuir an t-ùghdar an leubail seo an sàs." msgid "This label was applied by you." msgstr "Chuir thusa an leubail seo an sàs." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Cha do chuir an leubailiche seo an cèill dè na leubailean a dh’fhoillsicheas e agus dh’fhaoidte nach eil e gnìomhach." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Tha an ceangal airson d’ ath-stiùireadh gun làrach-lìn a leanas:" @@ -8233,29 +8839,28 @@ msgstr "Tha an liosta seo falamh." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Chan eil an t-seirbheis modarataireachd seo ri làimh. Chì thu barrachd fiosrachaidh mu dhèidhinn gu h-ìosal. Ma mhaireas an duilgheadas seo, cuir fios thugainn." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Tha am post seo a’ cumail a-mach gun deach a chruthachadh <0>{0} ach chunnacas e air Bluesky <1>{1} an toiseach." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Tha roghainnean smachd air freagairtean an sàs sa phost seo nach aithne dhuinn. Dh’fhaoidte gu bheil an aplacaid agad ro aosta." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Chaidh am post seo a sguabadh às." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Chan fhaic ach luchd-cleachdaidh clàraichte a-staigh am post seo. Chan fhaic daoine nach eil clàraichte a-staigh e." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "Chan fhaic ach luchd-cleachdaidh a tha clàraichte a-staigh seo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Bidh am post seo am falach o inbhirean is snàithleanan. Cha ghabh seo neo-dhèanamh." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "Chuir ùghdar a’ phuist seo à comas luaidhean air a’ phost." @@ -8263,11 +8868,11 @@ msgstr "Chuir ùghdar a’ phuist seo à comas luaidhean air a’ phost." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Chan fhaic ach luchd-cleachdaidh clàraichte a-staigh a’ phròifil seo. Chan fhaic daoine nach eil clàraichte a-staigh e." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Thèid an fhreagairt seo a chur ann an earrann fhalaichte aig bonn an t-snàithlein agad is mùchaidh e brathan mu fhreagairtean na dhèidh – an dà chuid dhut-sa is do dhaoine eile." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Cha tug an t-seirbheis seo seachad teirmichean seirbheise no poileasaidh prìobhaideachd." @@ -8275,6 +8880,10 @@ msgstr "Cha tug an t-seirbheis seo seachad teirmichean seirbheise no poileasaidh msgid "This should create a domain record at:" msgstr "Bu chòir dha seo clàr àrainne a chruthachadh aig:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "Cha toir seo ach mionaid no dhà." + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Chan eil ainm-taisbeanaidh aig a’ chleachdaiche seo agus ri linn sin, chan urrainn dhut a dhearbhadh." @@ -8316,16 +8925,18 @@ msgstr "Chan eil an cleachdaiche seo a’ leantainn duine sam bith." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Sguabaidh seo “{0}” às na faclan mùchte agad. ’S urrainn dhut a chur air ais uair sam bith." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Bheir seo air falbh @{0} o liosta a’ ghrad-inntrigidh." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Bheir seo air falbh am post agad on luaidh seo air post mu choinneamh an luchd-chleachdaidh air fad agus cuiridh e glèidheadair-àite na àite." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Roghainnean an t-snàithlein" @@ -8334,24 +8945,27 @@ msgstr "Roghainnean an t-snàithlein" msgid "Thread preferences" msgstr "Roghainnean an t-snàithlein" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Roghainnean an t-snàithlein" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Mar shnàithlean" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Modh snàithlein" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Roghainnean nan snàithleanan" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "An t-àm a th’ air fhàgail: {0, plural, one {# diog} two {# dhiog} few {# diogan} other {# diog}}" @@ -8376,42 +8990,56 @@ msgstr "Cò dha a chuireas sinn an aithris seo?" msgid "Today" msgstr "An-diugh" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Toglaich an clàr-taice teàrnach" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Toglaich seo airson susbaint inbheach a chur an comas no à comas" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Toglaichidh seo an fhuaim" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Brod nan toradh" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "Brod nam freagairtean an toiseach" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Cuspair" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Eadar-theangaich" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "Seall mar chraobh" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Air bilean an t-sluaigh" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Videothan a tha a’ treandadh" @@ -8428,14 +9056,10 @@ msgstr "Feuch ris a-rithist" msgid "TV" msgstr "Tbh" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Dearbhadh dà-cheumnach (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Sgrìobh an t-ainm-cleachdaiche a bu chaomh leat" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Sgrìobh do theachdaireachd an-seo" @@ -8453,7 +9077,7 @@ msgstr "Cha ghabh ceangal a dhèanamh. Thoir sùil air a’ cheangal ris an eada #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Chan urrainn dhut conaltradh a dhèanamh leis an t-seirbheis agad. Thoir msgid "Unable to delete" msgstr "Cha ghabh a sguabadh às" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "Neo-dhèan an t-iarrtas pull" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "Neo-dhèan an t-iarrtas pull {currentChannel}" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "Chan eil seo ri làimh" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "Chan eil fiosrachadh mun inbhir ri fhaighinn" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Dì-bhac" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Dì-bhac" @@ -8486,7 +9126,7 @@ msgstr "Dì-bhac" msgid "Unblock account" msgstr "Dì-bhac an cunntas" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "A bheil thu airson an cunntas a dhì-bhacadh?" @@ -8495,13 +9135,13 @@ msgstr "A bheil thu airson an cunntas a dhì-bhacadh?" msgid "Unblock list" msgstr "Dì-bhac an liosta" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Neo-dhèan an t-ath-phostadh" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Neo-dhèan an t-ath-phostadh ({0, plural, one {air ath-phostadh # turas} two {air ath-phostadh # thuras} few {air ath-phostadh # turais} other {air ath-phostadh # turas}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Na lean tuilleadh" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Na lean ri {0} tuilleadh" @@ -8523,7 +9163,7 @@ msgstr "Na lean an cunntas tuilleadh" msgid "Unfollows the user" msgstr "Ma nì thu seo, cha lean thu ris a’ chleachdaiche tuilleadh" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Gu mì-fhortanach, chan eil taic do dh’aithrisean dhen t-seòrsa seo aig gin dhe na leubailichean a tha fo-sgrìobhadh agad aca." @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "Cha toil tuilleadh" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Cha toil tuilleadh ({0, plural, one {’s toil le # seo} two {’s toil le # seo} few {’s toil le # seo} other {’s toil le # seo}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Neo-mhùch" @@ -8555,8 +9195,8 @@ msgstr "Neo-mhùch" msgid "Unmute {tag}" msgstr "Neo-mhùch {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Neo-mhùch an còmhradh" msgid "Unmute list" msgstr "Neo-mhùch an liosta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Neo-mhùch an snàithlean" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Till fuaim a’ video" @@ -8597,8 +9237,8 @@ msgstr "Dì-phrìnich an t-inbhir" msgid "Unpin from home" msgstr "Dì-phrìnich on dachaigh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Dì-phrìnich on phròifil" @@ -8614,8 +9254,8 @@ msgstr "Chaidh {0} a dhì-phrìneachadh on dachaigh" msgid "Unpinned from your feeds" msgstr "Chaidh a dhì-phrìneachadh o na h-inbhirean agad" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "Dùisg an cuimhneachan as ùr" @@ -8636,7 +9276,7 @@ msgstr "Cuir crìoch air an fho-sgrìobhadh aig an leubailiche seo" msgid "Unsubscribed from list" msgstr "Chaidh crìoch a chur air an fho-sgrìobhadh aig an liosta" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Seòrsa de video ris nach eil taic" @@ -8662,8 +9302,8 @@ msgstr "Ùraich <0>{displayName} sna liostaichean" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "Ùraich am post-d" @@ -8676,17 +9316,17 @@ msgstr "Ùraich air {domain}" msgid "Update your email" msgstr "Ùraich am post-d agad" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Cha b’ urrainn dhuinn ceangladh na luaidh ùrachadh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Cha b’ urrainn dhuinn faicsinneachd na freagairt ùrachadh" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Ga ùrachadh…" @@ -8698,20 +9338,20 @@ msgstr "Luchdaich suas dealbh an àite sin" msgid "Upload a text file to:" msgstr "Luchdaich suas faidhle teacsa gu:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Luchdaich suas on chamara" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Luchdaich suas o na faidhlichean" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Luchdaich suas on leabhar-lann" msgid "Uploading images..." msgstr "A’ luchdadh suas nan dealbhan…" -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "A’ luchdadh suas dealbhag a’ cheangail…" -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "A’ luchdadh suas a’ video…" @@ -8761,6 +9401,10 @@ msgstr "Cleachd na mholamaid-ne" msgid "Use this to sign in to the other app along with your handle." msgstr "Cleachd seo airson clàradh a-steach gun aplacaid eile leis an làmhrachan agad." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "Cleachd seòladh post-d a’ chunntais agad no seòladh puist-d ceart eile agad air eagal ’s gum bi aig KWS no Bluesky fios a chur thugad." + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Ga chleachdadh le:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Chaidh an liosta luchd-cleachdaidh ùrachadh" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "Chan fhaod ainm-cleachdaiche a bhith nas fhaide na {MAX_SERVICE_HANDLE_LENGTH, plural, one {# charactar} two {# charactar} few {# charactaran} other {# caractar}}" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "Chan fhaod ainm-cleachdaiche tòiseachadh no a’ crìochnachadh le tàthan" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "Chan fhaod ach litrichean (a-z), àireamhan is tàthanan a bhith ann an ainm-cleachdaiche" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Ainm-chleachdaiche no seòladh puist-d" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "luchd-cleachdaidh a tha <0>@{0} gan leantainn" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "luchd-cleachdaidh a leanas ri <0>@{0}" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "o luchd-cleachdaidh a tha mise gan leantainn" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Luchd-cleachdaidh ann an “{0}”" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Luchd-cleachdaidh a tha thusa gan leantainn" @@ -8846,11 +9502,11 @@ msgstr "Luach:" msgid "Verification failed, please try again." msgstr "Dh’fhàillig an dearbhadh, feuch ris a-rithist." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "Roghainnean dearbhaidh" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "Roghainnean dearbhaidh" @@ -8870,8 +9526,15 @@ msgstr "Air a dhearbhadh le:" msgid "Verify account" msgstr "Dearbh an cunntas seo" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "Dearbh as ùr" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "Dearbh an còd" @@ -8880,21 +9543,20 @@ msgstr "Dearbh an còd" msgid "Verify DNS Record" msgstr "Dearbh an clàr DNS" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "Dearbh am post-d" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "Dearbh còd a’ phuist-d" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Còmhradh dearbhadh a’ phuist-d" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "Dearbh an-dràsta" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Dearbh am faidhle teacsa" msgid "Verify this account?" msgstr "A bheil thu airson an cunntas seo a dhearbhadh?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "Dearbh d’ aois" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Dearbh am post-d agad" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Dearbh am post-d agad" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "Ga dhearbhadh" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "A’ dearbhadh staid dearbhadh d’ aoise" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Tionndadh {appVersion}" +msgid "Version {0}" +msgstr "Tionndadh {0}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Video" @@ -8928,7 +9598,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "Cha b’ urrainn dhuinn a’ video a phròiseasadh" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Inbhir video" @@ -8942,15 +9612,15 @@ msgstr "Video o {0}: {text}" msgid "Video Games" msgstr "Geamannan video" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Tha a’ video na stad" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Tha a’ video ga chluich" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Cha deach a’ video a lorg." @@ -8958,11 +9628,11 @@ msgstr "Cha deach a’ video a lorg." msgid "Video settings" msgstr "Roghainnean a’ video" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Chaidh a’ video a luchdadh suas" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Video: {0}" @@ -8979,11 +9649,11 @@ msgstr "Feumaidh a’ video a bhith nas giorra na 3 mionaidean" msgid "View {0}'s avatar" msgstr "Seall an t-avatar aig {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Seall a’ phròifil aig {0}" @@ -8991,7 +9661,7 @@ msgstr "Seall a’ phròifil aig {0}" msgid "View {displayName}'s profile" msgstr "Seall a’ phròifil aig {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Seall pròifil a’ chleachdaiche bhacte" @@ -9009,7 +9679,6 @@ msgstr "Seall an t-innteart dì-bhugachaidh" msgid "View details" msgstr "Seall am mion-fhiosrachadh" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Seall am mion-fhiosrachadh airson aithris a dhèanamh air briseadh còrach-lethbhreac" @@ -9022,23 +9691,23 @@ msgstr "Seall an snàithlean slàn" msgid "View information about these labels" msgstr "Seall am fiosrachadh mu na leubailean seo" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Seall barrachd" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Seall a’ phròifil" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Seall an t-avatar" @@ -9054,28 +9723,28 @@ msgstr "Seall na dhearbh an cleachdaiche seo" msgid "View users who like this feed" msgstr "Seall an luchd-cleachdaidh as toil leotha an t-inbhir seo" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Seall a’ video" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Seall na cunntasan a bhac thu" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "Seall na roghainnean bunaiteach agad airson eadar-ghabhail le puist" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Seall na h-inbhirean agad is rùraich barrachd" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Seall na liostaichean modarataireachd agad" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Seall na cunntasan a mhùch thu" @@ -9083,8 +9752,8 @@ msgstr "Seall na cunntasan a mhùch thu" msgid "View your verifications" msgstr "Seall an dearbhadh a rinn thu" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Seallaidh seo an dealbh slàn" @@ -9092,16 +9761,20 @@ msgstr "Seallaidh seo an dealbh slàn" msgid "Views video in immersive mode" msgstr "Seallaidh seo a’ video sa mhodh làn-tumaidh" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" msgstr "Tadhail air an làrach" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "Tadhail air roghainnean nam brathan agad" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Àirde na fuaime" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Thoir rabhadh ron t-susbaint is criathraich às na h-inbhirean e" msgid "Watch now" msgstr "Coimhead an-dràsta" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "Cha b’ urrainn dhuinn do cheangal ris an t-seirbheis a sholaireas an t-inbhir gnàthaichte seo. Dh’fhaoidte nach eil e ri làimh an-dràsta fhèin air sgàth dhuilgheadasan no nach eil e ann tuilleadh." + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "Cha d’fhuair sinn lorg air an liosta seo. Dh’fhaoidte gun deach a sguabadh às." + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "Cha d’fhuair sinn lorg air toradh sam bith aig a bheil an taga-hais sin." @@ -9128,7 +9809,7 @@ msgstr "Cha d’fhuair sinn lorg air toradh sam bith aig a bheil an taga-hais si msgid "We couldn't find any results for that topic." msgstr "Cha d’fhuair sinn lorg air toradh sam bith a tha mun chuspair sin." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Cha b’ urrainn dhuinn an còmhradh seo a luchdadh" @@ -9136,6 +9817,10 @@ msgstr "Cha b’ urrainn dhuinn an còmhradh seo a luchdadh" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Bidh e mu thuaiream {estimatedTime} gus am bi an cunntas agad deiseil." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "Tha sinn ann an com-pàirteachas le <0>KWS airson dearbhadh gur e inbheach a th’ annad. Nuair a bhriogas tu air “Tòisich” gu h-ìosal, bheir KWS sùil an do dhearbh thu d’ aois roimhe leis an t-seòladh phuist-d agad ann an geamannan no seirbheisean eile a chleachdas teicneolas KWS. Mur an do rinn, innsidh KWS dhut ann am post-d mar a dhearbhas tu d’ aois. An dèidh dhut sin a dhèanamh, thèid d’ ath-stiùireadh air ais an-seo airson cumail a’ dol le Bluesky." + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Chuir sinn post-d dearbhaidh eile gu <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "Tha sinn an dòchas gum bi spòrs is sùgradh agad ann. Cuimhnich, tha B msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Chan eil puist eile aig na daoine a tha thu a’ leantainn. Seo na tha ùr aig <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "Mholamaid dhut co-dhiù dà rud a thaghadh sa bheil ùidh agad." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Chuir sinn post-d gu <0>{0} sa bheil ceangal. Briog air a’ cheangal airson dearbhadh a’ phuist-d a choileanadh." -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Cha b’ urrainn dhuinn dearbhadh a bheil cead agad videothan a luchdadh suas. Feuch ris a-rithist." @@ -9164,10 +9849,14 @@ msgstr "Cha b’ urrainn dhuinn dearbhadh a bheil cead agad videothan a luchdadh msgid "We were unable to load your birth date preferences. Please try again." msgstr "Cha b’ urrainn dhuinn roghainnean latha do bhreith a luchdadh. Feuch ris a-rithist." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "Chan urrainn dhuinn na leubailichean a rèitich thu a luchdadh an-dràsta fhèin." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "Cha d’fhuair sinn greim air an dearbhadh ri linn duilgheadais leis an lìonra. Dh’fhaoidte gun tig e ann an greis eile. Ma thig, ùraichidh sinn an cunntas agad gu fèin-obrachail." + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Cha b’ urrainn dhuinn ceangal a dhèanamh. Feuch ris a-rithist a leantainn air suidheachadh a’ chunntais agad. Ma dh’fhàilligeas e a-rithist is a-rithist, ’s urrainn dhut leum a ghearradh seachad air an t-sruth seo." @@ -9176,7 +9865,7 @@ msgstr "Cha b’ urrainn dhuinn ceangal a dhèanamh. Feuch ris a-rithist a leant msgid "We will let you know when your account is ready." msgstr "Innsidh sinn dhut nuair a bhios an cunntas agad deiseil." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Cuiridh sinn post-d gu <0>{0} sa bheil ceangal. Briog air a’ cheangal airson dearbhadh a’ phuist-d a choileanadh." @@ -9184,6 +9873,22 @@ msgstr "Cuiridh sinn post-d gu <0>{0} sa bheil ceangal. Briog air a’ chean msgid "We'll use this to help customize your experience." msgstr "Cleachdaidh sinn seo airson dreach pearsanta a chur air an àrainneachd dhut." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Tha sinn ag ùrachadh <0>stiùireadh na coimhearsnachd againn cuideachd agus b’ fhìor-thoil leinn do bheachdan a chluinntinn! Bidh an stiùireadh ùr an sàs a-mach on 15mh dhen Dàmhair 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Tha sinn ag ùrachadh stiùireadh na coimhearsnachd againn cuideachd agus b’ fhìor-thoil leinn do bheachdan a chluinntinn! Bidh an stiùireadh ùr an sàs a-mach on 15mh dhen Dàmhair 2025." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "Tha sinn a’ dearbhadh d’ aoise air na frithealaichean againn. Cha toir seo ach diog no dhà a ghnàth." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "Chan urrainn dhuinn tòiseachadh air d’ aois a dhearbhadh sa chunntas agad. Cuir fios gu <0>sgioba na taice." + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Tha duilgheadasan aig an lìonra againn, feuch ris a-rithist" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Tha sinn a’ toirt a-steach ìre eile de dhearbhadh air Bluesky – cromag fhollaiseach." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Tha sinn cho toilichte gu bheil thu an-seo a-nis!" @@ -9205,15 +9910,15 @@ msgstr "Tha sinn duilich ach chan urrainn dhuinn an liosta seo fhuasgladh. Ma mh msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Tha sinn duilich ach cha b’ urrainn dhuinn na faclan a mhùch thu a luchdadh an-dràsta fhèin. Feuch ris a-rithist." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Tha sinn duilich ach cha b’ urrainn dhuinn sin a lorg dhut. Feuch ris a-rithist ann am beagan mhionaidean." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Tha sinn duilich! Tha thu a’ feuchainn ri post a fhreagairt a chaidh a sguabadh às." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Tha sinn duilich! Chan fhaigh sinn lorg air an duilleag a tha a dhìth ort." @@ -9222,6 +9927,26 @@ msgstr "Tha sinn duilich! Chan fhaigh sinn lorg air an duilleag a tha a dhìth o msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Tha sinn duilich! Chan urrainn dhut fo-sgrìobhadh aig barrachd air fichead leubailichean agus tha sin agad mu thràth." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "Tha sinn ag ùrachadh <0>teirmichean na seirbheise, <1>am poileasaidh prìobhaideachd agus <2>poileasaidh na còrach-lethbhreac is bidh an fheadhainn ùra an sàs a-mach on 15mh dhen t-Sultain 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "Tha sinn ag ùrachadh nam poileasaidhean againn" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "Tha sinn ag ùrachadh teirmichean na seirbheise, am poileasaidh prìobhaideachd agus poileasaidh na còrach-lethbhreac is bidh an fheadhainn ùra an sàs a-mach on 15mh dhen t-Sultain 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Tha sinn ag ùrachadh teirmichean na seirbheise, am poileasaidh prìobhaideachd agus poileasaidh na còrach-lethbhreac is bidh an fheadhainn ùra an sàs a-mach on 15mh dhen t-Sultain 2025. Tha sinn ag ùrachadh stiùireadh na coimhearsnachd againn cuideachd agus b’ fhìor-thoil leinn do bheachdan a chluinntinn! Bidh an stiùireadh ùr an sàs a-mach on 15mh dhen Dàmhair 2025. Faigh barrachd fiosrachaidh mun atharrachadh seo agus fiosraich mar a dh’innseas tu dhuinn dè do bheachd orra ’s tu a’ toirt sùil air a’ bhloga againn." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "Dhearbh sinn d’ aois agus is urrainn dhut an còmhradh seo a dhùnadh a-nis." + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Fàilte air ais!" @@ -9240,7 +9965,7 @@ msgstr "Dè an t-ainm a chuireas sinn air a’ phacaid tòiseachaidh agad?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Dè do naidheachd?" @@ -9256,11 +9981,11 @@ msgstr "Dè na cànain a tha sa phost seo?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Dè na cànain a bu toil leat fhaicinn sna h-inbhirean algairimeach agad?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Cò aig a bheil cead eadar-ghabhail a dhèanamh leis a’ phost seo?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Cò aig a bheil cead freagairt?" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "Cò aig a bheil cead-dearbhaidh?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Oich!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "Oich! Cha b’ urrainn dhuinn na videothan a tha a’ treandadh a luchdadh." @@ -9322,12 +10047,12 @@ msgstr "Carson bu chòir dhuinn lèirmheas a dhèanamh air an chleachdaiche seo? msgid "Write a message" msgstr "Sgrìobh teachdaireachd" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Sgrìobh post" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Sgrìobh do fhreagairt" @@ -9358,11 +10083,11 @@ msgstr "Tha, cuiribh à gnìomh seo" msgid "Yes, delete this starter pack" msgstr "Tha, sguabaibh às a’ phacaid tòiseachaidh seo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Tha, dealaichibh seo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Tha, falaichibh seo" @@ -9378,6 +10103,10 @@ msgstr "An-dè" msgid "You" msgstr "thu" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "Tha thu ag aontachadh ri <0>stiùireadh coimhearsnachd Bluesky cuideachd. Bidh <1>tionndadh ùr de stiùireadh na coimhearsnachd againn an sàs a-mach on 15mh dhen Dàmhair." + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "’S e neach-dearbhaidh earbsach a th’ annad" @@ -9386,6 +10115,10 @@ msgstr "’S e neach-dearbhaidh earbsach a th’ annad" msgid "You are creating an account on" msgstr "Tha thu a’ cruthachadh cunntas air" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "Chan eil cead-inntrigidh agad do shruth dearbhadh na h-aoise aig Bluesky. <0>Cuir fios gu sgioba na modarataireachd againn mas e mearachd a tha seo nad bheachd." + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Tha thu sa chiutha." @@ -9403,7 +10136,7 @@ msgstr "Chan eil thu ri sruthadh beò tuilleadh" msgid "You are not allowed to go live" msgstr "Chan eil cead agad a dhol beò" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Chan eil cead agad videothan a luchdadh." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "Chaidh do dhearbhadh" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "Chaidh do dhearbhadh. Caillidh tu d’ inbhe dearbhaidh ma dh’atharraicheas tu an t-ainm-taisbeanaidh agad. <0>Barrachd fiosrachaidh." @@ -9441,10 +10173,18 @@ msgstr "No feuch inbhirean gnàthaichte ùra a leanas tu." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "B’ urrainn dhut an cunntas agad a chur à gnìomh an-dràsta fhèin cuideachd agus a chur an gnìomh a-rithist uair sam bith." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "Tha e an urra riut fhèin an dèan brathan cabadaich fuaim ann an roghainnean na cabaich am broinn na h-aplacaid" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "’S urrainn dhut còmhradh beò a leigeil seachad, ge be dè an roghainn a thaghas tu." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "Tha gleus againn a-nis a dh’innseas dhut ma phostaicheas daoine àraidh stuth, ma thogras tu. Ma tha thu ag iarraidh brathan mu stuth ùr aig pròifil air choireigin, tadhail air a’ phròifil is cleachd an clag clì air a’ phutan “Ga leantainn”." + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "’S urrainn dhut clàradh a-steach leis an fhacal-fhaire ùr agad a-nis msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Cuir an cunntas agad an gnìomh as ùr airson clàradh a-steach. Chì daoine eile a’ phròifil is na puist agad." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "’S urrainn dhut roghainnean bunaiteach airson eadar-ghabhail a thaghadh ann an <0>Roghainnean → Modarataireachd → Roghainnean eadar-ghabhalach." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "’S urrainn dhut seo ùrachadh sna roghainnean agad uair sam bith." @@ -9472,7 +10212,7 @@ msgstr "Chan eil luchd-leantainn sam bith agad." msgid "You don't follow any users who follow @{name}." msgstr "Chan eil thu a’ leantainn gin dhe na daoine a leanas @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "Chan eil iarrtas cabadaich sam bith agad aig an àm seo." @@ -9480,15 +10220,15 @@ msgstr "Chan eil iarrtas cabadaich sam bith agad aig an àm seo." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Chan eil còd cuiridh sam bith againn fhathast! Cuiridh sinn feadhainn thugad turas a bhios tu air a bhith air Bluesky greis." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Cha do phrìnich thu inbhir gu ruige seo." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Cha do shàbhail thu inbhir gu ruige seo." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Bhac thu an t-ùghdar no bhac an t-ùghdar thusa." @@ -9502,6 +10242,10 @@ msgstr "Bhac thu an cleachdaiche seo" msgid "You have blocked this user. You cannot view their content." msgstr "Bhac thu an chleachdaiche seo. Chan fhaic thu an t-susbaint aca." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "Chuir thu à comas brathan a thaobh fhreagairtean, luaidhean is iomraidhean buileach agus cha tèid an taba seo ùrachadh tuilleadh ri linn sin. Airson seo a chur air gleus, tadhail air <0>roghainnean nam brathanagad." + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Mhùch thu an cunntas seo." msgid "You have muted this user" msgstr "Mhùch thu an cleachdaiche seo" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Chan eil còmhradh sam bith a’ dol agad fhathast. Tog do ghuth!" @@ -9547,7 +10291,7 @@ msgstr "Cha do bhac thu cunntas sam bith gu ruige seo. Airson cunntas a bhacadh, msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Cha do mhùch thu cunntas sam bith gu ruige seo. Airson cunntas a mhùchadh, tadhail air a’ phròifil aig cuideigin is tagh “Mùch an cunntas” sa chlàr-taice aca an-sin." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Ràinig thu a’ chrìoch" @@ -9572,6 +10316,10 @@ msgstr "Cha do mhùch thu facal no taga sam bith gu ruige seo" msgid "You hid this reply." msgstr "Chuir thu an fhreagairt seo am falach." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "Dhùisg thu an struth seo {0} air ais mar-thà. Dh’fhaoidte gun toir post-d suas ri 5 mionaidean mus ruig iad am bogsa a-steach agad. Feuch is fuirich mionaid no dhà eile mus dèan thu oidhirp eile." + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "’S urrainn dhut ath-thagradh a thogail mu leubailean nach do chuir thu fhèin ma tha thu dhen bheachd gur ann air mhearachd a chaidh an cur." @@ -9592,7 +10340,7 @@ msgstr "Chan fhaod thu barrachd air trì inbhirean a chur ris" msgid "You may only select up to 4 images" msgstr "Chan fhaod thu barrachd air ceithir dealbhan a chur ris" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "Feumaidh tu a bhith co-dhiù 13 bliadhna mus urrainn dhut cunntas a chruthachadh." @@ -9600,6 +10348,14 @@ msgstr "Feumaidh tu a bhith co-dhiù 13 bliadhna mus urrainn dhut cunntas a chru msgid "You must be following at least seven other people to generate a starter pack." msgstr "Feumaidh tu co-dhiù seachdnar a leantainn mus urrainn dhut pacaid tòiseachaidh a ghintinn." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "Feumaidh tu d’ aois a dhearbhadh mus fhaigh thu cothrom air na roghainnean gu h-ìosal." + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "Feumaidh tu d’ aois a dhearbhadh mus fhaigh thu cothrom air an sgrìn seo." + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Feumaidh tu cead-inntrigidh do leabhar-lann nan dealbhan agad a thoirt seachad mus urrainn dhut còd QR a shàbhaladh" @@ -9608,6 +10364,11 @@ msgstr "Feumaidh tu cead-inntrigidh do leabhar-lann nan dealbhan agad a thoirt s msgid "You must select at least one labeler for a report" msgstr "Feumaidh tu co-dhiù aon leubailiche a thaghadh mus urrainn dhut aithris a dhèanamh" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "Feumaidh tu clàradh a-steach mus fhaic thu am post seo." + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "Feumaidh tu an seòladh puist-d agad a dhearbhadh mus urrainn dhut 2FA air a’ phost-d a chur an comas." @@ -9616,7 +10377,7 @@ msgstr "Feumaidh tu an seòladh puist-d agad a dhearbhadh mus urrainn dhut 2FA a msgid "You previously deactivated @{0}." msgstr "Chuir thu @{0} à gnìomh roimhe." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "’S mathaid gum b’ fheàirrde dhut an aplacaid ath-thòiseachadh an-dràsta." @@ -9628,16 +10389,20 @@ msgstr "Chuir thu {0} mar fhrith-fhreagairt" msgid "You reacted {0} to {1}" msgstr "Chuir thu {0} mar fhrith-fhreagairt dha {1}" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Thèid do chlàradh a-mach às gach cunntas agad." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "Chan fhaigh thu brathan mun ghnìomhachd aig {0} tuilleadh" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Chan fhaigh thu brathan mun t-snàithlean seo tuilleadh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Gheibh thu brathan mun t-snàithlean seo a-nis" @@ -9657,11 +10422,11 @@ msgstr "Thusa: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Thusa: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Bidh tu a’ leantainn an luchd-cleachdaidh ’s na h-inbhirean a mholamaid-ne turas a bhios an cunntas ùr deiseil agad!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Bidh tu a’ leantainn an luchd-cleachdaidh a mholamaid-ne turas a bhios an cunntas ùr deiseil agad!" @@ -9673,9 +10438,9 @@ msgstr "Bidh tu a’ leantainn nan daoine seo agus {0} eile" msgid "You'll follow these people right away" msgstr "Bidh tu a’ leantainn nan daoine seo sa bhad" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Gheibh thu post-d aig <0>{0} a dhearbhadh gur tusa a th’ ann." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "Gheibh thu brathan mu stuth ùr aig {0} a-nis!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "Chuir thu facal no taga am falach sa phost seo." msgid "You've found some people to follow" msgstr "Lorg thu daoine a leanas tu" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "Seo deireadh na susbainte ghnìomhach." + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Seo deireadh an inbhir agad! Faigh lorg air barrachd chunntasan a leanas thu." @@ -9711,19 +10480,23 @@ msgstr "Seo deireadh an inbhir agad! Faigh lorg air barrachd chunntasan a leanas msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Rinn thu uiread a dh’iarrtas ’s a tha ceadaichte mar-thà. Feuch ris a-rithist an ceann greis." -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "Seo toiseach na susbainte ghnìomhach." + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Luchdaich thu suas na tha ceadaichte dhut de videothan an-diugh (cus dàta)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Luchdaich thu suas na tha ceadaichte dhut de videothan an-diugh (cus videothan)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Chan eil video sam bith eile agad a choimheadas tu air. Deagh-àm airson rudeigin eile a dhèanamh fad greis?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "An cunntas agad" @@ -9735,7 +10508,7 @@ msgstr "Chaidh an cunntas agad a sguabadh às" msgid "Your account has been suspended" msgstr "Chaidh an cunntas agad a chur na dhàil" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Chan eil an cunntas agad aosta gu leòr fhathast airson videothan a luchdadh suas. Feuch ris a-rithist an ceann greis." @@ -9751,11 +10524,11 @@ msgstr "Chaidh co-dhùnadh gu bheil an cunntas agad a’ briseadh <0>teirmichean msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "Chaidh an t-ath-thagradh agad a chur. Ma thèid leis an ath-thagradh agad, gheibh thu post-d." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Latha do bhreith" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Cha chuir am brabhsair agad taic ri fòrmat a’ video. Feuch brabhsair eile." @@ -9771,13 +10544,15 @@ msgstr "Cumaidh sinn seo nar cuimhne airson ceanglaichean san àm ri teachd. ’ msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Glèidhidh sinn an làmhrachan làithreach agad, <0>{0}, dhut gu fèin-obrachail. ’S urrainn dhut a thilleadh uair sam bith on chunntas seo." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "Chaidh an seòladh puist-d agad ùrachadh ach tha e gun dearbhadh fhathast. Bu chòir dhut am post-d ùr agad a dhearbhadh a-nis." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "Am post-d agad" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Tha coltas nach eil am post-d agad dligheach." @@ -9786,15 +10561,11 @@ msgstr "Tha coltas nach eil am post-d agad dligheach." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "Cha deach am post-d agad a dhearbhadh fhathast. Dearbh e ’s faigh làn-chothrom air Bluesky." -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Cha deach am post-d agad a dhearbhadh fhathast. Seo ceum tèarainteachd cudromachd is mholamaid dhut a dhèanamh." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "A’ chiad “’S toil” agad!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "Na daoine a tha gad leantainn" @@ -9806,19 +10577,15 @@ msgstr "Tha inbhir nan daoine a tha thu gan leantainn falamh! Lean barrachd dhao msgid "Your full handle will be <0>@{0}" msgstr "’S e <0>@{0} an làmhrachan slàn a bhios agad" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "’S e <0>@{0} an t-ainm-cleachdaiche slàn a bhios agad" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "Na rudan sa bheil ùidh agad" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "Chaidh na rudan sa bheil ùidh agad ùrachadh!" @@ -9835,15 +10602,15 @@ msgstr "Na faclan a mhùch thu" msgid "Your password has been changed successfully!" msgstr "Chaidh am facal-faire agad atharrachadh!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "Feumaidh co-dhiù 8 caractaran bhith san fhacal-faire agad." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Chaidh am post agad fhoillseachadh" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Chaidh na puist agad fhoillseachadh" @@ -9851,15 +10618,19 @@ msgstr "Chaidh na puist agad fhoillseachadh" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Tha na puist, na rudan as toil leat is na bhac thu poblach. Tha na rudan a mhùch thu prìobhaideach." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "An cànan as fheàrr leat" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Chan fhaic luchd-cleachdaidh Bhluesky eile a’ phròifil, na puist, inbhirean is liostaichean agad tuilleadh. ’S urrainn dhut an cunntas agad ath-ghnìomhachadh uair sam bith." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Chaidh do fhreagairt fhoillseachadh" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "Thèid an aithris agad a chur gu <0>{0}." @@ -9867,7 +10638,7 @@ msgstr "Thèid an aithris agad a chur gu <0>{0}." msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Thèid an aithris agad a chur gu seirbheis modarataireachd Bhluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "Ma leigeis tu ris dè na rudan sa bheil ùidh agad, bidh e nas fhasa susbaint a shealltainn dhut a bhuineas riut-sa." diff --git a/src/locale/locales/gl/messages.po b/src/locale/locales/gl/messages.po index 2c5e14194b..7bbc62594d 100644 --- a/src/locale/locales/gl/messages.po +++ b/src/locale/locales/gl/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: gl\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: Galician\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,7 +27,7 @@ msgstr "" msgid "(contains embedded content)" msgstr "(contén contido incrustado)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(sen correo electrónico)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# republicación} other {# republicacións}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# segundo} other {# segundos}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -90,17 +90,18 @@ msgstr "" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {seguidor} other {seguidores}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {seguindo} other {seguindo}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {gustoulle} other {gustoulles}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {gustoulle} other {gustoulles}}" msgid "{0, plural, one {post} other {posts}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {cita} other {citas}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "" @@ -135,6 +138,10 @@ msgstr "{0} <0>en <1>etiquetas" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>en <1>texto e etiquetas" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "" @@ -143,11 +150,15 @@ msgstr "" msgid "{0} is not a valid URL" msgstr "" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} uníronse esta semana" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} de {1}" @@ -164,8 +175,16 @@ msgstr "" msgid "{0} reacted {1} to {2}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "Avatar de {0}" @@ -197,12 +216,12 @@ msgstr "" msgid "{0}s" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Paquete de inicio de {displayName}" @@ -214,164 +233,163 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} seguindo" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "Non é posíbel enviar mensaxes a {handle}" @@ -392,7 +410,7 @@ msgstr "" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -432,12 +450,12 @@ msgstr "" msgid "+{computedTotal}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, e {2, plural, one {# máis} other {# máis}} foron incluídos no teu paquete" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, e {2, plural, one {# máis} other {# máis}} foron incluídos no teu paquete" @@ -450,15 +468,15 @@ msgstr "" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} e<1> <2>{1} están incluídos no paquete de inicio" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} está incluído no paquete de inicio" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} membros" @@ -466,11 +484,11 @@ msgstr "<0>{0} membros" msgid "<0>{date} at {time}" msgstr "<0>{date} ás {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Ti e<1> <2>{0} estades incluídos no paquete de inicio" @@ -503,10 +521,14 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "" @@ -524,25 +546,25 @@ msgstr "" msgid "Accept Request" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Accesibilidade" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Axustes de accesibilidade" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Conta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Conta seguida" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Conta silenciada" msgid "Account Muted by List" msgstr "Conta silenciada por listaxe" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Opcións da conta" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Conta elimada de acceso rápido" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Deixaches de seguir esta conta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Conta desenmudecida" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Engadir" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Engadir {0} máis para continuar" @@ -634,8 +666,8 @@ msgstr "Engadir conta" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Engadir texto alternativo" msgid "Add alt text (optional)" msgstr "Engadir texto alternativo (opcional)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "" @@ -670,8 +702,8 @@ msgstr "Engadir contrasinal de app" msgid "Add emoji reaction" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "" @@ -683,7 +715,7 @@ msgstr "" msgid "Add muted words and tags" msgstr "Engadir palabras silenciadas e etiquetas" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "" @@ -704,7 +736,7 @@ msgstr "" msgid "Add recommended feeds" msgstr "Engadir canles recomendadas" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Engadir algunhas canles ao teu paquete de inicio!" @@ -725,10 +757,6 @@ msgstr "Engade esta canle ás túas canles" msgid "Add to lists" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Engadir ás miñas canles" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "" @@ -738,11 +766,11 @@ msgstr "" msgid "Added to list" msgstr "Engadido á listaxe" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Engadida ás miñas canles" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "" @@ -750,18 +778,18 @@ msgstr "" msgid "Adult" msgstr "Adultos" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Contido para adultos" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "O contido para adultos só se pode habilitar a través da web en <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "O contido para adultos está deshabilitado." @@ -770,16 +798,32 @@ msgstr "O contido para adultos está deshabilitado." msgid "Adult Content labels" msgstr "Etiquetas de contido para adultos" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Avanzado" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Todas" @@ -793,7 +837,7 @@ msgstr "Seguíronse todas as contas!" msgid "All languages" msgstr "" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Todas as túas canles gardadas, nun só lugar." @@ -802,16 +846,21 @@ msgstr "Todas as túas canles gardadas, nun só lugar." msgid "Allow access to your direct messages" msgstr "Permitir o acceso ás túas mensaxes directas" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Permitir novas mensaxes de" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Permitir citar publicacións" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Permitir respostas de:" @@ -828,13 +877,13 @@ msgstr "Xa tes un código?" msgid "Already signed in as @{0}" msgstr "Sesión iniciada como @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "Texto alternativo" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Texto alternativo" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "O texto alternativo describe imaxes a persoas cegas ou con baixa visión e axuda a dar máis contexto." @@ -861,27 +910,19 @@ msgstr "" msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Un código de verificación foi enviado a {0}. Ingresa ese código a continuación." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Envioiuse un correo electrónico! A continuación, ingresa o código de confirmación incluido no correo electrónico." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Produciuse un erro" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Ocurreu un erro" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Ocurreu un erro ao comprimir o vídeo." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "" @@ -889,11 +930,11 @@ msgstr "" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Ocurreu un error ao xerar o teu paquete de inicio. Queres probar de novo?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Ocurreu un erro ao cargar o vídeo. Por favor, proba de novo." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Ocurreu un erro mentres cargaba o vídeo. Por favor, proba de novo." @@ -910,7 +951,7 @@ msgstr "Ocurreu un erro mentres seleccionabas o vídeo" msgid "An error occurred while trying to follow all" msgstr "Produciuse un erro ao tentar seguir todo" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Ocurreu un erro ao cargar o vídeo." @@ -934,8 +975,8 @@ msgstr "Ocurreu un erro mentres tentabas abrir as conversas." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "Ocurreu un erro descoñecido" msgid "an unknown labeler" msgstr "un etiquetador descoñecido" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "e" @@ -963,10 +1004,14 @@ msgstr "e" msgid "Animals" msgstr "Animais" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "GIF animado" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "" @@ -980,7 +1025,13 @@ msgstr "Comportamento antisocial" msgid "Anybody can interact" msgstr "Calquera pode interactuar" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "" msgid "App password names must be at least 4 characters long" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Contrasinais da app" @@ -1053,10 +1104,10 @@ msgstr "Apelar suspensión" msgid "Appeal this decision" msgstr "Apelar esta decisión" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Aparencia" @@ -1065,12 +1116,20 @@ msgstr "Aparencia" msgid "Apply default recommended feeds" msgstr "Aplicar canles recomendadas predeterminados" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Arquivada dende {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Publicación arquivada" @@ -1078,7 +1137,7 @@ msgstr "Publicación arquivada" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Tes a certeza de querer eliminar o contrasinal de aplicación \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Tes a certeza de que queres eliminar esta mensaxe? A mensaxe eliminarase para ti, mais non para a outra persoa." @@ -1098,19 +1157,15 @@ msgstr "" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Tes a certeza de que queres eliminar esta conversa? As túas mensaxes eliminaranse para ti, mais non para a outra persoa." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Tes a certeza de que queres eliminar {0} das túas canles?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Tes a certeza de que desexas eliminar isto das túas canles?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Tes a certeza de quequeres descartar este borrador?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Tes a certeza de querer desbotar esta publicación?" @@ -1131,29 +1186,26 @@ msgstr "Arte" msgid "Artistic or non-erotic nudity." msgstr "Espidos artísticos ou non eróticos." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Cando menos 3 caracteres" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "As opcións de reprodución automática movéronse a <0>Axustes de contido e multimedia." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Reprodución auto. de vídeos e GIFs" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Reprodución auto. de vídeos e GIFs" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Atrás" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "" @@ -1195,28 +1247,44 @@ msgstr "Antes de crear un paquete de inicio, primeiro tes que verificar o teu co msgid "Before you can accept this chat request, you must first verify your email." msgstr "" +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Aniversario" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Bloquear" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Bloquear" msgid "Block account" msgstr "Bloquear conta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Bloquear conta?" @@ -1262,20 +1330,20 @@ msgstr "Bloquear conta" msgid "Block User" msgstr "Bloquear Conta" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Bloqueado" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Contas bloqueadas" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Contas bloqueadas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Se bloqueas unha conta non poderá responder os teus fíos, mencionarte nin interactuar contigo de ningunha maneira." @@ -1284,11 +1352,11 @@ msgstr "Se bloqueas unha conta non poderá responder os teus fíos, mencionarte msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Se bloqueas unha conta non poderá responder os teus fíos, mencionarte nin interactuar contigo de ningunha manera. Non verás o seu contido e non poderá ver o teu." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Chío bloqueado." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Se bloqueas a un etiquetador aínda poderá seguir aplicando etiquetas na túa conta." @@ -1309,11 +1377,12 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky non pode confirmar a autenticidade da data solicitada." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1347,6 +1416,14 @@ msgstr "Bluesky non amosará o teu perfil ou chíos a persoas que non iniciaran msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Desenfocar imaxes e filtrar desde as canles" msgid "Books" msgstr "Libros" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Explorar máis contas" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Revisar máis canles" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Explorar máis suxerencias" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Explora máis suxerencias na páxina Explorar" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Negocios" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Por {0}" @@ -1428,15 +1502,23 @@ msgstr "Por {0}" msgid "By <0>{0}" msgstr "Por <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Ao crear unha conta, aceptas a <0>Política de privacidade." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Ao crear unha conta, aceptas os <0>Termos de servizo e a <1>Política de privacidade." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Ao crear unha conta, aceptas os <0>Termos de servizo." @@ -1448,14 +1530,17 @@ msgstr "" msgid "Camera" msgstr "Cámara" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Cámara" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Cancelar" @@ -1500,11 +1582,7 @@ msgstr "Cancelar a eliminación da conta" msgid "Cancel image crop" msgstr "Cancelar recorte de imaxe" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Cancelar edición de perfil" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Cancelar citación" @@ -1516,14 +1594,10 @@ msgstr "Cancelar a reactivación e pechar a sesión" msgid "Cancel search" msgstr "Cancelar procura" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Cancela apertura do sitio web vinculado" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Non se pode interactuar cunha conta bloqueada" @@ -1553,17 +1627,12 @@ msgstr "Cambiar a icona da aplicación a \"{0}\"" msgid "Change app language" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Cambiar o enderezo electrónico" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Cambiar alcume" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "" @@ -1579,14 +1648,6 @@ msgstr "Cambiar idioma da publicación a {suggestedLanguageName}" msgid "Change report reason" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Cambiar enderezo electrónico" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Cambiar o teu enderezo de correo electrónico" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "" @@ -1596,10 +1657,15 @@ msgstr "" msgid "Changes hosting provider" msgstr "" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Conversa" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Axustes da conversa" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Axustes da Conversa" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "" @@ -1661,7 +1738,7 @@ msgstr "Enviamos un código de inicio de sesión ao teu correo. Insíreo aquí:" msgid "Choose domain verification method" msgstr "Escoller método de verificación do dominio" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Escolle Canles" @@ -1669,7 +1746,7 @@ msgstr "Escolle Canles" msgid "Choose for me" msgstr "Escolle para min" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Escolle xente" @@ -1685,23 +1762,23 @@ msgstr "Elixe esta color como o teu avatar" msgid "Choose your account provider" msgstr "Escolle o teu provedor da conta" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Escolle a túa propia liña de tempo! Fíos feitos pola comunidade axudarante a atopar contido que che preste." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Escolleu o teu contrasinal" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "O teu alcume" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Borrar todos os datos de almacenamento" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Borrar todos os datos de almacenamento (reiniciar despois disto)" @@ -1714,23 +1791,27 @@ msgstr "" msgid "Clear search query" msgstr "Borrar consulta de búsqueda" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "Preme aquí" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Preme para deshabilitar as citas para este chío." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Preme para habilitar as citas para este chío." @@ -1750,14 +1831,16 @@ msgstr "Clima" msgid "Clip 🐴 clop 🐴" msgstr "Clip 🐴 clop 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Clip 🐴 clop 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Pechar" @@ -1789,13 +1876,15 @@ msgstr "Pechar alerta" msgid "Close bottom drawer" msgstr "Pechar o caixón inferior" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Pechar" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "" @@ -1804,7 +1893,7 @@ msgstr "" msgid "Close emoji picker" msgstr "Pechar o selector de emojis" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Pechar caixa de GIF" @@ -1822,7 +1911,7 @@ msgstr "Pechar o visor de imaxes" msgid "Close menu" msgstr "" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Pechar esta xanela" @@ -1830,7 +1919,7 @@ msgstr "Pechar esta xanela" msgid "Closes password update alert" msgstr "Pecha a alerta de actualización de contrasinal" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "" @@ -1843,16 +1932,16 @@ msgstr "" msgid "Closes viewer for header image" msgstr "Pecha o visor do encabezado da imaxe" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Pechar listaxe de contas" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Pechar a listaxe de contas para unha notificación en particular" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Modo de color" @@ -1870,7 +1959,8 @@ msgstr "Comedia" msgid "Comics" msgstr "Bandas deseñadas" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Directrices da comunidade" @@ -1879,38 +1969,34 @@ msgstr "Directrices da comunidade" msgid "Complete onboarding and start using your account" msgstr "Completa a incorporación e comeza a usar a túa conta" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Completa o desafío" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Escribir nova publicación" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Redactar resposta" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Comprimindo vídeo..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Configuración de filtrado de contido para a categoría: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Configurado en <0>axustes de moderación" -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Confimar o idioma do contido" msgid "Confirm delete account" msgstr "Confirmar eliminación da conta" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Confirma a túa idade:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Confirma a túa data de nacemento" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Confirma a túa data de nacemento" msgid "Confirmation code" msgstr "Código de confirmación" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Código de confirmación" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Conectando..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Contacta co soporte" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Contido e Multimedia" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Contido e multimedia" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Contido e Multimedia" @@ -1977,7 +2069,8 @@ msgstr "Contido e Multimedia" msgid "Content Blocked" msgstr "Contido bloqueado" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Filtros de contido" @@ -2006,10 +2099,12 @@ msgstr "Advertencia de contido" msgid "Content warnings" msgstr "Advertencia de contido" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Fondo do menú contextual, preme para pechar o menú." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Continuar" msgid "Continue as {0} (currently signed in)" msgstr "Continuar como {0} (actualmente iniciaches sesión)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Continuar fío..." @@ -2029,6 +2129,10 @@ msgstr "Continuar fío..." msgid "Continue to next step" msgstr "Sigue co seguinte paso" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Copiado" msgid "Copied build version to clipboard" msgstr "Versión de compilación copiada ao portapapeis" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "" msgid "Copy" msgstr "Copiar" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "" @@ -2087,8 +2187,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "" @@ -2120,10 +2220,10 @@ msgstr "Copiar Ligazón" msgid "Copy link to list" msgstr "Copia ligazón á lista" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Copiar ligazón ao chío" @@ -2136,18 +2236,18 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Copiar texto da mensaxe" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Copiar texto do chío" @@ -2159,11 +2259,25 @@ msgstr "Copiar código QR" msgid "Copy TXT record value" msgstr "" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Política de dereitos de autor" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "Non se puido silenciar a conversa" msgid "Could not process your video" msgstr "Non se puido procesar o teu vídeo" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Crear" @@ -2195,7 +2317,7 @@ msgstr "Crear un código QR para o paquete de inicio" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Crea un paquete de inicio" @@ -2205,21 +2327,22 @@ msgstr "Crea un paquete de inicio para min" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Crear conta" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Crear unha conta" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Crea unha conta" @@ -2241,7 +2364,7 @@ msgstr "Crea outro" msgid "Create new account" msgstr "Crear unha conta nova" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Crea un reporte de {0}" @@ -2268,7 +2391,7 @@ msgstr "Personalizado" msgid "Customization options" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Personaliza quen pode interactuar con este chío." @@ -2278,12 +2401,12 @@ msgstr "" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Escuro" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Escuro" @@ -2292,21 +2415,21 @@ msgstr "Escuro" msgid "Dark mode" msgstr "Modo Escuro" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Tema escuro" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Data de nacemento" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Desactivar conta" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Depuración de Moderacion" @@ -2314,7 +2437,7 @@ msgstr "Depuración de Moderacion" msgid "Debug panel" msgstr "Panel de depuración" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Por Defecto" @@ -2322,8 +2445,8 @@ msgstr "Por Defecto" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "" msgid "Delete" msgstr "Borrar" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Borrar a conta" @@ -2355,7 +2478,7 @@ msgstr "Borrar contrasinal de aplicación?" msgid "Delete chat" msgstr "" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Eliminar rexistro de declaración de conversa" @@ -2370,7 +2493,7 @@ msgstr "Eliminar conversa" msgid "Delete Conversation" msgstr "Eliminar Conversa" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Borrar para min" @@ -2378,11 +2501,11 @@ msgstr "Borrar para min" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Borrar mensaxe" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Borrar mensaxe para min" @@ -2390,9 +2513,9 @@ msgstr "Borrar mensaxe para min" msgid "Delete my account" msgstr "Borrar a miña conta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Borrar un chío" @@ -2409,11 +2532,11 @@ msgstr "Borrar paquete de inicio?" msgid "Delete this list?" msgstr "Borrar esta listaxe?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Borrar este chío?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Eliminado" @@ -2422,15 +2545,20 @@ msgstr "Eliminado" msgid "Deleted Account" msgstr "Conta eliminada" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Borrouse o chío." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Descrición" @@ -2447,12 +2575,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Texto descritivo alternativo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Desvincular cita" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Desvincular chío da cita?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Modo desenvolvedor habilitado" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Opcións de desenvolvedor" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Xanela: axustar quen pode interactuar con este chío" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Atenuar" @@ -2492,27 +2620,27 @@ msgstr "" msgid "Disable Email 2FA" msgstr "Desactivar Correo 2FA" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Desactivar a retroalimentación háptica" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Desactivar lexendaxe" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Deshabilitado" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Desbotar" @@ -2520,11 +2648,11 @@ msgstr "Desbotar" msgid "Discard changes?" msgstr "Desbotar cambios?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Desbotar borrador?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Desbotar publicación?" @@ -2542,7 +2670,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "Descubre novas canles personalizadas" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Descobre Novas Canles" @@ -2550,7 +2678,7 @@ msgstr "Descobre Novas Canles" msgid "Dismiss" msgstr "Desbotar" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Desbotar erro" @@ -2562,26 +2690,26 @@ msgstr "Desbotar a guía de introdución" msgid "Dismiss interests" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Ignorar esta sección" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Amosar insignias de texto alternativo máis grandes" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Amosar o nome" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Mostrar o nombre" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "O nome amosado é demasiado longo" @@ -2603,15 +2731,11 @@ msgstr "Non aplicar esta palabra silenciada ás persoas que segues" msgid "Does not include nudity." msgstr "Non inclúe espidos." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Non comeza nin remata cun guión." - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Dominio verificado!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -2619,6 +2743,15 @@ msgstr "" msgid "Don't see an email? <0>Click here to resend." msgstr "" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "" msgid "Double tap to close the dialog" msgstr "Doble toque para pechar a xanela" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Duplo toque para marcar cun \"gústame\"" @@ -2673,7 +2806,7 @@ msgstr "Descargar Bluesky" msgid "Download CAR file" msgstr "Descargar ficheiro CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Arrastra para agregar imaxes" @@ -2689,18 +2822,10 @@ msgstr "ex. alicia" msgid "e.g. Alice Lastname" msgstr "ex. Apelido de Alicia" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "p. ej. Alicia Roberts" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "ex. alicia.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "p. ej. Artista, amante dos e ávida lectora." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "ex. Espidos artísticos." @@ -2725,10 +2850,11 @@ msgstr "ex. Persoas que constantemente responden con publicidade." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Cada código funciona unha vez. Recibirás máis códigos de convite periodicamente." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Editar" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Editar" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Editar avatar" @@ -2749,12 +2875,12 @@ msgstr "Editar Canles" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Editar imaxe" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Editar axustes de interacción" @@ -2776,33 +2902,33 @@ msgstr "" msgid "Edit Moderation List" msgstr "Editar Listaxe de Moderación" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Editar as Miñas Canles" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Editar o meu perfil" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Editar Persoas" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Editar axustes de interacción do chío" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Editar o perfil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Editar o perfil" @@ -2814,19 +2940,11 @@ msgstr "Editar paquete de inicio" msgid "Edit User List" msgstr "Editar listaxe de Persoas" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Editar quen pode responder" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Editar tu nombre para mostrar " - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Edita tu descripcion de perfil" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Edita o teu paquete de inicio" @@ -2839,8 +2957,8 @@ msgstr "Educación" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "O creador desta lista bloqueoute ou ti bloqueaches o creador." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "Enderezo electrónico" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "Correo 2FA deshabilitado" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "2FA do correo habilitado" @@ -2865,10 +2983,6 @@ msgstr "Correo electrónico reenviado" msgid "Email sent!" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "" @@ -2883,8 +2997,8 @@ msgstr "Insertar código HTML" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Insertar chío" @@ -2892,7 +3006,7 @@ msgstr "Insertar chío" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incrusta este chío no teu sitio web. Simplemente copia o seguinte fragmento e pégao no código HTML do teu sitio web." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Reprodutor de vídeo incrustado" @@ -2906,7 +3020,7 @@ msgstr "Habilitar" msgid "Enable {0} only" msgstr "Activar {0} unicamente" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Activar contido para persoas adultas" @@ -2919,16 +3033,20 @@ msgstr "" msgid "Enable external media" msgstr "Activar medios externos" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Reproducir multimedia de" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Habilitar notificacións prioritarias" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Activar lexendas" @@ -2941,17 +3059,14 @@ msgstr "Habilitar só esta fonte" msgid "Enable trending topics" msgstr "Habilitar temas de tendencia" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Habilitar os vídeos en tendencia na túa canle \"Descubrir\"" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Habilitar os vídeos en tendencia na túa canle \"Descubrir\"." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Activado" @@ -2963,7 +3078,7 @@ msgstr "Fin das canles" msgid "Ensure you have selected a language for each subtitle file." msgstr "Asegúrate de ter seleccionado un idioma para cada ficheiro das lexendas." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Ingresa un contrasinal" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Ingresa unha palabra ou etiqueta" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Ingresa Código" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Poñer a pantalla completa" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Ingresa a túa data de nacemento" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Introduce o enderezo de correo electrónico" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Introduce o teu novo enderezo de correo electrónico a continuación." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "" @@ -3022,7 +3129,7 @@ msgstr "" msgid "Enter your username and password" msgstr "Introduce o teu alcume e contrasinal" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "" @@ -3030,16 +3137,28 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Erro" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Ocorreu un erro ao gardar o ficheiro" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Error ao recibir a resposta do captcha." @@ -3047,27 +3166,34 @@ msgstr "Error ao recibir a resposta do captcha." msgid "Error:" msgstr "Erro:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Todos" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Todo o mundo pode responder" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Todo o mundo pode responder a este chío." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Todos" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Excluír á contas que segues" msgid "Excludes users you follow" msgstr "Exclúe ás contas que segues" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Saír da pantalla completa" @@ -3106,24 +3232,28 @@ msgstr "Saír da vista de imaxe" msgid "Expand alt text" msgstr "Expandir o texto alt" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Expandir listaxe de persoas" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Expandir ou minimizar o chío completo ao que estás respondendo" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "Esperábase que a URI se resolvera nun rexistro" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Experimental" @@ -3153,15 +3283,15 @@ msgstr "Medios explícitos ou potencialmente perturbadores." msgid "Explicit sexual images." msgstr "Imaxes sexuais explícitas." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Exportar os meus datos" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Medios externos" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "É posíbel que medios externos permitan que outros sitios recopilen datos sobre ti e o teu dispositivo. Non se envía ou solicita ningún tipo de información ata que presiones o botón de \"play\"." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Medios externos" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "" @@ -3211,8 +3341,8 @@ msgstr "" msgid "Failed to create conversation" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Error ao crear o paquete de inicio." @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Error ao eliminar a mensaxe." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Error ao eliminar o chío, por favor, inténtao de novo." @@ -3238,8 +3368,8 @@ msgstr "Error ao eliminar o chío, por favor, inténtao de novo." msgid "Failed to delete starter pack" msgstr "Error ao eliminar o paquete inicial." -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "" @@ -3250,14 +3380,32 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Error ao cargar as preferencias das canles." -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Error ao cargar os GIFs." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Error ao cargar as mensaxes anteriores." +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Error ao cargar as canles suxeridas." msgid "Failed to load suggested follows" msgstr "Error ao cargar as suxerencias de seguimento." -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Error ao fixar o chío." #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "" @@ -3291,15 +3439,11 @@ msgstr "" msgid "Failed to save image: {0}" msgstr "Error ao gardar a imaxe: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Error ao gardar as preferencias de notificación, por favor, inténtao de novo." - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "" @@ -3318,7 +3462,7 @@ msgstr "" msgid "Failed to submit appeal, please try again." msgstr "Error ao enviar a apelación, por favor, inténtao de novo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Error ao cambiar o estado de silencio do fío, por favor, inténtao de novo." @@ -3335,7 +3479,11 @@ msgstr "" msgid "Failed to update feeds" msgstr "Error ao actualizar as canles" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Error ao actualizar os axustes" @@ -3354,15 +3502,23 @@ msgstr "" msgid "Failed to verify handle. Please try again." msgstr "Erro ao verificar nome de usuario. Téntao de novo." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Canles" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Canle por {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Menú de canles" @@ -3371,35 +3527,39 @@ msgstr "Menú de canles" msgid "Feed toggle" msgstr "Alternar canle" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Comentarios" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Comentario enviado!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Canles" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "As canles son algoritmos personalizados que as persoas constrúen cun poco de experiencia en codificación. <0/> para máis información." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Canles actualizadas!" @@ -3428,6 +3588,14 @@ msgstr "" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Finalizando" @@ -3448,7 +3616,7 @@ msgstr "Procurar contas a seguir" msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Rematar" @@ -3456,17 +3624,17 @@ msgstr "Rematar" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Flexíbel" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Seguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Seguir a {0}" @@ -3518,7 +3686,7 @@ msgstr "Seguir esta conta" msgid "Follow all" msgstr "Seguir a todos" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Seguir tamén" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Seguir tamén" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Seguido por <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Seguido por <0>{0} e {1, plural, one {# other} other {# others}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Seguido por <0>{0} e <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Seguido por <0>{0}, <1>{1}, e {2, plural, one {# other} other {# others}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Seguidores de @{0} que coñeces" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Seguidores que coñeces" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Seguindo" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Seguindo" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Seguindo {0}" @@ -3579,8 +3751,8 @@ msgstr "Seguindo a {handle}" msgid "Following feed preferences" msgstr "Preferencias das canles de Seguimento" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Preferencias das canles de Seguimento" @@ -3592,11 +3764,11 @@ msgstr "Séguete" msgid "Follows You" msgstr "Séguete" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Fonte" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Tamaño de fonte" @@ -3613,7 +3785,7 @@ msgstr "Por razóns de seguridade, teremos que enviarche un código de confirmac msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Para unha mellor experiencia, recomendamos que uses a fonte do tema." @@ -3643,11 +3815,15 @@ msgstr "Esquecéchelo?" msgid "Frequently Posts Unwanted Content" msgstr "Publicacións frecuentes de contido non desexado" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "De @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "De <0/>" @@ -3660,14 +3836,68 @@ msgstr "Galería" msgid "Generate a starter pack" msgstr "Xera un paquete de inicio" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Obtén axuda" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "" @@ -3688,14 +3918,16 @@ msgstr "Dálle ao teu perfil unha cara bonita" msgid "Glaring violations of law or terms of service" msgstr "Violacións flagrantes da Lei ou dos Termos de servizo" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Ir á conversa con {0}" @@ -3779,8 +4017,8 @@ msgstr "Contido Gráfico" msgid "Half way there!" msgstr "Xa está na metade do camiño!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Alcume" @@ -3797,7 +4035,7 @@ msgstr "Alcume cambiado!" msgid "Handle too long. Please try a shorter one." msgstr "O alcume é longo de máis. Por favor, insire un máis curto." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Vibración" @@ -3806,7 +4044,7 @@ msgstr "Vibración" msgid "Harassment, trolling, or intolerance" msgstr "Acoso, trolling ou intolerancia" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Cancelo" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Cancelo {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "" -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Tes problemas?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Axuda" @@ -3839,8 +4077,13 @@ msgstr "Axuda a que as persoas saiban que non es un bot subindo unha foto ou cre msgid "Here is your app password!" msgstr "" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Oculto" @@ -3848,16 +4091,16 @@ msgstr "Oculto" msgid "Hidden by your moderation settings." msgstr "Oculto debido aos teus axustes de moderación." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Listaxe oculta" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Listaxe oculta" msgid "Hide" msgstr "Ocultar" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Ocultar" @@ -3875,18 +4118,18 @@ msgstr "Ocultar" msgid "Hide customization options" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Ocultar o chío para min" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Ocultar rechouchío para todo o mundo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Ocultar rechouchío para min" @@ -3894,12 +4137,12 @@ msgstr "Ocultar rechouchío para min" msgid "Hide this card" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Ocultar este chío?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Ocultar este rechouchío?" @@ -3913,11 +4156,11 @@ msgstr "Ocultar temas de tendencia" msgid "Hide trending topics?" msgstr "Ocultar os temas de tendencia?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Ocultar os vídeos en tendencia?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Ocultar listaxe de persoas" @@ -3926,32 +4169,32 @@ msgstr "Ocultar listaxe de persoas" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Oculta o contido" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Produciuse algún problema ao contactar co servidos das canles. Por favor, informa á persoa autora da nova sobre este problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Parece que o servidor das canles está mal configurado. Por favor, informa á persoa autora da nova sobre este problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Parece que o servidor das canles non está en liña. Por favor, informa á persoa autora da nova sobre este problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "O servidor das canles respondeu de forma incorrecta. Por favor, informa á persoa autora da nova sobre este problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Temos problemas para encontrar esta canle. Pode ser que a borrasen." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Vaites! Parece que temos problemas para cargar estes datos. Consulta máis detalles a continuación. Se o problema persiste, ponte en contacto connosco." @@ -3959,15 +4202,15 @@ msgstr "Vaites! Parece que temos problemas para cargar estes datos. Consulta má msgid "Hmmmm, we couldn't load that moderation service." msgstr "Vaites! Non puidemos cargar ese servizo de moderación." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Espera! Estamos dando acceso a vídeos gradualmente e aínda estás na listaxe de espera. Volve a consultar máis adiante." -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Inicio" @@ -3984,10 +4227,10 @@ msgstr "Proveedor de aloxamento" msgid "Hot" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Primeiro as respostas máis activas" @@ -3996,10 +4239,6 @@ msgstr "Primeiro as respostas máis activas" msgid "How should we open this link?" msgstr "Como deberíamos abrir esta ligazón?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Enténdoo" msgid "If alt text is long, toggles alt text expanded state" msgstr "Se o texto alternativo é longo, alterna o estado expandido do texto alternativo. " -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Se aínda non es maior de idade segundo as leis do teu país, o teu pai, a túa nai ou o teu titor legal debe ler estes Termos no teu nome." @@ -4031,11 +4270,11 @@ msgstr "Se eliminas esta listaxe, non poderás recuperala." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Se tes o teu propio dominio, podes empregalo como nome de usuario. Isto permíteche auto-verificar a túa identidade. <0>Máis información aquí." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Se eliminas este chío, non poderás recuperalo." @@ -4047,6 +4286,10 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Se desexas cambiar o teu contrasinal, enviarémosche un código para verificar que esta é a túa conta." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "Se es desenvolvedor, podes hospedar o teu propio servidor." @@ -4091,13 +4334,41 @@ msgstr "Suplantación de identidade ou afirmacións falsas sobre identidade ou a msgid "Impersonation, misinformation, or false claims" msgstr "Suplantación de identidade, desinformación ou afirmacións falsas" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Mensaxes inapropiadas ou ligazóns explícitas" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "" @@ -4105,7 +4376,7 @@ msgstr "" msgid "Incorrect username or password" msgstr "Alcume ou contrasinal incorrectos" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Introduce o código enviado ao teu correo electrónico para restablecer o contrasinal" @@ -4113,7 +4384,7 @@ msgstr "Introduce o código enviado ao teu correo electrónico para restablecer msgid "Input confirmation code for account deletion" msgstr "Introduce o código de confirmación para eliminar a conta" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Introduce un novo contrasinal" @@ -4129,10 +4400,14 @@ msgstr "Introduce o código que se che enviou por correo electrónico" msgid "Interaction limited" msgstr "Interacción limitada" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Axustes de interacción" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "O código de confirmación 2FA non é válido." msgid "Invalid handle. Please try a different one." msgstr "Alcume non válido. Por favor, insire un diferente." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Rexistro de chío inválido ou non compatíbel" @@ -4158,7 +4433,7 @@ msgstr "O Código de Verificación incorrecto" msgid "Invite a Friend" msgstr "Convida a unha amizade" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Código de convite" @@ -4186,15 +4461,15 @@ msgstr "Convida ás túas amizades a seguir as túas canles e persoas favoritas" msgid "Invites, but personal" msgstr "Convites, mais personais" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "É correcto" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Por agora só estás ti! Engade máis persoas ao teu paquete inicial buscando arriba." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "Tarefa ID: {0}" @@ -4220,11 +4495,27 @@ msgstr "Únete á conversa" msgid "Journalism" msgstr "Xornalismo" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Etiquetado por {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Etiquetado pola persoa autora." @@ -4237,7 +4528,7 @@ msgstr "Etiquetas" msgid "Labels added" msgstr "Etiquetas engadidas" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "As etiquetas son anotacións sobre persoas e contido. Poden usarse para ocultar, advertir e categorizar a rede." @@ -4253,22 +4544,30 @@ msgstr "Etiquetas no teu contido" msgid "Language selection" msgstr "Escoller idioma" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Axustes de Idiomas" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Idiomas" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Máis grande" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Último" @@ -4282,7 +4581,6 @@ msgstr "saber máis" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "" @@ -4290,6 +4588,10 @@ msgstr "" msgid "Learn More" msgstr "Aprender máis" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Aprender máis de Bluesky" @@ -4298,15 +4600,23 @@ msgstr "Aprender máis de Bluesky" msgid "Learn more about self hosting your PDS." msgstr "Obtén máis información sobre como aloxar o teu PDS." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Obtén máis información sobre a moderación aplicada a este contido." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Aprender máis sobre esta advertencia" @@ -4316,12 +4626,16 @@ msgstr "Aprender máis sobre esta advertencia" msgid "Learn more about verification on Bluesky" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Máis información sobre o que é público en Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Aprender máis." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Deixar conversación" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Déixaos todos sen marcar para ver calquera idioma." +msgid "Leave them all unselected to see any language." +msgstr "" -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Saír de Bluesky" @@ -4370,7 +4685,7 @@ msgstr "Imos!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Claro" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -4397,6 +4712,10 @@ msgstr "Dálle «gústame» a 10 chíos" msgid "Like 10 posts to train the Discover feed" msgstr "Dálle «gústame» a 10 publicacións para entrenar as canles de Descubrimento." +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Dar «gústame» a esta canle" @@ -4405,8 +4724,8 @@ msgstr "Dar «gústame» a esta canle" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Gustoulle a" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Gustoulle a" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" @@ -4428,20 +4747,36 @@ msgstr "" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Gústame" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Gústame en este chío" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Lineal" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Listaxe" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Listaxe por {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "A listaxe xa non está silenciada" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Listaxes" @@ -4537,7 +4876,7 @@ msgstr "Cargar máis" msgid "Load more suggested feeds" msgstr "Cargar máis canles suxeridas" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Cargar notificacións novas" @@ -4552,11 +4891,11 @@ msgstr "Cargar novos chíos" msgid "Loading..." msgstr "Cargando..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Rexistro" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Visibilidade de desconexión" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo por @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo por <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Logo por <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Mantén presionado para abrir o menú de etiquetas para #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "É como XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "" msgid "Make one for me" msgstr "Fai un para min" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Asegúrate de que este é o lugar onde queres ir!" @@ -4606,7 +4945,7 @@ msgstr "Asegúrate de que este é o lugar onde queres ir!" msgid "Manage saved feeds" msgstr "" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "" @@ -4614,9 +4953,9 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "Xestiona as túas palabras e etiquetas silenciadas" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "" @@ -4625,15 +4964,13 @@ msgstr "" msgid "Mark as read" msgstr "Marcar como lido" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "" @@ -4645,19 +4982,26 @@ msgstr "Multimedia" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Medios que poden resultar perturbadores ou inapropiados para algunhas audiencias." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "persoas mencionadas" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Persoas mencionadas" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Mencións" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Menú" @@ -4665,7 +5009,7 @@ msgstr "Menú" msgid "Message {0}" msgstr "Mensaxe {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Mensaxe eliminada" @@ -4674,11 +5018,11 @@ msgstr "Mensaxe eliminada" msgid "Message deleted" msgstr "Mensaxe eliminada" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Mensaxe do servidor: {0}" @@ -4691,19 +5035,23 @@ msgstr "Campo de entrada da mensaxe" msgid "Message is too long" msgstr "A mensaxe é demasiado longa" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Mensaxes" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Conta enganosa" msgid "Misleading Post" msgstr "Chío enganoso" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderación" @@ -4725,17 +5073,17 @@ msgstr "Moderación" msgid "Moderation details" msgstr "Detalles de moderación" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Listaxe de moderación feita por {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Listaxe de moderación feita por <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Listaxe de moderación feita por ti" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Listaxe de moderación actualizada" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Listaxes de moderación" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Listaxes de Moderación" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "axustes de moderación" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Estados de moderación" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Ferramentas de moderación" @@ -4775,7 +5123,7 @@ msgstr "Ferramentas de moderación" msgid "Moderator has chosen to set a general warning on the content." msgstr "A persoas moderadora decidiu establecer unha advertencia xeral sobre o contido. " -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Máis" @@ -4790,13 +5138,13 @@ msgstr "Máis canles" msgid "More options" msgstr "Máis opcións" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Primeiro as respostas con máis gústame" @@ -4808,8 +5156,8 @@ msgstr "Filmes" msgid "Music" msgstr "Música" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Silenciar" @@ -4819,8 +5167,8 @@ msgstr "Silenciar" msgid "Mute {tag}" msgstr "Silenciar {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Silenciar esta palabra só nas etiquetas" msgid "Mute this word until you unmute it" msgstr "Silenciar esta palabra ata que a actives" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Silenciar fío" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Silenciar palabras e etiquetas" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Contas silenciadas" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Contas Silenciadas" @@ -4898,7 +5246,7 @@ msgstr "As publicacións das contas silenciadas elimínanse das túas canles e d msgid "Muted by \"{0}\"" msgstr "Silenciado por \"{0}\"" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Palabras e etiquetas silenciadas" @@ -4911,7 +5259,7 @@ msgstr "Ninguén pode ver a quen silencias. As contas silenciadas poden interact msgid "My Birthday" msgstr "O meu aniversario" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "As miñas canles" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Natureza" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Navegar a {0}" @@ -4958,11 +5306,11 @@ msgstr "Navega á seguinte pantalla" msgid "Navigates to your profile" msgstr "Navega ao teu perfil" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Necesitas cambialo?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Necesitas reportar unha violación de copyright?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Novo" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Novo chat" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Novas mensaxes" msgid "New Moderation List" msgstr "Nova listaxe de moderación" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Novo contrasinal" @@ -5029,7 +5396,7 @@ msgstr "Novo Contrasinal" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Novo chío" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Novo Chío" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Nova xanela de información desta persoa" @@ -5054,10 +5429,14 @@ msgstr "Nova xanela de información desta persoa" msgid "New User List" msgstr "Nova listaxe de persoas" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Primeiro as respostas máis recentes" @@ -5071,15 +5450,15 @@ msgstr "Noticias" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "Sen panel de DNS" msgid "No expiry set" msgstr "" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Non se atoparon GIF destacados. Pode haber un problema con Tenor." @@ -5119,32 +5498,35 @@ msgstr "" msgid "No likes yet" msgstr "Aínda sen gústames" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Xa non segues a {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Aínda non hai mensaxes" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Aínda non hai notificacións!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Ninguén" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Ninguén, excepto a persoa autora, pode citar este chío." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Aínda non hai chíos." @@ -5171,7 +5553,7 @@ msgstr "Sen resultados" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Non se encontraron resultados" @@ -5179,9 +5561,9 @@ msgstr "Non se encontraron resultados" msgid "No results found for \"{query}\"" msgstr "Non se encontraron resultados para \"{query}\"" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Non se encontraron resultados para {query}" @@ -5189,7 +5571,7 @@ msgstr "Non se encontraron resultados para {query}" msgid "No results." msgstr "" -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Non se encontraron resultados de búsqueda para \"{search}\"." @@ -5198,7 +5580,7 @@ msgstr "Non se encontraron resultados de búsqueda para \"{search}\"." msgid "No thanks" msgstr "Non, grazas" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Ninguén" @@ -5223,59 +5605,76 @@ msgstr "Non se encontrou a ninguén. Proba a buscar a outra persoa." msgid "Non-sexual Nudity" msgstr "Nudez non sexual" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Non se encontrou" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Nota sobre compartir" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: Bluesky é unha rede aberta e pública. Esta configuración só limita a visibilidade do teu contido na aplicación e no sitio web de Bluesky, e é posíbel que outras aplicacións non respecten esta configuración. O teu contido aínda se pode mostrar ás persoas que pecharon sesión por outras aplicacións e sitios web." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Non hai nada aquí" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Filtros de notificacións" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Axustes de notificacións" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Axustes de notificacións" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Sons de notificacións" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Sons de Notificacións" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Notificacións" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "agora" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Desnudez ou contido para persoas adultas non etiquetado como tal" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Apagar" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Ai, non!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "Ben" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Está ben" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Primeiro as respostas máis antigas" @@ -5331,19 +5736,19 @@ msgstr "Primeiro as respostas máis antigas" msgid "on<0><1/><2><3/>" msgstr "en<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Restablecemento da incorporación" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Falta o texto alternativo nunha ou máis imaxes." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Falta o texto alternativo nun ou máis vídeos." @@ -5351,13 +5756,15 @@ msgstr "Falta o texto alternativo nun ou máis vídeos." msgid "Only .jpg and .png files are supported" msgstr "Só se admiten ficheiros .jpg e .png" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Só {0} pode responder." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Só contén letras, números e guións" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Só se admiten ficheiros de imaxe" msgid "Only WebVTT (.vtt) files are supported" msgstr "Só se admiten ficheiros WebVTT (.vtt)." -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Vaites, algo non furrula ben!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Vaites!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Abrir menú lateral" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Abrir o selector de emoji" @@ -5416,7 +5822,7 @@ msgstr "Abre o menú de opcións das canles" msgid "Open full emoji list" msgstr "" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Abrir ligazón a {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Abrir ligazón a {niceUrl}" msgid "Open message options" msgstr "Abrir opcións de mensaxe" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Abrir a páxina da depuración de moderación" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Abrir os axustes de palabras e etiquetas silenciadas" @@ -5453,16 +5859,16 @@ msgstr "" msgid "Open starter pack menu" msgstr "Abrir menú do paquete de inicio" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Abrir pagina de histórico" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Abrir registro do sistema." -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Abre {numItems} opciones." @@ -5490,11 +5896,11 @@ msgstr "Abrir cámara do dispositivo" msgid "Opens captions and alt text dialog" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Abre o diálogo de troco do alcume" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Abrir compositor" @@ -5502,7 +5908,7 @@ msgstr "Abrir compositor" msgid "Opens device photo gallery" msgstr "Abrir galería de fotos do dispositivo" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Abre o selector de emojis" @@ -5520,15 +5926,19 @@ msgstr "Abrir o fluxo para iniciar sesión na túa conta Bluesky existente" msgid "Opens GIF select dialog" msgstr "Abrir a xanela de selección de GIF" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Abrir a listaxe de códigos de convite" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "" @@ -5536,12 +5946,8 @@ msgstr "" msgid "Opens password reset form" msgstr "Abrir o formulario de restablecemento do contrasinal" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Abrir o sitio web ligado" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Abrir este perfil" @@ -5558,7 +5964,7 @@ msgstr "Opcionalmente, proporcione información adicional a continuación:" msgid "Options:" msgstr "Opcións:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Ou combina estas opcións:" @@ -5600,6 +6006,10 @@ msgstr "Outra conta" msgid "Other..." msgstr "Outro..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "O noso equipo de moderación recibiu a túa denuncia." @@ -5608,7 +6018,7 @@ msgstr "O noso equipo de moderación recibiu a túa denuncia." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Os nosos moderadores revisaron os informes e decidiron desactivar o teu acceso ás conversas en Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Non se atopou a páxina" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Non se atopou a páxina" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Contrasinal actualizado" msgid "Password updated!" msgstr "Contrasinal actualizado!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Pausar" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Pausar vídeo" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Persoas" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Persoas seguidas por @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Persoas siguindo a @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "" @@ -5704,12 +6119,12 @@ msgstr "Fixar no inicio" msgid "Pin to Home" msgstr "Fixar no Inicio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Fixar no teu perfil" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Fixado" @@ -5718,7 +6133,7 @@ msgstr "Fixado" msgid "Pinned {0} to Home" msgstr "{0} fixouse á páxina de inicio" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Canles fixadas" @@ -5726,38 +6141,38 @@ msgstr "Canles fixadas" msgid "Pinned to your feeds" msgstr "As túas canles fixadas" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Reproducir" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Reproducir {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Reproducir vídeo" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Reproducir Vídeo" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Reproduce ou pausa o GIF" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Reproduce ou pausa o vídeo" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Reproducir GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Reproduce o vídeo" @@ -5765,12 +6180,16 @@ msgstr "Reproduce o vídeo" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Por favor, escolle o teu alcume." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Por favor, escolle o teu contrasinal." @@ -5782,7 +6201,8 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Por favor, completa a verificación CAPTCHA" -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "" @@ -5804,6 +6224,7 @@ msgstr "Por favor, insire un nome único para este contrasinal de aplicación ou msgid "Please enter a valid code." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "" @@ -5812,7 +6233,11 @@ msgstr "" msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Introduce unha palabra, etiqueta ou frase válida para silenciar" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "" #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Introduce o teu correo electrónico." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Introduce o teu código de convite." @@ -5853,6 +6278,19 @@ msgstr "Explica por que cres que esta etiqueta foi aplicada incorrectamente por msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Explica por que cres que se desactivaron incorrectamente as túas conversas" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "" @@ -5870,9 +6308,9 @@ msgstr "Inicia sesión como @{0}" msgid "Please verify your email" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Verifica o teu enderezo electrónico" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Política" msgid "Porn" msgstr "Pornografía" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Chiar" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Chiar" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Chiar" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Publicar todo" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Chío de {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Chío de @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Chío eliminado" @@ -5919,11 +6362,14 @@ msgstr "Chío eliminado" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Produciuse un erro ao cargar o chío. Comproba a túa conexión a Internet e téntao de novo." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "A publicación foi eliminada" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Chío oculto" @@ -5937,11 +6383,11 @@ msgstr "Chío oculto por palabra silenciada" msgid "Post Hidden by You" msgstr "Chío ocultado por ti" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Axustes de interacción do chío" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Axustes de interacción da publicación" @@ -5954,8 +6400,10 @@ msgstr "Idioma do chío" msgid "Post Languages" msgstr "Idiomas dos chíos" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Non se encontrou o chío" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Chío desfixado" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Chíos" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Os chíos pódense silenciar en función do seu texto, das súas etiquetas ou de ambos. Recomendamos evitar as palabras comúns que aparecen en moitos chíos, xa que pode provocar que non se mostre ningún chío." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Chíos ocultos" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Ligazón potencialmente enganosa" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Preferencias gardadas" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Preme para tentar a conexión" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Preme para reintentar" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Preme para ver as persoas desta conta que tamén segues" @@ -6015,40 +6469,46 @@ msgstr "Imaxe previa" msgid "Primary Language" msgstr "Idioma primario" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Priorizar aos que segues" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Notificacións prioritarias" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Privacidade" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Privacidade e seguranza" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacidade e Seguranza" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Política de privacidade" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Procesando vídeo..." @@ -6062,15 +6522,14 @@ msgstr "Procesando..." msgid "profile" msgstr "perfil" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Perfil" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Perfil actualizado" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "O código QR copiouse no portapapeis!" @@ -6119,44 +6594,52 @@ msgstr "O código QR foi descargado!" msgid "QR code saved to your camera roll!" msgstr "O código QR gardouse no carrete da cámara." -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Citar un chío" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "O chío citado foi anexado de novo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "O chío citado separouse correctamente" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Citas deshabilitadas" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Configuración de citas" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Citas" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Citas deste chío" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Aleatorio (aka \"Poster's Roulette\")" @@ -6164,8 +6647,8 @@ msgstr "Aleatorio (aka \"Poster's Roulette\")" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Volver a anexar cita" @@ -6177,30 +6660,42 @@ msgstr "" msgid "Reactivate your account" msgstr "Reactiva a túa conta" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Ler menos" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Ler máis" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Le o blog de Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Le a Política de privacidade de Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Le as Condicións de servizo de Bluesky" @@ -6213,6 +6708,14 @@ msgstr "Razón para apelar" msgid "Reason:" msgstr "Razón:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Busquedas Recentes" @@ -6234,8 +6737,8 @@ msgstr "" msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Recargar as conversas" @@ -6244,10 +6747,9 @@ msgstr "Recargar as conversas" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Eliminar" @@ -6259,17 +6761,17 @@ msgstr "Eliminar a {displayName} do paquete inicial" msgid "Remove {historyItem}" msgstr "" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Eliminar a conta" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Eliminar anexo" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Eliminar Avatar" @@ -6284,24 +6786,22 @@ msgstr "Eliminar incrustación" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Eliminar canle" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Eliminar canle?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Eliminar das miñas canles" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Eliminar o acceso rápido?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "Eliminar das canles gardadas" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "Eliminar das túas canles?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Eliminar a imaxe" @@ -6332,12 +6831,8 @@ msgstr "Elimina a palabra silenciada da túa listaxe" msgid "Remove profile" msgstr "Eliminar perfil" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Eliminar cita" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Eliminar rechouchío" @@ -6345,7 +6840,7 @@ msgstr "Eliminar rechouchío" msgid "Remove subtitle file" msgstr "Eliminar o ficheiro de lexendas" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Eliminar esta canle das túas canles gardadas" @@ -6364,11 +6859,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Eliminado pola persoa autora" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Eliminado por ti" @@ -6377,10 +6872,6 @@ msgstr "Eliminado por ti" msgid "Removed from list" msgstr "Eliminado da listaxe" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Eliminado das miñas canles" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Eliminado das miñas canles gardadas" @@ -6395,34 +6886,36 @@ msgstr "Eliminado das miñas canles" msgid "Removed verification" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Eliminar o chío citado" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Substitúeo por Discover" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Respostas" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Respostas deshabilitadas" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "As respostas a este chío están desactivadas." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Responder" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -6436,50 +6929,55 @@ msgstr "Resposta oculta pola persoa autora do fío" msgid "Reply Hidden by You" msgstr "Resposta ocultada por ti" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Axustes de resposta" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "A configuración de resposta é elixida pola persoa autora do fío" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Orde das respostas" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Responder a <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Responder a un chío bloqueado" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Responder a un chío" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Responderche" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Visibilidade da resposta actualizada" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "A resposta ocultouse correctamente." -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Denunciar canle" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Denunciar mensaxe" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Denunciar chío" @@ -6567,25 +7065,26 @@ msgstr "Denunciar este paquete de inicio" msgid "Report this user" msgstr "Denunciar esta persoa" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Rechouchiar" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Rechouchiar" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Rechouchiar ou citar chío" @@ -6594,26 +7093,38 @@ msgstr "Rechouchiar ou citar chío" msgid "Reposted By" msgstr "Rechouchiado por" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Rechouchiado por {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Rechouchiado por <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Rechouchiado por ti" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Rechouchíos deste chío" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" msgstr "" #: src/view/com/modals/ChangePassword.tsx:253 @@ -6621,8 +7132,8 @@ msgstr "" msgid "Request Code" msgstr "Solicitar código" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Require texto alternativo antes de publicar" @@ -6630,7 +7141,7 @@ msgstr "Require texto alternativo antes de publicar" msgid "Require an email code to sign in to your account." msgstr "Obrigatorio un código de correo para identificarte na túa conta." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Obrigatorio para este provedor" @@ -6642,10 +7153,6 @@ msgstr "Obrigatorio na túa rexión" msgid "Resend" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Reenviar correo" msgid "Resend Verification Email" msgstr "Reenviar correo de verificación" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Código de restablecimento" @@ -6667,8 +7180,8 @@ msgstr "Código de restablecimento" msgid "Reset Code" msgstr "Código de restablecimento" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Restablecer o estado de incorporación" @@ -6687,21 +7200,23 @@ msgstr "Tenta de novo a última acción, que errou" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Reintentar" @@ -6721,19 +7236,19 @@ msgstr "Volve á páxina de inicio" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Volve á páxina anterior" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Gardar" @@ -6762,15 +7276,13 @@ msgstr "Gardar" msgid "Save birthday" msgstr "Gardar aniversario" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Gardar cambios" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Guardar cambios" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Gardar código QR" msgid "Save to my feeds" msgstr "Gardar nas miñas canles" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Canles guardadas" @@ -6802,18 +7314,14 @@ msgstr "Canles guardadas" msgid "Saved to your feeds" msgstr "Guardado nas túas canles" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Guarda os cambios en tu perfil" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Guarda os axustes de recorte da imaxe" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Di ola!" @@ -6826,16 +7334,16 @@ msgstr "Ciencia" msgid "Scroll to top" msgstr "Desprázate cara arriba" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Buscar" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -6861,7 +7369,7 @@ msgstr "Buscar \"{query}\"" msgid "Search for \"{searchText}\"" msgstr "Buscar \"{searchText}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Busca canles que queiras suxerir aos demais." @@ -6877,10 +7385,14 @@ msgstr "" msgid "Search for posts, users, or feeds" msgstr "" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Buscar GIFs" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "" @@ -6890,12 +7402,12 @@ msgstr "" msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Buscar perfís" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Buscar en Tenor" @@ -6903,7 +7415,7 @@ msgstr "Buscar en Tenor" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "" @@ -6912,10 +7424,6 @@ msgstr "" msgid "Security step required" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Requírese un paso de seguridade" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "" @@ -6936,14 +7444,31 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Ver empregos en Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Ver esta guía" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Selecciona unha cor" @@ -6988,7 +7513,7 @@ msgstr "Selecciona unha conta existente" msgid "Select GIF" msgstr "Seleccionar GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Seleccionar GIF \"{0}\"" @@ -6996,6 +7521,11 @@ msgstr "Seleccionar GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "Selecciona durante canto tempo queres silenciar esta palabra." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Seleccionar idioma..." @@ -7004,7 +7534,7 @@ msgstr "Seleccionar idioma..." msgid "Select languages" msgstr "Seleccionar idiomas" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "" @@ -7045,12 +7575,12 @@ msgstr "" msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Elixe en que idiomas desexas que estean os chíos das túas canles. Se non seleccionas ningún, mostraranse en todos os idiomas." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Seleccione a túa data de nacemento" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Seleccione os teus intereses entre as seguintes opcións" @@ -7058,7 +7588,11 @@ msgstr "Seleccione os teus intereses entre as seguintes opcións" msgid "Select your preferred language for translations in your feed." msgstr "A que idioma queres traducir os chíos na túa canle." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "" @@ -7066,17 +7600,9 @@ msgstr "" msgid "Send a neat website!" msgstr "Envía un sitio web interesante!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Enviar correo de confirmación" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Enviar correo" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Enviar correo" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Enviar comentarios" @@ -7095,7 +7621,7 @@ msgstr "Enviar comentarios" msgid "Send message" msgstr "Enviar mensaxe" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "" @@ -7114,20 +7640,20 @@ msgstr "Enviar reporte" msgid "Send report to {0}" msgstr "Enviar reporte a {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Enviar correo de verificación" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Enviar vía mensaxe directa" @@ -7143,7 +7669,7 @@ msgstr "Enderezo do servidor" msgid "Set app icon to {0}" msgstr "Definir a icona da aplicación a {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Establecer aniversario" @@ -7159,13 +7685,57 @@ msgstr "Configura a túa conta" msgid "Sets email for password reset" msgstr "Establece o correo electrónico para restablecer o contrasinal" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Axustes" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "Comparte unha historia xenial!" msgid "Share a fun fact!" msgstr "Comparte un dato curioso!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Compartir de todas as maneiras" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Compartir ligazón" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Compartir Ligazón" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Xanela para compartir ligazón" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "" @@ -7247,8 +7812,8 @@ msgstr "Compartir este paquete de inicio" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Comparte este paquete de iniciación e axuda a xente a unirse á túa comunidade en Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "" msgid "Share your favorite feed!" msgstr "Comparte as túas canles favoritas!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Probador de Preferencias Compartidas" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Comparte o sitio web ligado" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Ver" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Ver texto alternativo" @@ -7303,8 +7864,8 @@ msgstr "" msgid "Show hidden replies" msgstr "Mostrar respostas ocultas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Mostrar menos como este" @@ -7312,55 +7873,63 @@ msgstr "Mostrar menos como este" msgid "Show list anyway" msgstr "Mostrar listaxe de todas as maneiras" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Ver máis" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Mostrar máis como este" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Mostrar respostas silenciadas" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Amosar citas" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Amosar respostas" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Amosar respostas como" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Amosar respostas a xeito de fío" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Ver respostas de xente que segues antes que outras respostas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Mostrar resposta para todo o mundo" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "" @@ -7372,16 +7941,17 @@ msgstr "Mostrar advertencia" msgid "Show warning and filter from feeds" msgstr "Mostrar advertencia e filtrar desde as canles" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Amosa información sobre cando foi creada esta publicación" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "" @@ -7390,14 +7960,15 @@ msgstr "" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "Acceder a unha conta que non está na listaxe" msgid "Sign in to Bluesky or create a new account" msgstr "Inicia sesión en Bluesky ou crea unha nova conta" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Pechar sesión" @@ -7444,8 +8020,8 @@ msgstr "Pechar sesión" msgid "Sign Out" msgstr "Pechar sesión" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Pechar sesión?" @@ -7459,12 +8035,12 @@ msgstr "É necesario iniciar sesión" msgid "Signed in as @{0}" msgstr "Sesión iniciada como @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Contas similares" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Saltar" @@ -7472,12 +8048,11 @@ msgstr "Saltar" msgid "Skip this flow" msgstr "Saltar este flujo" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Máis pequeno" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "" @@ -7490,11 +8065,11 @@ msgstr "Programación" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Algunha outra canle poderiache gustar" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Algunhas persoas poden responder" @@ -7510,10 +8085,11 @@ msgstr "" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "" -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Algo saíu mal" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Produciuse un erro, téntao de novo" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Produciuse un erro, téntao de novo." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Algo saíu mal!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "" @@ -7539,20 +8118,23 @@ msgstr "" msgid "Something wrong? Let us know." msgstr "Ocorreu un erro? Dínolo." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "Sentímolo! A túa sesión caducou. Inicia sesión de novo." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Ordear respostas" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Ordear respostas por" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Ordena as respostas ao mesmo. chío por:" @@ -7579,7 +8161,7 @@ msgstr "Spam; mencións ou respostas excesivas" msgid "Sports" msgstr "Deportes" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "" @@ -7601,9 +8183,9 @@ msgstr "Comeza a engadir xente!" msgid "Start chat with {displayName}" msgstr "Iniciar chat con {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Paquete de inicio" @@ -7611,12 +8193,12 @@ msgstr "Paquete de inicio" msgid "Starter pack by {0}" msgstr "Paquete de inicio de {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Paquete de inicio por <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Paquete de inicio creado por ti" @@ -7638,19 +8220,21 @@ msgstr "Os paquetes de inicio permítenche compartir facilmente as túas canles msgid "Status Page" msgstr "Páxina de estado" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Paso {0} de {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "O almacenamento borrado, cómpre reiniciar a aplicación agora." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Libro de contos" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Enviar apelación" msgid "Submit Appeal" msgstr "Enviar Apelación" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "" @@ -7676,10 +8260,14 @@ msgstr "" msgid "Subscribe" msgstr "Suscribirse" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Suscríbete a @{0} para usar estas etiquetas:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Suscribirse ao etiquetador" @@ -7692,8 +8280,12 @@ msgstr "Suscribirse a este etiquetador" msgid "Subscribe to this list" msgstr "Suscribirse a esta listaxe" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Éxito!" @@ -7705,7 +8297,7 @@ msgstr "" msgid "Suggested Accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Suxerido para ti" @@ -7714,26 +8306,26 @@ msgstr "Suxerido para ti" msgid "Suggestive" msgstr "Suxestivo" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Soporte" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Cambiar de conta" @@ -7742,24 +8334,24 @@ msgstr "Cambiar de conta" msgid "Switch Account" msgstr "Cambiar a outra conta" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Cambiar de contas" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "Cambiar para {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Sistema" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Rexistro do sistema" @@ -7767,6 +8359,18 @@ msgstr "Rexistro do sistema" msgid "Tags only" msgstr "Só etiquetas" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Cóntanos un pouco máis" msgid "Terms" msgstr "Condicións" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Condicións de servizo" @@ -7848,10 +8454,6 @@ msgstr "Campo de entrada de texto" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Grazas! Verificouse correctamente o teu correo electrónico." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Grazas. O teu informe foi enviado." @@ -7864,28 +8466,28 @@ msgstr "Grazas, verificaches correctamente o teu enderezo de correo electrónico msgid "That contains the following:" msgstr "Que contén o seguinte:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Ese alcume xa está en uso." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Non se puido atopar ese paquete de inicio." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Iso é todo, parroquia!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "Iso é todo!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "A conta poderá interactuar contigo despois de desbloqueala." @@ -7900,7 +8502,7 @@ msgstr "A aplicación reiniciarase" msgid "The author of this thread has hidden this reply." msgstr "A persoa autora deste fío ocultou esta resposta." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "A aplicación web de Bluesky" @@ -7920,10 +8522,6 @@ msgstr "A canle de Descubrir" msgid "The Discover feed now knows what you like" msgstr "A canle Discover agora sabe o que che gusta" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "" - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "A experiencia é mellor na aplicación. Descarga Bluesky agora e retomarémolo onde o deixaches." @@ -7944,8 +8542,16 @@ msgstr "Aplicáronse as seguintes etiquetas ao teu contido." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "É posíbel que se eliminase o chío." @@ -7953,9 +8559,10 @@ msgstr "É posíbel que se eliminase o chío." msgid "The Privacy Policy has been moved to <0/>" msgstr "A Política de Privacidade moveuse a <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "O vídeo seleccionado pesa máis de 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "" #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "Movéronse as Condicións de Servizo a" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "O código de verificación que proporcionaches non é válido. Asegúrate de utilizar a ligazón de verificación correcta ou solicita unha nova." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Tema" @@ -7990,14 +8597,14 @@ msgstr "Tema" msgid "There is no time limit for account deactivation, come back any time." msgstr "Non hai límite de tempo para a desactivación da conta, regresa en calquera momento." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Houbo un problema ao conectarse a Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Produciuse un problema ao contactar co servidor" @@ -8006,17 +8613,12 @@ msgstr "Produciuse un problema ao contactar co servidor" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Houbo un problema ao contactar co servidor. Comproba a túa conexión a Internet e téntao de novo." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Produciuse un problema ao contactar co teu servidor" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Houbo un problema ao recuperar as notificacións. Toca aquí para tentalo de novo." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Houbo un problema ao recuperar os chíos. Toca aquí para tentalo de novo." @@ -8037,7 +8639,7 @@ msgstr "Houbo un problema ao recuperar as túas listaxes. Toca aquí para tental msgid "There was an issue fetching your service info" msgstr "Houbo un problema recollendo a túa información no servizo" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Produciuse un problema ao eliminar esta canle. Comproba a túa conexión a Internet e téntao de novo." @@ -8052,9 +8654,9 @@ msgstr "Houbo un problema ao enviar o teu informe. Comproba a túa conexión a i msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Houbo un problema ao actualizar as túas canles. Comproba a túa conexión a Internet e téntao de novo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Houbo un problema ao actualizar as túas canles. Comproba a túa conexi msgid "There was an issue! {0}" msgstr "Houbo un problema! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Houbo un problema! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Houbo un problema. Comproba a túa conexión a Internet e téntao de novo." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Houbo un problema inesperado na aplicación. Avísanos se che pasou isto!" @@ -8089,7 +8691,7 @@ msgstr "Houbo un problema inesperado na aplicación. Avísanos se che pasou isto msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Houbo un alude de novas persoas a Bluesky! Activaremos a túa conta en canto poidamos." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Estas opcións só se aplicarán ao seguinte fío." @@ -8146,7 +8748,7 @@ msgstr "Este contido está aloxado por {0}. Queres activar medios externos?" msgid "This content is not available because one of the users involved has blocked the other." msgstr "Este contido non está dispoñíbel porque unha das persoas implicadas bloqueou a outra." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Este contido non se pode ver sen unha conta Bluesky." @@ -8158,6 +8760,10 @@ msgstr "Esta conversa é cunha conta eliminada ou desactivada. Preme para ver as msgid "This email is already associated with your account." msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Esta función está en versión beta. Podes ler máis sobre as exportacións de repositorios en <0>este blog." @@ -8170,7 +8776,7 @@ msgstr "" msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Esta característica non está dispoñíbel empregando un contrasinal de aplicación. Fai o favor de identificarte co teu contrasinal de usuario." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Esta canle está a recibir moito tráfico e non está dispoñíbel temporalmente. Téntao de novo máis tarde." @@ -8209,11 +8815,11 @@ msgstr "Esta etiqueta foi aplicada pola persoa autora." msgid "This label was applied by you." msgstr "Esta etiqueta foi aplicada por ti." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Este etiquetador non declarou que etiquetas publica e é posíbel que non estea activo." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Esta ligazón lévate ao seguinte sitio web:" @@ -8233,29 +8839,28 @@ msgstr "Esta lista está baleira." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Este servizo de moderación non está disponíbel. Consulta máis detalles a continuación. Se o problema persiste, contáctanos." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Esta publicación declara que foi feita en <0>{0}, pero foi vista por primeira vez por Bluesky en <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Este chío foi eliminado." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Este chío ocultarase das canles e dos fíos. Isto non se pode desfacer." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "A persoa autora deste chío desactivou os chíos de citas." @@ -8263,11 +8868,11 @@ msgstr "A persoa autora deste chío desactivou os chíos de citas." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Esta resposta ordenarase nunha sección oculta na parte inferior do teu fío e silenciará as notificacións para as respostas posteriores, tanto para ti como para os demais." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Este servizo non proporcionou condicións de servizo nin unha política de privacidade." @@ -8275,6 +8880,10 @@ msgstr "Este servizo non proporcionou condicións de servizo nin unha política msgid "This should create a domain record at:" msgstr "Isto debería crear un rexistro de dominio en:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" @@ -8316,16 +8925,18 @@ msgstr "Este persoa non segue a ninguén." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Isto eliminará \"{0}\" das túas palabras silenciadas. Sempre podes engadilo máis tarde." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Isto eliminará @{0} da listaxe de acceso rápido." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Esto eliminará o teu chío desta cita para todas as persoas e substituirase por un marcador de posición." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Opcións de fíos" @@ -8334,24 +8945,27 @@ msgstr "Opcións de fíos" msgid "Thread preferences" msgstr "Preferencias de fíos" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Preferencias de Fíos" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Enfiado" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Modo de fíos" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Preferencias de fíos" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "" @@ -8376,42 +8990,56 @@ msgstr "A quen che gustaría enviar este informe?" msgid "Today" msgstr "Hoxe" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Alternar o menú despregábel" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Activa ou desactiva o contido para persoas adultas" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Arriba" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Tema" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Traducir" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Tendencia" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Vídeos en tendencia" @@ -8428,14 +9056,10 @@ msgstr "Intentar de novo" msgid "TV" msgstr "TV" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Autenticación en dous pasos (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Introduce o teu alcume" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Escribe aquí a túa mensaxe" @@ -8453,7 +9077,7 @@ msgstr "Non é posíbel conectar. Comproba a túa conexión a internet e téntao #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Non se puido contactar co teu servizo. Comproba a túa conexión a Inter msgid "Unable to delete" msgstr "Non se pode eliminar" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Desbloquear" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Desbloquear" @@ -8486,7 +9126,7 @@ msgstr "Desbloquear" msgid "Unblock account" msgstr "Desbloquear conta" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Desbloquear Conta?" @@ -8495,13 +9135,13 @@ msgstr "Desbloquear Conta?" msgid "Unblock list" msgstr "" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Desfacer o rechouchío" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Deixar de seguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Deixa de seguir a {0}" @@ -8523,7 +9163,7 @@ msgstr "" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "No me gusta" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "" @@ -8555,8 +9195,8 @@ msgstr "Activar" msgid "Unmute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Activar a conversa" msgid "Unmute list" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Activar o fío" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Activar o audio do vídeo" @@ -8597,8 +9237,8 @@ msgstr "" msgid "Unpin from home" msgstr "Desfixar do inicio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Desfixar do perfil" @@ -8614,8 +9254,8 @@ msgstr "{0} desfixada do Inicio" msgid "Unpinned from your feeds" msgstr "Desfixouse das túas canles" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "" @@ -8636,7 +9276,7 @@ msgstr "Cancelar a subscrición a esta etiquetadora" msgid "Unsubscribed from list" msgstr "Cancelouse a subscrición da listaxe" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Tipo de vídeo non soportado" @@ -8662,8 +9302,8 @@ msgstr "Actualizar <0>{displayName} nas listaxes" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "" @@ -8676,17 +9316,17 @@ msgstr "Actualizar para {domain}" msgid "Update your email" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Produciuse un erro ao actualizar o anexo da cotización" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Produciuse un erro ao actualizar a visibilidade das respostas" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Actualizando..." @@ -8698,20 +9338,20 @@ msgstr "Carga unha foto no seu lugar" msgid "Upload a text file to:" msgstr "Carga un ficheiro de texto a:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Cargar desde a cámara" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Cargar desde ficheiros" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Cargar desde a biblioteca" msgid "Uploading images..." msgstr "Cargando imaxes..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Cargando miniatura da ligazón..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Cargando vídeo..." @@ -8761,6 +9401,10 @@ msgstr "Usar recomendados" msgid "Use this to sign in to the other app along with your handle." msgstr "Úsao para iniciar sesión noutra aplicación xunto co teu identificador." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Usado por:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Listaxe de persoas actualizada" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Alcume ou enderezo de correo electrónico" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "persoas seguidas por <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Persoas que sigo" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Persoas en \"{0}\"" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "" @@ -8846,11 +9502,11 @@ msgstr "Valor:" msgid "Verification failed, please try again." msgstr "" -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "" @@ -8870,8 +9526,15 @@ msgstr "" msgid "Verify account" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "" @@ -8880,21 +9543,20 @@ msgstr "" msgid "Verify DNS Record" msgstr "Verificar rexistro DNS" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Verificación de correo electrónico" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Verificar o ficheiro de texto" msgid "Verify this account?" msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Verifica o teu correo electrónico" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Versión {appVersion}" +msgid "Version {0}" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Vídeo" @@ -8928,7 +9598,7 @@ msgstr "Vídeo" msgid "Video failed to process" msgstr "Non se puido procesar o vídeo" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Canle de vídeo" @@ -8942,15 +9612,15 @@ msgstr "Vídeo de {0}: {text}" msgid "Video Games" msgstr "Videoxogos" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Vídeo en pausa" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Vídeo en reprodución" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Non se encontrou o vídeo." @@ -8958,11 +9628,11 @@ msgstr "Non se encontrou o vídeo." msgid "Video settings" msgstr "Axustes do video" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Vídeo cargado" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Vídeo: {0}" @@ -8979,11 +9649,11 @@ msgstr "" msgid "View {0}'s avatar" msgstr "Ver o avatar de {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Ver o perfil de {0}" @@ -8991,7 +9661,7 @@ msgstr "Ver o perfil de {0}" msgid "View {displayName}'s profile" msgstr "Ver o perfil de {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Ver o perfil da persoa bloqueada" @@ -9009,7 +9679,6 @@ msgstr "Ver a entrada de depuración" msgid "View details" msgstr "Ver detalles" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Consulta os detalles para informar dunha infracción do copyright" @@ -9022,23 +9691,23 @@ msgstr "Ver fío completo" msgid "View information about these labels" msgstr "Consulta información sobre estas etiquetas" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Ver máis" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Ver perfil" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Ver o avatar" @@ -9054,28 +9723,28 @@ msgstr "" msgid "View users who like this feed" msgstr "Consulta as persoas ás que lles gusta esta canle" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Ver vídeo" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Consulta as túas contas bloqueadas" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Consulta as túas canles e explora máis" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Consulta as túas listaxes de moderación" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Consulta as túas contas silenciadas" @@ -9083,8 +9752,8 @@ msgstr "Consulta as túas contas silenciadas" msgid "View your verifications" msgstr "" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "" @@ -9092,16 +9761,20 @@ msgstr "" msgid "Views video in immersive mode" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "Visitar o sitio" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Volume" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Advirtir contido e filtra desde canles" msgid "Watch now" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "" + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "Non puidemos atopar ningún resultado para ese cancelo." @@ -9128,7 +9809,7 @@ msgstr "Non puidemos atopar ningún resultado para ese cancelo." msgid "We couldn't find any results for that topic." msgstr "Non foi posíbel atopar resultados para ese tema." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Non puidemos cargar esta conversa" @@ -9136,6 +9817,10 @@ msgstr "Non puidemos cargar esta conversa" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Estimamos o {estimatedTime} ata que a túa conta estea lista." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Enviamos outro correo electrónico de verificación a <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "Esperamos que o pases de marabilla. Lembra que Bluesky é:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Quedamos sen chíos das persoas que segues. Aquí tes o último de <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Non puidemos determinar se tes permiso para cargar vídeos. Téntao de novo." @@ -9164,10 +9849,14 @@ msgstr "Non puidemos determinar se tes permiso para cargar vídeos. Téntao de n msgid "We were unable to load your birth date preferences. Please try again." msgstr "Non puidemos cargar as túas preferencias de data de nacemento. Téntao de novo." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "Non puidemos cargar os teus etiquetadores configurados neste momento." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Non puidemos conectarnos. Téntao de novo para continuar configurando a túa conta. Se continúa fallando, podes omitir este fluxo." @@ -9176,7 +9865,7 @@ msgstr "Non puidemos conectarnos. Téntao de novo para continuar configurando a msgid "We will let you know when your account is ready." msgstr "Informarémosche cando a túa conta estea lista." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -9184,6 +9873,22 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "Usarémolo para personalizar a túa experiencia." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Temos problemas de rede, téntao de novo" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Que emoción que esteas aquí!" @@ -9205,15 +9910,15 @@ msgstr "Sentímolo, mais non puidemos resolver esta lista. Se isto persiste, pó msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Sentímolo, mais non puidemos cargar as túas palabras silenciadas neste momento. Téntao de novo." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Sentímolo, mais a túa busca non se puido completar. Téntao de novo nuns minutos." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Sentímolo! Eliminouse o chío ao que estás respondendo." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Sentímolo! Non podemos encontrar a páxina que buscabas." @@ -9222,6 +9927,26 @@ msgstr "Sentímolo! Non podemos encontrar a páxina que buscabas." msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Sentímolo! Só podes subscribirte a vinte etiquetadoras e alcanzaches o límite de vinte." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Xa estás de volta!" @@ -9240,7 +9965,7 @@ msgstr "Como queres chamar ao teu paquete de inicio?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Que hai de novo?" @@ -9256,11 +9981,11 @@ msgstr "En que idioma está este chío?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Que idiomas che gustaría ver nas túas canles algorítmicas?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Quen pode interactuar con este chío?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Quen pode responder" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Vaia!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "Vaites! Non foi posíbel cargar os vídeos en tendencia." @@ -9322,12 +10047,12 @@ msgstr "Por que se debería revisar esta persoa?" msgid "Write a message" msgstr "Escribe unha mensaxe" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Escribe un chío" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Escribe a túa resposta" @@ -9358,11 +10083,11 @@ msgstr "Si, desactivar" msgid "Yes, delete this starter pack" msgstr "Si, eliminar este paquete de inicio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Si, desprenderse" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Si, ocultar" @@ -9378,6 +10103,10 @@ msgstr "Onte" msgid "You" msgstr "Ti" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "" @@ -9386,6 +10115,10 @@ msgstr "" msgid "You are creating an account on" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Estás en liña." @@ -9403,7 +10136,7 @@ msgstr "" msgid "You are not allowed to go live" msgstr "" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Non tes permiso para cargar vídeos." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "" @@ -9441,10 +10173,18 @@ msgstr "Tamén podes descubrir novas canles personalizadas para seguir." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Tamén podes desactivar temporalmente a túa conta e reactivala en calquera momento." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Podes continuar as conversas en curso independentemente da configuración que elixas." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Agora podes iniciar sesión co teu novo contrasinal." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Podes reactivar a túa conta para continuar iniciando sesión. O teu perfil e os chíos serán visíbeis para outras persoas." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "" #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Podes actualizar posteriormente desde as túas preferencias." @@ -9472,7 +10212,7 @@ msgstr "Non tes a ninguén que te siga." msgid "You don't follow any users who follow @{name}." msgstr "Non segues a ningunha persoa que siga a @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "" @@ -9480,15 +10220,15 @@ msgstr "" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Aínda non tes ningún código de convite! Enviarémosche algúns cando teñas un pouco máis de tempo en Bluesky." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Non tes ningunha canle fixada." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Non tes canles gardadas." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Bloqueaches á persoa autora ou fuches bloqueado por ela." @@ -9502,6 +10242,10 @@ msgstr "Bloqueaches a esta persoa" msgid "You have blocked this user. You cannot view their content." msgstr "Bloqueaches a esta persoa. Non podes ver o seu contido." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Silenciaches esta conta." msgid "You have muted this user" msgstr "Silenciaches esta persoas" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Non tes ningunha conversa. Comeza a parolar!" @@ -9547,7 +10291,7 @@ msgstr "Aínda non bloqueaches ningunha conta. Para bloquear unha conta, vai ao msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Aínda non silenciaches ningunha conta. Para silenciar unha conta, vai ao seu perfil e selecciona \"Silenciar conta\" no menú da súa conta." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Mimá! Chegaches ao final" @@ -9572,6 +10316,10 @@ msgstr "Aínda non silenciaches ningunha palabra ou etiqueta" msgid "You hid this reply." msgstr "Ocultaches esta resposta." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Podes apelar as etiquetas non propias se consideras que se colocaron por erro." @@ -9592,7 +10340,7 @@ msgstr "Só podes engadir ata 3 canles" msgid "You may only select up to 4 images" msgstr "Só podes seleccionar ata 4 imaxes" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "" @@ -9600,6 +10348,14 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Debes seguir polo menos a outras sete persoas para xerar un paquete de inicio." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Debes conceder acceso á túa biblioteca de fotos para gardar un código QR" @@ -9608,6 +10364,11 @@ msgstr "Debes conceder acceso á túa biblioteca de fotos para gardar un código msgid "You must select at least one labeler for a report" msgstr "Debes seleccionar polo menos unha etiquetadora para un informe" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "" @@ -9616,7 +10377,7 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "Anteriormente desactivaches a @{0}." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "" @@ -9628,16 +10389,20 @@ msgstr "" msgid "You reacted {0} to {1}" msgstr "" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Sairás da sesión de todas as túas contas." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Xa non recibirás notificacións deste fío" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Agora recibirás notificacións deste fío" @@ -9657,11 +10422,11 @@ msgstr "Ti: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Ti: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Seguirás a máis persoas e as súas canles suxeridas unha vez remates de crear a túa conta!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Seguirás a persoas suxeridas unha vez remates de crear a túa conta! " @@ -9673,9 +10438,9 @@ msgstr "Seguirás a estas contas e a {0} máis" msgid "You'll follow these people right away" msgstr "Seguirás a estas contas de inmediato" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Recibirás un correo electrónico en <0>{0} para verificar que es ti. " +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "Escolleches ocultar unha palabra ou etiqueta dentro deste chío." msgid "You've found some people to follow" msgstr "Atopaches algunhas contas a seguir" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Chegaches ao final das túas canles! Busca máis contas que seguir." @@ -9711,19 +10480,23 @@ msgstr "Chegaches ao final das túas canles! Busca máis contas que seguir." msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Chegaches ao teu límite diario de carga de vídeos (demasiados bytes por hoxe)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Chegaches ao teu límite diario de carga de vídeos (demasiados vídeos por hoxe)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Xa non hai máis vídeos para ver. Igual é bo momento para descansar un anaco?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "A túa conta" @@ -9735,7 +10508,7 @@ msgstr "A túa conta foi eliminada." msgid "Your account has been suspended" msgstr "A túa conta foi suspendida" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "A túa conta aínda non ten suficiente antigüidade para subir vídeos. Por favor, inténtao de novo máis tarde." @@ -9751,11 +10524,11 @@ msgstr "A túa conta violou os <0>Termos do Servizo da aplicación Bluesky Socia msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "A túa apelación foi enviada. Se a túa apelación se tiver en conta, enviaráseche un correo." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "A túa data de nacemento" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "O teu navegador non soporta este formato de vídeo. Por favor, proba cun diferente." @@ -9771,13 +10544,15 @@ msgstr "" msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "O teu actual nome de usuario <0>{0} quedará reservado automaticamente para ti. Podes volver a el cando queiras desde esta conta." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "O teu enderezo electrónico parece non ser válido." @@ -9786,15 +10561,11 @@ msgstr "O teu enderezo electrónico parece non ser válido." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "O teu enderezo electrónico aínda non foi verificado. Pola túa seguridade, recomendámosche que o verifiques." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "O teu primeiro gústame!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "" @@ -9806,19 +10577,15 @@ msgstr "A seguinte canle está baleira! Sigue a máis persoas para ver o que est msgid "Your full handle will be <0>@{0}" msgstr "O teu alcume será <0>@{0} " -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "O teu alcume completo será <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "" @@ -9835,15 +10602,15 @@ msgstr "As túas palabras silenciadas" msgid "Your password has been changed successfully!" msgstr "O teu contrasinal cambiouse correctamente." -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "O teu contrasinal debe ter polo menos 8 caracteres." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Chío publicado" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "As túas publicacións foron publicadas" @@ -9851,15 +10618,19 @@ msgstr "As túas publicacións foron publicadas" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Os teus chíos, o que che gusta e a quen bloqueas son públicos. Ninguén pode ver a quen silencias." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "O teu perfil, chíos, canles e listaxes non estarán visíbeis para outras persoas de Bluesky. Podes reactivar a túa conta en calquera momento iniciando sesión." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Resposta publicada" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -9867,7 +10638,7 @@ msgstr "" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "O teu informe enviarase ao Servizo de moderación de Bluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "" diff --git a/src/locale/locales/hi/messages.po b/src/locale/locales/hi/messages.po index e7da192e88..0d3182cff5 100644 --- a/src/locale/locales/hi/messages.po +++ b/src/locale/locales/hi/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: hi\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: Hindi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,7 +27,7 @@ msgstr "(सक्रिय)" msgid "(contains embedded content)" msgstr "(एम्बेडेड सामग्री मौजूद है)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(कोई ईमेल नहीं है)" @@ -79,9 +79,9 @@ msgstr "{0, plural, other {# रीपोस्ट}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, other {# सेकंड}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -90,17 +90,18 @@ msgstr "" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {फ़ॉलोअर} other {फ़ॉलोअर}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {फ़ॉलोइंग} other {फ़ॉलोइंग}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, other {पसंद}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, other {पसंद}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, other {पोस्ट}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, other {क्वोट}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, other {रीपोस्ट}}" @@ -135,6 +138,10 @@ msgstr "<0><1>टैगमें{0}" msgid "{0} <0>in <1>text & tags" msgstr "<0><1>टेक्स्ट और टैगमें{0}" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "" @@ -143,11 +150,15 @@ msgstr "" msgid "{0} is not a valid URL" msgstr "" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} लोग इस हफ़्ते शामिल हुए" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{1} का {0}" @@ -164,8 +175,16 @@ msgstr "" msgid "{0} reacted {1} to {2}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "{0} का अवतार" @@ -197,12 +216,12 @@ msgstr "{0}मि" msgid "{0}s" msgstr "{0}से" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "{displayName} का स्टार्टर पैक" @@ -214,164 +233,163 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, other {मिनट}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} और <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपको फ़ॉलो किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} और <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपके कस्टम फ़ीड को पसंद किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} और <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपके पोस्ट को पसंद किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} और <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपके पोस्ट को रीपोस्ट किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} और <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपके स्टार्टर पैक से साइन अप किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} ने आपको फ़ॉलो किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} ने आपको वापस फ़ॉलो किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} ने आपके कस्टम फ़ीड को पसंद किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} ने आपके पोस्ट को पसंद किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} ने आपके पोस्ट को रीपोस्ट किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} ने आपके स्टार्टर पैक से साइन अप किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} और {additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपको फ़ॉलो किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} और {additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपके कस्टम फ़ीड को पसंद किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} और {additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपके पोस्ट को पसंद किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} और {additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपके पोस्ट को रीपोस्ट किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} और {additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपके स्टार्टर पैक से साइन अप किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "ने आपको फ़ॉलो किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} ने आपको वापस फ़ॉलो किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} ने आपके कस्टम फ़ीड को पसंद किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} ने आपके पोस्ट को पसंद किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} ने आपके पोस्ट को रीपोस्ट किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} ने आपके स्टार्टर पैक से साइन अप किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} फ़ॉलोइंग" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "{handle} को संदेश भेजा नहीं जा सकता" @@ -392,7 +410,7 @@ msgstr "" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -432,12 +450,12 @@ msgstr "" msgid "+{computedTotal}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, और {2, plural, other {# अन्य}} आपके स्टार्टर पैक में शामिल हैं" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, और {2, plural, other {# अन्य}} आपके स्टार्टर पैक में शामिल हैं" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {फ़ॉलोअर} other {फ़ॉल msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {फ़ॉलोइंग} other {फ़ॉलोइंग}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} और<1> <2>{1} आपके स्टार्टर पैक में शामिल हैं" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} आपके स्टार्टर पैक में शामिल है" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} सदस्य" @@ -466,11 +484,11 @@ msgstr "<0>{0} सदस्य" msgid "<0>{date} at {time}" msgstr "<0>{date} को {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>प्रयोगात्मत्क: इस प्राथमिकता को सक्षम करने से, आपको केवल फ़ॉलो किए गए उपयोगकर्ताओं से जवाब और उल्लेख की अधिसूचनाएँ मिलेंगी। हम समय के साथ यहाँ और नियंत्रण जोड़ते रहेंगे।" +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>आप और<1> <2>{0} आपके स्टार्टर पैक में शामिल हैं" @@ -503,10 +521,14 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "परिचय" @@ -524,25 +546,25 @@ msgstr "" msgid "Accept Request" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "सुलभता" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "सुलभता के सेटिंग" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "खाता" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "खाता फ़ॉलो किया गया" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "खाता म्यूट किया गया" msgid "Account Muted by List" msgstr "सूची द्वारा खाता म्यूट किया गया" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "खाते के विकल्प" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "जल्द पहुँच से खाता हटाया गया" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "खाता अनफ़ॉलो किया गया" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "खाता अनम्यूट किया गया" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "जोड़ें" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "आगे बढ्ने के लिए और {0} जोड़ें " @@ -634,8 +666,8 @@ msgstr "खाता जोड़ें" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "विवरण जोड़ें" msgid "Add alt text (optional)" msgstr "विवरण जोड़ें (वैकल्पिक)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "एक और खाता जोड़ें" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "एक और पोस्ट जोड़ें" @@ -670,8 +702,8 @@ msgstr "ऐफ पासवर्ड जोड़ें" msgid "Add emoji reaction" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "" @@ -683,7 +715,7 @@ msgstr "" msgid "Add muted words and tags" msgstr "म्यूट किए गए शब्द और टैग जोड़ें" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "नया पोस्ट जोड़ें" @@ -704,7 +736,7 @@ msgstr "" msgid "Add recommended feeds" msgstr "अनुशंसित फ़ीड जोड़ें" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "अपने स्टार्टर पैक में कुछ फ़ीड जोड़ें" @@ -725,10 +757,6 @@ msgstr "आपके फ़ीड मे यह फ़ीड जोड़ें" msgid "Add to lists" msgstr "सूचियों में जोड़ें" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "मेरे फ़ीड में जोड़ें" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "" @@ -738,11 +766,11 @@ msgstr "" msgid "Added to list" msgstr "सूची में जोड़ा गया" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "मेरे फीड में जोड़ा गया" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "" @@ -750,18 +778,18 @@ msgstr "" msgid "Adult" msgstr "वयस्क" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "वयस्क सामग्री" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "वयस्क सामग्री को केवल <0>bsky.app वेबसाइट पर सक्षम किया जा सकता है।" -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "वयस्क सामग्री अक्षम है।" @@ -770,16 +798,32 @@ msgstr "वयस्क सामग्री अक्षम है।" msgid "Adult Content labels" msgstr "वयस्क सामग्री लेबल" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "विकसित" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "सभी" @@ -793,7 +837,7 @@ msgstr "सारे खाते फ़ॉलो किए गए हैं!" msgid "All languages" msgstr "" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "एक ही जगह पर, आपके सभी सहेजे गए फीड।" @@ -802,16 +846,21 @@ msgstr "एक ही जगह पर, आपके सभी सहेजे msgid "Allow access to your direct messages" msgstr "आपके सीधे संदेशों तक पहुँच दें" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "इनसे नए संदेश आने की अनुमति दें:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "क्वोट पोस्ट की अनुमति दें" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "इन्हें जवाब देने की अनुमति दें:" @@ -828,13 +877,13 @@ msgstr "पहले से कोड है?" msgid "Already signed in as @{0}" msgstr "@{0} द्वारा पहले से साइन इन किया गया है" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "वैकल्पिक पाठ" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "वैकल्पिक पाठ" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "वैकल्पिक पाठ अंधे और कम दृश्य लोगों के लिए छवियों का वर्णन करता है, और सब को संदर्भ देने में मदद करता है।" @@ -861,27 +910,19 @@ msgstr "" msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "{0} को ईमेल भेजा गया है। इसमें एक पुष्टिकरण कोड मौजूद है जिसे आप नीचे दर्ज कर सकते हैं।" -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "ईमेल भेजा गया है! ईमेल में मौजूद पुष्टिकरण कोड को नीचे दर्ज करें।" - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "त्रुटि हुई" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "त्रुटि हुई" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "वीडियो कंप्रेशन के दौरान त्रुटि हुई।" -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "" @@ -889,11 +930,11 @@ msgstr "" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "आपके स्टार्टर पैक बनाने में त्रुटि हुई। फिर से प्रयास करें?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "वीडियो लोड करते समय त्रुटि हुई। बाद में फिर प्रयास करें।" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "वीडियो लोड करते समय में त्रुटि हुई। फिर से प्रयास करें।" @@ -910,7 +951,7 @@ msgstr "वीडियो चुनने के समय त्रुटि msgid "An error occurred while trying to follow all" msgstr "सभी को फ़ॉलो करते समय त्रुटि हुई" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "वीडियो अपलोड करते समय त्रुटि हुई।" @@ -934,8 +975,8 @@ msgstr "बातचीत खोलते समय समस्या हु #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "अज्ञात त्रुटि हुई" msgid "an unknown labeler" msgstr "अज्ञात लेबलकर्ता" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "और" @@ -963,10 +1004,14 @@ msgstr "और" msgid "Animals" msgstr "प्राणि" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "एनिमेटेड GIF" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "" @@ -980,7 +1025,13 @@ msgstr "असामाजिक व्यवहार" msgid "Anybody can interact" msgstr "कोई भी संपर्क कर सकता है" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "ऐप पासवर्ड नाम में केवल अक् msgid "App password names must be at least 4 characters long" msgstr "ऐप पासवर्ड नाम में कम से कम 4 वर्ण होने चाहिए।" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "ऐप पासवर्ड" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "ऐप पासवर्ड" @@ -1053,10 +1104,10 @@ msgstr "" msgid "Appeal this decision" msgstr "इस निर्णय पर अपील करें" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "दिखावट" @@ -1065,12 +1116,20 @@ msgstr "दिखावट" msgid "Apply default recommended feeds" msgstr "डिफ़ॉल्‍ट अनुशंसित फ़ीड लगाएँ" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "{0} से पुरालेखित" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "पुरालेखित पोस्ट" @@ -1078,7 +1137,7 @@ msgstr "पुरालेखित पोस्ट" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "क्या आप सच में ऐप पासवर्ड \"{0}\" को मिटाना चाहते हैं?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "क्या आप सच में इस संदेश को मिटाना चाहते हैं? संदेश आपके लिए मिट जाएगी, पर दूसरे प्रतिभागी के लिए नहीं।" @@ -1098,19 +1157,15 @@ msgstr "" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "क्या आप सच में इस बातचीत को छोड़ना चाहते हैं? आपके संदेश आपके लिए मिट जाएँगे, पर दूसरे प्रतिभागी के लिए नहीं।" -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "क्या आप सच में {0} को अपने फ़ीड से हटाना चाहते हैं?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "क्या आप सच में इसे अपने फ़ीड से हटाना चाहते हैं?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "क्या आप सच में इस ड्राफ़्ट को ख़ारिज करना चाहेंगे?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "क्या आप सच में इस पोस्ट को ख़ारिज करना चाहेंगे?" @@ -1131,29 +1186,26 @@ msgstr "कला" msgid "Artistic or non-erotic nudity." msgstr "कलात्मक या गैर-कामुक नग्नता।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "कम से कम 3 वर्ण" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "स्वतः चालू के विकल्प को <0>सामग्री और मीडिया सेटिंग में रखा गया है।" - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "वीडियो और GIF स्वतः चलाएँ" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "वीडियो और GIF स्वतः चलाएँ" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "वापस" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "" @@ -1195,28 +1247,44 @@ msgstr "स्टार्टर पैक बनाने से पहले, msgid "Before you can accept this chat request, you must first verify your email." msgstr "" +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "जन्मदिन" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "अवरुद्ध करें" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "अवरुद्ध करें" msgid "Block account" msgstr "खाता अवरुद्ध करें" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "खाता अवरुद्ध करें?" @@ -1262,20 +1330,20 @@ msgstr "उपयोगकर्ता को अवरुद्ध करें msgid "Block User" msgstr "उपयोगकर्ता को अवरुद्ध करें" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "अवरुद्ध" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "अवरुद्ध किए गए खाते" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "अवरुद्ध किए गए खाते" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "अवरुद्ध खाते आपके थ्रेड में जवाब नहीं दे सकते, आपका उल्लेख नहीं कर सकते, या अन्यथा आपसे संपर्क नहीं कर सकते।" @@ -1284,11 +1352,11 @@ msgstr "अवरुद्ध खाते आपके थ्रेड मे msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "अवरुद्ध खाते आपके थ्रेड में उत्तर नहीं दे सकते, आपका उल्लेख नहीं कर सकते, या अन्यथा आपसे संपर्क नहीं कर सकते। आप उनकी सामग्री नहीं देख सकेंगे और उन्हें आपकी सामग्री देखने से रोका जाएगा।" -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "अवरुद्ध पोस्ट।" -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "अवरुद्ध करने पर भी यह लेबलकर्ता आपके खाते पर लेबल लगा सकता है।" @@ -1309,11 +1377,12 @@ msgstr "ब्लॉग" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky दावा किए गए तिथि के प्रामाणिकता की पुष्टि नहीं कर सकता।" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1347,6 +1416,14 @@ msgstr "Bluesky लॉग आउट उपयोगकर्ताओं को msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "छवि धुंधला करें और फ़ीड से फ़ि msgid "Books" msgstr "किताबें" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "एक्सप्लोर पृष्ठ पर और खाते देखें" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "एक्सप्लोर पृष्ठ पर और सूची देखें" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "और सुझाव देखें" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "एक्सप्लोर पृष्ठ पर और सुझाव देखें" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "व्यवसाय" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "{0} के द्वारा" @@ -1428,15 +1502,23 @@ msgstr "{0} के द्वारा" msgid "By <0>{0}" msgstr "<0>{0} के द्वार" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "खाता बनाने से आप <0>गोपनियता नीति से सहमत हैं।" -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "खाता बनाने से आप <0>सेवा की शर्तें और <0>गोपनियता नीति से सहमत हैं।" -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "खाता बनाने से आप <0>सेवा की शर्तों से सहमत हैं।" @@ -1448,14 +1530,17 @@ msgstr "" msgid "Camera" msgstr "कैमरा" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "कैमरा" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "रद्द करें" @@ -1500,11 +1582,7 @@ msgstr "खाता मिटाना रद्द करें" msgid "Cancel image crop" msgstr "छवि क्रॉप रद्द करें" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "प्रोफ़ाइल संपादन मत करो" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "क्वोट पोस्ट रद्द करें" @@ -1516,14 +1594,10 @@ msgstr "" msgid "Cancel search" msgstr "खोज रद्द करें" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "लिंक वेबसाइट के खोलने को रद्द करता है" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "अवरुद्ध उपयोगकर्ता से संपर्क नहीं कर सकते" @@ -1553,17 +1627,12 @@ msgstr "ऐप आइकॉन को \"{0}\" में बदलें" msgid "Change app language" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "ईमेल पता बदलें" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "हैंडल बदलें" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "" @@ -1579,14 +1648,6 @@ msgstr "पोस्ट भाषा को {suggestedLanguageName} करें msgid "Change report reason" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "मेरा ईमेल बदलें" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "अपना ईमेल पता बदलें" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "" @@ -1596,10 +1657,15 @@ msgstr "" msgid "Changes hosting provider" msgstr "" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "बातचीत" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "बातचीत म्यूट किया गया" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "बातचीत सेटिंग" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "बातचीत सेटिंग" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "बातचीत अनम्यूट किया गया" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "" @@ -1661,7 +1738,7 @@ msgstr "नीचे दर्ज करने के लिए पुष्ट msgid "Choose domain verification method" msgstr "डोमेन सत्यापन विधि चुनें" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "फ़ीड चुनें" @@ -1669,7 +1746,7 @@ msgstr "फ़ीड चुनें" msgid "Choose for me" msgstr "मेरे लिए चुनें" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "लॉग चुनें" @@ -1685,23 +1762,23 @@ msgstr "इस रंग को अपना अवतार के रूप msgid "Choose your account provider" msgstr "" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "आपका अपना टाइमलाइन चुनें! समुदाय द्वारा बनाए गए फ़ीड आपको पसंदीदा सामग्री ढूँढने में सहायता करते हैं।" -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "अपना पासवर्ड चुनें" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "आपका उपयोगकर्ता हैंडल" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "सभी स्टोरेज डेटा खाली करें" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "सभी स्टोरेज डेटा खाली करें (इसके बाद फिर से खोलें)" @@ -1714,23 +1791,27 @@ msgstr "" msgid "Clear search query" msgstr "खोज क्वेरी खाली करें" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "यहाँ क्लिक करें" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "इस पोस्ट के क्वोट पोस्ट अक्षम करने के लिए क्लिक करें।" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "इस पोस्ट के क्वोट पोस्ट सक्षम करने के लिए क्लिक करें।" @@ -1750,14 +1831,16 @@ msgstr "जलवायु" msgid "Clip 🐴 clop 🐴" msgstr "ठक 🐴 ठक 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "ठक 🐴 ठक 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "बंद करें" @@ -1789,13 +1876,15 @@ msgstr "सूचना बंद करें" msgid "Close bottom drawer" msgstr "निचला ड्रॉयर बंद करो" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "डायलॉग बंद करें" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "" @@ -1804,7 +1893,7 @@ msgstr "" msgid "Close emoji picker" msgstr "इमोजी चयन बंद करें" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "GIF डायलॉग बंद करें" @@ -1822,7 +1911,7 @@ msgstr "छवि बंद करें" msgid "Close menu" msgstr "" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "यह डायलॉग बंद करें" @@ -1830,7 +1919,7 @@ msgstr "यह डायलॉग बंद करें" msgid "Closes password update alert" msgstr "पासवर्ड अपडेट सूचना बंद करता है" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "" @@ -1843,16 +1932,16 @@ msgstr "" msgid "Closes viewer for header image" msgstr "हेडर छवि का दर्शक बंद करता है" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "उपयोगकर्ताओं की सूची को संक्षिप्त करें" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "किसी अधिसूचना के उपयोगकर्ताओं की सूची को संक्षिप्त करता है" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "रंग मोड" @@ -1870,7 +1959,8 @@ msgstr "हास्य" msgid "Comics" msgstr "कॉमिक" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "समुदाय दिशानिर्देश" @@ -1879,38 +1969,34 @@ msgstr "समुदाय दिशानिर्देश" msgid "Complete onboarding and start using your account" msgstr "समाप्त करें और खाते का उपयोग शुरू करें" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "चुनौती पूरी करें" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "नया पोस्ट बनाएँ" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "जवाब लिखें" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "वीडियो कंप्रेस हो रहा है..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "{name} श्रेणी के लिए सामग्री फ़िल्टर करने की सेटिंग व्यवस्थित करें" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "<0>मॉडरेशन सेटिंग में व्यवस्थित।" -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "सामग्री भाषा सेटिंग की पुष msgid "Confirm delete account" msgstr "खाते को मिटाने की पुष्टि करें" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "अपने आयु की पुष्टि करें" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "अपने जन्मतिथि की पुष्टि करें" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "अपने जन्मतिथि की पुष्टि कर msgid "Confirmation code" msgstr "पुष्टिकरण कोड" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "पुष्टिकरण कोड" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "कनेक्ट किया जा रहा..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "सहायता से संपर्क करें" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "सामाग्री और मीडिया" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "सामग्री और मीडिया" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "सामग्री और मीडिया" @@ -1977,7 +2069,8 @@ msgstr "सामग्री और मीडिया" msgid "Content Blocked" msgstr "सामग्री अवरुद्ध" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "सामग्री फ़िल्टर" @@ -2006,10 +2099,12 @@ msgstr "सामग्री चेतावनी" msgid "Content warnings" msgstr "सामग्री चेतावनियाँ" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "संदर्भ मेनू पृष्ठभूमि, मेनू बंद करने के लिए क्लिक करें " +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "जारी रखें" msgid "Continue as {0} (currently signed in)" msgstr "(अभी साइन इन किया गया) {0} के रूप मे जारी रखें" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "थ्रेड को जारी रखें..." @@ -2029,6 +2129,10 @@ msgstr "थ्रेड को जारी रखें..." msgid "Continue to next step" msgstr "अगले चरण पर जाएँ" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "कॉपी की गई" msgid "Copied build version to clipboard" msgstr "बिल्ड संस्कारण क्लिपबोर्ड पर कॉपी की गई" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "" msgid "Copy" msgstr "कॉपी करें" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "ऐप पासवर्ड कॉपी करें" @@ -2087,8 +2187,8 @@ msgstr "ऐप पासवर्ड कॉपी करें" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "" @@ -2120,10 +2220,10 @@ msgstr "लिंक कॉपी करें" msgid "Copy link to list" msgstr "सूची पर लिंक कॉपी करें" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "पोस्ट की लिंक कॉपी करें" @@ -2136,18 +2236,18 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "संदेश पाठ कॉपी करें" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "पोस्ट पाठ कॉपी करें" @@ -2159,11 +2259,25 @@ msgstr "QR कोड कॉपी करें" msgid "Copy TXT record value" msgstr "TXT रिकॉर्ड मूल्य कॉपी करें " -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "कॉपीराइट नीति" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "बातचीत म्यूट नहीं किया जा स msgid "Could not process your video" msgstr "आपका वीडियो प्रोसेस नहीं किया जा सका" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "बनाएँ" @@ -2195,7 +2317,7 @@ msgstr "स्टार्टर पैक के लिए QR कोड बन #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "स्टार्टर पैक बनाएँ" @@ -2205,21 +2327,22 @@ msgstr "मेरे लिए स्टार्टर पैक बनाए #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "साइन अप करें" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "खाता बनाएँ" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "खाता बनाएँ" @@ -2241,7 +2364,7 @@ msgstr "एक और बनाएँ" msgid "Create new account" msgstr "नया खाता बनाएँ" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "{0} के लिए शिकायत लिखें" @@ -2268,7 +2391,7 @@ msgstr "कस्टम" msgid "Customization options" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "चुनें कि इस पोस्ट से कौन संपर्क कर सकता है।" @@ -2278,12 +2401,12 @@ msgstr "" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "अँधेरा" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "अँधेरा" @@ -2292,21 +2415,21 @@ msgstr "अँधेरा" msgid "Dark mode" msgstr "अँधेरा मोड" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "अँधेरा थीम" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "जन्मतिथि" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "खाता निष्क्रिय करें" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "मॉडरेशन डिबग करें" @@ -2314,7 +2437,7 @@ msgstr "मॉडरेशन डिबग करें" msgid "Debug panel" msgstr "पैनल डिबग करें" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "डिफ़ॉल्‍ट" @@ -2322,8 +2445,8 @@ msgstr "डिफ़ॉल्‍ट" msgid "Default icons" msgstr "डिफ़ॉल्‍ट आइकॉन" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "डिफ़ॉल्‍ट आइकॉन" msgid "Delete" msgstr "मिटाएँ" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "खाता मिटाएँ" @@ -2355,7 +2478,7 @@ msgstr "ऐप पासवर्ड मिटाएँ?" msgid "Delete chat" msgstr "" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "बातचीत घोषणा रेकॉर्ड मिटाएँ" @@ -2370,7 +2493,7 @@ msgstr "" msgid "Delete Conversation" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "मेरे लिए मिटाएँ" @@ -2378,11 +2501,11 @@ msgstr "मेरे लिए मिटाएँ" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "संदेश मिटाएँ" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "मेरे लिए संदेश मिटाएँ" @@ -2390,9 +2513,9 @@ msgstr "मेरे लिए संदेश मिटाएँ" msgid "Delete my account" msgstr "मेरा खाता मिटाएँ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "पोस्ट मिटाएँ" @@ -2409,11 +2532,11 @@ msgstr "स्टार्टर पैक मिटाएँ?" msgid "Delete this list?" msgstr "यह सूची मिटाएँ?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "यह पोस्ट मिटाएँ?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "मिटाया गया" @@ -2422,15 +2545,20 @@ msgstr "मिटाया गया" msgid "Deleted Account" msgstr "मिटाया गया खाता" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "यह पोस्ट मिट दी गई है।" #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "विवरण" @@ -2447,12 +2575,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "विस्तृत वैकल्पिक पाठ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "क्वोट अलग करें" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "क्वोट पोस्ट अलग करें" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "डेवलपर मोड सक्षम" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "डेवलपर विकल्प" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "डायलॉग: चुनें कि इस पोस्ट से कौन संपर्क कर सकता है" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "मंद" @@ -2492,27 +2620,27 @@ msgstr "" msgid "Disable Email 2FA" msgstr "ईमेल 2FA अक्षम करें" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "कंपन फीडबैक अक्षम करें" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "उपशीर्षक अक्षम करें" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "अक्षम" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "ख़ारिज करें" @@ -2520,11 +2648,11 @@ msgstr "ख़ारिज करें" msgid "Discard changes?" msgstr "बदलाव ख़ारिज करें?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "ड्राफ़्ट ख़ारिज करें?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "पोस्ट ख़ारिज करें?" @@ -2542,7 +2670,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "नए कस्टम फ़ीड की खोज करें" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "नए फ़ीड की खोज करें" @@ -2550,7 +2678,7 @@ msgstr "नए फ़ीड की खोज करें" msgid "Dismiss" msgstr "ख़ारिज करें" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "त्रुटि ख़ारिज करें" @@ -2562,26 +2690,26 @@ msgstr "शुरुआती गाइड ख़ारिज करें" msgid "Dismiss interests" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "वैकल्पिक पाठ बटन को बड़े आकार मे दिखाएँ" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "प्रदर्शन का नाम" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "प्रदर्शन का नाम" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "डिस्प्ले नाम बहुत अधिक लंबा है" @@ -2603,15 +2731,11 @@ msgstr "फ़ॉलो किए गए उपयोगकर्ताओं msgid "Does not include nudity." msgstr "नग्नता शामिल नहीं है" -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "हाइफ़न से शुरू या अंत नहीं होता" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "डोमेन सत्यापित!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -2619,6 +2743,15 @@ msgstr "" msgid "Don't see an email? <0>Click here to resend." msgstr "" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "" msgid "Double tap to close the dialog" msgstr "डायलॉग बंद करने के लिए दो बार दबाएँ" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "" @@ -2673,7 +2806,7 @@ msgstr "Bluesky डाउनलोड करें" msgid "Download CAR file" msgstr "CAR फ़ाइल डाउनलोड करें " -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "छवि जोड़ने के लिए उतारें" @@ -2689,18 +2822,10 @@ msgstr "उदाहरण के लिए, राम" msgid "e.g. Alice Lastname" msgstr "उदाहरण के लिए, राम उपनाम" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "उदाहरण के लिए, राम कुमार" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "उदाहरण के लिए, ramkumar.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "उदाहरण के लिए, कलाकार, पशुप्रेमी, और नियमित पाठक" - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "उदाहरण के लिए, कलात्मक नग्नता" @@ -2725,10 +2850,11 @@ msgstr "उदाहरण के लिए, उपयोगकर्ता ज msgid "Each code works once. You'll receive more invite codes periodically." msgstr "प्रत्येक कोड एक बार काम करता है। आपको समय-समय पर अधिक आमंत्रण कोड प्राप्त होंगे।" -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "संपादित करें" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "संपादित करें" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "अवतार संपादित करें" @@ -2749,12 +2875,12 @@ msgstr "फ़ीड संपादित करें" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "छवि संपादित करें" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "संपर्क सेटिंग संपादित करें" @@ -2776,33 +2902,33 @@ msgstr "" msgid "Edit Moderation List" msgstr "मॉडरेशन सूची संपादित करें" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "मेरे फ़ीड संपादित करें" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "मेरी प्रोफ़ाइल संपादित करें" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "लोग संपादित करें" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "पोस्ट संपर्क सेटिंग संपादित करें" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "मेरी प्रोफ़ाइल संपादित करें" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "मेरी प्रोफ़ाइल संपादित करें" @@ -2814,19 +2940,11 @@ msgstr "स्टार्टर पैक संपादित करें" msgid "Edit User List" msgstr "उपयोगकर्ता सूची संपादित करें" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "संपादित करें कि कौन जवाब दे सकता है" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "अपना डिस्प्ले नाम संपादित करें" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "अपना प्रोफ़ाइल विवरण संपादित करें" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "अपना स्टार्टर पैक संपादित करें" @@ -2839,8 +2957,8 @@ msgstr "शिक्षा" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "इस सूची के रचयिता ने आपको अवरुद्ध किया है या आपने रचयिता को अवरुद्ध किया है।" -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "ईमेल" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "ईमेल 2FA अक्षम करें" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "ईमेल 2FA सक्षम" @@ -2865,10 +2983,6 @@ msgstr "ईमेल फिर से भेजा गया" msgid "Email sent!" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "" @@ -2883,8 +2997,8 @@ msgstr "HTML कोड एंबेड करें" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "पोस्ट एंबेड करें" @@ -2892,7 +3006,7 @@ msgstr "पोस्ट एंबेड करें" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "इस पोस्ट को अपने वेबसाइट में एंबेड करें। नीचे लिखे कोड को कॉपी करें और अपने वेबसाइट के HTML कोड में चिपकाएँ।" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "एम्बेडेड वीडियो प्लेयर" @@ -2906,7 +3020,7 @@ msgstr "सक्षम करें" msgid "Enable {0} only" msgstr "केवल {0} ही सक्षम करें" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "वयस्क सामग्री सक्षम करें" @@ -2919,16 +3033,20 @@ msgstr "" msgid "Enable external media" msgstr "बाहरी मीडिया सक्षम करें" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "इनके लिए मीडिया प्लेयर सक्षम करें" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "प्राथमिक अधिसूचनाएँ सक्षम करें" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "उपशीर्षक सक्षम करें" @@ -2941,17 +3059,14 @@ msgstr "केवल इस सूत्र को सक्षम करें" msgid "Enable trending topics" msgstr "रुझान सक्षम करें" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "" - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "सक्षम" @@ -2963,7 +3078,7 @@ msgstr "फ़ीड का अंत" msgid "Ensure you have selected a language for each subtitle file." msgstr "पक्का करें कि आपने हर उपशीर्षक फ़ाइल के लिए भाषा चुना है।" -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "पासवर्ड दर्ज करें" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "शब्द या टैग दर्ज करें" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "कोड दर्ज करें" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "फ़ुलस्क्रीन में जाएँ" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "अपना जन्मतिथि दर्ज करें" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "अपना ईमेल पता दर्ज करें" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "अपना नया ईमेल पता नीचे दर्ज करें।" - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "" @@ -3022,7 +3129,7 @@ msgstr "" msgid "Enter your username and password" msgstr "अपने उपयोगकर्ता नाम और पासवर्ड दर्ज करें" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "" @@ -3030,16 +3137,28 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "त्रुटि" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "फ़ाइल सहेजते समय त्रुटि हुई" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "CAPTCHA उत्तर पाने मे त्रुटि हुई" @@ -3047,27 +3166,34 @@ msgstr "CAPTCHA उत्तर पाने मे त्रुटि हुई msgid "Error:" msgstr "त्रुटि:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "सब" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "सब जवाब दे सकते हैं" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "सब इस पोस्ट का जवाब दे सकते हैं" -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "सब" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "आपके फ़ॉलो किए गए उपयोगकर् msgid "Excludes users you follow" msgstr "आपके फ़ॉलो किए गए उपयोगकर्ताओं के अलावा सब पर लागू होता है" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "फ़ुलस्क्रीन से निकलें" @@ -3106,24 +3232,28 @@ msgstr "छवि दर्शन से निकलता है" msgid "Expand alt text" msgstr "वैकल्पिक पाठ बढ़ाता है" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "उपयोगकर्ताओं की सूची बढ़ाताा है" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "जिस पोस्ट का जवाब दे रहे हैं उसे बढ़ाता या संक्षिप्त करता है" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "URI के रिकॉर्ड पर रिसॉल्व होने की अपेक्षा थी" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "प्रयोगात्मत्क" @@ -3153,15 +3283,15 @@ msgstr "अश्लील या संभावित व्यथित क msgid "Explicit sexual images." msgstr "अश्लील यौन छवि" -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "मेरा डेटा निर्यात करें" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "बाहरी मीडिया" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 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:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "बाहरी मीडिया प्राथमिकताएँ" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "" @@ -3211,8 +3341,8 @@ msgstr "ऐप पासवर्ड बनाने में असफल। msgid "Failed to create conversation" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "स्टार्टर पैक बनाने मे असफल" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "संदेश मिटाने में असफल" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "पोस्ट मिटाने में असफल, फिर से प्रयास करें" @@ -3238,8 +3368,8 @@ msgstr "पोस्ट मिटाने में असफल, फिर स msgid "Failed to delete starter pack" msgstr "स्टार्टर पैक मिटाने में असफल" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "" @@ -3250,14 +3380,32 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "फ़ीड प्राथमिकताएँ लोड करने में असफल" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "GIF लोड करने में असफल" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "पुराने संदेश लोड करने में असफल" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "अनुशंसित फ़ीड लोड करने में msgid "Failed to load suggested follows" msgstr "अनुशंसित फ़ॉलो लोड करने में असफल" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "पोस्ट को पिन करने में असफल" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "" @@ -3291,15 +3439,11 @@ msgstr "" msgid "Failed to save image: {0}" msgstr "छवि सहेजने में असफल: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "अधिसूचना प्राथमिकताएँ सहेजने में असफल, फिर से प्रयास करें" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "" @@ -3318,7 +3462,7 @@ msgstr "" msgid "Failed to submit appeal, please try again." msgstr "अपील जमा करने में असफल, फिर से प्रयास करें" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "थ्रेड म्यूट स्थिति बदलने में असफल, फिर से प्रयास करें" @@ -3335,7 +3479,11 @@ msgstr "" msgid "Failed to update feeds" msgstr "फ़ीड अपडेट करने में असफल" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "सेटिंग अपडेट करने में असफल" @@ -3354,15 +3502,23 @@ msgstr "" msgid "Failed to verify handle. Please try again." msgstr "हैंडल सत्यापित करने में असफल। कृपया फिर से प्रयास करें।" -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "फ़ीड" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "{0} द्वारा फ़ीड" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "फ़ीड मेनू" @@ -3371,35 +3527,39 @@ msgstr "फ़ीड मेनू" msgid "Feed toggle" msgstr "फ़ीड टॉगल" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "प्रतिक्रिया" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "प्रतिक्रिया भेजी गई!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "फ़ीड" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "फ़ीड कस्टम एल्गोरिथ्म हैं जिन्हें उपयोगकर्ता थोड़ी कोडिंग विशेषज्ञता के साथ बनाते हैं। अधिक जानकारी के लिए <0/>।" #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "फ़ीड अपडेट की गई!" @@ -3428,6 +3588,14 @@ msgstr "" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "अंतिम रूप दिया जा रहा" @@ -3448,7 +3616,7 @@ msgstr "फ़ॉलो करने के लिए लोग खोजें" msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "समाप्त करें" @@ -3456,17 +3624,17 @@ msgstr "समाप्त करें" msgid "Fitness" msgstr "स्वास्थ्य" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "लचीला" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "फ़ॉलो करें" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "{0} को फ़ॉलो करें" @@ -3518,7 +3686,7 @@ msgstr "" msgid "Follow all" msgstr "सभी को फ़ॉलो करें" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "वापस फ़ॉलो करें" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "वापस फ़ॉलो करें" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "<0>{0} फ़ॉलो करते हैं" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "<0>{0} और {1, plural, one {# अन्य} other {# अन्य}} फ़ॉलो करते हैं" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "<0>{0} और <1>{1} फ़ॉलो करते हैं" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "<0>{0}, <1>{1}, और {2, plural, one {# अन्य} other {# अन्य}} फ़ॉलो करते हैं" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "@{0} के फ़ॉलोअर जिन्हें आप जानते हैं" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "फ़ॉलोअर जिन्हें आप जानते हैं" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "फ़ॉलोइंग" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "फ़ॉलोइंग" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "{0} को फ़ॉलो करते हैं" @@ -3579,8 +3751,8 @@ msgstr "" msgid "Following feed preferences" msgstr "फ़ॉलोइंग फ़ीड प्राथमिकताएँ" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "फ़ॉलोइंग फ़ीड प्राथमिकताएँ" @@ -3592,11 +3764,11 @@ msgstr "आपको फ़ॉलो करते हैं" msgid "Follows You" msgstr "आपको फ़ॉलो करते हैं" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "फ़ॉन्ट" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "फ़ॉन्ट आकार" @@ -3613,7 +3785,7 @@ msgstr "सुरक्षा कारणों के लिए, हमें msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "सुरक्षा कारणों से, आप इसे फिर से देख नहीं सकेंगे। यदि आप इस ऐप पासवर्ड को खो देते हैं, तो आपको एक नया ऐप पासवर्ड उत्पन्न करना होगा।" -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "बहतरीन अनुभव के लिए, हम थीम फ़ॉन्ट का उपयोग करने की सलाह देते हैं।" @@ -3643,11 +3815,15 @@ msgstr "भूल गए?" msgid "Frequently Posts Unwanted Content" msgstr "लगातार अनचाही सामग्री पोस्ट करते हैं" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "@{sanitizedAuthor} से" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "<0/> से" @@ -3660,14 +3836,68 @@ msgstr "गैलरी" msgid "Generate a starter pack" msgstr "स्टार्टर पाक उत्पन्न करें" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "सहायता लें" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "" @@ -3688,14 +3918,16 @@ msgstr "अपने प्रोफ़ाइल को एक चेहरा द msgid "Glaring violations of law or terms of service" msgstr "क़ानून या सेवा की शर्तों का स्पष्ट उल्लंघन" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "{0} के साथ बातचीत पर जाएँ" @@ -3779,8 +4017,8 @@ msgstr "भयानक मीडिया" msgid "Half way there!" msgstr "आधा रास्ता पार!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "हैंडल" @@ -3797,7 +4035,7 @@ msgstr "हैंडल बदला गया!" msgid "Handle too long. Please try a shorter one." msgstr "हैंडल बहुत अधिक लंबा है। कृपया कुछ छोटा चुनें।" -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "कंपन" @@ -3806,7 +4044,7 @@ msgstr "कंपन" msgid "Harassment, trolling, or intolerance" msgstr "उत्पीड़न, ट्रोलिंग, या असहिष्णुता" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "हैशटैग" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "हैशटैग {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "" -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "मुश्किल हो रही है?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "सहायता" @@ -3839,8 +4077,13 @@ msgstr "तस्वीर अपलोड कर के या अवतार msgid "Here is your app password!" msgstr "यह है आपका ऐप पासवर्ड!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "" @@ -3848,16 +4091,16 @@ msgstr "" msgid "Hidden by your moderation settings." msgstr "" -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "छिपाई गई सूची" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "छिपाई गई सूची" msgid "Hide" msgstr "छिपाएँ" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "छिपाएँ" @@ -3875,18 +4118,18 @@ msgstr "छिपाएँ" msgid "Hide customization options" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "मेरे लिए पोस्ट छिपाएँ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "सब के लिए जवाब छिपाएँ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "मेरे लिए जवाब छिपाएँ" @@ -3894,12 +4137,12 @@ msgstr "मेरे लिए जवाब छिपाएँ" msgid "Hide this card" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "यह पोस्ट छिपाएँ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "यह पोस्ट छिपाएँ?" @@ -3913,11 +4156,11 @@ msgstr "रुझान छिपाएँ" msgid "Hide trending topics?" msgstr "रुझान छिपाएँ?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "उपयोगकर्ता सूची छुपाएँ" @@ -3926,32 +4169,32 @@ msgstr "उपयोगकर्ता सूची छुपाएँ" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "अरे, फ़ीड सर्वर से संपर्क करते समय कोई समस्या हुई। कृपया फ़ीड के मालिक को इस समस्या के बारे में बताएँ।" -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "अरे, लगता है फ़ीड सर्वर का कॉन्फ़िग ठीक से नहीं हुआ है। कृपया फ़ीड के मालिक को इस समस्या के बारे में बताएँ।" -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "अरे, लगता है फ़ीड सर्वर ऑफलाइन है। कृपया फ़ीड के मालिक को इस समस्या के बारे में बताएँ।" -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "अरे, फ़ीड सर्वर ने ख़राब उत्तर दिया। कृपया फ़ीड के मालिक को इस समस्या के बारे में बताएँ।" -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "अरे, हमें यह फ़ीड ढूँढने में मुश्किल हो रही है। इसे शायद मिटा दिया गया होगा।" -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "अरे, लगता है हमें यह डेटा लोड करने में मुश्किल हो रही है। अधिक जानकारी के लिए नीचे देखें। यदि यह समस्या बनी रहती है, हमसे संपर्क करें।" @@ -3959,15 +4202,15 @@ msgstr "अरे, लगता है हमें यह डेटा लो msgid "Hmmmm, we couldn't load that moderation service." msgstr "अरे, हम उस मॉडरेशन सेवा को लोड नहीं कर सके।" -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "कृपया रुकिए। हम धीरे-धीरे वीडियो तक पहुँच दे रहें हैं, और आप अभी भी पंक्ति में हैं। बाद में प्रयास करें!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "होम फ़ीड" @@ -3984,10 +4227,10 @@ msgstr "होस्टिंग प्रदाता" msgid "Hot" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "गर्मागर्म जवाब पहले" @@ -3996,10 +4239,6 @@ msgstr "गर्मागर्म जवाब पहले" msgid "How should we open this link?" msgstr "इस लिंक को हम कैसे खोलें?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "मैं समझा" msgid "If alt text is long, toggles alt text expanded state" msgstr "यदि वैकल्पिक पाठ लंबा है, बड़े आकार का वैकल्पिक पाठ लागू कर्ता है" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "यदि आप अपने देश के क़ानून के अनुसार अभी वयस्क नहीं है, आपके माता-पिता या क़ानूनी अभिभावक को आपकी जगह इन शर्तों को पढ़ना होगा।" @@ -4031,11 +4270,11 @@ msgstr "यदि आप इस सूची को मिटते हैं, msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "यदि आपका अपना डोमेन है, आप उसे अपने हैंडल के तौर पर उपयोग कर सकते हैं। इसे आप ख़ुद अपने पहचान की पुष्टि कर सकते हैं। <0>यहाँ अधिक जानें।" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "यदि आप इस पोस्ट को मिटाते हैं, आप उसे वापस नहीं ला पाएँगे।" @@ -4047,6 +4286,10 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "यदि आप अपना पासवर्ड बदलना चाहते हैं, हम आपको एक कोड भेजेंगे यहा सत्यापित करने के किए कि यह आपका खाता है।" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "" @@ -4091,13 +4334,41 @@ msgstr "प्रतिरूपण या पहचान या संबं msgid "Impersonation, misinformation, or false claims" msgstr "प्रतिरूपण, झूठी जानकारी, या ग़लत दावे" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "अनुचित संदेश या अश्लील लिंक" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "" @@ -4105,7 +4376,7 @@ msgstr "" msgid "Incorrect username or password" msgstr "अमान्य उपयोगकर्ता नाम या पासवर्ड" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "पासवर्ड रीसेट करने के लिए आपके ईमेल में भेजी गई कोड दर्ज करें" @@ -4113,7 +4384,7 @@ msgstr "पासवर्ड रीसेट करने के लिए आ msgid "Input confirmation code for account deletion" msgstr "खाता मिटाने के लिए पुष्टिकरण कोड दर्ज करें" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "नया पासवर्ड दर्ज करें" @@ -4129,10 +4400,14 @@ msgstr "आपको ईमेल की गई कोड दर्ज करे msgid "Interaction limited" msgstr "संपर्क सीमित" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "अमान्य 2FA पुष्टिकरण कोड" msgid "Invalid handle. Please try a different one." msgstr "अमान्य हैंडल। कृपया कुछ और चुनें।" -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "अमान्य या असमर्थित पोस्ट रिकॉर्ड" @@ -4158,7 +4433,7 @@ msgstr "अमान्य सत्यापन कोड" msgid "Invite a Friend" msgstr "दोस्त को आमंत्रित करें" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "आमंत्रण कोड" @@ -4186,15 +4461,15 @@ msgstr "अपने दोस्तों को अपने मनपसं msgid "Invites, but personal" msgstr "आमंत्रण, पर निजी" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "सही है" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "अभी इसमें बस आप ही हैं! ऊपर खोजकर अपने स्टार्टर पैक में और लोगों को जोड़ें।" -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "काम आईडी: {0}" @@ -4220,11 +4495,27 @@ msgstr "बातचीत में शामिल हों" msgid "Journalism" msgstr "पत्रकारिता" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "{0} द्वारा लेबल किया गया।" -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "रचयिता द्वारा लेबल किया गया।" @@ -4237,7 +4528,7 @@ msgstr "लेबल" msgid "Labels added" msgstr "लेबल जोड़े गए" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "लेबल लोगों और सामग्री का नामांकन है। इन्हें नेटवर्क को छिपाने, चेतावनी देने, और वर्गीकरण के लिए उपयोग किया जा सकता है।" @@ -4253,22 +4544,30 @@ msgstr "आपकी सामग्री पर लेबल" msgid "Language selection" msgstr "अपनी भाषा चुने" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "भाषा सेटिंग" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "भाषा" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "बड़ा" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "नए" @@ -4282,7 +4581,6 @@ msgstr "अधिक जानें" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "" @@ -4290,6 +4588,10 @@ msgstr "" msgid "Learn More" msgstr "अधिक जानें" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Bluesky के बारे में अधिक जानें" @@ -4298,15 +4600,23 @@ msgstr "Bluesky के बारे में अधिक जानें" msgid "Learn more about self hosting your PDS." msgstr "PDS को ख़ुद होस्ट करने के बारे में अधिक जानें।" -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "इस सामग्री पर लगाए गए मॉडरेशन के बारे में अधिक जानें।" -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "इस चेतावनी के बारे में अधिक जानें" @@ -4316,12 +4626,16 @@ msgstr "इस चेतावनी के बारे में अधिक msgid "Learn more about verification on Bluesky" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Bluesky पर क्या सार्वजनिक है, इसके के बारे में अधिक जानें" -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "अधिक जानें।" @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "बातचीत से निकलें" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "उन्हें सभी भाषाएँ देखने के लिए अनचेक छोड़ दें।" +msgid "Leave them all unselected to see any language." +msgstr "" -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Bluesky से बाहर जा रहे हैं" @@ -4370,7 +4685,7 @@ msgstr "चलो चलें!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "रोशन" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "पसंद" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "पसंद करें ({0, plural, one {# पसंद} other {# पसंद}})" @@ -4397,6 +4712,10 @@ msgstr "10 पोस्ट पसंद करें" msgid "Like 10 posts to train the Discover feed" msgstr "डिस्कवर फ़ीड को प्रशिक्षित करने के लिए 10 पोस्ट पसंद करें" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "इस फ़ीड को पसंद करें" @@ -4405,8 +4724,8 @@ msgstr "इस फ़ीड को पसंद करें" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "इन्होनें पसंद किया" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "इन्होनें पसंद किया" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, one {# उपयोगकर्ता} other {# उपयोगकर्ताओं}} ने पसंद किया" @@ -4428,20 +4747,36 @@ msgstr "{0, plural, one {# उपयोगकर्ता} other {# उपयो msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, one {# उपयोगकर्ता} other {# उपयोगकर्ताओं}} ने पसंद किया" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "पसंद" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "इस पोस्ट पर पसंद" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "रेखीय" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "सूची" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "सूची अवरुद्ध की गई" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "{0} द्वारा सूची" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "<0/> द्वारा सूची" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "आपके द्वारा सूची" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "सूची अनम्यूट की गई" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "सूची" @@ -4537,7 +4876,7 @@ msgstr "और लोड करें" msgid "Load more suggested feeds" msgstr "और अनुशंसित फ़ीड लोड करें" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "नई अधिसूचनाएँ लोड करें" @@ -4552,11 +4891,11 @@ msgstr "नए पोस्ट लोड करें" msgid "Loading..." msgstr "लोड हो रहा है..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "लॉग" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "लॉग आउट दृश्यता" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "@sawaratsuki.bsky.social द्वारा लोगो" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "<0>@sawaratsuki.bsky.social द्वारा लोगो" @@ -4573,7 +4912,7 @@ msgstr "<0>@sawaratsuki.bsky.social द्वारा लोगो" msgid "Long press to open tag menu for #{tag}" msgstr "#{tag} के लिए टैग मेनू खोलने के लिए लंबा दबाएँ" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "XXXXX-XXXXX जैसा दिखता है" @@ -4597,7 +4936,7 @@ msgstr "" msgid "Make one for me" msgstr "मेरे लिए एक बनाएँ" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "यह सुनिश्चित करें कि आप यहाँ जाना चाहते हैं!" @@ -4606,7 +4945,7 @@ msgstr "यह सुनिश्चित करें कि आप यहा msgid "Manage saved feeds" msgstr "सहेजे गए फ़ीड प्रबंधित करें" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "" @@ -4614,9 +4953,9 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "अपने म्यूट किए गए शब्द और टैग प्रबंधित करें" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "" @@ -4625,15 +4964,13 @@ msgstr "" msgid "Mark as read" msgstr "पढ़ा हुआ मार्क करें" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "" @@ -4645,19 +4982,26 @@ msgstr "मीडिया" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "मीडिया जो कुछ दर्शकों के लिए भयावह या अनुचित हो सकता है" -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "उल्लेखित उपयोगकर्ता" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "उल्लेखित उपयोगकर्ता" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "उल्लेख" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "मेनू" @@ -4665,7 +5009,7 @@ msgstr "मेनू" msgid "Message {0}" msgstr "संदेश {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "संदेश मिटाई गई" @@ -4674,11 +5018,11 @@ msgstr "संदेश मिटाई गई" msgid "Message deleted" msgstr "संदेश मिटाई गई" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "सर्वर से संदेश: {0}" @@ -4691,19 +5035,23 @@ msgstr "संदेश दर्ज करने का स्थान" msgid "Message is too long" msgstr "संदेश बहुत लंबा है" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "संदेश" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "भ्रमित करने वाला खाता" msgid "Misleading Post" msgstr "भ्रमित करने वाला पोस्ट" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "मॉडरेशन" @@ -4725,17 +5073,17 @@ msgstr "मॉडरेशन" msgid "Moderation details" msgstr "मॉडरेशन विवरण" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "{0} द्वारा मॉडरेशन सूची" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "<0/> द्वारा मॉडरेशन सूची" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "आपके द्वारा मॉडरेशन सूची" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "मॉडरेशन सूची अपडेट की गई" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "मॉडरेशन सूचियाँ" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "मॉडरेशन सूचियाँ" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "मॉडरेशन सेटिंग" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "मॉडरेशन स्थिति" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "मॉडरेशन के औज़ार" @@ -4775,7 +5123,7 @@ msgstr "मॉडरेशन के औज़ार" msgid "Moderator has chosen to set a general warning on the content." msgstr "मॉडरेटर ने सामग्री पर सामान्य चेतावनी दी है।" -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "अधिक" @@ -4790,13 +5138,13 @@ msgstr "अधिक फ़ीड" msgid "More options" msgstr "अधिक विकल्प" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "सबसे पसंदीदा पहले" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "सबसे अधिक पसंदीदा जवाब पहले" @@ -4808,8 +5156,8 @@ msgstr "सिनेमा" msgid "Music" msgstr "संगीत" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "म्यूट" @@ -4819,8 +5167,8 @@ msgstr "म्यूट" msgid "Mute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "इस शब्द को केवल टैग में म्यू msgid "Mute this word until you unmute it" msgstr "इस शब्द को म्यूट करें जब तक आप इसे अनम्यूट नहीं करते" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "थ्रेड म्यूट करें" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "शब्द और टैग म्यूट करें" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "म्यूट किए गए खाते" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "म्यूट किए गए खाते" @@ -4898,7 +5246,7 @@ msgstr "म्यूट किए गए खातों के पोस्ट msgid "Muted by \"{0}\"" msgstr "\"{0}\" द्वारा म्यूट किया गया" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "म्यूट किए गए शब्द और टैग" @@ -4911,7 +5259,7 @@ msgstr "म्यूट करना निजी है। म्यूट क msgid "My Birthday" msgstr "मेरा जन्मदिन" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "मेरे फ़ीड" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "प्रकृति" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "{0} पर जाएँ" @@ -4958,11 +5306,11 @@ msgstr "अगले स्क्रीन पर जाता है" msgid "Navigates to your profile" msgstr "आपके प्रोफ़ाइल पर जाता है" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "इसे बदलना चाहते हैं?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "कॉपीराइट उल्लंघन की शिकायत करना चाहते हैं?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "नया" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "नया बातचीत" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "नए संदेश" msgid "New Moderation List" msgstr "नया मॉडरेशन सूची" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "नया पासवर्ड" @@ -5029,7 +5396,7 @@ msgstr "नया पासवर्ड" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "नया पोस्ट" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "नया पोस्ट" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "नया उपयोगकर्ता जानकारी डायलॉग" @@ -5054,10 +5429,14 @@ msgstr "नया उपयोगकर्ता जानकारी डाय msgid "New User List" msgstr "नया उपयोगकर्ता सूची" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "सबसे नया जवाब पहले" @@ -5071,15 +5450,15 @@ msgstr "समाचार" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "कोई DNS पैनल नहीं" msgid "No expiry set" msgstr "" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "कोई अनुशंसित GIF नहीं मिली। टेनोर के साथ समस्या हो सकती है।" @@ -5119,32 +5498,35 @@ msgstr "" msgid "No likes yet" msgstr "अभी तक कोई पसंद नहीं" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "{0} को और फ़ॉलो नहीं कर रहे" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "अभी तक कोई संदेश नहीं" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "अभी तक कोई अधिसूचनाएँ नहीं!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "कोई नहीं" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "केवल लेखक ही इस पोस्ट को क्वोट कर सकता है।" +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "अभी तक कोई पोस्ट नहीं।" @@ -5171,7 +5553,7 @@ msgstr "कोई परिणाम नहीं" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "कोई परिणाम नहीं मिले" @@ -5179,9 +5561,9 @@ msgstr "कोई परिणाम नहीं मिले" msgid "No results found for \"{query}\"" msgstr "\"{query}\" के लिए कोई परिणाम नहीं मिला" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "{query} के लिए कोई परिणाम नहीं मिला" @@ -5189,7 +5571,7 @@ msgstr "{query} के लिए कोई परिणाम नहीं म msgid "No results." msgstr "" -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "\"{search}\" के लिए कोई परिणाम नहीं मिला।" @@ -5198,7 +5580,7 @@ msgstr "\"{search}\" के लिए कोई परिणाम नहीं msgid "No thanks" msgstr "नहीं धन्यवाद" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "कोई नहीं" @@ -5223,59 +5605,76 @@ msgstr "कोई नहीं मिला। किसी और को खो msgid "Non-sexual Nudity" msgstr "ग़ैर-यौन नग्नता" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "नहीं मिला" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "साझा करने के बारे में" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "टिप्पणी: Bluesky एक खुला और सार्वजनिक नेटवर्क है। यह सेटिंग आपके सामग्री की दृश्यता केवल Bluesky ऐप और वेबसाइट पर सीमित करता है, और अन्य ऐप इस सेटिंग की अवमानना कर सकते हैं। अन्य ऐप और वेबसाइट पर आपके सामग्री को लॉग आउट उपयोगकर्ताओं को दिखा सकते हैं।" -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "यहाँ कुछ नहीं" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "अधिसूचना फ़िल्टर" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "अधिसूचना सेटिंग" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "अधिसूचना सेटिंग" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "अधिसूचना ध्वनि" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "अधिसूचना ध्वनि" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "अधिसूचनाएँ" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "अभी" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "नग्नता या वयस्क सामग्री को वैसा लेबल नहीं किया गया" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "कुछ नहीं" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "अरे नहीं!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "ठीक" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "ठीक है" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "सबसे पुराने जवाब पहले" @@ -5331,19 +5736,19 @@ msgstr "सबसे पुराने जवाब पहले" msgid "on<0><1/><2><3/>" msgstr "<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "ज्ञानप्राप्ति रीसेट" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "एक या अधिक GIF के विवरण नहीं हैं।" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "एक या अधिक छवियों पर वैकल्पिक पाठ नहीं है।" -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "एक या अधिक वीडियो के विवरण नहीं हैं।" @@ -5351,13 +5756,15 @@ msgstr "एक या अधिक वीडियो के विवरण न msgid "Only .jpg and .png files are supported" msgstr "केवल .jpg और .png फ़ाइलें समर्थित हैं" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "केवल {0} जवाब दे सकता है" -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "केवल आक्षर, संख्या और हाइफ़न है" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "केवल छवि फाइलें समर्थित है msgid "Only WebVTT (.vtt) files are supported" msgstr "केवल वेबवीटीटी (.vtt) फ़ाइलें समर्थित हैं" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "अरे, कोई गड़बड़ हुई!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "अरे!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "ड्रॉअर मेनू खोलें" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "इमोजी चयन खोलें" @@ -5416,7 +5822,7 @@ msgstr "फ़ीड विकल्प मेनू खोलें" msgid "Open full emoji list" msgstr "" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "{niceUrl} का लिंक खोलें" @@ -5424,11 +5830,11 @@ msgstr "{niceUrl} का लिंक खोलें" msgid "Open message options" msgstr "संदेश विकल्प खोलें" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "मॉडरेशन डीबग पृष्ठ खोलें" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "म्यूट किए गए शब्द और टैग सेटिंग खोलें" @@ -5453,16 +5859,16 @@ msgstr "" msgid "Open starter pack menu" msgstr "स्टार्टर पैक मेनू खोलें" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "कहानी की किताब का पृष्ठ खोलें" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "सिस्टम लॉग खोलें" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "{numItems} का विकल्प खोलता है" @@ -5490,11 +5896,11 @@ msgstr "उपकरण कर कैमरा खोलता है" msgid "Opens captions and alt text dialog" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "रचयिता खोलता है" @@ -5502,7 +5908,7 @@ msgstr "रचयिता खोलता है" msgid "Opens device photo gallery" msgstr "उपकरण की तस्वीर गैलरी खोलता है" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "" @@ -5520,15 +5926,19 @@ msgstr "अपने मौजूदा Bluesky खाते में साइ msgid "Opens GIF select dialog" msgstr "GIF चयन डायलॉग खोलता है" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "आमंत्रण कोड की सूची खोलता है" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "" @@ -5536,12 +5946,8 @@ msgstr "" msgid "Opens password reset form" msgstr "पासवर्ड रीसेट फ़ॉर्म खोलें" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "लिंक की गई वेबसाइट खोलता है" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "यह प्रोफ़ाइल खोलता है" @@ -5558,7 +5964,7 @@ msgstr "वैकल्पिक तौर पर नीचे अतिरि msgid "Options:" msgstr "विकल्प:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "या इन विकल्पों को जोड़ें:" @@ -5600,6 +6006,10 @@ msgstr "अन्य खाता" msgid "Other..." msgstr "अन्य..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "" @@ -5608,7 +6018,7 @@ msgstr "" msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "हमारे मॉडरेटर ने शिकायतें देखी और Bluesky पर आपकी बातचीत तक पहुँच को अक्षम करने का निर्णय लिया।" -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "पृष्ठ नहीं मिला" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "पृष्ठ नहीं मिला" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "पासवर्ड अपडेट किया गया" msgid "Password updated!" msgstr "पासवर्ड अपडेट किया गया!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "रोकें" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "वीडियो रोकें" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "लोग" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "@{0} द्वारा फ़ॉलो किए गए लोग" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "@{0} को फ़ॉलो करते लोग" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "" @@ -5704,12 +6119,12 @@ msgstr "होम में पिन करें" msgid "Pin to Home" msgstr "होम में पिन करें" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "अपने प्रोफ़ाइल में पिन करें" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "पिन किया गया" @@ -5718,7 +6133,7 @@ msgstr "पिन किया गया" msgid "Pinned {0} to Home" msgstr "होम में {0} पिन किया गया" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "पिन किए गए फ़ीड" @@ -5726,38 +6141,38 @@ msgstr "पिन किए गए फ़ीड" msgid "Pinned to your feeds" msgstr "आपके फ़ीड में पिन किया गया" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "चलाएँ" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "{0} चलाएँ" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "वीडियो चलाएँ" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "वीडियो चलाएँ" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "GIF चलाता है" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "" @@ -5765,12 +6180,16 @@ msgstr "" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "कृपया अपना हैंडल चुनें" #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "कृपया अपना पासवर्ड चुनें" @@ -5782,7 +6201,8 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "कृपया सत्यापन कैपचा समाप्त करें" -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "" @@ -5804,6 +6224,7 @@ msgstr "कृपया इस ऐप पासवर्ड के लिए ए msgid "Please enter a valid code." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "" @@ -5812,7 +6233,11 @@ msgstr "" msgid "Please enter a valid word, tag, or phrase to mute" msgstr "कृपया म्यूट करने के लिए एक मान्य शब्द, टैग, या वाक्यांश दर्ज करें" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "" #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "कृपया अपना ईमेल दर्ज करें।" -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "कृपया अपना ईमेल दर्ज करें।" @@ -5853,6 +6278,19 @@ msgstr "कृपया व्याख्या करें कि क्य msgid "Please explain why you think your chats were incorrectly disabled" msgstr "कृपया व्याख्या करें कि क्यों आपको लगता है कि आपके बातचीत ग़लती से अक्षम की गई" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "" @@ -5870,9 +6308,9 @@ msgstr "कृपया @{0} के रूप में साइन इन क msgid "Please verify your email" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "कृपया अपना ईमेल सत्यापित करें" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "राजनीति" msgid "Porn" msgstr "अश्लील" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "पोस्ट करें" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "पोस्ट करें" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "पोस्ट करें" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "सभी पोस्ट करें" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "{0} द्वारा पोस्ट" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "@{0} द्वारा पोस्ट" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "पोस्ट मिटाया गया" @@ -5919,11 +6362,14 @@ msgstr "पोस्ट मिटाया गया" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "पोस्ट अपलोड करने में असफल। कृपया अपना इंटरनेट कनेक्शन जाँच लें और फिर प्रयास करें।" +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "पोस्ट छिपाया गया" @@ -5937,11 +6383,11 @@ msgstr "पोस्ट म्यूट किए गए शब्द से छ msgid "Post Hidden by You" msgstr "पोस्ट आपके द्वारा छिपाया गया" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "पोस्ट संपर्क सेटिंग" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "" @@ -5954,8 +6400,10 @@ msgstr "पोस्ट भाषा" msgid "Post Languages" msgstr "पोस्ट भाषाएँ" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "पोस्ट नहीं मिला" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "पोस्ट पिन से हटाया गया" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "पोस्ट" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "पोस्ट को उनके पाठ, उनके टैग, या दोनों से छिपाया जा सकता है। हम ऐसे साधारण शब्द न चुनने की सलाह देते हैं जो कई पोस्ट में दिखते हैं, क्योंकि इससे हो सकता है कि सभी पोस्ट छिप जाएँ।" -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "पोस्ट छिपाए गए" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "संभावित भ्रामक लिंक" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "प्रतामिकता सहेजी गई" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "फिर कनेक्ट करने का प्रयास करने के लिए दबाएँ" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "फिर प्रयास करने के लिए दबाएँ" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "इस खाते के फ़ॉलोअर देखने के लिए दबाएँ जिन्हें आप भी फ़ॉलो करते हैं" @@ -6015,40 +6469,46 @@ msgstr "पिछली छवि" msgid "Primary Language" msgstr "प्राथमिक भाषा" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "अपने फ़ॉलो किए गए खातों को प्राथमिकता दें" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "प्राथमिक अधिसूचनाएँ" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "गोपनीयता" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "गोपनियता और सुरक्षा" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "गोपनियता और सुरक्षा" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "गोपनीयता नीति" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "वीडियो प्रसंस्करण हो रहा है..." @@ -6062,15 +6522,14 @@ msgstr "प्रसंस्करण हो रहा है..." msgid "profile" msgstr "प्रोफ़ाइल" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "प्रोफ़ाइल" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "प्रोफ़ाइल अपडेट की गई" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "सार्वजनिक, साझा योग्य सूचियाँ जो फ़ीड चला सकती हैं।" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "QR कोड आपके क्लिपबोर्ड में कॉपी की गई!" @@ -6119,44 +6594,52 @@ msgstr "QR कोड डाउनलोड की गई!" msgid "QR code saved to your camera roll!" msgstr "QR कोड आपके कैमरा रोल में सहेजी गई!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "क्वोट पोस्ट करें" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "क्वोट पोस्ट को फिर जोड़ा गया" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "क्वोट पोस्ट को सफलतापूर्वक अलग किया गया" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "क्वोट पोस्ट अक्षम किए गए" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "क्वोट सेटिंग" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "क्वोट" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "इस पोस्ट के क्वोट" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "यादृच्छिक (यानि \"क्रमरहित\")" @@ -6164,8 +6647,8 @@ msgstr "यादृच्छिक (यानि \"क्रमरहित\")" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "दर सीमा से अधिक - आपने अपना हैंडल कम समय में बहुत बार बदलने का प्रयास किया है। फिर प्रयास करने से पहले एक मिनट इंतज़ार करें।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "क्वोट को फिर जोड़ें" @@ -6177,30 +6660,42 @@ msgstr "" msgid "Reactivate your account" msgstr "खाता फिर सक्रिय करें" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Bluesky ब्लॉग पढ़ें" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Bluesky गोपनियता नीति पढ़ें" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Bluesky सेवा की शर्तें पढ़ें" @@ -6213,6 +6708,14 @@ msgstr "" msgid "Reason:" msgstr "कारण:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "हाल के खोज" @@ -6234,8 +6737,8 @@ msgstr "" msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "बातचीत फिर लोड करें" @@ -6244,10 +6747,9 @@ msgstr "बातचीत फिर लोड करें" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "हटाएँ" @@ -6259,17 +6761,17 @@ msgstr "स्टार्टर पैक से {displayName} को हटा msgid "Remove {historyItem}" msgstr "" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "खाता हटाएँ" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "अटैचमेंट हटाएँ" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "अवतार हटाएँ" @@ -6284,24 +6786,22 @@ msgstr "एंबेड हटाएँ" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "फ़ीड हटाएँ" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "फ़ीड हटाएँ?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "मेरे फ़ीड से हटाएँ" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "जल्द पहुँच से हटाएँ?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "सहेजे फ़ीड से हटाएँ" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "छवि हटाएँ" @@ -6332,12 +6831,8 @@ msgstr "अपने सूची से म्यूट शब्द हटा msgid "Remove profile" msgstr "प्रोफ़ाइल हटाएँ" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "क्वोट हटाएँ" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "रिपोस्ट हटाएँ" @@ -6345,7 +6840,7 @@ msgstr "रिपोस्ट हटाएँ" msgid "Remove subtitle file" msgstr "उपशीर्षक फ़ाइल हटाएँ" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "अपने सहेजे फ़ीड से इस फ़ीड को हटाएँ" @@ -6364,11 +6859,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "लेखक द्वारा हटाया गया" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "आपके द्वारा हटाया गया" @@ -6377,10 +6872,6 @@ msgstr "आपके द्वारा हटाया गया" msgid "Removed from list" msgstr "सूची से हटाया गया" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "मेरे फ़ीड से हटाया गया" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "सहेजे फ़ीड से हटाया गया" @@ -6395,34 +6886,36 @@ msgstr "आपके सहेजे फ़ीड से हटाया गया" msgid "Removed verification" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "क्वोट की गई पोस्ट हटाता है" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "डिस्कवर से बदलें" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "जवाब" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "जवाब अक्षम" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "इस पोस्ट पर जवाब अक्षम है" -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "जवाब दें" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "जवाब दें ({0, plural, one {# जवाब} other {# जवाब}})" @@ -6436,50 +6929,55 @@ msgstr "जवाब थ्रेड लेखक द्वारा छिप msgid "Reply Hidden by You" msgstr "जवाब आपके द्वारा छिपाया गया" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "जवाब सेटिंग" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "जवाब सेटिंग थ्रेड का लेखक चुनता है" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "जवाब क्रम" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "<0><1/> को जवाब" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "अवरुद्ध पोस्ट को जवाब" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "पोस्ट को जवाब" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "आपको जवाब" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "जवाब दृश्यता अपडेट की गई" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "जवाब सफलतापूर्वक छिपाई गई" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "फ़ीड की शिकायत करें" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "संदेश की शिकायत करें" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "पोस्ट की शिकायत करें" @@ -6567,25 +7065,26 @@ msgstr "इस स्टार्टर पैक की शिकायत क msgid "Report this user" msgstr "इस उपयोगकर्ता की शिकायत करें" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "रीपोस्ट करें" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "रीपोस्ट करें" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "रीपोस्ट करें ({0, plural, one {# रीपोस्ट} other {# रीपोस्ट}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "रीपोस्ट करें या पोस्ट क्वोट करे" @@ -6594,26 +7093,38 @@ msgstr "रीपोस्ट करें या पोस्ट क्वो msgid "Reposted By" msgstr "इन्होनें रीपोस्ट किया" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "{0} ने रीपोस्ट किया" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "<0><1/> ने रीपोस्ट किया" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "आपने रीपोस्ट किया" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "इस पोस्ट के रीपोस्ट" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" msgstr "" #: src/view/com/modals/ChangePassword.tsx:253 @@ -6621,8 +7132,8 @@ msgstr "" msgid "Request Code" msgstr "कोड अनुरोध करें" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "पोस्ट करने से पहले वैकल्पिक पाठ आवश्यक करें" @@ -6630,7 +7141,7 @@ msgstr "पोस्ट करने से पहले वैकल्पि msgid "Require an email code to sign in to your account." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "इस प्रदाता के लिए आवश्यक" @@ -6642,10 +7153,6 @@ msgstr "आपके क्षेत्र में आवश्यक" msgid "Resend" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "ईमेल फिर भेजें" msgid "Resend Verification Email" msgstr "सत्यापन ईमेल फिर भेजें" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "कोड रीसेट करें" @@ -6667,8 +7180,8 @@ msgstr "कोड रीसेट करें" msgid "Reset Code" msgstr "कोड रीसेट करें" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "ज्ञानप्राप्ति स्थिति को रीसेट करें" @@ -6687,21 +7200,23 @@ msgstr "पिछली क्रिया का फिर से प्रय #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "फिर प्रयास करें" @@ -6721,19 +7236,19 @@ msgstr "होम पृष्ठ पर वापस जाता है" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "पिछले पृष्ठ पर वापस जाता है" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "सहेजें" @@ -6762,15 +7276,13 @@ msgstr "सहेजें" msgid "Save birthday" msgstr "जन्मदिन सहेजें" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "बदलाव सहेजें" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "बदलाव सेव करो" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "QR कोड सहेजें" msgid "Save to my feeds" msgstr "मेरे फ़ीड में सहेजें" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "सहेजे गए फ़ीड" @@ -6802,18 +7314,14 @@ msgstr "सहेजे गए फ़ीड" msgid "Saved to your feeds" msgstr "आपके फ़ीड में सहेजा गया" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "आपके प्रोफ़ाइल में बदलाव सहेजता हैं" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "छवि क्रॉप सेटिंग सहेजता है" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "नमस्ते कहें!" @@ -6826,16 +7334,16 @@ msgstr "विज्ञान" msgid "Scroll to top" msgstr "ऊपर जाएँ" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "खोजें" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -6861,7 +7369,7 @@ msgstr "\"{query}\" खोजें" msgid "Search for \"{searchText}\"" msgstr "\"{searchText}\" खोजें" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "फ़ीड खोजें जो आप दूसरों को दिखाना चाहते हैं" @@ -6877,10 +7385,14 @@ msgstr "" msgid "Search for posts, users, or feeds" msgstr "" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "GIF खोजें" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "" @@ -6890,12 +7402,12 @@ msgstr "" msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "प्रोफ़ाइल खोजें" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Tenor में खोजें" @@ -6903,7 +7415,7 @@ msgstr "Tenor में खोजें" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "" @@ -6912,10 +7424,6 @@ msgstr "" msgid "Security step required" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "सुरक्षा चरण आवश्यक" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "" @@ -6936,14 +7444,31 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Bluesky में नौकरियाँ देखें" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "यह गाइड देखें" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "सीक स्लाइडर। एरो की से आगे और पीछे सीक करें, और स्पेस से चालू/बंद करें" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "रंग चुनें" @@ -6988,7 +7513,7 @@ msgstr "मौजूदा खाते से चुनें" msgid "Select GIF" msgstr "GIF चुनें" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "\"{0}\" GIF चुनें" @@ -6996,6 +7521,11 @@ msgstr "\"{0}\" GIF चुनें" msgid "Select how long to mute this word for." msgstr "चुनें कि कितने समय तक इस शब्द को म्यूट करना है।" +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "भाषा चुनें..." @@ -7004,7 +7534,7 @@ msgstr "भाषा चुनें..." msgid "Select languages" msgstr "भाषाएँ चुनें" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "" @@ -7045,12 +7575,12 @@ msgstr "" msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "चुनें कि आप अपनी सदस्यता वाली फ़ीड में कौन सी भाषाएँ शामिल करना चाहते हैं। यदि कोई भी चयनित नहीं है, तो सभी भाषाएँ दिखाई जाएँगी।" -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "अपनी जन्मतिथि चुनें" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "नीचे दिए विकल्पों में अपनी दिलचस्पियाँ चुनें" @@ -7058,7 +7588,11 @@ msgstr "नीचे दिए विकल्पों में अपनी msgid "Select your preferred language for translations in your feed." msgstr "अपने फ़ीड में अनुवाद के लिए अपनी पसंदीदा भाषा चुनें।" -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "" @@ -7066,17 +7600,9 @@ msgstr "" msgid "Send a neat website!" msgstr "कितना सुंदर वेबसाइट है!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "पुष्टिकरण ईमेल भेजें" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "ईमेल भेजें" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "ईमेल भेजें" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "प्रतिक्रिया भेजें" @@ -7095,7 +7621,7 @@ msgstr "प्रतिक्रिया भेजें" msgid "Send message" msgstr "संदेश भेजें" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "" @@ -7114,20 +7640,20 @@ msgstr "शिकायत भेजें" msgid "Send report to {0}" msgstr "{0} को शिकायत भेजें" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "सत्यापन ईमेल भेजें" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "सीधा संदेश द्वारा भेजें" @@ -7143,7 +7669,7 @@ msgstr "सर्वर पता" msgid "Set app icon to {0}" msgstr "ऐप आइकॉन को {0} करें" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "जन्मतिथि चुनें" @@ -7159,13 +7685,57 @@ msgstr "खाता बनाएँ" msgid "Sets email for password reset" msgstr "पासवर्ड रीसेट करने के लिए ईमेल चुनता है" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "सेटिंग" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "अनोखी कहानी साझा करें" msgid "Share a fun fact!" msgstr "मज़ेदार बात साझा करें!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "फिर भी साझा करें" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "लिंक साझा करें" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "लिंक साझा करें" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "लिंग डायलॉग साझा करें" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "" @@ -7247,8 +7812,8 @@ msgstr "इस स्टार्टर पैक को साझा करे msgid "Share this starter pack and help people join your community on Bluesky." msgstr "इस स्टार्टर पैक को साझा करें और लोगों को Bluesky पर आपके समुदाय में जुड़ने सहायता करें।" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "" msgid "Share your favorite feed!" msgstr "अपना पसंदीदा फ़ीड साझा करें" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "साझा की गई प्राथमिकताओं का परीक्षक" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "लिंक की गई वेबसाइट को साझा करता है" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "दिखाएँ" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "वैकल्पिक पाठ दिखाएँ" @@ -7303,8 +7864,8 @@ msgstr "" msgid "Show hidden replies" msgstr "छिपाए गए जवाब दिखाएँ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "ऐसी चीज़ें कम देखें" @@ -7312,55 +7873,63 @@ msgstr "ऐसी चीज़ें कम देखें" msgid "Show list anyway" msgstr "फिर भी सूची दिखाएँ" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "अधिक दिखाएँ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "ऐसी चीज़ें अधिक देखें" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "म्यूट किए गए जवाब देखें" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "क्वोट पोस्ट दिखाएँ" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "जवाब दिखाएँ" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "जवाबों को ऐसे दिखाएँ" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "जवाबों को थ्रेड में दिखाएँ" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "अन्य जवाबों से पहले आपके फ़ॉलो किए गए लोगों के जवाब दिखाएँ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "जवाब सब के लिए दिखाएँ" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "रीपोस्ट दिखाएँ" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "आपके फ़ॉलोइंग फीड में अपने सहेजे गए फ़ीड के नमूने दिखाएँ" @@ -7372,16 +7941,17 @@ msgstr "चेतावनी दिखाएँ" msgid "Show warning and filter from feeds" msgstr "चेतावनी दिखाएँ और फ़ीड से फ़िल्टर करें" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "" @@ -7390,14 +7960,15 @@ msgstr "" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "" msgid "Sign in to Bluesky or create a new account" msgstr "Bluesky में साइन इन करें या नया खाता बनाएँ" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "साइन आउट करें" @@ -7444,8 +8020,8 @@ msgstr "साइन आउट करें" msgid "Sign Out" msgstr "साइन आउट करें" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "साइन आउट करें?" @@ -7459,12 +8035,12 @@ msgstr "साइन इन आवश्यक" msgid "Signed in as @{0}" msgstr "@{0} कए रूप में साइन इन किया गया है" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "एक जैसे खाते" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "छोड़ें" @@ -7472,12 +8048,11 @@ msgstr "छोड़ें" msgid "Skip this flow" msgstr "इस फ़्लो को छोड़ें" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "छोटा" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "" @@ -7490,11 +8065,11 @@ msgstr "सॉफ़्टवेयर डेवलपर" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "कुछ अन्य फ़ीड जो आपको शायद पसंद आएँ" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "कुछ लोग जवाब दे सकते हैं" @@ -7510,10 +8085,11 @@ msgstr "" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "" -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "कोई गड़बड़ हुई" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "कोई गड़बड़ हुई, फिर प्रयास करें" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "कोई गड़बड़ हुई, फिर प्रयास करें।" -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "कोई गड़बड़ हुई!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "" @@ -7539,20 +8118,23 @@ msgstr "" msgid "Something wrong? Let us know." msgstr "कुछ गड़बड़ है? हमें बताएँ।" -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "जवाब क्रमबद्ध करें" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "जवाबों को ऐसे क्रमबद्ध करें" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "उसी पोस्ट के जवाबों को ऐसे क्रमबद्ध करें:" @@ -7579,7 +8161,7 @@ msgstr "स्पैम; अत्यधिक उल्लेख या जव msgid "Sports" msgstr "खेल" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "" @@ -7601,9 +8183,9 @@ msgstr "लोगों को जोड़ना शुरू करें!" msgid "Start chat with {displayName}" msgstr "{displayName} से बातचीत शुरू करें" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "स्टार्टर पैक" @@ -7611,12 +8193,12 @@ msgstr "स्टार्टर पैक" msgid "Starter pack by {0}" msgstr "{0} द्वारा स्टार्टर पैक" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "<0/> द्वारा स्टार्टर पैक" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "आपके द्वारा स्टार्टर पैक" @@ -7638,19 +8220,21 @@ msgstr "स्टार्टर पैक आपको अपने पसं msgid "Status Page" msgstr "स्थिति पृष्ठ" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "{1} से चरण {0}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "स्टोरेज खाली की गई, आपको ऐप फिर से खोलना पड़ेगा।" -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "कहानी की किताब" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "अपील जमा करें" msgid "Submit Appeal" msgstr "अपील जमा करें" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "" @@ -7676,10 +8260,14 @@ msgstr "" msgid "Subscribe" msgstr "सदस्यता लें" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "इन लेबलों का उपयोग करने के लिए @{0} की सदस्यता लें:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "लेबलकर्ता की सदस्यता लें" @@ -7692,8 +8280,12 @@ msgstr "इस लेबलकर्ता की सदस्यता ले msgid "Subscribe to this list" msgstr "इस सूची की सदस्यता लें" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "सफल!" @@ -7705,7 +8297,7 @@ msgstr "" msgid "Suggested Accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "आपके लिए सुझाव" @@ -7714,26 +8306,26 @@ msgstr "आपके लिए सुझाव" msgid "Suggestive" msgstr "भड़काऊ" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "सहायता" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "खाता बदलें" @@ -7742,24 +8334,24 @@ msgstr "खाता बदलें" msgid "Switch Account" msgstr "खाते बदलें" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "खाता बदलें" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "सिस्टम" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "सिस्टम लॉग" @@ -7767,6 +8359,18 @@ msgstr "सिस्टम लॉग" msgid "Tags only" msgstr "केवल टैग" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "हमें थोड़ा और बताएँ" msgid "Terms" msgstr "शर्तें" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "सेवा की शर्तें" @@ -7848,10 +8454,6 @@ msgstr "पाठ दर्ज करने की फ़ील्ड" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "धन्यवाद! आपका ईमेल सफलतापूर्वक सत्यापित किया गया।" - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "धन्यवाद। आपकी शिकायत भेज दी गई है।" @@ -7864,28 +8466,28 @@ msgstr "धन्यवाद, आपने सफलतापूर्वक msgid "That contains the following:" msgstr "जिसमें निम्नलिखित शामिल हैं:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "वह हैंडल पहले से ले लिया गया है।" - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "वह स्टार्टर पैक नहीं मिला।" +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "बस इतना ही, दोस्तों!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "अनअवरुद्ध करने के बाद खाता आपसे संपर्क कर सकेगा।" @@ -7900,7 +8502,7 @@ msgstr "ऐप को फिर से शुरू किया जाएगा msgid "The author of this thread has hidden this reply." msgstr "इस थ्रेड के लेखक ने इस जवाब को छिपाया है।" -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Bluesky वेब ऐप" @@ -7920,10 +8522,6 @@ msgstr "डिस्कवर फ़ीड" msgid "The Discover feed now knows what you like" msgstr "अब डिस्कवर फ़ीड को पता है कि आपको क्या पसंद है" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "" - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "यह अनुभव ऐप में बेहतर है। अभी Bluesky डाउनलोड करें और हम ठीक यहीं से जारी रखेंगे।" @@ -7944,8 +8542,16 @@ msgstr "आपके खाते पर नीचे दिए गए लेब msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "पोस्ट शायद मिटा दी गई है।" @@ -7953,8 +8559,9 @@ msgstr "पोस्ट शायद मिटा दी गई है।" msgid "The Privacy Policy has been moved to <0/>" msgstr "गोपनीयता नीति को <0/> पर स्थानांतरित किया गया है" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." msgstr "" #: src/lib/hooks/useCleanError.ts:40 @@ -7982,7 +8589,7 @@ msgstr "सेवा की शर्तों को स्थानांत msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "आपका दर्ज किया गया सत्यापन कोड अमान्य है। पक्का करें कि आपने सही सत्यापन कोड का उपयोग किया या नए कोड का अनुरोध करें।" -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "थीम" @@ -7990,14 +8597,14 @@ msgstr "थीम" msgid "There is no time limit for account deactivation, come back any time." msgstr "खाता निष्क्रियण पर कोई समय सीमा नहीं है, कभी भी वापस आएँ।" -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Tenor से कनेक्ट करने में समस्या हुई।" #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "सर्वर से संपर्क करने में समस्या हुई" @@ -8006,17 +8613,12 @@ msgstr "सर्वर से संपर्क करने में सम msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "सर्वर से संपर्क करने में समस्या हुई, कृपया अपना इंटरनेट कनेक्शन जाँच लें और फिर प्रयास करें।" -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "आपके सर्वर से संपर्क करने में समस्या हुई" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "अधिसूचनाएँ लाने में समस्या हुई। फिर प्रयास करने के लिए यहाँ दबाएँ।" -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "पोस्ट लाने में समस्या हुई। फिर प्रयास करने के लिए यहाँ दबाएँ।" @@ -8037,7 +8639,7 @@ msgstr "आपकी सूचियों को लाने में सम msgid "There was an issue fetching your service info" msgstr "आपके सेवा जानकारी को लाने में समस्या हुई।" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "इस फ़ीड को हटाने में समस्या हुई। कृपया अपना इंटरनेट कनेक्शन जाँच लें और फिर प्रयास करें।" @@ -8052,9 +8654,9 @@ msgstr "आपके शिकायत को भेजने में सम msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "आपके फ़ीड को अपडेट करने में समस्या हुई। कृपया अपना इंटरनेट कनेक्शन जाँच लें और फिर प्रयास करें।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "आपके फ़ीड को अपडेट करने में स msgid "There was an issue! {0}" msgstr "कोई समस्या हुई! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "कोई समस्या हुई! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "कोई समस्या हुई! कृपया अपना इंटरनेट कनेक्शन जाँच ले और फिर प्रयास करें।" -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "एप्लिकेशन में एक अप्रत्याशित समस्या थी. कृपया हमें बताएं कि क्या आपके साथ ऐसा हुआ है!" @@ -8089,7 +8691,7 @@ msgstr "एप्लिकेशन में एक अप्रत्याश msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Bluesky में नए उपयोगकर्ताओं की होड़ लगी है! हम आपका खाता जल्द ही सक्रिय करेंगे।" -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "ये सेटिंग केवल फ़ॉलोइंग फ़ीड पर लागू होते हैं।" @@ -8146,7 +8748,7 @@ msgstr "यह सामग्री {0} द्वारा होस्ट क msgid "This content is not available because one of the users involved has blocked the other." msgstr "यह सामग्री उपलब्ध नहीं है क्योंकि किसी उपयोगकर्ता ने दूसरे को अवरुद्ध किया है।" -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "यह सामग्री Bluesky खाते के बिना देखी नहीं जा सकती।" @@ -8158,6 +8760,10 @@ msgstr "" msgid "This email is already associated with your account." msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "यह सुविधा बीटा में है। आप <0>इस ब्लॉग पोस्ट पर रेपोसीटोरी निर्यात के बारे में अधिक पढ़ सकते हैं।" @@ -8170,7 +8776,7 @@ msgstr "" msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "यह सुविधा ऐप पासवर्ड के उपयोग के साथ उपलब्ध नहीं है। कृपया अपने मुख्य पासवर्ड से साइन इन करें।" -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "इस फ़ीड को अभी भारी ट्रैफ़िक मिल रही है और अस्थायी रूप से अनुपलब्ध है। कृपया फिर प्रयास करें।" @@ -8209,11 +8815,11 @@ msgstr "यह लेबल लेखक द्वारा लगाई गई msgid "This label was applied by you." msgstr "यह लेबल आपके द्वारा लगाई गई है।" -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "इस लेबलकर्ता ने घोषित नहीं किया है कि वह क्या लेबल लगाता है, और शायद निष्क्रिय है।" -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "यह लिंक आपको नीचे दिए गए वेबसाइट पर ले जा रहा है:" @@ -8233,29 +8839,28 @@ msgstr "यह सूची खाली है।" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "यह मॉडरेशन सेवा अनुपलब्ध है। अधिक जानकारी के लिए नीचे देखें। यदि यहा समस्या बनी रहती है, हमसे संपर्क करें।" -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "यह पोस्ट <0>{0} को बनने का दावा करता है, पर इसे Bluesky पर सबसे पहले <1>{1} को देखा गया।" -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "इस पोस्ट को मिटा दिया गया है।" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "इस पोस्ट को फ़ीड और थ्रेड से छिपा दिया जाएगा। इसे पूर्ववत नहीं किया जा सकता।" -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "इस पोस्ट के लेखक ने क्वोट पोस्ट अक्षम किए हैं।" @@ -8263,11 +8868,11 @@ msgstr "इस पोस्ट के लेखक ने क्वोट पो msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "इस जवाब को आपके थ्रेड के नीचे एक छिपे अनुभाग में डाल दिया जाएगा और उत्तरवर्ती जवाबों के अधिसूचनाओं को सभी के लिए म्यूट किया जाएगा।" -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "इस सेवा ने कोई सेवा की शर्तें या गोपनियता नीति नहीं दी है।" @@ -8275,6 +8880,10 @@ msgstr "इस सेवा ने कोई सेवा की शर्ते msgid "This should create a domain record at:" msgstr "इस जगह पर डोमेन रिकॉर्ड बनना चाहिए:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" @@ -8316,16 +8925,18 @@ msgstr "यह उपयोगकर्ता किसी को फ़ॉल msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "यह आपके म्यूट शब्दों से \"{0}\" को मिटा देगा। आप हमेशा इसे " -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "यह @{0} को जल्द पहुँच सूची से हटा देगा।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "यह आपके पोस्ट को इस क्वोट पोस्ट से सभी उपयोगकर्ताओं के लिए हटा देगा, और उसके बदले एक स्थानधारक छोड़ देगा।" -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "थ्रेड विकल्प" @@ -8334,24 +8945,27 @@ msgstr "थ्रेड विकल्प" msgid "Thread preferences" msgstr "थ्रेड प्राथमिकताएँ" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "थ्रेड प्राथमिकताएँ" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "थ्रेड" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "थ्रेड मोड" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "थ्रेड प्राथमिकताएँ" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "" @@ -8376,42 +8990,56 @@ msgstr "आप यह शिकायत किसे भेजना चाह msgid "Today" msgstr "आज" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "ड्रॉपडाउन टॉगल करें" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "वयस्क सामग्री सक्षम या अक्षम करने के लिए टॉगल करें" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "बहतरीन" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "विषय" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "अनुवाद करें" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "रुझान" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "" @@ -8428,14 +9056,10 @@ msgstr "फिर प्रयास करें" msgid "TV" msgstr "टीवी" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "दो-चरणीय प्रमाणीकरण (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "अपना उपयोगकर्ता हैंडल दर्ज करें" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "अपना संदेश यहाँ लिखें" @@ -8453,7 +9077,7 @@ msgstr "कनेक्ट करने में असफल। कृपय #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "आपकी सेवा से संपर्क करने मे msgid "Unable to delete" msgstr "मिटाने में असमर्थ" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "अनअवरुद्ध करें" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "अनअवरुद्ध करें" @@ -8486,7 +9126,7 @@ msgstr "अनअवरुद्ध करें" msgid "Unblock account" msgstr "खाता अनअवरुद्ध करें" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "खाता अनअवरुद्ध करें?" @@ -8495,13 +9135,13 @@ msgstr "खाता अनअवरुद्ध करें?" msgid "Unblock list" msgstr "" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "रीपोस्ट पूर्ववत करें" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "रीपोस्ट पूर्ववत करें ({0, plural, one {# रीपोस्ट} other {# रीपोस्ट}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "अनफ़ॉलो करें" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "{0} को अनफ़ॉलो करें" @@ -8523,7 +9163,7 @@ msgstr "खाता अनफ़ॉलो करें" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "नापसंद करें" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "नापसंद करें ({0, plural, one {# पसंद} other {# पसंद}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "" @@ -8555,8 +9195,8 @@ msgstr "अनम्यूट करें" msgid "Unmute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "बातचीत अनम्यूट करें" msgid "Unmute list" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "थ्रेड अनम्यूट करें" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "वीडियो अनम्यूट करें" @@ -8597,8 +9237,8 @@ msgstr "" msgid "Unpin from home" msgstr "होम से पिन से हटाएँ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "प्रोफ़ाइल से पिन से हटाएँ" @@ -8614,8 +9254,8 @@ msgstr "{0} को होम पिन से हटाया गया" msgid "Unpinned from your feeds" msgstr "आपके फ़ीड से पिन से हटाया गया" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "" @@ -8636,7 +9276,7 @@ msgstr "इस लेबलकर्ता की सदस्यता छो msgid "Unsubscribed from list" msgstr "सूची की सदस्यता छोड़ी गई" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "असमर्थित वीडियो प्रकार" @@ -8662,8 +9302,8 @@ msgstr "सूची में <0>{displayName} अपडेट करें #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "" @@ -8676,17 +9316,17 @@ msgstr "{domain} को अपडेट करें" msgid "Update your email" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "क्वोट अटैचमेंट का अपडेट असफल" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "जवाब दृश्यता का अपडेट असफल" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "अपडेट हो रहा है..." @@ -8698,20 +9338,20 @@ msgstr "इसके बदले फ़ोटो अपलोड करें" msgid "Upload a text file to:" msgstr "यहाँ पाठ फ़ाइल अपलोड करें:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "कैमरा से अपलोड करें" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "फ़ाइलों से अपलोड करें" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "लाइब्रेरी से अपलोड करें" msgid "Uploading images..." msgstr "छवि अपलोड हो रहा है..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "लिंक थंबनेल अपलोड हो रहा है..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "वीडियो अपलोड हो रहा है..." @@ -8761,6 +9401,10 @@ msgstr "अनुशंसित का उपयोग करें" msgid "Use this to sign in to the other app along with your handle." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "इनके द्वारा उपयोग किया गया:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "उपयोगकर्ता सूची अपडेट की गई" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "उपयोगकर्ता नाम या ईमेल पता" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "<0>@{0} द्वारा फ़ॉलो किए गए उपयोगकर्ता" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "मेरे फ़ॉलो किए गए उपयोगकर्ता" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "\"{0}\" में उपयोगकर्ता" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "" @@ -8846,11 +9502,11 @@ msgstr "मूल्य:" msgid "Verification failed, please try again." msgstr "" -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "" @@ -8870,8 +9526,15 @@ msgstr "" msgid "Verify account" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "" @@ -8880,21 +9543,20 @@ msgstr "" msgid "Verify DNS Record" msgstr "DNS रिकॉर्ड सत्यापित करें" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "ईमेल सत्यापन डायलॉग" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "अभी पाठ फ़ाइल सत्यापित करें" msgid "Verify this account?" msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "अपना ईमेल सत्यापित करें" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "अपना ईमेल सत्यापित करें" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "संस्कारण {appVersion}" +msgid "Version {0}" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "वीडियो" @@ -8928,7 +9598,7 @@ msgstr "वीडियो" msgid "Video failed to process" msgstr "वीडियो संसाधित करने में असफल" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "" @@ -8942,15 +9612,15 @@ msgstr "" msgid "Video Games" msgstr "वीडियो गेम" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "वीडियो नहीं मिला" @@ -8958,11 +9628,11 @@ msgstr "वीडियो नहीं मिला" msgid "Video settings" msgstr "वीडियो सेटिंग" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "वीडियो अपलोड किया गया" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "वीडियो: {0}" @@ -8979,11 +9649,11 @@ msgstr "" msgid "View {0}'s avatar" msgstr "{0} का अवतार देखें" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "{0} का प्रोफ़ाइल देखें" @@ -8991,7 +9661,7 @@ msgstr "{0} का प्रोफ़ाइल देखें" msgid "View {displayName}'s profile" msgstr "{displayName} का प्रोफ़ाइल देखें" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "अवरुद्ध उपयोगकर्ता का प्रोफ़ाइल देखें" @@ -9009,7 +9679,6 @@ msgstr "डीबग प्रविष्टि देखें" msgid "View details" msgstr "विवरण देखें" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "कॉपीराइट उल्लंघन की शिकायत करने के लिए विवरण देखें" @@ -9022,23 +9691,23 @@ msgstr "पूरा थ्रेड देखें" msgid "View information about these labels" msgstr "इन लेबलों के बारे में जानकारी देखें" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "प्रोफ़ाइल देखें" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "अवतार देखें" @@ -9054,28 +9723,28 @@ msgstr "" msgid "View users who like this feed" msgstr "इस फ़ीड को पसंद करने वाले उपयोगकर्ता देखें" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "अपने अवरुद्ध खाते देखें" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "अपने फ़ीड देखें और अधिक खोजें" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "अपने मॉडरेशन सूची देखें" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "अपने म्यूट किए गए खाते देखें" @@ -9083,8 +9752,8 @@ msgstr "अपने म्यूट किए गए खाते देखे msgid "View your verifications" msgstr "" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "" @@ -9092,16 +9761,20 @@ msgstr "" msgid "Views video in immersive mode" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "साइट पर जाएँ" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "वॉल्यूम" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "सामग्री की चेतावनी दें और फ़ msgid "Watch now" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "" + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "हमें इस हैशटैग के लिए कोई परिणाम नहीं मिला" @@ -9128,7 +9809,7 @@ msgstr "हमें इस हैशटैग के लिए कोई पर msgid "We couldn't find any results for that topic." msgstr "उस विषय से जुड़े हमें कोई परिणाम नहीं मिले।" -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "हम इस बातचीत को लोड नहीं कर सके" @@ -9136,6 +9817,10 @@ msgstr "हम इस बातचीत को लोड नहीं कर msgid "We estimate {estimatedTime} until your account is ready." msgstr "हम आपके खाते को तैयार करने के लिए {estimatedTime} समय का अनुमान करते हैं" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "हमने <0>{0} को एक और सत्यापन ईमेल भेजा है।" @@ -9148,15 +9833,15 @@ msgstr "हम आशा करते हैं आपका समय शान msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "आपके फ़ॉलो किए गए लोगों के पोस्ट ख़त्म हो गए। यहाँ है <0/> से सबसे नए पोस्ट।" -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "हम तय नहीं कर पाए कि आपको वीडियो आपलोग करने की अनुमति है या नहीं। कृपया फिर प्रयास करें।" @@ -9164,10 +9849,14 @@ msgstr "हम तय नहीं कर पाए कि आपको वी msgid "We were unable to load your birth date preferences. Please try again." msgstr "हम आपके जन्मतिथि प्राथमिकताएँ लोड कर पाए। कृपया फिर प्रयास करें।" -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "हम आपके व्यवस्थित लेबलकर्ताओं को इस समय लोड नहीं कर सके।" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "हम कनेक्ट नहीं कर सके। अपना खाता बनाना जारी रखने के लिए फिर प्रयास करें। यदि यह फिर से असफल होता है, आप इस फ़्लो को छोड़ सकते हैं।" @@ -9176,7 +9865,7 @@ msgstr "हम कनेक्ट नहीं कर सके। अपना msgid "We will let you know when your account is ready." msgstr "हम आपको बताएँगे जब आपका खाता तैयार हो जाएगा।" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -9184,6 +9873,22 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "हम इसका उपयोग आपके अनुभव को वैयक्तिकृत करने के लिए करेंगे।" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "हमें नेटवर्क समस्याएँ हो र msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "हम आपके हमारे साथ जुड़ने को लेकर बहुत उत्साहित हैं!" @@ -9205,15 +9910,15 @@ msgstr "हमें क्षमा करें, पर हम इस सू msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "हमें क्षमा करें, पर हम अभी आपके म्यूट शब्द लोड नहीं कर सके। कृपया फिर प्रयास करें।" -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "हमें क्षमा करें, पर आपका खोज पूरा नहीं किया जा सके। कृपया कुछ मिनट बाद फिर प्रयास करें।" -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "हमें क्षमा करें! आप जिस पोस्ट को जवाब दे रहे हैं उसे मिटा दिया गया है।" -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "हमें क्षमा करें! हमें वह पृष्ठ नहीं मिल रहा जिसे आप ढूँढ रहे थे।" @@ -9222,6 +9927,26 @@ msgstr "हमें क्षमा करें! हमें वह पृष msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "हमें क्षमा करें! आप केवल बीस लेबलकर्ताओं की सदस्यता ले सकते हैं, और आप बीस की सीमा तक पहुँच गए हैं।" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "आपका वापस स्वागत है" @@ -9240,7 +9965,7 @@ msgstr "आप अपने स्टार्टर पैक को क्य #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "क्या चल रहा है?" @@ -9256,11 +9981,11 @@ msgstr "इस पोस्ट में किन भाषाओं का उ msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "आप अपने एल्गोरिथ्मिक फ़ीड में कौनसी भाषाएँ देखना चाहते हैं?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "इस पोस्ट से कौन संपर्क कर सकता है?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "कौन जवाब दे सकता है" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "उफ़!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "" @@ -9322,12 +10047,12 @@ msgstr "इस उपयोगकर्ता की समीक्षा क msgid "Write a message" msgstr "संदेश लिखें" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "पोस्ट लिखें" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "अपना जवाब दें" @@ -9358,11 +10083,11 @@ msgstr "हाँ, निष्क्रिय करें" msgid "Yes, delete this starter pack" msgstr "हाँ, इस स्टार्टर पैक को मिटाएँ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "हाँ, अलग करें" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "हाँ, छिपाएँ" @@ -9378,6 +10103,10 @@ msgstr "कल" msgid "You" msgstr "आप" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "" @@ -9386,6 +10115,10 @@ msgstr "" msgid "You are creating an account on" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "आप पंक्ति में हैं" @@ -9403,7 +10136,7 @@ msgstr "" msgid "You are not allowed to go live" msgstr "" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "आपको वीडियो अपलोड करने की अनुमति नहीं है।" @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "" @@ -9441,10 +10173,18 @@ msgstr "आप फ़ॉलो करने के लिए नए कस्ट msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "इसके अलावा आप अस्थायी रूप से अपना खाता निष्क्रिय कर सकते हैं, और उसे कभी भी सक्रिय कर सकते हैं।" -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "कोई भी सेटिंग चुनने पर भी आप चल रहे बातचीत को जारी रख सकते हैं।" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "अब आप अपने नए पासवर्ड के साथ msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "आप लॉग इन जारी रखने के लिए अपना खाता फिर से सक्रिय कर सकते हैं। आपके प्रोफ़ाइल और पोस्ट अन्य उपयोगकर्ताओं को " -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "" #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "आप इसे बाद में अपने सेटिंग में बदल सकते हैं।" @@ -9472,7 +10212,7 @@ msgstr "आपके कोई फ़ॉलोअर नहीं हैं।" msgid "You don't follow any users who follow @{name}." msgstr "आप @{name} को फ़ॉलो करने वाले किसी को फ़ॉलो नहीं करते हैं।" -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "" @@ -9480,15 +10220,15 @@ msgstr "" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "आपके पास अभी तक कोई आमंत्रण कोड नहीं है! जब आप कुछ अधिक समय के लिए Bluesky पर रहेंगे तो हम आपको कुछ भेजेंगे।" -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "आपके पास कोई पिन किए गए फ़ीड नहीं हैं।" -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "आपकी कोई सहेजे गए फ़ीड नहीं हैं।" -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "आपने लेखक को अवरुद्ध किया है या आपको लेखक द्वारा अवरुद्ध किया गया है।" @@ -9502,6 +10242,10 @@ msgstr "आपने इस उपयोगकर्ता को अवरु msgid "You have blocked this user. You cannot view their content." msgstr "आपने इस उपयोगकर्ता को अवरुद्ध किया है। आप उनकी सामग्री नहीं देख सकते।" +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "आपने इस खाते को म्यूट किया ह msgid "You have muted this user" msgstr "आपने इस उपयोगकर्ता को म्यूट किया है" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "आपके कोई बातचीत नहीं हैं। एक शुरू करें!" @@ -9547,7 +10291,7 @@ msgstr "आपने अभी तक किसी खाते को अवर msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "आपने अभी तक किसी खाते को म्यूट नहीं किया है। खाता म्यूट करने के लिए, उनके प्रोफ़ाइल पर जाकर मेनू से \"खाता म्यूट करें\" चुनें।" -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "आप अंत तक आ गए हैं" @@ -9572,6 +10316,10 @@ msgstr "आपने अभी तक कोई शब्द या टैग msgid "You hid this reply." msgstr "आपने इस जवाब को छिपाया" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "आप पराए लेबलों पर अपील कर सकते हैं यदि आपको लगता है कि इन्हें ग़लती से लगाया गया है।" @@ -9592,7 +10340,7 @@ msgstr "आप अधिकतम केवल 3 फ़ीड जोड़ सकत msgid "You may only select up to 4 images" msgstr "आप अधिकतम 4 छवियों को चुन सकते हैं" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "" @@ -9600,6 +10348,14 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "स्टार्टर पैक उत्पन्न करने के लिए आपको कम से कम सात अन्य लोगों को फ़ॉलो करना होगा।" +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "QR कोड सहेजने के लिए आपको फ़ोटो लाइब्रेरी तक पहुँच देनी पड़ेगी।" @@ -9608,6 +10364,11 @@ msgstr "QR कोड सहेजने के लिए आपको फ़ोट msgid "You must select at least one labeler for a report" msgstr "शिकायत करने के लिए आपको कम से कम एक लेबलकर्ता चुनना पड़ेगा।" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "" @@ -9616,7 +10377,7 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "आपने पहले @{0} को निष्क्रिय किया था।" -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "" @@ -9628,16 +10389,20 @@ msgstr "" msgid "You reacted {0} to {1}" msgstr "" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "आप अपने सभी खातों से साइन आउट हो जाएँगे।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "आपको और इस थ्रेड के लिए अधिसूचनाएँ नहीं मिलेंगी।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "आपको अब इस थ्रेड के लिए अधिसूचनाएँ नहीं मिलेंगी।" @@ -9657,11 +10422,11 @@ msgstr "आप: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "आप: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "अपना खाना बनाने के बाद आप सुझाए गए उपयोगकर्ताओं और फ़ीड को फ़ॉलो करेंगे!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "अपना खाना बनाने के बाद आप सुझाए गए उपयोगकर्ताओं को फ़ॉलो करेंगे!" @@ -9673,9 +10438,9 @@ msgstr "आप इन लोगों और {0} अन्यों को फ msgid "You'll follow these people right away" msgstr "आप इन लोगों को तुरंत फ़ॉलो करेंगे" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "आपको <0>{0} पर एक ईमेल मिलगे यह सत्यापित करने के लिए कि यह आप ही हैं।" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "आपने इस पोस्ट में से एक शब्द msgid "You've found some people to follow" msgstr "आपने फ़ॉलो करने के लिए कुछ लोगों को ढूँढा है" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "आप अपने फ़ीड के अंत तक पहुँच गए! कुछ और खातों को फ़ॉलो करें!" @@ -9711,19 +10480,23 @@ msgstr "आप अपने फ़ीड के अंत तक पहुँच msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "आप वीडियो अपलोड करने की दैनिक सीमा तक पहुँच गए (अत्यधिक बाइट)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "आप वीडियो अपलोड करने की दैनिक सीमा तक पहुँच गए (अत्यधिक वीडियो)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "आपका खाता" @@ -9735,7 +10508,7 @@ msgstr "आपका खाता मिटा दिया गया है।" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "आपका खाता वीडियो अपलोड करने के जितना पुराना नहीं है। कृपया बाद मे फिर प्रयास करें।" @@ -9751,11 +10524,11 @@ msgstr "" msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "आपकी जन्मतिथि" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "आपका ब्राउज़र वीडियो के प्रकार का समर्थन नहीं करता। कृपया कोई नया ब्राउज़र आज़माएँ।" @@ -9771,13 +10544,15 @@ msgstr "" msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "आपका वर्तमान हैंडल <0>{0} आपके लिए आरक्षित रहेगा। आप इस खाते से कभी भी उस हैंडल पर वापस जा सकते हैं।" -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "आपका ईमेल अमान्य प्रतीत हो रहा है।" @@ -9786,15 +10561,11 @@ msgstr "आपका ईमेल अमान्य प्रतीत हो msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "आपका ईमेल अभी तक सत्यापित नहीं हुआ है। यह एक महत्वपूर्ण सुरक्षा कदम है जिसकी हम अनुशंसा करते हैं।" - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "आपकी पहली पसंद!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "" @@ -9806,19 +10577,15 @@ msgstr "आपका फ़ॉलोइंग फ़ीड खाली है! क msgid "Your full handle will be <0>@{0}" msgstr "आपका पूरा हैंडल <0>@{0} होगा" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "" @@ -9835,15 +10602,15 @@ msgstr "आपके म्यूट किए गए शब्द" msgid "Your password has been changed successfully!" msgstr "आपके पासवर्ड को सफलतापूर्वक बदला गया!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "आपका पोस्ट प्रकाशित हुआ" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "आपके पोस्ट प्रकाशित हुए" @@ -9851,15 +10618,19 @@ msgstr "आपके पोस्ट प्रकाशित हुए" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "आपके पोस्ट, पसंद और अवरोध सार्वजनिक हैं। म्यूट निजी हैं।" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "आपके प्रोफ़ाइल, पोस्ट, फ़ीड और सूचियाँ अन्य Bluesky उपयोगकर्ताओं को और नहीं दिखेंगे। आप लॉग इन करके अपने खाते को फिर से सक्रिय कर सकते हैं।" -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "आपके जवाब को प्रकाशित किया गया" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -9867,7 +10638,7 @@ msgstr "" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "आपके शिकायत को Bluesky मॉडरेशन सेवा को भेजा जाएगा।" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "" diff --git a/src/locale/locales/hu/messages.po b/src/locale/locales/hu/messages.po index 7b266cb23d..0bdca7b2ab 100644 --- a/src/locale/locales/hu/messages.po +++ b/src/locale/locales/hu/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: hu\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 01:46\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,7 +27,7 @@ msgstr "(jelenleg aktív)" msgid "(contains embedded content)" msgstr "(beágyazott tartalom)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(nincs megadott email-cím)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# megosztás} other {# megosztás}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# másodperce} other {# másodperce}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# olvasatlan} other {# olvasatlan}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {# olvasatlan} other {# olvasatlan}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {# hónapja} other {# hónapja}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {követő} other {követő}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {követett} other {követett}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {kedvelés} other {kedvelés}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {kedvelés} other {kedvelés}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {bejegyzés} other {bejegyzés}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {idézés} other {idézés}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {megosztás} other {megosztás}}" @@ -135,6 +138,10 @@ msgstr "{0} <0>a <1>címkékben" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>a <1>szövegekben és címkékben" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} követett" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "{0} élő adásban van" @@ -143,11 +150,15 @@ msgstr "{0} élő adásban van" msgid "{0} is not a valid URL" msgstr "A(z) {0} egy érvénytelen webcím" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "A(z) {0}-felhasználónév nem elérhető" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} felhasználó csatlakozott ezen a héten" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{1}/{0}" @@ -164,8 +175,16 @@ msgstr "{0} {1}-emojival reagált" msgid "{0} reacted {1} to {2}" msgstr "{0} {1}-emojival reagált erre: {2}" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0} – szerző: {1}; {2} kedveli" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0} – szerző: {1}" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "{0} profilképe" @@ -197,12 +216,12 @@ msgstr "{0} perce" msgid "{0}s" msgstr "{0} másodperce" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# olvasatlan} other {# olvasatlan}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "{displayName} kezdőcsomagja" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {# óra} other {# óra}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {# perc} other {# perc}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy mostantól követ Téged" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy kedvelte az egyéni hírfolyamodat" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy kedvelte a bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy kedvelte a megosztott bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy eltávolította a hitelesítését a fiókodról" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy megosztotta a bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy megosztotta a megosztott bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy a Te kezdőcsomagoddal regisztrált" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy hitelesített Téged" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} mostantól követ Téged" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} kölcsönözte a követésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} kedvelte az egyéni hírfolyamodat" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} kedvelte a bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} kedvelte a megosztott bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} eltávolította a hitelesítését a fiókodról" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} megosztotta a bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} megosztotta a megosztott bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} a Te kezdőcsomagoddal regisztrált" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} hitelesített Téged" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy mostantól követ Téged" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy kedvelte az egyéni hírfolyamodat" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy kedvelte a bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy kedvelte a megosztott bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy eltávolította a hitelesítését a fiókodról" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy megosztotta a bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy megosztotta a megosztott bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy a Te kezdőcsomagoddal regisztrált" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy hitelesített Téged" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} mostantól követ Téged" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} kölcsönözte a követésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} kedvelte az egyéni hírfolyamodat" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} kedvelte a bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} kedvelte a megosztott bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} eltávolította a hitelesítését a fiókodról" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} megosztotta a bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} megosztotta a megosztott bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} a Te kezdőcsomagoddal regisztrált" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} hitelesített Téged" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} követett" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "{handle} jelenleg nem fogad üzeneteket" @@ -392,17 +410,17 @@ msgstr "{joinedAllTimeCount, plural, other {#}} felhasználó csatlakozott ezzel msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "{minutes, plural, one {# perc} other {# perc}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# olvasatlan értesítés} other {# olvasatlan értesítés}}" #: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" -msgstr "{profileName} {0} ezelőtt csatlakozott a Blueskyhoz" +msgstr "{profileName} {0} csatlakozott a Blueskyhoz" #: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" -msgstr "{profileName} {0} ezelőtt csatlakozott a Blueskyhoz egy kezdőcsomag igénybevételével" +msgstr "{profileName} {0} csatlakozott a Blueskyhoz egy kezdőcsomag igénybevételével" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" #: src/screens/Search/modules/ExploreTrendingTopics.tsx:111 @@ -432,12 +450,12 @@ msgstr "{userName} hitelesítései" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} és {2, plural, one {#} other {#}} további személy szerepel a kezdőcsomagodban" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} és {2, plural, one {#} other {#}} további személy szerepel a kezdőcsomagodban" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {követő} other {követő}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {követett} other {követett}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} és<1> <2>{1} szerepel a kezdőcsomagodban" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} szerepel a kezdőcsomagodban" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "a(z) <0>{0} lista tagjai" @@ -466,11 +484,11 @@ msgstr "a(z) <0>{0} lista tagjai" msgid "<0>{date} at {time}" msgstr "<0>{date}, {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Kísérleti: Ha ez a funkció engedélyezve van, akkor csak az általad követett felhasználók válaszairól és idézéseiről fogsz értesítést kapni. Ezeket a beállításokat idővel bővíteni fogjuk." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<0>Jelentkezz be<1> vagy <2>regisztrálj<3>, <4>ha szeretnél a Blueskyon híreket, sport- és politikai bejegyzéseket, vagy bármi mást keresni!" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Te és<1> <2>{0} szerepeltek a kezdőcsomagodban" @@ -503,10 +521,14 @@ msgstr "(üres üzenet)" msgid "A new form of verification" msgstr "A hitelesítés egy új formája" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "Képernyőkép egy felhasználói profilról, amelyen egy harang ikon látható a Követés-gomb mellett. Ez az új, tevékenységértesítési funkciót ábrázolja." + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Névjegy" @@ -524,25 +546,25 @@ msgstr "Csevegési kérelem elfogadása" msgid "Accept Request" msgstr "Kérelem elfogadása" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Kisegítő lehetőségek" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Kisegítő lehetőségek" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Fiók" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Mostantól követed a fiókot" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Elnémított fiók" msgid "Account Muted by List" msgstr "Elnémított fiók (lista által)" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Fióklehetőségek" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Eltávolítottad a fiókot a listáról" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Mostantól már nem követed a fiókot" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Feloldottad a fiók némítását" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Másokat hitelesíteni csak a <0><1/> recés pipával rendelkező fiókok képesek. Ezeket a megbízható hitelesítőket a Bluesky jelöli ki." +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "Mások tevékenységei" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "Tevékenységértesítések" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Felvesz" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "A folytatáshoz még {0} fiókot kell felvenned" @@ -634,8 +666,8 @@ msgstr "Fiók felvétele a listára" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Helyettesítő szöveg hozzáadása" msgid "Add alt text (optional)" msgstr "Helyettesítő szöveg hozzáadása (nem kötelező)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Fiók felvétele a listára" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Válaszlánc folytatása" @@ -670,8 +702,8 @@ msgstr "Alkalmazásjelszó létrehozása" msgid "Add emoji reaction" msgstr "Emoji-reakció hozzáfűzése" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "További részletek megadása (nem kötelező)" @@ -683,7 +715,7 @@ msgstr "Szó elnémítása a megadott beállításokkal" msgid "Add muted words and tags" msgstr "Elnémított szavak és címkék felvétele" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Válaszlánc folytatása" @@ -704,7 +736,7 @@ msgstr "Reakció hozzáfűzése" msgid "Add recommended feeds" msgstr "Ajánlott hírfolyamok felvétele" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Vegyél fel néhány hírfolyamot a kezdőcsomagodhoz!" @@ -725,10 +757,6 @@ msgstr "Add hozzá ezt a hírfolyamot a gyűjteményedhez!" msgid "Add to lists" msgstr "Felvétel listára" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Felvétel a hírfolyamgyűjteménybe" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "Személy felvétele a listára" @@ -738,11 +766,11 @@ msgstr "Személy felvétele a listára" msgid "Added to list" msgstr "Felvetted a felhasználót a listára" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Felvetted a hírfolyamot a hírfolyamgyűjteményedbe" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "További részletek (legfeljebb 1000 karakter)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "További részletek (legfeljebb 300 karakter)" @@ -750,18 +778,18 @@ msgstr "További részletek (legfeljebb 300 karakter)" msgid "Adult" msgstr "Pornó" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Felnőtt tartalom" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "A felnőtt tartalmakat csak böngészőből, a <0>bsky.app honlapon engedélyezheted." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "A felnőtt tartalmak le vannak tiltva." @@ -770,16 +798,32 @@ msgstr "A felnőtt tartalmak le vannak tiltva." msgid "Adult Content labels" msgstr "Felnőtt tartalmi feljegyzések" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Haladó beállítások" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "Életkor-igazolás" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "Az életkor-igazolási kérelem küldése meghiúsult. Próbáld újra!" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "Az életkor-igazolási kérelem küldése sikeresen megtörtént" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "Az életkor-igazolás általában csupán néhány percet vesz igénybe" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "janos@pelda.hu" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Mind" @@ -793,7 +837,7 @@ msgstr "Mostantól mindegyik fiókot követed!" msgid "All languages" msgstr "Bármilyen nyelven" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Itt egy helyen megtalálod az összes elmentett hírfolyamot." @@ -802,16 +846,21 @@ msgstr "Itt egy helyen megtalálod az összes elmentett hírfolyamot." msgid "Allow access to your direct messages" msgstr "Hozzáférés megadása a személyes üzenetekhez" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Bejövő üzenetek fogadása" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "Saját bejegyzésekről szóló értesítések" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Idézés engedélyezése" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Válaszok fogadása:" @@ -828,13 +877,13 @@ msgstr "Már van kódod?" msgid "Already signed in as @{0}" msgstr "Már bejelentkeztél, mint @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "HLYT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "HLYT" msgid "Alt text" msgstr "Helyettesítő szöveg" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Helyettesítő szöveg" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "A helyettesítő szöveg segít leírni egy képet vak vagy gyengén látó felhasználók számára, és mindenki számára további információval szolgál." @@ -861,27 +910,19 @@ msgstr "A helyettesítő szöveg össze lesz csukva. {MAX_ALT_TEXT, plural, othe msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Küldtünk egy emailt a(z) {0} címre. Ez a levél egy ellenőrzőkódot tartalmaz, amit alább adhatsz meg." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "Küldtünk egy emailt a korábbi email címedre: {currentEmail}. Ez a levél egy ellenőrzőkódot tartalmaz, amit alább adhatsz meg." - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Küldtünk egy emailt. Ez a levél egy ellenőrzőkódot tartalmaz, amit alább adhatsz meg." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Hiba történt" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Hiba történt" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "A videó tömörítése meghiúsult." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "A hírfolyam lekérdezése meghiúsult." @@ -889,11 +930,11 @@ msgstr "A hírfolyam lekérdezése meghiúsult." msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "A kezdőcsomag létrehozása meghiúsult. Szeretnéd újra megpróbálni?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "A videó betöltése meghiúsult. Próbáld újra később!" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "A videó betöltése meghiúsult. Próbáld újra!" @@ -910,7 +951,7 @@ msgstr "A videó kiválasztása meghiúsult" msgid "An error occurred while trying to follow all" msgstr "Az összes felhasználó követése meghiúsult" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "A videó feltöltése meghiúsult." @@ -934,8 +975,8 @@ msgstr "A csevegés megnyitása meghiúsult" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "ismeretlen hiba történt" msgid "an unknown labeler" msgstr "ismeretlen feljegyző" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "és" @@ -963,10 +1004,14 @@ msgstr "és" msgid "Animals" msgstr "Állatok" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "Animált GIF" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "Közlemény" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "Hitelesítés a Blueskyon" @@ -980,7 +1025,13 @@ msgstr "Antiszociális viselkedés" msgid "Anybody can interact" msgstr "Bárki kapcsolatba léphet" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "Bármelyik követőtől" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "Egy alkalmazásjelszó csak az angol ábécé betűit, számokat, szók msgid "App password names must be at least 4 characters long" msgstr "Egy alkalmazásjelszónak legalább 4 karakter hosszúnak kell lennie" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Alkalmazásjelszók" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Alkalmazásjelszók" @@ -1053,10 +1104,10 @@ msgstr "Felfüggesztés fellebbezése" msgid "Appeal this decision" msgstr "Döntés fellebbezése" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Megjelenítés" @@ -1065,12 +1116,20 @@ msgstr "Megjelenítés" msgid "Apply default recommended feeds" msgstr "Ajánlott hírfolyamok elfogadása" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "Lekéréses kérelem alkalmazása" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Archiválás dátuma: {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Archivált bejegyzés" @@ -1078,7 +1137,7 @@ msgstr "Archivált bejegyzés" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Biztosan törölni akarod a(z) „{0}” nevű alkalmazásjelszót?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Biztosan törölni akarod ezt az üzenetet? Az üzenet a Te nézőpontodból el lesz távolítva, de a másik fél számára nem." @@ -1098,19 +1157,15 @@ msgstr "Biztosan el akarod hagyni ezt a beszélgetést?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Biztosan el akarod hagyni ezt a csevegést? Már nem fogsz tudni hozzáférni az üzeneteidhez, a másik fél viszont igen." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Biztosan el akarod távolítani a(z) {0} c. hírfolyamot a gyűjteményedből?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Biztosan el akarod távolítani ezt a hírfolyamgyűjteményedből?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Biztosan el akarod vetni ezt a piszkozatot?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Biztosan el akarod vetni ezt a bejegyzést?" @@ -1131,29 +1186,26 @@ msgstr "Művészet" msgid "Artistic or non-erotic nudity." msgstr "Művészi- vagy nem erotikus meztelenség" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "Témakör hozzárendelése" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Adj meg legalább 3 karaktert" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Sarki Fény" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Az automatikus lejátszási beállítások elköltöztek a <0>Tartalmi- és médiabeállításokba." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Videók és GIF-ek automatikus lejátszása" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "Elérhető" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Videók és GIF-ek automatikus lejátszása" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Vissza" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Vissza a csevegésekhez" @@ -1195,28 +1247,44 @@ msgstr "A kezdőcsomag-létrehozás előtt ellenőriznünk kell az email-címede msgid "Before you can accept this chat request, you must first verify your email." msgstr "Az üzenetfogadás előtt ellenőriznünk kell az email-címedet." +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "A feliratkozás előtt vissza kell igazolnod az email-címedet." + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "Az üzenetküldés előtt ellenőriznünk kell az email-címedet." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "Indítás" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "Életkor-igazolási folyamat indítása" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "Az életkor-igazolási folyamat megkezdéséhez töltsd ki az alábbi mezőket!" + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Születésnap" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Letiltás" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Letiltás" msgid "Block account" msgstr "Fiók letiltása" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Fiók letiltása" @@ -1262,20 +1330,20 @@ msgstr "Felhasználó letiltása" msgid "Block User" msgstr "Felhasználó letiltása" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Letiltva" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Letiltott fiókok" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Letiltott fiókok" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Az általad letiltott fiókok nem képesek válaszolni a bejegyzéseidre, megemlíteni Téged vagy bármilyen egyéb módon kapcsolatba lépni Veled." @@ -1284,11 +1352,11 @@ msgstr "Az általad letiltott fiókok nem képesek válaszolni a bejegyzéseidre msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Az általad letiltott fiókok nem képesek válaszolni a bejegyzéseidre, megemlíteni Téged vagy bármilyen egyéb módon kapcsolatba lépni Veled. A letiltott fiókok bejegyzéseit nem fogod látni és ez fordítva is érvényes." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Letiltott bejegyzés." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "A feljegyző letiltása nem akadályozza meg abban, hogy feljegyzéseket helyezzen a fiókodra." @@ -1309,11 +1377,12 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "A Bluesky nem tudja megerősíteni a létrehozás dátumát." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Klasszikus Bluesky" @@ -1347,6 +1416,14 @@ msgstr "A Bluesky nem fogja mutatni a profilodat és a bejegyzéseidet a kijelen msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "A Bluesky mostantól hitelesíti a jelentős és megbízható fiókokat." +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "A Bluesky közösségi irányelvei" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "A Bluesky frissített közösségi irányelvei" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Képek elhomályosítása és kiszűrés a hírfolyamokból" msgid "Books" msgstr "Könyvek" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "További fiókokat a Felfedezés oldalon találsz" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "További hírfolyamokat a Felfedezés oldalon találsz" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "További javaslatok" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "További javaslatokat a Felfedezés oldalon találsz" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Honlap" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Szerző: {0}" @@ -1428,15 +1502,23 @@ msgstr "Szerző: {0}" msgid "By <0>{0}" msgstr "Szerző: <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "A Folytatás-gomb megnyomásával megerősíted, hogy a fentieket tudomásul vetted és elfogadod a változásokat." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "A folytatással elfogadod a <0>KWS felhasználási feltételeit és tudomásul veszed, hogy a KWS – az <1>adatvédelmi irányelvei függvényében – eltárolja az ellenőrzésed állapotát és az email-címed kivonatát. Ennek köszönhetően legközelebb, ha egy ugyancsak a KWS-t használó alkalmazásba, játékba vagy szolgáltatásba jelentkezel be, már nem kell majd ismét igazolnod az életkorodat." + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "A fiók létrehozásával elfogadod az <0>adatvédelmi irányelveket." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "A fiók létrehozásával elfogadod a <0>felhasználási feltételeket és az <1>adatvédelmi irányelveket." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "A fiók létrehozásával elfogadod a <0>felhasználási feltételeket." @@ -1448,14 +1530,17 @@ msgstr "Saját" msgid "Camera" msgstr "Kamera" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Kamera" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Mégse" @@ -1500,11 +1582,7 @@ msgstr "Fióktörlés megszakítása" msgid "Cancel image crop" msgstr "Képkivágás megszakítása" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Profilszerkesztés megszakítása" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Idézés megszakítása" @@ -1516,14 +1594,10 @@ msgstr "Újraaktiválás megszakítása és kilépés" msgid "Cancel search" msgstr "Keresés megszakítása" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "A hivatkozás megnyitásának megszakítása" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Egy letiltott felhasználóval nem léphetsz kapcsolatba" @@ -1553,17 +1627,12 @@ msgstr "Alkalmazásikon megváltoztatása erre: {0}" msgid "Change app language" msgstr "Alkalmazás nyelvének megváltoztatása" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Email-cím megváltoztatása" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Felhasználónév megváltoztatása" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Címzett megváltoztatása" @@ -1579,14 +1648,6 @@ msgstr "Bejegyzés nyelvének megváltoztatása erre: {suggestedLanguageName}" msgid "Change report reason" msgstr "Jelentési ok megváltoztatása" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Email-cím megváltoztatása" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Email-cím megváltoztatása" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Alkalmazásikon megváltoztatása" @@ -1596,10 +1657,15 @@ msgstr "Alkalmazásikon megváltoztatása" msgid "Changes hosting provider" msgstr "Tárhelyszolgáltató megváltoztatása" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "Változtatások elmentve" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Csevegés" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Törölted a csevegést" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "Csevegési értesítések – néma" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "Csevegési értesítések – hangos" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Elnémítottad a csevegést" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "Csevegési kérelmek" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Csevegési kérelmek" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Csevegések" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Csevegések" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Feloldottad a csevegés némítását" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Csevegések" @@ -1661,7 +1738,7 @@ msgstr "Küldtünk egy emailt. Add meg a benne található ellenőrzőkódot:" msgid "Choose domain verification method" msgstr "Tartományhitelesítési módszer" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Hírfolyamok böngészése" @@ -1669,7 +1746,7 @@ msgstr "Hírfolyamok böngészése" msgid "Choose for me" msgstr "Létrehozás automatikusan" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Személyek kiválasztása" @@ -1685,23 +1762,23 @@ msgstr "Szín használata profilképként" msgid "Choose your account provider" msgstr "Tárhelyszolgáltató megadása" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Válaszd ki, hogy milyen idővonalakat akarsz böngészni! A közösség által épített egyéni hírfolyamok segítenek megtalálni a Téged érdeklő tartalmakat." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Jelszó megadása" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Felhasználónév megadása" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Összes adat törlése" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Összes adat törlése (A program újra fog indulni)" @@ -1714,23 +1791,27 @@ msgstr "Képgyorsítótár ürítése" msgid "Clear search query" msgstr "Keresési kifejezés törlése" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "További információ" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "kattints ide" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "Hitelesítés most." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "Email-cím frissítése" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Kattints ide a bejegyzés idézésének letiltásához." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Kattints ide a bejegyzés idézésének engedélyezéséhez." @@ -1750,14 +1831,16 @@ msgstr "Éghajlat" msgid "Clip 🐴 clop 🐴" msgstr "Kipp 🐴 kopp 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Kipp 🐴 kopp 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Bezárás" @@ -1789,13 +1876,15 @@ msgstr "Figyelmeztetés bezárása" msgid "Close bottom drawer" msgstr "Alsó kinyíló menü bezárása" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Párbeszédablak bezárása" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Oldalsó menü bezárása" @@ -1804,7 +1893,7 @@ msgstr "Oldalsó menü bezárása" msgid "Close emoji picker" msgstr "Emojiválasztó bezárása" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "GIF-párbeszédablak bezárása" @@ -1822,7 +1911,7 @@ msgstr "Képnézegető bezárása" msgid "Close menu" msgstr "Menü bezárása" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Párbeszédablak bezárása" @@ -1830,7 +1919,7 @@ msgstr "Párbeszédablak bezárása" msgid "Closes password update alert" msgstr "Jelszófrissítési figyelmeztetés bezárása" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "A bejegyzésíró bezárása és a piszkozat elvetése" @@ -1843,16 +1932,16 @@ msgstr "Emojiválasztó bezárása" msgid "Closes viewer for header image" msgstr "Borítókép-nézegető bezárása" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Lista összecsukása" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Egy értesítés felhasználólistájának összecsukása" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Színmód" @@ -1870,7 +1959,8 @@ msgstr "Humor" msgid "Comics" msgstr "Képregények" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Közösségi irányelvek" @@ -1879,38 +1969,34 @@ msgstr "Közösségi irányelvek" msgid "Complete onboarding and start using your account" msgstr "Regisztrációs varázsló befejezése és a Bluesky használatának megkezdése" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Biztonsági kihívás" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Új bejegyzés írása" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Egy bejegyzés legfeljebb {0, plural, other{#}} karakter hosszú lehet" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Válaszírás" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Videó tömörítése folyamatban…" -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "A(z) „{name}” tartalomkategória szűrési beállításai" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "A <0>moderálási beállításokban módosítható." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Tartalomnyelvi beállítások megerősítése" msgid "Confirm delete account" msgstr "Fiók törlésének megerősítése" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Életkor megerősítése:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Születési dátum megerősítése" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Születési dátum megerősítése" msgid "Confirmation code" msgstr "Megerősítőkód" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Megerősítőkód" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Csatlakozás folyamatban…" -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "Megszakadt a kapcsolat" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "Kapcsolatfelvétel a moderálási csapattal" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Támogatás" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "Kapcsolat" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Tartalom és média" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Tartalom és média" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Tartalom és média" @@ -1977,7 +2069,8 @@ msgstr "Tartalom és média" msgid "Content Blocked" msgstr "Letiltottad a tartalmat" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Tartalomszűrés" @@ -2006,10 +2099,12 @@ msgstr "Tartalomfigyelmeztetés" msgid "Content warnings" msgstr "Tartalomfigyelmeztetések" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "A környezetérzékeny menü háttere. Kattints ide a menü bezárásához!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Folytatás" msgid "Continue as {0} (currently signed in)" msgstr "Folytatás, mint {0} (Bejelentkezve)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "Válaszlánc folytatása" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Válaszlánc folytatása…" @@ -2029,6 +2129,10 @@ msgstr "Válaszlánc folytatása…" msgid "Continue to next step" msgstr "Következő lépés" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "Beszélgetés" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Vágólapra helyezve" msgid "Copied build version to clipboard" msgstr "Buildszám a vágólapra helyezve" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Buildszám másolása a vágólapra" msgid "Copy" msgstr "Másolás" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "Másolás mégis" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Alkalmazásjelszó másolása" @@ -2087,8 +2187,8 @@ msgstr "Alkalmazásjelszó másolása" msgid "Copy at:// URI" msgstr "„at://” URI másolása" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Szerző DID-jének másolása" @@ -2120,10 +2220,10 @@ msgstr "Hivatkozás másolása" msgid "Copy link to list" msgstr "Lista hivatkozásának másolása" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Bejegyzés hivatkozásának másolása" @@ -2136,18 +2236,18 @@ msgstr "Profil hivatkozásának másolása" msgid "Copy link to starter pack" msgstr "Kezdőcsomag hivatkozásának másolása" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Üzenet szövegének másolása" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Bejegyzés „at://” URI-jének másolása" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Bejegyzés szövegének másolása" @@ -2159,11 +2259,25 @@ msgstr "QR-kód másolása" msgid "Copy TXT record value" msgstr "TXT-rekord értékének másolása" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Jogi irányelvek" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "Megszakadt a kapcsolat az egyéni hírfolyammal" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "Megszakadt a kapcsolat a hírfolyam-szolgáltatóval" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "Ez a profil nem található" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "A csevegés elnémítása meghiúsult" msgid "Could not process your video" msgstr "A videó feldolgozása meghiúsult." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "A mentés meghiúsult. Indoklás: {0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "Az értesítési beállítások frissítése meghiúsult" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Létrehozás" @@ -2195,7 +2317,7 @@ msgstr "QR-kód létrehozása egy kezdőcsomaghoz" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Kezdőcsomag létrehozása" @@ -2205,21 +2327,22 @@ msgstr "Automatikus létrehozás" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Regisztráció" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Regisztráció" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Regisztráció" @@ -2241,7 +2364,7 @@ msgstr "Másik létrehozása" msgid "Create new account" msgstr "Regisztráció" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Jelentés neki: {0}" @@ -2268,7 +2391,7 @@ msgstr "Egyéni" msgid "Customization options" msgstr "Testreszabás" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Add meg, hogy ki léphet kapcsolatba ezzel a bejegyzéssel!" @@ -2278,12 +2401,12 @@ msgstr "A Bluseky-élményed testreszabása" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Sötét" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Sötét" @@ -2292,21 +2415,21 @@ msgstr "Sötét" msgid "Dark mode" msgstr "Sötét mód" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Sötét téma" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Születési dátum" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Fiók deaktiválása" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Moderálási hibakeresés" @@ -2314,7 +2437,7 @@ msgstr "Moderálási hibakeresés" msgid "Debug panel" msgstr "Hibakeresési panel" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Alapértelmezett" @@ -2322,8 +2445,8 @@ msgstr "Alapértelmezett" msgid "Default icons" msgstr "Alapértelmezett ikonok" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Alapértelmezett ikonok" msgid "Delete" msgstr "Törlés" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Fiók törlése" @@ -2355,7 +2478,7 @@ msgstr "Alkalmazásjelszó törlése" msgid "Delete chat" msgstr "Csevegés törlése" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Csevegéskijelentési jegyzőkönyv ürítése" @@ -2370,7 +2493,7 @@ msgstr "Beszélgetés törlése" msgid "Delete Conversation" msgstr "Beszélgetés törlése" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Törlés helyileg" @@ -2378,11 +2501,11 @@ msgstr "Törlés helyileg" msgid "Delete list" msgstr "Lista törlése" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Üzenet törlése" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Üzenet törlése helyileg" @@ -2390,9 +2513,9 @@ msgstr "Üzenet törlése helyileg" msgid "Delete my account" msgstr "Fiók törlése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Bejegyzés törlése" @@ -2409,11 +2532,11 @@ msgstr "Kezdőcsomag törlése" msgid "Delete this list?" msgstr "Lista törlése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Bejegyzés törlése" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Törölt tartalom" @@ -2422,15 +2545,20 @@ msgstr "Törölt tartalom" msgid "Deleted Account" msgstr "Törölt fiók" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "Törölt lista" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Törölted a bejegyzést." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Leírás" @@ -2447,12 +2575,12 @@ msgstr "A leírás túl hosszú. {DESCRIPTION_MAX_GRAPHEMES, plural, other {Korl msgid "Descriptive alt text" msgstr "Helyettesítő szöveg" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Idézet leválasztása" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Idézet leválasztása" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Bekapcsoltad a fejlesztői módot" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Fejlesztői beállítások" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Párbeszédablak: A bejegyzés kapcsolatbalépési jogosultságainak testreszabása" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Félhomályos" @@ -2492,27 +2620,27 @@ msgstr "Emailes kétlépcsős azonosítás kikapcsolása" msgid "Disable Email 2FA" msgstr "Kétlépcsős azonosítás kikapcsolása" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Rezgés letiltása" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Feliratok letiltása" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Letiltva" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Elvetés" @@ -2520,11 +2648,11 @@ msgstr "Elvetés" msgid "Discard changes?" msgstr "Változtatások elvetése" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Piszkozat elvetése" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Bejegyzés elvetése" @@ -2542,7 +2670,7 @@ msgstr "Hírfolyamok felfedezése" msgid "Discover new custom feeds" msgstr "Egyéni hírfolyamok felfedezése" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Új hírfolyamok felfedezése" @@ -2550,7 +2678,7 @@ msgstr "Új hírfolyamok felfedezése" msgid "Dismiss" msgstr "Bezárás" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Hiba bezárása" @@ -2562,26 +2690,26 @@ msgstr "Gyorstalpaló bezárása" msgid "Dismiss interests" msgstr "Érdeklődési körök bezárása" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "Üzenet bezárása" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Szakasz bezárása" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "A helyettesítő szövegek jelvényeinek megnagyobbítása" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Megjelenítendő név" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Megjelenítendő név" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "A megjelenítendő név túl hosszú" @@ -2603,15 +2731,11 @@ msgstr "A követett felhasználók kivételt élveznek a némítás alól" msgid "Does not include nudity." msgstr "Nem ábrázol meztelenséget." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Nem kezdődhet vagy végződhet kötőjellel" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "A tartományellenőrzés kész." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Ha nem rendelkezel kóddal vagy újra van szükséged, <0>kattints ide!" @@ -2619,6 +2743,15 @@ msgstr "Ha nem rendelkezel kóddal vagy újra van szükséged, <0>kattints ideClick here to resend." msgstr "Ha nem kaptad meg, <0>kattints ide egy új email küldéséhez!" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "Ne mutassa többet" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "Ne aggódj! A korábbi üzeneteid és beállításaid nem vesztek el és, miután igazoltad, hogy felnőtt vagy, ismét elérhetővé válnak." + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "Koppints kétszer vagy tartsd lenyomva az üzenetet egy reakció hozzáf msgid "Double tap to close the dialog" msgstr "Koppints kétszer a párbeszédablak bezárásához" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Koppints kétszer a kedveléshez" @@ -2673,7 +2806,7 @@ msgstr "A Bluesky letöltése" msgid "Download CAR file" msgstr "CAR fájl letöltése" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "A csatoláshoz húzd ide a képet!" @@ -2689,18 +2822,10 @@ msgstr "pl.: janos" msgid "e.g. Alice Lastname" msgstr "pl.: Minta Janos" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "pl.: Minta János" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "pl.: janos.hu" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "pl.: Művész, kutyabarát, könyvmoly." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Pl.: művészi meztelen képek." @@ -2725,10 +2850,11 @@ msgstr "pl.: Akik folyton csak reklámokkal válaszolnak." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Mindegyik meghívó csak egyszer használható fel. Időközönként újakat fogsz kapni." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Szerkesztés" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Szerkesztés" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Profilkép szerkesztése" @@ -2749,12 +2875,12 @@ msgstr "Hírfolyamok szerkesztése" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Kép szerkesztése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Kapcsolatbalépési beállítások szerkesztése" @@ -2776,33 +2902,33 @@ msgstr "Élőadásos állapot szerkesztése" msgid "Edit Moderation List" msgstr "Moderálólista szerkesztése" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Hírfolyamgyűjtemény szerkesztése" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Profil szerkesztése" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "{0} értesítéseinek szerkesztése" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Személyek szerkesztése" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "A bejegyzés kapcsolatbalépési beállításainak szerkesztése" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Profil szerkesztése" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Profil szerkesztése" @@ -2814,19 +2940,11 @@ msgstr "Kezdőcsomag szerkesztése" msgid "Edit User List" msgstr "Felhasználólista szerkesztése" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Válaszjogosultsági beállítások szerkesztése" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Megjelenítendő név szerkesztése" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Profilleírás szerkesztése" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Kezdőcsomag szerkesztése" @@ -2839,8 +2957,8 @@ msgstr "Tanítás-tanulás" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "Letiltottad a lista szerzőjét vagy ő tiltott le Téged." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "Email-cím" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "Kikapcsoltad a kétlépcsős azonosítást" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "Kétlépcsős azonosítás bekapcsolva" @@ -2865,10 +2983,6 @@ msgstr "Email újraküldve" msgid "Email sent!" msgstr "Email elküldve!" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "Frissítetted az email-címedet." - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "Az emailes hitelesítés sikeresen befejeződött!" @@ -2883,8 +2997,8 @@ msgstr "HTML-kód beágyazása" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Bejegyzés beágyazása" @@ -2892,7 +3006,7 @@ msgstr "Bejegyzés beágyazása" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Jelenítsd meg ezt a bejegyzést a honlapodon! Másold ki az alábbi kódrészletet és illeszd be a honlapod HTML-kódjába." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Beágyazott videólejátszó" @@ -2906,7 +3020,7 @@ msgstr "Engedélyezés" msgid "Enable {0} only" msgstr "Csak a(z) {0} engedélyezése" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Felnőtt tartalmak engedélyezése" @@ -2919,16 +3033,20 @@ msgstr "Emailes kétlépcsős azonosítás kikapcsolása" msgid "Enable external media" msgstr "Külső médiatartalmak engedélyezése" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Az alábbi külső médialejátszók vannak engedélyezve:" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Előnyben részesített értesítések engedélyezése" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "Egy fiók értesítéseit a profilján, a <0>harang ikonon <1/> keresztül elérhető menüben módosíthatod." -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "Leküldéses értesítések engedélyezése" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Feliratok engedélyezése" @@ -2941,17 +3059,14 @@ msgstr "Csak ezen forrás engedélyezése" msgid "Enable trending topics" msgstr "Felkapott témakörök mutatása" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Felkapott videók mutatása a Követett hírfolyamon" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Felkapott videók mutatása a Követett hírfolyamon." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Engedélyezve" @@ -2963,7 +3078,7 @@ msgstr "A hírfolyam véget ért" msgid "Ensure you have selected a language for each subtitle file." msgstr "Minden feliratfájlhoz rendelj hozzá egy nyelvet!" -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Jelszó megadása" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Szó vagy címke megadása" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "Kód megadása" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Kód megadása" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Belépés teljes képernyős módba" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Add meg a születési dátumod" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Add meg az email-címed" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Add meg alább az új email-címed!" - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Jelszó megadása" @@ -3022,7 +3129,7 @@ msgstr "Jelszó megadása" msgid "Enter your username and password" msgstr "Add meg a felhasználóneved és a jelszavad" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Teljes képernyős mód" @@ -3030,16 +3137,28 @@ msgstr "Teljes képernyős mód" msgid "Entertainment" msgstr "Szórakozás" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Hiba" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "Hiba történt a bejegyzés betöltése közben" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "A betöltés meghiúsult" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "Hibaüzenet" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "A fájl mentése meghiúsult" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "A captcha válaszának fogadása meghiúsult." @@ -3047,27 +3166,34 @@ msgstr "A captcha válaszának fogadása meghiúsult." msgid "Error:" msgstr "Hiba:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "Hiba: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Bárkitől" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Bárki válaszolhat" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Bárki válaszolhat erre a bejegyzésre." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Bárkitől" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "Minden más" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Követett felhasználók kihagyása a szűrésből" msgid "Excludes users you follow" msgstr "A követett felhasználók bejegyzéseit nem szűri" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Kilépés a teljes képernyős módból" @@ -3106,24 +3232,28 @@ msgstr "Képnézegető bezárása" msgid "Expand alt text" msgstr "Helyettesítő szöveg folytatásának mutatása" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Lista kibontása" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "A válasz forrásaként származó bejegyzés kibontása/összecsukása" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "Továbbiak" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Bejegyzés teljes szövegének kibontása/összecsukása" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "Az URI nem old fel egy rekordot" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Kísérleti" @@ -3153,15 +3283,15 @@ msgstr "A nyugalom megzavarására alkalmas képek és videók." msgid "Explicit sexual images." msgstr "Szexuális tartalmakat ábrázoló képek." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "Felfedezés" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Adatok exportálása" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Külső médiatartalom" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "A külső médiatartalmak engedélyezése lehetővé teszi más honlapok számára az adatgyűjtést Rólad vagy az eszközödről. A „Lejátszás” gomb megnyomásáig semmilyen adatot sem küldünk vagy kérünk le." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Külső médiatartalmak" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "A csevegési kérelem elfogadása meghiúsult" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "Az emoji-reakció hozzáfűzése meghiúsult" @@ -3211,8 +3341,8 @@ msgstr "Az alkalmazásjelszó létrehozása meghiúsult. Próbáld újra!" msgid "Failed to create conversation" msgstr "A csevegés törlése meghiúsult" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "A kezdőcsomag létrehozása meghiúsult" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "A csevegés törlése meghiúsult" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Az üzenet törlése meghiúsult" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "A bejegyzés törlése meghiúsult. Próbáld újra!" @@ -3238,8 +3368,8 @@ msgstr "A bejegyzés törlése meghiúsult. Próbáld újra!" msgid "Failed to delete starter pack" msgstr "A kezdőcsomag törlése meghiúsult" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "A csevegések betöltése meghiúsult" @@ -3250,14 +3380,32 @@ msgstr "A csevegések betöltése meghiúsult" msgid "Failed to load feeds preferences" msgstr "A hírfolyambeállítások betöltése meghiúsult" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "A GIF-ek betöltése meghiúsult" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "Az értesítési beállítások betöltése meghiúsult." + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "A korábbi üzenetek betöltése meghiúsult" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "A betöltés meghiúsult." + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Az ajánlott hírfolyamok betöltése meghiúsult" msgid "Failed to load suggested follows" msgstr "A javasolt személyek betöltése meghiúsult" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "A kérelmek megjelölése olvasottként meghiúsult" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "A bejegyzés kitűzése meghiúsult" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "Az emoji-reakció eltávolítása meghiúsult" @@ -3291,15 +3439,11 @@ msgstr "A hitelesítés eltávolítása meghiúsult" msgid "Failed to save image: {0}" msgstr "A kép mentése meghiúsult: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Az értesítési beállítások mentése meghiúsult. Próbáld újra!" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "A beállítások mentése meghiúsult. Próbáld újra!" -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "Az érdeklődési körök mentése meghiúsult." @@ -3318,7 +3462,7 @@ msgstr "Az email elküldése meghiúsult. Próbáld újra!" msgid "Failed to submit appeal, please try again." msgstr "A fellebbezés elküldése meghiúsult. Próbáld újra!" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "A beszélgetés némításának ki-/bekapcsolása meghiúsult. Próbáld újra!" @@ -3335,7 +3479,11 @@ msgstr "Az email-cím frissítése meghiúsult. Próbáld újra!" msgid "Failed to update feeds" msgstr "A hírfolyamok frissítése meghiúsult" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "Az értesítési beállítások frissítése meghiúsult" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "A beállítások mentése meghiúsult" @@ -3354,15 +3502,23 @@ msgstr "Az email-cím hitelesítése meghiúsult. Próbáld újra!" msgid "Failed to verify handle. Please try again." msgstr "A felhasználónév hitelesítése meghiúsult. Próbáld újra!" -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Hírfolyam" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Hírfolyam – Szerző: {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "Hírfolyamszerző" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "Hírfolyam-azonosító" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Hírfolyammenü" @@ -3371,35 +3527,39 @@ msgstr "Hírfolyammenü" msgid "Feed toggle" msgstr "Hírfolyam ki/be" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "A hírfolyam nem elérhető" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Visszajelzés" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Megkaptuk a visszajelzést!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Hírfolyamok" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "A hírfolyamok olyan egyéni algoritmusok, amelyeket felhasználók építenek egy kis programozási tudással. További információért <0/>!" #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "A hírfolyamok frissítése megtörtént" @@ -3428,6 +3588,14 @@ msgstr "Szűrés nyelv alapján" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Szűrés nyelv alapján (Jelenlegi: {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "A saját tevékenységekről szóló értesítések engedélyeinek megszabása" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "Értesítések forrásainak szűrése" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Befejezés folyamatban…" @@ -3448,7 +3616,7 @@ msgstr "Követendő személyek felfedezése" msgid "Find posts, users, and feeds on Bluesky" msgstr "Bejegyzések, felhasználók és hírfolyamok felfedezése a Blueskyon" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Befejezés" @@ -3456,17 +3624,17 @@ msgstr "Befejezés" msgid "Fitness" msgstr "Fitnesz" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Egyszerű Fekete" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Egyszerű Kék" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Egyszerű Fehér" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Rugalmas" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Követés" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "{0} követése" @@ -3518,7 +3686,7 @@ msgstr "Fiók követése" msgid "Follow all" msgstr "Összes követése" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Követés kölcsönzése" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Követés kölcsönzése" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "<0>{0} követi" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "<0>{0} és {1, plural, one {#} other {#}} további személy követi" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "<0>{0} és <1>{1} követi" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "<0>{0}, <1>{1} és {2, plural, one {#} other {#}} további személy követi" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "@{0} általad ismert követői" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Ismert követők" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Követett" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Követett" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Mostantól követed: {0}" @@ -3579,8 +3751,8 @@ msgstr "Mostantól követed: {handle}" msgid "Following feed preferences" msgstr "Követett hírfolyam" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Követett hírfolyam" @@ -3592,11 +3764,11 @@ msgstr "Követ Téged" msgid "Follows You" msgstr "Követ Téged" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Betűtípus" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Betűméret" @@ -3613,7 +3785,7 @@ msgstr "Biztonsági okokból egy ellenőrzőkódot fogunk küldeni az email-cím msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Biztonsági okokból ezt többé nem tekintheted meg. Ha elveszted ezt a jelszót, akkor újat kell létrehoznod." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "A legjobb élmény érdekében a témabetűtípus használatát javasoljuk." @@ -3643,11 +3815,15 @@ msgstr "Elfelejtetted?" msgid "Frequently Posts Unwanted Content" msgstr "Gyakran tesz közzé kéretlen tartalmakat" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "Forrás" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "Forrás: @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "A(z) <0/> hírfolyamból" @@ -3660,14 +3836,68 @@ msgstr "Galéria" msgid "Generate a starter pack" msgstr "Kezdőcsomag létrehozása" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Súgó" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "Értesítés, ha valaki követni kezd Téged." + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "Értesítés, ha valaki kedvel egy bejegyzést, amelyet megosztottál." + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "Értesítés, ha valaki kedveli az egyik bejegyzésedet." + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "Értesítés, ha valaki megemlít Téged." + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "Értesítés, ha valaki idézi az egyik bejegyzésedet." + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "Értesítés, ha valaki válaszol az egyik bejegyzésedre." + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "Értesítés, ha valaki megoszt egy bejegyzést, amelyet megosztottál." + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "Értesítés, ha valaki megosztja az egyik bejegyzésedet." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "Feliratkozás értesítésekre" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Értesülhetsz kívánt fiókok új tevékenységeiről." + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "Feliratkozás {name} új bejegyzéseire" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "Feliratkozás a fiók tevékenységeire" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "Feliratkozás {name} új bejegyzéseire" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "Feliratkozás egy fiók új bejegyzéseire" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "Rendben" @@ -3688,14 +3918,16 @@ msgstr "Adj arcot a profilodnak!" msgid "Glaring violations of law or terms of service" msgstr "A törvény vagy a felhasználási feltételek egyértelmű megszegése" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "Élő adás indítása" msgid "Go live for" msgstr "Élő adás indítása az alábbi időintervallumra:" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "{firstAuthorName} profiljának megnyitása" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "Ugrás a fiókbeállításokhoz" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Ugrás a beszélgetéshez vele: {0}" @@ -3779,8 +4017,8 @@ msgstr "Grafikus médiatartalom" msgid "Half way there!" msgstr "Már félúton vagy!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Felhasználónév" @@ -3797,7 +4035,7 @@ msgstr "Megváltoztattad a felhasználónevedet." msgid "Handle too long. Please try a shorter one." msgstr "Ez a felhasználónév túl hosszú. Adj meg egy rövidebbet!" -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Rezgés" @@ -3806,7 +4044,7 @@ msgstr "Rezgés" msgid "Harassment, trolling, or intolerance" msgstr "Zaklatás, gúnyolódás vagy tűrélytelenség" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Címke" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Címke: {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "Ha már rendelkezel kóddal, <0>kattints ide!" -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Problémába ütköztél?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Súgó" @@ -3839,8 +4077,13 @@ msgstr "Segíts másoknak megbizonyosodni arról, hogy valódi személy vagy egy msgid "Here is your app password!" msgstr "Elkészült az alkalmazásjelszó." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "Szervusz! 👋" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Rejtett tartalom" @@ -3848,16 +4091,16 @@ msgstr "Rejtett tartalom" msgid "Hidden by your moderation settings." msgstr "Elrejtve a moderálási beállítások alapján." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Rejtett lista" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Rejtett lista" msgid "Hide" msgstr "Elrejtés" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Elrejtés" @@ -3875,18 +4118,18 @@ msgstr "Elrejtés" msgid "Hide customization options" msgstr "Testreszabási lehetőségek elrejtése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Bejegyzés elrejtése helyileg" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Válasz elrejtése mindenkinek" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Válasz elrejtése helyileg" @@ -3894,12 +4137,12 @@ msgstr "Válasz elrejtése helyileg" msgid "Hide this card" msgstr "Kártya elrejtése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Bejegyzés elrejtése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Válasz elrejtése" @@ -3913,11 +4156,11 @@ msgstr "Felkapott témakörök elrejtése" msgid "Hide trending topics?" msgstr "Felkapott témakörök elrejtése" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Felkapott videók elrejtése" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Felhasználólista elrejtése" @@ -3926,32 +4169,32 @@ msgstr "Felhasználólista elrejtése" msgid "Hide verification badges" msgstr "Hitelesítési jelvények elrejtése" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Tartalom elrejtése" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm… Hiba történt a hírfolyamkiszolgálóval történő kapcsolatfelvétel közben. Kérjük, értesítsd erről a hírfolyam tulajdonosát!" -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm… Úgy tűnik, hogy a hírfolyamkiszolgáló nincs helyesen beállítva. Kérjük, értesítsd erről a hírfolyam tulajdonosát!" -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm… Úgy tűnik, hogy a hírfolyamkiszolgáló nem elérhető. Kérjük, értesítsd erről a hírfolyam tulajdonosát!" -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm… Úgy tűnik, hogy a hírfolyamkiszolgáló helytelen választ adott. Kérjük, értesítsd erről a hírfolyam tulajdonosát!" -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm… A hírfolyam felkeresése meghiúsult. Lehetséges, hogy már nem létezik." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmmmm… Az adatok betöltése meghiúsult. A részleteket alább láthatod. Ha a probléma fennáll, jelentsd nekünk!" @@ -3959,15 +4202,15 @@ msgstr "Hmmmm… Az adatok betöltése meghiúsult. A részleteket alább látha msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm… Ez a moderálási szolgáltatás nem található." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Egy pillanat! A videófeltöltés lehetősége még nem mindenki számára elérhető. Próbáld újra később!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Kezdőlap" @@ -3984,10 +4227,10 @@ msgstr "Tárhelyszolgáltató" msgid "Hot" msgstr "Felkapott" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "A legfelkapottabb válaszok elöl" @@ -3996,10 +4239,6 @@ msgstr "A legfelkapottabb válaszok elöl" msgid "How should we open this link?" msgstr "Hogyan nyissuk meg ezt a hivatkozást?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Értettem" msgid "If alt text is long, toggles alt text expanded state" msgstr "Hosszabb helyettesítő szövegek mutatása/levágása" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Ha még nem töltötted be az országod által meghatározott nagykorúsági életkort, akkor az alábbi feltételeket a szülődnek vagy törvényes gondviselődnek kell elolvasnia." @@ -4031,11 +4270,11 @@ msgstr "A lista törlése nem vonható vissza." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Ha rendelkezel saját tartománnyal, akkor az is lehet a felhasználóneved. Így magadtól is hitelesítheted a kiléted. <0>További információ." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "Ha frissítened kell az email-címedet, <0>kattints ide." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "A bejegyzés törlése nem vonható vissza." @@ -4047,6 +4286,10 @@ msgstr "Ha frissíted az email-címedet, akkor a jelenleg beállított kétlépc msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "A jelszó megváltoztatásához egy ellenőrzőkódot fogunk küldeni, hogy igazolhasd a kiléted." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "A saját fiókodra vonatkozó értesítési beállításokat a <0>Beállítások → Adatvédelem és biztonság-menüpontban szabhatod személyre." + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "Ha fejlesztő vagy, saját kiszolgálót is üzemeltethetsz." @@ -4091,13 +4334,41 @@ msgstr "Megszemélyesítés vagy a kilétéről/hovatartozásáról szóló val msgid "Impersonation, misinformation, or false claims" msgstr "Megszemélyesítés, dezinformáció vagy valótlan állítások" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "Alkalmazáson belüli" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "Alkalmazáson belüli értesítések" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "Alkalmazáson belüli, mindenkitől" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "Alkalmazáson belüli, az Általad követett személyektől" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "Alkalmazáson belüli, leküldéses" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "Alkalmazáson belüli, leküldéses, mindenkitől" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "Alkalmazáson belüli, leküldéses, az Általad követett személyektől" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Illetlen üzenetek vagy hivatkozások" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "Elfogytak a beérkező üzenetek." @@ -4105,7 +4376,7 @@ msgstr "Elfogytak a beérkező üzenetek." msgid "Incorrect username or password" msgstr "Érvénytelen felhasználónév vagy jelszó" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "A jelszó visszaállításához add meg az emailben kapott ellenőrzőkódot!" @@ -4113,7 +4384,7 @@ msgstr "A jelszó visszaállításához add meg az emailben kapott ellenőrzők msgid "Input confirmation code for account deletion" msgstr "A fiókod törléséhez add meg az ellenőrzőkódot!" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Új jelszó megadása" @@ -4129,10 +4400,14 @@ msgstr "Emailben kapott kód megadása" msgid "Interaction limited" msgstr "A kapcsolatbalépés korlátozott" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Kapcsolatbalépési beállítások" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "Tevékenységértesítések" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Érvénytelen kétlépcsős azonosítási kód." msgid "Invalid handle. Please try a different one." msgstr "Érvénytelen felhasználónév. Adj meg egy másikat!" -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "A megadott bejegyzésrekord érvénytelen vagy nem támogatott" @@ -4158,7 +4433,7 @@ msgstr "Érvénytelen ellenőrzőkód" msgid "Invite a Friend" msgstr "Barát meghívása" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Meghívókód" @@ -4186,15 +4461,15 @@ msgstr "Könnyen oszd meg a barátaiddal a kedvenc hírfolyamaidat és személye msgid "Invites, but personal" msgstr "Olyan, mint egy meghívó, csak személyesebb" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Igen, helyes" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Még csak Te szerepelsz a kezdőcsomagban. A fenti keresővel másokat is hozzáadhatsz." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "Állásazonosító: {0}" @@ -4220,11 +4495,27 @@ msgstr "Csatlakozz hozzánk!" msgid "Journalism" msgstr "Sajtó" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "Feliratkozás értesítésekre" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "A KWS adatvédelmi irányelvei" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "A KWS felhasználási feltételei" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "A KWS honlapja" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Feljegyezte a(z) {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Feljegyezte a szerző." @@ -4237,7 +4528,7 @@ msgstr "Feljegyzések" msgid "Labels added" msgstr "Alkalmaztad a feljegyzéseket" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "A feljegyzések felhasználókra és tartalmakra elhelyezett különleges címkék. A hálózat ezeket használja a különböző tartalmak kategóriákba sorolására, elrejtésére és a megtekintés előtti figyelmeztetések megjelenítésére." @@ -4253,22 +4544,30 @@ msgstr "A tartalmadra helyezett feljegyzések" msgid "Language selection" msgstr "Nyelvválasztás" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Nyelvi beállítások" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Nyelvek" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Nagyobb" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "Legutóbbi kérelem: {timeAgo}" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "Legutóbbi kérelem: épp most" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Legújabb" @@ -4282,7 +4581,6 @@ msgstr "további információ" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "További információ" @@ -4290,6 +4588,10 @@ msgstr "További információ" msgid "Learn More" msgstr "További információ" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "További információ az életkor-igazolásról" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "További információ a Blueskyról" @@ -4298,15 +4600,23 @@ msgstr "További információ a Blueskyról" msgid "Learn more about self hosting your PDS." msgstr "További információ a személyes adatkiszolgálók üzemeltetéséről." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "További információ a tartalommoderálásról" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "További információ a tartalommoderálásról." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "A változtatásokról és a visszajelzés mikéntjéről a <0>blogbejegyzésünkben olvashatsz (angol nyelven)." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "A változtatásokról és a visszajelzés mikéntjéről a blogbejegyzésünkben olvashatsz (angol nyelven)." + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "További információ erről a figyelmeztetésről" @@ -4316,12 +4626,16 @@ msgstr "További információ erről a figyelmeztetésről" msgid "Learn more about verification on Bluesky" msgstr "További információ a Blueskyos hitelesítésől" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "További információ a Bluesky-tartalmak nyilvánosságáról." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "További információ a <0>fiókbeállításokban." + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "További információ." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Beszélgetés elhagyása" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." +msgid "Leave them all unselected to see any language." msgstr "Az összes nyelv megjelenítéséhez kapcsolj ki minden nyelvet." -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "A Bluesky elhagyása" @@ -4370,7 +4685,7 @@ msgstr "Gyerünk!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Világos" @@ -4381,10 +4696,10 @@ msgstr "Világos" #: src/screens/Profile/components/ProfileFeedHeader.tsx:518 msgid "Like" -msgstr "Kedvelés" +msgstr "Tetszik" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Tetszik ({0, plural, one {# kedvelés} other {# kedvelés}})" @@ -4397,6 +4712,10 @@ msgstr "Kedvelj 10 megjegyzést!" msgid "Like 10 posts to train the Discover feed" msgstr "Kedvelj 10 megjegyzést a Követett hírfolyam idomításához!" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "Értesítések kedvelésekről" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Hírfolyam kedvelése" @@ -4405,8 +4724,8 @@ msgstr "Hírfolyam kedvelése" msgid "Like this labeler" msgstr "Feljegyző kedvelése" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Kedvelők" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Kedvelők" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, one {#} other {#}} felhasználó kedveli" @@ -4428,20 +4747,36 @@ msgstr "{0, plural, one {#} other {#}} felhasználó kedveli" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, one {#} other {#}} felhasználó kedveli" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Kedvelések" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "Megosztott bejegyzések kedvelése" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "Értesítések megosztott bejegyzések kedveléséről" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "A bejegyzést kedvelők" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Egyszerű" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Lista" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Letiltottad a listán szereplő személyeket" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Lista – Szerző: {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "Lista – Szerző: <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Lista – Saját" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "Listaszerző" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Feloldottad a listán szereplő személyek némítását" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Listák" @@ -4537,7 +4876,7 @@ msgstr "Továbbiak" msgid "Load more suggested feeds" msgstr "További javasolt hírfolyamok" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Új értesítések betöltése" @@ -4552,11 +4891,11 @@ msgstr "Új bejegyzések betöltése" msgid "Loading..." msgstr "Betöltés…" -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Napló" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Láthatóság kijelentkezett felhasználók számára" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "A logó szerzője: @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "A logó szerzője: <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "A logó szerzője: <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Tartsd lenyomva a(z) #{tag} címkét a menü megnyitásához" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Minta: XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "A fiók email-beállításainak testreszabása" msgid "Make one for me" msgstr "Automatikus létrehozás" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Ellenőrizd, hogy biztosan ide akarsz-e menni!" @@ -4606,7 +4945,7 @@ msgstr "Ellenőrizd, hogy biztosan ide akarsz-e menni!" msgid "Manage saved feeds" msgstr "Elmentett hírfolyamok kezelése" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "Hitelesítési beállítások" @@ -4614,9 +4953,9 @@ msgstr "Hitelesítési beállítások" msgid "Manage your muted words and tags" msgstr "Elnémított szavak és címkék kezelése" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "Összes megjelölése olvasottként" @@ -4625,15 +4964,13 @@ msgstr "Összes megjelölése olvasottként" msgid "Mark as read" msgstr "Megjelölés olvasottként" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "Az összes üzenetet megjelölted olvasottként" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "Talán később" @@ -4645,19 +4982,26 @@ msgstr "Média" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "A nyugalom megzavarására alkalmas vagy felnőtt témákat ábrázoló médiatartalom." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "Megemlítési értesítések" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "a megemlített felhasználók" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "A megemlített felhasználóktól" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Említések" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Menü" @@ -4665,7 +5009,7 @@ msgstr "Menü" msgid "Message {0}" msgstr "Üzenetküldés neki: {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Törölted az üzenetet" @@ -4674,11 +5018,11 @@ msgstr "Törölted az üzenetet" msgid "Message deleted" msgstr "Törölted az üzenetet" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "@{0} üzenete: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "A kiszolgáló üzenete: {0}" @@ -4691,19 +5035,23 @@ msgstr "Üzenetbeviteli mező" msgid "Message is too long" msgstr "Az üzenet túl hosszú" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "Üzenetlehetőségek" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Üzenetek" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Éjfél" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "Egyéb értesítések" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Félrevezető fiók" msgid "Misleading Post" msgstr "Félrevezető bejegyzés" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderálás" @@ -4725,17 +5073,17 @@ msgstr "Moderálás" msgid "Moderation details" msgstr "Moderálási részletek" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Moderálólista – Szerző: {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Moderálólista – Szerző: <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Moderálólista – Saját" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Frissítetted a moderálólistát" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Moderálólisták" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Moderálólisták" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "moderálási beállítások" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Moderálási állapotok" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Moderálási eszközök" @@ -4775,7 +5123,7 @@ msgstr "Moderálási eszközök" msgid "Moderator has chosen to set a general warning on the content." msgstr "Ezen a tartalmon általános figyelmeztetés van érvényben, egy moderátor döntése alapján." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Továbbiak" @@ -4790,13 +5138,13 @@ msgstr "További hírfolyamok" msgid "More options" msgstr "További lehetőségek" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "A legtöbb kedveléssel rendelkező válaszok elöl" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "A legtöbb kedveléssel rendelkező válaszok elöl" @@ -4808,8 +5156,8 @@ msgstr "Filmek" msgid "Music" msgstr "Zene" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Elnémítás" @@ -4819,8 +5167,8 @@ msgstr "Elnémítás" msgid "Mute {tag}" msgstr "A(z) {tag} címke elnémítása" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Szó elnémítása csak címkékben" msgid "Mute this word until you unmute it" msgstr "Szó elnémítása a némítás feloldásáig" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Válaszlánc elnémítása" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Szavak és címkék elnémítása" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Elnémított fiókok" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Elnémított fiókok" @@ -4898,7 +5246,7 @@ msgstr "Egy elnémított fiók nem fog megjelenni a hírfolyamaidban és nem kap msgid "Muted by \"{0}\"" msgstr "Némítás forrása: {0}" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Elnémított szavak és címkék" @@ -4911,7 +5259,7 @@ msgstr "Egy fiók elnémítása nem nyilvános. Egy elnémított felhasználó k msgid "My Birthday" msgstr "Születésnap megadása" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Hírfolyamgyűjtemény" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Természet" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Ugrás: {0}" @@ -4958,11 +5306,11 @@ msgstr "Ugrás a következő képernyőre" msgid "Navigates to your profile" msgstr "Ugrás a profilodra" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Meg akarod változtatni?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "Szerzőijog-sértést, jogi követelést vagy szabályzatszegést jelentenél?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "A szerzői jog megszegését akarod jelenteni?" @@ -4977,29 +5325,47 @@ msgstr "Mégse – hozzon létre egy felhasználónevet automatikusan" #: src/screens/Search/modules/ExploreTrendingTopics.tsx:199 msgid "New" -msgstr "Létrehozás" +msgstr "Új" #: src/view/screens/Lists.tsx:77 #: src/view/screens/ModerationModlists.tsx:77 msgctxt "action" msgid "New" -msgstr "Létrehozás" +msgstr "Új" + +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "{firstAuthorLink} új {postsCount, plural, one {bejegyzést} other {bejegyzéseket}} tett közzé" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "{firstAuthorName} új {postsCount, plural, one {bejegyzést} other {bejegyzéseket}} tett közzé" #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Új csevegés" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "Új email-cím" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "Új funkció" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "Értesítések új követőkről" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "Új követők" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Új üzenetek" msgid "New Moderation List" msgstr "Moderálólista létrehozása" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Új jelszó" @@ -5029,7 +5396,7 @@ msgstr "Új jelszó" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Új bejegyzés" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Új bejegyzés" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy új bejegyzéseket tett közzé" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy új bejegyzéseket tett közzé" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Új felhasználó információs párbeszédablaka" @@ -5054,10 +5429,14 @@ msgstr "Új felhasználó információs párbeszédablaka" msgid "New User List" msgstr "Felhasználólista létrehozása" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "A legújabb válaszok elöl" @@ -5071,15 +5450,15 @@ msgstr "Hírek" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "DNS-panel nélkül" msgid "No expiry set" msgstr "Nem jár le" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "A kiemelt GIF-ek lekérése meghiúsult. Lehetséges, hogy ez a Tenor hibája." @@ -5119,32 +5498,35 @@ msgstr "Nincs előnézet" msgid "No likes yet" msgstr "Még nincsenek kedvelések" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Abbahagytad {0} követését" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "Legfeljebb {MAX_SERVICE_HANDLE_LENGTH, plural, other {# karakter}}" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Még nincsenek üzenetek" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Még nincsenek értesítéseid!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Senkitől" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Ezt a bejegyzést csak a szerző idézheti." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "Még nincsenek bejegyzések" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Még nincsenek bejegyzések." @@ -5171,7 +5553,7 @@ msgstr "Nincs találat" msgid "No results for \"{0}\"." msgstr "A(z) „{0}”-kifejezésre nincs találat." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Nincs találat" @@ -5179,9 +5561,9 @@ msgstr "Nincs találat" msgid "No results found for \"{query}\"" msgstr "A(z) „{query}”-kifejezésre nincs találat" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "A(z) „{query}”-kifejezésre nincs találat" @@ -5189,7 +5571,7 @@ msgstr "A(z) „{query}”-kifejezésre nincs találat" msgid "No results." msgstr "Nincs találat." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "A(z) „{search}”-kifejezésre nincs találat." @@ -5198,7 +5580,7 @@ msgstr "A(z) „{search}”-kifejezésre nincs találat." msgid "No thanks" msgstr "Köszönöm, nem" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Senkitől" @@ -5221,61 +5603,78 @@ msgstr "Nincs találat. Próbálj rákeresni valaki másra!" #: src/lib/moderation/useGlobalLabelStrings.ts:42 msgid "Non-sexual Nudity" -msgstr "Nem szexuális meztelenség" +msgstr "Nemszexuális meztelenség" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "Nincs" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "Nincsenek ismert követők" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Ez a tartalom nem található" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Korlátozott láthatóság" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Megjegyzés: A Bluesky egy nyílt és nyilvános hálózat. Ez a beállítás csak a Bluesky alkalmazásban és -honlapon korlátozza a tartalmaid láthatóságát és nem biztos, hogy más alkalmazások is tiszteletben tartják. Lehetséges, hogy más alkalmazásokban és honlapokon ugyanúgy láthatóak maradnak a tartalmaid kijelentkezett felhasználók számára is." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "Megjegyzés: Ez a bejegyzés csak a bejelentkezett felhasználók számára látható." + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Nincs itt semmi" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Értesítések szűrése" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Értesítési beállítások" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Értesítési beállítások" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Értesítési hangok" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Értesítési hangok" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Értesítések" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "Értesítés egyéb történésekről; pl. ha valaki az egyik kezdőcsomagoddal regisztrál." + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "épp most" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Nem megjelölt meztelenség vagy felnőtt tartalom" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Ki" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Jaj, ne!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "OK" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Oké" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "A legrégebbi válaszok elöl" @@ -5331,19 +5736,19 @@ msgstr "A legrégebbi válaszok elöl" msgid "on<0><1/><2><3/>" msgstr "ekkor:<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Alaphelyzetbe állítottad a regisztrációs varázslót" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "Legalább egy GIF-ről hiányzik a helyettesítő szöveg." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Legalább egy képről hiányzik a helyettesítő szöveg." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Legalább egy videóról hiányzik a helyettesítő szöveg." @@ -5351,13 +5756,15 @@ msgstr "Legalább egy videóról hiányzik a helyettesítő szöveg." msgid "Only .jpg and .png files are supported" msgstr "Csak a .jpg és a .png formátumok támogatottak" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Csak {0} válaszolhatnak." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Csak az angol ábécé betűit, számokat és kötőjeleket tartalmazhat" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "Csak a kölcsönös követőktől" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Csak a képfájlok támogatottak" msgid "Only WebVTT (.vtt) files are supported" msgstr "Csak a WebVTT (.vtt) formátum támogatott" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Hoppá! Valami balul sült el!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Hoppá!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Oldalsó menü megnyitása" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Emojiválasztó megnyitása" @@ -5416,7 +5822,7 @@ msgstr "Hírfolyambeállítások megnyitása" msgid "Open full emoji list" msgstr "Teljes emojilista megnyitása" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "A(z) {niceUrl} hivatkozás megnyitása" @@ -5424,11 +5830,11 @@ msgstr "A(z) {niceUrl} hivatkozás megnyitása" msgid "Open message options" msgstr "Üzenetlehetőségek megnyitása" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Moderálási hibakeresési oldal megnyitása" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Elnémított szavak és címkék beállításainak megnyitása" @@ -5453,16 +5859,16 @@ msgstr "Továbbítási menü megnyitása" msgid "Open starter pack menu" msgstr "Kezdőcsomag-menü megnyitása" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Mesekönyv-oldal megnyitása" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Rendszernapló megnyitása" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "{numItems} lehetőség megnyitása" @@ -5490,11 +5896,11 @@ msgstr "Az eszköz kamerájának megnyitása" msgid "Opens captions and alt text dialog" msgstr "Feliratokat és helyettesítő szöveget tartalmazó ablak megnyitása" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Felhasználónév-megváltoztatási párbeszédablak megnyitása" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Bejegyzésíró megnyitása" @@ -5502,7 +5908,7 @@ msgstr "Bejegyzésíró megnyitása" msgid "Opens device photo gallery" msgstr "Az eszköz fényképgalériájának megnyitása" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Emojiválasztó megnyitása" @@ -5520,15 +5926,19 @@ msgstr "Bejelentkezési varázsló megnyitása" msgid "Opens GIF select dialog" msgstr "GIF-választó párbeszédablak megnyitása" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Támogatási hivatkozás megnyitása böngészőben" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "A(z) „{0}”-hivatkozás megnyitása" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "A meghívókódok listájának megnyitása" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "Élőadásos állapoti párbeszédablak megnyitása" @@ -5536,12 +5946,8 @@ msgstr "Élőadásos állapoti párbeszédablak megnyitása" msgid "Opens password reset form" msgstr "Jelszóvisszaállítási űrlap megnyitása" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Hivatkozás megnyitása" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Saját profil megnyitása" @@ -5558,7 +5964,7 @@ msgstr "Lehetőséged van megadni az alábbi információt is (Nem kötelező):" msgid "Options:" msgstr "További lehetőségek:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Az alábbi lehetőségek közül egyszerre többet is kijelölhetsz:" @@ -5598,7 +6004,11 @@ msgstr "Másik fiók" #: src/view/com/composer/select-language/SelectLangBtn.tsx:93 msgid "Other..." -msgstr "Egyebek…" +msgstr "Továbbiak…" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "Blogbejegyzés" #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." @@ -5608,7 +6018,7 @@ msgstr "Megkaptuk a jelentésedet." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "A fiókod ellen jelentések érkeztek, és miután a moderátoraink felülvizsgálták őket, úgy döntöttek, hogy megfosztanak a csevegési jogosultságoktól a Blueskyon." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Az oldal nem található" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Az oldal nem található" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Megváltoztattad a jelszavad" msgid "Password updated!" msgstr "Megváltoztattad a jelszavad!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Szünet" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Videó szüneteltetése" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Személyek" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "A(z) @{0} által követett személyek" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Az őt követő személyek: @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "Követett személyektől" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "A galéria hozzáférését megtagadták. Engedélyezd a rendszerbeállításokban!" @@ -5704,12 +6119,12 @@ msgstr "Kitűzés a kezdőlapra" msgid "Pin to Home" msgstr "Kitűzés a kezdőlapra" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Kitűzés a profilodra" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Kitűzve" @@ -5718,7 +6133,7 @@ msgstr "Kitűzve" msgid "Pinned {0} to Home" msgstr "Kitűzted a(z) {0} hírfolyamot" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Kitűzött hírfolyamok" @@ -5726,38 +6141,38 @@ msgstr "Kitűzött hírfolyamok" msgid "Pinned to your feeds" msgstr "Kitűzted a hírfolyamot" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Lejátszás" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "{0} lejátszása" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Videó lejátszása" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Videó lejátszása" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "GIF lejátszása/szüneteltetése" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Videó lejátszása/szüneteltetése" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "GIF lejátszása" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Videó lejátszása" @@ -5765,12 +6180,16 @@ msgstr "Videó lejátszása" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "Jelöld ki a releváns tartalomfigyelmeztetési kategóriákat!" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "A következő lépéseket emailben fogod megkapni. Lehetséges, hogy csak egy–két perc múlva érkezik meg." + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Válassz ki egy felhasználónevet!" #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Válassz ki egy jelszót!" @@ -5782,7 +6201,8 @@ msgstr "Kérjük, kattints a tőlünk kapott emailben található hivatkozásra msgid "Please complete the verification captcha." msgstr "Végezd el a captchás ellenőrzést!" -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Kérjük ellenőrizd, hogy az email-cím helyesen van megadva!" @@ -5804,6 +6224,7 @@ msgstr "Nevezd el egyedien az alkalmazásjelszót vagy használd a véletlenszer msgid "Please enter a valid code." msgstr "A megadott kód érvénytelen." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "A megadott email-cím érvénytelen." @@ -5812,7 +6233,11 @@ msgstr "A megadott email-cím érvénytelen." msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Adj meg egy érvényes elnémítandó szót, címkét vagy kifejezést!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "Kérjük, egy érvényes és nem átmeneti email-címet adj meg! Lehetséges, hogy a jövőben is szükséged lesz rá." + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "Add meg a(z) <0>{0}-címre küldött kódot!" @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "Add meg a korábbi email-címedre küldött kódot!" #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Add meg az email-címed!" -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Add meg a meghívókódod!" @@ -5853,6 +6278,19 @@ msgstr "Magyarázd el, hogy miért gondolod úgy, hogy a(z) {0} helytelenül alk msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Magyarázd el, hogy miért gondolod úgy, hogy jogtalanul fosztottak meg a csevegési jogosultságodtól" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "Az aktív tartalom elejére ugráshoz aktiváld ezt az elemet vagy nyomd meg a Vissza-gombot!" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "Ha van bármi olyan információ, amire a moderátoroknak szüksége lehet a helyes életkor-igazoláshoz, kérjük add meg!" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "Válassz ki egy nyelvet!" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "Moderálási szolgáltatás megadása" @@ -5870,9 +6308,9 @@ msgstr "Jelentkezz be, mint @{0}!" msgid "Please verify your email" msgstr "Email-cím visszaigazolása" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Igazold vissza az email-címed!" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "Üzenet megadása:" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Politika" msgid "Porn" msgstr "Pornó" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Közzététel" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Bejegyzés" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Közzététel" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Összes közzététele" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "Letiltott bejegyzés" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "{0} bejegyzése" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "@{0} bejegyzése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Törölted a bejegyzést" @@ -5919,11 +6362,14 @@ msgstr "Törölted a bejegyzést" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "A bejegyzés közzététele meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "Ezt a bejegyzést törölték." -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Elrejtetted a bejegyzést" @@ -5937,11 +6383,11 @@ msgstr "Bejegyzés elrejtve egy elnémított szó által" msgid "Post Hidden by You" msgstr "Elrejtetted a bejegyzést" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Kapcsolatbalépési beállítások" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Kapcsolatbalépési beállítások" @@ -5954,8 +6400,10 @@ msgstr "A bejegyzés nyelve" msgid "Post Languages" msgstr "A bejegyzés nyelvei" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "A bejegyzés nem található" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Feloldottad a bejegyzés kitűzését" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Bejegyzések" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "A különböző bejegyzéseket a szövegük, címkéik vagy mindkettő által is elnémíthatod. Javasoljuk a gyakori szavak kerülését, mivel ez bizonyos esetekben az összes bejegyzés elrejtését is eredményezheti." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Elrejtetted a bejegyzéseket" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "Bejegyzések, válaszok" + +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" msgstr "Potenciálisan félrevezető hivatkozás" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Módosítottad a beállításokat" +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "„Potenciálisan félrevezető hivatkozás”-figyelmeztetés" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Az újracsatlakozáshoz kattints ide!" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Az újrapróbálkozáshoz kattints ide!" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Kattints ide a fiók azon követőinek megjelenítéséhez, akiket Te is követsz!" @@ -6015,40 +6469,46 @@ msgstr "Előző kép" msgid "Primary Language" msgstr "Elsődleges nyelv" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Követett személyek előnyben részesítése" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Előnyben részesített értesítések" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Adatvédelem" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Adatvédelem és biztonság" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Adatvédelem és biztonság" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "Adatvédelmi- és biztonsági beállítások" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Adatvédelmi irányelvek" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Videó feldolgozása folyamatban…" @@ -6062,15 +6522,14 @@ msgstr "Feldolgozás folyamatban…" msgid "profile" msgstr "profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Profil" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Frissítetted a profilodat" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Nyilvános, megosztható listák, amelyek hírfolyamként üzemelhetnek." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "Bejegyzés közzététele" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "Bejegyzések közzététele" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "Válaszok közzététele" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "Válasz közzététele" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "Leküldéses" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "Leküldéses értesítések" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "Leküldéses, mindenkitől" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "Leküldéses, az Általad követett személyektől" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "A QR-kód vágólapra másolása megtörtént" @@ -6119,44 +6594,52 @@ msgstr "A QR-kód letöltése megtörtént" msgid "QR code saved to your camera roll!" msgstr "A QR-kód fényképalbumba mentése megtörtént" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "Értesítések idézésekről" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Idézés" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "Visszakapcsoltad az idézetet" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "Leválasztottad az idézetet" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Idézés letiltva" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Idézési beállítások" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Idézések" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "A bejegyzés idézései" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Véletlenszerű (más néven: „Közzétevői rulett”)" @@ -6164,8 +6647,8 @@ msgstr "Véletlenszerű (más néven: „Közzétevői rulett”)" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Korlát átlépve – rövid időn belül túl sokszor próbáltad megváltoztatni a felhasználónevedet. Várj egy kicsit, mielőtt újra megkísérelnéd!" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Idézet visszakapcsolása" @@ -6177,30 +6660,42 @@ msgstr "Reagálás a(z) {emoji}-emojival" msgid "Reactivate your account" msgstr "Fiók újraaktiválása" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "{0} további {1, plural, one {} other {}}válasz megjelenítése" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Blogbejegyzés megtekintése (angolul)" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Kevesebb" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Több" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "További válaszok megjelenítése" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "Blogbejegyzés megtekintése" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "A Bluesky blog megnyitása (angolul)" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "A Bluesky adatvédelmi irányelveinek megtekintése" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "A Bluesky felhasználói feltételeinek megtekintése" @@ -6213,6 +6708,14 @@ msgstr "Fellebbezési ok" msgid "Reason:" msgstr "Indoklás:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "Alkalmazáson belüli értesítések fogadása" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "Leküldéses értesítések fogadása" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Keresési előzmények" @@ -6234,8 +6737,8 @@ msgstr "Elutasítás" msgid "Reject chat request" msgstr "Csevegési kérelem elutasítása" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Beszélgetések újratöltése" @@ -6244,10 +6747,9 @@ msgstr "Beszélgetések újratöltése" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Eltávolítás" @@ -6259,17 +6761,17 @@ msgstr "{displayName} eltávolítása a kezdőcsomagból" msgid "Remove {historyItem}" msgstr "{historyItem} törlése" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Fiók eltávolítása" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Melléklet eltávolítása" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Profilkép eltávolítása" @@ -6284,24 +6786,22 @@ msgstr "Beágyazott tartalom eltávolítása" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Hírfolyam eltávolítása" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Hírfolyam eltávolítása" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Eltávolítás a hírfolyamgyűjteményből" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Eltávolítás a fióklistáról" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "Eltávolítás az elmentett hírfolyamok közül" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "Eltávolítás a hírfolyamgyűjteményből" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Kép eltávolítása" @@ -6332,12 +6831,8 @@ msgstr "Szó némításának feloldása" msgid "Remove profile" msgstr "Profil eltávolítása" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Idézet eltávolítása" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Megosztott bejegyzés eltávolítása" @@ -6345,7 +6840,7 @@ msgstr "Megosztott bejegyzés eltávolítása" msgid "Remove subtitle file" msgstr "Feliratfájl eltávolítása" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Eltávolítás az elmentett hírfolyamok közül" @@ -6364,11 +6859,11 @@ msgstr "Hitelesítés eltávolítása" msgid "Remove your verification for this account?" msgstr "Biztosan el akarod távolítani a hitelesítésedet erről a fiókról?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Eltávolította a szerző" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Eltávolítottad ezt a tartalmat" @@ -6377,10 +6872,6 @@ msgstr "Eltávolítottad ezt a tartalmat" msgid "Removed from list" msgstr "Levetted a személyt a listáról" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Eltávolítottad a hírfolyamot a gyűjteményedből" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Eltávolítottad a hírfolyamot az elmentett hírfolyamok közül" @@ -6395,34 +6886,36 @@ msgstr "Eltávolítottad a hírfolyamot a gyűjteményedből" msgid "Removed verification" msgstr "Eltávolítottad a hitelesítést" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Idézett bejegyzés eltávolítása" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Kicserélés a Felfedezés hírfolyamra" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Válaszok" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Válaszadás letiltva" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "A bejegyzés alatti válaszadás le van tiltva." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Válasz közzététele" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Válasz írása ({0, plural, one {# válasz} other {# válasz}})" @@ -6436,50 +6929,55 @@ msgstr "Elrejtve a válaszlánc szerzője által" msgid "Reply Hidden by You" msgstr "Elrejtve Általad" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "Értesítések válaszokról" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Válaszbeállítások" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "A teljes válaszlánc beállításait az eredeti szerző kezeli" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Válaszok rendezése" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Válasz neki: <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Válasz egy letiltott bejegyzésre" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Válasz egy bejegyzésre" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Válasz a bejegyzésedre" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Frissítetted a válasz láthatóságát" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Elrejtetted a választ" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Hírfolyam jelentése" msgid "Report list" msgstr "Lista jelentése" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Üzenet jelentése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Bejegyzés jelentése" @@ -6567,25 +7065,26 @@ msgstr "Kezdőcsomag jelentése" msgid "Report this user" msgstr "Felhasználó jelentése" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Megosztás" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Megosztás" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Megosztás ({0, plural, one {# megosztás} other {# megosztás}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "Értesítések megosztásokról" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Megosztás vagy idézet" @@ -6594,35 +7093,47 @@ msgstr "Megosztás vagy idézet" msgid "Reposted By" msgstr "Megosztók" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "{0} megosztotta" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "<0><1/> megosztotta" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Megosztottad" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "Megosztások" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "A bejegyzés megosztásai" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "Megváltoztatás kérelmezése" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "Megosztott bejegyzések megosztása" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "Értesítések megosztott bejegyzések megosztásáról" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "Kód kérelmezése" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Helyettesítő szöveg hozzáadásának megkövetelése közzététel előtt" @@ -6630,7 +7141,7 @@ msgstr "Helyettesítő szöveg hozzáadásának megkövetelése közzététel el msgid "Require an email code to sign in to your account." msgstr "Emailben kapott kód megkövetelése a bejelentkezéshez." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Szükséges a tárhelyszolgáltatóhoz" @@ -6642,10 +7153,6 @@ msgstr "Szükséges ebben a régióban" msgid "Resend" msgstr "Újraküldés" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Email újraküldése" msgid "Resend Verification Email" msgstr "Visszaigazoló email újraküldése" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "Tevékenységértesítés-feliratkozási jelző alaphelyzetbe állítása" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Helyreállítási kód" @@ -6667,8 +7180,8 @@ msgstr "Helyreállítási kód" msgid "Reset Code" msgstr "Helyreállítási kód" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Regisztrációs varázsló állapotának alaphelyzetbe állítása" @@ -6687,21 +7200,23 @@ msgstr "A legutóbb meghiúsult folyamat újrapróbálása" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Újra" @@ -6721,19 +7236,19 @@ msgstr "Vissza a kezdőlapra" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Vissza az előző oldalra" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Vissza az előző lépéshez" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Vissza az előző lépéshez" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Mentés" @@ -6762,15 +7276,13 @@ msgstr "Mentés" msgid "Save birthday" msgstr "Születésnap elmentése" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Változtatások mentése" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Változtatások mentése" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "QR-kód mentése" msgid "Save to my feeds" msgstr "Mentés a hírfolyamgyűjteménybe" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Elmentett hírfolyamok" @@ -6802,18 +7314,14 @@ msgstr "Elmentett hírfolyamok" msgid "Saved to your feeds" msgstr "Elmentetted a hírfolyamot a gyűjteményedbe" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "A profilon végzett változtatások mentése" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Képkivágási beállítások mentése" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Köszönj!" @@ -6826,16 +7334,16 @@ msgstr "Tudomány" msgid "Scroll to top" msgstr "Vissza a tetejére" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Keresés" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Keresés @{0} bejegyzései között" @@ -6861,7 +7369,7 @@ msgstr "Keresés: {query}" msgid "Search for \"{searchText}\"" msgstr "Keresés: {searchText}" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Ajánlható hírfolyamok keresése." @@ -6877,10 +7385,14 @@ msgstr "További hírfolyamok keresése" msgid "Search for posts, users, or feeds" msgstr "Bejegyzések, fiókok és hírfolyamok keresése" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "GIF-ek keresése" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "A kereséshez jelenleg bejelentkezés szükséges" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Keresés a saját bejegyzések között" @@ -6890,12 +7402,12 @@ msgstr "Keresés a saját bejegyzések között" msgid "Search posts" msgstr "Keresés a bejegyzések között" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Profilok keresése" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Keresés a Tenoron" @@ -6903,7 +7415,7 @@ msgstr "Keresés a Tenoron" msgid "Search..." msgstr "Keresés…" -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Profilok keresése" @@ -6912,10 +7424,6 @@ msgstr "Profilok keresése" msgid "Security step required" msgstr "Biztonsági lépés szükséges" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Biztonsági lépés szükséges" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "A(z) {tag} címkével ellátott bejegyzések megtekintése" @@ -6936,14 +7444,31 @@ msgstr "A felhasználó #{tag} címkével ellátott bejegyzéseinek megtekintés msgid "See jobs at Bluesky" msgstr "Állások a Blueskynál" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "Továbbiak" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "További javasolt fiókok" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "A Felfedezés-oldalon további javasolt fiókok tekinthetőek meg" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "kattints ide" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Lejátszásvezérlő sáv. Az előre-/visszatekeréshez használd a nyílbillentyűket és a szüneteltetéshez/lejátszáshoz nyomd meg a szóközt." +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "{0} kiválasztása" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Szín kiválasztása" @@ -6988,7 +7513,7 @@ msgstr "Fiók kiválasztása" msgid "Select GIF" msgstr "GIF kiválasztása" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "„{0}” GIF kiválasztása" @@ -6996,6 +7521,11 @@ msgstr "„{0}” GIF kiválasztása" msgid "Select how long to mute this word for." msgstr "Add meg, hogy milyen sokáig legyen ez a szó elnémítva!" +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "Nyelv kiválasztása" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Nyelv kiválasztása…" @@ -7004,7 +7534,7 @@ msgstr "Nyelv kiválasztása…" msgid "Select languages" msgstr "Nyelvek kiválasztása" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "Moderálási szolgáltatás kiválasztása" @@ -7045,12 +7575,12 @@ msgstr "Add meg, hogy milyen nyelven szeretnéd az alkalmazást használni." msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Add meg, hogy milyen nyelveken szeretnél tartalmakat látni a hírfolyamaidban. Ha egy nyelvet sem jelölsz ki, akkor minden bejegyzés láthatóvá válik." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Születési dátum megadása" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Válaszd ki az érdeklődési köreidet az alábbi lehetőségek közül!" @@ -7058,7 +7588,11 @@ msgstr "Válaszd ki az érdeklődési köreidet az alábbi lehetőségek közül msgid "Select your preferred language for translations in your feed." msgstr "Add meg, hogy milyen nyelvre szeretnéd lefordítani a bejegyzéseket." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "Kívánt értesítési csatornák megadása" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "{numItems}/{0}. lehetőség kiválasztása" @@ -7066,17 +7600,9 @@ msgstr "{numItems}/{0}. lehetőség kiválasztása" msgid "Send a neat website!" msgstr "Küldj be egy pompás honlapot!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "Visszaigazolás küldése" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Visszaigazoló email küldése" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Email küldése" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Email küldése" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Visszajelzés küldése" @@ -7095,7 +7621,7 @@ msgstr "Visszajelzés küldése" msgid "Send message" msgstr "Üzenet küldése" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "Bejegyzés küldése neki: {name}" @@ -7114,20 +7640,20 @@ msgstr "Jelentés küldése" msgid "Send report to {0}" msgstr "Jelentés küldése neki: {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "Jelentés küldése neki: {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Visszaigazoló email küldése" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Továbbítás személyes üzenetben" @@ -7143,7 +7669,7 @@ msgstr "Kiszolgáló címe" msgid "Set app icon to {0}" msgstr "Alkalmazásikon megváltoztatása erre: {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Születési dátum megadása" @@ -7159,13 +7685,57 @@ msgstr "Fiók beállítása" msgid "Sets email for password reset" msgstr "Email cím beállítása jelszóvisszaállításhoz" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Beállítások" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "Saját tevékenységértesítési beállítások" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "Mások Tőled érkező értesítéseit érintő beállítások" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "Kedveléses értesítések beállításai" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "Megemlítéses értesítések beállításai" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "Új követős értesítések beállításai" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "Egyéb értesítések beállításai" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "Megosztott bejegyzések kedveléséses értesítéseinek beállításai" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "Megosztott bejegyzések megosztásos értesítéseinek beállításai" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "Idézéses értesítések beállításai" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "Válaszos értesítések beállításai" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "Megosztásos értesítések beállításai" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "Meséld el, hogy mi történt Veled!" msgid "Share a fun fact!" msgstr "Mondj el egy érdekességet!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Továbbítás mégis" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "Szerző DID-jének továbbítása" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Hivatkozás továbbítása" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Hivatkozás továbbítása" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Hivatkozásmegosztási párbeszédablak" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "Bejegyzés „at://” URI-jének továbbítása" @@ -7247,8 +7812,8 @@ msgstr "Kezdőcsomag továbbítása" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Oszd meg ezt a kezdőcsomagot, hogy mások is csatlakozhassanak a Blueskyos közösségedhez!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "Továbbítás…" msgid "Share your favorite feed!" msgstr "Oszd meg a kedvenc hírfolyamod!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "„Megosztott beállítások” tesztelő" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "A hivatkozott honlap továbbítása" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Mutatás" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Helyettesítő szöveg mutatása" @@ -7303,8 +7864,8 @@ msgstr "Testreszabási lehetőségek mutatása" msgid "Show hidden replies" msgstr "Elrejtett válaszok mutatása" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Kevesebb ilyet mutasson" @@ -7312,55 +7873,63 @@ msgstr "Kevesebb ilyet mutasson" msgid "Show list anyway" msgstr "Lista mutatása mégis" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Továbbiak" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Több ilyet mutasson" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "További válaszok megjelenítése" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Elnémított válaszok mutatása" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "Válaszok mutatása egymásból kiágazva" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Idézetek mutatása" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Válaszok mutatása" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Válaszok megjelenése" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Válaszok megjelenítése egymásba ágyazva" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Az Általad követett személyek válaszainak megjelenítése legfelül egy bejegyzés alatt" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Válasz mutatása mindenkinek" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Megosztások mutatása" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Elmentett hírfolyamok bejegyzéseinek mutatása a Követett hírfolyamban" @@ -7372,16 +7941,17 @@ msgstr "Figyelmeztetés" msgid "Show warning and filter from feeds" msgstr "Figyelmeztetés és kiszűrés a hírfolyamokból" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "További információ a bejegyzés dátumáról" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "További fiókok megjelenítése váltás céljából" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Tartalom mutatása" @@ -7390,14 +7960,15 @@ msgstr "Tartalom mutatása" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "Bejelentkezés egy másik felhasználói fiókba" msgid "Sign in to Bluesky or create a new account" msgstr "Jelentkezz be vagy hozz létre egy Bluesky-fiókot!" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "A megtekintéshez bejelentkezés szükséges" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Kijelentkezés" @@ -7444,8 +8020,8 @@ msgstr "Kijelentkezés" msgid "Sign Out" msgstr "Kijelentkezés" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Kijelentkezés" @@ -7459,12 +8035,12 @@ msgstr "Bejelentkezés szükséges" msgid "Signed in as @{0}" msgstr "Bejelentkeztél, mint @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Hasonló fiókok" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Kihagyás" @@ -7472,12 +8048,11 @@ msgstr "Kihagyás" msgid "Skip this flow" msgstr "Folyamat kihagyása" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Kisebb" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "Emlékeztető elhalasztása" @@ -7490,11 +8065,11 @@ msgstr "Szoftverfejlesztő" msgid "Some of your verifications are invalid." msgstr "A hitelesítéseidnek egy része érvénytelen." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "További ajánlott hírfolyamok" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Csak bizonyos személyek válaszolhatnak" @@ -7510,10 +8085,11 @@ msgstr "Valaki {0}-emojival reagált erre: {1}" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "Valami nem stimmel a beküldendő adatokkal. Vedd fel a kapcsolatot az ügyfélszolgálattal!" -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Valami balul sült el" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Valami balul sült el. Próbáld újra" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Valami balul sült el. Próbáld újra!" -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Valami balul sült el!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "Valami balul sült el. Próbáld újra!" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "Valami balul sült el. Próbáld újra!" @@ -7539,20 +8118,23 @@ msgstr "Valami balul sült el. Próbáld újra!" msgid "Something wrong? Let us know." msgstr "Valami nem stimmel? Vedd fel velünk a kapcsolatot!" -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "Sajnáljuk, de lejárt a munkameneted. Jelentkezz be újra!" -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Válaszok rendezése" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Rendezés módja:" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Egy bejegyzés alatti válaszok rendezése:" @@ -7579,7 +8161,7 @@ msgstr "Spam; túl sok említés vagy válasz" msgid "Sports" msgstr "Sport" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "A megkezdett beszélgetések itt fognak megjelenni." @@ -7601,9 +8183,9 @@ msgstr "Vegyél fel személyeket!" msgid "Start chat with {displayName}" msgstr "Csevegés indítása vele: {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Kezdőcsomag" @@ -7611,12 +8193,12 @@ msgstr "Kezdőcsomag" msgid "Starter pack by {0}" msgstr "Kezdőcsomag – Szerző: {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Kezdőcsomag – Szerző: <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Kezdőcsomag – Saját" @@ -7638,19 +8220,21 @@ msgstr "A kezdőcsomagokkal könnyen megoszthatod a kedvenc hírfolyamaidat és msgid "Status Page" msgstr "Állapot" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "{1}/{0}. lépés" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Adatok törölve. Indítsd újra az alkalmazást!" -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Mesekönyv" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Fellebbezés beküldése" msgid "Submit Appeal" msgstr "Fellebbezés beküldése" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "Jelentés küldése" @@ -7676,10 +8260,14 @@ msgstr "Jelentés küldése" msgid "Subscribe" msgstr "Feliratkozás" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Az alábbi feljegyzési kategóriák használatához iratkozz fel a(z) @{0} nevű szolgáltatóra:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "Feliratkozás fióktevékenységi értesítésekre" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Feliratkozás a feljegyzőre" @@ -7692,8 +8280,12 @@ msgstr "Feliratkozás a feljegyzőre" msgid "Subscribe to this list" msgstr "Feliratkozás a listára" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "Siker" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Siker!" @@ -7705,7 +8297,7 @@ msgstr "Hitelesítetted a fiókot" msgid "Suggested Accounts" msgstr "Javasolt fiókok" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Számodra javasolt" @@ -7714,26 +8306,26 @@ msgstr "Számodra javasolt" msgid "Suggestive" msgstr "Felnőtt tartalom" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Alkonyat" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Szürkület" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Támogatás" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Fiókváltás" @@ -7742,24 +8334,24 @@ msgstr "Fiókváltás" msgid "Switch Account" msgstr "Fiókváltás" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Fiókváltás" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "Váltás rá: {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Rendszer" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Rendszernapló" @@ -7767,6 +8359,18 @@ msgstr "Rendszernapló" msgid "Tags only" msgstr "Csak címkék" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "További információ" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "További információ" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "A Bluesky-t érintő változtatások megértésének jelzéséhez és elfogadásához koppints ide!" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7813,12 +8417,14 @@ msgstr "További részletek" msgid "Terms" msgstr "Feltételek" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Felhasználási feltételek" @@ -7850,10 +8456,6 @@ msgstr "Szövegbeviteli mező" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "Köszönjük! A hírfolyam üzemeltetője megkapta a visszajelzést." -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Köszönjük! Az email-cím visszaigazolása megtörtént." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Köszönjük! A jelentést megkaptuk." @@ -7866,28 +8468,28 @@ msgstr "Köszönjük! Visszaigazoltad az email-címed – most már bezárhatod msgid "That contains the following:" msgstr "Az alábbi tartalommal:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Ez a felhasználónév már foglalt." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Ez a kezdőcsomag nem található." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "Ez a felhasználónév már foglalt" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Ez van, srácok!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "Ez minden!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "A fiók ismét képes lesz kapcsolatba lépni veled, ha feloldod a letiltását." @@ -7902,7 +8504,7 @@ msgstr "A beállítások érvénybeléptetése érdekében az alkalmazás újra msgid "The author of this thread has hidden this reply." msgstr "A válaszlánc szerzője elrejtette ezt a választ." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "A Bluesky webalkalmazás" @@ -7922,10 +8524,6 @@ msgstr "A Felfedezés hírfolyam" msgid "The Discover feed now knows what you like" msgstr "A Felfedezés hírfolyam olyan tartalmakat mutat, amelyek tetszhetnek Neked" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "Az új és a régi email-cím megegyezik." - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "Az alkalmazás jobb. Töltsd le a Blueskyt és onnan folytatjuk, ahol abbahagytad!" @@ -7946,8 +8544,16 @@ msgstr "Az alábbi feljegyzéseket alkalmazták a tartalmadra." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "Új bejegyzéseknél az alábbi beállítások lesznek az alapértelmezettek. Ezeket az egyes bejegyzések írása közben felülírhatod." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "A tartózkodási helyeden érvényes törvények szerint igazolnod kell a felnőttlétedet, mielőtt hozzáférhetnél a Bluesky bizonyos funkcióihoz, mint a felnőtt tartalmak és a személyes üzenetek." + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "A tartózkodási helyeden érvényes törvények szerint bizonyos funkciók használatához igazolnod kell a felnőttlétedet. További információért koppints ide!" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Lehetséges, hogy ezt a bejegyzést törölték." @@ -7955,9 +8561,10 @@ msgstr "Lehetséges, hogy ezt a bejegyzést törölték." msgid "The Privacy Policy has been moved to <0/>" msgstr "Az adatvédelmi irányelvek elköltöztek: <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "A megadott videó nagyobb, mint 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "A kiválasztott videófájl meghaladja a 100 MB-os korlátot. Kérjük, válassz ki egy kisebb videót!" #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7984,7 +8591,7 @@ msgstr "A felhasználási feltételek elköltöztek:" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "A megadott ellenőrzőkód érvénytelen. Nézd meg, hogy helyes kódot adtál-e meg vagy kérj újat!" -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Téma" @@ -7992,14 +8599,14 @@ msgstr "Téma" msgid "There is no time limit for account deactivation, come back any time." msgstr "A fiók deaktiválásához nem tartozik időkorlát. Bármikor visszajöhetsz." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Megszakadt a kapcsolat a Tenorral." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Megszakadt a kapcsolat a kiszolgálóval" @@ -8008,17 +8615,12 @@ msgstr "Megszakadt a kapcsolat a kiszolgálóval" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Megszakadt a kapcsolat a kiszolgálóval. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Megszakadt a kapcsolat a kiszolgálóddal" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Az értesítések frissítése meghiúsult. Koppints ide az újrapróbálkozáshoz!" -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "A bejegyzések lekérése meghiúsult. Koppints ide az újrapróbálkozáshoz!" @@ -8039,7 +8641,7 @@ msgstr "A listák lekérése meghiúsult. Koppints ide az újrapróbálkozáshoz msgid "There was an issue fetching your service info" msgstr "A kiszolgálód adatainak lekérése meghiúsult" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "A hírfolyam eltávolítása meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" @@ -8054,9 +8656,9 @@ msgstr "A jelentés küldése meghiúsult. Ellenőrizd az internetkapcsolatot!" msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "A hírfolyamok frissítése meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8071,7 +8673,7 @@ msgstr "A hírfolyamok frissítése meghiúsult. Ellenőrizd az internetkapcsola msgid "There was an issue! {0}" msgstr "Hiba történt! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8082,7 +8684,7 @@ msgstr "Hiba történt! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Hiba történt. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Váratlan alkalmazáshiba történt. Kérjük jelentsd!" @@ -8091,7 +8693,7 @@ msgstr "Váratlan alkalmazáshiba történt. Kérjük jelentsd!" msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Jelenleg rengeteg új felhasználó csatlakozik a Blueskyhoz. A fiókodat aktiválni fogjuk, amint tudjuk!" -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Az alábbi beállítások csak a Követett hírfolyamra vonatkoznak." @@ -8148,7 +8750,7 @@ msgstr "Ezt a tartalmat a(z) {0} üzemelteti. Szeretnéd engedélyezni a külső msgid "This content is not available because one of the users involved has blocked the other." msgstr "Ez a tartalom jelenleg nem elérhető, mert az egyik kapcsolódó felhasználó letiltotta a másikat." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Ezt a tartalmat bejelentkezés nélkül nem tekintheted meg." @@ -8160,6 +8762,10 @@ msgstr "Ez a beszélgetés egy már törölt vagy deaktivált fiókkal történt msgid "This email is already associated with your account." msgstr "Ez az email-cím már jelenleg is hozzá van rendelve a fiókodhoz." +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "Ez a funkció megengedi más felhasználók számára, hogy feliratkozzanak az új bejegyzéseidről és válaszaidról szóló értesítésekre. Mely felhasználóktól szeretnéd jóváhagyni ezeket a kéréseket?" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Kísérleti funkció. Az adattár-exportálásról bővebben <0>ebben a blogbejegyzésben olvashatsz (angolul)." @@ -8172,7 +8778,7 @@ msgstr "Jelenleg egy alkalmazásjelszóval vagy bejelentkezve. A funkció haszn msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Jelenleg egy alkalmazásjelszóval vagy bejelentkezve. A funkció használatához a valódi jelszavaddal kell bejelentkezned." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Ez a hírfolyam jelenleg rengeteg bejövő forgalmat tapasztal, ezért átmenetileg nem elérhető. Próbáld újra később!" @@ -8211,11 +8817,11 @@ msgstr "Feljegyezte a szerző." msgid "This label was applied by you." msgstr "Saját feljegyzés." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Ez a feljegyző nem jelentette ki a feljegyzési kategóriáit, ezért lehet, hogy nem aktív." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Ez a hivatkozás az alábbi honlapra mutat:" @@ -8235,29 +8841,28 @@ msgstr "Ez a lista üres." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Ez a moderálási szolgáltatás jelenleg nem elérhető. A részleteket alább olvashatod. Ha a probléma fennáll, lépj velünk kapcsolatba!" -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "A bejegyzés adatai szerint az eredeti létrehozási dátuma <0>{0} volt, de először ekkor jelent meg a Blueskyon: <1>{1}" -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Ez a bejegyzés egy ismeretlen válaszkapu-típussal rendelkezik. Lehetséges, hogy az alkalmazás verziója elavult." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Ezt a bejegyzést törölték." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Ez a bejegyzés csak a bejelentkezett felhasználók számára látható; a kijelentkezett felhasználók számára nem." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "Ez a bejegyzés csak a bejelentkezett felhasználók számára látható." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Ez a bejegyzés el lesz rejtve a hírfolyamokból és a válaszláncokból. Ez a művelet nem vonható vissza." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "A szerző letiltotta az idézést." @@ -8265,11 +8870,11 @@ msgstr "A szerző letiltotta az idézést." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Ez a profil csak a bejelentkezett felhasználók számára látható; a kijelentkezett felhasználók számára nem." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Ez a válasz egy rejtett részlegbe lesz sorolva a válaszláncok legalján és se Te, sem pedig mások nem fognak értesítéseket kapni a jövőbeli válaszokról." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Ez a szolgáltatás nem osztotta meg a felhasználási feltételeit vagy az adatvédelmi irányelveit." @@ -8277,6 +8882,10 @@ msgstr "Ez a szolgáltatás nem osztotta meg a felhasználási feltételeit vagy msgid "This should create a domain record at:" msgstr "Ez az alábbi helyen fog tartományrekordot létrehozni:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "Ez a folyamat csupán néhány percet vesz igénybe." + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Ez a felhasználó nem rendelkezik megjelenítendő névvel, ezért nem hitelesíthető." @@ -8318,16 +8927,18 @@ msgstr "Ez a felhasználó még senkit sem követ." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Ezzel a(z) „{0}” kifejezés el lesz távolítva az elnémított szavak listájáról. Később bármikor újra felveheted." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Ezzel @{0} el lesz távolítva a fióklistáról." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Ezzel el fogod távolítani a bejegyzést az idézésből mindenki számára, ami egy helyőrzővel lesz helyettesítve." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Válaszlánc-beállítások" @@ -8336,24 +8947,27 @@ msgstr "Válaszlánc-beállítások" msgid "Thread preferences" msgstr "Válaszláncok" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Válaszláncok" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Egymásba ágyazott" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Beágyazott mód" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Válaszlánc-beállítások" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "Hátralévő idő: {0, plural, one {# másodperc} other {# másodperc}}" @@ -8378,42 +8992,56 @@ msgstr "Kinek szeretnéd elküldeni ezt a jelentést?" msgid "Today" msgstr "Ma" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Legördülő menü kibontása/összecsukása" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Felnőtt tartalmak ki-/bekapcsolása" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Hang némítása" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Felkapott" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "A legjobbra értékelt válaszok elöl" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Témakör" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Lefordítás" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "Ágas nézet" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Felkapott" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Felkapott videók" @@ -8430,14 +9058,10 @@ msgstr "Újra" msgid "TV" msgstr "Televízió" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Kétlépcsős azonosítás (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Kívánt felhasználónév megadása" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Üzenet megadása" @@ -8455,7 +9079,7 @@ msgstr "A kiszolgáló nem található. Ellenőrizd az internetkapcsolatot, majd #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8465,18 +9089,34 @@ msgstr "A szolgáltatással való kapcsolatfelvétel meghiúsult. Ellenőrizd az msgid "Unable to delete" msgstr "A törlés meghiúsult" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "Lekéréses kérelem alkalmazásának visszavonása" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "Lekéréses kérelem alkalmazásának visszavonása ({currentChannel})" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "Nem elérhető" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "Nincs elérhető hírfolyam-információ" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Tiltás feloldása" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Tiltás feloldása" @@ -8488,7 +9128,7 @@ msgstr "Tiltás feloldása" msgid "Unblock account" msgstr "Fiók tiltásának feloldása" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Fiók tiltásának feloldása" @@ -8497,13 +9137,13 @@ msgstr "Fiók tiltásának feloldása" msgid "Unblock list" msgstr "Lista tiltásának feloldása" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Megosztás visszavonása" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Megosztás visszavonása ({0, plural, one {# megosztás} other {# megosztás}})" @@ -8512,7 +9152,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Követés megszüntetése" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "{0} követésének megszüntetése" @@ -8525,7 +9165,7 @@ msgstr "Fiók követésének megszüntetése" msgid "Unfollows the user" msgstr "Követés megszüntetése" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "A feljegyzőid közül egyik sem támogatja ezt a jelentési típust." @@ -8535,15 +9175,15 @@ msgstr "Ismeretlen hitelesítő" #: src/screens/Profile/components/ProfileFeedHeader.tsx:518 msgid "Unlike" -msgstr "Kedvelés visszavonása" +msgstr "Mégse tetszik" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Kedvelés visszavonása ({0, plural, one {# kedvelés} other {# kedvelés}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Némítás feloldása" @@ -8557,8 +9197,8 @@ msgstr "Némítás feloldása" msgid "Unmute {tag}" msgstr "A(z) {tag} némításának feloldása" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8572,12 +9212,12 @@ msgstr "Beszélgetés némításának feloldása" msgid "Unmute list" msgstr "Lista némításának feloldása" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Válaszlánc némításának feloldása" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Videó némításának feloldása" @@ -8599,8 +9239,8 @@ msgstr "Kitűzés feloldása" msgid "Unpin from home" msgstr "Kitűzés feloldása a kezdőlapról" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Kitűzés feloldása a profilodról" @@ -8616,8 +9256,8 @@ msgstr "Feloldottad a(z) {0} kitűzését" msgid "Unpinned from your feeds" msgstr "Feloldottad a hírfolyam kitűzését" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "Emailcím-emlékeztető elhalasztásának visszavonása" @@ -8638,7 +9278,7 @@ msgstr "Leiratkozás a feljegyzőről" msgid "Unsubscribed from list" msgstr "Leiratkoztál a listáról" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Nem támogatott videóformátum" @@ -8664,8 +9304,8 @@ msgstr "<0>{displayName} listatagságának frissítése" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "Email-cím frissítése" @@ -8678,17 +9318,17 @@ msgstr "Frissítés erre: {domain}" msgid "Update your email" msgstr "Email-cím frissítése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Az idézet leválasztása/visszakapcsolása meghiúsult" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "A válasz láthatóságának frissítése meghiúsult" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Frissítés folyamatban…" @@ -8700,20 +9340,20 @@ msgstr "Fénykép feltöltése" msgid "Upload a text file to:" msgstr "Tölts fel ide egy szöveges fájlt:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Feltöltés a kamerából" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Feltöltés a fájlkezelőből" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8723,12 +9363,12 @@ msgstr "Feltöltés a galériából" msgid "Uploading images..." msgstr "Képek feltöltése folyamatban…" -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Hivatkozás indexképének feltöltése folyamatban…" -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Videó feltöltése folyamatban…" @@ -8763,6 +9403,10 @@ msgstr "Javasolt beállítások használata" msgid "Use this to sign in to the other app along with your handle." msgstr "A másik alkalmazásba a felhasználóneveddel és ezzel jelentkezhetsz be." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "Add meg a fiókod email-címét vagy egy másik, tulajdonodat képző email-címet, arra az esetre, ha a jövőben a KWS-nek vagy a Blueskynak fel kell vennie Veled a kapcsolatot." + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Használó:" @@ -8815,28 +9459,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Frissítetted a felhasználólistát" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "A felhasználónév legfejlebb {MAX_SERVICE_HANDLE_LENGTH, plural, one {}other {# karakter}} hosszú lehet" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "A felhasználónév nem kezdődhet vagy végződhet kötőjellel" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "A felhasználónév csak az angol ábécé betűit (A–Z), számokat és kötőjeleket tartalmazhat" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Felhasználónév vagy email-cím" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "a(z) <0>@{0} által követett felhasználók" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "a(z) <0>@{0}-személyt követett felhasználók" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Csak a követett személyektől" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "A(z) „{0}”-listán szereplő felhasználóktól" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Az Általad követett személyektől" @@ -8848,11 +9504,11 @@ msgstr "Érték:" msgid "Verification failed, please try again." msgstr "A hitelesítés meghiúsult. Próbáld újra!" -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "Hitelesítési beállítások" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "Hitelesítési beállítások" @@ -8872,8 +9528,15 @@ msgstr "Hitelesítő:" msgid "Verify account" msgstr "Fiók hitelesítése" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "Igazolás ismét" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "Kód megerősítése" @@ -8882,21 +9545,20 @@ msgstr "Kód megerősítése" msgid "Verify DNS Record" msgstr "DNS-rekord ellenőrzése" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "Email-cím visszaigazolása" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "Emailes kód megerősítése" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Email-cím-visszaigazoló párbeszédablak" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "Igazolás most" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8906,23 +9568,31 @@ msgstr "Szöveges fájl ellenőrzése" msgid "Verify this account?" msgstr "Fiók hitelesítése" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "Életkor igazolása" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Email-cím visszaigazolása" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Email-cím visszaigazolása" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "Igazolás folyamatban" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "Életkor-igazolási állapot ellenőrzése" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Verziószám: {appVersion}" +msgid "Version {0}" +msgstr "Verziószám: {0}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Videó" @@ -8930,7 +9600,7 @@ msgstr "Videó" msgid "Video failed to process" msgstr "A videó feldolgozása meghiúsult" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Videófolyam" @@ -8944,15 +9614,15 @@ msgstr "{0} videója: {text}" msgid "Video Games" msgstr "Videojátékok" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Videó szüneteltetve" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Videó lejátszása folyamatban" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "A videó nem található." @@ -8960,11 +9630,11 @@ msgstr "A videó nem található." msgid "Video settings" msgstr "Videóbeállítások" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "A videó feltöltése sikeresen befejeződött" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Videó: {0}" @@ -8981,11 +9651,11 @@ msgstr "A videónak 3 percnél rövidebbnek kell lennie" msgid "View {0}'s avatar" msgstr "{0} profilképének megtekintése" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "{0} profiljának megtekintése" @@ -8993,7 +9663,7 @@ msgstr "{0} profiljának megtekintése" msgid "View {displayName}'s profile" msgstr "{displayName} profiljának megtekintése" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Letiltott felhasználó profiljának megtekintése" @@ -9011,7 +9681,6 @@ msgstr "Hibakeresési bejegyzés megtekintése" msgid "View details" msgstr "Részletek" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "A szerzői jogi törvényszegés jelentésének részletei" @@ -9024,23 +9693,23 @@ msgstr "Teljes válaszlánc megtekintése" msgid "View information about these labels" msgstr "További információ a feljegyzésekről" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Továbbiak megtekintése" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Profil megtekintése" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Profilkép megtekintése" @@ -9056,28 +9725,28 @@ msgstr "Felhasználó hitelesítéseinek megtekintése" msgid "View users who like this feed" msgstr "A hírfolyamot kedvelő felhasználók megtekintése" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Videó megtekintése" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Letiltott felhasználók megtekintése" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "Alapértelmezett kapcsolatbalépési beállítások megtekintése" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Hírfolyamgyűjtemény megnyitása és további hírfolyamok felfedezése" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Moderálólisták megtekintése" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Elnémított fiókok megjelenítése" @@ -9085,8 +9754,8 @@ msgstr "Elnémított fiókok megjelenítése" msgid "View your verifications" msgstr "Saját hitelesítések megtekintése" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Teljes kép megtekintése" @@ -9094,16 +9763,20 @@ msgstr "Teljes kép megtekintése" msgid "Views video in immersive mode" msgstr "Videó vezérlőinek elrejtése" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" msgstr "Honlap felkeresése" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "Értesítési beállítások megnyitása" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Hangerő" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9122,6 +9795,14 @@ msgstr "Figyelmeztetés és kiszűrés a hírfolyamokból" msgid "Watch now" msgstr "Megtekintés most" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "A hírfolyam szolgáltatójával történő kapcsolódás meghiúsult. Lehetséges, hogy átmenetileg nem elérhető vagy véglegesen megszűnt." + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "A lista nem található. Lehetséges, hogy törölték." + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "Erre a címkére nincs találat." @@ -9130,7 +9811,7 @@ msgstr "Erre a címkére nincs találat." msgid "We couldn't find any results for that topic." msgstr "Erre a témakörre nincs találat." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Ez a beszélgetés nem található" @@ -9138,6 +9819,10 @@ msgstr "Ez a beszélgetés nem található" msgid "We estimate {estimatedTime} until your account is ready." msgstr "A fiókod elkészültéig becsült hátralévő idő: {estimatedTime}" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "A felnőttléted igazolásához a <0>KWS szolgáltatását használjuk. Ha rákattintasz az alábbi indítás-gombra, a KWS ellenőrzi, hogy az email-címed már szerepel-e az adatbázisukban. Ha nem, akkor kapni fogsz tőlük egy emailt, ami további utasításokat tartalmaz. Amint végeztél, vissza leszel irányítva a Blueskyra." + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Küldtünk egy új visszaigazoló emailt a(z) <0>{0} címre." @@ -9150,15 +9835,15 @@ msgstr "Reméljük, jól érzed magad! Ne feledd; a Bluesky:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Kifogytunk a követett felhasználók bejegyzéseiből. A további tartalom a(z) <0/> hírfolyamból származik." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "Legalább két érdeklődési kör megadása ajánlott." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Küldtünk egy emailt a(z) <0>{0}-címre. Kattints rá a benne található hivatkozásra a visszaigazoláshoz!" -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "A videófeltöltési jogosultságod ellenőrzése meghiúsult. Próbáld újra!" @@ -9166,10 +9851,14 @@ msgstr "A videófeltöltési jogosultságod ellenőrzése meghiúsult. Próbáld msgid "We were unable to load your birth date preferences. Please try again." msgstr "A születési dátumod beállításainak betöltése meghiúsult. Próbáld újra!" -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "A feljegyzőid betöltése meghiúsult." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "Egy kapcsolódási hiba miatt nem kaptuk meg a visszaigazolást. Lehetséges, hogy később megérkezik – ebben az esetben a fiókod állapota automatikusan frissítve lesz." + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Megszakadt a kapcsolat. A folytatáshoz próbáld újra! Ha a probléma fennáll, kihagyhatod ezt a folyamatot." @@ -9178,7 +9867,7 @@ msgstr "Megszakadt a kapcsolat. A folytatáshoz próbáld újra! Ha a probléma msgid "We will let you know when your account is ready." msgstr "Majd szólunk, ha a fiókod használatra kész." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Küldünk egy emailt a(z) <0>{0}-címre. Kattints rá a benne található hivatkozásra a visszaigazoláshoz!" @@ -9186,6 +9875,22 @@ msgstr "Küldünk egy emailt a(z) <0>{0}-címre. Kattints rá a benne talál msgid "We'll use this to help customize your experience." msgstr "Ezeket az adatokat az élményed testreszabására fogjuk felhasználni." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Mindemellett a <0>közösségi irányelveket is frissíteni fogjuk és ehhez szívesen fogadnánk visszajelzéseket – ezek a változtatások 2025. október 15-én lépnek hatályba." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Mindemellett a közösségi irányelveket is frissíteni fogjuk és ehhez szívesen fogadnánk visszajelzéseket – ezek a változtatások 2025. október 15-én lépnek hatályba." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "Életkor-igazolási állapotellenőrzés folyamatban. Ez valószínűleg csak néhány másodpercet vesz igénybe." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "Hiba történt az életkor-igazolási folyamat elindítása közben. Ha segítségre van szükséged, vedd fel a kapcsolatot az <0>ügyfélszolgálattal!" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9195,7 +9900,7 @@ msgstr "Hálózati hiba történt. Próbáld újra!" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Bevezetjük a hitelesítés egy új formáját: egy könnyen látható jelvényt." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Örvendünk, hogy megismerhetünk!" @@ -9207,15 +9912,15 @@ msgstr "Sajnáljuk, de a lista lekérése meghiúsult. Ha a probléma fennáll, msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Sajnáljuk, de az elnémított szavak listájának betöltése meghiúsult. Próbáld újra!" -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Sajnáljuk, de a keresés meghiúsult. Próbáld újra egy pár percen belül!" -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Sajnáljuk, de törölték a bejegyzést, amire válaszolnál." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Sajnáljuk, de a keresett oldal nem található." @@ -9224,6 +9929,26 @@ msgstr "Sajnáljuk, de a keresett oldal nem található." msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Sajnáljuk, de egyszerre csak 20 feljegyzőre iratkozhatsz fel és elérted ezt a korlátot." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "Frissítettük a <0>felhasználási feltételeket, <1>adatvédelmi irányelveket és a <2>szerzői jogi irányelveket – ezek a változtatások 2025. szeptember 15-én lépnek hatályba." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "Irányelvek frissítése" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "Frissítettük a felhasználási feltételeket, adatvédelmi irányelveket és a szerzői jogi irányelveket. Ezek a változtatások 2025. szeptember 15-én lépnek hatályba." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Frissítettük a felhasználási feltételeket, adatvédelmi irányelveket és a szerzői jogi irányelveket – ezek a változtatások 2025. szeptember 15-én lépnek hatályba. Mindemellett a közösségi irányelveket is frissíteni fogjuk és ehhez szívesen fogadnánk visszajelzéseket – ezek a változtatások 2025. október 15-én lépnek hatályba. A változtatásokról és a visszajelzés mikéntjéről a blogbejegyzésünkben olvashatsz (angol nyelven)." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "Az ellenőrzés sikeresen befejeződött. Bezárhatod ezt a párbeszédablakot." + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Üdv újra!" @@ -9242,7 +9967,7 @@ msgstr "Milyen címet adnál a kezdőcsomagodnak?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Mi a helyzet?" @@ -9258,11 +9983,11 @@ msgstr "Milyen nyelvek fordulnak elő ebben a bejegyzésben?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Mely nyelveken szeretnél bejegyzéseket látni az algoritmusalapú hírfolyamokban?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Kapcsolatbalépési információ" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Ki válaszolhat?" @@ -9271,12 +9996,12 @@ msgid "Who can verify?" msgstr "Ki hitelesíthet?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Hoppá!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "Hoppá! A felkapott videók betöltése meghiúsult." @@ -9324,12 +10049,12 @@ msgstr "Miért kell ezt a felhasználót átvizsgálni?" msgid "Write a message" msgstr "Üzenet írása" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Bejegyzés írása" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Válasz írása" @@ -9360,11 +10085,11 @@ msgstr "Igen – deaktiválás" msgid "Yes, delete this starter pack" msgstr "Igen – kezdőcsomag törlése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Igen – leválasztás" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Igen – elrejtés" @@ -9380,6 +10105,10 @@ msgstr "Tegnap" msgid "You" msgstr "Te" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "Mindemellett jelzed, hogy elfogadod a <0>Bluesky közösségi irányelveit. A <1>közösségi irányelvek frissített változata október 15-én fog hatályba lépni." + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "Megbítzható hitelesítő vagy" @@ -9388,6 +10117,10 @@ msgstr "Megbítzható hitelesítő vagy" msgid "You are creating an account on" msgstr "Ez a fiók az alábbi tárhelyszolgáltatónál lesz létrehozva:" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "Jelenleg nincs hozzáférésed az életkor-igazolási folyamathoz. Ha úgy gondolod, hogy ez hibás megállapítás, vedd fel a kapcsolatot a <0>moderálási csapatunkkal!" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Sorban állsz." @@ -9405,7 +10138,7 @@ msgstr "Az élő adásod véget ért" msgid "You are not allowed to go live" msgstr "Nincs jogosultságod élő adások elindításához" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Nincs jogosultságod a videófeltöltésre." @@ -9422,7 +10155,6 @@ msgid "You are verified" msgstr "Hitelesítve vagy" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "Jelenleg hitelesítve vagy. Ha megváltoztatod a megjelenítendő nevedet, azzal elveszik a hitelesítésed. <0>További információ." @@ -9443,10 +10175,18 @@ msgstr "Új egyéni hírfolyamokat is felfedezhetsz." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Ha szeretnéd, átmenetileg deaktiválhatod a fiókod, amit aztán bármikor újraaktiválhatsz." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "A csevegési értesítések hangosítását/némítását az alkalmazáson belüli csevegési beállításokban szabhatod személyre" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "A már létező csevegéseket a fenti beállításoktól függetlenül folytathatod." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "Mostantól feliratkozhatsz egyes személyek tevékenységeire. Ha van olyasvalaki, akinek a bejegyzéseiről szeretnél értesítéseket kapni, akkor nyisd meg a profilját és kattints a Követés-gomb mellett található harang ikonra!" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9456,12 +10196,12 @@ msgstr "Mostantól bejelentkezhetsz az új jelszóval." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "A bejelentkezés folytatásához újraaktiválhatod a fiókodat. Ezek után a profilod és a bejegyzéseid ismét láthatóak lesznek más felhasználók számára." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "Az alapértelmezett beállításokat a <0>Beállítások → Moderálás → Kapcsolatbalépési beállítások-menüben határozhatod meg." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Ezt a beállítást később is módosíthatod." @@ -9474,7 +10214,7 @@ msgstr "Még nincsenek követőid." msgid "You don't follow any users who follow @{name}." msgstr "Egy olyan felhasználót sem követsz, aki követné őt: @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "Jelenleg nincsenek bejövő csevegési kérelmek." @@ -9482,15 +10222,15 @@ msgstr "Jelenleg nincsenek bejövő csevegési kérelmek." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Még egy meghívókóddal sem rendelkezel. Majd küldünk néhányat, ha már hosszabb ideje leszel a Blueskyon." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Egy hírfolyamot sem tűztél ki." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Egy hírfolyamot se mentettél el." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Letiltottad a szerzőt vagy ő tiltott le Téged." @@ -9504,6 +10244,10 @@ msgstr "Letiltottad ezt a felhasználót" msgid "You have blocked this user. You cannot view their content." msgstr "Letiltottad ezt a felhasználót, ezért nem tekintheted meg a tartalmait." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "Ez a lap már nem fog új tartalmakkal bővülni, mivel teljesen kikapcsoltad a válasz-, idézési- és megemlítési értesítéseket. Ezeket a beállításokat az <0>értesítési beállításokban módosíthatod." + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9528,7 +10272,7 @@ msgstr "Elnémítottad ezt a fiókot." msgid "You have muted this user" msgstr "Elnémítottad ezt a felhasználót" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Még senkivel sem kezdtél el beszélgetni. Hajrá!" @@ -9549,7 +10293,7 @@ msgstr "Még egy fiókot sem tiltottál le. Ha szeretnél egy fiókot letiltani, msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Még egy fiókot sem némítottál el. Ha szeretnél egy fiókot elnémítani, akkor nyisd meg a profilját és a menüből válaszd ki a „Fiók elnémítása” lehetőséget." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Elérted a hírfolyam végét" @@ -9574,6 +10318,10 @@ msgstr "Még egy szót vagy címkét sem némítottál el" msgid "You hid this reply." msgstr "Elrejtetted ezt a választ." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "Az életkor-igazolási folyamatot már {0} ezelőtt megkezdted. Az emailek célba érése akár 5 percig is eltarthat. Várj pár percet, mielőtt újra próbálkoznál!" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "A nem saját magad által alkalmazott feljegyzéseket lehetőséged van fellebbezni, ha úgy gondolod, hogy tévedésből kerültek fel." @@ -9594,7 +10342,7 @@ msgstr "Legfeljebb 3 hírfolyamot jelölhetsz ki." msgid "You may only select up to 4 images" msgstr "Legfeljebb 4 képet csatolhatsz" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "A regisztrációhoz legalább 13 évesnek kell lenned." @@ -9602,6 +10350,14 @@ msgstr "A regisztrációhoz legalább 13 évesnek kell lenned." msgid "You must be following at least seven other people to generate a starter pack." msgstr "Egy kezdőcsomag létrehozásához legalább hét különböző személyt követned kell." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "Az alábbi beállítások módosításához életkor-igazolás szükséges." + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "A hozzáféréshez életkor-igazolás szükséges." + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "A QR-kód mentéséhez először hozzáférést kell biztosítanod a fényképeidhez" @@ -9610,6 +10366,11 @@ msgstr "A QR-kód mentéséhez először hozzáférést kell biztosítanod a fé msgid "You must select at least one labeler for a report" msgstr "A jelentéshez ki kell választanod legalább egy címzettet" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "A bejegyzés megtekintéséhez be kell jelentkezned!" + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "Az emailes kétlépcsős azonosítás bekapcsolása előtt vissza kell igazolnod a címedet." @@ -9618,7 +10379,7 @@ msgstr "Az emailes kétlépcsős azonosítás bekapcsolása előtt vissza kell i msgid "You previously deactivated @{0}." msgstr "Korábban deaktiváltad a(z) @{0} fiókot." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "Lehetséges, hogy most előnyös lenne bezárni és újra megnyitni az alkalmazást." @@ -9630,16 +10391,20 @@ msgstr "{0}-emojival reagáltál" msgid "You reacted {0} to {1}" msgstr "{0}-emojival reagáltál erre: {1}" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Ezzel az összes fiókból ki fogsz jelentkezni." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "Leiratkoztál {0} értesítéseiről" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Mostantól nem fogsz értesítéseket kapni erről a válaszláncról" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Mostantól fogsz értesítéseket kapni erről a válaszláncról" @@ -9659,11 +10424,11 @@ msgstr "Te: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Te: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Az ajánlott felhasználókat és hírfolyamokat a regisztráció befejeztétől fogva követni fogod." -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "A fiókod elkészültével követni fogod a javasolt felhasználókat!" @@ -9675,9 +10440,9 @@ msgstr "Őket és {0} további felhasználót fogsz követni" msgid "You'll follow these people right away" msgstr "Ezeket a személyeket rögtön követni fogod" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Kapni fogsz egy emailt a(z) <0>{0} címre, hogy ellenőrizhessük a kiléted." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "Feliratkoztál {0} értesítéseire!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9705,6 +10470,10 @@ msgstr "Elrejtettél egy szót vagy címkét ebben a bejegyzésben." msgid "You've found some people to follow" msgstr "Követnivaló személyekre találtál." +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "Elérted az aktív tartalom végét." + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Elérted a hírfolyamod végét. Kövess még több fiókot!" @@ -9713,19 +10482,23 @@ msgstr "Elérted a hírfolyamod végét. Kövess még több fiókot!" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Túllépted az egyidejűleg megengedett legtöbb lekérést. Próbáld újra később!" -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "Elérted az aktív tartalom elejét." + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Elérted a napi videófeltöltési korlátot (bájthatár meghaladva)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Elérted a napi videófeltöltési korlátot (videómennyiség meghaladva)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Kifogytunk a videókból. Mit szólnál egy kis szünethez?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Saját fiók" @@ -9737,7 +10510,7 @@ msgstr "Törölted a fiókodat" msgid "Your account has been suspended" msgstr "A fiókod felfüggesztésre került" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "A fiókod még nem elég idős a videók feltöltéséhez. Próbáld újra később!" @@ -9753,11 +10526,11 @@ msgstr "A fiókod megsértette a <0>Bluesky Social felhasználási feltételeit< msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "A fellebbezést megkaptuk. Pozitív elbírálás esetén fogsz kapni egy megerősítő emailt." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Születési dátum" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "A jelenlegi böngésződ nem támogatja ezt a videóformátumot. Próbáld meg egy másik böngészőben!" @@ -9773,13 +10546,15 @@ msgstr "Ez a választás tartós, de a jövőben bármikor megváltoztathatod az msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Lefoglaljuk a jelenlegi felhasználónevedet (<0>{0}), így bármikor visszaválthatsz rá." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "Frissítetted az email-címedet, viszont még nem igazoltad vissza. A következő lépésben tedd ezt meg!" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "Az email-címed" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Az email-címed érvénytelen." @@ -9788,15 +10563,11 @@ msgstr "Az email-címed érvénytelen." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "A Bluesky teljes funkcionalitásának kihasználásához az email-címed visszaigazolása szükséges." -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Az email-címed még nincs visszaigazolva. Ez egy fontos biztonsági lépés, amelynek javasoljuk az elvégzését." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "Az első kedvelésed!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "A Téged követett személyektől" @@ -9808,19 +10579,15 @@ msgstr "A Követett hírfolyamod üres. Kövess több felhasználót, hogy lásd msgid "Your full handle will be <0>@{0}" msgstr "A teljes felhasználóneved: <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "A teljes felhasználóneved: <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "Saját érdeklődési körök" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "Frissítetted az érdeklődési köröket." @@ -9837,15 +10604,15 @@ msgstr "Elnémított szavak" msgid "Your password has been changed successfully!" msgstr "Sikeresen megváltoztattad a felhasználóneved!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "A jelszónak legalább 8 karakter hosszúnak kell lennie." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Közzétetted a bejegyzést" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Közzétetted a bejegyzéseket" @@ -9853,15 +10620,19 @@ msgstr "Közzétetted a bejegyzéseket" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "A bejegyzéseid, kedveléseid és letiltásaid nyilvánosak. Az elnémítások nem." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "Az előnyben részesített nyelved" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "A profilod, bejegyzéseid, hírfolyamaid és listáid mostantól el vannak rejtve a többi Bluesky-felhasználó elől. A fiókod újraaktiválásához jelentkezz be!" -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Közzétetted a választ" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "A jelentés címzettje: <0>{0}." @@ -9869,7 +10640,7 @@ msgstr "A jelentés címzettje: <0>{0}." msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Ez a jelentés a Bluesky moderálási szolgáltatásának lesz elküldve" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "Az érdeklődési köreid megadásával személyre szabhatod a javasolt tartalmakat." diff --git a/src/locale/locales/ia/messages.po b/src/locale/locales/ia/messages.po index e9963caa57..7f415b1237 100644 --- a/src/locale/locales/ia/messages.po +++ b/src/locale/locales/ia/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ia\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:41\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: Interlingua\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -27,7 +27,7 @@ msgstr "(active)" msgid "(contains embedded content)" msgstr "(include contento incorporate)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(necun e-mail)" @@ -41,7 +41,7 @@ msgstr "{0, plural, one {# sequitor} other {# sequitores}}" #: src/screens/Profile/ProfileFollows.tsx:40 msgid "{0, plural, one {# following} other {# following}}" -msgstr "{0, plural, one {# sequite} other {# sequites}}" +msgstr "{0, plural, one {# sequito} other {# sequitos}}" #: src/lib/hooks/useTimeAgo.ts:159 msgid "{0, plural, one {# hour} other {# hours}}" @@ -49,11 +49,11 @@ msgstr "{0, plural, one {# hora} other {# horas}}" #: src/components/moderation/LabelsOnMe.tsx:53 msgid "{0, plural, one {# label has} other {# labels have}} been placed on this account" -msgstr "{0, plural, one {# etiquetta} other {# etiquettas}} ha essite placiate sur iste conto" +msgstr "{0, plural, one {# etiquetta} other {# etiquettas}} ha essite applicate a iste conto" #: src/components/moderation/LabelsOnMe.tsx:62 msgid "{0, plural, one {# label has} other {# labels have}} been placed on this content" -msgstr "{0, plural, one {# etiquetta} other {# etiquettas}} ha essite placiate sur iste contento" +msgstr "{0, plural, one {# etiquetta} other {# etiquettas}} ha essite applicate a iste contento" #: src/screens/Post/PostLikedBy.tsx:41 msgid "{0, plural, one {# like} other {# likes}}" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# republication} other {# republicationes}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# secunda} other {# secundas}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# elemento non legite} other {# elementos non legite}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {# elemento non legite} other {# elementos non legite}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {#me} other {#me}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {sequitor} other {sequitores}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" -msgstr "{0, plural, one {sequite} other {sequites}}" +msgstr "{0, plural, one {sequito} other {sequitos}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {appreciation} other {appreciationes}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {appreciation} other {appreciationes}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {publication} other {publicationes}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {citation} other {citationes}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {republication} other {republicationes}}" @@ -123,7 +126,7 @@ msgstr "{0, plural, one {}other {{1} publicationes}}" #. Number of users (always at least 25) who have joined Bluesky using a specific starter pack #: src/screens/StarterPack/StarterPackScreen.tsx:490 msgid "{0, plural, other {# people have}} used this starter pack!" -msgstr "{0, plural, one {}other {# personas ha}} usate iste pacchetto de initio!" +msgstr "{0, plural, other {# personas}} ha usate iste pacchetto de initio!" #. Pattern: {wordValue} in tags #: src/components/dialogs/MutedWords.tsx:475 @@ -135,19 +138,27 @@ msgstr "{0} <0>in <1>etiquettas" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>in <1>texto e etiquettas" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" -msgstr "" +msgstr "{0} es in directo" #: src/components/live/queries.ts:39 msgid "{0} is not a valid URL" +msgstr "{0} non es un URL valide" + +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} se ha inscribite iste septimana" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} de {1}" @@ -158,14 +169,22 @@ msgstr "{0} de 50" #: src/components/dms/MessageItem.tsx:143 msgid "{0} reacted {1}" -msgstr "{0} reageva con {1}" +msgstr "{0} ha reagite con {1}" #: src/screens/Messages/components/ChatListItem.tsx:231 msgid "{0} reacted {1} to {2}" -msgstr "{0} reageva con {1} a {2}" +msgstr "{0} ha reagite con {1} a {2}" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0}, un canal de {1}, appreciate per {2}" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0}, un lista de {1}" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "Avatar de {0}" @@ -197,12 +216,12 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}s" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# elemento non legite} other {# elementos non legite}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Pacchetto de initio de {displayName}" @@ -214,185 +233,184 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {horas}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuta} other {minutas}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} te ha sequite" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha appreciate tu canal personalisate" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha appreciate tu message" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" +msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha appreciate tu republication" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" -msgstr "" +msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha removite lor verificationes de tu conto" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha republicate tu publication" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha republicate tu republication" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} se ha inscribite con tu pacchetto de initio" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" -msgstr "" +msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha verificate tu conto" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" -msgstr "{firstAuthorLink} te seque" +msgstr "{firstAuthorLink} te ha sequite" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} te seque in retorno" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} ha appreciate tu canal personalisate" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} ha appreciate tu publication" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" -msgstr "" +msgstr "{firstAuthorLink} ha appreciate tu republication" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" -msgstr "" +msgstr "{firstAuthorLink} ha removite su verification de tu conto" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} ha republicate tu publication" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" -msgstr "" +msgstr "{firstAuthorLink} ha republicate tu republication" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} se ha inscribite con tu pacchetto de initio" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" -msgstr "" +msgstr "{firstAuthorLink} ha verificate tu conto" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} te seque" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha appreciate tu canal personalisate" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha appreciate tu publication" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" +msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha appreciate tu republication" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" -msgstr "" +msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha removite lor verificationes de tu conto" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha republicate tu publication" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha republicate tu republication" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} se ha inscribite con tu pacchetto de initio" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" -msgstr "" +msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha verificate tu conto" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} te seque" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} te seque in retorno" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} ha appreciate tu canal personalisate" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} ha appreciate tu publication" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" -msgstr "" +msgstr "{firstAuthorName} ha appreciate tu republication" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" -msgstr "" +msgstr "{firstAuthorName} ha removite su verification de tu conto" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} ha republicate tu publication" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" -msgstr "" +msgstr "{firstAuthorName} ha republicate tu republication" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} se ha inscribite con tu pacchetto de initio" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" -msgstr "" +msgstr "{firstAuthorName} ha verificate tu conto" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" -msgstr "{following} sequites" +msgstr "{following} sequitos" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "Non es possibile inviar messages a {handle}" #: src/components/live/utils.ts:15 msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" -msgstr "" +msgstr "{hours, plural, one {# hora {minutesString}} other {# horas {minutesString}}}" #: src/components/live/utils.ts:19 msgid "{hours, plural, one {# hour} other {# hours}}" -msgstr "" +msgstr "{hours, plural, one {# hora} other {# horas}}" #. Number of users (always at least 50) who have joined Bluesky using a specific starter pack #: src/components/StarterPack/StarterPackCard.tsx:101 msgid "{joinedAllTimeCount, plural, other {# users have}} joined!" -msgstr "{joinedAllTimeCount, plural, one {}other {# usatores}} inscribite!" +msgstr "{joinedAllTimeCount, plural, other {# usatores}} inscribite!" #: src/components/live/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" -msgstr "" +msgstr "{minutes, plural, one {# minuta} other {# minutas}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# elemento non legite} other {# elementos non legite}}" @@ -416,28 +434,28 @@ msgstr "{type}h retro" #: src/components/verification/VerifierDialog.tsx:60 msgid "{userName} is a trusted verifier" -msgstr "" +msgstr "{userName} es un verificator de confidentia" #: src/components/verification/VerificationsDialog.tsx:67 msgid "{userName} is verified" -msgstr "" +msgstr "{userName} es verificate" #. Possessive, meaning "the verifications of {userName}" #: src/components/verification/VerificationsDialog.tsx:69 msgid "{userName}'s verifications" -msgstr "" +msgstr "Verificationes de {userName}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 #: src/screens/Search/components/StarterPackCard.tsx:249 msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, e {2, plural, one {# altere} other {# alteres}} es includite in tu pacchetto de initio" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, e {2, plural, one {# altere} other {# alteres}} es includite in tu pacchetto de initio" @@ -448,17 +466,17 @@ msgstr "<0>{0} {1, plural, one {sequitor} other {sequitores}}" #: src/view/shell/Drawer.tsx:127 msgid "<0>{0} {1, plural, one {following} other {following}}" -msgstr "<0>{0} {1, plural, one {sequite} other {sequites}}" +msgstr "<0>{0} {1, plural, one {sequito} other {sequitos}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} e<1> <2>{1} es includite in tu pacchetto de initio" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} es includite in tu pacchetto de initio" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} membros" @@ -466,11 +484,11 @@ msgstr "<0>{0} membros" msgid "<0>{date} at {time}" msgstr "<0>{date} a {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Experimental: Quando iste preferentia es activate, tu recipera solmente notificationes de responsa e citation de usatores que tu seque. Nos continuara gradualmente a adder plus controlos hic." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Tu e<1> <2>{0} es includite in tu pacchetto de initio" @@ -501,12 +519,16 @@ msgstr "un message" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91 msgid "A new form of verification" -msgstr "" +msgstr "Un nove forma de verification" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "Un captura de schermo de un pagina de profilo con un icone de campana proxime al button de sequer, indicante le nove function de notificationes de activitate." + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "A proposito" @@ -524,25 +546,25 @@ msgstr "Acceptar requesta de chat" msgid "Accept Request" msgstr "Acceptar requesta" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Accessibilitate" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Parametros de accessibilitate" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Conto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Conto sequite" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Conto silentiate" msgid "Account Muted by List" msgstr "Conto silentiate per lista" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Optiones de conto" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Conto removite del accesso rapide" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Conto non plus sequite" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -596,7 +618,17 @@ msgstr "Conto dissilentiate" #: src/components/verification/VerifierDialog.tsx:96 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." -msgstr "" +msgstr "Contos con un marca de verification blau festonate <0><1/> pote verificar alteres. Iste verificatores de confidentia es seligite per Bluesky." + +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "Activitates de alteres" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "Notificationes de activitate" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 @@ -604,7 +636,7 @@ msgstr "" msgid "Add" msgstr "Adder" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Adde {0} plus pro continuar" @@ -619,7 +651,7 @@ msgstr "Adder un advertimento de contento" #: src/components/live/GoLiveDialog.tsx:101 msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event." -msgstr "" +msgstr "Adde un stato in directo temporari a tu profilo. Quando alcuno clicca super tu avatar, ille videra information super tu evento in directo." #: src/view/screens/ProfileList.tsx:924 #: src/view/screens/ProfileList.tsx:942 @@ -634,8 +666,8 @@ msgstr "Adder conto" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Adder texto alternative" msgid "Add alt text (optional)" msgstr "Adder texto alternative (optional)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Adder altere conto" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Adder un altere publication" @@ -670,8 +702,8 @@ msgstr "Adder contrasigno de application" msgid "Add emoji reaction" msgstr "Adder reaction con emoji" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Adder plus detalios (optional)" @@ -683,7 +715,7 @@ msgstr "Adder un parola a silentiar con le parametros eligite" msgid "Add muted words and tags" msgstr "Adder parolas e etiquettas silentiate" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Adder nove publication" @@ -694,7 +726,7 @@ msgstr "Adder personas" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79 msgid "Add people to list" -msgstr "" +msgstr "Adder personas al lista" #: src/components/dms/EmojiPopup.android.tsx:55 msgid "Add Reaction" @@ -702,9 +734,9 @@ msgstr "Adder reaction" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" -msgstr "Adder fluxos recommendate" +msgstr "Adder canales recommendate" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Adde alcun canales a tu pacchetto de initio!" @@ -718,31 +750,27 @@ msgstr "Adde le sequente registro DNS a tu dominio:" #: src/components/FeedCard.tsx:305 msgid "Add this feed to your feeds" -msgstr "Adde iste fluxo a tu fluxos" +msgstr "Adde iste canal a tu canales" #: src/view/com/profile/ProfileMenu.tsx:305 #: src/view/com/profile/ProfileMenu.tsx:308 msgid "Add to lists" msgstr "Adder al listas" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Adder a mi fluxos" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" -msgstr "" +msgstr "Adder usator al lista" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109 #: src/view/com/modals/UserAddRemoveLists.tsx:162 msgid "Added to list" msgstr "Addite al lista" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Addite a mi fluxos" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Detalios additional (limite: 300 characteres)" @@ -750,18 +778,18 @@ msgstr "Detalios additional (limite: 300 characteres)" msgid "Adult" msgstr "Adulto" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Contento pro adultos" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." -msgstr "Le contento pro adultos pote solmente esser activate via le Web sur <0>bsky.app." +msgstr "Le contento pro adultos solmente pote esser activate via le Web a <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Le contento pro adultos es disactivate." @@ -770,16 +798,32 @@ msgstr "Le contento pro adultos es disactivate." msgid "Adult Content labels" msgstr "Etiquettas de contento pro adultos" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Avantiate" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 -msgid "alice@example.com" +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" msgstr "" -#: src/view/screens/Notifications.tsx:86 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +msgid "alice@example.com" +msgstr "alice@exemplo.com" + +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Toto" @@ -793,7 +837,7 @@ msgstr "Tote le contos ha essite sequite!" msgid "All languages" msgstr "Tote le linguas" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Tote le canales que tu ha salvate, in un sol loco." @@ -802,16 +846,21 @@ msgstr "Tote le canales que tu ha salvate, in un sol loco." msgid "Allow access to your direct messages" msgstr "Permitter accesso a tu messages directe" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Permitter nove messages de" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "Permitter que alteres sia notificate de tu publicationes" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Permitter citationes" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Permitter responsas de:" @@ -828,13 +877,13 @@ msgstr "Ha tu jam un codice?" msgid "Already signed in as @{0}" msgstr "Tu es ja in session como @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,62 +893,54 @@ msgstr "ALT" msgid "Alt text" msgstr "Texto alternative" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Texto alternative" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." -msgstr "Le texto alternativre describe imagines pro usatores cec o mal vidente, e adjuta a dar contexto a omnes." +msgstr "Le texto alternative describe imagines pro usatores cec o con problemas de vision, e adjuta a dar contexto a totes." #: src/view/com/composer/GifAltText.tsx:179 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}" -msgstr "Le texto alternative essera truncate. {MAX_ALT_TEXT, plural, one {}other {Limite: {0} characteres.}}" +msgstr "Le texto alternative essera truncate. {MAX_ALT_TEXT, plural, other {Limite: {0} characteres.}}" #: src/screens/Settings/components/DisableEmail2FADialog.tsx:93 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." -msgstr "Un adresse de e-mail ha essite inviate a {0}. Illo include un codice de confirmation que tu pote inserer hic infra." +msgstr "Un e-mail ha essite inviate a {0}. Illo include un codice de confirmation que tu pote inserer hic infra." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Un message de e-mail ha essite inviate! Per favor insere le codice de confirmation includite in illo hic infra." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Un error ha occurrite" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Un error ha occurrite" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Un error ha occurrite durante le compression del video." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." -msgstr "Un error occurreva durante le recuperation del canal." +msgstr "Un error ha occurrite durante le recuperation del canal." #: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Un error ha occurrite durante le generation de tu pacchetto de initio. Vole tu tentar lo de novo?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Un error ha occurrite durante le cargamento del video. Per favor tenta lo de novo plus tarde." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Un error ha occurrite durante le cargamento del video. Per favor tenta lo de novo." #: src/components/StarterPack/QrCodeDialog.tsx:72 msgid "An error occurred while saving the QR code!" -msgstr "Un error ha occurrite in salvar le codice QR!" +msgstr "Un error ha occurrite durante le salvamento del codice QR!" #: src/view/com/composer/videos/SelectVideoBtn.tsx:63 msgid "An error occurred while selecting the video" @@ -910,14 +951,14 @@ msgstr "Un error ha occurrite durante le selection del video" msgid "An error occurred while trying to follow all" msgstr "Un error ha occurrite durante le tentativa de sequer totes" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Un error ha occurrite durante le cargamento del video." #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84 #: src/components/verification/VerifierDialog.tsx:86 msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts." -msgstr "" +msgstr "Un illustration monstrante que Bluesky selige verificatores de confidentia qui, a su vice, verifica contos de usatores individual." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28 #: src/lib/moderation/useReportOptions.ts:28 @@ -934,8 +975,8 @@ msgstr "Un problema ha occurrite durante le tentativa de aperir le chat" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -943,7 +984,7 @@ msgstr "Un problema ha occurrite, per favor tenta lo de novo." #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118 msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name." -msgstr "" +msgstr "Un simulation de un iPhone monstrante le application Bluesky aperte al profilo de un usator verificate con un marca de verification blau proxime a su nomine a monstrar." #: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" @@ -954,7 +995,7 @@ msgstr "un error incognite ha occurrite" msgid "an unknown labeler" msgstr "un etiquettator incognite" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "e" @@ -963,13 +1004,17 @@ msgstr "e" msgid "Animals" msgstr "Animales" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "GIF animate" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" -msgstr "" +msgstr "Annuncio del verification super Bluesky" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33 #: src/lib/moderation/useReportOptions.ts:33 @@ -980,7 +1025,13 @@ msgstr "Comportamento antisocial" msgid "Anybody can interact" msgstr "Quicunque pote interager" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "Quicunque qui me seque" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "Le nomines de contrasigno de application pote solmente continer litteras msgid "App password names must be at least 4 characters long" msgstr "Le nomines de contrasigno de application debe haber al minus 4 characteres" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Contrasignos de application" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Contrasignos de application" @@ -1035,7 +1086,7 @@ msgstr "Facer appello del etiquetta “{0}”" #: src/screens/Messages/components/ChatDisabled.tsx:91 msgctxt "toast" msgid "Appeal submitted" -msgstr "Appello submittite" +msgstr "Appello inviate" #: src/screens/Takendown.tsx:111 #: src/screens/Takendown.tsx:144 @@ -1053,10 +1104,10 @@ msgstr "Facer appello del suspension" msgid "Appeal this decision" msgstr "Facer appello de iste decision" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Apparentia" @@ -1065,12 +1116,20 @@ msgstr "Apparentia" msgid "Apply default recommended feeds" msgstr "Applicar le canales recommendate predefinite" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Archivate desde {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Publication archivate" @@ -1078,9 +1137,9 @@ msgstr "Publication archivate" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Es tu secur de voler deler le contrasigno del application “{0}”?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." -msgstr "Es tu secur de voler deler iste message? Le message essera delite pro te, ma non pro le altere participante." +msgstr "Es tu secur de voler deler iste message? Le message essera delite pro te, mais non pro le altere participante." #: src/screens/StarterPack/StarterPackScreen.tsx:657 msgid "Are you sure you want to delete this starter pack?" @@ -1088,29 +1147,25 @@ msgstr "Es tu secur de voler deler iste pacchetto de initio?" #: src/screens/Profile/Header/EditProfileDialog.tsx:86 msgid "Are you sure you want to discard your changes?" -msgstr "Es tu secur de voler abandonar tu cambiamentos?" +msgstr "Es tu secur de voler discartar tu cambiamentos?" #: src/components/dms/LeaveConvoPrompt.tsx:46 msgid "Are you sure you want to leave this conversation?" -msgstr "Es tu secur de voler lassar iste conversation?" +msgstr "Es tu secur de voler partir de iste conversation?" #: src/components/dms/LeaveConvoPrompt.tsx:45 msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Es tu secur de voler quitar iste conversation? Tu messages essera eliminate pro te, ma non pro le altere participante." - -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Es tu secur de voler remover {0} de tu canales?" +msgstr "Es tu secur de voler partir de iste conversation? Tu messages essera delite pro te, mais non pro le altere participante." #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Es tu secur de voler remover isto de tu canales?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" -msgstr "Es tu secur de voler discartar iste esbosso?" +msgstr "Es tu secur de voler discartar iste minuta?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Es tu secur de voler discartar iste publication?" @@ -1131,29 +1186,26 @@ msgstr "Arte" msgid "Artistic or non-erotic nudity." msgstr "Nuditate artistic o non erotic." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" -msgstr "" +msgstr "Assignar topico pro le algorithmo" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Al minus 3 characteres" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Le optiones de reproduction automatic ha essite displaciate al <0>parametros de contento e multimedia." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Reproducer automaticamente videos e GIFs" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,60 +1215,76 @@ msgstr "Reproducer automaticamente videos e GIFs" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" -msgstr "Retro" +msgstr "Retornar" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Retornar al chats" #: src/view/screens/Lists.tsx:53 #: src/view/screens/ModerationModlists.tsx:53 msgid "Before creating a list, you must first verify your email." -msgstr "Ante de crear un lista, tu debe primo verificar tu adresse de e-posta." +msgstr "Ante crear un lista, tu debe primo verificar tu adresse de e-mail." #: src/lib/hooks/useOpenComposer.tsx:14 msgid "Before creating a post or replying, you must first verify your email." -msgstr "" +msgstr "Ante crear un publication o responder, tu debe verificar tu e-mail." #: src/components/StarterPack/ProfileStarterPacks.tsx:235 #: src/components/StarterPack/ProfileStarterPacks.tsx:245 msgid "Before creating a starter pack, you must first verify your email." -msgstr "Ante de crear un pacchetto de initio, tu debe primo verificar tu adresse de e-mail." +msgstr "Ante crear un pacchetto de initio, tu debe primo verificar tu adresse de e-mail." #: src/screens/Messages/components/RequestButtons.tsx:235 msgid "Before you can accept this chat request, you must first verify your email." -msgstr "" +msgstr "Ante que tu pote acceptar iste requesta de chat, tu debe verificar tu e-mail." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "Ante que tu pote reciper notificationes pro le publicationes de {name}, tu debe verificar tu e-mail." #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." +msgstr "Ante que tu pote inviar messages a un altere usator, tu debe verificar tu e-mail." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" -msgstr "Anniversario" +msgstr "Data de nascentia" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Blocar" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Blocar" msgid "Block account" msgstr "Blocar conto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Blocar conto?" @@ -1262,43 +1330,43 @@ msgstr "Blocar usator" msgid "Block User" msgstr "Blocar usator" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Blocate" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Contos blocate" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Contos blocate" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." -msgstr "Le contos blocate non pote responder in tu discussiones, mentionar te, o alteremente interager con te." +msgstr "Contos blocate non pote responder in tu filos, mentionar te o interager con te de alcun altere maniera." #: src/view/screens/ModerationBlockedAccounts.tsx:190 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." -msgstr "Le contos blocate non pote responder in tu discussiones, mentionar te, o alteremente interager con te. Tu non videra lor contento e illes non potera vider le tue." +msgstr "Contos blocate non pote responder in tu filos, mentionar te o interager con te de alcun altere maniera. Tu non videra lor contento e illes non potera vider le tue." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Publication blocate." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blocar non impedi que iste etiquettator applica etiquettas a tu conto." #: src/view/screens/ProfileList.tsx:786 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." -msgstr "Le blocage es public. Contos blocate non pote responder in tu discussiones, mentionar te o alteremente interager con te." +msgstr "Le blocage es public. Contos blocate non pote responder in tu filos, mentionar te o interager con te de alcun altere maniera." #: src/view/com/profile/ProfileMenu.tsx:465 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." -msgstr "Le blocage non impedi le application de etiquettas a tu conto, ma iste conto non potera responder in tu discussiones o interager con te." +msgstr "Le blocage non impedi le application de etiquettas a tu conto, mais iste conto non potera responder in tu filos o interager con te." #: src/view/com/auth/SplashScreen.web.tsx:175 msgid "Blog" @@ -1309,11 +1377,12 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky non pote confirmar le authenticitate del data declarate." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1324,7 +1393,7 @@ msgstr "Bluesky es un rete aperte ubi tu pote eliger tu fornitor de albergamento #: src/view/com/auth/server-input/index.tsx:149 msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." -msgstr "Bluesky es un rete aperte ubi tu pote eliger tu fornitor. Si tu es nove hic, nos recommenda eliger le option predefinite, Bluesky Social." +msgstr "Bluesky es un rete aperte ubi tu pote eliger tu proprie fornitor. Si tu es nove hic, nos recommenda eliger le option predefinite, Bluesky Social." #: src/components/ProgressGuide/List.tsx:53 #: src/components/ProgressGuide/List.tsx:70 @@ -1341,10 +1410,18 @@ msgstr "Bluesky eligera un insimul de contos recommendate inter le personas in t #: src/screens/Settings/components/PwiOptOut.tsx:99 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." -msgstr "Bluesky non monstrara tu profilo e publicationes al usatores que non ha aperite session. Altere applicationes pote non honorar iste requesta. Iste option non rende tu conto private." +msgstr "Bluesky non monstrara tu profilo e publicationes al usatores sin session aperte. Altere applicationes pote non honorar iste requesta. Iste option non rende tu conto private." #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132 msgid "Bluesky will proactively verify notable and authentic accounts." +msgstr "Bluesky verificara proactivemente contos notabile e authentic." + +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" msgstr "" #: src/screens/Settings/AppIconSettings/index.tsx:99 @@ -1368,25 +1445,22 @@ msgstr "Disfocalisar imagines e non monstrar los in canales" msgid "Books" msgstr "Libros" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" -msgstr "Percurre altere contos sur le pagina Explorar" +msgstr "Percurre altere contos super le pagina Explorar" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" -msgstr "Percurre altere canales sur le pagina Explorar" +msgstr "Percurre altere canales super le pagina Explorar" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Percurrer plus suggestiones" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" -msgstr "Percurre plus suggestiones sur le pagina Explorar" +msgstr "Percurre plus suggestiones super le pagina Explorar" #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 @@ -1395,7 +1469,7 @@ msgstr "Percurrer altere canales" #: src/components/TrendingTopics.tsx:178 msgid "Browse posts about {displayName}" -msgstr "Percurrer publicationes sur {displayName}" +msgstr "Percurrer publicationes super {displayName}" #: src/components/TrendingTopics.tsx:186 msgid "Browse posts tagged with {displayName}" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Negotios" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Per {0}" @@ -1428,34 +1502,45 @@ msgstr "Per {0}" msgid "By <0>{0}" msgstr "Per <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." -msgstr "In crear un conto, tu accepta le <0>politica de privatessa." +msgstr "Creante un conto, tu accepta le <0>politica de privatessa." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." -msgstr "In crear un conto, tu accepta le <0>conditiones de servicio e le <1>politica de privatessa." +msgstr "Creante un conto, tu accepta le <0>conditiones de servicio e le <1>politica de privatessa." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "In crear un conto, tu accepta le <0>conditiones de servicio." #: src/screens/Search/components/StarterPackCard.tsx:105 msgid "By you" -msgstr "" +msgstr "Per te" #: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Camera" msgstr "Camera" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Camera" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Cancellar" @@ -1494,17 +1576,13 @@ msgstr "Cancellar" #: src/view/com/modals/DeleteAccount.tsx:166 #: src/view/com/modals/DeleteAccount.tsx:274 msgid "Cancel account deletion" -msgstr "Cancellar suppression de conto" +msgstr "Cancellar deletion de conto" #: src/view/com/modals/CropImage.web.tsx:94 msgid "Cancel image crop" msgstr "Cancellar le retalio del imagine" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Cancellar edition de profilo" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Cancellar citation" @@ -1516,14 +1594,10 @@ msgstr "Cancellar le reactivation e clauder session" msgid "Cancel search" msgstr "Cancellar cerca" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Cancella le apertura del sito web ligate" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Impossibile interager con un usator blocate" @@ -1551,19 +1625,14 @@ msgstr "Cambiar icone de application a \"{0}\"" #: src/components/AppLanguageDropdown.tsx:40 msgid "Change app language" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Cambiar adresse de e-mail" +msgstr "Cambiar le lingua del application" #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" -msgstr "Cambiar nomine de usator" +msgstr "Cambiar pseudonymo" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Cambiar de servicio de moderation" @@ -1577,15 +1646,7 @@ msgstr "Cambiar le lingua del publication a {suggestedLanguageName}" #: src/components/moderation/ReportDialog/index.tsx:244 msgid "Change report reason" -msgstr "Cambiar ration de appello" - -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Cambiar tu e-mail" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Cambiar tu adresse de e-mail" +msgstr "Cambiar ration de signalamento" #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" @@ -1596,10 +1657,15 @@ msgstr "Cambia le icone del application" msgid "Changes hosting provider" msgstr "Cambia le fornitor de albergamento" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "Cambiamentos salvate" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Chat" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Chat delite" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "Messages de chat - silentiose" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "Messages de chat - con sono" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Chat silentiate" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" -msgstr "" +msgstr "Cassa de entrata de requestas de chat" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Requestas de chat" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Configurationes de Chat" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Configurationes de Chat" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat dissilentiate" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Chats" @@ -1651,25 +1728,25 @@ msgstr "Verificar mi stato" #: src/screens/Login/LoginForm.tsx:301 msgid "Check your email for a sign in code and enter it here." -msgstr "Consulta tu e-mail pro un codice de apertura de session e insere lo hic." +msgstr "Verifica tu e-mail pro un codice de apertura de session e insere lo hic." #: src/view/com/modals/DeleteAccount.tsx:213 msgid "Check your inbox for an email with the confirmation code to enter below:" -msgstr "Consulta tu cassa de entrata pro un message de e-mail con le codice de confirmation a inserer hic infra:" +msgstr "Verifica tu cassa de entrata pro un message de e-mail con le codice de confirmation a inserer hic infra:" #: src/screens/Settings/components/ChangeHandleDialog.tsx:389 msgid "Choose domain verification method" msgstr "Elige methodo de verification de dominio" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" -msgstr "Eliger fluxos" +msgstr "Eliger canales" #: src/components/StarterPack/ProfileStarterPacks.tsx:318 msgid "Choose for me" msgstr "Elige por me" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Elige personas" @@ -1685,52 +1762,56 @@ msgstr "Elige iste color como tu avatar" msgid "Choose your account provider" msgstr "Elige tu fornitor de conto" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Elige tu proprie linea de tempore! Le canales construite per le communitate te adjuta a trovar contentos que tu ama." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Elige tu contrasigno" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Elige tu nomine de usator" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" -msgstr "Nettar tote le datos de immagazinage" +msgstr "Rader tote le datos de immagazinage" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Rader tote le datos de immagazinage (reinitiar postea)" #: src/screens/Settings/AboutSettings.tsx:116 #: src/screens/Settings/AboutSettings.tsx:120 msgid "Clear image cache" -msgstr "" +msgstr "Rader le cache de imagines" #: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" -msgstr "Nettar texto a cercar" +msgstr "Rader texto a cercar" + +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "Clicca pro information" #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "clicca hic" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." -msgstr "" +msgstr "Clicca hic pro reinitiar le processo de verification." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" -msgstr "" +msgstr "Clicca hic pro actualisar tu e-mail" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." -msgstr "Clicca pro impedir le citationes de iste publication." +msgstr "Clicca pro disactivar citationes de iste publication." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Clicca pro permitter le citationes de iste publication." @@ -1740,7 +1821,7 @@ msgstr "Clicca pro aperir un menu de etiquetta pro {tag}" #: src/components/dms/MessageItem.tsx:317 msgid "Click to retry failed message" -msgstr "Clicca pro retentar le message fallite" +msgstr "Clicca pro tentar inviar le message de novo" #: src/screens/Onboarding/index.tsx:32 msgid "Climate" @@ -1750,14 +1831,16 @@ msgstr "Climate" msgid "Clip 🐴 clop 🐴" msgstr "Cataclop 🐴 cataclop 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Cataclop 🐴 cataclop 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Clauder" @@ -1789,22 +1876,24 @@ msgstr "Clauder alerta" msgid "Close bottom drawer" msgstr "Clauder le tiratorio inferior" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Clauder quadro de dialogo" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" -msgstr "" +msgstr "Clauder le menu lateral" #: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136 #: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172 msgid "Close emoji picker" msgstr "Clauder le selector de emojis" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Clauder quadro de dialogo de GIF" @@ -1822,7 +1911,7 @@ msgstr "Clauder visualisator de imagine" msgid "Close menu" msgstr "Clauder menu" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Clauder iste quadro de dialogo" @@ -1830,9 +1919,9 @@ msgstr "Clauder iste quadro de dialogo" msgid "Closes password update alert" msgstr "Claude le alerta de actualisation de contrasigno" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" -msgstr "" +msgstr "Claude le fenestra de redaction e discarta le minuta del publication" #: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137 #: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173 @@ -1843,22 +1932,22 @@ msgstr "Claude le selector de emojis" msgid "Closes viewer for header image" msgstr "Claude le visor del imagine de capite" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Collaber lista de usatores" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Contrahe le lista de usatores pro un notification date" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Modo de color" #: src/components/dialogs/Embed.tsx:151 msgid "Color theme" -msgstr "Thema de color" +msgstr "Thema de colores" #: src/screens/Onboarding/index.tsx:38 #: src/screens/Onboarding/state.ts:97 @@ -1868,49 +1957,46 @@ msgstr "Comedia" #: src/screens/Onboarding/index.tsx:24 #: src/screens/Onboarding/state.ts:98 msgid "Comics" -msgstr "" +msgstr "Bandas designate" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" -msgstr "Guidas del communitate" +msgstr "Directivas del communitate" #: src/screens/Onboarding/StepFinished.tsx:311 msgid "Complete onboarding and start using your account" -msgstr "" +msgstr "Concluder le apprentissage e comenciar a usar tu conto" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Completa le defia" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Scriber un nove publication" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" -msgstr "" +msgstr "Redige publicationes de usque a {0, plural, other {# characteres}}" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Scriber un responsa" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Compression del video in curso..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Configurar le parametros de filtrage de contento pro le categoria: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Configurate in le <0>parametros de moderation." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1924,20 +2010,17 @@ msgstr "Confirmar configurationes de lingua de contento" #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Confirm delete account" -msgstr "Confirmar suppression de conto" +msgstr "Confirmar le deletion del conto" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Confirma tu etate:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" -msgstr "" +msgstr "Confirma tu data de nascentia" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "" msgid "Confirmation code" msgstr "Codice de confirmation" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Codice de confirmation" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." -msgstr "Connexion in corso..." +msgstr "Connexion in curso..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Contactar supporto" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Contento e multimedia" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Contento e multimedia" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Contento e multimedia" @@ -1977,7 +2069,8 @@ msgstr "Contento e multimedia" msgid "Content Blocked" msgstr "Contento blocate" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Filtros de contento" @@ -2006,10 +2099,12 @@ msgstr "Advertimento de contento" msgid "Content warnings" msgstr "Advertimentos de contento" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Fundo de menu contextual. Clicca pro clauder le menu." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,9 +2114,14 @@ msgstr "Continuar" msgid "Continue as {0} (currently signed in)" msgstr "Continar como {0} (actualmente in session)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "Continuar filo" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." -msgstr "" +msgstr "Continuar filo..." #: src/screens/Onboarding/StepInterests/index.tsx:241 #: src/screens/Onboarding/StepProfile/index.tsx:273 @@ -2029,6 +2129,10 @@ msgstr "" msgid "Continue to next step" msgstr "Continuar al proxime passo" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Copiate" msgid "Copied build version to clipboard" msgstr "Version de compilation copiate al area de transferentia" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Copia le version del compilation al area de transferentia" msgid "Copy" msgstr "Copiar" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Copiar contrasigno de application" @@ -2087,8 +2187,8 @@ msgstr "Copiar contrasigno de application" msgid "Copy at:// URI" msgstr "Copiar URI at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Copiar le DID del autor" @@ -2120,34 +2220,34 @@ msgstr "Copiar ligamine" msgid "Copy link to list" msgstr "Copiar ligamine al lista" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Copiar ligamine al publication" #: src/view/com/profile/ProfileMenu.tsx:243 #: src/view/com/profile/ProfileMenu.tsx:254 msgid "Copy link to profile" -msgstr "" +msgstr "Copiar ligamine al profilo" #: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Copy link to starter pack" -msgstr "" +msgstr "Copiar ligamine al pacchetto de initio" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Copiar message de texto" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Copiar URI at:// del publication" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Copiar texto de publication" @@ -2159,31 +2259,53 @@ msgstr "Copiar codice QR" msgid "Copy TXT record value" msgstr "Copiar le valor del registro TXT" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" -msgstr "Politica de Copyright" +msgstr "Politica de derectos de autor" + +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "Non ha essite possibile connecter al canal personalisate" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "Non ha essite possibile connecter al servicio de canal" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "Non ha essite possibile trovar le profilo" #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" -msgstr "Non esseva possibile lassar le chat" +msgstr "Non ha essite possibile partir del chat" #: src/screens/Profile/ProfileFeed/index.tsx:83 msgid "Could not load feed" -msgstr "Non poteva cargar le canal" +msgstr "Non ha essite possibile cargar le canal" #: src/view/screens/ProfileList.tsx:1029 msgid "Could not load list" -msgstr "Non poteva cargar le lista" +msgstr "Non ha essite possibile cargar le lista" #: src/components/dms/ConvoMenu.tsx:182 msgid "Could not mute chat" -msgstr "Non poteva silentiar le chat" +msgstr "Non ha essite possibile silentiar le chat" #: src/view/com/composer/videos/VideoPreview.web.tsx:66 msgid "Could not process your video" -msgstr "" +msgstr "Non ha essite possibile processar tu video" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "Non ha essite possibile salvar le cambiamentos: {0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "Non ha essite possibile actualisar le parametros de notification" #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" @@ -2195,7 +2317,7 @@ msgstr "Crear un codice QR pro un pacchetto de initio" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Crear un pacchetto de initio" @@ -2205,32 +2327,33 @@ msgstr "Crea un pacchetto de initio pro me" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Crear conto" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Crear conto" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Crear un conto" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:310 msgid "Create an account without using this starter pack" -msgstr "" +msgstr "Crear un conto sin usar iste pacchetto de initio" #: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Create an avatar instead" -msgstr "In vice de isto, crear un avatar" +msgstr "In vice, crear un avatar" #: src/components/StarterPack/ProfileStarterPacks.tsx:185 msgid "Create another" @@ -2241,10 +2364,10 @@ msgstr "Crear un altere" msgid "Create new account" msgstr "Crear nove conto" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" -msgstr "Crear un reporto pro {0}" +msgstr "Crear un signalamento pro {0}" #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" @@ -2268,7 +2391,7 @@ msgstr "Personalisate" msgid "Customization options" msgstr "Optiones de personalisation" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Personalisa qui pote interager con iste publication." @@ -2278,12 +2401,12 @@ msgstr "Personalisa tu experientia de Bluesky" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Obscur" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Obscur" @@ -2292,29 +2415,29 @@ msgstr "Obscur" msgid "Dark mode" msgstr "Modo obscur" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Thema obscur" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" -msgstr "" +msgstr "Data de nascentia" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Disactivar conto" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" -msgstr "" +msgstr "Depurar le moderation" #: src/view/screens/Debug.tsx:89 msgid "Debug panel" msgstr "Pannello de depuration" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Predefinite" @@ -2322,8 +2445,8 @@ msgstr "Predefinite" msgid "Default icons" msgstr "Icones predefinite" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Icones predefinite" msgid "Delete" msgstr "Deler" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Deler conto" @@ -2355,7 +2478,7 @@ msgstr "Deler le contrasigno de application?" msgid "Delete chat" msgstr "Deler chat" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Deler le registro de declaration de chat" @@ -2370,7 +2493,7 @@ msgstr "Deler conversation" msgid "Delete Conversation" msgstr "Deler conversation" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Deler pro me" @@ -2378,11 +2501,11 @@ msgstr "Deler pro me" msgid "Delete list" msgstr "Deler lista" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Deler message" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Deler message pro me" @@ -2390,9 +2513,9 @@ msgstr "Deler message pro me" msgid "Delete my account" msgstr "Deler mi conto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Deler publication" @@ -2409,11 +2532,11 @@ msgstr "Deler pacchetto de initio?" msgid "Delete this list?" msgstr "Deler iste lista?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Deler iste publication?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Delite" @@ -2422,15 +2545,20 @@ msgstr "Delite" msgid "Deleted Account" msgstr "Conto delite" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "Lista delite" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Publication delite." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Description" @@ -2440,91 +2568,91 @@ msgstr "Le description es troppo longe" #: src/screens/Profile/Header/EditProfileDialog.tsx:390 msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" -msgstr "" +msgstr "Le description es troppo longe. {DESCRIPTION_MAX_GRAPHEMES, plural, other {Le numero maxime de characteres es #.}}" #: src/view/com/composer/GifAltText.tsx:150 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "Texto alternative descriptive" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" -msgstr "" +msgstr "Disannexar citation" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" -msgstr "" +msgstr "Disannexar le citation?" #: src/screens/Settings/AboutSettings.tsx:140 msgctxt "toast" msgid "Developer mode disabled" -msgstr "Modo de disveloppator dishabilitate" +msgstr "Modo de disveloppator disactivate" #: src/screens/Settings/AboutSettings.tsx:134 msgctxt "toast" msgid "Developer mode enabled" -msgstr "Modo de disveloppator habilitate" +msgstr "Modo de disveloppator activate" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Optiones de disveloppator" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Dialogo: adjusta qui pote interager con iste publication" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Tenue" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242 msgid "Disable 2FA" -msgstr "" +msgstr "Disactivar 2FA" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157 msgid "Disable email 2FA" -msgstr "" +msgstr "Disactivar 2FA per e-mail" #: src/screens/Settings/components/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "Disactivar le 2FA per e-mail" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Disactivar le retroaction haptic" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Disactivar subtitulos" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" -msgstr "Dishabilitate" +msgstr "Disactivate" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" -msgstr "" +msgstr "Discartar" #: src/screens/Profile/Header/EditProfileDialog.tsx:85 msgid "Discard changes?" -msgstr "" +msgstr "Discartar cambiamentos?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" -msgstr "" +msgstr "Discartar minuta?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Discartar publication?" @@ -2540,9 +2668,9 @@ msgstr "Discoperir canales" #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" -msgstr "Discoperi nove fluxos personalisate" +msgstr "Discoperi nove canales personalisate" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Discoperir nove canales" @@ -2550,7 +2678,7 @@ msgstr "Discoperir nove canales" msgid "Dismiss" msgstr "Clauder" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Clauder error" @@ -2562,33 +2690,33 @@ msgstr "Clauder le guida de introduction" msgid "Dismiss interests" msgstr "Clauder interesses" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Clauder iste section" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Monstrar insignias plus grande de texto alternative" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Nomine a monstrar" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Nomine a monstrar" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Le nomine a monstrar es troppo longe" #: src/screens/Profile/Header/EditProfileDialog.tsx:340 msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" -msgstr "" +msgstr "Le nomine a monstrar es troppo longe. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {Le numero maxime de characteres es #.}}" #: src/screens/Settings/components/ChangeHandleDialog.tsx:392 #: src/screens/Settings/components/ChangeHandleDialog.tsx:394 @@ -2603,20 +2731,25 @@ msgstr "Non applicar iste parola silentiate al usatores que tu seque" msgid "Does not include nudity." msgstr "Non include nuditate." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Dominio verificate!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." -msgstr "" +msgstr "Tu non ha un codice o ha necessitate de un nove? <0>Clicca hic." #: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37 msgid "Don't see an email? <0>Click here to resend." +msgstr "Tu non trova le e-mail? <0>Clicca hic pro reinviar." + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:115 @@ -2654,13 +2787,13 @@ msgstr "Facite{extraText}" #: src/components/dms/MessageItem.tsx:161 msgid "Double tap or long press the message to add a reaction" -msgstr "" +msgstr "Tocca duo vices o preme longemente le message pro adder un reaction" #: src/components/Dialog/index.tsx:322 msgid "Double tap to close the dialog" msgstr "Tocca duo vices pro clauder le quadro de dialogo" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Tocca duo vices pro appreciar" @@ -2673,7 +2806,7 @@ msgstr "Discargar Bluesky" msgid "Download CAR file" msgstr "Discargar file CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Depone pro adder imagines" @@ -2689,18 +2822,10 @@ msgstr "p.ex. alice" msgid "e.g. Alice Lastname" msgstr "p.ex. Alice Nominedefamilia" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "p.ex. Alice Roberts" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "p.ex. alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "p.ex. Artista, amante de canes e lectrice avide." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "P.ex. nuditate artistic." @@ -2725,10 +2850,11 @@ msgstr "p.ex. Usatores qui sempre responde con publicitate." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Cata codice functiona un vice. Tu recipera plus codices de invitation periodicamente." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Modificar" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Modificar" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Modificar avatar" @@ -2749,12 +2875,12 @@ msgstr "Modificar canales" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Modificar imagine" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Modificar parametros de interaction" @@ -2770,39 +2896,39 @@ msgstr "Modificar le detalios del lista" #: src/view/com/profile/ProfileMenu.tsx:317 #: src/view/com/profile/ProfileMenu.tsx:323 msgid "Edit live status" -msgstr "" +msgstr "Modificar stato in directo" #: src/view/com/modals/CreateOrEditList.tsx:228 msgid "Edit Moderation List" msgstr "Modificar lista de moderation" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Modificar mi canales" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Modificar mi profilo" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "Modificar notificationes de {0}" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Modificar personas" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Modificar le parametros de interaction del publication" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Modificar profilo" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Modificar profilo" @@ -2814,19 +2940,11 @@ msgstr "Modificar pacchetto de initio" msgid "Edit User List" msgstr "Modificar lista de usatores" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Modificar qui pote responder" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Modificar tu nomine a monstrar" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Modificar tu description de profilo" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Modificar tu pacchetto de initio" @@ -2839,8 +2957,8 @@ msgstr "Education" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "O le creator de iste lista te ha blocate, o tu ha blocate le creator." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "E-mail" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "2FA per e-mail disactivate" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "2FA per e-mail activate" @@ -2863,15 +2981,11 @@ msgstr "E-mail reinviate" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:208 msgid "Email sent!" -msgstr "" - -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "" +msgstr "E-mail inviate!" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" -msgstr "" +msgstr "Verification de e-mail completate!" #: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" @@ -2879,20 +2993,20 @@ msgstr "E-mail verificate" #: src/components/dialogs/Embed.tsx:181 msgid "Embed HTML code" -msgstr "" +msgstr "Codice HTML de incorporation" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" -msgstr "" +msgstr "Incorporar publication" #: src/components/dialogs/Embed.tsx:112 msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incorporar iste publication in tu sito web. Basta copiar le sequente fragmento e collar lo in le codice HTML de tu sito web." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Reproductor de video incorporate" @@ -2900,35 +3014,39 @@ msgstr "Reproductor de video incorporate" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111 #: src/screens/Settings/components/Email2FAToggle.tsx:31 msgid "Enable" -msgstr "Habilitar" +msgstr "Activar" #: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" -msgstr "Habilitar {0} solmente" +msgstr "Activar {0} solmente" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" -msgstr "Habilitar contento pro adultos" +msgstr "Activar contento pro adultos" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92 msgid "Enable email 2FA" -msgstr "" +msgstr "Activar 2FA per e-mail" #: src/components/dialogs/EmbedConsent.tsx:81 #: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "Activar contento multimedial externe" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Activar reproductores multimedial pro" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Activar notificationes prioritari" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "Activa le notificationes de un conto visitante su profilo e premente le <0>icone de campana <1/>." -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "Activar notificationes push" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Activar subtitulos" @@ -2941,19 +3059,16 @@ msgstr "Activar iste fonte solmente" msgid "Enable trending topics" msgstr "Activar tendentias" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Activar videos de tendentia in tu canal Discoperir" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Activar videos de tendentia in tu canal Discoperir." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" -msgstr "Habilitate" +msgstr "Activate" #: src/screens/Profile/Sections/Feed.tsx:113 msgid "End of feed" @@ -2963,31 +3078,27 @@ msgstr "Fin de canal" msgid "Ensure you have selected a language for each subtitle file." msgstr "Assecura te que tu ha selectionate un lingua pro cata file de subtitulo." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" -msgstr "Entra un contrasigno" +msgstr "Insere un contrasigno" #: src/components/dialogs/MutedWords.tsx:127 #: src/components/dialogs/MutedWords.tsx:128 msgid "Enter a word or tag" -msgstr "Entra un parola o etiquetta" +msgstr "Insere un parola o etiquetta" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" -msgstr "" +msgstr "Insere codice" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Entra codice" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Passar a plen schermo" #: src/view/com/modals/ChangePassword.tsx:165 msgid "Enter the code you received to change your password." -msgstr "Insere le codice que tu recipeva pro cambiar tu contrasigno." +msgstr "Insere le codice que tu ha recipite pro cambiar tu contrasigno." #: src/screens/Settings/components/ChangeHandleDialog.tsx:370 msgid "Enter the domain you want to use" @@ -2995,34 +3106,30 @@ msgstr "Insere le dominio que tu vole usar" #: src/screens/Login/ForgotPasswordForm.tsx:113 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." -msgstr "Insere le e-mail que tu usava pro crear tu conto. Nos te inviara un \"codice de reinitialisation\" a fin que tu defini un nove contrasigno." +msgstr "Insere le e-mail que tu ha usate pro crear tu conto. Nos te inviara un \"codice de reinitialisation\" a fin que tu defini un nove contrasigno." #: src/screens/Login/LoginForm.tsx:218 msgid "Enter the username or email address you used when you created your account" -msgstr "Insere le nomine de usator o adresse de e-mail que tu usava quando tu creava tu conto" +msgstr "Insere le nomine de usator o adresse de e-mail que tu ha usate quando tu ha create tu conto" #: src/components/dialogs/BirthDateSettings.tsx:104 msgid "Enter your birth date" -msgstr "" +msgstr "Insere tu data de nascentia" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Insere tu adresse de e-mail" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Insere tu nove adresse de e-mail infra." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Insere tu contrasigno" #: src/screens/Login/index.tsx:123 msgid "Enter your username and password" -msgstr "Entra tu nomine de usator e contrasigno" +msgstr "Insere tu nomine de usator e contrasigno" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Passa a plen schermo" @@ -3030,44 +3137,63 @@ msgstr "Passa a plen schermo" msgid "Entertainment" msgstr "Intertenimento" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Error" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "Error durante le cargamento del publication" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "Error durante le cargamento del preferentia" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "Message de error" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" -msgstr "Un error occurreva durante le salvamento del file" +msgstr "Un error ha occurrite durante le salvamento del file" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." -msgstr "" +msgstr "Error durante le reception del responsa al captcha." #: src/screens/Onboarding/StepInterests/index.tsx:183 msgid "Error:" msgstr "Error:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "Error: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Totos" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Totos pote responder" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Totos pote responder a iste publication." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Totes" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "Tote le resto" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3076,7 +3202,7 @@ msgstr "Mentiones o responsas excessive" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:86 #: src/lib/moderation/useReportOptions.ts:86 msgid "Excessive or unwanted messages" -msgstr "Messages excessive o indesiderabile" +msgstr "Messages excessive o indesirabile" #: src/components/dialogs/MutedWords.tsx:311 msgid "Exclude users you follow" @@ -3086,44 +3212,48 @@ msgstr "Excluder usatores que tu seque" msgid "Excludes users you follow" msgstr "Exclude al usatores que tu seque" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Exir del schermo plen" #: src/view/com/modals/DeleteAccount.tsx:275 msgid "Exits account deletion process" -msgstr "Exi del processo de elimination de conto" +msgstr "Exi del processo de deletion de conto" #: src/view/com/modals/CropImage.web.tsx:95 msgid "Exits image cropping process" -msgstr "" +msgstr "Exi del processo de retalio de imagine" #: src/view/com/lightbox/Lightbox.web.tsx:110 msgid "Exits image view" -msgstr "" +msgstr "Exi del visualisation del imagine" #: src/view/com/lightbox/Lightbox.web.tsx:184 msgid "Expand alt text" msgstr "Expander texto alternative" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Expander lista de usatores" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Expander o contraher le publication integre al qual tu responde" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "Expander le texto del publication" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Expande o contrahe le texto del publication" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" -msgstr "" +msgstr "Esseva expectate que le URI se resolve a un registro" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Experimental" @@ -3142,7 +3272,7 @@ msgstr "Expira in {0}" #: src/components/live/EditLiveDialog.tsx:131 msgid "Expires in {0} at {1}" -msgstr "" +msgstr "Expira in {0} a {1}" #: src/lib/moderation/useGlobalLabelStrings.ts:47 #: src/lib/moderation/useGlobalLabelStrings.ts:51 @@ -3153,15 +3283,15 @@ msgstr "Multimedia explicite o potentialmente perturbator." msgid "Explicit sexual images." msgstr "Imagines sexual explicite." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "Explorar" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Exportar mi datos" @@ -3180,226 +3310,256 @@ msgid "External Media" msgstr "Multimedia externe" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 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 "" +msgstr "Le contento multimedial externe pote permitter que sitos web collige information super te e tu dispositivo. Necun information es inviate o requestate usque tu preme le button “reproducer”." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Preferentias de multimedia externe" #: src/screens/Messages/components/RequestButtons.tsx:220 msgctxt "toast" msgid "Failed to accept chat" -msgstr "Falleva le acceptation del chat" +msgstr "Non ha essite possibile acceptar le chat" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" -msgstr "Non esseva possibile adder reaction con emoji" +msgstr "Non ha essite possibile adder reaction con emoji" #: src/screens/Settings/components/ChangeHandleDialog.tsx:587 msgid "Failed to change handle. Please try again." -msgstr "Non esseva possibile modificar le pseudonymo. Tenta de novo." +msgstr "Non ha essite possibile cambiar le pseudonymo. Tenta de novo." #: src/screens/Settings/components/AddAppPasswordDialog.tsx:173 msgid "Failed to create app password. Please try again." -msgstr "Non esseva possibile crear le contrasigno del application. Tenta de novo." +msgstr "Non ha essite possibile crear le contrasigno del application. Tenta de novo." #: src/components/dms/MessageProfileButton.tsx:36 msgid "Failed to create conversation" -msgstr "Falleva le creation del conversation" +msgstr "Non ha essite possibile crear le conversation" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" -msgstr "Non esseva possibile crear pacchetto de initio" +msgstr "Non ha essite possibile crear pacchetto de initio" #: src/view/com/modals/CreateOrEditList.tsx:184 msgid "Failed to create the list. Check your internet connection and try again." -msgstr "Non esseva possibile crear le lista. Verifica tu connexion al internet e tenta de novo." +msgstr "Non ha essite possibile crear le lista. Verifica tu connexion al internet e tenta de novo." #: src/screens/Messages/components/RequestButtons.tsx:64 #: src/screens/Messages/components/RequestButtons.tsx:291 msgctxt "toast" msgid "Failed to delete chat" -msgstr "Falleva le deletion del chat" +msgstr "Non ha essite possibile deler le chat" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" -msgstr "Non esseva possibile deler le message" +msgstr "Non ha essite possibile deler le message" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" -msgstr "Non esseva possibile deler le publication, tenta de novo" +msgstr "Non ha essite possibile deler le publication, tenta de novo" #: src/screens/StarterPack/StarterPackScreen.tsx:722 msgid "Failed to delete starter pack" -msgstr "Non esseva possibile deler le pacchetto de initio" +msgstr "Non ha essite possibile deler le pacchetto de initio" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" -msgstr "Falleva le cargamento del conversationes" +msgstr "Non ha essite possibile cargar le conversationes" #: src/screens/Search/Explore.tsx:470 #: src/screens/Search/Explore.tsx:522 #: src/screens/Search/Explore.tsx:560 #: src/screens/Search/Explore.tsx:599 msgid "Failed to load feeds preferences" -msgstr "Non esseva possibile cargar le preferentias de canales" +msgstr "Non ha essite possibile cargar le preferentias de canales" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" -msgstr "Non esseva possibile cargar GIFs" +msgstr "Non ha essite possibile cargar GIFs" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "Non ha essite possibile cargar le parametros de notification." #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" -msgstr "Non esseva possibile cargar le messages passate" +msgstr "Non ha essite possibile cargar le messages passate" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "Non ha essite possibile cargar le preferentia." #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 #: src/screens/Search/Explore.tsx:592 msgid "Failed to load suggested feeds" -msgstr "Non esseva possibile cargar le canales suggerite" +msgstr "Non ha essite possibile cargar le canales suggerite" #: src/screens/Search/Explore.tsx:373 msgid "Failed to load suggested follows" -msgstr "Non esseva possibile cargar le suggestiones de usatores a sequer" +msgstr "Non ha essite possibile cargar le suggestiones de usatores a sequer" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" -msgstr "Non esseva possibile marcar tote le requestas como legite" +msgstr "Non ha essite possibile marcar tote le requestas como legite" #: src/state/queries/pinned-post.ts:75 msgid "Failed to pin post" -msgstr "Non esseva possibile fixar le publication" +msgstr "Non ha essite possibile fixar le publication" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" -msgstr "Non esseva possibile remover reaction con emoji" +msgstr "Non ha essite possibile remover reaction con emoji" #: src/components/verification/VerificationRemovePrompt.tsx:34 msgid "Failed to remove verification" -msgstr "" +msgstr "Non ha essite possibile remover le verification" #: src/lib/media/save-image.ts:28 msgid "Failed to save image: {0}" -msgstr "Non esseva possibile salvar le imagine: {0}" - -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Non esseva possibile salvar le preferentias de notification, tenta de novo" +msgstr "Non ha essite possibile salvar le imagine: {0}" #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." -msgstr "Fallimento de salvar le parametros. Tenta lo de novo." +msgstr "Non ha essite possibile salvar le parametros. Tenta de novo." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." -msgstr "Non esseva possibile salvar tu interesses." +msgstr "Non ha essite possibile salvar tu interesses." #: src/components/dms/MessageItem.tsx:310 msgid "Failed to send" -msgstr "Non esseva possibile inviar" +msgstr "Non ha essite possibile inviar" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122 #: src/components/dialogs/EmailDialog/screens/Verify.tsx:136 msgid "Failed to send email, please try again." -msgstr "" +msgstr "Non ha essite possibile inviar e-mail, tenta de novo." #: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." -msgstr "Non esseva possibile inviar le appello, tenta de novo." +msgstr "Non ha essite possibile inviar le appello, tenta de novo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" -msgstr "" +msgstr "Non ha essite possibile commutar le silentiamento del filo, tenta de novo" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83 msgid "Failed to update email 2FA settings" -msgstr "" +msgstr "Non ha essite possibile actualisar le parametros de 2FA" #: src/components/dialogs/EmailDialog/screens/Update.tsx:195 msgid "Failed to update email, please try again." -msgstr "" +msgstr "Non ha essite possibile actualisar le e-mail, tenta de novo." #: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" -msgstr "Non esseva possibile actualisar canales" +msgstr "Non ha essite possibile actualisar canales" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "Non ha essite possibile actualisar le declaration de notification" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" -msgstr "Fallimento de actualisar le parametros" +msgstr "Non ha essite possibile actualisar le parametros" #: src/lib/media/video/upload.ts:72 #: src/lib/media/video/upload.web.ts:74 #: src/lib/media/video/upload.web.ts:78 #: src/lib/media/video/upload.web.ts:88 msgid "Failed to upload video" -msgstr "Non esseva possibile cargar video" +msgstr "Non ha essite possibile cargar le video" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:168 msgid "Failed to verify email, please try again." -msgstr "" +msgstr "Non ha essite possibile verificar le e-mail, tenta de novo." #: src/screens/Settings/components/ChangeHandleDialog.tsx:360 msgid "Failed to verify handle. Please try again." -msgstr "Non esseva possibile verificar le pseudonymo. Tenta de novo." +msgstr "Non ha essite possibile verificar le pseudonymo. Tenta de novo." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Canal" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Canal de {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "Creator del canal" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "Identificator del canal" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Menu de canal" #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" -msgstr "" +msgstr "Commutar canal" + +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "Canal indisponibile" #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Commentarios" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Commentarios inviate!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Canales" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Canales es algorithmos personalisate construite per usatores con alicun experientia in programmation. <0/> pro plus information." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Canales actualisate!" @@ -3428,6 +3588,14 @@ msgstr "Filtrar resultatos per lingua" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtrar resultatos per lingua (actualmente: {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "Filtrar qui pote optar pro reciper notificationes de tu activitate" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "Filtrar de qui tu recipe notificationes" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Finalisante" @@ -3446,9 +3614,9 @@ msgstr "Trovar personas a sequer" #: src/screens/Search/Shell.tsx:476 msgid "Find posts, users, and feeds on Bluesky" -msgstr "Trovar publicationes, usatores e canales sur Bluesky" +msgstr "Trovar publicationes, usatores e canales super Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Finir" @@ -3456,30 +3624,30 @@ msgstr "Finir" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" -msgstr "" +msgstr "Nigro" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" -msgstr "" +msgstr "Blau" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" -msgstr "" +msgstr "Blanco" #: src/screens/Onboarding/StepFinished.tsx:294 msgid "Flexible" msgstr "Flexibile" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Sequer" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Sequer {0}" @@ -3518,7 +3686,7 @@ msgstr "Sequer conto" msgid "Follow all" msgstr "Sequer totes" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Sequer in retorno" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Sequer in retorno" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Sequite per <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Sequite per <0>{0} e {1, plural, one {# altere} other {# alteres}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Sequite per <0>{0} e <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Sequite per <0>{0}, <1>{1} e {2, plural, one {# altere} other {# alteres}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Sequitores de @{0} que tu cognosce" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Sequitores que tu cognosce" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" -msgstr "Sequinte" +msgstr "Sequente" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Sequente" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Sequente {0}" @@ -3579,8 +3751,8 @@ msgstr "Sequente {handle}" msgid "Following feed preferences" msgstr "Preferentias del canal Sequente" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Preferentias del canal Sequente" @@ -3592,11 +3764,11 @@ msgstr "Te seque" msgid "Follows You" msgstr "Te seque" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Typo de litteras" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Dimension de typo de litteras" @@ -3613,7 +3785,7 @@ msgstr "Pro rationes de securitate, nos debera inviar un codice de confirmation msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Pro rationes de securitate, tu non potera visualisar isto de novo. Si tu perde iste contrasigno del app, tu debera generar un nove." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Pro le melior experientia, nos recommenda usar le fonte del thema." @@ -3628,26 +3800,30 @@ msgstr "Pro sempre" #: src/screens/Login/index.tsx:153 #: src/screens/Login/index.tsx:168 msgid "Forgot Password" -msgstr "Io oblidava mi contrasigno" +msgstr "Io ha oblidate mi contrasigno" #: src/screens/Login/LoginForm.tsx:248 msgid "Forgot password?" -msgstr "Tu oblidava tu contrasigno?" +msgstr "Tu ha oblidate tu contrasigno?" #: src/screens/Login/LoginForm.tsx:259 msgid "Forgot?" -msgstr "Tu lo oblidava?" +msgstr "Tu lo ha oblidate?" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:54 #: src/lib/moderation/useReportOptions.ts:54 msgid "Frequently Posts Unwanted Content" -msgstr "Publica con frequentia contentos non desirate" +msgstr "Publica con frequentia contentos indesirabile" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "De" #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "De @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "De <0/>" @@ -3660,16 +3836,70 @@ msgstr "Galeria" msgid "Generate a starter pack" msgstr "Generar un pacchetto de initio" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Obtener adjuta" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "Reciper notificationes quando le personas te seque." + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "Reciper notificationes quando le personas apprecia publicationes que tu ha republicate." + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "Reciper notificationes quando le personas apprecia tu publicationes." + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "Reciper notificationes quando le personas te mentiona." + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "Reciper notificationes quando le personas cita tu publicationes." + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "Reciper notificationes quando le personas responde a tu publicationes." + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "Reciper notificationes quando le personas republica publicationes que tu ha republicate." + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "Reciper notificationes quando le personas republica tu publicationes." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "Reciper notificationes de nove publicationes" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Reciper notificationes de publicationes e responsas de contos que tu elige." + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "Reciper notificationes de nove publicationes de {name}" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "Reciper notificationes del activitate de iste conto" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "Reciper notificationes quando {name} publica" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "Reciper notificationes quando alcuno publica" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" -msgstr "" +msgstr "Comenciar" #: src/components/ProgressGuide/List.tsx:35 msgid "Getting started" @@ -3686,16 +3916,18 @@ msgstr "Da un facie a tu profilo" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39 #: src/lib/moderation/useReportOptions.ts:39 msgid "Glaring violations of law or terms of service" -msgstr "" +msgstr "Violationes flagrante al lege o al conditiones de servicio" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3720,7 +3952,7 @@ msgstr "Retornar" #: src/screens/Onboarding/Layout.tsx:188 #: src/screens/Signup/BackNextButtons.tsx:35 msgid "Go back to previous step" -msgstr "Retornar al previe passo" +msgstr "Retornar al passo precedente" #: src/view/screens/NotFound.tsx:57 msgid "Go home" @@ -3733,21 +3965,27 @@ msgstr "Ir al initio" #: src/view/com/profile/ProfileMenu.tsx:318 #: src/view/com/profile/ProfileMenu.tsx:325 msgid "Go live" -msgstr "" +msgstr "Entrar in directo" #: src/components/live/GoLiveDialog.tsx:93 #: src/components/live/GoLiveDialog.tsx:98 #: src/components/live/GoLiveDialog.tsx:232 #: src/components/live/GoLiveDialog.tsx:241 msgid "Go Live" -msgstr "" +msgstr "Entrar in directo" #: src/components/live/GoLiveDialog.tsx:174 msgid "Go live for" -msgstr "" +msgstr "Entrar in directo per" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" +msgstr "Ir al profilo de {firstAuthorName}" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" msgstr "" #: src/screens/Messages/components/ChatListItem.tsx:360 @@ -3779,8 +4017,8 @@ msgstr "Contento explicite" msgid "Half way there!" msgstr "Al medietate del cammino!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Pseudonymo" @@ -3797,7 +4035,7 @@ msgstr "Pseudonymo modificate!" msgid "Handle too long. Please try a shorter one." msgstr "Pseudonymo troppo longe. Tenta un plus curte." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Technologia haptic" @@ -3806,7 +4044,7 @@ msgstr "Technologia haptic" msgid "Harassment, trolling, or intolerance" msgstr "Molestia, importunation o intolerantia" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Hashtag" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Hashtag {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." -msgstr "" +msgstr "Tu ha un codice? <0>Clicca hic." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Problemas?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Adjuta" @@ -3839,119 +4077,124 @@ msgstr "Adjuta le personas a saper que tu non es un bot cargante un photo o crea msgid "Here is your app password!" msgstr "Hic es tu contrasigno de application!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Occultate" #: src/screens/VideoFeed/index.tsx:625 msgid "Hidden by your moderation settings." -msgstr "Celate per tu parametros de moderation." +msgstr "Occultate per tu parametros de moderation." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" -msgstr "Lista celate" +msgstr "Lista occultate" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:110 msgid "Hide" -msgstr "Celar" +msgstr "Occultar" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" -msgstr "Celar" +msgstr "Occultar" #: src/components/dialogs/Embed.tsx:128 msgid "Hide customization options" -msgstr "Celar optiones de personalisation" - -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 -msgid "Hide post for me" -msgstr "Celar le publication pro me" +msgstr "Occultar optiones de personalisation" +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 -msgid "Hide reply for everyone" -msgstr "Celar le responsa pro totes" +msgid "Hide post for me" +msgstr "Occultar le publication pro me" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 +msgid "Hide reply for everyone" +msgstr "Occultar le responsa pro totes" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" -msgstr "Celar le responsa pro me" +msgstr "Ocultar le responsa pro me" #: src/screens/Search/modules/ExploreInterestsCard.tsx:110 msgid "Hide this card" -msgstr "" +msgstr "Occultar iste carta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Occultar iste publication?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Occultar iste responsa?" #: src/components/interstitials/Trending.tsx:113 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:62 msgid "Hide trending topics" -msgstr "Celar tendentias" +msgstr "Occultar tendentias" #: src/components/interstitials/Trending.tsx:129 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:108 msgid "Hide trending topics?" -msgstr "Celar tendentias?" +msgstr "Occultar tendentias?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" -msgstr "Celar videos in tendentia?" +msgstr "Occultar videos in tendentia?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" -msgstr "Celar lista de usatores" +msgstr "Occultar lista de usatores" #: src/screens/Moderation/VerificationSettings.tsx:85 #: src/screens/Moderation/VerificationSettings.tsx:94 msgid "Hide verification badges" -msgstr "" +msgstr "Occultar insignias de verification" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" -msgstr "Cela le contento" +msgstr "Occulta le contento" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Un problema ha occurrite in contactar le servitor de canales. Per favor signala iste problema al proprietario del canal." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Le servitor de canales pare esser mal configurate. Per favor signala iste problema al proprietario del canal." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Le servitor de canales pare esser foras de linea. Per favor signala iste problema al proprietario del canal." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Le servitor de canales ha date un mal responsa. Per favor signala iste problema al proprietario del canal." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Le canal non ha essite trovate. Illo ha forsan essite delite." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Un problema ha occurrite durante le cargamento de iste datos. Vide infra pro plus detalios. Si iste problema persiste, per favor contacta nos." @@ -3959,47 +4202,43 @@ msgstr "Un problema ha occurrite durante le cargamento de iste datos. Vide infra msgid "Hmmmm, we couldn't load that moderation service." msgstr "Le systema non ha succedite a cargar iste servicio de moderation." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Un momento! Nos concede gradualmente le accesso al video, e tu attende ancora in le cauda. Reveni tosto!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Initio" #: src/screens/Settings/components/ChangeHandleDialog.tsx:417 msgid "Host:" -msgstr "" +msgstr "Hospite:" #: src/screens/Login/ForgotPasswordForm.tsx:83 #: src/screens/Login/LoginForm.tsx:184 msgid "Hosting provider" -msgstr "" +msgstr "Fornitor de albergamento" #: src/screens/Search/modules/ExploreTrendingTopics.tsx:194 msgid "Hot" -msgstr "" +msgstr "Calide" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" -msgstr "Responsas popular primo" +msgstr "Responsas calide primo" #: src/components/dialogs/InAppBrowserConsent.tsx:62 #: src/components/dialogs/InAppBrowserConsent.tsx:66 msgid "How should we open this link?" msgstr "Como nos deberea aperir iste ligamine?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,41 +4258,45 @@ msgstr "Io comprende" msgid "If alt text is long, toggles alt text expanded state" msgstr "Si le texto alternative es longe, commuta le stato expandite del texto alternative" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Si tu non es ancora un adulto secundo le leges de tu pais, tu parente o tutor legal debe leger iste conditiones in tu nomine." #: src/view/screens/ProfileList.tsx:765 msgid "If you delete this list, you won't be able to recover it." -msgstr "Si tu elimina iste lista, tu non potera recuperar lo." +msgstr "Si tu dele iste lista, tu non potera recuperar lo." #: src/screens/Settings/components/ChangeHandleDialog.tsx:267 msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." -msgstr "Si tu ha un proprie dominio, tu pote usar lo como pseudonymo. Isto te permitte autoverificar tu identitate. <0>Lege plus hic." +msgstr "Si tu ha un dominio proprie, tu pote usar lo como pseudonymo. Isto te permitte autoverificar tu identitate. <0>Sape plus hic." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." -msgstr "" +msgstr "Si tu debe actualisar tu e-mail, <0>clicca hic." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Si tu remove iste publication, tu non potera recuperar lo." #: src/components/dialogs/EmailDialog/screens/Update.tsx:208 msgid "If you update your email address, email 2FA will be disabled." -msgstr "" +msgstr "Si tu actualisa tu adresse de e-mail, le 2FA per e-mail essera disactivate." #: src/view/com/modals/ChangePassword.tsx:160 msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Si tu vole cambiar tu contrasigno, nos te inviara un codice pro verificar que iste conto es tue." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "Si tu vole restringer qui pote reciper notificationes del activitates de tu conto, tu pote cambiar lo in <0>Parametros → Privatessa e securitate." + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." -msgstr "" +msgstr "Si tu es un disveloppator, tu pote hospitar tu proprie servitor." #: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 msgid "If you're trying to change your handle or email, do so before you deactivate." -msgstr "Si tu vole cambiar de pseudonymo o de adresse de e-mail, face lo ante de disactivar." +msgstr "Si tu tenta cambiar de pseudonymo o de adresse de e-mail, face lo ante disactivar." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:38 #: src/lib/moderation/useReportOptions.ts:38 @@ -4066,20 +4309,20 @@ msgstr "Imagine" #: src/screens/Settings/AboutSettings.tsx:64 msgid "Image cache cleared" -msgstr "" +msgstr "Cache de imagines radite" #. Android-only toast message which includes amount of space freed using localized number formatting #: src/screens/Settings/AboutSettings.tsx:50 msgid "Image cache cleared, freed {0}" -msgstr "" +msgstr "Cache de imagines radite, {0} liberate" #: src/lib/media/save-image.ts:26 msgid "Image saved" -msgstr "" +msgstr "Imagine salvate" #: src/lib/media/save-image.ts:45 msgid "Images cannot be saved unless permission is granted to access your photo library." -msgstr "" +msgstr "Imagines non pote esser salvate a minus que tu concede permission de accesso a tu bibliotheca de photos." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49 #: src/lib/moderation/useReportOptions.ts:49 @@ -4091,29 +4334,57 @@ msgstr "Usurpation de identitate o affirmationes false super identitate o affili msgid "Impersonation, misinformation, or false claims" msgstr "Usurpation de identitate, disinformation o affirmationes false" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "Interne al application" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "Notificationes interne al application" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "Interne al application, totes" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "Interne al application, personas que tu seque" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "Interne al application, push" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "Interne al application, push, totes" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "Interne al application, push, personas que tu seque" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Messages inappropriate o ligamines explicite" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" -msgstr "" +msgstr "Cassa de entrata vacue!" #: src/screens/Login/LoginForm.tsx:164 msgid "Incorrect username or password" msgstr "Nomine de usator o contrasigno incorrecte" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" -msgstr "Insere le codice inviate a tu email pro redefinir le contrasigno" +msgstr "Insere le codice inviate a tu email pro reinitialisar le contrasigno" #: src/view/com/modals/DeleteAccount.tsx:228 msgid "Input confirmation code for account deletion" msgstr "Insere le codice de confirmation pro le deletion del conto" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Insere le nove contrasigno" @@ -4129,26 +4400,30 @@ msgstr "Insere le codice que ha essite inviate a tu e-mail" msgid "Interaction limited" msgstr "Interaction limitate" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Parametros de interaction" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "Presentation del notificationes de activitate" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." -msgstr "Codice de confirmation 2FA non valide." +msgstr "Codice de confirmation 2FA invalide." #: src/screens/Settings/components/ChangeHandleDialog.tsx:597 msgid "Invalid handle. Please try a different one." msgstr "Pseudonymo invalide. Tenta un differente." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" -msgstr "Registro de publication non valide o non supportate" +msgstr "Registro de publication invalide o non supportate" #: src/components/moderation/ReportDialog/index.tsx:73 msgid "Invalid report subject" -msgstr "" +msgstr "Thema de signalamento invalide" #: src/components/intents/VerifyEmailIntentDialog.tsx:91 msgid "Invalid Verification Code" @@ -4158,7 +4433,7 @@ msgstr "Codice de verification invalide" msgid "Invite a Friend" msgstr "Invitar un amico" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Codice de invitation" @@ -4186,15 +4461,15 @@ msgstr "Invita tu amicos a sequer tu canales e personas favorite" msgid "Invites, but personal" msgstr "Invitationes, mais personal" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Es correcte" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Tu es le unic al momento! Adde plus personas a tu pacchetto de initio cercante hic supra." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "ID del processo: {0}" @@ -4208,7 +4483,7 @@ msgstr "Empleos" #: src/screens/StarterPack/StarterPackScreen.tsx:466 #: src/screens/StarterPack/StarterPackScreen.tsx:477 msgid "Join Bluesky" -msgstr "Junger te a Bluesky" +msgstr "Inscribe te a Bluesky" #: src/components/StarterPack/QrCode.tsx:68 #: src/view/shell/NavSignupCard.tsx:40 @@ -4220,11 +4495,27 @@ msgstr "Participar al conversation" msgid "Journalism" msgstr "Journalismo" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "Tene me al currente" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Etiquettate per {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Etiquettate per le autor." @@ -4237,103 +4528,126 @@ msgstr "Etiquettas" msgid "Labels added" msgstr "Etiquettas addite" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." -msgstr "Le etiquettas es annotationes sur usatores e contento. Illos pote esser usate pro celar, advertir e categorisar le rete." +msgstr "Le etiquettas es annotationes super usatores e contento. Illos pote esser usate pro occultar, advertir e categorisar le rete." #: src/components/moderation/LabelsOnMeDialog.tsx:72 msgid "Labels on your account" -msgstr "Etiquettas sur tu conto" +msgstr "Etiquettas super tu conto" #: src/components/moderation/LabelsOnMeDialog.tsx:74 msgid "Labels on your content" -msgstr "Etiquettas sur tu contento" +msgstr "Etiquettas super tu contento" #: src/view/com/composer/select-language/SelectLangBtn.tsx:107 msgid "Language selection" msgstr "Selection de lingua" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Configurationes de lingua" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Linguas" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Plus grande" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Ultime" #: src/screens/Settings/components/ChangeHandleDialog.tsx:271 msgid "learn more" -msgstr "apprender plus" +msgstr "saper plus" #: src/components/verification/VerificationsDialog.tsx:165 #: src/components/verification/VerifierDialog.tsx:132 #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" -msgstr "" +msgstr "Saper plus" #: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" -msgstr "Apprender plus" +msgstr "Saper plus" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" -msgstr "Apprender plus super Bluesky" +msgstr "Saper plus super Bluesky" #: src/view/com/auth/server-input/index.tsx:218 msgid "Learn more about self hosting your PDS." +msgstr "Saper plus super le auto-albergamento de tu PDS." + +#: src/components/moderation/ContentHider.tsx:152 +msgid "Learn more about the moderation applied to this content" +msgstr "Saper plus super le moderation applicate a iste contento" + +#: src/components/moderation/ContentHider.tsx:218 +msgid "Learn more about the moderation applied to this content." +msgstr "Saper plus super le moderation applicate a iste contento." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." msgstr "" -#: src/components/moderation/ContentHider.tsx:149 -msgid "Learn more about the moderation applied to this content" -msgstr "Saper plus sur le moderation applicate a iste contento" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" -#: src/components/moderation/ContentHider.tsx:215 -msgid "Learn more about the moderation applied to this content." -msgstr "Saper plus sur le moderation applicate a iste contento." - -#: src/components/moderation/PostHider.tsx:100 +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" -msgstr "Apprender plus super iste advertimento" +msgstr "Saper plus super iste advertimento" #: src/components/verification/VerificationsDialog.tsx:150 #: src/components/verification/VerifierDialog.tsx:117 msgid "Learn more about verification on Bluesky" +msgstr "Saper plus super le verification super Bluesky" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 +msgid "Learn more about what is public on Bluesky." +msgstr "Saper plus super lo que es public super Bluesky." + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 -msgid "Learn more about what is public on Bluesky." -msgstr "Saper plus sur lo que es public sur Bluesky." - -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." -msgstr "Apprender plus." +msgstr "Saper plus." #: src/components/dms/LeaveConvoPrompt.tsx:48 msgid "Leave" -msgstr "" +msgstr "Partir" #: src/components/dms/MessagesListBlockedFooter.tsx:74 #: src/components/dms/MessagesListBlockedFooter.tsx:81 msgid "Leave chat" -msgstr "" +msgstr "Partir del chat" #: src/components/dms/ConvoMenu.tsx:203 #: src/components/dms/ConvoMenu.tsx:206 @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Partir del conversation" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Lassa totes non marcate pro vider tote le linguas." +msgid "Leave them all unselected to see any language." +msgstr "Lassa los tote non seligite pro vider qualcunque lingua." -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Quitar Bluesky" @@ -4362,7 +4677,7 @@ msgstr "Lassa me eliger" #: src/screens/Login/index.tsx:154 #: src/screens/Login/index.tsx:169 msgid "Let's get your password reset!" -msgstr "" +msgstr "Vamos reinitialisar tu contrasigno!" #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Let's go!" @@ -4370,7 +4685,7 @@ msgstr "Vamos!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Clar" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Appreciar" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Appreciar ({0, plural, one {# appreciation} other {# appreciationes}})" @@ -4397,6 +4712,10 @@ msgstr "Appreciar 10 publicationes" msgid "Like 10 posts to train the Discover feed" msgstr "Apprecia 10 publicationes pro trainar le canal Discoperir" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "Notificationes de appreciation" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Appreciar iste canal" @@ -4405,8 +4724,8 @@ msgstr "Appreciar iste canal" msgid "Like this labeler" msgstr "Appreciar iste etiquettator" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Appreciate per" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Appreciate per" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Appreciate per {0, plural, one {# usator} other {# usatores}}" @@ -4428,20 +4747,36 @@ msgstr "Appreciate per {0, plural, one {# usator} other {# usatores}}" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Appreciate per {likeCount, plural, one {# usator} other {# usatores}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Appreciationes" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "Appreciationes de tu republicationes" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "Notificationes de appreciationes de tu republicationes" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Appreciationes de iste publication" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Linear" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Lista" @@ -4454,31 +4789,35 @@ msgctxt "toast" msgid "List blocked" msgstr "Lista blocate" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Lista de {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "Lista de <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Lista tue" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "Creator del lista" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" -msgstr "Lista eliminate" +msgstr "Lista delite" #: src/screens/List/ListHiddenScreen.tsx:129 msgid "List has been hidden" -msgstr "Le lista esseva occultate" +msgstr "Le lista ha essite occultate" #: src/view/screens/ProfileList.tsx:176 msgid "List Hidden" -msgstr "" +msgstr "Lista occultate" #: src/view/screens/ProfileList.tsx:402 msgctxt "toast" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Lista dissilentiate" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Listas" @@ -4515,18 +4854,18 @@ msgstr "Listas que bloca iste usator:" #. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters #: src/components/live/LiveIndicator.tsx:46 msgid "LIVE" -msgstr "" +msgstr "IN DIRECTO" #: src/components/live/LiveStatusDialog.tsx:215 msgid "Live feature is in beta testing" -msgstr "" +msgstr "Le function \"in directo\" es in phase beta de tests" #: src/components/live/EditLiveDialog.tsx:148 #: src/components/live/EditLiveDialog.tsx:152 #: src/components/live/GoLiveDialog.tsx:124 #: src/components/live/GoLiveDialog.tsx:128 msgid "Live link" -msgstr "" +msgstr "Ligamine al diffusion in directo" #: src/screens/Search/Explore.tsx:86 msgid "Load more" @@ -4537,7 +4876,7 @@ msgstr "Cargar plus" msgid "Load more suggested feeds" msgstr "Cargar plus canales suggerite" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Cargar nove notificationes" @@ -4552,20 +4891,20 @@ msgstr "Cargar nove publicationes" msgid "Loading..." msgstr "Cargante..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Registro" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" -msgstr "Visibilitate a usatores foras de sessionc" +msgstr "Visibilitate a usatores sin session aperte" #: src/view/shell/desktop/RightNav.tsx:130 msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo de @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo de <0>@sawaratsuki.bsky.social" @@ -4573,9 +4912,9 @@ msgstr "Logo de <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Preme longemente pro aperir le menu de etiquetta pro #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" -msgstr "" +msgstr "Su formato es: XXXXX-XXXXX" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39 msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." @@ -4591,13 +4930,13 @@ msgstr "Apparentemente te manca un canal de sequitos. <0>Clicca hic pro adder un #: src/components/dialogs/EmailDialog/index.tsx:41 msgid "Make adjustments to email settings for your account" -msgstr "" +msgstr "Ajustar le parametros de e-mail pro tu conto" #: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Make one for me" msgstr "Face un pro me" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Assecura te que isto es ubi tu ha le intention de ir!" @@ -4606,17 +4945,17 @@ msgstr "Assecura te que isto es ubi tu ha le intention de ir!" msgid "Manage saved feeds" msgstr "Gerer canales salvate" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" -msgstr "" +msgstr "Gerer parametros de verification" #: src/components/dialogs/MutedWords.tsx:108 msgid "Manage your muted words and tags" msgstr "Gerer tu parolas e etiquettas silentiate" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "Marcar toto como legite" @@ -4625,17 +4964,15 @@ msgstr "Marcar toto como legite" msgid "Mark as read" msgstr "Marcar como legite" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "Marcate toto como legite" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" -msgstr "" +msgstr "Forsan plus tarde" #: src/view/screens/Profile.tsx:227 msgid "Media" @@ -4645,19 +4982,26 @@ msgstr "Multimedia" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Contento multimedial que pote perturbar o esser innapropriate pro certe publicos." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "Notificationes de mentiones" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "usatores mentionate" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Usatores mentionate" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Mentiones" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Menu" @@ -4665,20 +5009,20 @@ msgstr "Menu" msgid "Message {0}" msgstr "Message {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Message delite" #: src/screens/Messages/components/ChatListItem.tsx:197 msgid "Message deleted" -msgstr "Message eliminate" +msgstr "Message delite" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "Message de @{0}: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Message del servitor: {0}" @@ -4691,33 +5035,37 @@ msgstr "Campo de insertion de message" msgid "Message is too long" msgstr "Le message es troppo longe" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "Optiones de messages" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Messages" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" -msgstr "" +msgstr "Medienocte" + +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "Notificationes diverse" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" -msgstr "" +msgstr "Conto fraudulente" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:67 #: src/lib/moderation/useReportOptions.ts:67 msgid "Misleading Post" -msgstr "" +msgstr "Publication fallace" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderation" @@ -4725,17 +5073,17 @@ msgstr "Moderation" msgid "Moderation details" msgstr "Detalios de moderation" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Lista de moderation de {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Lista de moderation de <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Lista de moderation tue" @@ -4749,40 +5097,40 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Lista de moderation actualisate" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Listas de moderation" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Listas de moderation" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "parametros de moderation" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Statos de moderation" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Instrumentos de moderation" #: src/components/moderation/ModerationDetailsDialog.tsx:52 #: src/lib/moderation/useModerationCauseDescription.ts:47 msgid "Moderator has chosen to set a general warning on the content." -msgstr "Le moderator optava pro poner un advertimento general super le contento." +msgstr "Le moderator ha optate pro poner un advertimento general super le contento." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Plus" #: src/view/shell/desktop/Feeds.tsx:102 #: src/view/shell/desktop/Feeds.tsx:105 msgid "More feeds" -msgstr "Plus fluxos" +msgstr "Plus canales" #: src/view/com/profile/ProfileMenu.tsx:220 #: src/view/com/profile/ProfileMenu.tsx:226 @@ -4790,13 +5138,13 @@ msgstr "Plus fluxos" msgid "More options" msgstr "Plus optiones" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Le plus appreciate primo" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Responsas plus appreciate primo" @@ -4808,8 +5156,8 @@ msgstr "Cinema" msgid "Music" msgstr "Musica" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Silentiar" @@ -4819,8 +5167,8 @@ msgstr "Silentiar" msgid "Mute {tag}" msgstr "Silentiar {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Silentiar iste parola solmente in etiquettas" msgid "Mute this word until you unmute it" msgstr "Silentiar iste parola usque tu lo dissilentia" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Silentiar discussion" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Silentiar parolas e etiquettas" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Contos silentiate" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Contos silentiate" @@ -4898,20 +5246,20 @@ msgstr "Le publicationes de contos silentiate es removite de tu canal e de tu no msgid "Muted by \"{0}\"" msgstr "Silentiate per {0}" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Parolas e etiquettas silentiate" #: src/view/screens/ProfileList.tsx:776 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." -msgstr "Le silentiamento es private. Le contos silentiate pote interager con te, ma tu non videra lor publicationes ni recipera notificationes de illos." +msgstr "Le silentiamento es private. Le contos silentiate pote interager con te, mais tu non videra lor publicationes ni recipera notificationes de illos." #: src/components/dialogs/BirthDateSettings.tsx:35 #: src/components/dialogs/BirthDateSettings.tsx:38 msgid "My Birthday" -msgstr "Mi anniversario" +msgstr "Mi data de nascentia" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Mi canales" @@ -4940,13 +5288,13 @@ msgid "Nature" msgstr "Natura" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Navigar a {0}" #: src/components/StarterPack/StarterPackCard.tsx:131 msgid "Navigate to starter pack" -msgstr "" +msgstr "Navigar al pacchetto de initio" #: src/screens/Login/ForgotPasswordForm.tsx:166 #: src/screens/Login/LoginForm.tsx:344 @@ -4958,14 +5306,14 @@ msgstr "Naviga al proxime schermo" msgid "Navigates to your profile" msgstr "Naviga a tu profilo" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Tu debe cambiar lo?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" -msgstr "Tu debe signalar un violation de derecto de autor?" +msgstr "Tu debe signalar un violation de derectos de autor?" #: src/screens/Onboarding/StepFinished.tsx:282 msgid "Never lose access to your followers or data." @@ -4985,20 +5333,38 @@ msgctxt "action" msgid "New" msgstr "Nove" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "Nove {postsCount, plural, one {publication} other {publicationes}} de {firstAuthorLink}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "Nove {postsCount, plural, one {publication} other {publicationes}} de {firstAuthorName}" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Nove chat" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" -msgstr "" +msgstr "Nove adresse de e-mail" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" -msgstr "" +msgstr "Nove function" + +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "Notificationes de nove sequitor" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "Nove sequitores" #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 @@ -5019,6 +5385,7 @@ msgstr "Nove messages" msgid "New Moderation List" msgstr "Nove lista de moderation" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Nove contrasigno" @@ -5029,7 +5396,7 @@ msgstr "Nove contrasigno" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Nove publication" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Nove publication" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Nove publicationes de {firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Nove publicationes de {firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}}" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Quadro de dialogo de information de nove usator" @@ -5054,10 +5429,14 @@ msgstr "Quadro de dialogo de information de nove usator" msgid "New User List" msgstr "Nove lista de usatores" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Responsas plus nove primo" @@ -5071,15 +5450,15 @@ msgstr "Novas" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5100,11 +5479,11 @@ msgstr "Necun pannello de DNS" #: src/components/live/EditLiveDialog.tsx:140 msgid "No expiry set" -msgstr "" +msgstr "Expiration non definite" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." -msgstr "Necun GIF promovite trovate. Il pote haber un problema con Tenor." +msgstr "Necun GIF in evidentia trovate. Il pote haber un problema con Tenor." #: src/screens/StarterPack/Wizard/StepFeeds.tsx:119 msgid "No feeds found. Try searching for something else." @@ -5112,39 +5491,42 @@ msgstr "Necun canal trovate. Tenta cercar un altere cosa." #: src/components/live/LinkPreview.tsx:63 msgid "No image" -msgstr "" +msgstr "Necun imagine" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 msgid "No likes yet" msgstr "Necun appreciation ancora" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Non plus sequente {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "Non plus de {MAX_SERVICE_HANDLE_LENGTH, plural, one {}other {# characteres}}" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Ancora sin messages" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Ancora sin notificationes!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Necun" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Solmente le autor pote citar iste publication." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "Necun publication hic" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Necun publication ancora." @@ -5169,9 +5551,9 @@ msgstr "Necun resultato" #: src/screens/Search/Explore.tsx:786 msgid "No results for \"{0}\"." -msgstr "" +msgstr "Necun resultato pro \"{0}\"." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Necun resultato trovate" @@ -5179,17 +5561,17 @@ msgstr "Necun resultato trovate" msgid "No results found for \"{query}\"" msgstr "Necun resultato trovate pro \"{query}\"" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Necun resultato trovate pro {query}" #: src/screens/Search/Explore.tsx:790 msgid "No results." -msgstr "" +msgstr "Necun resultato." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Necun resultato trovate pro \"{search}\"." @@ -5198,84 +5580,101 @@ msgstr "Necun resultato trovate pro \"{search}\"." msgid "No thanks" msgstr "No, gratias" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Necuno" #: src/components/LikedByList.tsx:86 #: src/view/com/post-thread/PostLikedBy.tsx:86 msgid "Nobody has liked this yet. Maybe you should be the first!" -msgstr "Necuno ha ancora appreciate isto. Sia le prime!" +msgstr "Necuno ha ancora appreciate isto. Tu poterea esser le prime!" #: src/view/com/post-thread/PostQuotes.tsx:107 msgid "Nobody has quoted this yet. Maybe you should be the first!" -msgstr "" +msgstr "Necuno ha ancora citate isto. Tu poterea esser le prime!" #: src/view/com/post-thread/PostRepostedBy.tsx:92 msgid "Nobody has reposted this yet. Maybe you should be the first!" -msgstr "" +msgstr "Necuno ha ancora republicate isto. Tu poterea esser le prime!" #: src/screens/StarterPack/Wizard/StepProfiles.tsx:104 msgid "Nobody was found. Try searching for someone else." -msgstr "" +msgstr "Necuno ha essite trovate. Tenta cercar un altere persona." #: src/lib/moderation/useGlobalLabelStrings.ts:42 msgid "Non-sexual Nudity" msgstr "Nuditate non sexual" -#: src/components/KnownFollowers.tsx:255 -msgid "Not followed by anyone you're following" -msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "Necun" -#: src/Navigation.tsx:139 +#: src/components/KnownFollowers.tsx:259 +msgid "Not followed by anyone you're following" +msgstr "Non sequite per alcuno qui tu seque" + +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Non trovate" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" -msgstr "" +msgstr "Nota super compartimento" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." -msgstr "Nota: Bluesky es un rete aperte e public. Iste parametro solmente limita le visibilitate de tu contento super le application e le sito web de Bluesky, e altere applicationes pote non respicer iste parametro. Tu contento pote ancora esser monstrate a usatores sin session aperte per altere applicationes e sitos web." +msgstr "Nota: Bluesky es un rete aperte e public. Iste parametro solmente limita le visibilitate de tu contento super le application e le sito web de Bluesky, e altere applicationes pote non respectar iste parametro. Tu contento pote ancora esser monstrate a usatores sin session aperte per altere applicationes e sitos web." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "Nota: Iste publication solmente es visibile a usatores con session aperte." + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Nihil hic" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Filtros de notification" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Parametros de notification" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Parametros de notification" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Sonos de notification" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Sonos de notification" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Notificationes" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "Notificationes pro tote le resto, como quando alcuno se inscribe via un de tu pacchettos de initio." + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "ora" @@ -5292,20 +5691,21 @@ msgstr "Nuditate" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:78 #: src/lib/moderation/useReportOptions.ts:78 msgid "Nudity or adult content not labeled as such" -msgstr "Nuditate o contento adulte non etiquettate como tal" +msgstr "Nuditate o contento pro adultos non etiquettate como tal" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" -msgstr "" +msgstr "Inactive" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Oh no!" #: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." -msgstr "Oh no! Alcun error occurreva." +msgstr "Oh no! Alcun error ha occurrite." #. Confirm button text. #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349 @@ -5313,37 +5713,42 @@ msgstr "Oh no! Alcun error occurreva." #: src/screens/Settings/AppIconSettings/index.tsx:48 #: src/screens/Settings/AppIconSettings/index.tsx:229 msgid "OK" -msgstr "" +msgstr "OK" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" -msgstr "" +msgstr "OK" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" -msgstr "Responsas plus ancian primo" +msgstr "Responsas plus antique primo" #: src/components/StarterPack/QrCode.tsx:82 msgid "on<0><1/><2><3/>" -msgstr "" +msgstr "in<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" -msgstr "" +msgstr "Reinitialisation del apprentissage" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "Manca texto alternative a un o plus GIFs." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Manca texto alternative a un o plus imagines." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Manca texto alternative a un o plus videos." @@ -5351,13 +5756,15 @@ msgstr "Manca texto alternative a un o plus videos." msgid "Only .jpg and .png files are supported" msgstr "Solmente files .jpg e .png es supportate" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Solmente {0} pote responder." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "Solmente sequitores que io seque" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Solmente files de imagine es supportate" msgid "Only WebVTT (.vtt) files are supported" msgstr "Solmente files WebVTT (.vtt) es supportate" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" -msgstr "Ops, alcun error occurreva!" +msgstr "Ops, alcun error ha occurrite!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Ops!" @@ -5396,10 +5802,10 @@ msgstr "Aperir optiones de conversation" #: src/components/Layout/Header/index.tsx:159 msgid "Open drawer menu" -msgstr "" +msgstr "Aperir le menu lateral" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Aperir selector de emojis" @@ -5416,7 +5822,7 @@ msgstr "Aperir menu de optiones de canal" msgid "Open full emoji list" msgstr "Aperir le lista complete de emojis" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Aperir ligamine a {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Aperir ligamine a {niceUrl}" msgid "Open message options" msgstr "Aperir optiones de message" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Aperir pagina de depuration del moderation" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Aperir parametros de parolas e etiquettas silentiate" @@ -5443,26 +5849,26 @@ msgstr "Aperir menu de optiones de publication" #: src/components/live/LiveStatusDialog.tsx:189 #: src/components/live/LiveStatusDialog.tsx:203 msgid "Open profile" -msgstr "" +msgstr "Aperir profilo" #: src/components/PostControls/ShareMenu/index.tsx:87 msgid "Open share menu" -msgstr "" +msgstr "Aperir menu de compartimento" #: src/screens/StarterPack/StarterPackScreen.tsx:566 msgid "Open starter pack menu" msgstr "Aperir menu de pacchetto de initio" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Aperir registro de systema" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Aperi {numItems} optiones" @@ -5472,7 +5878,7 @@ msgstr "Aperi un quadro de dialogo pro adder un advertimento de contento a tu pu #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:61 msgid "Opens a dialog to choose who can reply to this thread" -msgstr "Aperi un quadro de dialogo pro selectionar qui pote responder a iste filo" +msgstr "Aperi un quadro de dialogo pro eliger qui pote responder a iste filo" #: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" @@ -5484,17 +5890,17 @@ msgstr "Aperi dialogo de texto alternative" #: src/view/com/composer/photos/OpenCameraBtn.tsx:71 msgid "Opens camera on device" -msgstr "Aperi camera sur dispositivo" +msgstr "Aperi le camera super le dispositivo" #: src/view/com/composer/videos/SubtitleDialog.tsx:43 msgid "Opens captions and alt text dialog" msgstr "Aperi le dialogo de subtitulos e texto alternative" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Aperi quadro de dialogo de modification de pseudonymo" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Aperi le fenestra de redaction" @@ -5502,7 +5908,7 @@ msgstr "Aperi le fenestra de redaction" msgid "Opens device photo gallery" msgstr "Aperi le galeria de photos del dispositivo" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Aperi le selector de emojis" @@ -5520,28 +5926,28 @@ msgstr "Aperi le fluxo pro aperir session con tu conto Bluesky existente" msgid "Opens GIF select dialog" msgstr "Aperi quadro de dialogo de selection de GIF" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Aperi le servicio de assistentia technic in le navigator" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "Aperi le ligamine {0}" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Aperi le lista de codices de invitation" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" -msgstr "" +msgstr "Aperi le quadro de dialogo de stato in directo" #: src/screens/Login/LoginForm.tsx:249 msgid "Opens password reset form" msgstr "Aperi le formulario de reinitialisation de contrasigno" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Aperi le sito web ligate" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Aperi iste profilo" @@ -5558,7 +5964,7 @@ msgstr "Optionalmente provide information additional hic infra:" msgid "Options:" msgstr "Optiones:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "O combina iste optiones:" @@ -5580,7 +5986,7 @@ msgstr "Stato OTA: Disponibile!" #: src/screens/Settings/components/OTAInfo.tsx:50 msgid "OTA status: Error fetching update" -msgstr "" +msgstr "Stato del OTA: Error durante le recuperation del actualisation" #: src/screens/Settings/components/OTAInfo.tsx:54 msgid "OTA status: None available" @@ -5600,15 +6006,19 @@ msgstr "Altere conto" msgid "Other..." msgstr "Alteres..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." -msgstr "Nostre equipa de moderation ha recipite tu reporto." +msgstr "Nostre equipa de moderation ha recipite tu signalamento." #: src/screens/Messages/components/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." -msgstr "" +msgstr "Nostre moderatores ha revidite signalationes e ha decidite disactivar tu accesso a chats super Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Pagina non trovate" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Pagina non trovate" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,37 +6052,42 @@ msgstr "Contrasigno actualisate" msgid "Password updated!" msgstr "Contrasigno actualisate!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Pausar" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Pausar video" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Personas" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Personas sequite per @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Personas qui seque @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "Personas que io seque" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." -msgstr "" +msgstr "Le permission pro acceder a tu bibliotheca de photos ha essite negate. Activa lo in le parametros de tu systema." #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" -msgstr "" +msgstr "Commutar persona" #: src/screens/Onboarding/index.tsx:28 #: src/screens/Onboarding/state.ts:109 @@ -5694,7 +6109,7 @@ msgstr "Fixar canal" #: src/components/FeedCard.tsx:329 msgid "Pin Feed" -msgstr "" +msgstr "Fixar canal" #: src/view/screens/ProfileList.tsx:714 msgid "Pin to home" @@ -5704,12 +6119,12 @@ msgstr "Fixar al initio" msgid "Pin to Home" msgstr "Fixar al initio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Fixar in tu profilo" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Fixate" @@ -5718,7 +6133,7 @@ msgstr "Fixate" msgid "Pinned {0} to Home" msgstr "Fixate {0} al Initio" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Canales fixate" @@ -5726,43 +6141,47 @@ msgstr "Canales fixate" msgid "Pinned to your feeds" msgstr "Fixate in tu canales" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Reproducer" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Reproducer {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Reproducer video" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Reproducer video" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Reproduce o pausa le GIF" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Reproduce o pausa le video" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Reproduce le GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Reproduce le video" #: src/view/com/composer/labels/LabelsBtn.tsx:115 msgid "Please add any content warning labels that are applicable for the media you are posting." +msgstr "Adde etiquettas de advertimento applicabile al contento multimedial que tu publica." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" #: src/screens/Signup/state.ts:286 @@ -5770,19 +6189,20 @@ msgid "Please choose your handle." msgstr "Per favor elige tu pseudonymo." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Per favor elige tu contrasigno." #: src/components/dialogs/EmailDialog/screens/Update.tsx:290 msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." -msgstr "" +msgstr "Clicca super le ligamine que nos te ha inviate justo ora pro verificar tu nove adresse de e-mail. Isto es un passo importante a fin que tu continua a fruer de tote le functiones de Bluesky." #: src/screens/Signup/state.ts:301 msgid "Please complete the verification captcha." msgstr "Per favor completa le captcha de verification." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Verifica duplemente que tu ha inserite tu adresse de e-mail correctemente." @@ -5796,42 +6216,47 @@ msgstr "Insere un contrasigno. Illo debe haber al minus 8 characteres." #: src/screens/Settings/components/AddAppPasswordDialog.tsx:114 msgid "Please enter a unique name for this app password or use our randomly generated one." -msgstr "Insere un nomine unic pro iste contrasigno del application o usa illo que nos generava aleatorimente." +msgstr "Insere un nomine unic pro iste contrasigno del application o usa illo que nos ha generate aleatorimente." #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131 #: src/components/dialogs/EmailDialog/screens/Update.tsx:135 #: src/components/dialogs/EmailDialog/screens/Verify.tsx:145 msgid "Please enter a valid code." -msgstr "" +msgstr "Insere un codice valide." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." -msgstr "" +msgstr "Insere un adresse de e-mail valide." #: src/components/dialogs/MutedWords.tsx:86 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Insere un parola, etiquetta o phrase valide pro silentiar lo" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 -msgid "Please enter the code we sent to <0>{0} below." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." msgstr "" +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 +msgid "Please enter the code we sent to <0>{0} below." +msgstr "Insere le codice que nos ha inviate a <0>{0} hic infra." + #: src/components/dialogs/EmailDialog/screens/Update.tsx:247 msgid "Please enter the security code we sent to your previous email address." -msgstr "" +msgstr "Insere le codice de securitate que nos ha inviate a tu adresse de e-mail precedente." #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Per favor insere tu adresse de e-mail." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Per favor insere tu codice de invitation." #: src/components/dialogs/EmailDialog/screens/Update.tsx:217 msgid "Please enter your new email address." -msgstr "" +msgstr "Insere tu nove adresse de e-mail." #: src/screens/Login/LoginForm.tsx:99 msgid "Please enter your password" @@ -5847,11 +6272,24 @@ msgstr "Insere tu nomine de usator" #: src/components/moderation/LabelsOnMeDialog.tsx:290 msgid "Please explain why you think this label was incorrectly applied by {0}" -msgstr "Explica proque tu pensa que iste etiquetta esseva incorrectemente applicate a {0}" +msgstr "Explica proque tu pensa que iste etiquetta ha essite incorrectemente applicate a {0}" #: src/screens/Messages/components/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" -msgstr "Explica proque tu pensa que tu chats esseva disactivate incorrectemente" +msgstr "Explica proque tu pensa que tu chats ha essite disactivate incorrectemente" + +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" @@ -5859,7 +6297,7 @@ msgstr "Selige un servicio de moderation" #: src/components/moderation/ReportDialog/action.ts:28 msgid "Please select a reason for this report" -msgstr "Selige un motivo pro iste reporto" +msgstr "Selige un motivo pro iste signalamento" #: src/lib/hooks/useAccountSwitcher.ts:45 #: src/lib/hooks/useAccountSwitcher.ts:55 @@ -5868,12 +6306,12 @@ msgstr "Per favor aperi session como @{0}" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62 msgid "Please verify your email" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" msgstr "Verifica tu e-mail" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" + #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:235 @@ -5884,64 +6322,72 @@ msgstr "Politica" msgid "Porn" msgstr "Pornographia" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Publication" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Publication" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Publicar" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Publicar toto" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "Publication blocate" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Publication de {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Publication de @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" -msgstr "Publication eliminate" +msgstr "Publication delite" #: src/lib/api/index.ts:186 msgid "Post failed to upload. Please check your Internet connection and try again." -msgstr "Non esseva possibile cargar le publication. Verifica tu connexion al Internet e tenta de novo." +msgstr "Non ha essite possibile cargar le publication. Verifica tu connexion al Internet e tenta de novo." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" -msgstr "Le publication ha essite eliminate" +msgstr "Le publication ha essite delite" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" -msgstr "" +msgstr "Publication occultate" #: src/components/moderation/ModerationDetailsDialog.tsx:107 #: src/lib/moderation/useModerationCauseDescription.ts:106 msgid "Post Hidden by Muted Word" -msgstr "" +msgstr "Publication occultate per parola silentiate" #: src/components/moderation/ModerationDetailsDialog.tsx:110 #: src/lib/moderation/useModerationCauseDescription.ts:115 msgid "Post Hidden by You" msgstr "Publication occultate per te" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Parametros de interaction del publication" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Parametros de interaction del publication" @@ -5954,8 +6400,10 @@ msgstr "Lingua de publication" msgid "Post Languages" msgstr "Linguas de publication" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Publication non trovate" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Publication disfixate" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Publicationes" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Publicationes pote esser silentiate secundo lor texto, lor etiquettas, o ambes. Nos recommenda evitar parolas commun que appare in multe publicationes, proque illo pote resultar in que necun publication sia monstrate." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" -msgstr "Publicationes celate" +msgstr "Publicationes occultate" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Ligamine potentialmente fraudulente" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "Publicationes, responsas" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Preferentia salvate" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "Ligamine potentialmente fallace" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "Advertimento de ligamine potentialmente fallace" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Preme pro tentar reconnecter" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Pressa pro retentar" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Preme pro vider sequitores de iste conto que tu tamben seque" @@ -6015,40 +6469,46 @@ msgstr "Imagine precedente" msgid "Primary Language" msgstr "Lingua principal" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Priorisar qui tu seque" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Notificationes prioritari" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Privatessa" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Privatessa e securitate" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privatessa e securitate" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "Parametros de privatessa e securitate" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Politica de privatessa" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Processante video..." @@ -6062,15 +6522,14 @@ msgstr "Processante..." msgid "profile" msgstr "profilo" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Profilo" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Profilo actualisate" @@ -6085,28 +6544,44 @@ msgstr "Listas public e compartibile de usatores a silentiar o blocar in massa." #: src/view/com/lists/MyLists.tsx:72 msgid "Public, sharable lists which can be used to drive feeds." -msgstr "" +msgstr "Listas public e compartibile que pote esser usate pro alimentar canales." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" -msgstr "" +msgstr "Publicar" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" -msgstr "" +msgstr "Publicar publicationes" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "Publicar responsas" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "Publicar responsa" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "Push" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "Notificationes push" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "Push, totes" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "Push, personas que tu seque" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "Codice QR copiate a tu area de transferentia!" @@ -6119,88 +6594,108 @@ msgstr "Le codice QR ha essite discargate!" msgid "QR code saved to your camera roll!" msgstr "Codice QR salvate in tu rolo del camera!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "Notificationes de citation" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Citar publication" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" -msgstr "Le citation esseva re-attaccate" +msgstr "Le citation ha essite reannexate" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" -msgstr "Le citation esseva distaccate con successo" +msgstr "Le citation ha essite disannexate con successo" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Citationes disactivate" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Parametros de citation" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Citationes" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Citationes de iste publication" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Aleatori (o \"Roulette del publicator\")" #: src/screens/Settings/components/ChangeHandleDialog.tsx:600 msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." -msgstr "" +msgstr "Limite excedite – tu ha tentate cambiar tu pseudonymo troppo de vices in un curte periodo. Attende un minuta ante tentar de novo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" -msgstr "" +msgstr "Reannexar citation" #: src/components/dms/EmojiReactionPicker.tsx:85 msgid "React with {emoji}" -msgstr "" +msgstr "Reager con {emoji}" #: src/screens/Deactivated.tsx:141 msgid "Reactivate your account" msgstr "Reactivar tu conto" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "Leger plus {0} {1, plural, one {responsa} other {responsas}}" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Leger publication del blog" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Leger minus" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Leger plus" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "Leger plus responsas" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Lege le blog de Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Lege le politica de privatessa de Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Lege le conditiones de servicio de Bluesky" @@ -6213,6 +6708,14 @@ msgstr "Motivo del appello" msgid "Reason:" msgstr "Motivo:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "Reciper notificationes interne al application" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "Reciper notificationes push" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Cercas recente" @@ -6234,8 +6737,8 @@ msgstr "Rejectar" msgid "Reject chat request" msgstr "Rejectar requesta de chat" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Recargar conversationes" @@ -6244,10 +6747,9 @@ msgstr "Recargar conversationes" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Remover" @@ -6259,49 +6761,47 @@ msgstr "Remover {displayName} del pacchetto de initio" msgid "Remove {historyItem}" msgstr "Remover {historyItem}" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Remover conto" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" -msgstr "" +msgstr "Remover annexo" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Remover avatar" #: src/view/com/util/UserBanner.tsx:186 #: src/view/com/util/UserBanner.tsx:189 msgid "Remove Banner" -msgstr "" +msgstr "Remover banner" #: src/screens/Messages/components/MessageInputEmbed.tsx:209 msgid "Remove embed" -msgstr "" +msgstr "Remover incorporation" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Remover canal" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Remover canal?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Remover de mi canales" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Remover del accesso rapide?" @@ -6311,18 +6811,17 @@ msgid "Remove from saved feeds" msgstr "Remover de tu canales salvate" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "Remover de tu canales?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Remover imagine" #: src/components/live/EditLiveDialog.tsx:240 #: src/components/live/EditLiveDialog.tsx:247 msgid "Remove live status" -msgstr "" +msgstr "Remover stato in directo" #: src/components/dialogs/MutedWords.tsx:523 msgid "Remove mute word from your list" @@ -6332,12 +6831,8 @@ msgstr "Remover parola silentiate de tu lista" msgid "Remove profile" msgstr "Remover profilo" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Remover citation" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Remover republication" @@ -6345,30 +6840,30 @@ msgstr "Remover republication" msgid "Remove subtitle file" msgstr "Remover file de subtitulos" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Remover iste canal de tu canales salvate" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157 msgid "Remove user from list" -msgstr "" +msgstr "Remover usator del lista" #: src/components/verification/VerificationRemovePrompt.tsx:46 #: src/components/verification/VerificationsDialog.tsx:247 #: src/view/com/profile/ProfileMenu.tsx:336 #: src/view/com/profile/ProfileMenu.tsx:339 msgid "Remove verification" -msgstr "" +msgstr "Remover verification" #: src/components/verification/VerificationRemovePrompt.tsx:44 msgid "Remove your verification for this account?" -msgstr "" +msgstr "Remover tu verification de iste conto?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Removite per le autor" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Removite per te" @@ -6377,10 +6872,6 @@ msgstr "Removite per te" msgid "Removed from list" msgstr "Removite del lista" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Removite de mi canales" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Removite del canales salvate" @@ -6393,93 +6884,100 @@ msgstr "Removite de tu canales" #: src/components/verification/VerificationRemovePrompt.tsx:32 msgid "Removed verification" -msgstr "" - -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Remove citation" +msgstr "Verification removite" #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Reimplaciar con Discover" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Responsas" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Responsas disactivate" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." -msgstr "" +msgstr "Responsas a iste publication es disactivate." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Responsa" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Responsa ({0, plural, one {# responsa} other {# responsas}})" #: src/components/moderation/ModerationDetailsDialog.tsx:116 #: src/lib/moderation/useModerationCauseDescription.ts:125 msgid "Reply Hidden by Thread Author" -msgstr "" +msgstr "Responsa occultate per le autor del filo" #: src/components/moderation/ModerationDetailsDialog.tsx:115 #: src/lib/moderation/useModerationCauseDescription.ts:124 msgid "Reply Hidden by You" -msgstr "" +msgstr "Responsa occultate per te" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "Notificationes de responsa" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Parametros de responsa" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" -msgstr "" +msgstr "Le parametros de responsa es eligite per le autor del filo" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Ordinamento de responsas" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Responsa a <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Responsa a un publication blocate" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Responder a un publication" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Responsa a te" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Visibilitate del responsa actualisate" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" -msgstr "" +msgstr "Le responsa ha essite occultate con successo" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6507,18 +7005,18 @@ msgstr "Signalar dialogo" #: src/screens/Profile/components/ProfileFeedHeader.tsx:546 #: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Report feed" -msgstr "Signalar fluxo" +msgstr "Signalar canal" #: src/view/screens/ProfileList.tsx:570 msgid "Report list" msgstr "Signalar lista" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Signalar message" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Signalar publication" @@ -6538,7 +7036,7 @@ msgstr "Signalar iste contento" #: src/components/moderation/ReportDialog/copy.ts:31 #: src/components/ReportDialog/SelectReportOptionView.tsx:54 msgid "Report this feed" -msgstr "Signalar iste fluxo" +msgstr "Signalar iste canal" #: src/components/moderation/ReportDialog/copy.ts:25 #: src/components/ReportDialog/SelectReportOptionView.tsx:51 @@ -6567,25 +7065,26 @@ msgstr "Signalar iste pacchetto de initio" msgid "Report this user" msgstr "Signalar iste usator" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Republication" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Republication" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Republication ({0, plural, one {# republication} other {# republicationes}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "Notificationes de republication" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Republication o citation" @@ -6594,43 +7093,55 @@ msgstr "Republication o citation" msgid "Reposted By" msgstr "Republicate per" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Republicate per {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Republicate per <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Republicate per te" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "Republicationes" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Republicationes de iste publication" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "Republicationes de tu republicationes" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "Notificationes de republication de tu republicationes" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "Requestar codice" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Require texto alternative ante le publication" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96 msgid "Require an email code to sign in to your account." -msgstr "Require in codice de e-mail pro initiar session in tu conto." +msgstr "Require in codice de e-mail pro aperir session con tu conto." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Obligatori pro iste fornitor" @@ -6640,12 +7151,8 @@ msgstr "Requirite in tu region" #: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40 msgid "Resend" -msgstr "" +msgstr "Reinviar" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Reinviar e-mail" msgid "Resend Verification Email" msgstr "Reinviar e-mail de verification" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "Reinitialisar suggestion de subscription de activitate" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Reinitialisar codice" @@ -6667,10 +7180,10 @@ msgstr "Reinitialisar codice" msgid "Reset Code" msgstr "Reinitialisar codice" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" -msgstr "" +msgstr "Reinitialisar stato de apprentissage" #: src/screens/Login/ForgotPasswordForm.tsx:80 msgid "Reset password" @@ -6678,36 +7191,38 @@ msgstr "Reinitialisar contrasigno" #: src/screens/Login/LoginForm.tsx:324 msgid "Retries signing in" -msgstr "" +msgstr "Tenta aperir session de novo" #: src/view/com/util/error/ErrorMessage.tsx:62 #: src/view/com/util/error/ErrorScreen.tsx:99 msgid "Retries the last action, which errored out" -msgstr "" +msgstr "Tenta de novo le ultime action, que ha generate un error" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Tentar de novo" #: src/components/moderation/ReportDialog/index.tsx:226 msgid "Retry loading report options" -msgstr "" +msgstr "Tenta de novo cargar le optiones de signalamento" #: src/components/Error.tsx:73 #: src/screens/List/ListHiddenScreen.tsx:219 @@ -6721,19 +7236,19 @@ msgstr "Retorna al pagina de initio" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Retorna al pagina precedente" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Retorna al passo precedente" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Retorna al passo precedente" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Salvar" @@ -6760,17 +7274,15 @@ msgstr "Salvar" #: src/components/dialogs/BirthDateSettings.tsx:115 msgid "Save birthday" -msgstr "" +msgstr "Salvar data de nascentia" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Salvar cambiamentos" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Salvar cambiamentos" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6791,29 +7303,25 @@ msgstr "Salvar codice QR" #: src/screens/Profile/components/ProfileFeedHeader.tsx:320 #: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" -msgstr "Salvar a mi fluxos" +msgstr "Salvar in mi canales" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" -msgstr "Fluxos salvate" +msgstr "Canales salvate" #: src/screens/Profile/components/ProfileFeedHeader.tsx:132 #: src/view/screens/ProfileList.tsx:372 msgid "Saved to your feeds" msgstr "Salvate in tu canales" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Salva qualcunque cambio a tu profilo" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" -msgstr "" +msgstr "Salva le parametros de retalio de imagine" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Dice hallo!" @@ -6826,16 +7334,16 @@ msgstr "Scientia" msgid "Scroll to top" msgstr "Rolar al alto" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Cercar" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Cercar publicationes de @{0}" @@ -6861,7 +7369,7 @@ msgstr "Cercar pro \"{query}\"" msgid "Search for \"{searchText}\"" msgstr "Cercar pro \"{searchText}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Cercar canales que tu vole suggerer a alteres." @@ -6877,10 +7385,14 @@ msgstr "Cercar plus canales" msgid "Search for posts, users, or feeds" msgstr "Cercar publicationes, usatores o canales" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Cercar GIFs" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Cercar mi publicationes" @@ -6890,12 +7402,12 @@ msgstr "Cercar mi publicationes" msgid "Search posts" msgstr "Cercar publicationes" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Cercar profilos" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Cercar in Tenor" @@ -6903,74 +7415,87 @@ msgstr "Cercar in Tenor" msgid "Search..." msgstr "Cercar..." -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Cercas per profilos" #: src/components/dialogs/EmailDialog/screens/Update.tsx:243 msgid "Security step required" -msgstr "" - -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" msgstr "Passo de securitate requirite" #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" -msgstr "Vider le publicationes sur {tag}" +msgstr "Vider le publicationes super {tag}" #: src/components/RichTextTag.tsx:124 msgid "See {tag} posts by user" -msgstr "Vider le publicationes sur {tag} per usator" +msgstr "Vider le publicationes super {tag} per usator" #: src/components/RichTextTag.tsx:118 msgid "See #{tag} posts" -msgstr "Vider le publicationes sur #{tag}" +msgstr "Vider le publicationes super #{tag}" #: src/components/RichTextTag.tsx:132 msgid "See #{tag} posts by user" -msgstr "Vider le publicationes sur #{tag} per usator" +msgstr "Vider le publicationes super #{tag} per usator" #: src/view/com/auth/SplashScreen.web.tsx:178 msgid "See jobs at Bluesky" msgstr "Vider offertas de empleo a Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Vide iste guida" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" +msgstr "Cursor de recerca. Usa le claves con flechas pro avantiar e retroceder, e spatio pro reproducer/pausar" + +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" msgstr "" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" -msgstr "Selige un color" +msgstr "Seliger un color" #: src/screens/Login/ChooseAccountForm.tsx:77 msgid "Select account" -msgstr "Selectionar conto" +msgstr "Seliger conto" #: src/components/AppLanguageDropdown.tsx:60 msgid "Select an app language" -msgstr "" +msgstr "Selige un lingua pro le application" #: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 msgid "Select an avatar" -msgstr "Selectionar un avatar" +msgstr "Seliger un avatar" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" -msgstr "Selectiona un emoji" +msgstr "Seliger un emoji" #: src/components/Select/index.tsx:204 msgid "Select an option" -msgstr "" +msgstr "Selige un option" #: src/screens/Settings/LanguageSettings.tsx:98 msgid "Select app language" -msgstr "" +msgstr "Seliger le lingua del application" #: src/screens/Settings/LanguageSettings.tsx:164 msgid "Select content languages" @@ -6978,7 +7503,7 @@ msgstr "Selectionar linguas de contento" #: src/components/live/GoLiveDialog.tsx:179 msgid "Select duration" -msgstr "" +msgstr "Seliger duration" #: src/screens/Login/index.tsx:144 msgid "Select from an existing account" @@ -6988,7 +7513,7 @@ msgstr "Selectiona desde un conto existente" msgid "Select GIF" msgstr "Seliger GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Seliger GIF \"{0}\"" @@ -6996,6 +7521,11 @@ msgstr "Seliger GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "Selige per quante tempore silentiar iste parola." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Selectionar lingua..." @@ -7004,7 +7534,7 @@ msgstr "Selectionar lingua..." msgid "Select languages" msgstr "Selectionar linguas" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "Seliger servicio de moderation" @@ -7014,7 +7544,7 @@ msgstr "Seliger moderator" #: src/screens/Settings/LanguageSettings.tsx:131 msgid "Select primary language" -msgstr "" +msgstr "Seliger le lingua principal" #: src/view/com/composer/videos/SubtitleFilePicker.tsx:59 #: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 @@ -7027,7 +7557,7 @@ msgstr "Seliger le emoji {emojiName} como tu avatar" #: src/components/ReportDialog/SubmitView.tsx:141 msgid "Select the moderation service(s) to report to" -msgstr "" +msgstr "Seliger le servicio(s) de moderation al qual(es) signalar" #: src/view/com/composer/videos/SelectVideoBtn.tsx:74 msgid "Select video" @@ -7045,12 +7575,12 @@ msgstr "Selige qual lingua usar pro le interfacie de usator del application." msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Selige qual linguas tu vole que tu canales subscribite include. Si necun es selectionate, tote le linguas essera monstrate." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" -msgstr "Selectiona tu data de nascentia" +msgstr "Seliger tu data de nascentia" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Selige tu interesses desde le optiones hic infra" @@ -7058,7 +7588,11 @@ msgstr "Selige tu interesses desde le optiones hic infra" msgid "Select your preferred language for translations in your feed." msgstr "Selectiona tu lingua preferite pro traductiones in tu canal." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "Selige tu canales de notification preferite" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "Selige le option {0} de {numItems}" @@ -7066,27 +7600,19 @@ msgstr "Selige le option {0} de {numItems}" msgid "Send a neat website!" msgstr "Invia un sito web interessante!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Inviar e-posta de confirmation" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" -msgstr "Inviar e-posta" +msgstr "Inviar e-mail" #: src/view/com/modals/DeleteAccount.tsx:158 msgctxt "action" msgid "Send Email" -msgstr "Inviar e-posta" +msgstr "Inviar e-mail" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Inviar commentarios" @@ -7095,9 +7621,9 @@ msgstr "Inviar commentarios" msgid "Send message" msgstr "Inviar message" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" -msgstr "" +msgstr "Inviar le publication a {name}" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." @@ -7108,32 +7634,32 @@ msgstr "Inviar message a..." #: src/components/ReportDialog/SubmitView.tsx:221 #: src/components/ReportDialog/SubmitView.tsx:225 msgid "Send report" -msgstr "Inviar reporto" +msgstr "Inviar signalamento" #: src/components/ReportDialog/SelectLabelerView.tsx:42 msgid "Send report to {0}" -msgstr "Inviar reporto a {0}" +msgstr "Inviar signalamento a {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" -msgstr "Inviar reporto a {title}" +msgstr "Inviar signalamento a {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" -msgstr "Inviar e-posta de verification" +msgstr "Inviar e-mail de verification" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Inviar via message directe" #: src/view/com/modals/DeleteAccount.tsx:147 msgid "Sends email with confirmation code for account deletion" -msgstr "Invia un e-posta con le codice de confirmation pro le suppresion del conto" +msgstr "Invia un e-mail con le codice de confirmation pro le deletion del conto" #: src/view/com/auth/server-input/index.tsx:167 msgid "Server address" @@ -7143,7 +7669,7 @@ msgstr "Adresse de servitor" msgid "Set app icon to {0}" msgstr "Definir le icone de application a {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Definir data de nascentia" @@ -7159,13 +7685,57 @@ msgstr "Configurar tu conto" msgid "Sets email for password reset" msgstr "Defini email pro reinitialisation de contrasigno" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Parametros" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "Parametros pro le activitate de alteres" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "Parametros pro permitter que alteres sia notificate de tu publicationes" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "Parametros pro notificationes de appreciationes" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "Parametros pro notificationes de mentiones" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "Parametros pro notificationes de nove sequitor" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "Parametros pro notificationes de tote le resto" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "Parametros pro notificationes de appreciationes de tu republicationes" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "Parametros pro notificationes de republicationes de tu republicationes" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "Parametros pro notificationes de citationes" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "Parametros pro notificationes de responsas" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "Parametros pro notificationes de republicationes" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7185,50 +7755,45 @@ msgstr "Sexualmente suggestive" #: src/screens/Topic.tsx:102 #: src/view/screens/ProfileList.tsx:513 msgid "Share" -msgstr "" +msgstr "Compartir" #: src/view/com/lightbox/ImageViewing/index.tsx:619 msgctxt "action" msgid "Share" -msgstr "" +msgstr "Compartir" #: src/components/dms/ChatEmptyPill.tsx:37 msgid "Share a cool story!" -msgstr "" +msgstr "Comparti un historia interessante!" #: src/components/dms/ChatEmptyPill.tsx:36 msgid "Share a fun fact!" -msgstr "" +msgstr "Comparti un facto amusante!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" -msgstr "" +msgstr "Compartir nonobstante" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" -msgstr "" +msgstr "Compartir le DID del autor" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" -msgstr "" - -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "" +msgstr "Compartir ligamine" #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" -msgstr "" +msgstr "Quadro de dialogo pro compartir ligamine" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" -msgstr "" +msgstr "Compartir le URI at:// del publication" #: src/components/StarterPack/ShareDialog.tsx:115 #: src/components/StarterPack/ShareDialog.tsx:126 @@ -7237,44 +7802,40 @@ msgstr "Compartir codice QR" #: src/screens/Profile/components/ProfileFeedHeader.tsx:474 msgid "Share this feed" -msgstr "" +msgstr "Compartir iste canal" #: src/screens/StarterPack/StarterPackScreen.tsx:426 msgid "Share this starter pack" -msgstr "" +msgstr "Compartir iste pacchetto de initio" #: src/components/StarterPack/ShareDialog.tsx:80 msgid "Share this starter pack and help people join your community on Bluesky." -msgstr "" +msgstr "Comparti iste pacchetto de initio e adjuta le gente a unir se a tu communitate super Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 #: src/view/com/profile/ProfileMenu.tsx:256 msgid "Share via..." -msgstr "" +msgstr "Compartir via..." #: src/components/dms/ChatEmptyPill.tsx:34 msgid "Share your favorite feed!" -msgstr "" +msgstr "Comparti tu canal favorite!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" -msgstr "" +msgstr "Testator de preferentias compartite" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Monstrar" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Monstrar texto alternative" @@ -7293,7 +7854,7 @@ msgstr "Monstrar insignia" #: src/lib/moderation/useLabelBehaviorDescription.ts:61 msgid "Show badge and filter from feeds" -msgstr "" +msgstr "Monstrar insignia e filtrar del canales" #: src/components/dialogs/Embed.tsx:129 msgid "Show customization options" @@ -7301,10 +7862,10 @@ msgstr "Monstrar optiones de personalisation" #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show hidden replies" -msgstr "Monstrar responsas celate" +msgstr "Monstrar responsas occultate" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Monstrar minus como iste" @@ -7312,57 +7873,65 @@ msgstr "Monstrar minus como iste" msgid "Show list anyway" msgstr "Monstrar le lista nonobstante" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Monstrar plus" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Monstrar plus como isto" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "Monstrar plus responsas" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Monstrar responsas silentiate" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "Monstrar responsas del publication in un vista de arbore de filos" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Monstrar citationes" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Monstrar responsas" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Monstrar responsas como" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" -msgstr "" +msgstr "Monstrar responsas como filos" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Monstrar le responsas del personas que tu seque ante tote le altere responsas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Monstrar responsa pro totes" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Monstrar republicationes" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" -msgstr "" +msgstr "Monstrar monstras de tu canales salvate in tu canal Following" #: src/lib/moderation/useLabelBehaviorDescription.ts:58 msgid "Show warning" @@ -7370,18 +7939,19 @@ msgstr "Monstrar advertimento" #: src/lib/moderation/useLabelBehaviorDescription.ts:56 msgid "Show warning and filter from feeds" -msgstr "Monstrar advertimento e filtrar desde fluxos" +msgstr "Monstrar advertimento e filtrar desde canales" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" -msgstr "Monstra information super quando iste publication esseva create" +msgstr "Monstra information super quando iste publication ha essite create" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" -msgstr "Monstrar altere contos al qual tu pote cambiar" +msgstr "Monstra altere contos al quales tu pote cambiar" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Monstra le contento" @@ -7390,14 +7960,15 @@ msgstr "Monstra le contento" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7414,7 +7985,7 @@ msgstr "Aperir session como..." #: src/screens/Deactivated.tsx:203 #: src/screens/Deactivated.tsx:209 msgid "Sign in or create an account" -msgstr "" +msgstr "Aperi session o crea un conto" #: src/components/dialogs/Signin.tsx:75 msgid "Sign in or create your account to join the conversation!" @@ -7428,15 +7999,20 @@ msgstr "Aperir session con un conto que non es listate" msgid "Sign in to Bluesky or create a new account" msgstr "Aperi session in Bluesky o crea un nove conto" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "Aperi session pro vider le publication" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Clauder session" @@ -7444,8 +8020,8 @@ msgstr "Clauder session" msgid "Sign Out" msgstr "Clauder session" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Clauder session?" @@ -7459,12 +8035,12 @@ msgstr "Apertura de session necessari" msgid "Signed in as @{0}" msgstr "In session como @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Contos similar" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Saltar" @@ -7472,14 +8048,13 @@ msgstr "Saltar" msgid "Skip this flow" msgstr "Saltar iste canal" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Minor" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" -msgstr "" +msgstr "Proroga le recordatorio" #: src/screens/Onboarding/index.tsx:37 #: src/screens/Onboarding/state.ts:100 @@ -7488,71 +8063,78 @@ msgstr "Disveloppamento de software" #: src/components/verification/VerificationsDialog.tsx:120 msgid "Some of your verifications are invalid." -msgstr "" +msgstr "Alcunes de tu verificationes es invalide." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Alcun altere canales que pote placer te" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Alicun personas pote responder" #: src/components/dms/MessageItem.tsx:148 msgid "Someone reacted {0}" -msgstr "" +msgstr "Alcuno ha reagite con {0}" #: src/screens/Messages/components/ChatListItem.tsx:241 msgid "Someone reacted {0} to {1}" -msgstr "" +msgstr "Alcuno ha reagite con {0} a {1}" #: src/components/moderation/ReportDialog/index.tsx:76 msgid "Something wasn't quite right with the data you're trying to report. Please contact support." -msgstr "" +msgstr "Le datos que tu tenta signalar ha alcun problema. Contacta le supporto." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" -msgstr "Alcun error occurreva" +msgstr "Alcun error ha occurrite" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 msgid "Something went wrong, please try again" -msgstr "Alcun error occurreva, tenta de novo" +msgstr "Alcun error ha occurrite, tenta de novo" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." -msgstr "Alcun error occurreva, tenta de novo." +msgstr "Alcun error ha occurrite, tenta de novo." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" -msgstr "Alcun error occurreva!" +msgstr "Alcun error ha occurrite!" + +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "Alcun error ha occurrite. Tenta de novo in alcun instantes." #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." -msgstr "Alcun error occurreva. Tenta de novo." +msgstr "Alcun error ha occurrite. Tenta de novo." #: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Something wrong? Let us know." msgstr "Alcun problema? Informa nos." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." -msgstr "Pardono! Tu session expirava. Aperi session de novo." +msgstr "Pardono! Tu session ha expirate. Aperi session de novo." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Ordinar responsas" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Ordinar responsas per" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Ordinar responsas al mesme publication per:" @@ -7577,11 +8159,11 @@ msgstr "Spam; mentiones o responsas excessive" #: src/screens/Onboarding/state.ts:113 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "Sports" -msgstr "" +msgstr "Sports" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." -msgstr "" +msgstr "Comencia un conversation e illo apparera hic." #: src/components/dms/dialogs/NewChatDialog.tsx:74 msgid "Start a new chat" @@ -7601,9 +8183,9 @@ msgstr "Comencia a adder personas!" msgid "Start chat with {displayName}" msgstr "Initiar chat con {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Pacchetto de initio" @@ -7611,12 +8193,12 @@ msgstr "Pacchetto de initio" msgid "Starter pack by {0}" msgstr "Pacchetto de initio de {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Pacchetto de initio de <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Pacchetto de initio tue" @@ -7631,26 +8213,28 @@ msgstr "Pacchettos de initio" #: src/components/StarterPack/ProfileStarterPacks.tsx:266 msgid "Starter packs let you easily share your favorite feeds and people with your friends." -msgstr "Le pacchettos de initio te permitte condivider facilemente tu canales e personas favorite con tu amicos." +msgstr "Le pacchettos de initio te permitte compartir facilemente tu canales e personas favorite con tu amicos." #: src/screens/Settings/AboutSettings.tsx:100 #: src/screens/Settings/AboutSettings.tsx:103 msgid "Status Page" msgstr "Pagina de stato" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Passo {0} de {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." -msgstr "" +msgstr "Immagazinage radite, tu debe reinitiar le application ora." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,19 +8250,23 @@ msgstr "Inviar appello" msgid "Submit Appeal" msgstr "Inviar appello" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" -msgstr "Inviar reporto" +msgstr "Inviar signalamento" #: src/view/screens/ProfileList.tsx:741 msgid "Subscribe" msgstr "Subscriber" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" -msgstr "" +msgstr "Subscribe te a @{0} pro usar iste etiquettas:" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "Subscribe te al activitate del conto" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" @@ -7692,20 +8280,24 @@ msgstr "Subscriber se a iste etiquettator" msgid "Subscribe to this list" msgstr "Subscriber te a iste lista" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Successo!" #: src/components/verification/VerificationCreatePrompt.tsx:36 msgid "Successfully verified" -msgstr "" +msgstr "Verificate con successo" #: src/screens/Search/Explore.tsx:357 msgid "Suggested Accounts" -msgstr "" +msgstr "Contos suggerite" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Suggerite pro te" @@ -7714,26 +8306,26 @@ msgstr "Suggerite pro te" msgid "Suggestive" msgstr "Suggestive" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" -msgstr "" +msgstr "Levar del sol" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" -msgstr "" +msgstr "Poner del sol" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Supporto" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Cambiar conto" @@ -7742,24 +8334,24 @@ msgstr "Cambiar conto" msgid "Switch Account" msgstr "Cambiar conto" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Cambiar contos" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" -msgstr "Cambia a {0}" +msgstr "Cambiar a {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Systema" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Registro de systema" @@ -7767,11 +8359,23 @@ msgstr "Registro de systema" msgid "Tags only" msgstr "Solmente etiquettas" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "Tocca pro information" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "Tocca pro plus information" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 msgid "Tap to close context menu" -msgstr "" +msgstr "Tocca pro clauder le menu contextual" #: src/components/ProgressGuide/Toast.tsx:156 msgid "Tap to dismiss" @@ -7811,12 +8415,14 @@ msgstr "Conta nos un pauco plus" msgid "Terms" msgstr "Terminos" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Conditiones de servicio" @@ -7846,15 +8452,11 @@ msgstr "Campo de insertion de texto" #: src/view/com/posts/ShowLessFollowup.tsx:39 msgid "Thank you for your feedback! It has been sent to the feed operator." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Gratias! Tu e-mail ha essite verificate con successo." +msgstr "Gratias pro tu commentario! Illo ha essite inviate al operator del canal." #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." -msgstr "" +msgstr "Gratias. Tu signalamento ha essite inviate." #: src/components/intents/VerifyEmailIntentDialog.tsx:82 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -7864,31 +8466,31 @@ msgstr "Gratias, tu ha verificate tu adresse de e-mail con successo. Tu pote cla msgid "That contains the following:" msgstr "Illo contine le sequente:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Iste pseudonymo es ja in uso." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." -msgstr "Le pacchetto de initio non poteva esser trovate." +msgstr "Le pacchetto de initio non ha potite esser trovate." + +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" -msgstr "" +msgstr "Illo es toto, gente!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" -msgstr "" +msgstr "Illo es toto!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." -msgstr "" +msgstr "Le conto potera interager con te post le disblocage." #: src/screens/Settings/AppIconSettings/index.tsx:41 #: src/screens/Settings/AppIconSettings/index.tsx:222 @@ -7898,39 +8500,35 @@ msgstr "Le application essera reinitiate" #: src/components/moderation/ModerationDetailsDialog.tsx:119 #: src/lib/moderation/useModerationCauseDescription.ts:128 msgid "The author of this thread has hidden this reply." -msgstr "Le autor de iste topico ha celate iste responsa." +msgstr "Le autor de iste filo ha occultate iste responsa." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Le application web de Bluesky" #: src/view/screens/CommunityGuidelines.tsx:38 msgid "The Community Guidelines have been moved to <0/>" -msgstr "Le Guidas del communitate ha essite displaciate a <0/>" +msgstr "Le Directivas del communitate ha essite displaciate a <0/>" #: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" -msgstr "Le Politica de Copyright ha essite displaciate a <0/>" +msgstr "Le Politica de derectos de autor ha essite displaciate a <0/>" #: src/view/com/posts/FeedShutdownMsg.tsx:102 msgid "The Discover feed" -msgstr "Le fluxo Discoperir" +msgstr "Le canal Discoperir" #: src/state/shell/progress-guide.tsx:224 msgid "The Discover feed now knows what you like" -msgstr "Le fluxo Discoperir ora cognosce lo que tu ama" - -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "" +msgstr "Le canal Discoperir ora sape lo que te place" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." -msgstr "" +msgstr "Le experientia es melior in le application. Discarga Bluesky ora e nos recomenciara desde ubi tu habera partite." #: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." -msgstr "Le fluxo ha essite reimplaciate per Discoperir." +msgstr "Le canal ha essite reimplaciate per Discoperir." #: src/components/moderation/LabelsOnMeDialog.tsx:59 msgid "The following labels were applied to your account." @@ -7938,23 +8536,32 @@ msgstr "Le sequente etiquettas ha essite applicate a tu conto." #: src/components/moderation/LabelsOnMeDialog.tsx:60 msgid "The following labels were applied to your content." -msgstr "Le sequente etiquettas esseva applicate a tu contento." +msgstr "Le sequente etiquettas ha essite applicate a tu contento." #: src/screens/ModerationInteractionSettings/index.tsx:42 msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." +msgstr "Le parametros sequente essera usate como tu predefinition quando tu crea nove publicationes. Tu pote modificar los pro un publication specific al fenestra de redaction." + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 -msgid "The post may have been deleted." +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." msgstr "" +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 +msgid "The post may have been deleted." +msgstr "Iste publication pote haber essite delite." + #: src/view/screens/PrivacyPolicy.tsx:35 msgid "The Privacy Policy has been moved to <0/>" msgstr "Le Politica de privatessa ha essite displaciate a <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." msgstr "" #: src/lib/hooks/useCleanError.ts:40 @@ -7964,15 +8571,15 @@ msgstr "Le servitor pare haber problemas. Tenta de novo post alcun instantes." #: src/screens/StarterPack/StarterPackScreen.tsx:741 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." -msgstr "" +msgstr "Le pacchetto de initio que tu tenta vider es invalide. In vice, tu pote deler iste pacchetto de initio." #: src/components/ContextMenu/index.tsx:433 msgid "The subject of the context menu" -msgstr "" +msgstr "Le thema del menu contextual" #: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." -msgstr "" +msgstr "Le formulario de supporto ha essite displaciate. Si tu ha necessitate de adjuta, <0/> o visita {HELP_DESK_URL} pro contactar nos." #: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" @@ -7980,81 +8587,76 @@ msgstr "Le conditiones de servicio ha essite displaciate a" #: src/components/intents/VerifyEmailIntentDialog.tsx:94 msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." -msgstr "" +msgstr "Le codice de verification que tu ha fornite es invalide. Assecura te que tu ha usate le ligamine de verification correcte o requesta un nove." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Thema" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 msgid "There is no time limit for account deactivation, come back any time." -msgstr "" +msgstr "Il non ha limite de tempore pro disactivation de conto, retorna a qualcunque momento." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." -msgstr "Il habeva un problema in connecter a Tenor." +msgstr "Il ha habite un problema durante le connexion con Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" -msgstr "Il habeva un problema in connecter al servitor" +msgstr "Il ha habite un problema durante le connexion con le servitor" #: src/screens/Profile/components/ProfileFeedHeader.tsx:418 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 msgid "There was an issue contacting the server, please check your internet connection and try again." -msgstr "Il habeva un problema in connecter al servidor, verifica tu connexion al internet e tenta de novo." +msgstr "Il ha habite un problema durante le connexion con le servitor, verifica tu connexion al internet e tenta de novo." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Il habeva un problema durante le contacto con tu servitor" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." -msgstr "Il habeva un problema durante le recuperation del notificationes. Tocca hic pro tentar de novo." +msgstr "Il ha habite un problema durante le recuperation del notificationes. Tocca hic pro tentar de novo." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." -msgstr "Il habeva un problema durante le recuperation del publicationes. Tocca hic pro tentar de novo." +msgstr "Il ha habite un problema durante le recuperation del publicationes. Tocca hic pro tentar de novo." #: src/view/com/lists/ListMembers.tsx:151 msgid "There was an issue fetching the list. Tap here to try again." -msgstr "Il habeva un problema durante le recuperation del lista. Tocca hic pro tentar de novo." +msgstr "Il ha habite un problema durante le recuperation del lista. Tocca hic pro tentar de novo." #: src/screens/Settings/AppPasswords.tsx:60 msgid "There was an issue fetching your app passwords" -msgstr "Il habeva un problema durante le recuperation de tu contrasignos del application" +msgstr "Il ha habite un problema durante le recuperation de tu contrasignos del application" #: src/view/com/feeds/ProfileFeedgens.tsx:151 #: src/view/com/lists/ProfileLists.tsx:150 msgid "There was an issue fetching your lists. Tap here to try again." -msgstr "Il habeva un problema durante le recuperation tu listas. Tocca hic pro tentar de novo." +msgstr "Il ha habite un problema durante le recuperation de tu listas. Tocca hic pro tentar de novo." #: src/screens/Settings/components/ChangeHandleDialog.tsx:107 msgid "There was an issue fetching your service info" -msgstr "Il habeva un problema durante le recuperation de tu information de servicio" +msgstr "Il ha habite un problema durante le recuperation de tu information de servicio" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." -msgstr "Il habeva un problema durante le remotion de iste canal. Verifica tu connexion al internet e tenta de novo." +msgstr "Il ha habite un problema durante le remotion de iste canal. Verifica tu connexion al internet e tenta de novo." #: src/components/dms/ReportDialog.tsx:259 #: src/components/ReportDialog/SubmitView.tsx:88 msgid "There was an issue sending your report. Please check your internet connection." -msgstr "" +msgstr "Il ha habite un problema durante le invio de tu signalamento. Verifica tu connexion al internet." #: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:71 msgid "There was an issue updating your feeds, please check your internet connection and try again." -msgstr "Il habeva un problema durante le actualisation de tu canales, verifica tu connexion al internet e tenta de novo." +msgstr "Il ha habite un problema durante le actualisation de tu canales, verifica tu connexion al internet e tenta de novo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8067,9 +8669,9 @@ msgstr "Il habeva un problema durante le actualisation de tu canales, verifica t #: src/view/com/profile/ProfileMenu.tsx:175 #: src/view/com/profile/ProfileMenu.tsx:187 msgid "There was an issue! {0}" -msgstr "Occurreva un problema! {0}" +msgstr "Il ha habite un problema! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8078,32 +8680,32 @@ msgstr "Occurreva un problema! {0}" #: src/view/screens/ProfileList.tsx:447 #: src/view/screens/ProfileList.tsx:465 msgid "There was an issue. Please check your internet connection and try again." -msgstr "Il habeva un problema. Verifica tu connexion al internet e tenta de novo." +msgstr "Il ha habite un problema. Verifica tu connexion al internet e tenta de novo." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" -msgstr "Il habeva un problema impreviste in le application. Informa nos si isto eveniva a te!" +msgstr "Il ha habite un problema impreviste in le application. Informa nos si isto ha occurrite a te!" #: src/screens/SignupQueued.tsx:130 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Il ha habite un grande quantitate de usatores nove a Bluesky! Nos activara tu conto le plus tosto possibile." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." -msgstr "" +msgstr "Iste parametros se applica solmente al canal Sequente." #: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" -msgstr "" +msgstr "Iste {screenDescription} ha essite signalate:" #: src/components/verification/VerificationsDialog.tsx:87 msgid "This account has a checkmark because it's been verified by trusted sources." -msgstr "" +msgstr "Iste conto ha un marca de verification proque illo ha essite verificate per fontes de confidentia." #: src/components/verification/VerificationsDialog.tsx:92 msgid "This account has one or more attempted verifications, but it is not currently verified." -msgstr "" +msgstr "Iste conto ha un o plus tentativas de verification, mais actualmente illo non es verificate." #: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." @@ -8111,11 +8713,11 @@ msgstr "Iste conto require que usatores aperi session pro vider su profilo." #: src/components/dms/BlockedByListDialog.tsx:34 msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." -msgstr "" +msgstr "Iste conto es blocate per un o plus de tu listas de moderation. Pro disblocar, visita le listas directemente e remove iste usator." #: src/components/verification/VerificationCreatePrompt.tsx:55 msgid "This action can be undone at any time." -msgstr "" +msgstr "Iste action pote esser disfacite a qualcunque momento." #: src/components/moderation/LabelsOnMeDialog.tsx:271 msgid "This appeal will be sent to <0>{sourceName}." @@ -8127,11 +8729,11 @@ msgstr "Iste appello essera inviate al servicio de moderation de Bluesky." #: src/screens/Messages/components/MessageListError.tsx:18 msgid "This chat was disconnected" -msgstr "Iste chat esseva disconnectite" +msgstr "Iste chat ha essite disconnectite" #: src/lib/moderation/useGlobalLabelStrings.ts:19 msgid "This content has been hidden by the moderators." -msgstr "Le contento ha essite celate per le moderatores." +msgstr "Le contento ha essite occultate per le moderatores." #: src/lib/moderation/useGlobalLabelStrings.ts:24 msgid "This content has received a general warning from moderators." @@ -8139,54 +8741,58 @@ msgstr "Iste contento ha recipite un advertimento general del moderatores." #: src/components/dialogs/EmbedConsent.tsx:63 msgid "This content is hosted by {0}. Do you want to enable external media?" -msgstr "" +msgstr "Iste contento es hospitate per {0}. Tu vole activar contento multimedial externe?" #: src/components/moderation/ModerationDetailsDialog.tsx:84 #: src/lib/moderation/useModerationCauseDescription.ts:84 msgid "This content is not available because one of the users involved has blocked the other." -msgstr "" +msgstr "Iste contento non es disponibile proque un del usatores involvite ha blocate le altere." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Le contento non se pote visualisar sin un conto de Bluesky." #: src/screens/Messages/components/ChatListItem.tsx:362 msgid "This conversation is with a deleted or a deactivated account. Press for options" -msgstr "Iste conversation es con un conto eliminate o disactivate. Preme pro optiones" +msgstr "Iste conversation es con un conto delite o disactivate. Preme pro optiones" #: src/components/dialogs/EmailDialog/screens/Update.tsx:156 msgid "This email is already associated with your account." -msgstr "" +msgstr "Iste e-mail ja es associate a tu conto." + +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "Iste function permitte que usatores recipe notificationes de tu nove publicationes e responsas. Pro qui tu vole activar lo?" #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." -msgstr "" +msgstr "Iste function es in phase beta. Tu pote leger plus super exportationes de repositorios in <0>iste publication de blog." #: src/lib/hooks/useCleanError.ts:49 msgid "This feature is not available while using an app password. Please sign in with your main password." -msgstr "" +msgstr "Iste function non es disponibile quando tu usa un contrasigno de application. Aperi session con tu contrasigno principal." #: src/lib/strings/errors.ts:21 msgid "This feature is not available while using an App Password. Please sign in with your main password." -msgstr "Iste function non es disponibile quando se usa un contrasigno de application. Per favor aperi session con tu contrasigno principal." +msgstr "Iste function non es disponibile quando tu usa un contrasigno de application. Per favor aperi session con tu contrasigno principal." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." -msgstr "" +msgstr "Iste canal recipe multe traffico e es temporarimente indisponibile. Tenta de novo plus tarde." #: src/view/com/posts/CustomFeedEmptyState.tsx:38 msgid "This feed is empty! You may need to follow more users or tune your language settings." -msgstr "" +msgstr "Iste canal es vacue! Es possibile que tu debe sequer plus usatores o adjustar tu parametros de lingua." #: src/components/StarterPack/Main/PostsList.tsx:36 #: src/screens/Profile/ProfileFeed/index.tsx:192 #: src/view/screens/ProfileList.tsx:843 msgid "This feed is empty." -msgstr "Iste fluxo es vacue." +msgstr "Iste canal es vacue." #: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." -msgstr "" +msgstr "Iste canal non es plus in linea. Nos monstra <0>Discover in vice." #: src/screens/Settings/components/ChangeHandleDialog.tsx:593 msgid "This handle is reserved. Please try a different one." @@ -8194,12 +8800,12 @@ msgstr "Iste pseudonymo es reservate. Tenta un altere." #: src/components/dialogs/BirthDateSettings.tsx:41 msgid "This information is not shared with other users." -msgstr "" +msgstr "Iste information non es compartite con altere usatores." #: src/components/live/EditLiveDialog.tsx:189 #: src/components/live/GoLiveDialog.tsx:160 msgid "This is not a valid link" -msgstr "" +msgstr "Iste non es un ligamine valide" #: src/components/moderation/ModerationDetailsDialog.tsx:168 msgid "This label was applied by the author." @@ -8209,21 +8815,21 @@ msgstr "Iste etiquetta ha essite applicate per le autor." msgid "This label was applied by you." msgstr "Iste etiquetta ha essite applicate per te." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." -msgstr "" +msgstr "Iste etiquettator non ha declarate qual etiquettas illo publica, e pote non esser active." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Iste ligamine te porta al sequente sito web:" #: src/screens/List/ListHiddenScreen.tsx:151 msgid "This list – created by <0>{0} – contains possible violations of Bluesky's community guidelines in its name or description." -msgstr "" +msgstr "Iste lista – create per <0>{0} – contine possibile violationes al directivas del communitate de Bluesky in su nomine o description." #: src/screens/List/ListHiddenScreen.tsx:146 msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description." -msgstr "" +msgstr "Iste lista – create per te – contine possibile violationes al directivas del communitate de Bluesky in su nomine o description." #: src/view/screens/ProfileList.tsx:962 msgid "This list is empty." @@ -8233,51 +8839,54 @@ msgstr "Iste lista es vacue." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Iste servicio de moderation es indisponibile. Vide hic infra pro plus detalios. Si iste problema persiste, contacta nos." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." -msgstr "" +msgstr "Iste publication affirma haber essite create in <0>{0}, mais illo ha essite vidite per Bluesky pro le prime vice in <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." -msgstr "" +msgstr "Iste publication ha un typo incognite de restriction de interaction. Es possibile que tu application non es actualisate." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." -msgstr "Iste message ha essite delite." +msgstr "Iste publication ha essite delite." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "Iste publication es visibile solmente a usatores con session aperte." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." -msgstr "" +msgstr "Iste publication essera occultate de canales e filos. Iste action es irreversibile." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "Le autor del publication ha disactivate le citationes." #: src/view/com/profile/ProfileMenu.tsx:482 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "" +msgstr "Iste profilo solmente es visibile a usatores con session aperte. Illo non essera visibile a personas qui non ha aperite session." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." -msgstr "" +msgstr "Iste responsa essera placiate in un section occulte in basso de tu filo e silentiara notificationes pro responsas subsequente – pro te mesme e pro alteres." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Iste servicio non ha fornite conditiones de servicio o un politica de privatessa." #: src/screens/Settings/components/ChangeHandleDialog.tsx:456 msgid "This should create a domain record at:" +msgstr "Isto deberea crear un registro de dominio a:" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." msgstr "" #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." -msgstr "" +msgstr "Iste usator non ha un nomine a monstrar, e consequentemente non pote esser verificate." #: src/view/com/profile/ProfileFollowers.tsx:95 msgid "This user doesn't have any followers." @@ -8306,7 +8915,7 @@ msgstr "Iste usator es includite in le lista <0>{0} que tu ha silentiate." #: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." -msgstr "Iste usator es nove hic. Preme pro plus informationes sur quando illes se jungeva." +msgstr "Iste usator es nove hic. Preme pro plus informationes super quando ille se ha inscribite." #: src/view/com/profile/ProfileFollows.tsx:95 msgid "This user isn't following anyone." @@ -8314,110 +8923,129 @@ msgstr "Iste usator non seque alcuno." #: src/components/dialogs/MutedWords.tsx:435 msgid "This will delete \"{0}\" from your muted words. You can always add it back later." -msgstr "" +msgstr "Isto delera \"{0}\" de tu parolas silentiate. Tu pote adder lo de novo a qualcunque momento." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Isto removera @{0} del lista de accesso rapide." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." -msgstr "" +msgstr "Isto removera tu publication de iste citation pro tote le usatores, e lo substituera per un marcator de position." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" -msgstr "" +msgstr "Optiones de filo" #: src/screens/Settings/ContentAndMediaSettings.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:71 msgid "Thread preferences" -msgstr "" +msgstr "Preferentias de filos" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" -msgstr "" +msgstr "Preferentias de filos" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" -msgstr "" +msgstr "Como filos" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" -msgstr "" +msgstr "Modo de filos" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" -msgstr "" +msgstr "Preferentias de filos" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "Tempore restante: {0, plural, one {# secunda} other {# secundas}}" #: src/screens/Settings/components/DisableEmail2FADialog.tsx:99 msgid "To disable the email 2FA method, please verify your access to the email address." -msgstr "" +msgstr "Pro disactivar le methodo de 2FA per e-mail, verifica tu accesso al adresse de e-mail." #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215 msgid "To disable your email 2FA method, please verify your access to <0>{0}" -msgstr "" +msgstr "Pro disactivar tu methodo de 2FA per e-mail, verifica tu accesso a <0>{0}" #: src/components/dms/ReportConversationPrompt.tsx:19 msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." -msgstr "" +msgstr "Pro signalar un conversation, signala un de su messages per medio del schermo de conversation. Isto permitte que nostre moderatores comprende le contexto del problema." #: src/components/ReportDialog/SelectLabelerView.tsx:31 msgid "To whom would you like to send this report?" -msgstr "" +msgstr "A qui tu vole inviar iste signalamento?" #: src/components/dms/DateDivider.tsx:44 msgid "Today" msgstr "Hodie" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" -msgstr "" +msgstr "Commutar menu disrolante" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" -msgstr "" +msgstr "Commuta pro activar o disactivar contento pro adultos" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Commuta le sono" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" -msgstr "" +msgstr "Populares" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "Responsas popular primo" + +#: src/Navigation.tsx:543 msgid "Topic" -msgstr "" +msgstr "Topico" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Traducer" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "Vista in arbore" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Tendentias" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Videos in tendentia" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." -msgstr "" +msgstr "Le confidentia emerge del relationes, del communitates e de un contexto compartite, consequentemente nos tamben habilita <0>verificatores de confidentia: organisationes qui pote emitter verificationes directemente." #: src/view/com/util/error/ErrorScreen.tsx:103 msgctxt "action" @@ -8428,13 +9056,9 @@ msgstr "Retenta" msgid "TV" msgstr "Television" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" -msgstr "" - -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Scribe tu nomine de usator desirate" +msgstr "Authentication a duo factores (2FA)" #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" @@ -8447,34 +9071,50 @@ msgstr "Typo:" #: src/lib/hooks/useCleanError.ts:27 #: src/lib/strings/errors.ts:11 msgid "Unable to connect. Please check your internet connection and try again." -msgstr "" +msgstr "Non ha essite possibile connecter. Verifica tu connexion al internet e tenta de novo." #: src/screens/Login/ForgotPasswordForm.tsx:68 #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." -msgstr "Impossibile contactar tu servicio. Per favor verifica tu connexion a internet." +msgstr "Non ha essite possibile contactar tu servicio. Per favor verifica tu connexion al Internet." #: src/screens/StarterPack/StarterPackScreen.tsx:673 msgid "Unable to delete" -msgstr "Impossibile deler" +msgstr "Non ha essite possibile deler" + +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "Information super le canal indisponibile" #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Disblocar" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Disblocar" @@ -8486,62 +9126,62 @@ msgstr "Disblocar" msgid "Unblock account" msgstr "Disblocar conto" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Disblocar le conto?" #: src/view/screens/ProfileList.tsx:620 msgid "Unblock list" -msgstr "" +msgstr "Disblocar lista" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" -msgstr "" +msgstr "Disfacer republication" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" -msgstr "" +msgstr "Disfacer republication ({0, plural, one {# republication} other {# republicationes}})" #: src/view/com/profile/FollowButton.tsx:63 msgctxt "action" msgid "Unfollow" -msgstr "" +msgstr "Cessar de sequer" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" -msgstr "" +msgstr "Cessar de sequer {0}" #: src/view/com/profile/ProfileMenu.tsx:283 #: src/view/com/profile/ProfileMenu.tsx:293 msgid "Unfollow account" -msgstr "" +msgstr "Cessar de sequer conto" #: src/screens/VideoFeed/index.tsx:831 msgid "Unfollows the user" -msgstr "" +msgstr "Cessa de sequer le usator" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." -msgstr "" +msgstr "Infortunatemente, necun del etiquettatores al quales tu subscribe supporta iste typo de signalamento." #: src/components/verification/VerificationsDialog.tsx:206 msgid "Unknown verifier" -msgstr "" +msgstr "Verificator incognite" #: src/screens/Profile/components/ProfileFeedHeader.tsx:518 msgid "Unlike" msgstr "Disappreciar" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Disappreciar ({0, plural, one {# appreciation} other {# appreciationes}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Dissilentiar" @@ -8553,29 +9193,29 @@ msgstr "Dissilentiar" #: src/components/RichTextTag.tsx:140 #: src/components/RichTextTag.tsx:153 msgid "Unmute {tag}" -msgstr "" +msgstr "Dissilentiar {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" -msgstr "" +msgstr "Dissilentiar conto" #: src/components/dms/ConvoMenu.tsx:236 msgid "Unmute conversation" -msgstr "" +msgstr "Dissilentiar conversation" #: src/view/screens/ProfileList.tsx:605 msgid "Unmute list" -msgstr "" +msgstr "Dissilentiar lista" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" -msgstr "" +msgstr "Dissilentiar filo" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Dissilentiar video" @@ -8590,15 +9230,15 @@ msgstr "Disfixar canal" #: src/components/FeedCard.tsx:320 msgid "Unpin Feed" -msgstr "" +msgstr "Disfixar canal" #: src/screens/Profile/components/ProfileFeedHeader.tsx:310 #: src/screens/Profile/components/ProfileFeedHeader.tsx:312 msgid "Unpin from home" msgstr "Disfixar del initio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Disfixar del profilo" @@ -8614,10 +9254,10 @@ msgstr "Disfixate {0} del Initio" msgid "Unpinned from your feeds" msgstr "Disfixate de tu canales" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" -msgstr "" +msgstr "Disface le prorogation del recordatorio" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233 msgid "Unsubscribe" @@ -8636,7 +9276,7 @@ msgstr "Cancellar le subscription de iste etiquettator" msgid "Unsubscribed from list" msgstr "Cancellate le subscription del lista" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Typo de video non supportate" @@ -8662,10 +9302,10 @@ msgstr "Actualisar <0>{displayName} in Listas" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" -msgstr "" +msgstr "Actualisar e-mail" #: src/screens/Settings/components/ChangeHandleDialog.tsx:526 #: src/screens/Settings/components/ChangeHandleDialog.tsx:547 @@ -8674,19 +9314,19 @@ msgstr "Actualisar a {domain}" #: src/components/dialogs/EmailDialog/screens/Update.tsx:203 msgid "Update your email" -msgstr "" +msgstr "Actualisa tu e-mail" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" -msgstr "" +msgstr "Non ha essite possibile actualisar le annexo del citation" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" -msgstr "" +msgstr "Non ha essite possibile actualisar le visibilitate del responsa" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Actualisante..." @@ -8698,20 +9338,20 @@ msgstr "Incargar un photo in su loco" msgid "Upload a text file to:" msgstr "Incargar un file de texto a:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Cargar desde le camera" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Cargar desde files" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Cargar desde bibliotheca" msgid "Uploading images..." msgstr "Incargante imagines..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Incargante miniatura de ligamine..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Incargante video..." @@ -8741,12 +9381,12 @@ msgstr "Usar fornitor predefinite" #: src/components/dialogs/InAppBrowserConsent.tsx:77 #: src/components/dialogs/InAppBrowserConsent.tsx:83 msgid "Use in-app browser" -msgstr "" +msgstr "Usar le navigator web interne al application" #: src/screens/Settings/ContentAndMediaSettings.tsx:102 #: src/screens/Settings/ContentAndMediaSettings.tsx:108 msgid "Use in-app browser to open links" -msgstr "" +msgstr "Usar le navigator web interne al application pro aperir ligamines" #: src/components/dialogs/InAppBrowserConsent.tsx:87 #: src/components/dialogs/InAppBrowserConsent.tsx:93 @@ -8759,6 +9399,10 @@ msgstr "Usar recommendate" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:190 msgid "Use this to sign in to the other app along with your handle." +msgstr "Usa isto pro aperir session in le altere application insimul con tu pseudonymo." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" #: src/view/com/modals/InviteCodes.tsx:201 @@ -8789,19 +9433,19 @@ msgstr "Usator blocate per lista" #: src/lib/moderation/useModerationCauseDescription.ts:73 msgid "User Blocking You" -msgstr "" +msgstr "Usator qui te bloca" #: src/components/moderation/ModerationDetailsDialog.tsx:77 msgid "User Blocks You" -msgstr "" +msgstr "Le usator te bloca" #: src/view/com/modals/UserAddRemoveLists.tsx:214 msgid "User list by {0}" -msgstr "" +msgstr "Lista de usatores de {0}" #: src/view/com/modals/UserAddRemoveLists.tsx:212 msgid "User list by you" -msgstr "" +msgstr "Lista de usatores tue" #: src/view/com/modals/CreateOrEditList.tsx:174 msgctxt "toast" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Lista de usator actualisate" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" -msgstr "Nomine de usator o adresse de e-posta" +msgstr "Nomine de usator o adresse de e-mail" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "usatores sequite per <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "usatores sequente <0>@{0}" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Usatores que io seque" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Usatores in \"{0}\"" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Usatores que tu seque" @@ -8844,34 +9500,41 @@ msgstr "Valor:" #: src/components/verification/VerificationCreatePrompt.tsx:39 msgid "Verification failed, please try again." -msgstr "" +msgstr "Non ha essite possibile verificar, tenta de novo." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" -msgstr "" +msgstr "Parametros de verification" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" -msgstr "" +msgstr "Parametros de verification" #: src/screens/Moderation/VerificationSettings.tsx:41 msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here." -msgstr "" +msgstr "Verificationes super Bluesky functiona differentemente que in altere platteformas. <0>Sape plus hic." #: src/components/verification/VerificationsDialog.tsx:103 msgid "Verified by:" -msgstr "" +msgstr "Verificate per:" #: src/components/verification/VerificationCreatePrompt.tsx:84 #: src/components/verification/VerificationCreatePrompt.tsx:86 #: src/view/com/profile/ProfileMenu.tsx:346 #: src/view/com/profile/ProfileMenu.tsx:349 msgid "Verify account" +msgstr "Verificar conto" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "" @@ -8880,20 +9543,19 @@ msgstr "" msgid "Verify DNS Record" msgstr "Verificar registro DNS" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" -msgstr "" +msgstr "Verificar codice de e-mail" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" -msgstr "Dialogo de verification de e-posta" +msgstr "Quadro de dialogo de verification de e-posta" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 @@ -8902,35 +9564,43 @@ msgstr "Verificar file de texto" #: src/components/verification/VerificationCreatePrompt.tsx:51 msgid "Verify this account?" +msgstr "Verificar iste conto?" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" msgstr "" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" -msgstr "Verificar tu e-posta" +msgstr "Verificar tu e-mail" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Verificar tu e-posta" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Version {appVersion}" +msgid "Version {0}" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Video" #: src/view/com/composer/state/video.ts:358 msgid "Video failed to process" -msgstr "Falleva le processamento del video" +msgstr "Non ha essite possibile processar le video" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" -msgstr "Fluxo de video" +msgstr "Canal de video" #: src/components/VideoPostCard.tsx:122 msgid "Video from {0}: {text}" @@ -8942,15 +9612,15 @@ msgstr "Video de {0}: {text}" msgid "Video Games" msgstr "Videojocos" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Video in pausa" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Video in reproduction" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Video non trovate." @@ -8958,11 +9628,11 @@ msgstr "Video non trovate." msgid "Video settings" msgstr "Configurationes de video" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Video cargate" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Video: {0}" @@ -8973,17 +9643,17 @@ msgstr "Videos" #: src/view/com/composer/videos/SelectVideoBtn.tsx:42 #: src/view/com/composer/videos/SelectVideoBtn.tsx:55 msgid "Videos must be less than 3 minutes long" -msgstr "" +msgstr "Le videos debe durar minus de 3 minutas" #: src/screens/Profile/Header/Shell.tsx:211 msgid "View {0}'s avatar" msgstr "Vider le avatar de {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Visualisar profilo de {0}" @@ -8991,7 +9661,7 @@ msgstr "Visualisar profilo de {0}" msgid "View {displayName}'s profile" msgstr "Visualisar profilo de {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Visualisar profilo de usator blocate" @@ -9009,99 +9679,102 @@ msgstr "Vider entrata de depuration" msgid "View details" msgstr "Visualisar detalios" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" -msgstr "Visualisar detalios pro signalar un violation de copyright" +msgstr "Vider detalios pro signalar un violation de derectos de autor" #: src/view/com/posts/ViewFullThread.tsx:59 msgid "View full thread" -msgstr "Visualisar topico complete" +msgstr "Vider filo complete" #: src/components/moderation/LabelsOnMe.tsx:46 msgid "View information about these labels" -msgstr "Visualisar information sur iste etiquettas" +msgstr "Vider information super iste etiquettas" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Vider plus" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Visualisar profilo" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" -msgstr "Visualisar le avatar" +msgstr "Vider le avatar" #: src/components/LabelingServiceCard/index.tsx:164 msgid "View the labeling service provided by @{0}" -msgstr "" +msgstr "Vider le servicio de etiquettage fornite per @{0}" #: src/components/verification/VerificationCheckButton.tsx:99 msgid "View this user's verifications" -msgstr "" +msgstr "Vider le notificationes de usator" #: src/screens/Profile/components/ProfileFeedHeader.tsx:489 msgid "View users who like this feed" msgstr "Vider usatores qui apprecia iste canal" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Vider video" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Visualisar tu contos blocate" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" -msgstr "" +msgstr "Vider tu parametros predefinite de interaction de publication" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" -msgstr "Vider tu fluxos e explorar plus" +msgstr "Vider tu canales e explorar plus" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Vider tu listas de moderation" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Vider tu contos silentiate" #: src/components/verification/VerificationCheckButton.tsx:98 msgid "View your verifications" -msgstr "" +msgstr "Vider tu verificationes" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" -msgstr "" +msgstr "Vide le imagine complete" #: src/components/VideoPostCard.tsx:121 msgid "Views video in immersive mode" msgstr "Vide le video in modo immersive" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" msgstr "Visitar sito" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "Visitar tu parametros de notification" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Volumine" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9113,77 +9786,109 @@ msgstr "Advertir contento" #: src/lib/moderation/useLabelBehaviorDescription.ts:46 msgid "Warn content and filter from feeds" -msgstr "Advertir contento e filtrar desde fluxos" +msgstr "Advertir contento e filtrar desde canales" #: src/components/live/LiveStatusDialog.tsx:156 #: src/components/live/LiveStatusDialog.tsx:169 msgid "Watch now" -msgstr "" +msgstr "Spectar ora" + +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "Non ha essite possibile connecter nos al servicio que forni iste canal personalisate. Illo pote esser temporarimente indisponibile a causa de problemas, o permanentemente indisponibile." + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "Non ha essite possibile trovar iste lista. Probabilemente illo ha essite delite." #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." -msgstr "Nos non poteva trovar necun resultatos pro iste hashtag." +msgstr "Non ha essite possibile trovar alcun resultatos pro iste hashtag." #: src/screens/Topic.tsx:178 msgid "We couldn't find any results for that topic." -msgstr "" +msgstr "Non ha essite possibile trovar alcun resultato pro ille topico." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" -msgstr "Nos non poteva cargar iste conversation" +msgstr "Non ha essite possibile cargar iste conversation" #: src/screens/SignupQueued.tsx:160 msgid "We estimate {estimatedTime} until your account is ready." msgstr "Nos estima {estimatedTime} ante que tu conto es preste." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Nos ha inviate altere e-mail de verification a <0>{0}." #: src/screens/Onboarding/StepFinished.tsx:256 msgid "We hope you have a wonderful time. Remember, Bluesky is:" -msgstr "" +msgstr "Nos spera que tu te diverte multo. Rememora te, Bluesky es:" #: src/view/com/posts/DiscoverFallbackHeader.tsx:29 msgid "We ran out of posts from your follows. Here's the latest from <0/>." -msgstr "" +msgstr "Le publicationes de tu sequitos ha finite. Ecce le plus recentes de <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." -msgstr "" +msgstr "Nos recommenda seliger al minus duo interesses." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." -msgstr "" +msgstr "Nos ha inviate un e-mail a <0>{0} continente un ligamine. Clicca super illo pro completar le processo de verification de e-mail." -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." -msgstr "" +msgstr "Nos non ha potite determinar si tu ha permission pro cargar videos. Tenta de novo." #: src/components/dialogs/BirthDateSettings.tsx:52 msgid "We were unable to load your birth date preferences. Please try again." -msgstr "" +msgstr "Non ha essite possibile cargar tu preferentias de data de nascentia. Tenta de novo." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." +msgstr "Nos non ha potite cargar tu etiquettatores configurate in iste momento." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." -msgstr "" +msgstr "Non ha essite possibile connecter nos. Tenta de novo pro continuar a configurar tu conto. Si le problema persiste, tu pote saltar iste fluxo." #: src/screens/SignupQueued.tsx:164 msgid "We will let you know when your account is ready." msgstr "Nos te informara quando tu conto es preste." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." -msgstr "" +msgstr "Nos inviara un e-mail a <0>{0} continente un ligamine. Clicca super illo pro completar le processo de verification de e-mail." #: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "Nos usara isto pro personalisar tu experientia." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9191,35 +9896,55 @@ msgstr "Nos ha problemas de rete, tenta de novo" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." -msgstr "" +msgstr "Nos presenta un nove strato de verification in Bluesky — un marca de verification facilemente perceptibile." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" -msgstr "Nos es multo felice de accolliger te!" +msgstr "Nos es multo felice que tu te uni a nos!" #: src/view/screens/ProfileList.tsx:117 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." -msgstr "" +msgstr "Pardono, mais non ha essite possibile resolver iste lista. Si iste problema persiste, contacta le creator del lista, @{handleOrDid}." #: src/components/dialogs/MutedWords.tsx:378 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." -msgstr "" +msgstr "Pardono, mais non ha essite possibile cargar tu parolas silentiate in iste momento. Tenta de novo." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." -msgstr "" +msgstr "Pardono, mais non ha essite possibile completar tu cerca. Tenta de novo in alcun minutas." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." -msgstr "Nos regretta! Le publication que tu responde ha essite delite." +msgstr "Pardono! Le publication que tu responde ha essite delite." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." -msgstr "" +msgstr "Pardono! Non ha essite possibile trovar le pagina que tu ha cercate." #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." +msgstr "Pardono! Tu solo pote subscriber te a vinti etiquettatores, e tu ha attingite le limite de vinti." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." msgstr "" #: src/screens/Deactivated.tsx:125 @@ -9232,21 +9957,21 @@ msgstr "Benvenite, amico!" #: src/screens/Onboarding/StepInterests/index.tsx:126 msgid "What are your interests?" -msgstr "" +msgstr "Qual es tu interesses?" #: src/screens/StarterPack/Wizard/StepDetails.tsx:41 msgid "What do you want to call your starter pack?" -msgstr "" +msgstr "Como tu vole nominar tu pacchetto de initio?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" -msgstr "Como va?" +msgstr "Qual es le novas?" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146 msgid "When you tap on a check, you’ll see which organizations have granted verification." -msgstr "" +msgstr "Quando tu tocca super un marca de verification, tu videra qual organisationes ha concedite le verification." #: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80 msgid "Which languages are used in this post?" @@ -9256,78 +9981,78 @@ msgstr "Qual linguas es usate in iste publication?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Qual linguas tu vole vider in tu canales algorithmic?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Qui pote interager con iste publication?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Qui pote responder" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127 msgid "Who can verify?" -msgstr "" +msgstr "Qui pote verificar?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Ops!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." -msgstr "" +msgstr "Ops! Non ha essite possibile cargar le videos in tendentia." #: src/screens/Takendown.tsx:173 msgid "Why are you appealing?" -msgstr "" +msgstr "Proque tu appella?" #: src/components/ReportDialog/SelectReportOptionView.tsx:42 msgid "Why should this content be reviewed?" -msgstr "" +msgstr "Proque iste contento deberea esser revidite?" #: src/components/moderation/ReportDialog/copy.ts:32 #: src/components/ReportDialog/SelectReportOptionView.tsx:55 msgid "Why should this feed be reviewed?" -msgstr "" +msgstr "Proque iste canal deberea esser revidite?" #: src/components/moderation/ReportDialog/copy.ts:26 #: src/components/ReportDialog/SelectReportOptionView.tsx:52 msgid "Why should this list be reviewed?" -msgstr "" +msgstr "Proque iste lista deberea esser revidite?" #: src/components/moderation/ReportDialog/copy.ts:44 #: src/components/ReportDialog/SelectReportOptionView.tsx:61 msgid "Why should this message be reviewed?" -msgstr "" +msgstr "Proque iste message deberea esser revidite?" #: src/components/moderation/ReportDialog/copy.ts:20 #: src/components/ReportDialog/SelectReportOptionView.tsx:49 msgid "Why should this post be reviewed?" -msgstr "" +msgstr "Proque iste publication deberea esser revidite?" #: src/components/moderation/ReportDialog/copy.ts:38 #: src/components/ReportDialog/SelectReportOptionView.tsx:58 msgid "Why should this starter pack be reviewed?" -msgstr "" +msgstr "Proque iste pacchetto de initio deberea esser revidite?" #: src/components/moderation/ReportDialog/copy.ts:14 #: src/components/ReportDialog/SelectReportOptionView.tsx:46 msgid "Why should this user be reviewed?" -msgstr "" +msgstr "Proque iste usator deberea esser revidite?" #: src/screens/Messages/components/MessageInput.tsx:154 #: src/screens/Messages/components/MessageInput.web.tsx:214 msgid "Write a message" msgstr "Scribe un message" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Scriber message" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Scribe tu responsa" @@ -9338,12 +10063,12 @@ msgstr "Scriptores" #: src/screens/Settings/components/ChangeHandleDialog.tsx:356 msgid "Wrong DID returned from server. Received: {0}" -msgstr "Le servitor retornava un DID incorrecte. Recipite: {0}" +msgstr "Le servitor ha retornate un DID incorrecte. Recipite: {0}" #: src/components/live/EditLiveDialog.tsx:153 #: src/components/live/GoLiveDialog.tsx:129 msgid "www.mylivestream.tv" -msgstr "" +msgstr "www.mylivestream.tv" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:87 msgid "Yes" @@ -9358,13 +10083,13 @@ msgstr "Si, disactivar" msgid "Yes, delete this starter pack" msgstr "Si, deler iste pacchetto de initio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" -msgstr "" +msgstr "Si, disannexar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" -msgstr "Si, celar" +msgstr "Si, occultar" #: src/screens/Deactivated.tsx:147 msgid "Yes, reactivate my account" @@ -9378,12 +10103,20 @@ msgstr "Heri" msgid "You" msgstr "Tu" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" -msgstr "" +msgstr "Tu es un verificator de confidentia" #: src/components/forms/HostingProvider.tsx:45 msgid "You are creating an account on" +msgstr "Tu crea un conto super" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." msgstr "" #: src/screens/SignupQueued.tsx:157 @@ -9393,17 +10126,17 @@ msgstr "Tu es in fila." #: src/components/live/EditLiveDialog.tsx:119 #: src/components/live/EditLiveDialog.tsx:124 msgid "You are Live" -msgstr "" +msgstr "Tu es in directo" #: src/components/live/queries.ts:211 msgid "You are no longer live" -msgstr "" +msgstr "Tu non es plus in directo" #: src/components/live/queries.ts:35 msgid "You are not allowed to go live" -msgstr "" +msgstr "Tu non ha permission de entrar in directo" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Tu non es permitte incargar videos." @@ -9413,24 +10146,23 @@ msgstr "Tu non seque alcuno." #: src/components/live/queries.ts:156 msgid "You are now live!" -msgstr "" +msgstr "Tu es ora in directo!" #: src/components/verification/VerificationsDialog.tsx:64 msgid "You are verified" -msgstr "" +msgstr "Tu es verificate" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." -msgstr "" +msgstr "Tu conto es verificate. Tu perdera tu stato de verification si tu cambia tu nomine a monstrar. <0>Sape plus." #: src/screens/Settings/components/ChangeHandleDialog.tsx:208 msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." -msgstr "" +msgstr "Tu conto es verificate. Tu perdera tu stato de verification si tu cambia tu pseundonymo. <0>Sape plus." #: src/screens/Search/modules/ExploreInterestsCard.tsx:45 msgid "You can adjust your interests at any time from \"Content and media\" settings." -msgstr "" +msgstr "Tu pote adjustar tu interesses a qualcunque momento in le parametros de \"Contento e multimedia\"." #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 @@ -9439,11 +10171,19 @@ msgstr "Tu anque pote discoperir nove Canales personalisate pro sequer." #: src/view/com/modals/DeleteAccount.tsx:198 msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." -msgstr "" +msgstr "In vice, tu pote disactivar tu conto temporarimente, e reactivar lo a qualcunque momento." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "Tu pote eliger si le notificationes de chat ha sono in le parametros de chat in le application" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." -msgstr "" +msgstr "Tu pote continuar le conversationes in curso, independentemente de qual parametro tu elige." + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "Ora tu pote eliger esser notificate quando personas specific publica. Si il ha alcuno de qui tu vole reciper actualisationes promptemente, vade a su profilo e trova le nove icone de campana proxime al button de sequer." #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 @@ -9452,14 +10192,14 @@ msgstr "Tu pote ora aperir session con tu nove contrasigno." #: src/screens/Deactivated.tsx:133 msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." -msgstr "" +msgstr "Tu pote reactivar tu conto pro continuar a aperir session. Tu profilo e publicationes essera visibile a altere usatores." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." -msgstr "" +msgstr "Tu pote definir tu parametros de interaction predefinite in <0>Parametros → Moderation → Parametros de interaction." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Tu pote actualisar iste plus tarde desde tu configurationes." @@ -9472,23 +10212,23 @@ msgstr "Tu ha necun sequitor." msgid "You don't follow any users who follow @{name}." msgstr "Tu seque necun usator qui seque @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." -msgstr "" +msgstr "Tu non ha requestas de chat in le momento." #: src/view/com/modals/InviteCodes.tsx:67 msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." -msgstr "" +msgstr "Tu ancora non ha codices de invitation! Nos te inviara alcunes post que tu usa Bluesky durante un pauco plus de tempore." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." -msgstr "Tu ha necun fluxo fixate." +msgstr "Tu ha necun canal fixate." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." -msgstr "Tu ha necun fluxo salvate." +msgstr "Tu ha necun canal salvate." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Tu ha blocate le autor o tu ha essite blocate per le autor." @@ -9502,20 +10242,24 @@ msgstr "Tu ha blocate iste usator" msgid "You have blocked this user. You cannot view their content." msgstr "Tu ha blocate iste usator. Tu non pote visualisar lor contento." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "Tu ha disactivate completemente le notificationes de responsa, citation e mention, consequentemente iste scheda non essera plus actualisate. Pro adjustar isto, visita tu <0>parametros de notification." + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 #: src/view/com/modals/ChangePassword.tsx:133 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." -msgstr "Tu ha entrate un codice invalide. Illo deberea parer como XXXXX-XXXXX." +msgstr "Tu ha inserite un codice invalide. Illo debe haber le formato XXXXX-XXXXX." #: src/lib/moderation/useModerationCauseDescription.ts:116 msgid "You have hidden this post" -msgstr "Tu ha celate iste message" +msgstr "Tu ha occultate iste message" #: src/components/moderation/ModerationDetailsDialog.tsx:111 msgid "You have hidden this post." -msgstr "Tu ha celate iste message." +msgstr "Tu ha occultate iste message." #: src/components/moderation/ModerationDetailsDialog.tsx:104 #: src/lib/moderation/useModerationCauseDescription.ts:99 @@ -9526,13 +10270,13 @@ msgstr "Tu ha silentiate iste conto." msgid "You have muted this user" msgstr "Tu ha silentiate iste usator" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Tu non ha ancora conversationes. Initia un!" #: src/view/com/feeds/ProfileFeedgens.tsx:139 msgid "You have no feeds." -msgstr "Tu non ha fluxos." +msgstr "Tu non ha canales." #: src/view/com/lists/MyLists.tsx:81 #: src/view/com/lists/ProfileLists.tsx:135 @@ -9541,19 +10285,19 @@ msgstr "Tu non ha listas." #: src/view/screens/ModerationBlockedAccounts.tsx:164 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." -msgstr "" +msgstr "Tu ancora non ha blocate alcun conto. Pro blocar un conto, vade a su profilo e selige \"Blocar conto\" al menu del conto." #: src/view/screens/ModerationMutedAccounts.tsx:179 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." -msgstr "" +msgstr "Tu ancora non ha silentiate alcun conto. Pro silentiar un conto, vade a su profilo e selige \"Silentiar conto\" al menu del conto." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Tu ha attingite le fin" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:187 msgid "You have successfully verified your email address. You can close this dialog." -msgstr "" +msgstr "Tu ha verificate tu adresse de e-mail con successo. Tu pote clauder iste quadro de dialogo." #: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." @@ -9565,89 +10309,110 @@ msgstr "Tu non ha create ancora un pacchetto de initio!" #: src/components/dialogs/MutedWords.tsx:398 msgid "You haven't muted any words or tags yet" -msgstr "" +msgstr "Tu ancora non ha silentiate alcun parola o etiquetta" #: src/components/moderation/ModerationDetailsDialog.tsx:118 #: src/lib/moderation/useModerationCauseDescription.ts:127 msgid "You hid this reply." +msgstr "Tu ha occultate iste responsa." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." -msgstr "" +msgstr "Tu pote appellar de etiquettas applicate per tertios si tu considera que illos ha essite applicate per error." #: src/components/moderation/LabelsOnMeDialog.tsx:84 msgid "You may appeal these labels if you feel they were placed in error." -msgstr "" +msgstr "Tu pote appellar de iste etiquettas si tu considera que illos ha essite applicate per error." #: src/screens/StarterPack/Wizard/State.tsx:76 msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}" -msgstr "" +msgstr "Tu pote adder solmente {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profilos}}" #: src/screens/StarterPack/Wizard/State.tsx:95 msgid "You may only add up to 3 feeds" -msgstr "Tu pote solmente adder usque 3 fluxos" +msgstr "Tu solmente pote adder usque a 3 canales" #: src/lib/media/picker.shared.ts:25 msgid "You may only select up to 4 images" -msgstr "Tu pote selectionar solmente 4 imagines" +msgstr "Tu pote seliger solmente usque a 4 imagines" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." -msgstr "" +msgstr "Tu debe haber 13 annos de etate o plus pro crear un conto." #: src/components/StarterPack/ProfileStarterPacks.tsx:334 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Tu debe sequer al minus septe altere personas pro generar un pacchetto de initio." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Tu debe conceder accesso a tu bibliotheca de photos pro salvar un codice QR" #: src/components/ReportDialog/SubmitView.tsx:211 msgid "You must select at least one labeler for a report" -msgstr "" +msgstr "Tu debe seliger al minus un etiquettator pro un signalamento" + +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "Tu debe aperir session pro vider iste publication." #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." -msgstr "" +msgstr "Tu debe verificar tu adresse de e-mail ante que tu pote activar 2FA per e-mail." #: src/screens/Deactivated.tsx:128 msgid "You previously deactivated @{0}." -msgstr "" +msgstr "Tu ha disactivate @{0} precedentemente." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." -msgstr "" +msgstr "Probabilemente tu vole reinitiar le application ora." #: src/components/dms/MessageItem.tsx:135 msgid "You reacted {0}" -msgstr "" +msgstr "Tu ha reagite con {0}" #: src/screens/Messages/components/ChatListItem.tsx:218 msgid "You reacted {0} to {1}" -msgstr "" +msgstr "Tu ha reagite con {0} a {1}" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Le session de tote tu contos se claudera." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 -msgid "You will no longer receive notifications for this thread" -msgstr "" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "Tu non recipera plus notificationes de {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 +msgid "You will no longer receive notifications for this thread" +msgstr "Tu non recipera plus notificationes de iste filo" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" -msgstr "" +msgstr "Ora tu recipera notificationes de iste filo" #: src/screens/Login/SetNewPasswordForm.tsx:108 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." -msgstr "" +msgstr "Tu recipera un e-mail con un \"codice de reinitialisation\". Insere ille codice hic, alora insere tu nove contrasigno." #: src/screens/Messages/components/ChatListItem.tsx:154 msgid "You: {0}" -msgstr "" +msgstr "Tu: {0}" #: src/screens/Messages/components/ChatListItem.tsx:183 msgid "You: {defaultEmbeddedContentMessage}" @@ -9655,31 +10420,31 @@ msgstr "Tu: {defaultEmbeddedContentMessage}" #: src/screens/Messages/components/ChatListItem.tsx:176 msgid "You: {short}" -msgstr "" +msgstr "Tu: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Tu sequera le usatores e canales suggerite quando tu termina le creation de tu conto!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Tu sequera le usatores suggerite quando tu termina le creation de tu conto!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:236 msgid "You'll follow these people and {0} others" -msgstr "" +msgstr "Tu sequera iste personas e {0} alteres" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 msgid "You'll follow these people right away" -msgstr "" +msgstr "Tu sequera iste personas immediatemente" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "Tu comenciara a reciper notificationes de {0}!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" -msgstr "Tu te remanera actualisate con iste fluxos" +msgstr "Tu remanera actualisate con iste canales" #: src/screens/SignupQueued.tsx:127 msgid "You're in line" @@ -9692,38 +10457,46 @@ msgstr "Toto preste!" #: src/screens/Deactivated.tsx:89 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account." -msgstr "" +msgstr "Tu ha aperite session con un contrasigno de application. Aperi session con tu contrasigno principal pro continuar le disactivation de tu conto." #: src/components/moderation/ModerationDetailsDialog.tsx:108 #: src/lib/moderation/useModerationCauseDescription.ts:108 msgid "You've chosen to hide a word or tag within this post." -msgstr "" +msgstr "Tu ha optate pro occultar un parola o etiquetta in iste publication." #: src/state/shell/progress-guide.tsx:234 msgid "You've found some people to follow" msgstr "Tu ha trovate alicun personas a sequer" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Tu ha attingite le fin de tu canal! Trova alcun altere contos pro sequer." #: src/lib/hooks/useCleanError.ts:58 msgid "You've reached the maximum number of requests allowed. Please try again later." +msgstr "Tu ha attingite le numero maxime de requestas permittite. Tenta de novo plus tarde." + +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:421 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" -msgstr "" +msgstr "Tu ha attingite tu limite diari pro cargas de videos (troppo de bytes)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" -msgstr "" +msgstr "Tu ha attingite tu limite diari pro cargas de videos (troppo de videos)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" -msgstr "" +msgstr "Il non ha plus videos a spectar. Forsan isto es un bon momento pro facer un pausa?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Tu conto" @@ -9735,97 +10508,91 @@ msgstr "Tu conto ha essite delite" msgid "Your account has been suspended" msgstr "Tu conto ha essite suspendite" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." -msgstr "" +msgstr "Tu conto ancora non ha etate sufficiente pro cargar videos. Tenta de novo plus tarde." #: src/screens/Settings/components/ExportCarDialog.tsx:67 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." -msgstr "" +msgstr "Le repositorio de tu conto, continente tote le registros de datos public, pote esser discargate como um file \"CAR\". Iste file non include contento multimedial incorporate, como imagines, o tu datos private, que debe esser recuperate separatemente." #: src/screens/Takendown.tsx:214 msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error." -msgstr "" +msgstr "Tu conto ha essite considerate in violation del <0>Conditiones de servicio de Bluesky Social. Un e-mail describente le violation specific e le periodo de suspension, si applicabile, ha essite inviate a te. Tu pote appellar de iste decision si tu considera que illo ha essite facite per error." #: src/screens/Takendown.tsx:154 msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." -msgstr "" +msgstr "Tu appello ha essite inviate. Si tu appello ha successo, tu recipera un e-mail." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" -msgstr "Tu data de anniversario" +msgstr "Tu data de nascentia" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Tu navigator non supporta le formato de video. Retenta con un navigator differente." #: src/screens/Messages/components/ChatDisabled.tsx:25 msgid "Your chats have been disabled" -msgstr "Tu chats ha essite dishabilitate" +msgstr "Tu chats ha essite disactivate" #: src/components/dialogs/InAppBrowserConsent.tsx:69 msgid "Your choice will be remembered for future links. You can change it at any time in settings." -msgstr "" +msgstr "Tu election essera rememorate pro ligamines futur. Tu pote cambiar lo a qualcunque momento in le parametros." #: src/screens/Settings/components/ChangeHandleDialog.tsx:513 msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." -msgstr "" +msgstr "Tu pseudonymo actual <0>{0} remanera automaticamente reservate pro te. Tu pote cambiar de retorno a illo a qualcunque momento desde iste conto." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." -msgstr "Il pare que tu adresse de e-posta es invalide." +msgstr "Tu adresse de e-mail pare esser invalide." #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65 msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Tu e-mail ancora non ha essite verificate. Iste es un passo importante de securitate que nos recommenda." +msgstr "Tu e-mail ancora non ha essite verificate. Verifica tu e-mail a fin de fruer de tote le functiones de Bluesky." #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" -msgstr "Tu prime me place!" +msgstr "Tu prime appreciation!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "Tu sequitores" #: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." -msgstr "Tu fluxo de sequites es vacue! Seque plus de usatores pro vider lo que passa." +msgstr "Tu canal de sequitos es vacue! Seque plus de usatores pro vider lo que occurre." #: src/screens/Settings/components/ChangeHandleDialog.tsx:240 msgid "Your full handle will be <0>@{0}" -msgstr "Tu nomine de usator complete sera <0>@{0}" +msgstr "Tu pseudonymo complete essera <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "Tu nomine de usator complete essera <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" -msgstr "" +msgstr "Tu interesses" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" -msgstr "" +msgstr "Tu interesses ha essite actualisate!" #: src/screens/Search/modules/ExploreInterestsCard.tsx:94 msgid "Your interests help us find what you like!" -msgstr "" +msgstr "Tu interesses nos adjuta a discoperir lo que te place!" #: src/components/dialogs/MutedWords.tsx:369 msgid "Your muted words" @@ -9835,15 +10602,15 @@ msgstr "Tu parolas silentiate" msgid "Your password has been changed successfully!" msgstr "Tu contrasigno ha essite cambiate con successo!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." -msgstr "" +msgstr "Tu contrasigno debe haber al minus 8 characteres." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Tu message ha essite publicate" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Tu messages ha essite publicate" @@ -9851,26 +10618,30 @@ msgstr "Tu messages ha essite publicate" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Tu publicationes, appreciationes e blocages es public. Le silentiamentos es private." -#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 -msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" msgstr "" -#: src/view/com/composer/Composer.tsx:480 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 +msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "Tu profilo, publicationes, canales e listas non essera plus visibile a altere usatores de Bluesky. Tu pote reactivar tu conto a qualcunque momento aperiente session." + +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Tu responsa ha essite publicate" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." -msgstr "Tu reporto essera inviate a <0>{0}." +msgstr "Tu signalamento essera inviate a <0>{0}." #: src/components/dms/ReportDialog.tsx:200 msgid "Your report will be sent to the Bluesky Moderation Service" -msgstr "Tu reporto sera inviate al Servicio de Moderation de Bluesky" +msgstr "Tu signalamento essera inviate al Servicio de Moderation de Bluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." -msgstr "" +msgstr "Le interesses que tu ha seligite nos adjuta a servir te contento que te importa." #: src/components/verification/VerificationsDialog.tsx:65 msgid "Your verifications" -msgstr "" +msgstr "Tu verificationes" diff --git a/src/locale/locales/id/messages.po b/src/locale/locales/id/messages.po index 15af841b64..6be566ed01 100644 --- a/src/locale/locales/id/messages.po +++ b/src/locale/locales/id/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: id\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -27,7 +27,7 @@ msgstr "(aktif)" msgid "(contains embedded content)" msgstr "(berisi konten yang disisipkan)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(tidak ada email)" @@ -79,9 +79,9 @@ msgstr "{0, plural, other {# postingan ulang}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, other {# detik}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, other {# item belum dibaca}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, other {# item belum dibaca}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, other {# bln}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, other {pengikut}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, other {mengikuti}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, other {suka}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, other {suka}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, other {postingan}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, other {kutipan}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, other {posting ulang}}" @@ -135,6 +138,10 @@ msgstr "{0} <0>dalam <1>tagar" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>dalam <1>teks & tagar" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} mengikuti" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "{0} sedang siaran langsung" @@ -143,11 +150,15 @@ msgstr "{0} sedang siaran langsung" msgid "{0} is not a valid URL" msgstr "{0} merupakan URL yang tidak valid" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} telah bergabung minggu ini" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} dari {1}" @@ -164,8 +175,16 @@ msgstr "{0} menanggapi {1}" msgid "{0} reacted {1} to {2}" msgstr "{0} menanggapi {1} pada {2}" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0}, feed oleh {1}, disukai oleh {2}" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0}, sebuah daftar oleh {1}" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "Avatar {0}" @@ -197,12 +216,12 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}d" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, other {# item belum dibaca}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Paket Pemula {displayName}" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, other {jam}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, other {menit}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} mengikuti Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} menyukai feed kustom Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} menyukai postingan Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" +msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} others}} menyukai postingan ulang Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} menghapus verifikasi mereka dari akun Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} memposting ulang postingan Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} memposting ulang postingan ulang Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} mendaftar dengan paket pemula Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} memverifikasi Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} mengikuti Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} mengikuti Anda kembali" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} menyukai feed kustom Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} menyukai postingan Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" -msgstr "" +msgstr "{firstAuthorLink} menyukai postingan ulang Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} menghapus verifikasi mereka dari akun Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} memposting ulang postingan Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" -msgstr "" +msgstr "{firstAuthorLink} memposting ulang postingan ulang Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} mendaftar dengan paket pemula Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} memverfikasi Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} mengikuti Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} menyukai feed kustom Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} menyukai postingan Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" +msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} menyukai postingan ulang Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} menghapus verifikasi mereka dari akun Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} memposting ulang postingan Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} memposting ulang postingan ulang Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} mendaftar dengan paket pemula Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} memverifikasi Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} mengikuti Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} mengikuti Anda kembali" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} menyukai feed kustom Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} menyukai postingan Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" -msgstr "" +msgstr "{firstAuthorName} menyukai postingan ulang Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} menghapus verifikasi mereka dari akun Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} memposting ulang postingan Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" -msgstr "" +msgstr "{firstAuthorName} memposting ulang postingan ulang Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} mendaftar dengan paket pemula Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} memverifikasi Anda" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} mengikuti" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "{handle} tidak dapat dikirimi pesan" @@ -392,7 +410,7 @@ msgstr "{joinedAllTimeCount, plural, other {# pengguna telah}} bergabung!" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "{minutes, plural, other {# menit}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, other {# item belum dibaca}}" @@ -432,12 +450,12 @@ msgstr "Verifikasi {userName}" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, dan {2, plural, other {# lainnya}} sudah disertakan dalam paket pemula Anda" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, dan {2, plural, other {# lainnya}} sudah disertakan dalam paket pemula Anda" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, other {pengikut}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, other {mengikuti}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} dan<1> <2>{1} sudah disertakan dalam paket pemula Anda" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} sudah disertakan dalam paket pemula Anda" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "Anggota <0>{0}" @@ -466,11 +484,11 @@ msgstr "Anggota <0>{0}" msgid "<0>{date} at {time}" msgstr "<0>{date} pukul {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Eksperimental: Jika preferensi ini diaktifkan, Anda hanya akan menerima notifikasi balasan dan kutipan dari pengguna yang Anda ikuti. Kami akan menambah lebih banyak kontrol di sini seiring waktu." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<0>Masuk<1> atau <2>buat akun<3> <4>untuk mencari berita, olahraga, politik dan semuanya yang terjadi di Bluesky." -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Anda dan<1> <2>{0} sudah disertakan dalam paket pemula" @@ -503,10 +521,14 @@ msgstr "sebuah pesan" msgid "A new form of verification" msgstr "Bentuk baru verifikasi" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "Tangkapan layar dari halaman profil dengan ikon lonceng sebelah tombol ikuti, yang menunjukkan fitur pemberitahuan aktifitas baru." + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Tentang" @@ -524,25 +546,25 @@ msgstr "Terima permintaan obrolan" msgid "Accept Request" msgstr "Terima Permintaan" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Aksesibilitas" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Pengaturan Aksesibilitas" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Akun" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Akun diikuti" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Akun Dibisukan" msgid "Account Muted by List" msgstr "Akun Dibisukan oleh Daftar" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Pengaturan akun" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Akun dihapus dari akses cepat" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Akun tidak diikuti" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Akun tidak dibisukan" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Akun dengan tanda cek biru bergerigi <0><1/> dapat memverifikasi lainnya. Verifikator ini telah dipilih oleh Bluesky." +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Tambah" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Tambah {0} lagi untuk melanjutkan" @@ -634,8 +666,8 @@ msgstr "Tambahkan akun" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Tambahkan teks alt" msgid "Add alt text (optional)" msgstr "Tambahkan teks alt (opsional)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Tambahkan akun lain" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Tambahkan postingan lain" @@ -670,8 +702,8 @@ msgstr "Tambahkan Sandi Aplikasi" msgid "Add emoji reaction" msgstr "Tambahkan emoji reaksi" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Tambahkan rincian lengkap (optional)" @@ -683,7 +715,7 @@ msgstr "Tambahkan kata bisu yang dipilih pengaturan" msgid "Add muted words and tags" msgstr "Tambah kata dan tagar untuk dibisukan" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Tambahkan postingan baru" @@ -704,7 +736,7 @@ msgstr "Tambahkan Reaksi" msgid "Add recommended feeds" msgstr "Tambahkan feed rekomendasi" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Tambahkan beberapa feed ke dalam paket pemula Anda!" @@ -725,10 +757,6 @@ msgstr "Tambahkan feed ini ke daftar feed Anda" msgid "Add to lists" msgstr "Tambahkan dalam daftar" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Tambahkan ke daftar feed saya" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "Tambahkan pengguna ke daftar" @@ -738,11 +766,11 @@ msgstr "Tambahkan pengguna ke daftar" msgid "Added to list" msgstr "Ditambahkan ke daftar" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Ditambahkan ke daftar feed saya" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Rincian tambahan (batas 300 karakter)" @@ -750,18 +778,18 @@ msgstr "Rincian tambahan (batas 300 karakter)" msgid "Adult" msgstr "Dewasa" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Konten Dewasa" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Konten dewasa hanya dapat diaktifkan melalui laman <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Konten dewasa dinonaktifkan." @@ -770,16 +798,32 @@ msgstr "Konten dewasa dinonaktifkan." msgid "Adult Content labels" msgstr "Label Konten Dewasa" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Lanjutan" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "kresna@contoh.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Semua" @@ -793,7 +837,7 @@ msgstr "Semua akun telah diikuti!" msgid "All languages" msgstr "Semua bahasa" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Berisi semua feed yang telah Anda simpan dalam satu tempat." @@ -802,16 +846,21 @@ msgstr "Berisi semua feed yang telah Anda simpan dalam satu tempat." msgid "Allow access to your direct messages" msgstr "Izinkan akses ke pesan langsung Anda" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Izinkan pesan baru dari" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Izinkan kutipan" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Izinkan balasan dari:" @@ -828,13 +877,13 @@ msgstr "Sudah memiliki kode?" msgid "Already signed in as @{0}" msgstr "Sudah masuk sebagai @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "Teks alt" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Teks Alt" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Teks alt menjelaskan gambar untuk pengguna tunanetra dan pengguna dengan penglihatan rendah, serta membantu memberikan konteks kepada semua orang." @@ -861,27 +910,19 @@ msgstr "Teks alt akan disingkat. {MAX_ALT_TEXT, plural, other {Batas: {0} karakt msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Email telah dikirim ke {0}. Email tersebut berisi kode konfirmasi yang dapat Anda masukkan di bawah ini." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "Email telah dikirimkan ke alamat Anda sebelumnya, {currentEmail}. Email tersebut menyertakan kode konfirmasi yang dapat Anda masukkan di bawah ini." - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Email telah dikirim! Silakan masukkan kode konfirmasi yang tercantum dalam email tersebut di bawah ini." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Telah terjadi kesalahan" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Terjadi kesalahan" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Terjadi kesalahan saat mengompresi video." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "Terjadi kesalahan saat mengambil feed." @@ -889,11 +930,11 @@ msgstr "Terjadi kesalahan saat mengambil feed." msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Terjadi kesalahan saat membuat paket pemula. Coba lagi?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Terjadi kesalahan saat memuat video. Silakan coba lagi nanti." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Terjadi kesalahan saat memuat video. Silakan coba lagi." @@ -910,7 +951,7 @@ msgstr "Terjadi kesalahan saat memilih video" msgid "An error occurred while trying to follow all" msgstr "Terjadi kesalahan saat mencoba mengikuti semua" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Terjadi kesalahan saat mengunggah video." @@ -934,8 +975,8 @@ msgstr "Terjadi masalah saat mencoba membuka obrolan" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "terjadi kesalahan yang tidak diketahui" msgid "an unknown labeler" msgstr "pelabel tak dikenal" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "dan" @@ -963,10 +1004,14 @@ msgstr "dan" msgid "Animals" msgstr "Hewan" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "Animasi GIF" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "Mengumumkan verifikasi Bluesky" @@ -980,7 +1025,13 @@ msgstr "Perilaku Anti-Sosial" msgid "Anybody can interact" msgstr "Siapa saja dapat berinteraksi" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "Nama sandi aplikasi hanya boleh terdiri dari huruf, angka, spasi, tanda msgid "App password names must be at least 4 characters long" msgstr "Nama sandi aplikasi harus terdiri dari minimal 4 karakter" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Sandi aplikasi" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Kata Sandi Aplikasi" @@ -1053,10 +1104,10 @@ msgstr "Banding Penangguhan" msgid "Appeal this decision" msgstr "Ajukan banding atas keputusan ini" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Tampilan" @@ -1065,12 +1116,20 @@ msgstr "Tampilan" msgid "Apply default recommended feeds" msgstr "Tambahkan feed bawaan yang direkomendasikan" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Arsip dari {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Arsip postingan" @@ -1078,7 +1137,7 @@ msgstr "Arsip postingan" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Anda yakin ingin menghapus sandi aplikasi \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Anda yakin ingin menghapus pesan ini? Pesan akan dihapus untuk Anda, tetapi tidak untuk partisipan lainnya." @@ -1098,19 +1157,15 @@ msgstr "Anda yakin ingin meninggalkan percakapan ini?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Anda yakin ingin meninggalkan percakapan ini? Pesan akan dihapus untuk Anda, tetapi tidak untuk partisipan lainnya." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Anda yakin ingin menghapus {0} dari daftar feed Anda?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Anda yakin ingin menghapus ini dari daftar feed Anda?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Anda yakin ingin membuang draf ini?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Anda yakin ingin membuang postingan ini?" @@ -1131,29 +1186,26 @@ msgstr "Seni" msgid "Artistic or non-erotic nudity." msgstr "Ketelanjangan artistik atau non-erotis." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "Tetapkan topik untuk algoritma" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Minimal 3 karakter" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Opsi putar otomatis telah dipindahkan ke pengaturan <0>Konten dan Media." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Putar otomatis video dan GIF" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Putar otomatis video dan GIF" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Kembali" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Kembali ke Obrolan" @@ -1195,28 +1247,44 @@ msgstr "Untuk membuat paket pemula, harap verifikasi email Anda terlebih dahulu. msgid "Before you can accept this chat request, you must first verify your email." msgstr "Untuk dapat menerima permintaan obrolan ini, harap verifikasi email Anda terlebih dahulu." +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "Untuk dapat mengirim pesan ke pengguna lain, harap verifikasi email Anda terlebih dahulu." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Tanggal lahir" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Blokir" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Blokir" msgid "Block account" msgstr "Blokir akun" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Blokir Akun?" @@ -1262,20 +1330,20 @@ msgstr "Blokir pengguna" msgid "Block User" msgstr "Blokir Pengguna" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Diblokir" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Akun yang diblokir" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Akun yang Diblokir" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau berinteraksi dengan Anda." @@ -1284,11 +1352,11 @@ msgstr "Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau b msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau berinteraksi dengan Anda. Anda juga tidak akan melihat konten mereka dan mereka akan dicegah melihat konten Anda." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Postingan diblokir." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Pemblokiran tidak menghalangi pelabel ini menerapkan label pada akun Anda." @@ -1309,11 +1377,12 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky tidak dapat memastikan keaslian tanggal yang diklaim." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1347,6 +1416,14 @@ msgstr "Bluesky tidak akan menampilkan profil dan postingan Anda kepada pengguna msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky akan secara pro-aktif verifikasi akun-akun penting dan otentik." +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Buramkan gambar dan saring dari feed" msgid "Books" msgstr "Buku" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Jelajahi akun lainnya pada halaman Jelajah" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Jelajahi feed lainnya pada halaman Jelajah" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Jelajahi saran lainnya" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Jelajahi saran lainnya pada halaman Jelajah" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Bisnis" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Oleh {0}" @@ -1428,15 +1502,23 @@ msgstr "Oleh {0}" msgid "By <0>{0}" msgstr "Oleh <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Dengan membuat akun, Anda menyatakan setuju dengan <0>Kebijakan Privasi." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Dengan membuat akun, Anda menyatakan setuju dengan <0>Ketentuan Layanan dan <1>Kebijakan Privasi." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Dengan membuat akun, Anda menyatakan setuju dengan <0>Ketentuan Layanan." @@ -1448,14 +1530,17 @@ msgstr "Oleh anda" msgid "Camera" msgstr "Kamera" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Kamera" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Batal" @@ -1500,11 +1582,7 @@ msgstr "Batal menghapus akun" msgid "Cancel image crop" msgstr "Batal memotong gambar" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Batal mengedit profil" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Batal mengutip postingan" @@ -1516,14 +1594,10 @@ msgstr "Batalkan pengaktifan kembali dan keluar" msgid "Cancel search" msgstr "Batal mencari" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Membatalkan membuka situs web tertaut" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Tidak dapat berinteraksi dengan pengguna yang diblokir" @@ -1553,17 +1627,12 @@ msgstr "Ganti ikon aplikasi ke \"{0}\"" msgid "Change app language" msgstr "Ganti bahasa aplikasi" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Ubah alamat email" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Ubah Panggilan" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Ubah layanan moderasi" @@ -1579,14 +1648,6 @@ msgstr "Ubah bahasa postingan ke {suggestedLanguageName}" msgid "Change report reason" msgstr "Ubah alasan melapor" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Ubah Email Anda" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Ubah alamat email Anda" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Mengganti ikon aplikasi" @@ -1596,10 +1657,15 @@ msgstr "Mengganti ikon aplikasi" msgid "Changes hosting provider" msgstr "Mengganti penyedia hosting" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Obrolan" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Obrolan dihapus" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Obrolan dibisukan" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "Kotak masuk permintaan obrolan" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Permintaan obrolan" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Pengaturan obrolan" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Pengaturan Obrolan" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Obrolan dibunyikan" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Obrolan" @@ -1661,7 +1738,7 @@ msgstr "Periksa kotak masuk email Anda untuk kode konfirmasi dan masukkan di baw msgid "Choose domain verification method" msgstr "Pilih metode verifikasi domain" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Pilih Feed" @@ -1669,7 +1746,7 @@ msgstr "Pilih Feed" msgid "Choose for me" msgstr "Pilihkan untuk saya" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Pilih Pengguna" @@ -1685,23 +1762,23 @@ msgstr "Pilih warna ini sebagai avatar Anda" msgid "Choose your account provider" msgstr "Pilih penyedia akun Anda" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Pilih sendiri linimasa Anda! Feed buatan komunitas dapat membantu menemukan konten yang Anda sukai." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Pilih kata sandi Anda" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Panggilan Anda" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Hapus semua data penyimpanan" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Hapus semua data penyimpanan (mulai ulang setelah ini)" @@ -1714,23 +1791,27 @@ msgstr "Hapus tembolok gambar" msgid "Clear search query" msgstr "Hapus kueri pencarian" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "klik di sini" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "Klik di sini untuk mengulang proses verifikasi." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "Klik disini untuk memperbarui email Anda" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Klik untuk menonaktifkan kutipan pada postingan ini." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Klik untuk mengaktifkan kutipan pada postingan ini." @@ -1750,14 +1831,16 @@ msgstr "Iklim" msgid "Clip 🐴 clop 🐴" msgstr "Keletak 🐴 keletuk 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Keletak 🐴 keletuk 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Tutup" @@ -1789,13 +1876,15 @@ msgstr "Tutup peringatan" msgid "Close bottom drawer" msgstr "Tutup kotak bawah" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Tutup dialog" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Tutup menu geser" @@ -1804,7 +1893,7 @@ msgstr "Tutup menu geser" msgid "Close emoji picker" msgstr "Tutup pemilih emoji" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Tutup dialog GIF" @@ -1822,7 +1911,7 @@ msgstr "Tutup penampil gambar" msgid "Close menu" msgstr "Tutup menu" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Tutup dialog ini" @@ -1830,7 +1919,7 @@ msgstr "Tutup dialog ini" msgid "Closes password update alert" msgstr "Menutup peringatan pembaruan kata sandi" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "Menutup komposer pos dan menghapus draf postingan" @@ -1843,16 +1932,16 @@ msgstr "Menutup pemilih emoji" msgid "Closes viewer for header image" msgstr "Menutup penampil gambar header" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Ciutkan daftar pengguna" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Menciutkan daftar pengguna untuk notifikasi tertentu" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Mode warna" @@ -1870,7 +1959,8 @@ msgstr "Komedi" msgid "Comics" msgstr "Komik" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Panduan Komunitas" @@ -1879,38 +1969,34 @@ msgstr "Panduan Komunitas" msgid "Complete onboarding and start using your account" msgstr "Selesaikan orientasi dan mulai menggunakan akun Anda" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Selesaikan tantangan" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Tulis postingan baru" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Tulis postingan hingga {0, plural, other {# karakter}} panjangnya" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Tulis balasan" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Mengompres video..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Konfigurasikan pengaturan penyaringan konten untuk kategori: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Diatur pada <0>pengaturan moderasi." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Konfirmasi pengaturan bahasa konten" msgid "Confirm delete account" msgstr "Konfirmasi hapus akun" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Konfirmasi usia Anda:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Konfirmasi tanggal lahir Anda" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Konfirmasi tanggal lahir Anda" msgid "Confirmation code" msgstr "Kode konfirmasi" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Kode Konfirmasi" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Menghubungkan..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Hubungi pusat dukungan" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Konten & Media" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Konten dan media" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Konten dan Media" @@ -1977,7 +2069,8 @@ msgstr "Konten dan Media" msgid "Content Blocked" msgstr "Konten Diblokir" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Penyaring konten" @@ -2006,10 +2099,12 @@ msgstr "Peringatan Konten" msgid "Content warnings" msgstr "Peringatan konten" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Latar menu konteks, klik untuk menutup menu." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Lanjutkan" msgid "Continue as {0} (currently signed in)" msgstr "Lanjutkan sebagai {0} (sudah masuk)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Lanjutkan utas..." @@ -2029,6 +2129,10 @@ msgstr "Lanjutkan utas..." msgid "Continue to next step" msgstr "Lanjutkan ke langkah berikutnya" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Disalin" msgid "Copied build version to clipboard" msgstr "Versi build disalin ke papan klip" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Menyalin versi build ke papan klip" msgid "Copy" msgstr "Salin" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "Tetap salin" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Salin Sandi Aplikasi" @@ -2087,8 +2187,8 @@ msgstr "Salin Sandi Aplikasi" msgid "Copy at:// URI" msgstr "Salin URI at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Salin DID pemosting" @@ -2120,10 +2220,10 @@ msgstr "Salin Tautan" msgid "Copy link to list" msgstr "Salin tautan daftar" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Salin tautan postingan" @@ -2136,18 +2236,18 @@ msgstr "Salin tautan ke profil" msgid "Copy link to starter pack" msgstr "Salin tautan ke paket pemula" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Salin teks pesan" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Salin URI postingan at://" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Salin teks postingan" @@ -2159,11 +2259,25 @@ msgstr "Salin kode QR" msgid "Copy TXT record value" msgstr "Salin nilai data TXT" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Kebijakan Hak Cipta" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "Tidak dapat membisukan obrolan" msgid "Could not process your video" msgstr "Tidak dapat memproses video" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Buat" @@ -2195,7 +2317,7 @@ msgstr "Buat kode QR untuk paket pemula" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Buat paket pemula" @@ -2205,21 +2327,22 @@ msgstr "Buatkan paket pemula untuk saya" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Daftar" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Buat Akun" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Buat akun" @@ -2241,7 +2364,7 @@ msgstr "Buat paket lain" msgid "Create new account" msgstr "Buat akun baru" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Buat laporan untuk {0}" @@ -2268,7 +2391,7 @@ msgstr "Kustom" msgid "Customization options" msgstr "Opsi penyesuaian" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Sesuaikan siapa yang dapat berinteraksi dengan postingan ini." @@ -2278,12 +2401,12 @@ msgstr "Menyesuaikan pengalaman Bluesky Anda" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Gelap" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Gelap" @@ -2292,21 +2415,21 @@ msgstr "Gelap" msgid "Dark mode" msgstr "Mode gelap" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Tema gelap" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Tanggal lahir" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Nonaktifkan akun" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Debug Moderasi" @@ -2314,7 +2437,7 @@ msgstr "Debug Moderasi" msgid "Debug panel" msgstr "Panel awakutu" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Standar" @@ -2322,8 +2445,8 @@ msgstr "Standar" msgid "Default icons" msgstr "Ikon bawaan" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Ikon bawaan" msgid "Delete" msgstr "Hapus" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Hapus akun" @@ -2355,7 +2478,7 @@ msgstr "Hapus kata sandi aplikasi?" msgid "Delete chat" msgstr "Hapus obrolan" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Hapus catatan deklarasi obrolan" @@ -2370,7 +2493,7 @@ msgstr "Hapus percakapan" msgid "Delete Conversation" msgstr "Hapus Percakapan" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Hapus untuk saya" @@ -2378,11 +2501,11 @@ msgstr "Hapus untuk saya" msgid "Delete list" msgstr "Hapus daftar" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Hapus pesan" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Hapus pesan untuk saya" @@ -2390,9 +2513,9 @@ msgstr "Hapus pesan untuk saya" msgid "Delete my account" msgstr "Hapus akun saya" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Hapus postingan" @@ -2409,11 +2532,11 @@ msgstr "Hapus paket pemula?" msgid "Delete this list?" msgstr "Hapus daftar ini?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Hapus postingan ini?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Dihapus" @@ -2422,15 +2545,20 @@ msgstr "Dihapus" msgid "Deleted Account" msgstr "Akun Telah Dihapus" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Postingan dihapus." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Deskripsi" @@ -2447,12 +2575,12 @@ msgstr "Deskripsi terlalu panjang. {DESCRIPTION_MAX_GRAPHEMES, plural, other {Ma msgid "Descriptive alt text" msgstr "Teks alt deskriptif" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Lepaskan kutipan" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Lepaskan kutipan ini?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Mode pengembang dinyalakan" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Opsi pengembang" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Dialog: sesuaikan siapa saja yang dapat berinteraksi dengan postingan ini" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Redup" @@ -2492,27 +2620,27 @@ msgstr "Nonaktifkan email 2FA" msgid "Disable Email 2FA" msgstr "Nonaktifkan Email 2FA" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Matikan respons haptik" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Matikan subtitel" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Dinonaktifkan" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Buang" @@ -2520,11 +2648,11 @@ msgstr "Buang" msgid "Discard changes?" msgstr "Buang perubahan?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Buang draf?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Buang postingan?" @@ -2542,7 +2670,7 @@ msgstr "Jelajahi Feed" msgid "Discover new custom feeds" msgstr "Temukan feed kustom baru" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Temukan Feed Baru" @@ -2550,7 +2678,7 @@ msgstr "Temukan Feed Baru" msgid "Dismiss" msgstr "Tutup" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Abaikan kesalahan" @@ -2562,26 +2690,26 @@ msgstr "Tutup panduan memulai" msgid "Dismiss interests" msgstr "Abaikan minat" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Tutup bagian ini" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Tampilkan lencana teks alt yang lebih besar" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Nama tampilan" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Nama Tampilan" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Nama tampilan terlalu panjang" @@ -2603,15 +2731,11 @@ msgstr "Jangan bisukan kata ini pada pengguna yang Anda ikuti" msgid "Does not include nudity." msgstr "Tidak termasuk ketelanjangan." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Tidak diawali atau diakhiri dengan tanda hubung" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Domain terverifikasi!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Tidak memiliki kode atau perlu yang baru? <0>Klik di sini." @@ -2619,6 +2743,15 @@ msgstr "Tidak memiliki kode atau perlu yang baru? <0>Klik di sini." msgid "Don't see an email? <0>Click here to resend." msgstr "Tidak dapat melihat email? <0>Klik di sini untuk kirim ulang." +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "Ketuk dua kali atau tekan lama pada pesan untuk menambahkan reaksi" msgid "Double tap to close the dialog" msgstr "Ketuk dua kali untuk menutup dialog" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Ketuk dua kali untuk menyukai" @@ -2673,7 +2806,7 @@ msgstr "Unduh Bluesky" msgid "Download CAR file" msgstr "Unduh berkas CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Lepaskan untuk menambahkan gambar" @@ -2689,18 +2822,10 @@ msgstr "contoh: kresna" msgid "e.g. Alice Lastname" msgstr "contoh: Langit Kresna" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "contoh: Langit Kresna" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "contoh: kresna.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "contoh: Penulis, penyiar radio, dan sejarawan." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Contoh: ketelanjangan artistik." @@ -2725,10 +2850,11 @@ msgstr "contoh: Pengguna yang membalas dengan iklan secara berulang." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Tiap kode hanya berlaku sekali. Anda akan mendapatkan tambahan kode undangan secara berkala." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Ubah" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Ubah" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Ubah avatar" @@ -2749,12 +2875,12 @@ msgstr "Ubah Daftar Feed" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Edit gambar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Ubah pengaturan interaksi" @@ -2776,33 +2902,33 @@ msgstr "Ubah status siaran langsung" msgid "Edit Moderation List" msgstr "Ubah Daftar Moderasi" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Ubah Daftar Feed" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Edit profil saya" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Ubah Daftar Pengguna" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Ubah pengaturan interaksi postingan" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Edit profil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Edit Profil" @@ -2814,19 +2940,11 @@ msgstr "Ubah paket pemula" msgid "Edit User List" msgstr "Ubah Daftar Pengguna" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Ubah siapa yang dapat membalas" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Ubah nama tampilan Anda" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Sunting deskripsi profil Anda" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Ubah paket pemula Anda" @@ -2839,8 +2957,8 @@ msgstr "Pendidikan" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "Pembuat daftar ini mungkin telah memblokir Anda atau Anda telah memblokirnya." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "Email" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "Email 2FA dinonaktifkan" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "Email 2FA diaktifkan" @@ -2865,10 +2983,6 @@ msgstr "Email Dikirim Ulang" msgid "Email sent!" msgstr "Email terkirim!" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "Email diperbarui!" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "Verifikasi email selesai!" @@ -2883,8 +2997,8 @@ msgstr "Sisipkan kode HTML" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Sisipkan postingan" @@ -2892,7 +3006,7 @@ msgstr "Sisipkan postingan" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Sisipkan postingan ini di situs web Anda. Salin potongan kode berikut dan tempelkan ke dalam kode HTML situs web Anda." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Pemutar video tertanam" @@ -2906,7 +3020,7 @@ msgstr "Aktifkan" msgid "Enable {0} only" msgstr "Aktifkan {0} saja" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Aktifkan konten dewasa" @@ -2919,16 +3033,20 @@ msgstr "Aktifkan email 2FA" msgid "Enable external media" msgstr "Aktifkan media eksternal" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Aktifkan pemutar media untuk" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Aktifkan notifikasi prioritas" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Nyalakan subtitel" @@ -2941,17 +3059,14 @@ msgstr "Aktifkan hanya sumber ini saja" msgid "Enable trending topics" msgstr "Aktifkan tren topik" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Aktifkan tren video dalam feed Discover Anda" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Aktifkan tren video dalam feed Discover Anda." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Diaktifkan" @@ -2963,7 +3078,7 @@ msgstr "Akhir feed" msgid "Ensure you have selected a language for each subtitle file." msgstr "Pastikan Anda telah memilih bahasa untuk masing-masing berkas subtitel." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Masukkan kata sandi" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Masukkan kata atau tagar" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "Masukkan kode" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Masukkan Kode" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Masuk ke layar penuh" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Masukkan tanggal lahir Anda" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Masukkan alamat email Anda" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Masukkan alamat email baru Anda di bawah ini." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Masukkan kata sandi" @@ -3022,7 +3129,7 @@ msgstr "Masukkan kata sandi" msgid "Enter your username and password" msgstr "Masukkan nama pengguna dan kata sandi Anda" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Masuk ke mode layar penuh" @@ -3030,16 +3137,28 @@ msgstr "Masuk ke mode layar penuh" msgid "Entertainment" msgstr "Hiburan" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Galat" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Terjadi kesalahan saat menyimpan berkas" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Kesalahan saat menerima respons captcha." @@ -3047,27 +3166,34 @@ msgstr "Kesalahan saat menerima respons captcha." msgid "Error:" msgstr "Galat:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "Kesalahan: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Semua orang" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Semua dapat membalas" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Semua orang dapat membalas postingan ini." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Semua orang" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Kecualikan pengguna yang Anda ikuti" msgid "Excludes users you follow" msgstr "Kecuali pengguna yang Anda ikuti" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Keluar dari layar penuh" @@ -3106,24 +3232,28 @@ msgstr "Keluar dari tampilan gambar" msgid "Expand alt text" msgstr "Bentangkan teks alt" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Bentangkan daftar pengguna" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Bentangkan atau ciutkan postingan lengkap yang Anda balas" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Bentangkan atau ciutkan postingan" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "URI diharapkan mengarah ke suatu catatan data" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Eksperimental" @@ -3153,15 +3283,15 @@ msgstr "Media eksplisit atau berpotensi mengganggu." msgid "Explicit sexual images." msgstr "Gambar seksual eksplisit." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "Jelajahi" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Ekspor data saya" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Media Eksternal" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Media eksternal memungkinkan situs web untuk mengumpulkan informasi tentang Anda dan perangkat Anda. Tidak ada informasi yang dikirim atau diminta hingga Anda menekan tombol \"putar\"." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Preferensi Media Eksternal" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "Gagal menerima obrolan" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "Gagal menambahkan emoji reaksi" @@ -3211,8 +3341,8 @@ msgstr "Gagal membuat sandi aplikasi. Silakan coba lagi." msgid "Failed to create conversation" msgstr "Gagal membuat percakapan" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Gagal membuat paket pemula" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "Gagal menghapus obrolan" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Gagal menghapus pesan" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Gagal menghapus postingan, silakan coba lagi" @@ -3238,8 +3368,8 @@ msgstr "Gagal menghapus postingan, silakan coba lagi" msgid "Failed to delete starter pack" msgstr "Gagal menghapus paket pemula" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "Gagal memuat percakapan" @@ -3250,14 +3380,32 @@ msgstr "Gagal memuat percakapan" msgid "Failed to load feeds preferences" msgstr "Gagal memuat preferensi feed" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Gagal memuat GIF" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Gagal memuat pesan terdahulu" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Gagal memuat daftar feed yang disarankan" msgid "Failed to load suggested follows" msgstr "Gagal memuat saran akun untuk diikuti" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "Gagal menandai semua permintaan sebagai dibaca" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Gagal menyematkan postingan" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "Gagal menghapus emoji reaksi" @@ -3291,15 +3439,11 @@ msgstr "Gagal menghapus verifikasi" msgid "Failed to save image: {0}" msgstr "Gagal menyimpan gambar: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Gagal menyimpan preferensi notifikasi, silakan coba lagi" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "Gagal menyimpan pengaturan. Silakan coba lagi." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "Gagal untuk menyimpan minat Anda." @@ -3318,7 +3462,7 @@ msgstr "Gagal mengirim email, silakan coba lagi." msgid "Failed to submit appeal, please try again." msgstr "Gagal mengajukan banding, silakan coba lagi." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Gagal membisukan utas, silakan coba lagi" @@ -3335,7 +3479,11 @@ msgstr "Gagal memperbarui email, silakan coba lagi." msgid "Failed to update feeds" msgstr "Gagal memperbarui daftar feed" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Gagal memperbarui pengaturan" @@ -3354,15 +3502,23 @@ msgstr "Gagal memverifikasi email, silakan coba lagi." msgid "Failed to verify handle. Please try again." msgstr "Gagal verifikasi panggilan. Silakan coba lagi." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Feed" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Feed oleh {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Menu feed" @@ -3371,35 +3527,39 @@ msgstr "Menu feed" msgid "Feed toggle" msgstr "Tombol alih feed" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Masukan" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Masukan terkirim!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Feed" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Feed adalah algoritma kustom yang dibuat pengguna dengan sedikit keahlian pemrograman. <0/> untuk informasi lebih lanjut." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Daftar feed diperbarui!" @@ -3428,6 +3588,14 @@ msgstr "Saring pencarian berdasarkan bahasa" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Saring pencarian berdasarkan bahasa (saat ini: {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Menyelesaikan" @@ -3448,7 +3616,7 @@ msgstr "Cari orang untuk diikuti" msgid "Find posts, users, and feeds on Bluesky" msgstr "Temukan postingan, pengguna dan feed di Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Selesai" @@ -3456,17 +3624,17 @@ msgstr "Selesai" msgid "Fitness" msgstr "Kebugaran" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Hitam Flat" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Biru Flat" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Putih Flat" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Fleksibel" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Ikuti" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Ikuti {0}" @@ -3518,7 +3686,7 @@ msgstr "Ikuti akun" msgid "Follow all" msgstr "Ikuti semua" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Ikuti Balik" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Ikuti Balik" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Diikuti oleh <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Diikuti oleh <0>{0} dan {1, plural, other {# lainnya}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Diikuti oleh <0>{0} dan <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Diikuti oleh <0>{0}, <1>{1}, dan {2, plural, other {# lainnya}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Pengikut @{0} yang Anda kenal" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Pengikut yang Anda kenal" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Mengikuti" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Mengikuti" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Mengikuti {0}" @@ -3579,8 +3751,8 @@ msgstr "Mengikuti {handle}" msgid "Following feed preferences" msgstr "Preferensi feed Mengikuti" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Preferensi Feed Mengikuti" @@ -3592,11 +3764,11 @@ msgstr "Mengikuti Anda" msgid "Follows You" msgstr "Mengikuti Anda" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Font" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Ukuran font" @@ -3613,7 +3785,7 @@ msgstr "Untuk alasan keamanan, kami akan mengirimkan kode konfirmasi ke alamat e msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Untuk alasan keamanan, Anda tidak akan dapat melihat ini lagi. Jika Anda lupa sandi aplikasi ini, Anda harus membuat yang baru." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Untuk pengalaman terbaik, kami sarankan menggunakan font tema." @@ -3643,11 +3815,15 @@ msgstr "Lupa?" msgid "Frequently Posts Unwanted Content" msgstr "Sering Memposting Konten yang Tidak Diinginkan" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "Dari @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "Dari <0/>" @@ -3660,14 +3836,68 @@ msgstr "Galeri" msgid "Generate a starter pack" msgstr "Buatkan paket pemula" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Dapatkan bantuan" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "Memulai" @@ -3688,14 +3918,16 @@ msgstr "Beri wajah pada profil Anda" msgid "Glaring violations of law or terms of service" msgstr "Pelanggaran hukum atau ketentuan layanan secara terang-terangan" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "Siaran Langsung" msgid "Go live for" msgstr "Siaran langsung untuk" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "Buka profil {firstAuthorName}" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Buka percakapan dengan {0}" @@ -3779,8 +4017,8 @@ msgstr "Media Sensitif" msgid "Half way there!" msgstr "Setengah jalan lagi!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Panggilan" @@ -3797,7 +4035,7 @@ msgstr "Panggilan diubah!" msgid "Handle too long. Please try a shorter one." msgstr "Panggilan terlalu panjang. Silakan coba yang lebih pendek." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Haptik" @@ -3806,7 +4044,7 @@ msgstr "Haptik" msgid "Harassment, trolling, or intolerance" msgstr "Pelecehan, unggah sulut, atau intoleransi" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Tagar" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Tagar {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "Punya kode? <0>Klik di sini." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Mengalami masalah?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Bantuan" @@ -3839,8 +4077,13 @@ msgstr "Beri tahu orang-orang bahwa Anda bukan bot dengan mengunggah gambar atau msgid "Here is your app password!" msgstr "Berikut adalah sandi aplikasi Anda!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Disembunyikan" @@ -3848,16 +4091,16 @@ msgstr "Disembunyikan" msgid "Hidden by your moderation settings." msgstr "Disembunyikan berdasarkan aturan moderasi Anda." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Daftar yang disembunyikan" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Daftar yang disembunyikan" msgid "Hide" msgstr "Sembunyikan" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Sembunyikan" @@ -3875,18 +4118,18 @@ msgstr "Sembunyikan" msgid "Hide customization options" msgstr "Sembunyikan opsi penyesuaian" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Sembunyikan postingan untuk saya" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Sembunyikan balasan untuk semua" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Sembunyikan balasan untuk saya" @@ -3894,12 +4137,12 @@ msgstr "Sembunyikan balasan untuk saya" msgid "Hide this card" msgstr "Sembunyikan kartu ini" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Sembunyikan postingan ini?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Sembunyikan balasan ini?" @@ -3913,11 +4156,11 @@ msgstr "Sembunyikan tren topik" msgid "Hide trending topics?" msgstr "Sembunyikan tren topik?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Sembunyikan tren video?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Sembunyikan daftar pengguna" @@ -3926,32 +4169,32 @@ msgstr "Sembunyikan daftar pengguna" msgid "Hide verification badges" msgstr "Sembunyikan lencana verifikasi" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Menyembunyikan konten" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm, terjadi masalah saat menghubungi server feed. Harap beri tahu pemilik feed tentang masalah ini." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm, server feed tampaknya salah konfigurasi. Harap beri tahu pemilik feed tentang masalah ini." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm, server feed tampaknya sedang offline. Harap beri tahu pemilik feed tentang masalah ini." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm, server feed memberikan respons yang buruk. Harap beri tahu pemilik feed tentang masalah ini." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, kami kesulitan menemukan feed ini. Mungkin sudah dihapus." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmmmm, sepertinya kami kesulitan memuat data ini. Lihat di bawah untuk keterangan lebih lanjut. Jika masalah berlanjut, mohon hubungi kami." @@ -3959,15 +4202,15 @@ msgstr "Hmmmm, sepertinya kami kesulitan memuat data ini. Lihat di bawah untuk k msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, kami tidak dapat memuat layanan moderasi." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Harap tunggu! Kami secara bertahap memberikan akses video, dan Anda masih dalam antrian. Periksa kembali nanti!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Beranda" @@ -3984,10 +4227,10 @@ msgstr "Penyedia hosting" msgid "Hot" msgstr "Sedang hangat" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Balasan hangat lebih dulu" @@ -3996,10 +4239,6 @@ msgstr "Balasan hangat lebih dulu" msgid "How should we open this link?" msgstr "Bagaimana kami harus membuka tautan ini?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Saya mengerti" msgid "If alt text is long, toggles alt text expanded state" msgstr "Beralih ke status teks alt yang dibentangkan jika teks alt panjang" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Jika Anda belum berusia dewasa menurut hukum negara Anda, orang tua atau wali sah Anda harus membaca Ketentuan ini atas nama Anda." @@ -4031,11 +4270,11 @@ msgstr "Jika Anda menghapus daftar ini, Anda tidak dapat memulihkannya lagi." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Jika Anda memiliki domain sendiri, Anda dapat menggunakannya sebagai panggilan. Ini memungkinkan Anda untuk memverifikasi identitas secara mandiri. <0>Pelajari selengkapnya di sini." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "Jika Anda perlu memperbarui email Anda, <0>Klik di sini." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Jika Anda menghapus postingan ini, Anda tidak dapat memulihkannya lagi." @@ -4047,6 +4286,10 @@ msgstr "Jika Anda memperbarui alamat email Anda, email 2FA akan dinonaktifkan." msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Jika Anda ingin mengubah kata sandi, kami akan mengirimkan kode untuk memverifikasi bahwa ini adalah akun Anda." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "Jika Anda merupakan pengembang, Anda bisa menghosting peladen Anda sendiri." @@ -4079,7 +4322,7 @@ msgstr "Gambar tersimpan" #: src/lib/media/save-image.ts:45 msgid "Images cannot be saved unless permission is granted to access your photo library." -msgstr "" +msgstr "Gambar tidak dapat disimpan kecuali diizinkan untuk mengakses pustaka foto Anda." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49 #: src/lib/moderation/useReportOptions.ts:49 @@ -4091,13 +4334,41 @@ msgstr "Impersonasi atau klaim palsu tentang identitas atau afiliasi" msgid "Impersonation, misinformation, or false claims" msgstr "Impersonasi, misinformasi, atau klaim palsu" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Pesan tidak pantas atau tautan eksplisit" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "Kotak masuk kosong!" @@ -4105,7 +4376,7 @@ msgstr "Kotak masuk kosong!" msgid "Incorrect username or password" msgstr "Nama pengguna atau kata sandi salah" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Masukkan kode yang dikirim ke email Anda untuk pengaturan ulang kata sandi" @@ -4113,7 +4384,7 @@ msgstr "Masukkan kode yang dikirim ke email Anda untuk pengaturan ulang kata san msgid "Input confirmation code for account deletion" msgstr "Masukkan kode konfirmasi untuk penghapusan akun" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Masukkan kata sandi baru" @@ -4129,10 +4400,14 @@ msgstr "Masukkan kode yang telah dikirim ke email Anda" msgid "Interaction limited" msgstr "Interaksi dibatasi" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Pengaturan interaksi" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Kode konfirmasi 2FA tidak valid." msgid "Invalid handle. Please try a different one." msgstr "Panggilan tidak valid. Silakan coba yang lain." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Catatan postingan tidak valid atau tidak didukung" @@ -4158,7 +4433,7 @@ msgstr "Kode Verifikasi Tidak Valid" msgid "Invite a Friend" msgstr "Undang Teman" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Kode Undangan" @@ -4186,15 +4461,15 @@ msgstr "Undang teman untuk mengikuti feed dan akun favorit Anda" msgid "Invites, but personal" msgstr "Undangan, tetapi personal" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Sudah benar" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Hanya ada Anda saat ini! Tambahkan lebih banyak orang ke paket pemula Anda melalui pencarian di atas." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "ID Kerja: {0}" @@ -4220,11 +4495,27 @@ msgstr "Bergabunglah dengan kami" msgid "Journalism" msgstr "Jurnalisme" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Dilabeli oleh {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Dilabeli oleh pemosting." @@ -4237,7 +4528,7 @@ msgstr "Label" msgid "Labels added" msgstr "Label ditambahkan" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Label adalah anotasi yang diterapkan pada pengguna dan konten. Label dapat digunakan untuk menyembunyikan, memperingatkan, dan mengkategorikan jaringan." @@ -4253,22 +4544,30 @@ msgstr "Label pada konten Anda" msgid "Language selection" msgstr "Pilih bahasa" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Pengaturan Bahasa" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Bahasa" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Lebih besar" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Terbaru" @@ -4282,7 +4581,6 @@ msgstr "pelajari lebih lanjut" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "Pelajari selengkapnya" @@ -4290,6 +4588,10 @@ msgstr "Pelajari selengkapnya" msgid "Learn More" msgstr "Pelajari Lebih Lanjut" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Pelajari lebih lanjut tentang Bluesky" @@ -4298,15 +4600,23 @@ msgstr "Pelajari lebih lanjut tentang Bluesky" msgid "Learn more about self hosting your PDS." msgstr "Pelajari lebih lanjut mengenai hosting mandiri PDS Anda." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "Pelajari lebih lanjut tentang moderasi yang diterapkan pada konten ini" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Pelajari lebih lanjut tentang moderasi yang diterapkan pada konten ini." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Pelajari lebih lanjut tentang peringatan ini" @@ -4316,12 +4626,16 @@ msgstr "Pelajari lebih lanjut tentang peringatan ini" msgid "Learn more about verification on Bluesky" msgstr "Pelajari selengkapnya mengenai verifikasi di Bluesky (dalam bahasa Inggris)" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Pelajari lebih lanjut tentang apa yang bersifat publik di Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Pelajari lebih lanjut." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Tinggalkan percakapan" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Hapus semua tanda untuk menampilkan semua bahasa." +msgid "Leave them all unselected to see any language." +msgstr "" -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Meninggalkan Bluesky" @@ -4370,7 +4685,7 @@ msgstr "Ayo!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Terang" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Suka" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Suka ({0, plural, other {# suka}})" @@ -4397,6 +4712,10 @@ msgstr "Sukai 10 postingan" msgid "Like 10 posts to train the Discover feed" msgstr "Sukai 10 postingan untuk melatih feed Discover" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Sukai feed ini" @@ -4405,8 +4724,8 @@ msgstr "Sukai feed ini" msgid "Like this labeler" msgstr "Sukai labeler ini" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Disukai oleh" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Disukai Oleh" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Disukai oleh {0, plural, other {# pengguna}}" @@ -4428,20 +4747,36 @@ msgstr "Disukai oleh {0, plural, other {# pengguna}}" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Disukai oleh {likeCount, plural, other {# pengguna}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Suka" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Suka pada postingan ini" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Linier" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Daftar" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Daftar diblokir" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Daftar oleh {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "Daftar oleh <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Daftar oleh Anda" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Daftar batal dibisukan" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Daftar" @@ -4537,7 +4876,7 @@ msgstr "Muat lebih banyak" msgid "Load more suggested feeds" msgstr "Muat lebih banyak feed yang disarankan" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Muat notifikasi baru" @@ -4552,11 +4891,11 @@ msgstr "Muat postingan baru" msgid "Loading..." msgstr "Memuat..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Catatan" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Visibilitas pengguna yang tidak masuk" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo oleh @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo oleh <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Logo oleh <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Tekan lama untuk membuka menu tagar #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Seperti XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "Buat penyesuaian untuk pengaturan email akun Anda" msgid "Make one for me" msgstr "Buatkan untuk saya" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Pastikan ini adalah situs web yang Anda tuju!" @@ -4606,7 +4945,7 @@ msgstr "Pastikan ini adalah situs web yang Anda tuju!" msgid "Manage saved feeds" msgstr "Kelola feed tersimpan" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "Kelola pengaturan verifikasi" @@ -4614,9 +4953,9 @@ msgstr "Kelola pengaturan verifikasi" msgid "Manage your muted words and tags" msgstr "Kelola kata dan tagar yang dibisukan" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "Tandai semua sebagai dibaca" @@ -4625,15 +4964,13 @@ msgstr "Tandai semua sebagai dibaca" msgid "Mark as read" msgstr "Tandai telah dibaca" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "Ditandai semua sebagai dibaca" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "Mungkin nanti" @@ -4645,19 +4982,26 @@ msgstr "Media" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Media yang mungkin mengganggu atau tidak pantas untuk sebagian orang." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "pengguna yang Anda sebut" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Pengguna yang Anda sebut" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Sebutan" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Menu" @@ -4665,7 +5009,7 @@ msgstr "Menu" msgid "Message {0}" msgstr "Kirim pesan ke {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Pesan dihapus" @@ -4674,11 +5018,11 @@ msgstr "Pesan dihapus" msgid "Message deleted" msgstr "Pesan dihapus" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "Pesan dari @{0}: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Pesan dari server: {0}" @@ -4691,19 +5035,23 @@ msgstr "Kotak input pesan" msgid "Message is too long" msgstr "Pesan terlalu panjang" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "Opsi pesan" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Pesan" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Tengah malam" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Akun Menyesatkan" msgid "Misleading Post" msgstr "Postingan yang Menyesatkan" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderasi" @@ -4725,17 +5073,17 @@ msgstr "Moderasi" msgid "Moderation details" msgstr "Detail moderasi" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Daftar moderasi {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Daftar moderasi oleh <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Daftar moderasi Anda" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Daftar moderasi diperbarui" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Daftar moderasi" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Daftar Moderasi" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "pengaturan moderasi" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Status moderasi" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Alat moderasi" @@ -4775,7 +5123,7 @@ msgstr "Alat moderasi" msgid "Moderator has chosen to set a general warning on the content." msgstr "Moderator telah memilih untuk menetapkan peringatan umum pada konten." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Selengkapnya" @@ -4790,13 +5138,13 @@ msgstr "Feed lainnya" msgid "More options" msgstr "Opsi lainnya" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Yang paling disukai lebih dulu" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Balasan yang paling disukai lebih dulu" @@ -4808,8 +5156,8 @@ msgstr "Film" msgid "Music" msgstr "Musik" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Bisukan" @@ -4819,8 +5167,8 @@ msgstr "Bisukan" msgid "Mute {tag}" msgstr "Bisukan {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Bisukan kata ini hanya dalam tagar" msgid "Mute this word until you unmute it" msgstr "Bisukan kata ini sampai Anda membunyikannya" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Bisukan utas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Bisukan kata & tagar" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Akun yang dibisukan" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Akun yang Dibisukan" @@ -4898,7 +5246,7 @@ msgstr "Postingan dari akun yang dibisukan akan dihilangkan dari feed dan notifi msgid "Muted by \"{0}\"" msgstr "Dibisukan oleh \"{0}\"" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Kata & tagar yang dibisukan" @@ -4911,7 +5259,7 @@ msgstr "Pembisuan bersifat privat. Akun yang dibisukan tetap dapat berinteraksi msgid "My Birthday" msgstr "Tanggal Lahir Saya" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Daftar Feed Saya" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Alam" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Menuju ke {0}" @@ -4958,11 +5306,11 @@ msgstr "Menuju ke layar berikutnya" msgid "Navigates to your profile" msgstr "Menuju ke profil Anda" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Ingin mengubahnya?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Perlu melaporkan pelanggaran hak cipta?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Baru" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Obrolan baru" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "Alamat email baru" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "Fitur Baru" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Pesan baru" msgid "New Moderation List" msgstr "Daftar Moderasi Baru" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Kata sandi baru" @@ -5029,7 +5396,7 @@ msgstr "Kata Sandi Baru" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Postingan baru" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Postingan Baru" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Dialog informasi pengguna baru" @@ -5054,10 +5429,14 @@ msgstr "Dialog informasi pengguna baru" msgid "New User List" msgstr "Daftar Pengguna Baru" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Balasan terbaru lebih dulu" @@ -5071,15 +5450,15 @@ msgstr "Berita" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "Tanpa Panel DNS" msgid "No expiry set" msgstr "Tidak ada kadaluarsa dipasang" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "GIF tidak ditemukan. Mungkin ada masalah dengan Tenor." @@ -5119,32 +5498,35 @@ msgstr "Tidak ada gambar" msgid "No likes yet" msgstr "Belum ada yang menyukai" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Tidak lagi mengikuti {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "Tidak lebih dari {MAX_SERVICE_HANDLE_LENGTH, plural, other {# karakter}}" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Belum ada pesan" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Belum ada notifikasi!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Tidak seorang pun" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Tak seorang pun dapat mengutip postingan ini selain pemosting." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Belum ada postingan." @@ -5171,7 +5553,7 @@ msgstr "Tidak ada hasil" msgid "No results for \"{0}\"." msgstr "Tidak ada hasil untuk \"{0}\"." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Tidak ditemukan hasil" @@ -5179,9 +5561,9 @@ msgstr "Tidak ditemukan hasil" msgid "No results found for \"{query}\"" msgstr "Tidak ditemukan hasil untuk \"{query}\"" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Tidak ditemukan hasil untuk {query}" @@ -5189,7 +5571,7 @@ msgstr "Tidak ditemukan hasil untuk {query}" msgid "No results." msgstr "Tidak ada hasil." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Tidak ditemukan hasil pencarian untuk \"{search}\"." @@ -5198,7 +5580,7 @@ msgstr "Tidak ditemukan hasil pencarian untuk \"{search}\"." msgid "No thanks" msgstr "Tidak terima kasih" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Tak seorang pun" @@ -5223,59 +5605,76 @@ msgstr "Tidak ditemukan siapa pun. Coba pencarian lain." msgid "Non-sexual Nudity" msgstr "Ketelanjangan Non-Seksual" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "Tidak diikuti oleh siapapun yang Anda ikuti" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Tidak Ditemukan" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Catatan tentang berbagi" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Catatan: Bluesky merupakan jaringan terbuka dan publik. Pengaturan ini hanya membatasi visibilitas konten Anda pada aplikasi dan situs web Bluesky. Konten Anda mungkin tetap ditampilkan oleh aplikasi atau situs web lain kepada pengguna yang tidak masuk." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Kosong" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Filter notifikasi" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Pengaturan notifikasi" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Pengaturan Notifikasi" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Suara notifikasi" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Suara Notifikasi" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Notifikasi" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "sekarang" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Ketelanjangan atau konten dewasa yang tidak dilabeli sedemikian rupa" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Matikan" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Oh tidak!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "OK" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Oke" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Balasan terlama lebih dulu" @@ -5331,19 +5736,19 @@ msgstr "Balasan terlama lebih dulu" msgid "on<0><1/><2><3/>" msgstr "di<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Pengaturan ulang orientasi" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "Satu atau beberapa GIF belum memiliki teks alt." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Satu atau beberapa gambar belum memiliki teks alt." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Satu atau beberapa video belum memiliki teks alt." @@ -5351,13 +5756,15 @@ msgstr "Satu atau beberapa video belum memiliki teks alt." msgid "Only .jpg and .png files are supported" msgstr "Hanya mendukung berkas .jpg dan .png" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Hanya {0} yang dapat membalas." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Hanya berisi huruf, angka, dan tanda hubung" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Hanya mendukung berkas gambar" msgid "Only WebVTT (.vtt) files are supported" msgstr "Hanya mendukung berkas WebVTT (.vtt)" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Ups, ada yang tidak beres!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Ups!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Buka menu geser" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Buka pemilih emoji" @@ -5416,7 +5822,7 @@ msgstr "Buka menu opsi feed" msgid "Open full emoji list" msgstr "Buka daftar emoji lengkap" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Buka tautan {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Buka tautan {niceUrl}" msgid "Open message options" msgstr "Buka opsi pesan" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Buka halaman debug moderasi" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Buka pengaturan kata dan tagar yang dibisukan" @@ -5453,16 +5859,16 @@ msgstr "Buka menu berbagi" msgid "Open starter pack menu" msgstr "Buka menu paket pemula" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Buka halaman buku cerita" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Buka log sistem" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Membuka opsi {numItems}" @@ -5490,11 +5896,11 @@ msgstr "Membuka kamera pada perangkat" msgid "Opens captions and alt text dialog" msgstr "Membuka dialog subtitel dan teks alt" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Membuka dialog ubah panggilan" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Membuka penyusun postingan" @@ -5502,7 +5908,7 @@ msgstr "Membuka penyusun postingan" msgid "Opens device photo gallery" msgstr "Membuka galeri foto perangkat" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Membuka pemilih emoji" @@ -5520,15 +5926,19 @@ msgstr "Membuka alur untuk masuk ke akun Bluesky Anda yang sudah ada" msgid "Opens GIF select dialog" msgstr "Membuka dialog pemilihan GIF" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Membuka bantuan dalam peramban" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Membuka daftar kode undangan" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "Membuka dialog status siaran langsung" @@ -5536,12 +5946,8 @@ msgstr "Membuka dialog status siaran langsung" msgid "Opens password reset form" msgstr "Membuka formulir pengaturan ulang kata sandi" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Membuka situs web tertaut" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Membuka profil ini" @@ -5558,7 +5964,7 @@ msgstr "Jika perlu, berikan informasi tambahan di bawah ini:" msgid "Options:" msgstr "Opsi:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Atau gabungkan opsi-opsi berikut:" @@ -5600,6 +6006,10 @@ msgstr "Akun lainnya" msgid "Other..." msgstr "Lainnya..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "Tim moderasi kami telah menerima laporan Anda." @@ -5608,7 +6018,7 @@ msgstr "Tim moderasi kami telah menerima laporan Anda." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Moderator kami telah meninjau laporan dan memutuskan untuk menonaktifkan akses Anda ke obrolan di Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Halaman tidak ditemukan" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Halaman Tidak Ditemukan" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,33 +6052,38 @@ msgstr "Kata sandi diganti" msgid "Password updated!" msgstr "Kata sandi diganti!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Jeda" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Jeda video" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Profil" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Orang yang diikuti oleh @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Orang yang mengikuti @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." -msgstr "" +msgstr "Izin untuk mengakses pustaka foto Anda ditolak. Silakan aktifkan di pengaturan sistem Anda." #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" @@ -5704,12 +6119,12 @@ msgstr "Sematkan ke beranda" msgid "Pin to Home" msgstr "Sematkan ke Beranda" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Sematkan ke profil" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Disematkan" @@ -5718,7 +6133,7 @@ msgstr "Disematkan" msgid "Pinned {0} to Home" msgstr "{0} disematkan ke Beranda" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Feed Tersemat" @@ -5726,38 +6141,38 @@ msgstr "Feed Tersemat" msgid "Pinned to your feeds" msgstr "Disematkan ke daftar feed Anda" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Putar" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Putar {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Putar video" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Putar Video" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Memutar atau menjeda GIF" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Memutar atau menjeda video" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Putar GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Memutar video" @@ -5765,12 +6180,16 @@ msgstr "Memutar video" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "Silakan tambahkan label peringatan konten yang sesuai dengan media yang Anda posting." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Silakan tentukan panggilan Anda." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Masukkan kata sandi Anda." @@ -5782,7 +6201,8 @@ msgstr "Silakan klik pada tautan dalam email yang telah kami kirimkan untuk memv msgid "Please complete the verification captcha." msgstr "Mohon selesaikan verifikasi captcha." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Mohon periksa kembali apakah Anda telah memasukkan alamat email dengan benar." @@ -5804,6 +6224,7 @@ msgstr "Masukkan nama unik untuk sandi aplikasi ini atau gunakan nama yang kami msgid "Please enter a valid code." msgstr "Silakan masukkan kode yang valid." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "Silakan masukkan alamat email yang valid." @@ -5812,7 +6233,11 @@ msgstr "Silakan masukkan alamat email yang valid." msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Silakan masukkan kata, tagar, atau frasa yang valid untuk dibisukan" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "Silakan masukkan kode yang kami kirimkan pada <0>{0} dibawah." @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "Silakan masukkan kode keamanan yang kami kirimkan pada alamat email Anda sebelumnya." #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Masukkan email Anda." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Silakan masukkan kode undangan Anda." @@ -5853,6 +6278,19 @@ msgstr "Jelaskan menurut Anda mengapa {0} salah dalam menerapkan label ini" msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Mohon jelaskan mengapa menurut Anda obrolan Anda dinonaktifkan secara keliru" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "Silakan pilih layanan moderasi" @@ -5870,9 +6308,9 @@ msgstr "Silakan masuk sebagai @{0}" msgid "Please verify your email" msgstr "Silakan verifikasi email Anda" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Mohon Verifikasi Email Anda" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Politik" msgid "Porn" msgstr "Pornografi" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Posting" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Postingan" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Posting" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Posting Semua" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Postingan oleh {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Postingan oleh @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Postingan dihapus" @@ -5919,11 +6362,14 @@ msgstr "Postingan dihapus" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Postingan gagal diunggah. Silakan periksa koneksi internet Anda dan coba lagi." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "Postingan telah dihapus" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Postingan disembunyikan" @@ -5937,11 +6383,11 @@ msgstr "Disembunyikan oleh Kata yang Dibisukan" msgid "Post Hidden by You" msgstr "Postingan yang Anda sembunyikan" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Pengaturan interaksi postingan" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Pengaturan Interaksi Postingan" @@ -5954,8 +6400,10 @@ msgstr "Bahasa postingan" msgid "Post Languages" msgstr "Bahasa Postingan" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Postingan tidak ditemukan" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Postingan dilepaskan" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Postingan" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Postingan dapat dibisukan berdasarkan teks, tagar, atau keduanya. Sebaiknya hindari kata-kata umum yang muncul dalam postingan, karena dapat mengakibatkan tidak adanya postingan yang ditampilkan." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Postingan disembunyikan" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Tautan yang Mungkin Menyesatkan" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Preferensi disimpan" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Tekan untuk mencoba menghubungkan kembali" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Tekan untuk mengulangi" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Tekan untuk melihat pengikut akun ini yang juga Anda ikuti" @@ -6015,40 +6469,46 @@ msgstr "Gambar sebelumnya" msgid "Primary Language" msgstr "Bahasa Utama" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Dahulukan yang Anda ikuti" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Notifikasi prioritas" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Privasi" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Privasi dan keamanan" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privasi dan Keamanan" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Kebijakan Privasi" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Memproses video..." @@ -6062,15 +6522,14 @@ msgstr "Memproses..." msgid "profile" msgstr "profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Profil" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Profil diperbarui" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Daftar terbuka yang dapat dibagikan dan digunakan sebagai feed." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "Kirim postingan" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "Kirim postingan" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "Kirim balasan" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "Kirim balasan" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "Kode QR telah disalin ke papan klip!" @@ -6119,44 +6594,52 @@ msgstr "Kode QR telah diunduh!" msgid "QR code saved to your camera roll!" msgstr "Kode QR disimpan ke rol kamera Anda!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Kutip postingan" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "Kutipan kembali dilampirkan" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "Kutipan berhasil dilepaskan" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Kutipan dinonaktifkan" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Pengaturan kutipan" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Kutipan" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Kutipan postingan ini" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Acak (alias \"Rolet Pemosting\")" @@ -6164,8 +6647,8 @@ msgstr "Acak (alias \"Rolet Pemosting\")" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Melebihi batas perubahan – Anda terlalu sering mengubah panggilan dalam waktu singkat. Harap tunggu beberapa saat sebelum mencoba kembali." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Kembalikan kutipan" @@ -6177,30 +6660,42 @@ msgstr "Reaksi dengan {emoji}" msgid "Reactivate your account" msgstr "Aktifkan kembali akun Anda" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Baca blog postingan (dalam bahasa Inggris)" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Sembunyikan" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Lihat selengkapnya" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Baca blog Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Baca Kebijakan Privasi Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Baca Ketentuan Layanan Bluesky" @@ -6213,6 +6708,14 @@ msgstr "Alasan banding" msgid "Reason:" msgstr "Alasan:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Pencarian Terakhir" @@ -6234,8 +6737,8 @@ msgstr "Tolak" msgid "Reject chat request" msgstr "Tolak permintaan obrolan" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Memuat ulang percakapan" @@ -6244,10 +6747,9 @@ msgstr "Memuat ulang percakapan" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Hapus" @@ -6259,17 +6761,17 @@ msgstr "Hapus {displayName} dari paket pemula" msgid "Remove {historyItem}" msgstr "Hapus {historyItem}" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Hapus akun" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Hapus sisipan" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Hapus Avatar" @@ -6284,24 +6786,22 @@ msgstr "Hapus sisipan" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Hapus feed" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Hapus feed?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Hapus dari daftar feed saya" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Hapus dari akses cepat?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "Hapus dari feed tersimpan" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "Hapus dari feed Anda?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Hapus gambar" @@ -6332,12 +6831,8 @@ msgstr "Hapus kata yang dibisukan dari daftar Anda" msgid "Remove profile" msgstr "Hapus profil" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Hapus kutipan" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Hapus postingan ulang" @@ -6345,7 +6840,7 @@ msgstr "Hapus postingan ulang" msgid "Remove subtitle file" msgstr "Hapus berkas subtitel" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Hapus feed ini dari feed tersimpan Anda" @@ -6364,11 +6859,11 @@ msgstr "Hapus verifikasi" msgid "Remove your verification for this account?" msgstr "Hapus verifikasi Anda dari akun ini?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Dilepaskan oleh pemosting" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Dilepaskan oleh Anda" @@ -6377,10 +6872,6 @@ msgstr "Dilepaskan oleh Anda" msgid "Removed from list" msgstr "Dihapus dari daftar" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Dihapus dari daftar feed saya" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Dihapus dari feed tersimpan" @@ -6395,34 +6886,36 @@ msgstr "Dihapus dari daftar feed Anda" msgid "Removed verification" msgstr "Hapus verifikasi" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Menghapus postingan yang dikutip" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Ganti dengan Discover" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Balasan" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Balasan dinonaktifkan" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Balasan ke postingan ini dinonaktifkan." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Balas" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Balas ({0, plural, other {# balasan}})" @@ -6436,50 +6929,55 @@ msgstr "Balasan Disembunyikan oleh Pembuat Utas" msgid "Reply Hidden by You" msgstr "Balasan yang Anda Sembunyikan" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Pengaturan balasan" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "Pengaturan balasan dipilih oleh pembuat utas" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Urutan balasan" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Membalas <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Membalas postingan yang diblokir" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Membalas postingan" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Membalas Anda" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Visibilitas balasan diperbarui" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Balasan berhasil disembunyikan" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Laporkan feed" msgid "Report list" msgstr "Laporkan daftar" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Laporkan pesan" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Laporkan postingan" @@ -6567,25 +7065,26 @@ msgstr "Laporkan paket pemula ini" msgid "Report this user" msgstr "Laporkan pengguna ini" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Posting ulang" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Posting ulang" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Posting ulang ({0, plural, other {# postingan ulang}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Posting ulang atau kutip postingan" @@ -6594,35 +7093,47 @@ msgstr "Posting ulang atau kutip postingan" msgid "Reposted By" msgstr "Diposting Ulang Oleh" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Diposting ulang oleh {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Diposting ulang oleh <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Diposting ulang oleh Anda" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Postingan ulang postingan ini" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "Ajukan perubahan" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "Minta Kode" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Wajibkan teks alt sebelum memposting" @@ -6630,7 +7141,7 @@ msgstr "Wajibkan teks alt sebelum memposting" msgid "Require an email code to sign in to your account." msgstr "Gunakan kode email untuk masuk ke akun Anda." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Diwajibkan untuk provider ini" @@ -6642,10 +7153,6 @@ msgstr "Diperlukan di wilayah Anda" msgid "Resend" msgstr "Kirim ulang" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Kirim Ulang Email" msgid "Resend Verification Email" msgstr "Kirim Ulang Email Verifikasi" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Kode reset" @@ -6667,8 +7180,8 @@ msgstr "Kode reset" msgid "Reset Code" msgstr "Kode Reset" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Reset status orientasi" @@ -6687,21 +7200,23 @@ msgstr "Mencoba kembali tindakan terakhir yang gagal" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Ulangi" @@ -6721,19 +7236,19 @@ msgstr "Kembali ke beranda" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Kembali ke halaman sebelumnya" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Kembali ke langkah sebelumnya" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Kembali ke langkah sebelumnya" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Simpan" @@ -6762,15 +7276,13 @@ msgstr "Simpan" msgid "Save birthday" msgstr "Simpan tanggal lahir" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Simpan perubahan" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Simpan Perubahan" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Simpan kode QR" msgid "Save to my feeds" msgstr "Simpan ke daftar feed saya" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Feed Tersimpan" @@ -6802,18 +7314,14 @@ msgstr "Feed Tersimpan" msgid "Saved to your feeds" msgstr "Disimpan ke daftar feed Anda" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Simpan setiap perubahan pada profil Anda" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Menyimpan pengaturan pemangkasan gambar" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Katakan halo!" @@ -6826,16 +7334,16 @@ msgstr "Sains" msgid "Scroll to top" msgstr "Gulir ke atas" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Cari" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Cari postingan @{0}" @@ -6861,7 +7369,7 @@ msgstr "Cari \"{query}\"" msgid "Search for \"{searchText}\"" msgstr "Cari \"{searchText}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Cari feed yang ingin Anda sarankan kepada orang lain." @@ -6877,10 +7385,14 @@ msgstr "Cari lebih banyak umpan" msgid "Search for posts, users, or feeds" msgstr "Cari postingan, pengguna, atau feed" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Cari GIF" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Cari postingan saya" @@ -6890,12 +7402,12 @@ msgstr "Cari postingan saya" msgid "Search posts" msgstr "Cari postingan" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Cari profil" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Cari di Tenor" @@ -6903,7 +7415,7 @@ msgstr "Cari di Tenor" msgid "Search..." msgstr "Cari..." -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Mencari profil" @@ -6912,10 +7424,6 @@ msgstr "Mencari profil" msgid "Security step required" msgstr "Tahap keamanan diperlukan" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Langkah Keamanan Diperlukan" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "Lihat postingan {tag}" @@ -6936,14 +7444,31 @@ msgstr "Lihat postingan #{tag} dari pengguna" msgid "See jobs at Bluesky" msgstr "Lihat lowongan pekerjaan di Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Lihat panduan ini" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Tombol geser. Gunakan tombol panah untuk maju dan mundur, dan spasi untuk memutar/menjeda" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Pilih warna" @@ -6988,7 +7513,7 @@ msgstr "Pilih dari akun yang sudah ada" msgid "Select GIF" msgstr "Pilih GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Pilih GIF \"{0}\"" @@ -6996,6 +7521,11 @@ msgstr "Pilih GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "Pilih berapa lama kata ini akan dibisukan." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Pilih bahasa..." @@ -7004,7 +7534,7 @@ msgstr "Pilih bahasa..." msgid "Select languages" msgstr "Pilih bahasa" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "Pilih layanan moderasi" @@ -7045,12 +7575,12 @@ msgstr "Pilih bahasa apa yang digunakan untuk antarmuka pengguna." msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Pilih bahasa yang ingin Anda sertakan dalam feed langganan Anda. Jika tidak memilih, maka semua bahasa akan ditampilkan." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Pilih tanggal lahir Anda" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Pilih minat Anda dari opsi di bawah ini" @@ -7058,7 +7588,11 @@ msgstr "Pilih minat Anda dari opsi di bawah ini" msgid "Select your preferred language for translations in your feed." msgstr "Pilih bahasa yang disukai untuk terjemahan dalam feed Anda." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "Memilih opsi {0} dari {numItems}" @@ -7066,17 +7600,9 @@ msgstr "Memilih opsi {0} dari {numItems}" msgid "Send a neat website!" msgstr "Kirimkan situs web yang bagus!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "Kirim konfirmasi" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Kirim email konfirmasi" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Kirim email" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Kirim Email" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Kirim masukan" @@ -7095,7 +7621,7 @@ msgstr "Kirim masukan" msgid "Send message" msgstr "Kirim pesan" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "Kirim postingan ke {name}" @@ -7114,20 +7640,20 @@ msgstr "Kirim laporan" msgid "Send report to {0}" msgstr "Kirim laporan ke {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "Kirim laporan ke {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Kirim email verifikasi" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Kirim melalui pesan" @@ -7143,7 +7669,7 @@ msgstr "Alamat server" msgid "Set app icon to {0}" msgstr "Ubah ikon aplikasi ke {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Atur tanggal lahir" @@ -7159,13 +7685,57 @@ msgstr "Siapkan akun Anda" msgid "Sets email for password reset" msgstr "Atur email untuk pengaturan ulang kata sandi" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Pengaturan" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "Bagikan cerita seru!" msgid "Share a fun fact!" msgstr "Bagikan fakta menarik!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Tetap bagikan" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "Bagikan DID pemosting" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Bagikan tautan" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Bagikan Tautan" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Dialog berbagi tautan" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "Bagikan URI postingan at://" @@ -7247,8 +7812,8 @@ msgstr "Bagikan paket pemula ini" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Bagikan paket pemula ini dan bantu orang-orang untuk bergabung dengan komunitas Anda di Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "Bagikan lewat..." msgid "Share your favorite feed!" msgstr "Bagikan feed favorit Anda!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Penguji Preferensi Bersama" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Membagikan situs web tertaut" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Tampilkan" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Tampilkan teks alt" @@ -7303,8 +7864,8 @@ msgstr "Tampilkan opsi penyesuaian" msgid "Show hidden replies" msgstr "Tampilkan balasan yang disembunyikan" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Kurangi postingan serupa" @@ -7312,55 +7873,63 @@ msgstr "Kurangi postingan serupa" msgid "Show list anyway" msgstr "Tetap tampilkan daftar" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Tampilkan Lebih Lanjut" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Perbanyak postingan serupa" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Tampilkan balasan yang dibisukan" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Tampilkan kutipan postingan" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Tampilkan balasan" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Tampilkan balasan" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Tampilkan balasan dalam bentuk bersusun" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Tampilkan balasan dari orang yang Anda ikuti sebelum balasan lainnya" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Tampilkan balasan untuk semua" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Tampilkan posting ulang" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Tampilkan beberapa postingan dari feed yang Anda simpan di feed Mengikuti" @@ -7372,16 +7941,17 @@ msgstr "Tampilkan peringatan" msgid "Show warning and filter from feeds" msgstr "Tampilkan peringatan dan saring dari feed" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Menampilkan informasi tentang kapan postingan ini dibuat" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "Menampilkan akun lain yang dapat Anda alihkan" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Menampilkan konten" @@ -7390,14 +7960,15 @@ msgstr "Menampilkan konten" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "Masuk ke akun yang tidak tercantum dalam daftar" msgid "Sign in to Bluesky or create a new account" msgstr "Masuk ke Bluesky atau buat akun baru" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Keluar" @@ -7444,8 +8020,8 @@ msgstr "Keluar" msgid "Sign Out" msgstr "Keluar" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Keluar?" @@ -7459,12 +8035,12 @@ msgstr "Wajib Masuk" msgid "Signed in as @{0}" msgstr "Masuk sebagai @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Akun serupa" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Lewati" @@ -7472,12 +8048,11 @@ msgstr "Lewati" msgid "Skip this flow" msgstr "Lewati tahap ini" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Lebih kecil" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "Menunda pengingat" @@ -7490,11 +8065,11 @@ msgstr "Pengembang Perangkat Lunak" msgid "Some of your verifications are invalid." msgstr "Beberapa dari verifikasi Anda tidak valid." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Beberapa feed lain yang mungkin Anda suka" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Beberapa orang dapat membalas" @@ -7510,10 +8085,11 @@ msgstr "Seseorang menanggapi {0} ke {1}" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "Ada sesuatu yang kurang benar dengan data yang Anda laporkan. Silakan hubungi bantuan." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Ada yang tidak beres" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Ada yang tidak beres, silakan coba lagi" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Ada yang tidak beres, silakan coba lagi." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Ada yang tidak beres!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "Ada yang tidak beres. Silakan coba lagi." @@ -7539,20 +8118,23 @@ msgstr "Ada yang tidak beres. Silakan coba lagi." msgid "Something wrong? Let us know." msgstr "Ada masalah? Beri tahu kami." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "Maaf! Sesi Anda telah berakhir. Silakan masuk lagi." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Urutkan balasan" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Urutkan balasan dari" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Urutkan balasan ke postingan yang sama berdasarkan:" @@ -7579,7 +8161,7 @@ msgstr "Spam; menyebut atau membalas secara berlebihan" msgid "Sports" msgstr "Olahraga" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "Mulai percakapan, dan percakapan akan muncul di sini." @@ -7601,9 +8183,9 @@ msgstr "Mulai tambahkan orang!" msgid "Start chat with {displayName}" msgstr "Mulai obrolan dengan {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Paket Pemula" @@ -7611,12 +8193,12 @@ msgstr "Paket Pemula" msgid "Starter pack by {0}" msgstr "Paket pemula dari {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Paket pemula dari <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Paket pemula dari Anda" @@ -7638,19 +8220,21 @@ msgstr "Paket pemula memudahkan Anda untuk berbagi feed dan akun favorit Anda de msgid "Status Page" msgstr "Halaman Status" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Langkah {0} dari {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Penyimpanan dibersihkan, Anda perlu memulai ulang aplikasi sekarang." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Storybook" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Ajukan banding" msgid "Submit Appeal" msgstr "Ajukan Banding" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "Kirim laporan" @@ -7676,10 +8260,14 @@ msgstr "Kirim laporan" msgid "Subscribe" msgstr "Berlangganan" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Berlangganan @{0} untuk menggunakan label berikut:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Berlangganan Pelabel" @@ -7692,8 +8280,12 @@ msgstr "Berlangganan pelabel ini" msgid "Subscribe to this list" msgstr "Berlangganan ke daftar ini" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Sukses!" @@ -7705,7 +8297,7 @@ msgstr "Berhasil diverifikasi" msgid "Suggested Accounts" msgstr "Akun yang disarankan" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Disarankan untuk Anda" @@ -7714,26 +8306,26 @@ msgstr "Disarankan untuk Anda" msgid "Suggestive" msgstr "Sugestif" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Terbit" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Terbenam" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Dukungan" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Ganti akun" @@ -7742,24 +8334,24 @@ msgstr "Ganti akun" msgid "Switch Account" msgstr "Beralih Akun" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Ganti akun" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "Beralih ke {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Sistem" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Log sistem" @@ -7767,6 +8359,18 @@ msgstr "Log sistem" msgid "Tags only" msgstr "Hanya tagar" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Beritahu kami lebih lanjut" msgid "Terms" msgstr "Ketentuan" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Ketentuan Layanan" @@ -7848,10 +8454,6 @@ msgstr "Area input teks" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "Terima kasih atas umpan balik Anda! Ini telah dikirim ke operator feed." -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Terima kasih! Email Anda berhasil diverifikasi." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Terima kasih. Laporan Anda telah terkirim." @@ -7864,28 +8466,28 @@ msgstr "Terima kasih, Anda telah berhasil memverifikasi alamat email Anda. Anda msgid "That contains the following:" msgstr "Berisi hal berikut:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Panggilan telah terpakai." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Tidak dapat menemukan paket pemula." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Sekian!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "Itu saja!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "Akun ini dapat berinteraksi kembali dengan Anda setelah blokir dibuka." @@ -7900,7 +8502,7 @@ msgstr "Aplikasi akan dimulai ulang" msgid "The author of this thread has hidden this reply." msgstr "Pembuat utas telah menyembunyikan balasan ini." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Aplikasi web Bluesky" @@ -7920,10 +8522,6 @@ msgstr "Feed Discover" msgid "The Discover feed now knows what you like" msgstr "Feed Discover kini tahu apa yang Anda sukai" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "Alamat email yang Anda masukkan sama dengan alamat email Anda saat ini." - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "Dapatkan pengalaman yang lebih baik dalam aplikasi. Unduh Bluesky sekarang dan kami akan melanjutkan dari langkah terakhir yang Anda tinggalkan." @@ -7944,8 +8542,16 @@ msgstr "Label berikut telah diterapkan pada konten Anda." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "Pengaturan ini akan otomatis diterapkan ke postingan baru. Anda dapat mengubahnya untuk postingan tertentu melalui komposer." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Postingan mungkin telah dihapus." @@ -7953,9 +8559,10 @@ msgstr "Postingan mungkin telah dihapus." msgid "The Privacy Policy has been moved to <0/>" msgstr "Kebijakan Privasi telah dipindahkan ke <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "Video yang dipilih lebih besar dari 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "" #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "Ketentuan Layanan telah dipindahkan ke" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "Kode verifikasi yang Anda berikan tidak valid. Pastikan Anda telah menggunakan tautan verifikasi yang benar atau minta yang baru." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Tema" @@ -7990,14 +8597,14 @@ msgstr "Tema" msgid "There is no time limit for account deactivation, come back any time." msgstr "Tidak ada batasan waktu untuk penonaktifan akun, Anda bisa kembali kapan saja." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Ada masalah saat menghubungkan ke Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Ada masalah saat menghubungi server" @@ -8006,17 +8613,12 @@ msgstr "Ada masalah saat menghubungi server" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Ada masalah saat menghubungi server, silakan periksa koneksi internet Anda dan coba lagi." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Ada masalah saat menghubungi server Anda" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Ada masalah saat mengambil notifikasi. Ketuk di sini untuk mencoba lagi." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Ada masalah saat mengambil postingan. Ketuk di sini untuk mencoba lagi." @@ -8037,7 +8639,7 @@ msgstr "Ada masalah saat mengambil daftar Anda. Ketuk di sini untuk mencoba lagi msgid "There was an issue fetching your service info" msgstr "Ada masalah saat mengambil info layanan Anda" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Ada masalah saat menghapus feed ini. Silakan periksa koneksi internet Anda dan coba lagi." @@ -8052,9 +8654,9 @@ msgstr "Ada masalah saat mengirimkan laporan. Silakan periksa koneksi internet A msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Ada masalah saat memperbarui feed Anda, silakan periksa koneksi internet dan coba lagi." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Ada masalah saat memperbarui feed Anda, silakan periksa koneksi internet msgid "There was an issue! {0}" msgstr "Ada masalah! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Ada masalah! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Ada masalah. Periksa koneksi internet Anda dan coba lagi." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Ada masalah tak terduga dalam aplikasi. Beri tahu kami jika hal ini terjadi pada Anda!" @@ -8089,7 +8691,7 @@ msgstr "Ada masalah tak terduga dalam aplikasi. Beri tahu kami jika hal ini terj msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Terjadi lonjakan pengguna baru di Bluesky! Kami akan mengaktifkan akun Anda secepat mungkin." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Pengaturan ini hanya berlaku untuk feed Mengikuti." @@ -8146,7 +8748,7 @@ msgstr "Konten ini disediakan oleh {0}. Apakah Anda ingin mengaktifkan media eks msgid "This content is not available because one of the users involved has blocked the other." msgstr "Konten ini tidak tersedia karena salah satu pengguna yang terlibat telah memblokir pengguna lainnya." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Konten ini tidak dapat dilihat tanpa akun Bluesky." @@ -8158,6 +8760,10 @@ msgstr "Percakapan ini dilakukan dengan akun yang telah dihapus atau dinonaktifk msgid "This email is already associated with your account." msgstr "Email ini sudah terhubung dengan akun Anda." +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Fitur ini masih dalam versi beta. Anda dapat membaca lebih lanjut tentang ekspor repositori di <0>postingan blog ini." @@ -8170,7 +8776,7 @@ msgstr "Fitur ini tidak tersedia saat menggunakan sandi aplikasi. Silakan masuk msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Fitur ini tidak tersedia saat menggunakan sandi aplikasi. Silakan masuk dengan sandi utama Anda." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Feed ini sedang menerima terlalu banyak trafik dan sementara tidak tersedia. Silakan coba lagi nanti." @@ -8209,11 +8815,11 @@ msgstr "Label ini diterapkan oleh pemosting." msgid "This label was applied by you." msgstr "Label ini diterapkan oleh Anda." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Pelabel ini belum menyatakan label apa yang diterbitkannya, dan mungkin tidak aktif." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Tautan ini akan membawa Anda ke situs web berikut:" @@ -8233,29 +8839,28 @@ msgstr "Daftar ini kosong." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Layanan moderasi ini tidak tersedia. Lihat detail lebih lanjut di bawah. Jika masalah berlanjut, hubungi kami." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Postingan ini mengklaim dibuat pada <0>{0}, tetapi baru terlihat di Bluesky pada <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Postingan ini menggunakan pembatasan interaksi yang tidak dikenali. Anda mungkin perlu memperbarui aplikasi." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Postingan ini telah dihapus." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Postingan ini hanya dapat dilihat oleh pengguna yang masuk. Ini tidak akan terlihat bagi pengguna yang belum masuk." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Postingan ini akan disembunyikan dari semua feed dan utas. Tindakan ini tidak dapat dibatalkan." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "Pembuat postingan ini telah menonaktifkan kutipan." @@ -8263,11 +8868,11 @@ msgstr "Pembuat postingan ini telah menonaktifkan kutipan." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Profil ini hanya dapat dilihat oleh pengguna yang masuk. Ini tidak akan terlihat bagi pengguna yang belum masuk." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Balasan ini akan disortir ke bagian tersembunyi di bawah utas Anda dan akan membisukan notifikasi balasan selanjutnya - baik untuk Anda maupun orang lain." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Layanan ini tidak menyediakan ketentuan layanan atau kebijakan privasi." @@ -8275,6 +8880,10 @@ msgstr "Layanan ini tidak menyediakan ketentuan layanan atau kebijakan privasi." msgid "This should create a domain record at:" msgstr "Ini akan membuat catatan domain di:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Pengguna ini tidak memiliki nama tampilan, dan oleh karena itu tidak dapat diverifikasi." @@ -8316,16 +8925,18 @@ msgstr "Pengguna ini tidak mengikuti siapa pun." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Ini akan menghapus \"{0}\" dari daftar kata yang Anda bisukan. Anda tetap dapat menambahkannya lagi nanti." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Ini akan menghapus @{0} dari daftar akses cepat." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Ini akan menghapus postingan Anda dari kutipan ini untuk semua pengguna, dan menempatkan teks pengganti." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Opsi utas" @@ -8334,24 +8945,27 @@ msgstr "Opsi utas" msgid "Thread preferences" msgstr "Preferensi utas" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Preferensi Utas" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Bersusun" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Mode bersusun" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Preferensi Utas" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "Waktu tersisa: {0, plural, other {# detik}}" @@ -8376,42 +8990,56 @@ msgstr "Kepada siapa Anda ingin mengirimkan laporan ini?" msgid "Today" msgstr "Hari ini" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Beralih dropdown" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Beralih untuk mengaktifkan atau menonaktifkan konten dewasa" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Mengaktifkan atau menonaktifkan suara" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Teratas" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Topik" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Terjemahkan" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Trending" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Tren Video" @@ -8428,14 +9056,10 @@ msgstr "Coba lagi" msgid "TV" msgstr "TV" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Autentikasi Dua Faktor (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Masukkan panggilan Anda" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Ketik pesan Anda di sini" @@ -8453,7 +9077,7 @@ msgstr "Tidak dapat tersambung. Silakan periksa koneksi internet Anda dan coba l #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Tidak dapat terhubung ke layanan. Mohon periksa koneksi internet Anda." msgid "Unable to delete" msgstr "Tidak dapat menghapus" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Buka blokir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Buka blokir" @@ -8486,7 +9126,7 @@ msgstr "Buka blokir" msgid "Unblock account" msgstr "Buka blokir akun" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Buka Blokir Akun?" @@ -8495,13 +9135,13 @@ msgstr "Buka Blokir Akun?" msgid "Unblock list" msgstr "Buka blokir daftar" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Batalkan posting ulang" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Batal posting ulang ({0, plural, other {# postingan ulang}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Berhenti ikuti" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Berhenti ikuti {0}" @@ -8523,7 +9163,7 @@ msgstr "Berhenti ikuti akun" msgid "Unfollows the user" msgstr "Berhenti mengikuti pengguna" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Sayangnya, tidak ada dari labeler yang Anda langgani mendukung tipe laporan ini." @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "Batal suka" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Batal suka ({0, plural, other {# suka}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Bunyikan" @@ -8555,8 +9195,8 @@ msgstr "Bunyikan" msgid "Unmute {tag}" msgstr "Bunyikan {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Bunyikan percakapan" msgid "Unmute list" msgstr "Bunyikan daftar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Bunyikan utas" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Bunyikan video" @@ -8597,8 +9237,8 @@ msgstr "Lepaskan Feed" msgid "Unpin from home" msgstr "Lepaskan sematan dari beranda" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Lepas sematan dari profil" @@ -8614,8 +9254,8 @@ msgstr "{0} dilepaskan dari Beranda" msgid "Unpinned from your feeds" msgstr "Dilepaskan dari daftar feed Anda" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "Batalkan penundaan pengingat email" @@ -8636,7 +9276,7 @@ msgstr "Berhenti langganan pelabel ini" msgid "Unsubscribed from list" msgstr "Telah berhenti berlangganan dari daftar" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Tipe video tidak didukung" @@ -8662,8 +9302,8 @@ msgstr "Perbarui <0>{displayName} dalam Daftar" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "Perbarui email" @@ -8676,17 +9316,17 @@ msgstr "Perbarui ke {domain}" msgid "Update your email" msgstr "Perbarui email Anda" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Gagal memperbarui lampiran kutipan" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Gagal memperbarui visibilitas balasan" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Memperbarui..." @@ -8698,20 +9338,20 @@ msgstr "Unggah foto saja" msgid "Upload a text file to:" msgstr "Unggah berkas teks ke:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Unggah dari Kamera" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Unggah dari Berkas" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Unggah dari Pustaka" msgid "Uploading images..." msgstr "Mengunggah gambar..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Mengunggah keluku tautan..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Mengunggah video..." @@ -8761,6 +9401,10 @@ msgstr "Gunakan yang direkomendasikan" msgid "Use this to sign in to the other app along with your handle." msgstr "Gunakan sandi ini untuk masuk ke aplikasi lain bersama dengan panggilan Anda." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Digunakan oleh:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Daftar pengguna diperbarui" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Nama pengguna atau alamat email" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "pengguna yang diikuti <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "pengguna yang mengikuti <0>@{0}" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Pengguna yang saya ikuti" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Pengguna di \"{0}\"" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Pengguna yang saya ikuti" @@ -8846,11 +9502,11 @@ msgstr "Nilai:" msgid "Verification failed, please try again." msgstr "Verifikasi gagal, silakan coba lagi." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "Pengaturan verifikasi" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "Pengaturan Verifikasi" @@ -8870,31 +9526,37 @@ msgstr "Diverifikasi oleh:" msgid "Verify account" msgstr "Verifikasi akun" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" -msgstr "Verifikasi kode" +msgstr "" #: src/screens/Settings/components/ChangeHandleDialog.tsx:528 #: src/screens/Settings/components/ChangeHandleDialog.tsx:549 msgid "Verify DNS Record" msgstr "Verifikasi DNS" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "Verifikasi email" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "Verifikasi kode email" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Dialog verifikasi email" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Verifikasi Berkas" msgid "Verify this account?" msgstr "Verifikasi akun ini?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Verifikasi email Anda" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Verifikasi Email Anda" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Versi {appVersion}" +msgid "Version {0}" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Video" @@ -8928,7 +9598,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "Video gagal diproses" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Feed Video" @@ -8942,15 +9612,15 @@ msgstr "Video dari {0}: {text}" msgid "Video Games" msgstr "Permainan Video" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Video telah dijeda" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Video sedang diputar" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Video tidak ditemukan." @@ -8958,11 +9628,11 @@ msgstr "Video tidak ditemukan." msgid "Video settings" msgstr "Pengaturan video" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Video diunggah" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Video: {0}" @@ -8979,11 +9649,11 @@ msgstr "Durasi video harus kurang dari 3 menit" msgid "View {0}'s avatar" msgstr "Lihat avatar {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Lihat profil {0}" @@ -8991,7 +9661,7 @@ msgstr "Lihat profil {0}" msgid "View {displayName}'s profile" msgstr "Lihat profil {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Lihat profil pengguna yang diblokir" @@ -9009,7 +9679,6 @@ msgstr "Lihat entri debug" msgid "View details" msgstr "Lihat detail" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Lihat detail untuk melaporkan pelanggaran hak cipta" @@ -9022,23 +9691,23 @@ msgstr "Lihat utas lengkap" msgid "View information about these labels" msgstr "Lihat informasi tentang label ini" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Lihat lainnya" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Lihat profil" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Lihat avatar" @@ -9054,28 +9723,28 @@ msgstr "Lihat verifikasi pengguna ini" msgid "View users who like this feed" msgstr "Lihat pengguna yang menyukai feed ini" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Lihat video" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Lihat daftar akun yang Anda blokir" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "Lihat standar pengaturan interaksi untuk unggahan Anda" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Lihat daftar feed Anda dan jelajahi lebih lanjut" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Lihat daftar moderasi Anda" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Lihat daftar akun yang Anda bisukan" @@ -9083,8 +9752,8 @@ msgstr "Lihat daftar akun yang Anda bisukan" msgid "View your verifications" msgstr "Lihat verifikasi Anda" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Melihat gambar penuh" @@ -9092,16 +9761,20 @@ msgstr "Melihat gambar penuh" msgid "Views video in immersive mode" msgstr "Melihat video dalam mode imersif" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "Kunjungi Situs" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Volume" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Peringatkan konten dan saring dari feed" msgid "Watch now" msgstr "Tonton sekarang" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "" + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "Kami tidak menemukan hasil apa pun untuk tagar tersebut." @@ -9128,7 +9809,7 @@ msgstr "Kami tidak menemukan hasil apa pun untuk tagar tersebut." msgid "We couldn't find any results for that topic." msgstr "Kami tidak menemukan hasil apa pun untuk topik tersebut." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Kami tidak dapat memuat percakapan ini" @@ -9136,6 +9817,10 @@ msgstr "Kami tidak dapat memuat percakapan ini" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Kami perkirakan {estimatedTime} hingga akun Anda siap." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Kami telah mengirimkan email verifikasi baru ke <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "Semoga Anda senang dan betah di sini. Ingat, Bluesky itu:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Kami kehabisan postingan dari akun yang Anda ikuti. Inilah yang terbaru dari <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "Kami sarankan memilih setidaknya dua minat." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Kami telah mengirimkan email ke <0>{0} yang berisi tautan. Silakan klik tautan tersebut untuk menyelesaikan proses verifikasi email." -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Kami tidak dapat memastikan apakah Anda diizinkan untuk mengunggah video. Silakan coba lagi." @@ -9164,10 +9849,14 @@ msgstr "Kami tidak dapat memastikan apakah Anda diizinkan untuk mengunggah video msgid "We were unable to load your birth date preferences. Please try again." msgstr "Kami tidak dapat memuat preferensi tanggal lahir Anda. Silakan coba lagi." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "Kami tidak dapat memuat pelabel yang Anda konfigurasikan saat ini." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Sepertinya ada masalah koneksi. Mohon coba lagi untuk melanjutkan pengaturan akun Anda. Jika terus gagal, Anda dapat melewati langkah ini." @@ -9176,7 +9865,7 @@ msgstr "Sepertinya ada masalah koneksi. Mohon coba lagi untuk melanjutkan pengat msgid "We will let you know when your account is ready." msgstr "Kami akan memberi tahu Anda ketika akun Anda siap." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Kami akan mengirimkan email ke <0>{0} yang berisi tautan. Silakan klik tautan tersebut untuk menyelesaikan proses verifikasi email." @@ -9184,6 +9873,22 @@ msgstr "Kami akan mengirimkan email ke <0>{0} yang berisi tautan. Silakan kl msgid "We'll use this to help customize your experience." msgstr "Kami akan menggunakan ini untuk menyesuaikan pengalaman Anda." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Kami mengalami masalah jaringan, coba lagi" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Kami memperkenalkan lapisan verifikasi baru di Bluesky — tanda centang yang mudah dilihat." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Kami sangat senang Anda bergabung dengan kami!" @@ -9205,15 +9910,15 @@ msgstr "Maaf, kami tidak dapat memuat daftar ini. Jika masalah berlanjut, silaka msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Mohon maaf, untuk saat ini kami tidak dapat memuat kata yang Anda bisukan. Silakan coba lagi." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Maaf, pencarian Anda tidak dapat dilakukan. Mohon coba lagi dalam beberapa menit." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Kami mohon maaf! Postingan yang Anda balas telah dihapus." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Maaf! Kami tidak dapat menemukan halaman yang Anda cari." @@ -9222,6 +9927,26 @@ msgstr "Maaf! Kami tidak dapat menemukan halaman yang Anda cari." msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Maaf! Anda hanya dapat berlangganan dua puluh pelabel, dan Anda telah mencapai batas tersebut." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Selamat datang kembali!" @@ -9240,7 +9965,7 @@ msgstr "Apa nama paket pemula Anda?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Apa kabar?" @@ -9256,11 +9981,11 @@ msgstr "Bahasa apa yang digunakan di postingan ini?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Bahasa apa yang ingin Anda lihat di feed algoritmik Anda?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Siapa yang dapat berinteraksi dengan postingan ini?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Siapa yang dapat membalas" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "Siapa yang dapat memverifikasi?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Waduh!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "Waduh! Tren video gagal dimuat." @@ -9322,12 +10047,12 @@ msgstr "Mengapa pengguna ini perlu ditinjau?" msgid "Write a message" msgstr "Tulis pesan" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Tulis postingan" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Tulis balasan Anda" @@ -9358,11 +10083,11 @@ msgstr "Ya, nonaktifkan" msgid "Yes, delete this starter pack" msgstr "Ya, hapus paket pemula ini" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Ya, lepaskan" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Ya, sembunyikan" @@ -9378,6 +10103,10 @@ msgstr "Kemarin" msgid "You" msgstr "Anda" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "Anda adalah verifikator terpercaya" @@ -9386,6 +10115,10 @@ msgstr "Anda adalah verifikator terpercaya" msgid "You are creating an account on" msgstr "Anda akan membuat akun pada" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Anda sedang dalam antrian." @@ -9403,7 +10136,7 @@ msgstr "Anda tidak lagi bersiaran langsung" msgid "You are not allowed to go live" msgstr "Anda tidak diizinkan untuk siaran langsung" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Anda tidak diizinkan untuk mengunggah video." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "Anda telah diverifikasi" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "Anda telah diverfikasi. Status verifikasi Anda akan hilang jika Anda mengganti nama tampilan Anda. <0>Pelajari selengkapnya. (dalam bahasa Inggris)" @@ -9441,10 +10173,18 @@ msgstr "Anda juga bisa menemukan Feed Kustom baru untuk diikuti." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Anda juga dapat menonaktifkan akun untuk sementara, dan mengaktifkannya kembali kapan saja." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Anda dapat melanjutkan percakapan yang sedang berlangsung terlepas dari pengaturan mana yang Anda pilih." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Sekarang Anda dapat masuk dengan kata sandi baru." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Anda dapat mengaktifkan kembali akun Anda untuk melanjutkan masuk. Profil dan postingan Anda akan terlihat oleh pengguna lain." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "Anda dapat mengatur standar pengaturan interaksi di <0>Pengaturan → Moderasi → Pengaturan interaksi." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Anda bisa mengubahnya nanti melalui pengaturan." @@ -9472,7 +10212,7 @@ msgstr "Anda tidak memiliki pengikut." msgid "You don't follow any users who follow @{name}." msgstr "Anda tidak mengikuti satu pun pengguna yang mengikuti @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "Anda belum memiliki permintaan obrolan saat ini." @@ -9480,15 +10220,15 @@ msgstr "Anda belum memiliki permintaan obrolan saat ini." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Anda belum memiliki kode undangan! Kami akan mengirimkan kode saat Anda sudah sedikit lama di Bluesky." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Anda tidak memiliki feed yang disematkan." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Anda tidak memiliki feed yang disimpan." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Anda telah memblokir atau diblokir oleh pemosting ini." @@ -9502,6 +10242,10 @@ msgstr "Anda telah memblokir pengguna ini" msgid "You have blocked this user. You cannot view their content." msgstr "Anda telah memblokir pengguna ini. Anda tidak dapat melihat konten mereka." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Anda telah membisukan akun ini." msgid "You have muted this user" msgstr "Anda telah membisukan pengguna ini" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Anda belum memiliki percakapan. Mulai sekarang!" @@ -9547,7 +10291,7 @@ msgstr "Anda belum memblokir akun apa pun. Untuk memblokir akun, buka profil mer msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Anda belum membisukan akun apa pun. Untuk membisukan akun, buka profil mereka dan pilih \"Bisukan akun\" dari menu di akunnya." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Anda telah mencapai akhir" @@ -9572,6 +10316,10 @@ msgstr "Anda belum membisukan kata atau tagar apa pun" msgid "You hid this reply." msgstr "Anda menyembunyikan balasan ini." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Anda dapat mengajukan banding atas label non-mandiri jika Anda merasa label tersebut ditempatkan secara tidak tepat." @@ -9592,7 +10340,7 @@ msgstr "Anda hanya boleh menambahkan maksimal 3 feed" msgid "You may only select up to 4 images" msgstr "Anda hanya boleh memilih maksimal 4 gambar" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "Anda harus berusia 13 tahun atau lebih untuk membuat akun." @@ -9600,6 +10348,14 @@ msgstr "Anda harus berusia 13 tahun atau lebih untuk membuat akun." msgid "You must be following at least seven other people to generate a starter pack." msgstr "Anda harus mengikuti setidaknya tujuh orang sebelum membuat paket pemula." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Anda harus memberikan akses ke pustaka foto Anda untuk menyimpan kode QR" @@ -9608,6 +10364,11 @@ msgstr "Anda harus memberikan akses ke pustaka foto Anda untuk menyimpan kode QR msgid "You must select at least one labeler for a report" msgstr "Anda harus memilih setidaknya satu pelabel untuk sebuah laporan" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "Anda perlu memverifikasi email Anda sebelum Anda mengaktifkan email 2FA." @@ -9616,7 +10377,7 @@ msgstr "Anda perlu memverifikasi email Anda sebelum Anda mengaktifkan email 2FA. msgid "You previously deactivated @{0}." msgstr "Anda telah menonaktifkan @{0} sebelumnya." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "Anda mungkin ingin memuat ulang aplikasi sekarang." @@ -9628,16 +10389,20 @@ msgstr "Anda menanggapi {0}" msgid "You reacted {0} to {1}" msgstr "Anda menanggapi {0} pada {1}" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Anda akan keluar dari semua akun." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Anda tidak akan lagi menerima notifikasi untuk utas ini" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Anda sekarang akan menerima notifikasi untuk utas ini" @@ -9657,11 +10422,11 @@ msgstr "Anda: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Anda: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Anda akan mengikuti pengguna dan feed yang disarankan setelah selesai membuat akun!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Anda akan mengikuti pengguna yang disarankan setelah selesai membuat akun!" @@ -9673,9 +10438,9 @@ msgstr "Anda akan mengikuti pengguna ini dan {0} lainnya" msgid "You'll follow these people right away" msgstr "Anda akan otomatis mengikuti para pengguna ini" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Anda akan menerima email di <0>{0} untuk memverifikasi bahwa ini benar Anda." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "Anda telah memilih untuk menyembunyikan kata atau tagar dalam postingan msgid "You've found some people to follow" msgstr "Anda telah menemukan orang-orang untuk diikuti" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Anda telah mencapai bagian akhir feed! Temukan lebih banyak akun lain untuk diikuti." @@ -9711,19 +10480,23 @@ msgstr "Anda telah mencapai bagian akhir feed! Temukan lebih banyak akun lain un msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Anda telah mencapai jumlah maksimum permintaan yang diizinkan. Silakan coba lagi." -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Anda telah mencapai batas harian unggahan video (terlalu banyak bita)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Anda telah mencapai batas harian unggahan video (terlalu banyak video)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Anda kehabisan video untuk ditonton. Mungkin sudah saatnya untuk beristirahat?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Akun Anda" @@ -9735,7 +10508,7 @@ msgstr "Akun Anda telah dihapus" msgid "Your account has been suspended" msgstr "Akun Anda telah ditangguhkan" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Usia akun Anda belum cukup lama untuk menggungah video. Silakan coba lagi nanti." @@ -9751,11 +10524,11 @@ msgstr "Akun Anda dinyatakan telah melanggar <0>Ketentuan Layanan Bluesky Social msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "Banding Anda telah diajukan. Jika banding Anda berhasil, Anda akan menerima email." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Tanggal lahir Anda" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Peramban Anda tidak mendukung format video. Silakan coba peramban lain." @@ -9771,13 +10544,15 @@ msgstr "Pilihan Anda akan diingat untuk tautan selanjutnya. Anda dapat mengubahn msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Nama panggilan Anda <0>{0} akan otomatis dicadangkan untuk Anda. Anda bisa kembali menggantinya kapan saja dari akun ini." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "Alamat email Anda sudah diperbarui tapi belum diverifikasi. Langkah selanjutnya, silakan verifikasi surel baru Anda." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Email Anda tidak valid." @@ -9786,15 +10561,11 @@ msgstr "Email Anda tidak valid." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "Email Anda masih belum terverifikasi. Silakan verifikasi email Anda untuk dapat menikmati semua fitur dari Bluesky." -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Alamat email Anda belum diverifikasi. Ini merupakan langkah keamanan penting yang kami rekomendasikan." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "Suka pertama Anda!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "Pengikut Anda" @@ -9806,19 +10577,15 @@ msgstr "Feed mengikuti Anda kosong! Ikuti lebih banyak pengguna untuk melihat ap msgid "Your full handle will be <0>@{0}" msgstr "Panggilan lengkap Anda akan menjadi <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "Nama pengguna lengkap Anda akan menjadi <0> {0} " - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "Minat Anda" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "Minat Anda telah diperbarui!" @@ -9835,15 +10602,15 @@ msgstr "Kata yang Anda bisukan" msgid "Your password has been changed successfully!" msgstr "Kata sandi Anda telah berhasil diubah!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "Kata sandi Anda harus terdiri dari setidaknya 8 karakter." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Postingan Anda telah dipublikasikan" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Postingan Anda telah dipublikasikan" @@ -9851,15 +10618,19 @@ msgstr "Postingan Anda telah dipublikasikan" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Postingan, suka, dan pemblokiran Anda bersifat publik. Sedangkan pembisuan bersifat privat." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Profil, postingan, feed, dan daftar Anda tidak akan terlihat lagi oleh pengguna Bluesky lain. Anda dapat mengaktifkan kembali kapan saja dengan cara masuk ke akun." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Balasan Anda telah dipublikasikan" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "Laporan anda akan dikirimkan ke <0>{0}." @@ -9867,7 +10638,7 @@ msgstr "Laporan anda akan dikirimkan ke <0>{0}." msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Laporan Anda akan dikirim ke Layanan Moderasi Bluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "Minat yang anda pilih membantu kami menyajikan konten yang Anda inginkan." diff --git a/src/locale/locales/it/messages.po b/src/locale/locales/it/messages.po index 9e62e9916d..9464717c6a 100644 --- a/src/locale/locales/it/messages.po +++ b/src/locale/locales/it/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: it\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 01:46\n" "Last-Translator: \n" "Language-Team: Italian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,7 +27,7 @@ msgstr "(attivo)" msgid "(contains embedded content)" msgstr "(contiene allegati)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(nessuna email)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# ripubblicazione} other {# ripubblicazioni}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# secondo} other {# secondi}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# elemento non letto} other {# elementi non letti}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {# elemento non letto} other {# elementi non letti}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {# mese} other {# mesi}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {follower} other {follower}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {seguito} other {seguiti}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {mi piace} other {mi piace}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {mi piace} other {mi piace}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {post} other {post}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {citazione} other {citazioni}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {repost} other {repost}}" @@ -135,6 +138,10 @@ msgstr "{0} <0>in <1>tag" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>in <1>testo e tag" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} seguiti" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "{0} è in diretta" @@ -143,11 +150,15 @@ msgstr "{0} è in diretta" msgid "{0} is not a valid URL" msgstr "{0} non è un URL valido" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "{0} non è disponibile" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} aggiunti questa settimana" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} di {1}" @@ -164,8 +175,16 @@ msgstr "{0} ha reagito con {1}" msgid "{0} reacted {1} to {2}" msgstr "{0} ha reagito con {1} a {2}" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0}, un feed di {1}, è piaciuto a {2}" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0}, una lista di {1}" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "Foto profilo di {0}" @@ -197,12 +216,12 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}s" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# elemento non letto} other {# elementi non letti}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Starter Pack di {displayName}" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {ora} other {ore}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuto} other {minuti}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} ti hanno seguito" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "A {firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} è piaciuto il tuo feed personalizzato" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "A {firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} è piaciuto il tuo post" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "A {firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} è piaciuto il tuo repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} hanno rimosso le loro verifiche dal tuo account" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} hanno ripubblicato il tuo post" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} hanno ripubblicato il tuo repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} si sono iscritti al tuo starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} ti hanno verificato" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} ha iniziato a seguirti" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} ha iniziato a seguirti a sua volta" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "A {firstAuthorLink} è piaciuto il tuo feed personalizzato" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "A {firstAuthorLink} è piaciuto il tuo post" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "A {firstAuthorLink} è piaciuto il tuo repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} ha rimosso la propria verifica dal tuo account" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} ha ripubblicato il tuo post" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} ha ripubblicato il tuo repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} si è iscritto con il tuo starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} ti ha verificato" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} hanno iniziato a seguirti" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "A {firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} è piaciuto il tuo feed personalizzato" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "A {firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} è piaciuto il tuo post" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "A {firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} è piaciuto il tuo repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} hanno rimosso le loro verifiche dal tuo account" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} hanno ripubblicato il tuo post" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} hanno ripubblicato il tuo repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} si sono iscritti al tuo starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} ti hanno verificato" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} ha iniziato a seguirti" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} ha iniziato a seguirti a sua volta" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "A {firstAuthorName} è piaciuto il tuo feed personalizzato" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "A {firstAuthorName} è piaciuto il tuo post" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "A {firstAuthorName} è piaciuto il tuo repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} ha rimosso la propria verifica dal tuo account" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} ha ripubblicato il tuo post" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} ha ripubblicato il tuo repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} si è iscritto al tuo starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} ti ha verificato" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} seguiti" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "{handle} non può ricevere messaggi" @@ -392,7 +410,7 @@ msgstr "{joinedAllTimeCount, plural, other {# utenti si sono uniti}}!" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "{minutes, plural, one {# minuto} other {# minuti}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# elemento non letto} other {# elementi non letti}}" @@ -432,12 +450,12 @@ msgstr "Verifiche di {userName}" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, e {2, plural, one {# altro} other {# altri}} sono inclusi nel tuo starter pack" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, e {2, plural, one {# altro} other {# altri}} sono inclusi nel tuo starter pack" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {follower} other {follower}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {seguito} other {seguiti}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} e<1> <2>{1} sono inclusi nel tuo starter pack" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} è incluso nel tuo starter pack" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} membri" @@ -466,11 +484,11 @@ msgstr "<0>{0} membri" msgid "<0>{date} at {time}" msgstr "<0>{date} alle {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Sperimentale: Attivando questa opzione riceverai solo le notifiche di risposte e citazioni dagli utenti che segui. Col tempo continueremo ad aggiungere ulteriori controlli." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<0>Accedi<1> o <2>crea un account<3> <4>per cercare notizie, sport, politica e tutto il resto che accade su Bluesky." -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Tu e<1> <2>{0} sono inclusi nel tuo starter pack" @@ -503,10 +521,14 @@ msgstr "un messaggio" msgid "A new form of verification" msgstr "Una nuova forma di verifica" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "Uno screenshot di una pagina del profilo con un'icona a forma di campanella accanto al pulsante Segui, che indica la nuova funzione di notifica delle attività." + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Risorse aggiuntive" @@ -524,25 +546,25 @@ msgstr "Accetta richiesta" msgid "Accept Request" msgstr "Accetta richiesta" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Accessibilità" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Impostazioni di accessibilità" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Account seguito" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Account silenziato" msgid "Account Muted by List" msgstr "Account silenziato dalla lista" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Opzioni dell'account" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Account rimosso dall'accesso rapido" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Non segui più questo account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Account riattivato" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Gli account con una spunta blu dentellata <0><1/> possono verificare l'identità di altri account. I certificatori attendibili sono selezionati da Bluesky." +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "Attività da altri" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "Notifiche attività" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Aggiungi" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Aggiungi {0} utenti per continuare" @@ -634,8 +666,8 @@ msgstr "Aggiungi account" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Aggiungi testo alternativo" msgid "Add alt text (optional)" msgstr "Aggiungi testo alternativo (opzionale)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Aggiungi un altro account" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Aggiungi un altro post" @@ -670,8 +702,8 @@ msgstr "Aggiungi password per app" msgid "Add emoji reaction" msgstr "Aggiungi reazione con emoji" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Aggiungi ulteriori dettagli (facoltativo)" @@ -683,7 +715,7 @@ msgstr "Aggiungi parola silenziata con le impostazioni indicate" msgid "Add muted words and tags" msgstr "Aggiungi parole e tag silenziati" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Aggiungi nuovo post" @@ -704,7 +736,7 @@ msgstr "Aggiungi reazione" msgid "Add recommended feeds" msgstr "Aggiungi feed consigliati" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Aggiungi dei feed al tuo starter pack!" @@ -725,10 +757,6 @@ msgstr "Aggiungi feed" msgid "Add to lists" msgstr "Aggiungi a liste" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Aggiungi ai miei feed" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "Aggiungi utente alla lista" @@ -738,11 +766,11 @@ msgstr "Aggiungi utente alla lista" msgid "Added to list" msgstr "Aggiunto alla lista" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Aggiunto ai miei feed" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "Dettagli aggiuntivi (massimo 1000 caratteri)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Ulteriori dettagli (massimo 300 caratteri)" @@ -750,18 +778,18 @@ msgstr "Ulteriori dettagli (massimo 300 caratteri)" msgid "Adult" msgstr "Esplicito" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Contenuto per adulti" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "I contenuti per adulti possono essere abilitati solo dal sito Web a <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Il contenuto per adulti è disattivato." @@ -770,16 +798,32 @@ msgstr "Il contenuto per adulti è disattivato." msgid "Adult Content labels" msgstr "Etichette per contenuti per adulti" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Avanzate" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "Verifica dell’età" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "Impossibile inviare la richiesta di verifica dell’età. Riprova." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "Verifica dell’età inviata con successo" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "La verifica dell’età richiede solo pochi minuti" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "alice@example.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Tutte" @@ -793,7 +837,7 @@ msgstr "Tutti gli account sono stati seguiti!" msgid "All languages" msgstr "Tutte le lingue" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Tutti i feed che hai salvato, in un unico posto." @@ -802,16 +846,21 @@ msgstr "Tutti i feed che hai salvato, in un unico posto." msgid "Allow access to your direct messages" msgstr "Consenti l'accesso ai tuoi messaggi" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Consenti nuovi messaggi da" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "Permetti ad altri di ricevere notifiche dei tuoi post" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Consenti citazioni" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Consenti risposte da:" @@ -828,13 +877,13 @@ msgstr "Hai già un codice?" msgid "Already signed in as @{0}" msgstr "Hai effettuato l'accesso come @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "Testo alternativo" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Testo alternativo" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Il testo alternativo descrive le immagini per gli utenti non vedenti ed ipovedenti, fornendo un contesto a tutti." @@ -861,27 +910,19 @@ msgstr "Il testo alternaivo verrà troncato. {MAX_ALT_TEXT, plural, other {Limit msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "È stata inviata un'email a {0}. Include un codice di conferma che puoi inserire di seguito." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "Abbiamo inviato un'email al tuo indirizzo precedente, {currentEmail}. Include un codice di conferma che puoi inserire qui sotto." - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Un email è stata inviata! Inserisci qui sotto il codice di conferma presente nell'email." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Si è verificato un errore" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Si è verificato un errore" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Si è verificato un errore durante la compressione del video." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "Si è verificato un errore recuperando il feed." @@ -889,11 +930,11 @@ msgstr "Si è verificato un errore recuperando il feed." msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Si è verificato un errore nel creare il tuo starter pack. Vuoi riprovare?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Si è verificato un errore durante il caricamento del video. Riprova più tardi." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Si è verificato un errore durante il caricamento del video. Riprova." @@ -910,7 +951,7 @@ msgstr "Si è verificato un errore durante la selezione del video" msgid "An error occurred while trying to follow all" msgstr "Si è verificato un errore nel seguire tutti" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Si è verificato un errore nel caricare il video." @@ -934,8 +975,8 @@ msgstr "Si è verificato un problema nell'aprire la chat" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "si è verificato un errore sconosciuto" msgid "an unknown labeler" msgstr "un etichettatore sconosciuto" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "e" @@ -963,10 +1004,14 @@ msgstr "e" msgid "Animals" msgstr "Animali" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "GIF animata" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "Annuncio" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "Annuncio delle verifiche in Bluesky" @@ -980,7 +1025,13 @@ msgstr "Comportamento antisociale" msgid "Anybody can interact" msgstr "Tutti possono interagire" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "Chiunque mi segua" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "I nomi delle password per app possono contenere solo lettere, numeri, sp msgid "App password names must be at least 4 characters long" msgstr "I nomi delle password per app devono essere lunghi almeno 4 caratteri" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Password per app" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Password per app" @@ -1053,10 +1104,10 @@ msgstr "Revisione sospensione" msgid "Appeal this decision" msgstr "Fai ricorso contro questa decisione" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Aspetto" @@ -1065,12 +1116,20 @@ msgstr "Aspetto" msgid "Apply default recommended feeds" msgstr "Applica i feed consigliati predefiniti" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "Applica pull request" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Archiviato da {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Post archiviato" @@ -1078,7 +1137,7 @@ msgstr "Post archiviato" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Eliminare la password per app \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Eliminare questo messaggio? Il messaggio verrà eliminato per te, ma non per gli altri partecipanti." @@ -1098,19 +1157,15 @@ msgstr "Vuoi abbandonare questa conversazione?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Abbandonare questa conversazione? I messaggi verranno eliminati per te, ma non per gli altri partecipanti." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Confermi di voler rimuovere {0} dai tuoi feed?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Vuoi rimuoverlo dai tuoi feed?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Scartare questa bozza?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Scartare questo post?" @@ -1131,29 +1186,26 @@ msgstr "Arte" msgid "Artistic or non-erotic nudity." msgstr "Nudità artistica o non erotica." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "Assegna argomento per l'algoritmo" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Almeno 3 caratteri" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Le opzioni di riproduzione automatica sono state spostate nelle <0>impostazioni di contenuti e media." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Riproduci automaticamente video e GIF" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "Disponibile" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Riproduci automaticamente video e GIF" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Indietro" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Vai ai messaggi" @@ -1195,28 +1247,44 @@ msgstr "Prima di creare uno starter pack, devi verificare la tua email." msgid "Before you can accept this chat request, you must first verify your email." msgstr "Devi verificare il tuo indirizzo email prima di poter accettare questa richiesta di chat." +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "Devi verificare il tuo indirizzo email prima di poter ricevere notifiche relative ai post di {name}." + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "Devi verificare il tuo indirizzo email prima di poter inviare un messaggio a un altro utente." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "Inizia" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "Inizia il processo di verifica dell'età" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "Inizia il processo di verifica dell'età compilando i campi sottostanti." + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Compleanno" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Blocca" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Blocca" msgid "Block account" msgstr "Blocca account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Bloccare account?" @@ -1262,20 +1330,20 @@ msgstr "Blocca utente" msgid "Block User" msgstr "Blocca utente" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Bloccato" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Account bloccati" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Account bloccati" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Gli account bloccati non possono rispondere alle tue discussioni, menzionarti o interagire in nessun altro modo con te." @@ -1284,11 +1352,11 @@ msgstr "Gli account bloccati non possono rispondere alle tue discussioni, menzio msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Gli account bloccati non possono rispondere alle tue discussioni, menzionarti, o interagire in nessun altro modo con te. Non vedrai il loro contenuto e non vedranno il tuo." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Post bloccato." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Il blocco non impedisce all'etichettatore di inserire etichette sul tuo account." @@ -1309,11 +1377,12 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky non può confermare l'autenticità della data dichiarata." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1347,6 +1416,14 @@ msgstr "Bluesky non mostrerà il tuo profilo e i tuoi post agli utenti che non h msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky verificherà in modo proattivo gli account notevoli e autentici." +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "Linee guida della community di Bluesky" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "Linee guida della community aggiornate di Bluesky" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,25 +1445,22 @@ msgstr "Sfoca le immagini e filtra dai feed" msgid "Books" msgstr "Libri" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" -msgstr "Scopri altri account dalla Ricerca" +msgstr "Scopri altri account nella pagina Esplora" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" -msgstr "Scopri nuovi feed dalla Ricerca" +msgstr "Scopri nuovi feed nella pagina Esplora" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Scopri nuovi suggerimenti" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" -msgstr "Scopri nuovi suggerimenti dalla Ricerca" +msgstr "Scopri nuovi suggerimenti nella pagina Esplora" #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Attività commerciale" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Di {0}" @@ -1428,15 +1502,23 @@ msgstr "Di {0}" msgid "By <0>{0}" msgstr "Di <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "Facendo clic su \"Continua\" dichiari di aver compreso e accettato questi aggiornamenti." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "Continuando, accetti i <0>termini di utilizzo di KWS e riconosci che KWS memorizzerà il tuo stato verificato con il tuo indirizzo email crittografato, in conformità con l'<1>informativa sulla privacy di KWS. Ciò significa che non dovrai verificare nuovamente la tua identità la prossima volta che utilizzerai questo indirizzo email in altre app, giochi e servizi basati sulla tecnologia KWS." + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Iscrivendoti accetti l'<0>Informativa sulla privacy." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Iscrivendoti accetti i <0>Termini di servizio e l'<1>Informativa sulla privacy." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Iscrivendoti accetti i <0>Termini di servizio." @@ -1448,14 +1530,17 @@ msgstr "Da te" msgid "Camera" msgstr "Fotocamera" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Fotocamera" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Annulla" @@ -1500,11 +1582,7 @@ msgstr "Annulla l'eliminazione dell'account" msgid "Cancel image crop" msgstr "Annulla il ritaglio dell'immagine" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Annulla la modifica del profilo" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Annnulla la citazione del post" @@ -1516,14 +1594,10 @@ msgstr "Annulla la riattivazione e disconnettiti" msgid "Cancel search" msgstr "Annulla la ricerca" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Annulla l'apertura del sito collegato" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Non puoi interagire con un utente bloccato" @@ -1553,17 +1627,12 @@ msgstr "Cambia l'icona dell'app in \"{0}\"" msgid "Change app language" msgstr "Cambia lingua app" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Cambia indirizzo email" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Modifica il nome utente" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Modifica servizio di moderazione" @@ -1579,14 +1648,6 @@ msgstr "Cambia la lingua del post in {suggestedLanguageName}" msgid "Change report reason" msgstr "Modifica motivo della segnalazione" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Modifica la tua email" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Modifica il tuo indirizzo email" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Cambia icona dell'app" @@ -1596,10 +1657,15 @@ msgstr "Cambia icona dell'app" msgid "Changes hosting provider" msgstr "Cambia il fornitore di hosting" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "Modifiche salvate" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Messaggi" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Conversazione eliminata" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "Messaggi chat - silenziosi" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "Messaggi chat - suono" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Conversazione silenziata" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "Richieste" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Richieste di messaggi" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Impostazioni chat" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Impostazioni chat" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Conversazione riattivata" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Messaggi" @@ -1661,7 +1738,7 @@ msgstr "Controlla la tua posta in arrivo, dovrebbe contenere un'email con il cod msgid "Choose domain verification method" msgstr "Scegli il metodo di verifica del dominio" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Scegli feed" @@ -1669,7 +1746,7 @@ msgstr "Scegli feed" msgid "Choose for me" msgstr "Scegli per me" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Scegli utenti" @@ -1685,23 +1762,23 @@ msgstr "Scegli questo colore per il tuo avatar" msgid "Choose your account provider" msgstr "Scegli il fornitore del tuo account" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Personalizza la tua cronologia! I feed creati dalla collettività ti permettono di scoprire i contenuti di tuo interesse." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Scegli la tua password" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Scegli il tuo nome utente" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Cancella tutti i dati in archivio" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Cancella tutti i dati in archivio (poi ricomincia)" @@ -1714,23 +1791,27 @@ msgstr "Svuota cache immagini" msgid "Clear search query" msgstr "Annulla la ricerca" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "Fai clic per informazioni" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "clicca qui" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "Fai clic qui per riavviare il processo di verifica." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "Fai clic qui per aggiornare il tuo indirizzo email" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Clicca per disattivare le citazioni di questo post." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Clicca per attivare le citazioni di questo post." @@ -1750,14 +1831,16 @@ msgstr "Clima" msgid "Clip 🐴 clop 🐴" msgstr "Clop 🐴 clop 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Clop 🐴 clop 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Chiudi" @@ -1789,13 +1876,15 @@ msgstr "Chiudi l'avviso" msgid "Close bottom drawer" msgstr "Chiudi menu a scomparsa inferiore" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Chiudi la finestra di dialogo" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Chiudi il menu a scomparsa" @@ -1804,7 +1893,7 @@ msgstr "Chiudi il menu a scomparsa" msgid "Close emoji picker" msgstr "Chiudi selettore emoji" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Chiudi la finestra di dialogo GIF" @@ -1822,7 +1911,7 @@ msgstr "Chiudi il visualizzatore di immagini" msgid "Close menu" msgstr "Chiudi menu" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Chiudi la finestra" @@ -1830,7 +1919,7 @@ msgstr "Chiudi la finestra" msgid "Closes password update alert" msgstr "Chiude l'avviso di aggiornamento della password" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "Annulla la creazione del post ed elimina la bozza" @@ -1843,16 +1932,16 @@ msgstr "Chiude il selettore emoji" msgid "Closes viewer for header image" msgstr "Chiude il visualizzatore dell'immagine di intestazione" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Comprimi la lista di utenti" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Comprime l'elenco degli utenti per una determinata notifica" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Modalità colore" @@ -1870,7 +1959,8 @@ msgstr "Commedia" msgid "Comics" msgstr "Fumetti" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Linee guida della community" @@ -1879,38 +1969,34 @@ msgstr "Linee guida della community" msgid "Complete onboarding and start using your account" msgstr "Completa la registrazione e inizia a usare il tuo account" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Completa la challenge" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Scrivi un nuovo post" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Scrivi post fino a {0, plural, other {# caratteri}}" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Scrivi la risposta" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Compressione del video..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Configura l'impostazione del filtro dei contenuti per la categoria: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Configurato nelle <0>impostazioni di moderazione." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Conferma le impostazioni della lingua del contenuto" msgid "Confirm delete account" msgstr "Conferma l'eliminazione dell'account" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Conferma la tua età:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Conferma la tua data di nascita" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Conferma la tua data di nascita" msgid "Confirmation code" msgstr "Codice di conferma" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Codice di conferma" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Connessione in corso..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "Problema di connessione" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "Contatta il nostro team di moderazione" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Contatta il supporto" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "Contattaci" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Contenuti e media" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Contenuti e media" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Contenuti e media" @@ -1977,7 +2069,8 @@ msgstr "Contenuti e media" msgid "Content Blocked" msgstr "Contenuto bloccato" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Filtri dei contenuti" @@ -2006,10 +2099,12 @@ msgstr "Avviso sul contenuto" msgid "Content warnings" msgstr "Avviso sui contenuti" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Sfondo del menu contestuale, clicca per chiudere il menu." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Continua" msgid "Continue as {0} (currently signed in)" msgstr "Continua come {0} (attualmente connesso)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "Continua thread" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Continua thread..." @@ -2029,6 +2129,10 @@ msgstr "Continua thread..." msgid "Continue to next step" msgstr "Vai al passaggio successivo" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "Conversazione" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Copiato" msgid "Copied build version to clipboard" msgstr "Versione della build copiata negli appunti" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Copia la versione negli appunti" msgid "Copy" msgstr "Copia" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "Copia comunque" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Copia password per app" @@ -2087,8 +2187,8 @@ msgstr "Copia password per app" msgid "Copy at:// URI" msgstr "Copia URL at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Copia DID dell'autore" @@ -2120,34 +2220,34 @@ msgstr "Copia link" msgid "Copy link to list" msgstr "Copia link" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Copia link del post" #: src/view/com/profile/ProfileMenu.tsx:243 #: src/view/com/profile/ProfileMenu.tsx:254 msgid "Copy link to profile" -msgstr "Copia collegamento al profilo" +msgstr "Copia link al profilo" #: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Copy link to starter pack" -msgstr "Copia collegamento allo starter pack" +msgstr "Copia link allo starter pack" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Copia testo del messaggio" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Copia URL at:// del post" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Copia testo del post" @@ -2159,11 +2259,25 @@ msgstr "Copia codice QR" msgid "Copy TXT record value" msgstr "Copia valore del record TXT" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Politica sul diritto d'autore" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "Impossibile connettersi al feed personalizzato" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "Impossibile connettersi al servizio feed" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "Impossibile trovare il profilo" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "Errore nel silenziare la conversazione" msgid "Could not process your video" msgstr "Impossibile processare il tuo video" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "Impossibile salvare le modifiche: {0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "Non è stato possibile aggiornare le impostazioni di notifica" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Crea" @@ -2195,7 +2317,7 @@ msgstr "Crea un codice QR per uno starter pack" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Crea uno starter pack" @@ -2205,21 +2327,22 @@ msgstr "Crea uno starter pack per me" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Crea account" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Crea un account" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Crea un account" @@ -2241,7 +2364,7 @@ msgstr "Creane un altro" msgid "Create new account" msgstr "Crea un nuovo account" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Crea un report per {0}" @@ -2268,7 +2391,7 @@ msgstr "Personalizzato" msgid "Customization options" msgstr "Opzioni di personalizzazione" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Personalizza chi può interagire con questo post." @@ -2278,12 +2401,12 @@ msgstr "Personalizza la tua esperienza su Bluesky" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Scuro" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Scuro" @@ -2292,21 +2415,21 @@ msgstr "Scuro" msgid "Dark mode" msgstr "Aspetto scuro" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Tema scuro" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Data di nascita" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Disattiva account" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Eliminare errori nella Moderazione" @@ -2314,7 +2437,7 @@ msgstr "Eliminare errori nella Moderazione" msgid "Debug panel" msgstr "Pannello per il debug" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Predefinito" @@ -2322,8 +2445,8 @@ msgstr "Predefinito" msgid "Default icons" msgstr "Icone predefinite" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Icone predefinite" msgid "Delete" msgstr "Elimina" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Elimina account" @@ -2355,7 +2478,7 @@ msgstr "Eliminare la password per app?" msgid "Delete chat" msgstr "Elimina conversazione" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Elimina il record della dichiarazione della chat" @@ -2370,7 +2493,7 @@ msgstr "Elimina conversazione" msgid "Delete Conversation" msgstr "Elimina conversazione" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Elimina per me" @@ -2378,11 +2501,11 @@ msgstr "Elimina per me" msgid "Delete list" msgstr "Elimina lista" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Elimina messaggio" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Elimina messaggio per me" @@ -2390,9 +2513,9 @@ msgstr "Elimina messaggio per me" msgid "Delete my account" msgstr "Elimina il mio account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Elimina il post" @@ -2409,11 +2532,11 @@ msgstr "Eliminare lo starter pack?" msgid "Delete this list?" msgstr "Eliminare questa lista?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Eliminare questo post?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Eliminato" @@ -2422,15 +2545,20 @@ msgstr "Eliminato" msgid "Deleted Account" msgstr "Account eliminato" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "Lista eliminata" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Post eliminato." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Descrizione" @@ -2447,12 +2575,12 @@ msgstr "La descrizione è troppo lunga. {DESCRIPTION_MAX_GRAPHEMES, plural, othe msgid "Descriptive alt text" msgstr "Testo descrittivo alternativo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Scollega citazione" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Scollegare la citazione del post?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Modalità sviluppatore attivata" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Opzioni sviluppatore" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Dialog: configura chi può interagire con questo post" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Soffuso" @@ -2492,27 +2620,27 @@ msgstr "Disabilita 2FA via email" msgid "Disable Email 2FA" msgstr "Disattiva 2FA via email" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Disattiva il feedback tattile" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Disattiva sottotitoli" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Disabilitato" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Scartare" @@ -2520,11 +2648,11 @@ msgstr "Scartare" msgid "Discard changes?" msgstr "Scartare le modifiche?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Scartare la bozza?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Scartare il post?" @@ -2542,7 +2670,7 @@ msgstr "Scopri feed" msgid "Discover new custom feeds" msgstr "Scopri nuovi feed personalizzati" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Scopri nuovi feed" @@ -2550,7 +2678,7 @@ msgstr "Scopri nuovi feed" msgid "Dismiss" msgstr "Ignora" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Ignora errore" @@ -2562,26 +2690,26 @@ msgstr "Ignora la guida iniziale" msgid "Dismiss interests" msgstr "Ignora gli interessi" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "Chiudi messaggio" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Ignora questa sezione" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Aumenta dimensione dell'icona del testo alternativo" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Nome visualizzato" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Nome visualizzato" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Il nome visualizzato è troppo lungo" @@ -2603,15 +2731,11 @@ msgstr "Non applicare questa parola silenziata agli utenti seguiti" msgid "Does not include nudity." msgstr "Non include nudità." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Non inizia o termina con un trattino" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Dominio verificato!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Non hai un codice o ne hai bisogno di uno nuovo? <0>Fai clic qui." @@ -2619,6 +2743,15 @@ msgstr "Non hai un codice o ne hai bisogno di uno nuovo? <0>Fai clic qui." msgid "Don't see an email? <0>Click here to resend." msgstr "Non trovi l'email? <0>Fai clic qui per inviarla di nuovo." +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "Non mostrare più" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "Non preoccuparti! Tutti i messaggi e le impostazioni esistenti sono stati salvati e saranno disponibili dopo che avrai dimostrato di essere un adulto." + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "Tocca due volte o tieni premuto il messaggio per aggiungere una reazione msgid "Double tap to close the dialog" msgstr "Tocca due volte per chiudere la finestra" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Tocca due volte per mettere mi piace" @@ -2673,7 +2806,7 @@ msgstr "Scarica Bluesky" msgid "Download CAR file" msgstr "Scarica il file CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Trascina e rilascia per aggiungere immagini" @@ -2689,18 +2822,10 @@ msgstr "es. alice" msgid "e.g. Alice Lastname" msgstr "es. Mario Rossi" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "es. Alice Roberts" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "es. alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "es. Artista, amo i gatti, mi piace leggere." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Es: nudi artistici." @@ -2725,10 +2850,11 @@ msgstr "es. Utenti che rispondono ripetutamente con annunci." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Ogni codice funziona per un solo uso. Riceverai periodicamente più codici di invito." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Modifica" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Modifica" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Modifica avatar" @@ -2749,12 +2875,12 @@ msgstr "Modifica i feed" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Modifica immagine" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Modifica impostazioni di interazione" @@ -2776,33 +2902,33 @@ msgstr "Modifica stato in diretta" msgid "Edit Moderation List" msgstr "Modifica lista di moderazione" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Modifica i miei feed" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Modifica il mio profilo" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "Modifica notifiche da {0}" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Modifica utenti" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Modifica impostazioni di interazione del post" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Modifica profilo" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Modifica profilo" @@ -2814,19 +2940,11 @@ msgstr "Modifica starter pack" msgid "Edit User List" msgstr "Modifica lista" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Modifica chi può rispondere" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Modifica il tuo nome visualizzato" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Modifica la descrizione del tuo profilo" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Modifica il tuo starter pack" @@ -2839,8 +2957,8 @@ msgstr "Formazione scolastica" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "L'autore di questa lista ti ha bloccato o tu hai bloccato l'autore." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "Email" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "2FA via email disattivata" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "2FA via email abilitata" @@ -2865,10 +2983,6 @@ msgstr "Email inviata nuovamente" msgid "Email sent!" msgstr "Email inviata!" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "Email aggiornata!" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "Verifica email completata!" @@ -2883,8 +2997,8 @@ msgstr "Incorpora il codice HTML" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Incorpora il post" @@ -2892,7 +3006,7 @@ msgstr "Incorpora il post" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incorpora questo post nel tuo sito web. Copia il seguente ritaglio e incollalo nel codice HTML del tuo sito web." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Lettore video incorporato" @@ -2906,7 +3020,7 @@ msgstr "Abilita" msgid "Enable {0} only" msgstr "Abilita solo {0}" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Attiva il contenuto per adulti" @@ -2919,16 +3033,20 @@ msgstr "Abilita 2FA via email" msgid "Enable external media" msgstr "Abilita i media esterni" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Attiva i lettori multimediali per" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Attiva notifiche prioritarie" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "Abilita le notifiche per un account visitandone il profilo e premendo l'<0>icona a forma di campanella <1/>." -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "Abilita notifiche push" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Attiva sottotitoli" @@ -2941,17 +3059,14 @@ msgstr "Abilita solo questa fonte" msgid "Enable trending topics" msgstr "Abilita gli argomenti di tendenza" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Attiva i video di tendenza nel feed Discover" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Attiva i video di tendenza nel feed Discover." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Abilitato" @@ -2963,7 +3078,7 @@ msgstr "Fine del feed" msgid "Ensure you have selected a language for each subtitle file." msgstr "Assicurati di aver selezionato una lingua per ogni file dei sottotitoli." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Inserisci una password" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Inserisci una parola o tag" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "Inserisci codice" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Inserisci codice" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Passa a schermo intero" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Inserisci la tua data di nascita" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Inserisci il tuo indirizzo email" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Inserisci il tuo nuovo indirizzo email qui sotto." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Inserisci la tua password" @@ -3022,7 +3129,7 @@ msgstr "Inserisci la tua password" msgid "Enter your username and password" msgstr "Inserisci il tuo nome utente e la tua password" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Passa a schermo intero" @@ -3030,16 +3137,28 @@ msgstr "Passa a schermo intero" msgid "Entertainment" msgstr "Intrattenimento" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Errore" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "Errore durante il caricamento del post" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "Errore durante il caricamento delle preferenze" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "Messaggio d'errore" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "C'è stato un errore durante il salvataggio del file" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Errore nella risposta del captcha." @@ -3047,27 +3166,34 @@ msgstr "Errore nella risposta del captcha." msgid "Error:" msgstr "Errore:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "Errore: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Tutti" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Tutti possono rispondere" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Tutti possono rispondere a questo post." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Tutti" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "Tutto il resto" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Escludi utenti che segui" msgid "Excludes users you follow" msgstr "Esclude gli utenti che segui" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Esci da schermo intero" @@ -3106,24 +3232,28 @@ msgstr "Uscita dalla visualizzazione dell'immagine" msgid "Expand alt text" msgstr "Espandi il testo alternativo" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Espandi la lista di utenti" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Espandi o comprimi il post a cui stai rispondendo" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "Espandi testo del post" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Espande o comprime il testo del post" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "L'URI dovrebbe risolvere in un record" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Sperimentale" @@ -3153,15 +3283,15 @@ msgstr "Media espliciti o potenzialmente inquietanti." msgid "Explicit sexual images." msgstr "Immagini sessuali esplicite." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "Esplora" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Esporta i miei dati" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Media esterni" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "I media esterni potrebbero consentire ai siti web di raccogliere informazioni su di te e sul tuo dispositivo. Nessuna informazione viene inviata o richiesta finché non si preme il pulsante \"Riproduci\"." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Preferenze media esterni" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "Impossibile accettare la richiesta" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "Non è stato possibile aggiungere la reazione" @@ -3211,8 +3341,8 @@ msgstr "Errore durante la creazione della password per app. Riprovare." msgid "Failed to create conversation" msgstr "Impossibile creare la conversazione" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Impossibile creare starter pack" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "Impossibile eliminare la conversazione" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Errore nell'eliminazione del messaggio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Non è stato possibile eliminare il post, riprovare" @@ -3238,8 +3368,8 @@ msgstr "Non è stato possibile eliminare il post, riprovare" msgid "Failed to delete starter pack" msgstr "Impossibile eliminare lo starter pack" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "Impossibile caricare le conversazioni" @@ -3250,14 +3380,32 @@ msgstr "Impossibile caricare le conversazioni" msgid "Failed to load feeds preferences" msgstr "Impossibile caricare preferenze feed" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Impossibile caricare GIF" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "Non è stato possibile caricare le impostazioni delle notifiche." + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Impossibile caricare messaggi vecchi" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "Impossibile caricare le preferenze." + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Impossibile caricare feed consigliati" msgid "Failed to load suggested follows" msgstr "Impossibile caricare follow consigliati" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "Impossibile segnare le richieste come lette" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Errore nel fissare il post" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "Non è stato possibile rimuovere la reazione" @@ -3291,15 +3439,11 @@ msgstr "Non è stato possibile rimuovere la verifica" msgid "Failed to save image: {0}" msgstr "Errore nel salvare l'immagine: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Errore nel salvataggio delle modifiche, riprovare" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "Non è stato possibile salvare le impostazioni. Riprovare." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "Non è stato possibile salvare i tuoi interessi." @@ -3318,7 +3462,7 @@ msgstr "Non è stato possibile inviare l'email: riprova." msgid "Failed to submit appeal, please try again." msgstr "Errore nell'invio dell'appello, riprovare." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Impossibile abilitare silenziamento thread, riprovare" @@ -3335,7 +3479,11 @@ msgstr "Non è stato possibile aggiornare l'email: riprova." msgid "Failed to update feeds" msgstr "Impossibile aggiornare i feed" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "Impossibile aggiornare la dichiarazione delle notifiche" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Errore nell'aggiornamento delle impostazioni" @@ -3354,15 +3502,23 @@ msgstr "Non è stato possibile verificare l'email: riprova." msgid "Failed to verify handle. Please try again." msgstr "Non è stato possibile verificare il nome utente. Riprovare." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Feed" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Feed creato da {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "Autore del feed" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "Identificativo del feed" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Menu del feed" @@ -3371,35 +3527,39 @@ msgstr "Menu del feed" msgid "Feed toggle" msgstr "Attiva/disattiva feed" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "Feed non disponibile" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Commenti" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Feedback inviato!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Feed" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 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 possono creare con una conoscenza base di programmazione. <0/> per ulteriori informazioni." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Feed aggiornati!" @@ -3428,6 +3588,14 @@ msgstr "Filtra la ricerca per lingua" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtra la ricerca per lingua (attualmente: {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "Filtra chi può scegliere di ricevere notifiche per le tue attività" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "Filtra da chi ricevi le notifiche" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Finalizzando" @@ -3448,7 +3616,7 @@ msgstr "Trova persone da seguire" msgid "Find posts, users, and feeds on Bluesky" msgstr "Cerca post, utenti, e feed su Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Finalizza" @@ -3456,17 +3624,17 @@ msgstr "Finalizza" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Nero" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Blu" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Bianco" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Flessibile" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Segui" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Segui {0}" @@ -3518,7 +3686,7 @@ msgstr "Segui account" msgid "Follow all" msgstr "Segui tutti" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Segui anche tu" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Segui anche tu" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Seguito da <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Seguito da <0>{0} e {1, plural, one {# altro} other {# altri}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Seguito da <0>{0} e <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Seguito da <0>{0}, <1>{1}, e {2, plural, one {# altro} other {# altri}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Follower di @{0} che conosci" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Follower che conosci" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Seguito" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Seguito" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Stai seguendo {0}" @@ -3579,8 +3751,8 @@ msgstr "Stai seguendo {handle}" msgid "Following feed preferences" msgstr "Preferenze del feed Seguiti" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Preferenze del feed Seguiti" @@ -3592,11 +3764,11 @@ msgstr "Ti segue" msgid "Follows You" msgstr "Ti segue" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Carattere" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Dimensione carattere" @@ -3613,7 +3785,7 @@ msgstr "Per motivi di sicurezza, invieremo un codice di conferma al tuo indirizz msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Per motivi di sicurezza non potrai più visualizzarla. Se perdi questa password per app, dovrai generarne una nuova." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Per una migliore esperienza, consigliamo di usare il font del tema." @@ -3643,11 +3815,15 @@ msgstr "Password dimenticata?" msgid "Frequently Posts Unwanted Content" msgstr "Pubblica spesso contenuti indesiderati" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "Da" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "Di @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "Da <0/>" @@ -3660,14 +3836,68 @@ msgstr "Galleria" msgid "Generate a starter pack" msgstr "Genera uno starter pack" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Ottieni aiuto" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "Ricevi notifiche quando le persone ti seguono." + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "Ricevi notifiche quando le persone mettono mi piace ai post che hai ripostato." + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "Ricevi notifiche quando le persone mettono mi piace ai tuoi post." + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "Ricevi notifiche quando le persone ti menzionano." + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "Ricevi notifiche quando le persone citano i tuoi post." + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "Ricevi notifiche quando le persone rispondono ai tuoi post." + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "Ricevi notifiche quando le persone ripostano i post che hai ripostato." + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "Ricevi notifiche quando le persone ripostano i tuoi post." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "Ricevi notifiche di nuovi post" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Ricevi notifiche dei post e delle risposte degli account che scegli." + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "Ricevi notifiche di nuovi post di {name}" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "Ricevi notifiche sull'attività di questo account" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "Ricevi notifiche dei post di {name}" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "Ricevi notifiche quando qualcuno pubblica un post" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "Per cominciare" @@ -3688,14 +3918,16 @@ msgstr "Dai un volto al tuo profilo" msgid "Glaring violations of law or terms of service" msgstr "Evidenti violazioni della legge o dei termini di servizio" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "Vai in diretta" msgid "Go live for" msgstr "Vai in diretta per" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "Vai al profilo di {firstAuthorName}" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "Vai alle impostazioni dell'account" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Vai alla conversazione con {0}" @@ -3779,8 +4017,8 @@ msgstr "Contenuto sensibile" msgid "Half way there!" msgstr "Siamo a metà!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Nome utente" @@ -3797,7 +4035,7 @@ msgstr "Nome utente modificato!" msgid "Handle too long. Please try a shorter one." msgstr "Nome utente troppo lungo. Provarne uno più breve." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Vibrazione" @@ -3806,7 +4044,7 @@ msgstr "Vibrazione" msgid "Harassment, trolling, or intolerance" msgstr "Molestie, trolling o intolleranza" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Hashtag" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Hashtag {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "Hai un codice? <0>Fai clic qui." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Ci sono problemi?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Aiuto" @@ -3839,8 +4077,13 @@ msgstr "Aiuta le persone a sapere che tu non sei un bot caricando una immagine o msgid "Here is your app password!" msgstr "Ecco la tua password per app!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "Ciao 👋" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Nascosto" @@ -3848,16 +4091,16 @@ msgstr "Nascosto" msgid "Hidden by your moderation settings." msgstr "Nascosto dalle tue impostazioni di moderazione." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Lista nascosta" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Lista nascosta" msgid "Hide" msgstr "Nascondi" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Nascondi" @@ -3875,18 +4118,18 @@ msgstr "Nascondi" msgid "Hide customization options" msgstr "Nascondi opzioni di personalizzazione" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Nascondi post per me" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Nascondi risposta per tutti" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Nascondi risposta per me" @@ -3894,12 +4137,12 @@ msgstr "Nascondi risposta per me" msgid "Hide this card" msgstr "Nascondi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Nascondere questo post?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Nascondere questa risposta?" @@ -3913,11 +4156,11 @@ msgstr "Nascondi gli argomenti di tendenza" msgid "Hide trending topics?" msgstr "Nascondere gli argomenti di tendenza?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Nascondere i video di tendenza?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Nascondi elenco utenti" @@ -3926,32 +4169,32 @@ msgstr "Nascondi elenco utenti" msgid "Hide verification badges" msgstr "Nascondi spunta di verifica" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Nasconde il contenuto" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Si è verificato un problema durante il contatto con il server del feed. Informa il proprietario del feed del problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Il server del feed sembra non essere configurato correttamente. Informa il proprietario del feed del problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Il server del feed sembra essere offline. Informa il proprietario del feed di questo problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Il server del feed ha dato una risposta negativa. Informa il proprietario del feed di questo problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 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 eliminato." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Stiamo riscontrando problemi a caricare questi dati. Vedi sotto per maggiori dettagli. Se il problema persiste, contattaci." @@ -3959,15 +4202,15 @@ msgstr "Stiamo riscontrando problemi a caricare questi dati. Vedi sotto per magg msgid "Hmmmm, we couldn't load that moderation service." msgstr "Non siamo riusciti a caricare il servizio di moderazione." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Un po' di pazienza: stiamo gradualmente dando accesso al video e tu sei ancora in coda. Ricontrolla presto!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Home" @@ -3984,10 +4227,10 @@ msgstr "Fornitore di hosting" msgid "Hot" msgstr "Hot" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Prima le risposte più popolari" @@ -3996,10 +4239,6 @@ msgstr "Prima le risposte più popolari" msgid "How should we open this link?" msgstr "Come dovremmo aprire questo link?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Ho capito" msgid "If alt text is long, toggles alt text expanded state" msgstr "Se il testo alternativo è lungo, attiva l'opzione Espandi testo alternativo" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Se non sei ancora maggiorenne secondo le leggi del tuo Paese, il tuo genitore o tutore legale deve leggere i Termini a tuo nome." @@ -4031,11 +4270,11 @@ msgstr "Se elimini questa lista, non potrai recuperarla." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Se hai un tuo dominio, puoi usarlo come nome utente. Questo consente di auto-verificare la tua identità. <0>Ulteriori informazioni." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "<0>Fai clic qui per aggiornare la tua email." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Se rimuovi questo post, non potrai recuperarlo." @@ -4047,6 +4286,10 @@ msgstr "Se aggiorni il tuo indirizzo email, la 2FA via email verrà disabilitata msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Se vuoi modificare la password, ti invieremo un codice per verificare che questo è il tuo account." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "Per limitare chi può ricevere notifiche sull'attività del tuo account vai in <0>Impostazioni → Privacy e sicurezza." + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "Se sei uno sviluppatore, puoi utilizzare il tuo server." @@ -4091,13 +4334,41 @@ msgstr "Furto d'identità o false affermazioni sull'identità o sull'affiliazion msgid "Impersonation, misinformation, or false claims" msgstr "Impersonificazione, disinformazione, o affermazioni false" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "Nell'app" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "Notifiche nell'app" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "Nell'app, tutti" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "Nell'app, persone che segui" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "Nell'app, push" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "Nell'app, push, tutti" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "Nell'app, push, persone che segui" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Messaggi inappropriati o link espliciti" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "Nessuna richiesta!" @@ -4105,7 +4376,7 @@ msgstr "Nessuna richiesta!" msgid "Incorrect username or password" msgstr "Nome utente o password errati" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Inserisci il codice inviato alla tua email per reimpostare la password" @@ -4113,7 +4384,7 @@ msgstr "Inserisci il codice inviato alla tua email per reimpostare la password" msgid "Input confirmation code for account deletion" msgstr "Inserisci il codice di conferma per l'eliminazione dell'account" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Inserisci la nuova password" @@ -4129,10 +4400,14 @@ msgstr "Inserisci il codice che ti è stato inviato via email" msgid "Interaction limited" msgstr "Interazione limitata" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Impostazioni per le interazioni" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "Introduzione sulle notifiche di attività" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Codice di conferma 2FA non valido." msgid "Invalid handle. Please try a different one." msgstr "Nome utente non valido. Provarne un altro." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Protocollo del post non valido o non supportato" @@ -4158,7 +4433,7 @@ msgstr "Codice di verifica non valido" msgid "Invite a Friend" msgstr "Invita un amico" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Codice d'invito" @@ -4186,15 +4461,15 @@ msgstr "Invita i tuoi amici per seguire persone e feed preferiti" msgid "Invites, but personal" msgstr "Inviti, ma personali" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "È corretto" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Sei solo tu al momento! Aggiungi altre persone al tuo starter pack cercandole qui in alto." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "ID processo: {0}" @@ -4220,11 +4495,27 @@ msgstr "Partecipa alla conversazione" msgid "Journalism" msgstr "Giornalismo" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "Tienimi aggiornato" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "Informativa sulla privacy di KWS" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "Termini di utilizzo di KWS" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "Sito web di KWS" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Etichettato da {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Etichettato dall'autore." @@ -4237,7 +4528,7 @@ msgstr "Etichette" msgid "Labels added" msgstr "Etichette aggiunte" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Le etichette sono annotazioni su utenti e contenuti. Possono essere usate per nascondere, apporre avvisi e classificare il network." @@ -4253,22 +4544,30 @@ msgstr "Etichette sul tuo contenuto" msgid "Language selection" msgstr "Seleziona la lingua" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Impostazione delle lingue" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Lingue" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Più grande" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "Ultimo avvio {timeAgo} fa" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "Ultimo avvio adesso" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Recenti" @@ -4282,7 +4581,6 @@ msgstr "ulteriori informazioni" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "Ulteriori informazioni" @@ -4290,6 +4588,10 @@ msgstr "Ulteriori informazioni" msgid "Learn More" msgstr "Ulteriori Informazioni" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "Scopri di più sulla verifica dell'età" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Scopri di più su Bluesky" @@ -4298,15 +4600,23 @@ msgstr "Scopri di più su Bluesky" msgid "Learn more about self hosting your PDS." msgstr "Maggiori informazioni su come ospitare il tuo server." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "Scopri di più sulla moderazione applicata a questo contenuto" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Scopri di più sulla moderazione applicata a questo contenuto." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "Scopri di più su queste modifiche e su come condividere le tue opinioni con noi <0>leggendo il nostro post sul blog." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Scopri di più su queste modifiche e su come condividere le tue opinioni con noi leggendo il nostro post sul blog." + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Ulteriori informazioni su questo avviso" @@ -4316,12 +4626,16 @@ msgstr "Ulteriori informazioni su questo avviso" msgid "Learn more about verification on Bluesky" msgstr "Scopri di più sulla verifica in Bluesky" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Scopri cosa è pubblico su Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "Scopri di più nelle <0>impostazioni dell'account." + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Saperne di più." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Abbandona conversazione" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Deseleziona tutte per vedere qualsiasi lingua." +msgid "Leave them all unselected to see any language." +msgstr "Non selezionare nulla per vedere qualsiasi lingua." -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Stai lasciando Bluesky" @@ -4370,7 +4685,7 @@ msgstr "Andiamo!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Chiaro" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Mi piace" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Mi piace ({0, plural, one {# mi piace} other {# mi piace}})" @@ -4397,6 +4712,10 @@ msgstr "Metti mi piace a 10 post" msgid "Like 10 posts to train the Discover feed" msgstr "Metti mi piace a 10 post per allenare il feed Discover" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "Notifiche dei mi piace" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Metti mi piace a questo feed" @@ -4405,8 +4724,8 @@ msgstr "Metti mi piace a questo feed" msgid "Like this labeler" msgstr "Mi piace" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Piace a" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Piace a" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Piace a {0, plural, one {# utente} other {# utenti}}" @@ -4428,20 +4747,36 @@ msgstr "Piace a {0, plural, one {# utente} other {# utenti}}" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Piace a {likeCount, plural, one {# utente} other {# utenti}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Mi piace" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "Mi piace dei tuoi repost" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "Notifiche dei mi piace dei tuoi repost" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Mi piace in questo post" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Classico" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Lista" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Lista bloccata" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Lista di {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "Lista di <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Lista tua" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "Autore della lista" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Lista riattivata" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Liste" @@ -4526,7 +4865,7 @@ msgstr "La funzionalià in diretta è in fase di beta testing" #: src/components/live/GoLiveDialog.tsx:124 #: src/components/live/GoLiveDialog.tsx:128 msgid "Live link" -msgstr "Collegamento alla diretta" +msgstr "Link alla diretta" #: src/screens/Search/Explore.tsx:86 msgid "Load more" @@ -4537,7 +4876,7 @@ msgstr "Carica di più" msgid "Load more suggested feeds" msgstr "Carica più feed consigliati" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Carica più notifiche" @@ -4552,11 +4891,11 @@ msgstr "Carica nuovi post" msgid "Loading..." msgstr "Caricamento..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Log" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Visibilità degli utenti disconnessi" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo di @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo di <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Logo di <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Tieni premuto per aprire il menu dei tag per #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Ha un formato simile a XXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "Modifica le impostazioni dell'email del tuo account" msgid "Make one for me" msgstr "Creane uno per me" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Assicurati che questo sia dove intendi andare!" @@ -4606,7 +4945,7 @@ msgstr "Assicurati che questo sia dove intendi andare!" msgid "Manage saved feeds" msgstr "Gestisci i feed salvati" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "Gestisci impostazioni di verifica" @@ -4614,9 +4953,9 @@ msgstr "Gestisci impostazioni di verifica" msgid "Manage your muted words and tags" msgstr "Gestisci parole e tag silenziati" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "Segna tutto come letto" @@ -4625,15 +4964,13 @@ msgstr "Segna tutto come letto" msgid "Mark as read" msgstr "Segna come letto" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "Segnato tutto come letto" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "Forse più tardi" @@ -4645,19 +4982,26 @@ msgstr "Media" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Contenuti che potrebbero disturbare o risultare inappropriati per alcuni tipi di pubblico." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "Notifiche delle menzioni" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "utenti menzionati" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Utenti menzionati" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Menzioni" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Menu" @@ -4665,7 +5009,7 @@ msgstr "Menu" msgid "Message {0}" msgstr "Messaggio {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Messaggio eliminato" @@ -4674,11 +5018,11 @@ msgstr "Messaggio eliminato" msgid "Message deleted" msgstr "Messaggio eliminato" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "Messaggio da @{0}: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Messaggio dal server: {0}" @@ -4691,19 +5035,23 @@ msgstr "Input del messaggio" msgid "Message is too long" msgstr "Il messaggio è troppo lungo" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "Opzioni messaggio" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Messaggi" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Mezzanotte" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "Notifiche varie" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Account ingannevole" msgid "Misleading Post" msgstr "Post ingannevole" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderazione" @@ -4725,17 +5073,17 @@ msgstr "Moderazione" msgid "Moderation details" msgstr "Dettagli sulla moderazione" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Lista di moderazione di {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Lista di moderazione di <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "La tua lista di moderazione" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Lista di moderazione aggiornata" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Liste di moderazione" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Liste di moderazione" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "impostazioni di moderazione" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Stato di moderazione" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Strumenti di moderazione" @@ -4775,7 +5123,7 @@ msgstr "Strumenti di moderazione" msgid "Moderator has chosen to set a general warning on the content." msgstr "Il moderatore ha messo un avviso generale sul contenuto." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Di più" @@ -4790,13 +5138,13 @@ msgstr "Altri feed" msgid "More options" msgstr "Altre opzioni" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Prima con più mi piace" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Prima le risposte con più mi piace" @@ -4808,8 +5156,8 @@ msgstr "Film" msgid "Music" msgstr "Musica" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Silenzia" @@ -4819,8 +5167,8 @@ msgstr "Silenzia" msgid "Mute {tag}" msgstr "Silenzia {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Silenzia questa parola solo nei tag" msgid "Mute this word until you unmute it" msgstr "Silenzia questa parola finchè non la riattivi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Silenzia questa discussione" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Silenzia parole e tag" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Account silenziati" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Account silenziati" @@ -4898,7 +5246,7 @@ msgstr "I post degli account silenziati verranno rimossi dal tuo feed e dalle tu msgid "Muted by \"{0}\"" msgstr "Silenziato da \"{0}\"" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Parole e tag silenziati" @@ -4911,7 +5259,7 @@ msgstr "Silenziare un account è privato. Gli account silenziati possono interag msgid "My Birthday" msgstr "Il mio compleanno" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "I miei feed" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Natura" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Vai a {0}" @@ -4958,11 +5306,11 @@ msgstr "Vai alla schermata successiva" msgid "Navigates to your profile" msgstr "Vai al tuo profilo" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Hai bisogno di modificarla?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "Vuoi segnalare una violazione del diritto d'autore, una richiesta legale o un problema di conformità alle normative?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Hai bisogno di segnalare una violazione del copyright?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Nuova" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "{postsCount, plural, one {Nuovo} other {Nuovi}} post di {firstAuthorLink}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "{postsCount, plural, one {Nuovo} other {nuovi}} post di {firstAuthorName}" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Nuova chat" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "Nuovo indirizzo email" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "Nuova funzionalità" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "Notifiche di nuovi follower" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "Nuovi follower" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Nuovo messaggio" msgid "New Moderation List" msgstr "Nuova lista di moderazione" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Nuova password" @@ -5029,7 +5396,7 @@ msgstr "Nuova password" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Nuovo post" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Nuovo post" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Nuovi post di {firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Nuovi post di {firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}}" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Finestra informativa per nuovi utenti" @@ -5054,10 +5429,14 @@ msgstr "Finestra informativa per nuovi utenti" msgid "New User List" msgstr "Nuova lista" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Prima le risposte più recenti" @@ -5071,15 +5450,15 @@ msgstr "Notizie" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "Nessun pannello DNS" msgid "No expiry set" msgstr "Scadenza non impostata" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Non si è trovata nessuna GIF in primo piano. Potrebbe esserci un problema con Tenor." @@ -5119,32 +5498,35 @@ msgstr "Nessuna immagine" msgid "No likes yet" msgstr "Ancora nessun mi piace" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Non segui più {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "Non più di {MAX_SERVICE_HANDLE_LENGTH, plural, other {# caratteri}}" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Ancora nessun messaggio" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Ancora nessuna notifica!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Nessuno" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Solo l'autore può citare questo post." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "Nessun post qui" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Ancora nessun post." @@ -5171,7 +5553,7 @@ msgstr "Nessun risultato" msgid "No results for \"{0}\"." msgstr "Nessun risultato per \"{0}\"." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Nessun risultato trovato" @@ -5179,9 +5561,9 @@ msgstr "Nessun risultato trovato" msgid "No results found for \"{query}\"" msgstr "Nessun risultato trovato per \"{query}\"" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Nessun risultato trovato per {query}" @@ -5189,7 +5571,7 @@ msgstr "Nessun risultato trovato per {query}" msgid "No results." msgstr "Nessun risultato." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Nessun risultato trovato per \"{search}\"." @@ -5198,7 +5580,7 @@ msgstr "Nessun risultato trovato per \"{search}\"." msgid "No thanks" msgstr "No grazie" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Nessuno" @@ -5223,59 +5605,76 @@ msgstr "Nessun utente trovato. Prova a cercarne altri." msgid "Non-sexual Nudity" msgstr "Nudità non sessuale" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "Nessuno" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "Non seguito da nessuno degli account che segui" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Non trovato" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Nota sulla condivisione" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: Bluesky è una rete aperta e pubblica. Questa impostazione limita solo la visibilità dei tuoi contenuti sull'app e sul sito web di Bluesky e altre app potrebbero non rispettare questa impostazione. I tuoi contenuti potrebbero comunque essere mostrati agli utenti disconnessi da altre app e siti web." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "Nota: questo post è visibile solo agli utenti che hanno effettuato l'accesso." + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Nulla qui" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Filtri notifiche" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Impostazioni notifiche" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Impostazioni notifiche" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Suoni di notifica" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Suoni di notifica" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Notifiche" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "Notifiche per tutto il resto, ad esempio quando qualcuno usa uno dei tuoi starter pack." + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "adesso" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Nudità o contenuti per adulti non etichettati come tali" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Disattivato" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Oh no!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "OK" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Va bene" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Prima le risposte meno recenti" @@ -5331,19 +5736,19 @@ msgstr "Prima le risposte meno recenti" msgid "on<0><1/><2><3/>" msgstr "su<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Reimposta account" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "Una o più GIF non hanno un testo alternativo." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "A una o più immagini manca il testo alternativo." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "In uno o più video manca il testo alternativo." @@ -5351,13 +5756,15 @@ msgstr "In uno o più video manca il testo alternativo." msgid "Only .jpg and .png files are supported" msgstr "Solo i file .jpg e .png sono supportati" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Solo gli {0} possono rispondere." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Contiene solo lettere, numeri e trattini" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "Solo i follower che seguo" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Sono supportati solo i file immagine" msgid "Only WebVTT (.vtt) files are supported" msgstr "Solo i file WebVTT (.vtt) sono supportati" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Ops, c'è stato qualche problema!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Ops!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Apri il menu a scomparsa" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Apri il selettore emoji" @@ -5416,7 +5822,7 @@ msgstr "Apri il menu delle opzioni del feed" msgid "Open full emoji list" msgstr "Apri elenco completo di emoji" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Apri link verso {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Apri link verso {niceUrl}" msgid "Open message options" msgstr "Apri opzioni messaggio" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Apri pagina di debug della moderazione" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Apri le impostazioni delle parole e dei tag silenziati" @@ -5453,16 +5859,16 @@ msgstr "Apri menu condivisione" msgid "Open starter pack menu" msgstr "Apri menu degli starter pack" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Apri la pagina della cronologia" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Apri il registro di sistema" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Apre le {numItems} opzioni" @@ -5490,11 +5896,11 @@ msgstr "Apre la fotocamera sul dispositivo" msgid "Opens captions and alt text dialog" msgstr "Apre la finestra di dialogo di sottotitoli e testo alternativo" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Apre la schermata per modificare il nome utente" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Apre il compositore" @@ -5502,7 +5908,7 @@ msgstr "Apre il compositore" msgid "Opens device photo gallery" msgstr "Apre la galleria fotografica del dispositivo" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Apre il selettore emoji" @@ -5520,15 +5926,19 @@ msgstr "Apre la procedura per accedere al tuo account esistente di Bluesky" msgid "Opens GIF select dialog" msgstr "Apre la finestra per selezionare i GIF" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Apre il centro assistenza nel browser" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "Apre il link {0}" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Apre la lista dei codici di invito" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "Apre la finestra di dialogo dello stato in diretta" @@ -5536,12 +5946,8 @@ msgstr "Apre la finestra di dialogo dello stato in diretta" msgid "Opens password reset form" msgstr "Apre il modulo di reimpostazione della password" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Apre il sito Web collegato" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Apre questo profilo" @@ -5558,7 +5964,7 @@ msgstr "Puoi fornire ulteriori informazioni di seguito:" msgid "Options:" msgstr "Opzioni:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Oppure combina queste opzioni:" @@ -5600,6 +6006,10 @@ msgstr "Altro account" msgid "Other..." msgstr "Altro..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "Il post nostro sul blog" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "Il team di moderazione ha ricevuto la tua segnalazione." @@ -5608,7 +6018,7 @@ msgstr "Il team di moderazione ha ricevuto la tua segnalazione." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "I nostri moderatori hanno esaminato le segnalazioni e deciso di disabilitare il tuo accesso ai messaggi su Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Pagina non trovata" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Pagina non trovata" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Password aggiornata" msgid "Password updated!" msgstr "Password aggiornata!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Pausa" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Metti video in pausa" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Utenti" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Persone seguite da @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Persone che seguono @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "Persone che seguo" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "L'accesso alla tua libreria foto è stato negato. Abilitalo nelle impostazioni di sistema." @@ -5704,12 +6119,12 @@ msgstr "Fissa su home" msgid "Pin to Home" msgstr "Fissa su home" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Fissa sul profilo" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Fissato" @@ -5718,7 +6133,7 @@ msgstr "Fissato" msgid "Pinned {0} to Home" msgstr "{0} fissato su home" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Feed fissati" @@ -5726,38 +6141,38 @@ msgstr "Feed fissati" msgid "Pinned to your feeds" msgstr "Fissato ai tuoi feed" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Riproduci" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Riproduci {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Riproduci video" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Riproduci video" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Riproduce o mette in pausa la GIF" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Riproduce o mette in pausa il video" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Riproduci questa GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Riproduce il video" @@ -5765,24 +6180,29 @@ msgstr "Riproduce il video" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "Aggiungi eventuali etichette di avviso applicabili ai contenuti che stai pubblicando." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "Controlla la tua casella di posta elettronica per ulteriori istruzioni. Dovrebbero arrivare entro un minuto o due." + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Scegli il tuo nome utente." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Scegli la tua password." #: src/components/dialogs/EmailDialog/screens/Update.tsx:290 msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." -msgstr "Fai clic sul collegamento presente nell'email che ti abbiamo appena inviato per verificare il tuo nuovo indirizzo email. Questo è un passaggio importante per continuare a usare tutte le funzionalità di Bluesky." +msgstr "Fai clic sul link presente nell'email che ti abbiamo appena inviato per verificare il tuo nuovo indirizzo email. Questo è un passaggio importante per continuare a usare tutte le funzionalità di Bluesky." #: src/screens/Signup/state.ts:301 msgid "Please complete the verification captcha." msgstr "Si prega di completare il captcha di verifica." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Verifica di aver inserito correttamente il tuo indirizzo email." @@ -5804,6 +6224,7 @@ msgstr "Inserisci un nome univoco per questa password per app o usa quello gener msgid "Please enter a valid code." msgstr "Inserisci un codice valido." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "Inserisci un indirizzo email valido." @@ -5812,7 +6233,11 @@ msgstr "Inserisci un indirizzo email valido." msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Inserisci una parola, un tag o una frase valida da silenziare" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "Inserisci un indirizzo email valido e non temporaneo (potresti dover accedere a questa email in futuro)." + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "Inserisci qui sotto il codice che abbiamo inviato a <0>{0}." @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "Inserisci il codice di sicurezza che abbiamo inviato al tuo indirizzo email precedente." #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Inserisci la tua email." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Inserisci il tuo codice d'invito." @@ -5853,6 +6278,19 @@ msgstr "Spiega perché ritieni che questa etichetta sia stata applicata in modo msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Spiega perché ritieni che i tuoi messaggi siano stati disabilitati per errore" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "Torna indietro o attiva questo elemento per tornare all'inizio del contenuto attivo." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "Fornisci eventuali dettagli aggiuntivi che potrebbero essere necessari ai moderatori per valutare correttamente la tua età." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "Seleziona una lingua" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "Seleziona il servizio di moderazione" @@ -5870,9 +6308,9 @@ msgstr "Accedi come @{0}" msgid "Please verify your email" msgstr "Verifica la tua email" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Verifica la tua email" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "Scrivi il tuo messaggio qui sotto:" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Politica" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Post" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Post" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Post" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Posta tutti" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "Post bloccato" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Pubblicato da {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Pubblicato da @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Post eliminato" @@ -5919,11 +6362,14 @@ msgstr "Post eliminato" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Non è stato possibile inviare il post. Verifica la tua connessione a internet e riprova." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "Il post è stato eliminato" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Post nascosto" @@ -5937,11 +6383,11 @@ msgstr "Post nascosto dalle parole silenziate" msgid "Post Hidden by You" msgstr "Post nascosto da te" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Gestisci interazioni post" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Impostazioni interazioni" @@ -5954,8 +6400,10 @@ msgstr "Lingua del post" msgid "Post Languages" msgstr "Lingue del post" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Post non trovato" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Post non più fissato" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Post" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "I post possono essere silenziati in base al loro testo, ai loro tag o a entrambi. Consigliamo di evitare parole comuni che compaiono in molti post, poiché ciò potrebbe comportare la mancata visualizzazione dei post." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Post nascosto" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Link potenzialmente fuorviante" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "Post, risposte" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Preferenza salvata" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "Link potenzialmente ingannevole" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "Avviso di link potenzialmente ingannevole" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Premere per tentare di riconnetterti" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Premere per riprovare" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Clicca per vedere i follower di questo account che condividete" @@ -6015,40 +6469,46 @@ msgstr "Immagine precedente" msgid "Primary Language" msgstr "Lingua principale" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Dai priorità a chi segui" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Impostazioni di priorità" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Privacy" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Privacy e sicurezza" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacy e sicurezza" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "Impostazioni privacy e sicurezza" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Informativa sulla privacy" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Elaborazione video in corso..." @@ -6062,15 +6522,14 @@ msgstr "Elaborazione in corso…" msgid "profile" msgstr "profilo" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Profilo" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Profilo aggiornato" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Liste pubbliche e condivisibili che danno impulso ai feed." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "Pubblica post" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "Pubblica i post" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "Pubblica risposte" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "Pubblica risposta" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "Push" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "Notifiche push" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "Push, tutti" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "Push, persone che segui" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "Codice QR copiato!" @@ -6119,44 +6594,52 @@ msgstr "Codice QR scaricato!" msgid "QR code saved to your camera roll!" msgstr "Codice QR salvato nella galleria!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "Notifiche delle citazioni" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Cita post" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "Citazione post riattaccata" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "Citazione scollegata con successo" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Citazioni disattivate" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Impostazioni delle citazioni" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Citazioni" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Citazioni post" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Casuale (\"Poster's Roulette\")" @@ -6164,8 +6647,8 @@ msgstr "Casuale (\"Poster's Roulette\")" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Limite di richieste superato: hai provato a cambiare il nome utente troppe volte in un breve lasso di tempo. Attendi un minuto prima di riprovare." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Riattacca citazione" @@ -6177,30 +6660,42 @@ msgstr "Reagisci con {emoji}" msgid "Reactivate your account" msgstr "Riattiva account" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "Leggi {0} {1, plural, one {altra risposta} other {altre risposte}}" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Leggi post del blog" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Leggi di meno" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Leggi di più" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "Leggi altre risposte" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "Leggi il post sul nostro blog" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Leggi il blog di Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Leggi l'informativa sulla privacy di Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Leggi i termini di servizio di Bluesky" @@ -6213,6 +6708,14 @@ msgstr "Motivo del ricorso" msgid "Reason:" msgstr "Motivo:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "Ricevi notifiche nell'app" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "Ricevi notifiche push" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Ricerche recenti" @@ -6234,8 +6737,8 @@ msgstr "Rifiuta" msgid "Reject chat request" msgstr "Rifiuta richiesta" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Ricarica conversazioni" @@ -6244,10 +6747,9 @@ msgstr "Ricarica conversazioni" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Rimuovi" @@ -6259,17 +6761,17 @@ msgstr "Rimuovi {displayName} dallo starter pack" msgid "Remove {historyItem}" msgstr "Rimuovi {historyItem}" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Rimuovi account" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Rimuovi allegato" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Rimuovi avatar" @@ -6284,24 +6786,22 @@ msgstr "Rimuovi allegato" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Rimuovi feed" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Rimuovere il feed?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Rimuovi dai miei feed" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Rimuovere da accesso rapido?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "Rimuovi dai feed salvati" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "Rimuovere dai tuoi feed?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Rimuovi immagine" @@ -6332,12 +6831,8 @@ msgstr "Rimuovi parola silenziata dalla tua lista" msgid "Remove profile" msgstr "Rimuovi profilo" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Rimuovi citazione" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Rimuovi repost" @@ -6345,7 +6840,7 @@ msgstr "Rimuovi repost" msgid "Remove subtitle file" msgstr "Rimuovi file dei sottotitoli" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Rimuovi questo feed dai feed salvati" @@ -6364,11 +6859,11 @@ msgstr "Rimuovi verifica" msgid "Remove your verification for this account?" msgstr "Rimuovere la tua verifica per questo account?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Rimosso dall'autore" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Rimosso da te" @@ -6377,10 +6872,6 @@ msgstr "Rimosso da te" msgid "Removed from list" msgstr "Rimosso dalla lista" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Rimosso dai miei feed" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Rimosso dai feed salvati" @@ -6395,34 +6886,36 @@ msgstr "Rimosso dai tuoi feed" msgid "Removed verification" msgstr "Verifica rimossa" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Rimuovi post citato" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Sostituisci con Discover" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Risposte" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Risposte disattivate" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Le risposte a questo post sono disattivate." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Rispondi" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Rispondi ({0, plural, one {# risposta} other {# risposte}})" @@ -6436,50 +6929,55 @@ msgstr "Risposta nascosta dall'autore del thread" msgid "Reply Hidden by You" msgstr "Risposta nascosta da te" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "Notifiche delle risposte" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Impostazioni delle risposte" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "Le impostazioni delle risposte sono scelte dall'autore del thread" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Ordine delle risposte" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "In risposta a <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Risposta ad un post bloccato" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "In risposta ad un post" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Risposta a te" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Visibilità risposta aggiornata" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Risposta nascosta con successo" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Segnala feed" msgid "Report list" msgstr "Segnala lista" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Segnala messaggio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Segnala post" @@ -6567,25 +7065,26 @@ msgstr "Segnala questo starter pack" msgid "Report this user" msgstr "Segnala questo utente" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Repost" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Repost" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Ripubblica ({0, plural, one {# ripubblicazione} other {# ripubblicazioni}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "Notifiche dei repost" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Repost o cita post" @@ -6594,35 +7093,47 @@ msgstr "Repost o cita post" msgid "Reposted By" msgstr "Ripubblicato da" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Ripubblicato da {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Ripubblicato da <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Ripubblicato da te" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "Repost" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Ripubblicazioni di questo post" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "Richiedi modifica" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "Repost dei tuoi repost" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "Notifiche dei repost dei tuoi repost" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "Richiedi il codice" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Richiedi il testo alternativo prima di pubblicare" @@ -6630,7 +7141,7 @@ msgstr "Richiedi il testo alternativo prima di pubblicare" msgid "Require an email code to sign in to your account." msgstr "Richiedi un codice inviato via email per accedere al tuo account." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Obbligatorio per questo fornitore" @@ -6642,10 +7153,6 @@ msgstr "Richiesto nel tuo paese" msgid "Resend" msgstr "Invia di nuovo" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Rinvia email" msgid "Resend Verification Email" msgstr "Rinvia email di verifica" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "Reimposta suggerimento di iscrizione ad attività" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Codice di recupero" @@ -6667,8 +7180,8 @@ msgstr "Codice di recupero" msgid "Reset Code" msgstr "Reimposta il codice" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Ripristina lo stato di registrazione" @@ -6687,21 +7200,23 @@ msgstr "Ritenta l'ultima azione che ha generato un errore" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Riprova" @@ -6721,19 +7236,19 @@ msgstr "Ritorna alla home" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Ritorna alla pagina precedente" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Ritorna al passo precedente" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Ritorna al passo precedente" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Salva" @@ -6762,15 +7276,13 @@ msgstr "Salva" msgid "Save birthday" msgstr "Salva il compleanno" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Salva modifiche" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Salva modifiche" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Salva codice QR" msgid "Save to my feeds" msgstr "Salva nei miei feed" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Feed salvati" @@ -6802,18 +7314,14 @@ msgstr "Feed salvati" msgid "Saved to your feeds" msgstr "Salvato nei tuoi feed" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Salva modifiche al tuo profilo" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Salva le impostazioni di ritaglio dell'immagine" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Di' ciao!" @@ -6826,16 +7334,16 @@ msgstr "Scienza" msgid "Scroll to top" msgstr "Scorri verso l'alto" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Cerca" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Cerca post di @{0}" @@ -6861,7 +7369,7 @@ msgstr "Cerca \"{query}\"" msgid "Search for \"{searchText}\"" msgstr "Cerca \"{searchText}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Cerca feed che potresti suggerire ad altri utenti." @@ -6877,10 +7385,14 @@ msgstr "Cerca altri feed" msgid "Search for posts, users, or feeds" msgstr "Cerca post, utenti o feed" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Cerca GIF" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "La ricerca non è attualmente disponibile se si è disconnessi" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Cerca nei miei post" @@ -6890,12 +7402,12 @@ msgstr "Cerca nei miei post" msgid "Search posts" msgstr "Cerca post" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Cerca profili" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Cerca Tenor" @@ -6903,7 +7415,7 @@ msgstr "Cerca Tenor" msgid "Search..." msgstr "Cerca..." -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Cerca profili" @@ -6912,10 +7424,6 @@ msgstr "Cerca profili" msgid "Security step required" msgstr "Passaggio di sicurezza richiesto" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Passaggio di sicurezza obbligatorio" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "Vedi post su {tag}" @@ -6936,14 +7444,31 @@ msgstr "Vedi post dell'utente su #{tag}" msgid "See jobs at Bluesky" msgstr "Vedi offerte di lavoro in Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "Vedi di più" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "Vedi altri account che potrebbero interessarti" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "Vedi altri profili suggeriti nella pagina Esplora" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Consulta questa guida" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Cursore di ricerca. Usa i tasti freccia per cercare avanti e indietro, lo spazio per riprodurre/mettere in pausa" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "Seleziona {0}" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Scegli un colore" @@ -6988,7 +7513,7 @@ msgstr "Seleziona da un account esistente" msgid "Select GIF" msgstr "Seleziona GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Seleziona GIF \"{0}\"" @@ -6996,6 +7521,11 @@ msgstr "Seleziona GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "Seleziona per quanto tempo silenziare questa parola." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "Seleziona lingua" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Seleziona lingua..." @@ -7004,7 +7534,7 @@ msgstr "Seleziona lingua..." msgid "Select languages" msgstr "Seleziona lingue" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "Seleziona il servizio di moderazione" @@ -7045,12 +7575,12 @@ msgstr "Seleziona la lingua da usare per l'interfaccia utente dell'app." msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Seleziona le lingue che desideri includere nei feed a cui sei iscritto. Se non ne viene selezionata nessuna, verranno visualizzate tutte le lingue." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Seleziona la tua data di nascita" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Seleziona i tuoi interessi dalle seguenti opzioni" @@ -7058,7 +7588,11 @@ msgstr "Seleziona i tuoi interessi dalle seguenti opzioni" msgid "Select your preferred language for translations in your feed." msgstr "Seleziona la tua lingua preferita per le traduzioni nel tuo feed." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "Seleziona i tuoi canali di notifica preferiti" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "Seleziona l'opzione {0} di {numItems}" @@ -7066,17 +7600,9 @@ msgstr "Seleziona l'opzione {0} di {numItems}" msgid "Send a neat website!" msgstr "Consiglia un sito!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "Invia conferma" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Invia email di conferma" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Invia email" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Invia email" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Invia feedback" @@ -7095,7 +7621,7 @@ msgstr "Invia feedback" msgid "Send message" msgstr "Invia messaggio" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "Invia post a {name}" @@ -7114,20 +7640,20 @@ msgstr "Invia la segnalazione" msgid "Send report to {0}" msgstr "Invia la segnalazione a {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "Invia la segnalazione a {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Invia email di verifica" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Invia tramite messaggi" @@ -7143,7 +7669,7 @@ msgstr "Indirizzo del server" msgid "Set app icon to {0}" msgstr "Imposta icona app su {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Imposta la data di nascita" @@ -7159,13 +7685,57 @@ msgstr "Configura il tuo account" msgid "Sets email for password reset" msgstr "Imposta l'email per la reimpostazione della password" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Impostazioni" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "Impostazioni per attività degli altri" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "Impostazioni per consentire ad altri di essere avvisati dei tuoi post" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "Impostazioni per notifiche di mi piace" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "Impostazioni per notifiche di menzioni" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "Impostazioni per notifiche di nuovi follower" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "Impostazioni per notifiche di tutto il resto" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "Impostazioni per notifiche di mi piace dei tuoi repost" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "Impostazioni per notifiche di repost rei tuoi repost" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "Impostazioni per notifiche di citazioni" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "Impostazioni per notifiche di risposte" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "Impostazioni per notifiche di repost" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "Condividi una storia interessante!" msgid "Share a fun fact!" msgstr "Condividi un fatto divertente!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Condividi comunque" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "Condividi DID autore" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Condividi link" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Condividi link" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Finestra link di condivisione" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "Condividi URL at:// del post" @@ -7247,8 +7812,8 @@ msgstr "Condividi starter pack" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Condividi questo starter pack e invita le persone a far parte della tua community su Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "Condividi tramite..." msgid "Share your favorite feed!" msgstr "Condividi il tuo feed preferito!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Test preferenze condivise" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Condivide il sito web nel link" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Mostra" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Mostra testo alternativo" @@ -7303,8 +7864,8 @@ msgstr "Mostra opzioni di personalizzazione" msgid "Show hidden replies" msgstr "Mostra risposte nascoste" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Mostra meno come questo" @@ -7312,55 +7873,63 @@ msgstr "Mostra meno come questo" msgid "Show list anyway" msgstr "Mostra comunque lista" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Mostra di più" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Mostra altri come questo" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "Mostra altre risposte" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Mostra risposte silenziate" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "Mostra risposte al post in una vista ad albero" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Mostra citazioni" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Mostra risposte" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Mostra risposte come" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Mostra risposte come un thread" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Mostra risposte delle persone che segui prima delle altre risposte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Mostra risposta per tutti" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Mostra ripubblicazioni" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Mostra un estratto dei tuoi feed salvati anche nel tuo feed Seguiti" @@ -7372,16 +7941,17 @@ msgstr "Mostra avviso" msgid "Show warning and filter from feeds" msgstr "Mostra avviso e filtra dai feed" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Mostra informazioni sulla data di creazione del post" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "Mostra gli altri account a cui puoi passare" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Mostra il contenuto" @@ -7390,14 +7960,15 @@ msgstr "Mostra il contenuto" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "Accedi a un account non in elenco" msgid "Sign in to Bluesky or create a new account" msgstr "Accedi a Bluesky o crea un nuovo account" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "Accedi per vedere il post" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Esci" @@ -7444,8 +8020,8 @@ msgstr "Esci" msgid "Sign Out" msgstr "Esci" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Vuoi uscire?" @@ -7459,12 +8035,12 @@ msgstr "È richiesto l'accesso" msgid "Signed in as @{0}" msgstr "Accesso effettuato come @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Account simili" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Salta" @@ -7472,12 +8048,11 @@ msgstr "Salta" msgid "Skip this flow" msgstr "Salta" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Più piccolo" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "Posticipa il promemoria" @@ -7490,11 +8065,11 @@ msgstr "Sviluppo software" msgid "Some of your verifications are invalid." msgstr "Alcune delle tue verifiche non sono valide." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Altri feed che potrebbero piacerti" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Risposte limitate" @@ -7510,10 +8085,11 @@ msgstr "Qualcuno ha reagito con {0} a {1}" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "C'è stato qualche problema con i dati che stai provando a segnalare. Contatta l'assistenza." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Qualcosa è andato storto" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Qualcosa è andato storto: riprova" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Qualcosa è andato storto, prova di nuovo." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Qualcosa è andato storto!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "Qualcosa è andato storto, riprova tra qualche istante." + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "C'è stato qualche problema. Riprovare." @@ -7539,20 +8118,23 @@ msgstr "C'è stato qualche problema. Riprovare." msgid "Something wrong? Let us know." msgstr "Qualcosa non va? Faccelo sapere." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "La sessione è scaduta. Accedi di nuovo." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Ordina le risposte" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Ordina risposte per" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Ordina le risposte allo stesso post per:" @@ -7579,7 +8161,7 @@ msgstr "Spam, menzioni o risposte eccessive" msgid "Sports" msgstr "Sport" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "Inizia una conversazione: comparirà qui." @@ -7601,9 +8183,9 @@ msgstr "Inizia ad aggiungere persone!" msgid "Start chat with {displayName}" msgstr "Avvia conversazione con {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Starter Pack" @@ -7611,12 +8193,12 @@ msgstr "Starter Pack" msgid "Starter pack by {0}" msgstr "Starter pack di {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Starter pack di <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Starter pack tuoi" @@ -7638,19 +8220,21 @@ msgstr "Gli starter pack ti permettono di condividere utenti e feed preferiti co msgid "Status Page" msgstr "Pagina di stato" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Step {0} di {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Spazio di archiviazione eliminato. Riavvia l'app." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Cronologia" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Invia richiesta" msgid "Submit Appeal" msgstr "Invia richiesta" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "Invia segnalazione" @@ -7676,10 +8260,14 @@ msgstr "Invia segnalazione" msgid "Subscribe" msgstr "Iscriviti" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Iscriviti a @{0} per usare queste etichette:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "Iscriviti all'attività dell'account" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Iscriviti all'etichettatore" @@ -7692,8 +8280,12 @@ msgstr "Iscriviti a questo etichettatore" msgid "Subscribe to this list" msgstr "Iscriviti alla lista" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "Successo" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Successo!" @@ -7705,7 +8297,7 @@ msgstr "Verificato con successo" msgid "Suggested Accounts" msgstr "Account suggeriti" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Suggerito per te" @@ -7714,26 +8306,26 @@ msgstr "Suggerito per te" msgid "Suggestive" msgstr "Suggestivo" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Alba" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Tramonto" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Supporto" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Cambia account" @@ -7742,24 +8334,24 @@ msgstr "Cambia account" msgid "Switch Account" msgstr "Cambia account" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Cambia account" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "Passa a {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Sistema" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Registro di sistema" @@ -7767,6 +8359,18 @@ msgstr "Registro di sistema" msgid "Tags only" msgstr "Solo tag" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "Tocca per informazioni" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "Tocca per maggiori informazioni" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "Tocca per confermare di aver compreso e accettato questi aggiornamenti e continuare a utilizzare Bluesky" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Dicci un po' di più" msgid "Terms" msgstr "Termini" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Termini di servizio" @@ -7848,10 +8454,6 @@ msgstr "Campo di testo" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "Il tuo feedback è stato inviato all'operatore del feed. Grazie!" -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Grazie! La tua email è stata verificata con successo." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Grazie. La tua segnalazione è stata inviata." @@ -7864,28 +8466,28 @@ msgstr "Grazie, hai verificato con successo il tuo indirizzo email. Puoi chiuder msgid "That contains the following:" msgstr "Che contiene il seguente:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Questo nome utente è già stato assegnato." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Impossibile trovare starter pack." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "Questo nome utente è già in uso" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Questo è tutto, gente!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "È tutto!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 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." @@ -7900,7 +8502,7 @@ msgstr "L'app verrà riavviata" msgid "The author of this thread has hidden this reply." msgstr "L'autore del thread ha nascosto questa risposta." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "L'applicazione web di Bluesky" @@ -7920,10 +8522,6 @@ msgstr "Il feed Discover" msgid "The Discover feed now knows what you like" msgstr "Ora il feed Discover sa cosa ti piace" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "L'indirizzo email che hai inserito è lo stesso del tuo indirizzo email attuale." - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "L'esperienza è migliore tramite l'app. Scarica ora Bluesky e ritorneremo da dove eravamo rimasti." @@ -7944,8 +8542,16 @@ msgstr "Ai tuoi contenuti sono state applicate le seguenti etichette." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "Queste impostazioni saranno utilizzate come predefinite quando si crea un nuovo post. Puoi modificarle per un post specifico dal compositore." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "Le leggi vigenti nella tua zona richiedono di verificare che tu sia un adulto prima di accedere a determinate funzionalità di Bluesky, come ad esempio contenuti per adulti e messaggistica diretta." + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "Le leggi vigenti nella tua zona richiedono di verificare che tu sia un adulto prima di accedere a determinate funzionalità di Bluesky. Tocca per ulteriori informazioni." + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Il post potrebbe essere stato eliminato." @@ -7953,9 +8559,10 @@ msgstr "Il post potrebbe essere stato eliminato." msgid "The Privacy Policy has been moved to <0/>" msgstr "L'informativa sulla privacy è stata spostata a <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "Il video selezionato è più grande di 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "Il video selezionato è più grande di 100 MB. Riprova con un file più piccolo." #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "I Termini di servizio sono stati spostati a" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "Il codice di verifica che hai fornito non è valido. Assicurati di aver usato il link di verifica corretto o richiedine uno nuovo." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Tema" @@ -7990,14 +8597,14 @@ msgstr "Tema" msgid "There is no time limit for account deactivation, come back any time." msgstr "Non c'è limite di tempo per la disattivazione dell'account, torna quando vuoi." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Si è verificato un problema durante la connessione a Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Si è verificato un problema durante il contatto con il server" @@ -8006,17 +8613,12 @@ msgstr "Si è verificato un problema durante il contatto con il server" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Si è verificato un problema contattando il server, verifica la tua connessione a internet e riprova." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Si è verificato un problema durante il contatto con il tuo server" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Si è verificato un problema durante il recupero delle notifiche. Tocca qui per riprovare." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Si è verificato un problema nel recupero dei post. Tocca qui per riprovare." @@ -8037,7 +8639,7 @@ msgstr "Si è verificato un problema durante il recupero delle tue liste. Tocca msgid "There was an issue fetching your service info" msgstr "Si è verificato un problema durante il recupero delle tue informazioni di servizio" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Si è verificato un problema durante la rimozione di questo feed. Verifica la tua connessione a internet e riprova." @@ -8052,9 +8654,9 @@ msgstr "Si è verificato un problema durante l'invio della segnalazione. Verific msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Si è verificato un problema durante l'aggiornamento dei tuoi feed. Verifica la tua connessione a internet e riprova." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Si è verificato un problema durante l'aggiornamento dei tuoi feed. Veri msgid "There was an issue! {0}" msgstr "Si è verificato un problema! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Si è verificato un problema! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Si è verificato un problema. Verifica la tua connessione a internet e prova di nuovo." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Si è verificato un problema imprevisto nell'applicazione. Facci sapere se ti è successo!" @@ -8089,7 +8691,7 @@ msgstr "Si è verificato un problema imprevisto nell'applicazione. Facci sapere msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "C'è stata un'ondata di nuovi utenti su Bluesky! Attiveremo il tuo account il prima possibile." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Queste impostazioni si applicano solo al feed Seguiti." @@ -8146,7 +8748,7 @@ msgstr "Questo contenuto è ospitato da {0}. Abilitare i media esterni?" msgid "This content is not available because one of the users involved has blocked the other." msgstr "Questo contenuto non è disponibile perché uno degli utenti coinvolti ha bloccato l'altro." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Questo contenuto non è visualizzabile senza un account Bluesky." @@ -8158,6 +8760,10 @@ msgstr "L'utente di questa conversazione ha disattivato o eliminato l'account. P msgid "This email is already associated with your account." msgstr "Questa email è già associata al tuo account." +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "Questa funzione consente agli utenti di ricevere notifiche per i tuoi nuovi post e risposte. Per chi vuoi abilitarla?" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Questa funzionalità è in versione beta. Puoi leggere ulteriori informazioni sulle esportazioni del repository in <0>questo post del blog." @@ -8170,7 +8776,7 @@ msgstr "Questa funzionalità non è disponibile mentre si usa una password per a msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Questa funzionalità non è disponibile mentre si usa una password per app. Accedi con la tua password principale." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Questo feed al momento sta ricevendo molte visite ed è temporaneamente non disponibile. Riprova più tardi." @@ -8199,7 +8805,7 @@ msgstr "Queste informazioni non vengono condivise con altri utenti." #: src/components/live/EditLiveDialog.tsx:189 #: src/components/live/GoLiveDialog.tsx:160 msgid "This is not a valid link" -msgstr "Non è un collegamento valido" +msgstr "Non è un link valido" #: src/components/moderation/ModerationDetailsDialog.tsx:168 msgid "This label was applied by the author." @@ -8209,11 +8815,11 @@ msgstr "Questa etichetta è stata applicata dall'autore." msgid "This label was applied by you." msgstr "Questa etichetta è stata applicata da te." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Questo etichettatore non ha dichiarato quali etichette pubblica e potrebbe non essere attivo." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Questo link ti porta al seguente sito web:" @@ -8233,29 +8839,28 @@ msgstr "Questa lista è vuota." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Questo servizio di moderazione non è disponibile. Vedi giù per ulteriori dettagli. Se il problema persiste, contattaci." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Questo post dichiara di essere stato creato il <0>{0}, ma è stato visto per la prima volta da Bluesky il <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Questo post ha un tipo sconosciuto di restrizione. La tua app potrebbe non essere aggiornata." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Questo post è stato eliminato." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Questo post è visibile solo agli utenti registrati. Non sarà visibile alle persone che non hanno effettuato l'accesso." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "Questo post è visibile solo agli utenti che hanno effettuato l'accesso." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Questo post verrà nascosto dai feed e dai thread. L'azione è irreversibile." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "L'autore del post ha disattivato le citazioni." @@ -8263,11 +8868,11 @@ msgstr "L'autore del post ha disattivato le citazioni." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Questo profilo è visibile solo agli utenti registrati. Non sarà visibile alle persone che non hanno effettuato l'accesso." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Questa risposta verrà spostata in una sezione nascosta in fondo al thread e le notifiche delle risposte saranno disattivate - sia per te che per gli altri." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Questo servizio non ha fornito termini di servizio o un'informativa sulla privacy." @@ -8275,6 +8880,10 @@ msgstr "Questo servizio non ha fornito termini di servizio o un'informativa sull msgid "This should create a domain record at:" msgstr "Questo dovrebbe creare un record di dominio in:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "Dovrebbe richiedere solo pochi minuti." + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Questo utente non può essere verificato poiché non ha un nome visualizzato." @@ -8316,16 +8925,18 @@ msgstr "Questo utente non sta seguendo nessuno." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Questo eliminerà \"{0}\" dalle tue parole silenziate. Puoi riaggiungerla quando vuoi qui." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Questo rimuoverà @{0} dalla lista d'accesso rapido." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Il tuo post verrà rimosso da questa citazione per tutti gli utenti, ed al suo posto verrà mostrato un avviso." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Opzioni thread" @@ -8334,24 +8945,27 @@ msgstr "Opzioni thread" msgid "Thread preferences" msgstr "Preferenze delle discussioni" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Preferenze delle discussioni" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Thread" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Modalità a thread" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Preferenze per le discussioni" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "Tempo rimanente: {0, plural, one {# secondo} other {# secondi}}" @@ -8376,42 +8990,56 @@ msgstr "A chi desideri inviare questo report?" msgid "Today" msgstr "Oggi" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Attiva/disattiva il menu a discesa" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Seleziona per abilitare o disabilitare i contenuti per adulti" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Attiva/disattiva il suono" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Popolari" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "Prima le risposte più popolari" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Argomento" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Traduci" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "Vista ad albero" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Di tendenza" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Video di tendenza" @@ -8428,14 +9056,10 @@ msgstr "Riprova" msgid "TV" msgstr "TV" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Autenticazione a due fattori (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Inserisci il nome utente che desideri" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Scrivi il tuo messaggio qui" @@ -8453,7 +9077,7 @@ msgstr "Impossibile connettersi. Verifica la tua connessione a internet e riprov #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Impossibile contattare il servizio. Verifica la tua connessione a intern msgid "Unable to delete" msgstr "Impossibile eliminare" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "Non applicare pull request" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "Non applicare pull request {currentChannel}" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "Non disponibile" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "Informazioni sui feed non disponibili" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Sblocca" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Sblocca" @@ -8486,7 +9126,7 @@ msgstr "Sblocca" msgid "Unblock account" msgstr "Sblocca account" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Sblocca account?" @@ -8495,13 +9135,13 @@ msgstr "Sblocca account?" msgid "Unblock list" msgstr "Sblocca lista" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Annulla ripubblicazione" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Annulla ripubblicazione ({0, plural, one {# ripubblicazione} other {# ripubblicazioni}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Smetti di seguire" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Smetti di seguire {0}" @@ -8523,7 +9163,7 @@ msgstr "Smetti di seguire" msgid "Unfollows the user" msgstr "Smetti di seguire" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Purtroppo, nessuna delle etichette a cui sei iscritto supporta questo tipo di segnalazione." @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "Non mi piace più" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Non mi piace più ({0, plural, one {# mi piace} other {# mi piace}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Riattiva audio" @@ -8555,8 +9195,8 @@ msgstr "Riattiva" msgid "Unmute {tag}" msgstr "Riattiva {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Riattiva conversazione" msgid "Unmute list" msgstr "Riattiva lista" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Riattiva questa discussione" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Riattiva audio" @@ -8597,8 +9237,8 @@ msgstr "Non fissare più il feed" msgid "Unpin from home" msgstr "Non fissare più su home" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Non fissare più sul profilo" @@ -8614,8 +9254,8 @@ msgstr "{0} non più fissato su home" msgid "Unpinned from your feeds" msgstr "Non più fissato nei tuoi feed" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "Riattiva l'email di promemoria" @@ -8636,7 +9276,7 @@ msgstr "Disiscriviti da questo etichettatore" msgid "Unsubscribed from list" msgstr "Disiscritto dalla lista" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Tipo di video non supportato" @@ -8662,8 +9302,8 @@ msgstr "Aggiorna <0>{displayName} nelle liste" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "Aggiorna email" @@ -8676,17 +9316,17 @@ msgstr "Aggiorna a {domain}" msgid "Update your email" msgstr "Aggiorna la tua email" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Impossibile aggiornare allegato" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Impossibile aggiornare visibilità risposte" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Aggiornamento..." @@ -8698,20 +9338,20 @@ msgstr "In alternativa carica una foto" msgid "Upload a text file to:" msgstr "Carica un file di testo su:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Carica dalla fotocamera" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Carica dai file" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Carica dalla galleria" msgid "Uploading images..." msgstr "Caricamento immagini..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Caricamento miniatura del link..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Caricamento del video..." @@ -8761,6 +9401,10 @@ msgstr "Usa consigliati" msgid "Use this to sign in to the other app along with your handle." msgstr "Usalo per accedere all'altra app insieme al tuo nome utente." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "Usa l'indirizzo email del tuo account o un altro indirizzo email reale di cui hai il controllo, nel caso in cui KWS o Bluesky abbiano bisogno di contattarti." + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Usato da:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Lista aggiornata" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "Il nome utente non può essere più lungo di {MAX_SERVICE_HANDLE_LENGTH, plural, other {# caratteri}}" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "Il nome utente non può iniziare o terminare con un trattino" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "Il nome utente può contenere solo lettere (a-z), numeri e trattini" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Nome utente o indirizzo email" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "utenti seguiti da <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "utenti che seguono <0>@{0}" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Utenti che seguo" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Utenti in \"{0}\"" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Utenti che segui" @@ -8846,11 +9502,11 @@ msgstr "Valore:" msgid "Verification failed, please try again." msgstr "Verifica non riuscita, riprovare." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "Impostazioni di verifica" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "Impostazioni di verifica" @@ -8870,8 +9526,15 @@ msgstr "Verificato da:" msgid "Verify account" msgstr "Verifica account" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "Verifica di nuovo" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "Verifica codice" @@ -8880,21 +9543,20 @@ msgstr "Verifica codice" msgid "Verify DNS Record" msgstr "Verifica record DNS" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "Verifica email" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "Verifica codice email" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Finestra verifica email" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "Verifica adesso" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Verifica file di testo" msgid "Verify this account?" msgstr "Verificare questo account?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "Verifica la tua età" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Verifica il tuo indirizzo email" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Verifica il tuo indirizzo email" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "Verifica in corso" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "Controllo in corso della verifica della tua età" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Versione {appVersion}" +msgid "Version {0}" +msgstr "Versione {0}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Video" @@ -8928,7 +9598,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "Elaborazione video fallita" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Feed dei video" @@ -8942,15 +9612,15 @@ msgstr "Video da {0}: {text}" msgid "Video Games" msgstr "Videogiochi" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Video in pausa" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Video in riproduzione" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Video non trovato." @@ -8958,11 +9628,11 @@ msgstr "Video non trovato." msgid "Video settings" msgstr "Impostazioni video" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Video caricato" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Video: {0}" @@ -8979,11 +9649,11 @@ msgstr "I video devono avere una durata inferiore a 3 minuti" msgid "View {0}'s avatar" msgstr "Vedi l'avatar di {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Vedi il profilo di {0}" @@ -8991,7 +9661,7 @@ msgstr "Vedi il profilo di {0}" msgid "View {displayName}'s profile" msgstr "Vedi il profilo di {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Vedi questo profilo bloccato" @@ -9009,7 +9679,6 @@ msgstr "Vedi le informazioni del debug" msgid "View details" msgstr "Vedi dettagli" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Visualizza i dettagli per segnalare una violazione del copyright" @@ -9022,23 +9691,23 @@ msgstr "Vedi la discussione completa" msgid "View information about these labels" msgstr "Visualizza le informazioni su queste etichette" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Mostra di più" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Vedi il profilo" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Vedi l'avatar" @@ -9054,28 +9723,28 @@ msgstr "Vedi le verifiche di questo utente" msgid "View users who like this feed" msgstr "Visualizza gli utenti a cui piace questo feed" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Vedi video" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Vedi i tuoi account bloccati" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "Vedi impostazioni predefinite per le interazioni" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Vedi i tuoi feed e scoprine degli altri" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Vedi le tue liste di moderazione" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Vedi i tuoi account silenziati" @@ -9083,8 +9752,8 @@ msgstr "Vedi i tuoi account silenziati" msgid "View your verifications" msgstr "Vedi le tue verifiche" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Vedi l'immagine completa" @@ -9092,16 +9761,20 @@ msgstr "Vedi l'immagine completa" msgid "Views video in immersive mode" msgstr "Mostra video in modalità immersiva" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "Vai al sito web" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "Visita sito" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "Vedi le impostazioni di notifica" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Volume" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Avvisa i contenuti e filtra dai feed" msgid "Watch now" msgstr "Guarda ora" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "Non è stato possibile collegarsi al servizio che fornisce questo feed personalizzato. Potrebbe essere temporaneamente non disponibile a causa di problemi, oppure non disponibile in modo permanente." + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "Non è stato possibile trovare questa lista. Probabilmente è stata eliminata." + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "Non siamo riusciti a trovare alcun risultato per quell'hashtag." @@ -9128,7 +9809,7 @@ msgstr "Non siamo riusciti a trovare alcun risultato per quell'hashtag." msgid "We couldn't find any results for that topic." msgstr "Nessun risultato per questo argomento." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Non riusciamo a caricare questa conversazione" @@ -9136,6 +9817,10 @@ msgstr "Non riusciamo a caricare questa conversazione" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Stimiamo {estimatedTime} prima che il tuo account sia pronto." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "Verifichiamo che tu sia un adulto in collaborazione con <0>KWS. Quando fai clic su \"Inizia\" qui sotto, KWS controllerà se hai precedentemente verificato la tua età utilizzando questo indirizzo email in altri giochi o servizi basati sulla tecnologia KWS. In caso contrario, KWS ti invierà le istruzioni per verificare la tua età. Una volta completato il processo, potrai continuare a utilizzare Bluesky." + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Ti abbiamo inviato un'altra email di verifica a <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "Speriamo di regalarti dei bei momenti. Ricorda, Bluesky è:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Abbiamo esaurito i post di chi segui. Ecco le ultime novità da <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "Consigliamo di selezionare almeno due interessi." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Abbiamo inviato un'email a <0>{0} contenente un link. Fai clic su di esso per completare la procedura di verifica dell'email." -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Non è stato possibile verificare se puoi caricare video. Riprova." @@ -9164,10 +9849,14 @@ msgstr "Non è stato possibile verificare se puoi caricare video. Riprova." msgid "We were unable to load your birth date preferences. Please try again." msgstr "Non è stato possibile caricare le tue preferenze relative alla data di nascita. Riprova." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "Al momento non è stato possibile caricare gli etichettatori configurati." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "Non siamo riusciti a ricevere la verifica a causa di un problema di connessione. Potrebbe arrivare più tardi: se accadrà, il tuo account si aggiornerà automaticamente." + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Non siamo riusciti a connetterci. Riprova per continuare a configurare il tuo account. Se il problema persiste, puoi ignorare questo passaggio." @@ -9176,7 +9865,7 @@ msgstr "Non siamo riusciti a connetterci. Riprova per continuare a configurare i msgid "We will let you know when your account is ready." msgstr "Ti faremo sapere quando il tuo account sarà pronto." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Manderemo un'email a <0>{0} contenente un link. Fai clic su di esso per completare la procedura di verifica dell'email." @@ -9184,6 +9873,22 @@ msgstr "Manderemo un'email a <0>{0} contenente un link. Fai clic su di esso msgid "We'll use this to help customize your experience." msgstr "Lo useremo per personalizzare la tua esperienza." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Stiamo anche aggiornando le nostre <0>linee guida della community e vogliamo il tuo contributo! Queste nuove linee guida entreranno in vigore il 15 ottobre 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Stiamo anche aggiornando le nostre linee guida della community e vogliamo il tuo contributo! Queste nuove linee guida entreranno in vigore il 15 ottobre 2025." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "I nostri server stanno verificando la tua età (l'operazione dovrebbe richiedere solo pochi secondi)." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "Stiamo riscontrando problemi nell'inizializzazione del processo di verifica dell'età per il tuo account. <0>Contatta il supporto per ricevere assistenza." + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Stiamo riscontrando problemi di rete, riprova" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Stiamo introducendo un nuovo livello di verifica su Bluesky -- una spunta riconoscibile." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Siamo felici che tu ti unisca a noi!" @@ -9205,15 +9910,15 @@ msgstr "Siamo spiacenti, ma non siamo riusciti a risolvere questa lista. Se il p msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Non è stato possibile caricare le parole silenziate. Riprova." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Siamo spiacenti, ma non è stato possibile completare la ricerca. Riprova tra qualche minuto." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Ci dispiace! Il post a cui cerchi di rispondere è stato eliminato." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Ci dispiace! Non riusciamo a trovare la pagina che stavi cercando." @@ -9222,6 +9927,26 @@ msgstr "Ci dispiace! Non riusciamo a trovare la pagina che stavi cercando." msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Ci dispiace! Puoi iscriverti solo a venti etichettatori e al momento hai raggiunto questo limite." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "Stiamo aggiornando i nostri <0>termini di servizio, l'<1>informativa sulla privacy e la <2>politica sul copyright, in vigore dal 15 settembre 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "Stiamo aggiornando le nostre politiche" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "Stiamo aggiornando i nostri termini di servizio, l'informativa sulla privacy e la politica sul copyright, in vigore dal 15 settembre 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Stiamo aggiornando i nostri termini di servizio, l'informativa sulla privacy e la politica sul copyright, in vigore dal 15 settembre 2025. Stiamo anche aggiornando le nostre linee guida della community e vogliamo il tuo contributo! Queste nuove linee guida entreranno in vigore il 15 ottobre 2025. Scopri di più su queste modifiche e su come condividere le tue opinioni con noi leggendo il nostro post sul blog." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "Abbiamo verificato la tua età. Ora puoi chiudere questa finestra." + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Bentornat*!" @@ -9240,7 +9965,7 @@ msgstr "Come vuoi chiamare il tuo starter pack?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Come va?" @@ -9256,11 +9981,11 @@ msgstr "In quali lingue è scritto questo post?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Quali lingue vorresti vedere negli algoritmi dei tuoi feed?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Chi può interagire con questo post?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Chi può rispondere" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "Chi può verificare?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Ops!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "Ops! Non è stato possibile caricare i video di tendenza." @@ -9322,12 +10047,12 @@ msgstr "Perché questo utente dovrebbe essere esaminato?" msgid "Write a message" msgstr "Scrivi un messaggio" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Scrivi un post" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Scrivi la tua risposta" @@ -9358,11 +10083,11 @@ msgstr "Sì, disattiva il mio account" msgid "Yes, delete this starter pack" msgstr "Sì, elimina questo starter pack" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Sì, scollega" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Sì" @@ -9378,6 +10103,10 @@ msgstr "Ieri" msgid "You" msgstr "Io" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "Accetti anche le <0>linee guida della community di Bluesky. Una <1>versione aggiornata delle nostre linee guida della community entrerà in vigore il 15 ottobre." + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "Sei un certificatore attendibile" @@ -9386,6 +10115,10 @@ msgstr "Sei un certificatore attendibile" msgid "You are creating an account on" msgstr "Stai creando un account su" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "Al momento non puoi accedere al processo di verifica dell'età. <0>Contatta il nostro team di moderazione se credi che questo sia un errore." + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Sei nella lista." @@ -9403,7 +10136,7 @@ msgstr "Non sei più in diretta" msgid "You are not allowed to go live" msgstr "Non ti è consentito andare in diretta" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Non sei autorizzato a caricare video." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "Sei verificato" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "Sei verificato. Se cambi il tuo nome visualizzato, perderai lo stato di verifica. <0>Scopri di più." @@ -9441,10 +10173,18 @@ msgstr "Puoi anche scoprire nuovi feed personalizzati da seguire." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Puoi anche disattivare temporaneamente il tuo account, e riattivarlo in qualsiasi momento." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "Nelle impostazioni delle chat nell'app puoi scegliere se le notifiche delle chat devono avere un suono" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Puoi proseguire le conversazioni in corso indipendentemente dall'impostazione scelta." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "Ora puoi scegliere di ricevere notifiche quando determinate persone pubblicano. Se desideri ricevere aggiornamenti tempestivi da qualcuno, vai al suo profilo e cerca la nuova icona a forma di campanella vicino al pulsante Segui." + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Adesso puoi accedere con la tua nuova password." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Puoi riattivare il tuo account per accedere. Il tuo profilo e i tuoi post saranno visibili agli altri utenti." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "Puoi configurare le impostazioni di interazione predefinite in <0>Impostazioni → Moderazione → Impostazioni per le interazioni." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Puoi modificare questa preferenza dalle impostazioni." @@ -9472,7 +10212,7 @@ msgstr "Non hai follower." msgid "You don't follow any users who follow @{name}." msgstr "Non segui nessuno che segue @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "Non hai richieste di messaggi al momento." @@ -9480,15 +10220,15 @@ msgstr "Non hai richieste di messaggi al momento." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Non hai ancora alcun codice di invito! Te ne invieremo alcuni quando utilizzerai Bluesky per un po' più a lungo." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Non hai fissato nessun feed." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Non hai salvato nessun feed." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Hai bloccato l'autore o sei stato bloccato dall'autore." @@ -9502,6 +10242,10 @@ msgstr "Hai bloccato questo utente" msgid "You have blocked this user. You cannot view their content." msgstr "Hai bloccato questo utente. Non è possibile visualizzare il contenuto." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "Hai disattivato completamente le notifiche di risposte, citazioni e menzioni, quindi questa scheda non verrà aggiornata. Per modificare questa impostazione, vai alle <0>impostazioni di notifica." + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Hai silenziato questo account." msgid "You have muted this user" msgstr "Hai silenziato questo utente" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Non hai ancora nessuna conversazione. Avviane una!" @@ -9547,7 +10291,7 @@ msgstr "Non hai ancora bloccato nessun account. Per bloccare un account, vai sul msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Non hai ancora silenziato nessun account. Per silenziare un account, vai sul suo profilo e seleziona \"Silenzia account\" dal menu dell'account." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Hai raggiunto la fine" @@ -9572,6 +10316,10 @@ msgstr "Non hai ancora silenziato nessuna parola o tag" msgid "You hid this reply." msgstr "Hai nascosto questa risposta." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "Hai già iniziato questo processo {0} fa. Potrebbero essere necessari fino a 5 minuti prima che le email arrivino nella tua casella di posta elettronica. Aspetta qualche minuto prima di riprovare." + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Puoi presentare ricorso per le etichette se ritieni che siano state applicate per errore." @@ -9592,7 +10340,7 @@ msgstr "Puoi aggiungere un massimo di 3 feed" msgid "You may only select up to 4 images" msgstr "È possibile selezionare fino a 4 immagini" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "Per iscriverti devi avere almeno 13 anni." @@ -9600,6 +10348,14 @@ msgstr "Per iscriverti devi avere almeno 13 anni." msgid "You must be following at least seven other people to generate a starter pack." msgstr "Devi seguire almeno altri 7 utenti per creare uno starter pack." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "Per accedere alle impostazioni sottostanti è necessario completare la verifica dell'età." + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "Per accedere a questa schermata è necessario completare la verifica dell'età." + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Devi concedere il permesso alla galleria per salvare il codice QR" @@ -9608,6 +10364,11 @@ msgstr "Devi concedere il permesso alla galleria per salvare il codice QR" msgid "You must select at least one labeler for a report" msgstr "È necessario selezionare almeno un'etichettatore per un report" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "Devi accedere per vedere questo post." + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "Per abilitare l'autenticazione a due fattori via email è necessario verificare il tuo indirizzo email." @@ -9616,7 +10377,7 @@ msgstr "Per abilitare l'autenticazione a due fattori via email è necessario ver msgid "You previously deactivated @{0}." msgstr "Hai precedentemente disattivato @{0}." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "Probabilmente è il momento di riavviare l'app." @@ -9628,16 +10389,20 @@ msgstr "Hai reagito con {0}" msgid "You reacted {0} to {1}" msgstr "Hai reagito con {0} a {1}" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Verrai disconnesso da tutti i tuoi account." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "Non riceverai più notifiche per {0}" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Non riceverai più notifiche relative a questo thread" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Riceverai le notifiche per questo thread" @@ -9657,11 +10422,11 @@ msgstr "Tu: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Tu: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Seguirai gli utenti e i feed consigliati alla fine della creazione del tuo account!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Seguirai gli utenti consigliati alla fine della creazione del tuo account!" @@ -9673,9 +10438,9 @@ msgstr "Seguirai queste persone e {0} altre" msgid "You'll follow these people right away" msgstr "Seguirai immediatamente queste persone" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Riceverai un'email all'indirizzo <0>{0} per verificare la tua identità." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "Inizierai a ricevere notifiche per {0}!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "Hai scelto di nascondere una parola o un tag in questo post." msgid "You've found some people to follow" msgstr "Hai trovato alcune persone da seguire" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "Hai raggiunto la fine del contenuto attivo." + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Hai raggiunto la fine del tuo feed! Trova altri account da seguire." @@ -9711,19 +10480,23 @@ msgstr "Hai raggiunto la fine del tuo feed! Trova altri account da seguire." msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Hai raggiunto il numero massimo di richieste consentite. Riprova più tardi." -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "Hai raggiunto l'inizio del contenuto attivo." + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Hai raggiunto il limite giornaliero di video caricati (troppi byte)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Hai raggiunto il limite giornaliero di video caricati (troppi video)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Non ci sono altri video da guardare. Forse è il momento giusto per fare una pausa?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Il tuo account" @@ -9735,7 +10508,7 @@ msgstr "Il tuo account è stato eliminato" msgid "Your account has been suspended" msgstr "Il tuo account è stato sospeso" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Il tuo account è troppo recente per caricare video. Riprova più tardi." @@ -9751,11 +10524,11 @@ msgstr "Abbiamo riscontrato che il tuo account viola i <0>termini di servizio di msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "La richiesta di revisione è stata inviata. Se il ricorso ha esito positivo, riceverai un'email." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Data di nascita" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Il tuo browser non supporta questo formato video. Prova con un altro browser." @@ -9765,19 +10538,21 @@ msgstr "Le tue conversazioni sono state disabilitate" #: src/components/dialogs/InAppBrowserConsent.tsx:69 msgid "Your choice will be remembered for future links. You can change it at any time in settings." -msgstr "La tua scelta sarà ricordata per i collegamenti futuri. Puoi cambiarla in qualsiasi momento nelle impostazioni." +msgstr "La tua scelta sarà ricordata per i link futuri. Puoi cambiarla in qualsiasi momento nelle impostazioni." #: src/screens/Settings/components/ChangeHandleDialog.tsx:513 msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Il tuo attuale nome utente <0>{0} rimarrà automaticamente riservato per te. Puoi tornare a usarlo in qualsiasi momento da questo account." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "Il tuo indirizzo email è stato aggiornato ma non è ancora verificato. Come passo successivo, verifica la tua nuova email." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "La tua email" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Sembra che il tuo indirizzo email non sia corretto." @@ -9786,15 +10561,11 @@ msgstr "Sembra che il tuo indirizzo email non sia corretto." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "La tua email non è stata ancora verificata. Verifica la tua email per poter usare tutte le funzionalità di Bluesky." -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "La tua email non è stata ancora verificata. Ti consigliamo di fare questo importante passo per la sicurezza del tuo account." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "Il tuo primo mi piace!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "I tuoi follower" @@ -9806,19 +10577,15 @@ msgstr "Il tuo feed Seguiti è vuoto! Segui più utenti per vedere cosa sta succ msgid "Your full handle will be <0>@{0}" msgstr "Il tuo nome utente completo sarà <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "Il tuo nome utente completo sarà <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "I tuoi interessi" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "I tuoi interessi sono stati salvati!" @@ -9835,15 +10602,15 @@ msgstr "Le tue parole silenziate" msgid "Your password has been changed successfully!" msgstr "La tua password è stata modificata correttamente!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "La tua password deve essere lunga almeno 8 caratteri." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Il tuo post è stato pubblicato" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "I tuoi post sono stati pubblicati" @@ -9851,15 +10618,19 @@ msgstr "I tuoi post sono stati pubblicati" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "I tuoi post, i tuoi mi piace e gli account bloccati sono pubblici. Gli account silenziati sono privati." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "La tua lingua preferita" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Il tuo profilo, post, feed, e liste non saranno più visibili agli altri utenti. Puoi riattivare il tuo account in qualsiasi momento effettuando l'accesso." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "La tua risposta è stata pubblicata" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "La segnalazione sarà inviata a <0>{0}." @@ -9867,7 +10638,7 @@ msgstr "La segnalazione sarà inviata a <0>{0}." msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "La tua segnalazione verrà inviata al servizio moderazione di Bluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "Gli interessi che selezioni ci permettono di mostrare i contenuti più pertinenti." diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po index a8d31fa1e7..97737a874e 100644 --- a/src/locale/locales/ja/messages.po +++ b/src/locale/locales/ja/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ja\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -27,7 +27,7 @@ msgstr "(アクティブ)" msgid "(contains embedded content)" msgstr "(埋め込みコンテンツあり)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(メールがありません)" @@ -79,9 +79,9 @@ msgstr "{0, plural, other {# リポスト}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, other {#秒}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, other {#件の未読}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, other {#件の未読}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, other {#ヶ月}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, other {フォロワー}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, other {フォロー中}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, other {いいね}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, other {いいね}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, other {投稿}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, other {引用}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, other {リポスト}}" @@ -135,6 +138,10 @@ msgstr "<0><1>タグ中の{0}" msgid "{0} <0>in <1>text & tags" msgstr "<0><1>テキストとタグ中の{0}" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} フォロー中" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "{0}はライブ中" @@ -143,11 +150,15 @@ msgstr "{0}はライブ中" msgid "{0} is not a valid URL" msgstr "{0} は有効な URL ではありません" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "{0}は利用できません" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "今週、{0}人が参加しました" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} / {1}" @@ -164,8 +175,16 @@ msgstr "{0}が{1}とリアクションしました" msgid "{0} reacted {1} to {2}" msgstr "{0}が{2}に{1}とリアクションしました" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0}、{1}によるフィード、{2}人がいいね" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0}、{1}によるリスト" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "{0}のアバター" @@ -197,12 +216,12 @@ msgstr "{0}分" msgid "{0}s" msgstr "{0}秒" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, other {#件の未読}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "{displayName}のスターターパック" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, other {時間}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, other {分}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたをフォローしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたのカスタムフィードをいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたの投稿をいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたのリポストをいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} と <0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}} があなたのアカウントから認証を削除しました" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたの投稿をリポストしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたのリポストをリポストしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたのスターターパックでサインアップしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} と <0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}} があなたを認証しました" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink}があなたをフォローしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink}があなたをフォローバックしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink}があなたのカスタムフィードをいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink}があなたの投稿をいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink}があなたのリポストをいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} があなたのアカウントから認証を削除しました" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink}があなたの投稿をリポストしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink}があなたのリポストをリポストしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink}があなたのスターターパックでサインアップしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} があなたを認証しました" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたをフォローしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたのカスタムフィードをいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたの投稿をいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたのリポストをいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} と {additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}} があなたのアカウントから認証を削除しました" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたの投稿をリポストしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人が}}あなたのリポストをリポストしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたのスターターパックでサインアップしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} と {additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}} があなたを認証しました" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName}があなたをフォローしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName}があなたをフォローバックしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName}があなたのカスタムフィードをいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName}があなたの投稿をいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName}があなたのリポストをいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} があなたのアカウントから認証を削除しました" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName}があなたの投稿をリポストしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName}があなたのリポストをリポストしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName}があなたのスターターパックでサインアップしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} があなたを認証しました" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} フォロー" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "{handle}にメッセージを送れません" @@ -392,7 +410,7 @@ msgstr "{joinedAllTimeCount, plural, other {#人のユーザーが}}参加しま msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "{minutes, plural, other {#分}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, other {#件の未読}}" @@ -432,12 +450,12 @@ msgstr "{userName}の認証情報" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}、<1>{1}、そして{2, plural, other {他#人}}があなたのスターターパックに含まれています" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}、<1>{1}、そして{2, plural, other {他#人}}があなたのスターターパックに含まれています" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, other {フォロワー}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, other {フォロー}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0}と<2>{1}はあなたのスターターパックに含まれています" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0}はあなたのスターターパックに含まれています" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0}のメンバー" @@ -466,11 +484,11 @@ msgstr "<0>{0}のメンバー" msgid "<0>{date} at {time}" msgstr "<0>{date} {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>実験的機能: この設定を有効にすると、フォローしているユーザからのみ返信と引用通知を受け取れます。今後、いろいろなコントロールを追加します。" +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<4>ニュース、スポーツ、政治、ほか、Bluesky上で起こっているその他すべてのことを検索するためには<0>サインイン<1>するか<2>アカウントを作成<3>してください。" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>あなたと<1><2>{0}はあなたのスターターパックに含まれています" @@ -503,10 +521,14 @@ msgstr "メッセージ" msgid "A new form of verification" msgstr "認証の新しい形" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "プロフィールページのスクリーンショットには、フォローボタンの横にベルのアイコンが付いており、新しいアクティビティ通知機能を示します。" + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "このアプリについて" @@ -524,25 +546,25 @@ msgstr "チャットのリクエストを承認する" msgid "Accept Request" msgstr "リクエストを承認" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "アクセシビリティ" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "アクセシビリティの設定" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "アカウント" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "アカウントをフォローしました" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "ミュート中のアカウント" msgid "Account Muted by List" msgstr "リストによってミュート中のアカウント" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "アカウントオプション" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "クイックアクセスからアカウントを解除" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "アカウントのフォローを解除しました" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "アカウントのミュートを解除しました" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "スカラップ状(帆立貝の形状)の青色のチェックマーク <0><1/> のあるアカウントは他のユーザを認証できます。これらの信頼できる認証者はBlueskyによって選択されています。" +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "他のユーザーからのアクティビティ" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "アクティビティの通知" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "追加" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "続けるにはさらに{0}ユーザー追加してください" @@ -634,8 +666,8 @@ msgstr "アカウントを追加" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "ALTテキストを追加" msgid "Add alt text (optional)" msgstr "ALTテキストを追加(オプション)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "他のアカウントを追加" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "他の投稿を追加" @@ -670,8 +702,8 @@ msgstr "アプリパスワードを追加" msgid "Add emoji reaction" msgstr "絵文字リアクションを追加" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "詳細を追加(オプション)" @@ -683,7 +715,7 @@ msgstr "選択した設定でミュートワードを追加" msgid "Add muted words and tags" msgstr "ミュートするワードとタグを追加" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "新しい投稿を追加" @@ -704,7 +736,7 @@ msgstr "リアクションを追加" msgid "Add recommended feeds" msgstr "おすすめのフィードを追加" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "あなたのスターターパックにフィードをいくつか追加してください!" @@ -725,10 +757,6 @@ msgstr "このフィードをあなたのフィードに追加する" msgid "Add to lists" msgstr "リストに追加" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "マイフィードに追加" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "リストにユーザーを追加" @@ -738,11 +766,11 @@ msgstr "リストにユーザーを追加" msgid "Added to list" msgstr "リストに追加" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "マイフィードに追加" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "追加の詳細(1000文字まで)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "追加の詳細(300文字まで)" @@ -750,18 +778,18 @@ msgstr "追加の詳細(300文字まで)" msgid "Adult" msgstr "成人向け(ポルノ等)" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "成人向けコンテンツ" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "成人向けコンテンツは<0>bsky.appのウェブ版からしか有効にできません。" -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "成人向けコンテンツは無効になっています。" @@ -770,16 +798,32 @@ msgstr "成人向けコンテンツは無効になっています。" msgid "Adult Content labels" msgstr "成人向けコンテンツのラベル" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "高度な設定" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "年齢保証" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "年齢保証の問い合わせに失敗しました。もう一度お試しください。" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "年齢保証の問い合わせが送られました" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "年齢保証には数分かかります" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "alice@example.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "すべて" @@ -793,7 +837,7 @@ msgstr "すべてのアカウントをフォローしました!" msgid "All languages" msgstr "すべての言語" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "保存されたすべてのフィードを1箇所にまとめます。" @@ -802,16 +846,21 @@ msgstr "保存されたすべてのフィードを1箇所にまとめます。 msgid "Allow access to your direct messages" msgstr "ダイレクトメッセージへのアクセスを許可" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "新しいメッセージを誰から受け取れるか:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "他のユーザーにあなたの投稿の通知を許可する" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "引用を許可" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "誰が返信できるか:" @@ -828,13 +877,13 @@ msgstr "コードをすでに持っていますか?" msgid "Already signed in as @{0}" msgstr "@{0}としてすでにサインイン済み" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "ALTテキスト" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "ALTテキスト" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "ALTテキストは、すべての人が文脈を理解できるようにするために、視覚障害者や低視力者向けに提供する画像の説明文です。" @@ -861,27 +910,19 @@ msgstr "ALTテキストは切り詰められます。{MAX_ALT_TEXT, plural, othe msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "メールが{0}に送信されました。以下に入力できる確認コードがそのメールに記載されています。" -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "メールを前のメールアドレス {currentEmail} に送りました。以下に入力できる確認コードがそのメールに記載されています。" - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "メールが送信されました!メールに書かれている確認コードを以下に入力してください。" - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "エラーが発生しました" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "エラーが発生しました" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "ビデオの圧縮中にエラーが発生しました。" -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "フィードの取得中にエラーが発生しました。" @@ -889,11 +930,11 @@ msgstr "フィードの取得中にエラーが発生しました。" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "スターターパックの生成中にエラーが発生しました。もう一度試しますか?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "ビデオの読み込み時にエラーが発生しました。時間をおいてもう一度お試しください。" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "ビデオの読み込み時にエラーが発生しました。もう一度お試しください。" @@ -910,7 +951,7 @@ msgstr "ビデオの選択中にエラーが発生しました" msgid "An error occurred while trying to follow all" msgstr "すべてフォローしようとしたらエラーが発生しました" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "ビデオのアップロード中にエラーが発生しました。" @@ -934,8 +975,8 @@ msgstr "チャットを開始しようとした時に問題が発生しました #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "何らかのエラーが発生しました" msgid "an unknown labeler" msgstr "不明なラベラー" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "および" @@ -963,10 +1004,14 @@ msgstr "および" msgid "Animals" msgstr "動物" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "アニメーションGIF" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "お知らせ" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "Blueskyでの認証のお知らせ" @@ -980,7 +1025,13 @@ msgstr "反社会的な行動" msgid "Anybody can interact" msgstr "誰でも反応可能" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "フォローしている人" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "アプリパスワードの名前には、英数字、スペース、ハ msgid "App password names must be at least 4 characters long" msgstr "アプリパスワードの名前は長さが4文字以上である必要があります" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "アプリパスワード" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "アプリパスワード" @@ -1053,10 +1104,10 @@ msgstr "アカウント停止に異議申し立て" msgid "Appeal this decision" msgstr "この決定に異議を申し立てる" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "外観" @@ -1065,12 +1116,20 @@ msgstr "外観" msgid "Apply default recommended feeds" msgstr "デフォルトのおすすめフィードを追加" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "プルリクエストを適用" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "{0}のアーカイブ" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "アーカイブ投稿" @@ -1078,7 +1137,7 @@ msgstr "アーカイブ投稿" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "アプリパスワード「{0}」を本当に削除しますか?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "このメッセージを本当に削除しますか?このメッセージはあなたからは削除したように見えますが、他の参加者からは削除されません。" @@ -1098,19 +1157,15 @@ msgstr "本当にこの会話を終了しますか?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "この会話から退出しますか?あなたのメッセージはあなたからは削除したように見えますが、他の参加者からは削除されません。" -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "あなたのフィードから{0}を削除してもよろしいですか?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "本当にこのフィードをあなたのフィードから削除したいですか?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "本当にこの下書きを削除しますか?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "本当にこの投稿を削除しますか?" @@ -1131,29 +1186,26 @@ msgstr "アート" msgid "Artistic or non-erotic nudity." msgstr "芸術的または性的ではないヌード。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "アルゴリズム用にトピックを割り当て" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "少なくとも3文字" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "オーロラ" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "自動再生オプションは<0>コンテンツとメディアの設定へ移動しました。" - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "ビデオとGIFの自動再生" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "利用可能" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "ビデオとGIFの自動再生" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "戻る" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "チャットへ戻る" @@ -1195,28 +1247,44 @@ msgstr "スターターパックを作る前に、まずメールアドレスを msgid "Before you can accept this chat request, you must first verify your email." msgstr "このチャットのリクエストを受け付けるには、まずメールアドレスの確認が必要です。" +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "{name}の投稿の通知を受け取る前に、まずメールアドレスを確認してください。" + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "他のユーザーにメッセージを送るには、まずメールアドレスの確認が必要です。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "開始" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "年齢保証プロセスを開始" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "年齢保証プロセスを開始するには、以下のフィールドを入力します。" + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "生年月日" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "ブロック" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "ブロック" msgid "Block account" msgstr "アカウントをブロック" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "アカウントをブロックしますか?" @@ -1262,20 +1330,20 @@ msgstr "ユーザーをブロック" msgid "Block User" msgstr "ユーザーをブロック" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "ブロックされています" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "ブロック中のアカウント" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "ブロック中のアカウント" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ブロック中のアカウントは、あなたのスレッドでの返信、あなたへのメンション、その他の方法であなたとやり取りすることはできません。" @@ -1284,11 +1352,11 @@ msgstr "ブロック中のアカウントは、あなたのスレッドでの返 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "ブロック中のアカウントは、あなたのスレッドでの返信、あなたへのメンション、その他の方法であなたとやり取りすることはできません。あなたは相手のコンテンツを見ることができず、相手はあなたのコンテンツを見ることができなくなります。" -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "投稿をブロックしました。" -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "ブロックしてもこのラベラーがあなたのアカウントにラベルを適用することができます。" @@ -1309,11 +1377,12 @@ msgstr "ブログ" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Blueskyでは、この投稿日時の信憑性を確認できません。" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1347,6 +1416,14 @@ msgstr "Blueskyはログアウトしたユーザーにあなたのプロフィ msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Blueskyは著名な本物のアカウントを積極的に認証します。" +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "Blueskyのコミュニティガイドライン" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "Blueskyの更新されたコミュニティガイドライン" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "画像のぼかしとフィードからのフィルタリング" msgid "Books" msgstr "書籍" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "検索ページでさらにアカウントを見る" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "検索ページでさらにフィードを見る" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "さらにおすすめを見る" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "検索ページでさらにおすすめを見る" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "ビジネス" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "作成者:{0}" @@ -1428,15 +1502,23 @@ msgstr "作成者:{0}" msgid "By <0>{0}" msgstr "作成者:<0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "「続ける」をクリックすると、これらの更新を理解し、同意したことになります。" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "続行することで あなたは<0>KWS利用規約に同意し、<1>KWSプライバシーポリシーに従い、KWSがあなたのハッシュ化したメールアドレスで確認済みのステータスを保存することに同意するものとします。 これは、次回このメールをKWSテクノロジーを搭載した他のアプリ、ゲーム、サービスに使用する際に再度認証する必要がないことを意味します。" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "アカウントを作成することで、<0>プライバシーポリシーに同意したものとみなされます。" -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "アカウントを作成することで、<0>利用規約と<1>プライバシーポリシーに同意したものとみなされます。" -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "アカウントを作成することで、<0>利用規約に同意したものとみなされます。" @@ -1448,14 +1530,17 @@ msgstr "作成者:あなた" msgid "Camera" msgstr "カメラ" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "カメラ" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "キャンセル" @@ -1500,11 +1582,7 @@ msgstr "アカウントの削除をキャンセル" msgid "Cancel image crop" msgstr "画像の切り抜きをキャンセル" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "プロフィールの編集をキャンセル" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "引用をキャンセル" @@ -1516,14 +1594,10 @@ msgstr "再有効化をキャンセルしてサインアウト" msgid "Cancel search" msgstr "検索をキャンセル" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "リンク先のウェブサイトを開くことをキャンセル" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "ブロックしたユーザーとはやりとりできません" @@ -1553,17 +1627,12 @@ msgstr "アプリアイコンを「{0}」へ変更" msgid "Change app language" msgstr "アプリの言語を変更" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "メールアドレスを変更" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "ハンドルを変更" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "モデレーションサービスを変更" @@ -1579,14 +1648,6 @@ msgstr "投稿の言語を{suggestedLanguageName}に変更します" msgid "Change report reason" msgstr "報告の理由を変更" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "メールアドレスを変更" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "メールアドレスを変更" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "アプリアイコンを変更" @@ -1596,10 +1657,15 @@ msgstr "アプリアイコンを変更" msgid "Changes hosting provider" msgstr "ホスティングプロバイダーを変更" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "変更を保存しました" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "チャット" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "チャットを削除しました" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "チャットメッセージ - 無音" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "チャットメッセージ - 音あり" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "チャットをミュートしました" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "チャット要求の受信トレイ" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "チャットの要求" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "チャットの設定" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "チャットの設定" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "チャットのミュートを解除しました" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "チャット" @@ -1661,7 +1738,7 @@ msgstr "入力したメールアドレスの受信トレイを確認して、以 msgid "Choose domain verification method" msgstr "ドメイン名の確認方法を選択" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "フィードの選択" @@ -1669,7 +1746,7 @@ msgstr "フィードの選択" msgid "Choose for me" msgstr "私向けに選んで" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "ユーザーの選択" @@ -1685,23 +1762,23 @@ msgstr "この色をアバターとして選択" msgid "Choose your account provider" msgstr "アカウントプロバイダーを選んでください" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "自分自身のタイムラインを選びましょう!コミュニティによって作成されたフィードは、あなたが好きなコンテンツを見つけるのに役立ちます。" -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "パスワードを入力" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "ユーザー名を選んでください" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "すべてのストレージデータをクリア" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "すべてのストレージデータをクリア(このあと再起動します)" @@ -1714,23 +1791,27 @@ msgstr "画像のキャッシュをクリア" msgid "Clear search query" msgstr "検索クエリをクリア" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "クリックして情報を表示" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "こちらをクリック" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "確認プロセスを再開するには、ここをクリックしてください。" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "メールアドレスの更新は、ここをクリック" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "クリックしてこの投稿の引用投稿を無効に。" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "クリックしてこの投稿の引用投稿を有効に。" @@ -1750,14 +1831,16 @@ msgstr "気象" msgid "Clip 🐴 clop 🐴" msgstr "パカラッ 🐴 パカラッ 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "パカラッ 🐴 パカラッ 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "閉じる" @@ -1789,13 +1876,15 @@ msgstr "アラートを閉じる" msgid "Close bottom drawer" msgstr "一番下の引き出しを閉じる" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "ダイアログを閉じる" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "引き出しメニューを閉じる" @@ -1804,7 +1893,7 @@ msgstr "引き出しメニューを閉じる" msgid "Close emoji picker" msgstr "絵文字選択を閉じる" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "GIFのダイアログを閉じる" @@ -1822,7 +1911,7 @@ msgstr "画像ビューアを閉じる" msgid "Close menu" msgstr "メニューを閉じる" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "このダイアログを閉じる" @@ -1830,7 +1919,7 @@ msgstr "このダイアログを閉じる" msgid "Closes password update alert" msgstr "パスワード更新アラートを閉じる" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "投稿の編集画面を閉じて下書きを破棄" @@ -1843,16 +1932,16 @@ msgstr "絵文字選択を閉じる" msgid "Closes viewer for header image" msgstr "ヘッダー画像のビューワーを閉じる" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "ユーザーリストを折りたたむ" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "指定した通知のユーザーリストを折りたたむ" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "カラーモード" @@ -1870,7 +1959,8 @@ msgstr "コメディー" msgid "Comics" msgstr "漫画" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "コミュニティガイドライン" @@ -1879,38 +1969,34 @@ msgstr "コミュニティガイドライン" msgid "Complete onboarding and start using your account" msgstr "初期設定を完了してアカウントを使い始める" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "テストをクリアしてください" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "新しい投稿を作成" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "最大{0, plural, other {#文字}}まで投稿を編集" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "返信を作成" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "ビデオを圧縮中…" -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "このカテゴリのコンテンツフィルタリングを設定:{name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "<0>モデレーションの設定で設定されています。" -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "コンテンツの言語設定を確認" msgid "Confirm delete account" msgstr "アカウントの削除を確認" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "年齢の確認:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "生年月日の確認" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "生年月日の確認" msgid "Confirmation code" msgstr "確認コード" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "確認コード" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "接続中…" -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "接続の問題" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "モデレーションチームに連絡する" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "サポートに連絡" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "お問い合わせ" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "コンテンツ&メディア" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "コンテンツとメディア" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "コンテンツとメディア" @@ -1977,7 +2069,8 @@ msgstr "コンテンツとメディア" msgid "Content Blocked" msgstr "ブロックされたコンテンツ" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "コンテンツのフィルター" @@ -2006,10 +2099,12 @@ msgstr "コンテンツの警告" msgid "Content warnings" msgstr "コンテンツの警告" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "コンテキストメニューの背景をクリックし、メニューを閉じる。" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "続行" msgid "Continue as {0} (currently signed in)" msgstr "{0}として続行(現在サインイン中)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "スレッドの続き" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "スレッドの続き…" @@ -2029,6 +2129,10 @@ msgstr "スレッドの続き…" msgid "Continue to next step" msgstr "次のステップへ進む" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "会話" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "コピーしました" msgid "Copied build version to clipboard" msgstr "ビルドバージョンをクリップボードにコピーしました" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "ビルドバージョンをクリップボードへコピー" msgid "Copy" msgstr "コピー" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "とにかくコピーする" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "アプリパスワードをコピー" @@ -2087,8 +2187,8 @@ msgstr "アプリパスワードをコピー" msgid "Copy at:// URI" msgstr "at:// URIをコピー" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "投稿者のDIDをコピー" @@ -2120,10 +2220,10 @@ msgstr "リンクをコピー" msgid "Copy link to list" msgstr "リストへのリンクをコピー" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "投稿へのリンクをコピー" @@ -2136,18 +2236,18 @@ msgstr "プロフィールへのリンクをコピー" msgid "Copy link to starter pack" msgstr "スターターパックへのリンクをコピー" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "メッセージのテキストをコピー" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "投稿のat:// URIをコピー" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "投稿のテキストをコピー" @@ -2159,11 +2259,25 @@ msgstr "QRコードをコピー" msgid "Copy TXT record value" msgstr "TXTレコードの値をコピー" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "著作権ポリシー" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "カスタムフィードへ接続できませんでした" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "フィードサービスへ接続できませんでした" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "プロフィールを見つけることができませんでした" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "チャットのミュートに失敗しました" msgid "Could not process your video" msgstr "ビデオを処理できませんでした" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "変更を保存できませんでした: {0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "通知の設定を更新できませんでした" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "作成" @@ -2195,7 +2317,7 @@ msgstr "スターターパックのQRコードを作成" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "スターターパックを作成" @@ -2205,21 +2327,22 @@ msgstr "私向けのスターターパックを作成" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "アカウントを作成" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "アカウントを作成" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "アカウントを作成" @@ -2241,7 +2364,7 @@ msgstr "別のものを作成" msgid "Create new account" msgstr "新しいアカウントを作成" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "{0}の報告を作成" @@ -2268,7 +2391,7 @@ msgstr "カスタム" msgid "Customization options" msgstr "カスタマイズオプション" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "この投稿に誰が反応できるかカスタマイズする。" @@ -2278,12 +2401,12 @@ msgstr "Blueskyでの体験をカスタマイズ" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "ダーク" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "ダーク" @@ -2292,21 +2415,21 @@ msgstr "ダーク" msgid "Dark mode" msgstr "ダークモード" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "ダークテーマ" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "生年月日" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "アカウントを無効化" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "モデレーションをデバッグ" @@ -2314,7 +2437,7 @@ msgstr "モデレーションをデバッグ" msgid "Debug panel" msgstr "デバッグパネル" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "デフォルト" @@ -2322,8 +2445,8 @@ msgstr "デフォルト" msgid "Default icons" msgstr "デフォルトアイコン" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "デフォルトアイコン" msgid "Delete" msgstr "削除" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "アカウントを削除" @@ -2355,7 +2478,7 @@ msgstr "アプリパスワードを削除しますか?" msgid "Delete chat" msgstr "チャットを削除" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "チャットの宣言レコードを削除" @@ -2370,7 +2493,7 @@ msgstr "会話を削除" msgid "Delete Conversation" msgstr "会話を削除" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "自分宛を削除" @@ -2378,11 +2501,11 @@ msgstr "自分宛を削除" msgid "Delete list" msgstr "リストを削除" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "メッセージを削除" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "メッセージの宛先から自分を削除" @@ -2390,9 +2513,9 @@ msgstr "メッセージの宛先から自分を削除" msgid "Delete my account" msgstr "アカウントを削除" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "投稿を削除" @@ -2409,11 +2532,11 @@ msgstr "スターターパックを削除しますか?" msgid "Delete this list?" msgstr "このリストを削除しますか?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "この投稿を削除しますか?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "削除されています" @@ -2422,15 +2545,20 @@ msgstr "削除されています" msgid "Deleted Account" msgstr "削除されたアカウント" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "削除されたリスト" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "投稿を削除しました。" #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "説明" @@ -2447,12 +2575,12 @@ msgstr "説明が長すぎます。{DESCRIPTION_MAX_GRAPHEMES, plural, other { msgid "Descriptive alt text" msgstr "説明的なALTテキスト" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "引用を切り離す" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "引用投稿を切り離しますか?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "開発者モードを有効にしました" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "開発者用オプション" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "ダイアログ:この投稿に誰が反応できるか調整" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "グレー" @@ -2492,27 +2620,27 @@ msgstr "メールでの2要素認証を無効にする" msgid "Disable Email 2FA" msgstr "メールでの2要素認証を無効にする" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "触覚フィードバックを無効化" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "サブタイトル(字幕)を無効にする" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "無効" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "破棄" @@ -2520,11 +2648,11 @@ msgstr "破棄" msgid "Discard changes?" msgstr "変更を破棄しますか?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "下書きを削除しますか?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "投稿を削除しますか?" @@ -2542,7 +2670,7 @@ msgstr "フィードを探す" msgid "Discover new custom feeds" msgstr "新しいカスタムフィードを見つける" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "新しいフィードを探す" @@ -2550,7 +2678,7 @@ msgstr "新しいフィードを探す" msgid "Dismiss" msgstr "消す" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "エラーを消す" @@ -2562,26 +2690,26 @@ msgstr "入門ガイドを消す" msgid "Dismiss interests" msgstr "「気になること」を消す" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "メッセージを閉じる" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "このセクションを消す" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "大きなALTテキストのバッジを表示" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "表示名" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "表示名" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "表示名が長すぎます" @@ -2603,15 +2731,11 @@ msgstr "このミュートワードはフォローしているユーザーには msgid "Does not include nudity." msgstr "ヌードは含まれません。" -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "ハイフンで始まったり終ったりしない" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "ドメインを確認しました!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "コードを持っていないか、新しいコードが必要ですか?<0>ここをクリックしてください。" @@ -2619,6 +2743,15 @@ msgstr "コードを持っていないか、新しいコードが必要ですか msgid "Don't see an email? <0>Click here to resend." msgstr "メールが届いていませんか?<0>ここをクリックすれば再送信します。" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "今後表示しない" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "心配しないでください!すべての既存のメッセージと設定が保存され、あなたが成人であることを確認した後に利用できるようになります。" + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "メッセージをダブルタップか長押しでリアクションを msgid "Double tap to close the dialog" msgstr "ダブルタップでダイアログを閉じる" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "ダブルタップでいいね" @@ -2673,7 +2806,7 @@ msgstr "Blueskyをダウンロード" msgid "Download CAR file" msgstr "CARファイルをダウンロード" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "ドロップして画像を追加する" @@ -2689,18 +2822,10 @@ msgstr "例:太郎" msgid "e.g. Alice Lastname" msgstr "例:山田 太郎" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "例:山田 太郎" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "例:example.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "例:アーティスト、犬好き、熱烈な読書家。" - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "例:芸術的なヌード。" @@ -2725,10 +2850,11 @@ msgstr "例:返信として広告を繰り返し送ってくるユーザー。 msgid "Each code works once. You'll receive more invite codes periodically." msgstr "それぞれのコードは一回限り有効です。定期的に追加の招待コードをお送りします。" -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "編集" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "編集" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "アバターを編集" @@ -2749,12 +2875,12 @@ msgstr "フィードを編集" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "画像を編集" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "反応関連の設定を編集" @@ -2776,33 +2902,33 @@ msgstr "ライブステータスを編集" msgid "Edit Moderation List" msgstr "モデレーションリストを編集" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "マイフィードを編集" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "プロフィールを編集" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "{0}からの通知を編集" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "ユーザーを編集" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "投稿への反応の設定を編集" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "プロフィールを編集" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "プロフィールを編集" @@ -2814,19 +2940,11 @@ msgstr "スターターパックを編集" msgid "Edit User List" msgstr "ユーザーリストを編集" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "誰が返信できるのかを編集" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "表示名を編集" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "プロフィールの説明を編集" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "スターターパックを編集" @@ -2839,8 +2957,8 @@ msgstr "教育" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "リストの作者にブロックされているか、作者をブロックしています。" -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "メールアドレス" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "メールでの2要素認証を無効にしました" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "メールでの2要素認証が有効" @@ -2865,10 +2983,6 @@ msgstr "メール再送済" msgid "Email sent!" msgstr "メールを送りました!" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "メールアドレスを更新しました!" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "メールアドレスの確認が完了しました!" @@ -2883,8 +2997,8 @@ msgstr "HTMLコードを埋め込む" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "投稿を埋め込む" @@ -2892,7 +3006,7 @@ msgstr "投稿を埋め込む" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "この投稿をあなたのウェブサイトに埋め込みます。以下のスニペットをコピーして、あなたのウェブサイトのHTMLコードに貼り付けるだけです。" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "埋め込みビデオプレーヤー" @@ -2906,7 +3020,7 @@ msgstr "有効にする" msgid "Enable {0} only" msgstr "{0}のみ有効にする" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "成人向けコンテンツを有効にする" @@ -2919,16 +3033,20 @@ msgstr "メールでの2要素認証を有効にする" msgid "Enable external media" msgstr "外部メディアを有効にする" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "有効にするメディアプレーヤー" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "優先通知を有効にする" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "プロフィールにアクセスして<0>ベルのアイコン<1/>を押すことでアカウントの通知を有効にします。" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "プッシュ通知を有効にする" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "サブタイトル(字幕)を有効にする" @@ -2941,17 +3059,14 @@ msgstr "このソースのみ有効にする" msgid "Enable trending topics" msgstr "トレンド・トピックを有効にする" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Discoverフィードでトレンド・ビデオを有効にする" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Discoverフィードでトレンド・ビデオを有効にする。" - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "有効" @@ -2963,7 +3078,7 @@ msgstr "フィードの終わり" msgid "Ensure you have selected a language for each subtitle file." msgstr "各字幕ファイルに言語が選択されてることを確認してください。" -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "パスワードを入力" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "ワードまたはタグを入力" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "コードを入力" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "コードを入力" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "全画面表示にする" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "生年月日を入力してください" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "メールアドレスを入力してください" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "以下に新しいメールアドレスを入力してください。" - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "パスワードを入力" @@ -3022,7 +3129,7 @@ msgstr "パスワードを入力" msgid "Enter your username and password" msgstr "ユーザー名とパスワードを入力してください" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "フルスクリーンで表示" @@ -3030,16 +3137,28 @@ msgstr "フルスクリーンで表示" msgid "Entertainment" msgstr "エンターテインメント" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "エラー" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "投稿の読み込みに失敗しました" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "設定の読み込みに失敗しました" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "エラーメッセージ" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "ファイルの保存中にエラーが発生しました" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "CAPTCHAレスポンスの受信中にエラーが発生しました。" @@ -3047,27 +3166,34 @@ msgstr "CAPTCHAレスポンスの受信中にエラーが発生しました。" msgid "Error:" msgstr "エラー:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "エラー:{error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "全員" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "誰でも返信可能" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "この投稿に全員が返信できる。" -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "全員" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "他すべて" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "フォローしているユーザーは除外" msgid "Excludes users you follow" msgstr "フォローしているユーザーは除外" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "全画面表示を終了" @@ -3106,24 +3232,28 @@ msgstr "画像表示を終了" msgid "Expand alt text" msgstr "ALTテキストを展開" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "ユーザーリストを展開" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "返信する投稿全体を展開または折りたたむ" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "投稿のテキストを展開" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "テキストを展開または折りたたむ" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "レコードを指すURIではありません" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "実験的機能" @@ -3153,15 +3283,15 @@ msgstr "露骨な、または不愉快になる可能性のあるメディア。 msgid "Explicit sexual images." msgstr "露骨な性的画像。" -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "検索" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "私のデータをエクスポートする" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "外部メディア" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 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:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "外部メディアの設定" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "チャットの受け入れに失敗しました" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "絵文字リアクションを追加できませんでした" @@ -3211,8 +3341,8 @@ msgstr "アプリパスワードの作成に失敗しました。もう一度試 msgid "Failed to create conversation" msgstr "会話の作成に失敗しました" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "スターターパックの作成に失敗しました" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "チャットの承認に失敗しました" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "メッセージの削除に失敗しました" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "投稿の削除に失敗しました。もう一度お試しください。" @@ -3238,8 +3368,8 @@ msgstr "投稿の削除に失敗しました。もう一度お試しください msgid "Failed to delete starter pack" msgstr "スターターパックの削除に失敗しました" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "会話の読み込みに失敗しました" @@ -3250,14 +3380,32 @@ msgstr "会話の読み込みに失敗しました" msgid "Failed to load feeds preferences" msgstr "フィードの設定の読み込みに失敗しました" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "GIFの読み込みに失敗しました" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "通知設定の読み込みに失敗しました。" + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "過去のメッセージの読み込みに失敗しました" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "設定の読み込みに失敗しました。" + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "おすすめのフィードの読み込みに失敗しました" msgid "Failed to load suggested follows" msgstr "おすすめのフォローの読み込みに失敗しました" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "すべての要求を既読としてマークできませんでした" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "投稿の固定に失敗しました" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "絵文字リアクションの削除に失敗しました" @@ -3291,15 +3439,11 @@ msgstr "認証の削除に失敗しました" msgid "Failed to save image: {0}" msgstr "画像の保存に失敗しました:{0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "通知の設定の保存に失敗しました。もう一度お試しください" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "設定の保存に失敗しました。もう一度試してください。" -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "「気になること」の保存に失敗しました。" @@ -3318,7 +3462,7 @@ msgstr "メールの送信に失敗しました。後でもう一度お試しく msgid "Failed to submit appeal, please try again." msgstr "異議申し立ての送信に失敗しました。もう一度お試しください。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "スレッドのミュートの切り替えに失敗しました。もう一度お試しください" @@ -3335,7 +3479,11 @@ msgstr "メールの更新に失敗しました。後でもう一度お試しく msgid "Failed to update feeds" msgstr "フィードの更新に失敗しました" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "通知受信制限の更新に失敗しました" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "設定の更新に失敗しました" @@ -3354,15 +3502,23 @@ msgstr "メールの確認に失敗しました。後でもう一度お試しく msgid "Failed to verify handle. Please try again." msgstr "ハンドルの変更に失敗しました。もう一度試してください。" -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "フィード" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "{0}によるフィード" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "フィードの作者" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "フィードの識別子" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "フィードメニュー" @@ -3371,35 +3527,39 @@ msgstr "フィードメニュー" msgid "Feed toggle" msgstr "フィードの切り替え" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "フィードを利用できません" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "フィードバック" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "フィードバックを送信しました!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "フィード" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "フィードはユーザーがプログラミングの専門知識を持って構築するカスタムアルゴリズムです。詳細については、<0/>を参照してください。" #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "フィードを更新しました!" @@ -3428,6 +3588,14 @@ msgstr "言語で検索をフィルター" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "言語で検索をフィルター(現在の設定:{currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "あなたのアクティビティの通知について、誰が受信できるのかフィルターを設定します" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "通知を受け取るユーザーをフィルターする" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "最後に" @@ -3448,7 +3616,7 @@ msgstr "フォローするユーザーを探す" msgid "Find posts, users, and feeds on Bluesky" msgstr "Blueskyの投稿、ユーザー、フィードを検索" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "完了" @@ -3456,17 +3624,17 @@ msgstr "完了" msgid "Fitness" msgstr "フィットネス" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "フラット ブラック" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "フラット ブルー" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "フラット ホワイト" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "柔軟です" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "フォロー" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "{0}をフォロー" @@ -3518,7 +3686,7 @@ msgstr "アカウントをフォロー" msgid "Follow all" msgstr "すべてフォロー" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "フォローバック" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "フォローバック" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "<0>{0}がフォロー中" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "<0>{0}および{1, plural, other {他#人}}がフォロー中" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "<0>{0}と<1>{1}がフォロー中" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "<0>{0}、<1>{1}および{2, plural, other {他#人}}がフォロー中" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "あなたが知っている@{0}のフォロワー" @@ -3554,21 +3722,25 @@ msgid "Followers you know" msgstr "あなたが知っているフォロワー" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "フォロー中" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "フォロー中" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" -msgstr "{0}をフォローしています" +msgstr "{0}をフォローしました" #: src/screens/VideoFeed/index.tsx:826 msgid "Following {handle}" @@ -3579,8 +3751,8 @@ msgstr "{handle}をフォローしています" msgid "Following feed preferences" msgstr "Followingフィードの設定" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Followingフィードの設定" @@ -3592,11 +3764,11 @@ msgstr "あなたをフォロー" msgid "Follows You" msgstr "あなたをフォロー" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "フォント" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "フォントサイズ" @@ -3613,7 +3785,7 @@ msgstr "セキュリティ上の理由から、あなたのメールアドレス msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "セキュリティ上の理由から、これを再度表示することはできません。このアプリパスワードを紛失した場合は、新しいものを生成する必要があります。" -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "ベストな体験のために、テーマフォントの使用をお勧めします。" @@ -3643,11 +3815,15 @@ msgstr "忘れた?" msgid "Frequently Posts Unwanted Content" msgstr "望ましくないコンテンツを頻繁に投稿" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "通知対象" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "@{sanitizedAuthor}による" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "<0/>から" @@ -3660,14 +3836,68 @@ msgstr "ギャラリー" msgid "Generate a starter pack" msgstr "スターターパックを生成" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "ヘルプを表示" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "フォローされたときに通知を受け取る。" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "リポストした投稿をいいねされたら通知を受け取る。" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "投稿をいいねされたら通知を受け取る。" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "メンションされたら通知を受け取る。" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "投稿を引用されたら通知を受け取る。" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "投稿に返信があったら通知を受け取る。" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "リポストした投稿をリポストされたら通知を受け取る。" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "投稿をリポストされたら通知を受け取る。" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "新しい投稿の通知を受け取る" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "選択したアカウントの投稿と返信の通知を受け取る。" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "{name} の新しい投稿の通知を受け取る" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "このアカウントのアクティビティの通知を受け取る" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "{name} が投稿した時に通知を受け取る" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "誰かが投稿したときに通知を受け取る" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "開始" @@ -3688,14 +3918,16 @@ msgstr "プロフィールに顔をつける" msgid "Glaring violations of law or terms of service" msgstr "法律または利用規約への明らかな違反" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "ライブ開始" msgid "Go live for" msgstr "ライブ予定時間" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "{firstAuthorName}のプロフィールに移動" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "アカウント設定へ移動" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "{0}との会話へ" @@ -3779,8 +4017,8 @@ msgstr "生々しいメディア(グロ・事故・戦争・災害等)" msgid "Half way there!" msgstr "半分まで来ました!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "ハンドル" @@ -3797,7 +4035,7 @@ msgstr "ハンドルを変更しました!" msgid "Handle too long. Please try a shorter one." msgstr "ハンドルが長すぎます。短いものをお試しください。" -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "触覚フィードバック" @@ -3806,7 +4044,7 @@ msgstr "触覚フィードバック" msgid "Harassment, trolling, or intolerance" msgstr "嫌がらせ、荒らし、不寛容" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "ハッシュタグ" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "ハッシュタグ {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "コードがありませんか?<0>ここをクリックしてください。" -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "なにか問題が発生しましたか?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "ヘルプ" @@ -3839,8 +4077,13 @@ msgstr "画像をアップロードするかアバターを作ってあなたが msgid "Here is your app password!" msgstr "アプリパスワードをお知らせします!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "こんにちは👋" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "非表示" @@ -3848,16 +4091,16 @@ msgstr "非表示" msgid "Hidden by your moderation settings." msgstr "あなたのモデレーションの設定で非表示になっています。" -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "非表示のリスト" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "非表示のリスト" msgid "Hide" msgstr "非表示" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "非表示" @@ -3875,18 +4118,18 @@ msgstr "非表示" msgid "Hide customization options" msgstr "カスタマイズオプションを非表示" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "投稿を自分には非表示" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "返信を全員に非表示" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "返信を自分には非表示" @@ -3894,12 +4137,12 @@ msgstr "返信を自分には非表示" msgid "Hide this card" msgstr "このカードを非表示" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "この投稿を非表示にしますか?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "この返信を非表示にしますか?" @@ -3913,11 +4156,11 @@ msgstr "トレンド・トピックを非表示にする" msgid "Hide trending topics?" msgstr "トレンド・トピックを非表示にしますか?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "トレンド・ビデオを非表示にしますか?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "ユーザーリストを非表示" @@ -3926,32 +4169,32 @@ msgstr "ユーザーリストを非表示" msgid "Hide verification badges" msgstr "認証バッジを非表示" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "コンテンツを非表示" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "フィードサーバーに問い合わせたところ、なんらかの問題が発生しました。この問題をフィードのオーナーにお知らせください。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "フィードサーバーの設定が間違っているようです。この問題をフィードのオーナーにお知らせください。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "フィードサーバーがオフラインのようです。この問題をフィードのオーナーにお知らせください。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "フィードサーバーの反応が悪いようです。この問題をフィードのオーナーにお知らせください。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "このフィードが見つからないようです。もしかしたら削除されたのかもしれません。" -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "このデータの読み込みに問題があるようです。詳細は以下をご覧ください。この問題が解決しない場合は、サポートにご連絡ください。" @@ -3959,15 +4202,15 @@ msgstr "このデータの読み込みに問題があるようです。詳細は msgid "Hmmmm, we couldn't load that moderation service." msgstr "そのモデレーションサービスを読み込めませんでした。" -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "待って!徐々にビデオへのアクセスを許可していますが、あなたの順番はまだです。しばらくしてもう一度確認を!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "ホーム" @@ -3984,10 +4227,10 @@ msgstr "ホスティングプロバイダー" msgid "Hot" msgstr "ホット" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "ホットな返信を先頭に" @@ -3996,10 +4239,6 @@ msgstr "ホットな返信を先頭に" msgid "How should we open this link?" msgstr "このリンクをどのように開きますか?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "理解した" msgid "If alt text is long, toggles alt text expanded state" msgstr "ALTテキストが長い場合、ALTテキストの展開状態を切り替える" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "あなたがお住いの国の法律においてまだ成人していない場合は、親権者または法定後見人があなたに代わって本規約をお読みください。" @@ -4031,11 +4270,11 @@ msgstr "このリストを削除すると、復元できなくなります。" msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "自分のドメインを持っていれば、ハンドルとして利用できます。これによりあなたのアイデンティティを自己証明できます。<0>詳しくはこちら。" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "メールを更新する必要がある場合は、<0>ここをクリックしてください。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "この投稿を削除すると、復元できなくなります。" @@ -4047,6 +4286,10 @@ msgstr "メールアドレスを更新すると、メールでの2要素認証 msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "パスワードを変更する場合は、あなたのアカウントであることを確認するためのコードをお送りします。" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "あなたのアクティビティの通知を受信できるユーザーを制限したい場合は、<0>設定 → プライバシーとセキュリティで変更できます。" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "あなたが開発者ならば、自分でサーバーをホストできます。" @@ -4091,13 +4334,41 @@ msgstr "なりすまし、または身元もしくは所属に関する虚偽の msgid "Impersonation, misinformation, or false claims" msgstr "なりすまし、偽情報、あるいは虚偽の主張" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "アプリ内" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "アプリ内通知" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "アプリ内、全員" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "アプリ内、フォロー中の人" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "アプリ内、プッシュ" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "アプリ内、プッシュ、全員" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "アプリ内、プッシュ、フォロー中の人" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "不適切なメッセージ、または露骨なコンテンツへのリンク" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "受信トレイが空です!" @@ -4105,7 +4376,7 @@ msgstr "受信トレイが空です!" msgid "Incorrect username or password" msgstr "無効なユーザー名またはパスワード" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "パスワードをリセットするためにあなたのメールアドレスに送られたコードを入力" @@ -4113,7 +4384,7 @@ msgstr "パスワードをリセットするためにあなたのメールアド msgid "Input confirmation code for account deletion" msgstr "アカウント削除のために確認コードを入力" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "新しいパスワードを入力" @@ -4129,10 +4400,14 @@ msgstr "メールで送られたコードを入力" msgid "Interaction limited" msgstr "反応が制限されています" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "反応関連の設定" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "アクティビティの通知の紹介" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "無効な2要素認証の確認コードです。" msgid "Invalid handle. Please try a different one." msgstr "無効なハンドルです。他のものを試してください。" -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "無効またはサポートされていない投稿のレコード" @@ -4158,7 +4433,7 @@ msgstr "無効な確認コード" msgid "Invite a Friend" msgstr "友達を招待" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "招待コード" @@ -4186,15 +4461,15 @@ msgstr "お気に入りのフィードやユーザーをフォローするよう msgid "Invites, but personal" msgstr "招待、ただし個人的なもの" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "合ってます" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "今はあなただけ!上で検索してスターターパックにより多くのユーザーを追加してください。" -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "ジョブID:{0}" @@ -4220,11 +4495,27 @@ msgstr "会話に参加" msgid "Journalism" msgstr "報道" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "投稿を逃さない" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "KWS プライバシーポリシー" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "KWS 利用規約" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "KWS のウェブサイト" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "{0}によるラベル" -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "投稿者によるラベル。" @@ -4237,7 +4528,7 @@ msgstr "ラベル" msgid "Labels added" msgstr "ラベルが追加されました" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "ラベルは、ユーザーやコンテンツに対する注釈です。ラベルはネットワークを非表示にしたり、警告したり、分類したりするのに使われます。" @@ -4253,22 +4544,30 @@ msgstr "あなたのコンテンツのラベル" msgid "Language selection" msgstr "言語の選択" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "言語の設定" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "言語" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "大きい" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "最後の開始: {timeAgo} 前" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "最後の開始:たった今" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "最新" @@ -4282,7 +4581,6 @@ msgstr "詳細" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "詳細" @@ -4290,6 +4588,10 @@ msgstr "詳細" msgid "Learn More" msgstr "詳細" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "年齢保証について詳しく知る" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Blueskyについての詳細" @@ -4298,15 +4600,23 @@ msgstr "Blueskyについての詳細" msgid "Learn more about self hosting your PDS." msgstr "自分用のPDSをホスティングする方法を学ぶ。" -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "このコンテンツに適用されるモデレーションはこちらを参照してください" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "このコンテンツに適用されるモデレーションはこちらを参照してください。" -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "<0>私たちのブログの記事を読んで、これらの変更についての詳細と、あなたの考えを私たちと共有する方法をご覧ください。" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "私たちのブログの記事を読んで、これらの変更についての詳細と、あなたの考えを私たちと共有する方法をご覧ください。" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "この警告の詳細" @@ -4316,12 +4626,16 @@ msgstr "この警告の詳細" msgid "Learn more about verification on Bluesky" msgstr "Blueskyの認証についてもっと詳しく" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Blueskyで公開されている内容はこちらを参照してください。" -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "<0>アカウント設定で詳細を確認する。" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "詳細。" @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "会話を退出" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "どの言語も表示するには、すべてのチェックを外したままにします。" +msgid "Leave them all unselected to see any language." +msgstr "すべての言語を表示するには、選択されていないままにしてください。" -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Blueskyから離れる" @@ -4370,7 +4685,7 @@ msgstr "さあ始めましょう!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "ライト" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "いいねする" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "いいねする({0, plural, other {#件のいいね}})" @@ -4397,6 +4712,10 @@ msgstr "10投稿をいいね" msgid "Like 10 posts to train the Discover feed" msgstr "Discoverフィードを訓練するために10投稿をいいねする" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "いいねの通知" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "このフィードをいいね" @@ -4405,8 +4724,8 @@ msgstr "このフィードをいいね" msgid "Like this labeler" msgstr "このラベラーをいいね" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "いいねしたユーザー" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "いいねしたユーザー" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, other {#人のユーザー}}がいいね" @@ -4428,20 +4747,36 @@ msgstr "{0, plural, other {#人のユーザー}}がいいね" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, other {#人のユーザー}}がいいね" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "いいね" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "リポストへのいいね" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "リポストへのいいねの通知" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "この投稿をいいねする" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "リニア" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "リスト" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "リストをブロックしました" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "{0}によるリスト" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "<0/>によるリスト" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "あなたのリスト" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "リストの作者" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "リストのミュートを解除しました" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "リスト" @@ -4537,7 +4876,7 @@ msgstr "さらに読み込む" msgid "Load more suggested feeds" msgstr "おすすめのフィードをさらに読み込む" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "最新の通知を読み込む" @@ -4552,11 +4891,11 @@ msgstr "最新の投稿を読み込む" msgid "Loading..." msgstr "読み込み中…" -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "ログ" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "ログアウトしたユーザーからの可視性" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "@sawaratsuki.bsky.socialによるロゴ" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "<0>@sawaratsuki.bsky.socialによるロゴ" @@ -4573,7 +4912,7 @@ msgstr "<0>@sawaratsuki.bsky.socialによるロゴ" msgid "Long press to open tag menu for #{tag}" msgstr "長押しで #{tag} のタグメニューを開く" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "XXXXX-XXXXXみたいなもの" @@ -4597,7 +4936,7 @@ msgstr "アカウントのメール設定を調整する" msgid "Make one for me" msgstr "私のために作って" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "意図した場所であることを確認してください!" @@ -4606,7 +4945,7 @@ msgstr "意図した場所であることを確認してください!" msgid "Manage saved feeds" msgstr "保存されたフィードを管理" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "認証設定の管理" @@ -4614,9 +4953,9 @@ msgstr "認証設定の管理" msgid "Manage your muted words and tags" msgstr "ミュートしたワードとタグの管理" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "すべて既読にする" @@ -4625,15 +4964,13 @@ msgstr "すべて既読にする" msgid "Mark as read" msgstr "既読にする" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "すべて既読にしました" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "後で" @@ -4645,19 +4982,26 @@ msgstr "メディア" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "一部の閲覧者にとっては困惑する、あるいは不適切なメディアです。" -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "メンションの通知" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "メンションされたユーザー" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "メンションされたユーザー" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "メンション" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "メニュー" @@ -4665,7 +5009,7 @@ msgstr "メニュー" msgid "Message {0}" msgstr "{0}へメッセージを送る" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "メッセージは削除されました" @@ -4674,11 +5018,11 @@ msgstr "メッセージは削除されました" msgid "Message deleted" msgstr "メッセージは削除されました" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "@{0}からのメッセージ: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "サーバーからのメッセージ:{0}" @@ -4691,19 +5035,23 @@ msgstr "メッセージを入力するフィールド" msgid "Message is too long" msgstr "メッセージが長すぎます" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "メッセージのオプション" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "メッセージ" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "ミッドナイト" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "その他の通知" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "誤解を招くアカウント" msgid "Misleading Post" msgstr "誤解を招く投稿" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "モデレーション" @@ -4725,17 +5073,17 @@ msgstr "モデレーション" msgid "Moderation details" msgstr "モデレーションの詳細" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "{0}の作成したモデレーションリスト" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "<0/>の作成したモデレーションリスト" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "あなたの作成したモデレーションリスト" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "モデレーションリストを更新しました" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "モデレーションリスト" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "モデレーションリスト" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "モデレーションの設定" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "モデレーションのステータス" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "モデレーションのツール" @@ -4775,7 +5123,7 @@ msgstr "モデレーションのツール" msgid "Moderator has chosen to set a general warning on the content." msgstr "モデレーターによりコンテンツに一般的な警告が設定されました。" -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "さらに" @@ -4790,13 +5138,13 @@ msgstr "その他のフィード" msgid "More options" msgstr "その他のオプション" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "いいねの数が多い順" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "いいねの数が多い順に返信を表示" @@ -4808,8 +5156,8 @@ msgstr "映画" msgid "Music" msgstr "音楽" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "ミュート" @@ -4819,8 +5167,8 @@ msgstr "ミュート" msgid "Mute {tag}" msgstr "{tag} をミュート" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "タグのみでこのワードをミュート" msgid "Mute this word until you unmute it" msgstr "このワードをミュート解除するまでミュート" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "スレッドをミュート" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "ワードとタグをミュート" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "ミュート中のアカウント" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "ミュート中のアカウント" @@ -4898,7 +5246,7 @@ msgstr "ミュート中のアカウントの投稿は、フィードや通知か msgid "Muted by \"{0}\"" msgstr "「{0}」によってミュート中" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "ミュートしたワードとタグ" @@ -4911,7 +5259,7 @@ msgstr "ミュートの設定は非公開です。ミュート中のアカウン msgid "My Birthday" msgstr "生年月日" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "マイフィード" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "自然" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "{0}へ移動します" @@ -4958,11 +5306,11 @@ msgstr "次の画面に移動します" msgid "Navigates to your profile" msgstr "あなたのプロフィールに移動します" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "変更が必要?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "著作権侵害、法的要求、または規制遵守の問題を報告する必要がありますか?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "著作権侵害を報告する必要がありますか?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "新規" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "{firstAuthorLink}からの新しい{postsCount, plural, other {投稿}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "{firstAuthorName}からの新しい{postsCount, plural, other {投稿}}" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "新しいチャット" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "新しいメールアドレス" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "新機能" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "新しいフォロワーの通知" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "新しいフォロワー" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "新しいメッセージ" msgid "New Moderation List" msgstr "新しいモデレーションリスト" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "新しいパスワード" @@ -5029,7 +5396,7 @@ msgstr "新しいパスワード" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "新しい投稿" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "新しい投稿" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}からの新しい投稿" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}からの新しい投稿" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "新しいユーザー情報ダイアログ" @@ -5054,10 +5429,14 @@ msgstr "新しいユーザー情報ダイアログ" msgid "New User List" msgstr "新しいユーザーリスト" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "新しい順に返信を表示" @@ -5071,15 +5450,15 @@ msgstr "ニュース" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "DNSパネルがない場合" msgid "No expiry set" msgstr "終了時間未定" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "おすすめのGIFが見つかりません。Tenorに問題があるかもしれません。" @@ -5119,32 +5498,35 @@ msgstr "画像なし" msgid "No likes yet" msgstr "いいねはありません" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "{0}のフォローを解除しました" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "{MAX_SERVICE_HANDLE_LENGTH, plural, other {#文字}}まで" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "メッセージはありません" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "お知らせはありません!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" -msgstr "誰からも受け取らない" +msgstr "誰も" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "投稿主だけがこの投稿を引用できます。" +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "ここに投稿はありません" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "まだ投稿がありません。" @@ -5171,7 +5553,7 @@ msgstr "結果はありません" msgid "No results for \"{0}\"." msgstr "「{0}」に該当するものは見つかりませんでした。" -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "結果は見つかりません" @@ -5179,9 +5561,9 @@ msgstr "結果は見つかりません" msgid "No results found for \"{query}\"" msgstr "「{query}」の検索結果はありません" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "「{query}」の検索結果はありません" @@ -5189,7 +5571,7 @@ msgstr "「{query}」の検索結果はありません" msgid "No results." msgstr "見つかりませんでした。" -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "「{search}」の検索結果はありません。" @@ -5198,7 +5580,7 @@ msgstr "「{search}」の検索結果はありません。" msgid "No thanks" msgstr "結構です" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "返信不可" @@ -5223,59 +5605,76 @@ msgstr "誰も見つかりませんでした。他を探してみて。" msgid "Non-sexual Nudity" msgstr "性的ではないヌード" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "なし" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "フォローしている人は誰にもフォローしていません" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "見つかりません" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "共有についての注意事項" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "注記:Blueskyはオープンでパブリックなネットワークです。この設定はBlueskyのアプリおよびウェブサイト上のみでのあなたのコンテンツの可視性を制限するものであり、他のアプリではこの設定を尊重しない場合があります。他のアプリやウェブサイトでは、ログアウトしたユーザーにあなたのコンテンツが表示される場合があります。" -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "注: この投稿はログイン中のユーザーにのみ表示されます。" + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "何もありません" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "通知フィルター" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "通知設定" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "通知設定" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "通知音" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "通知音" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "通知" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "誰かがあなたのスターターパックを経由して参加した等、その他のすべての通知。" + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "今" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "ヌードあるいは成人向けコンテンツと表示されていないもの" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "オフ" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "ちょっと!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "OK" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "OK" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "古い順に返信を表示" @@ -5331,19 +5736,19 @@ msgstr "古い順に返信を表示" msgid "on<0><1/><2><3/>" msgstr "<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "オンボーディングのリセット" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "1つもしくは複数のGIFにALTテキストがありません。" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "1つもしくは複数の画像にALTテキストがありません。" -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "1つもしくは複数のビデオにALTテキストがありません。" @@ -5351,13 +5756,15 @@ msgstr "1つもしくは複数のビデオにALTテキストがありません msgid "Only .jpg and .png files are supported" msgstr ".jpgと.pngファイルのみに対応しています" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "{0}のみ返信可能。" -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "英数字とハイフンのみ" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "フォロー中のフォロワーのみ" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "画像ファイルのみに対応しています" msgid "Only WebVTT (.vtt) files are supported" msgstr "WebVTT(.vtt)ファイルのみに対応しています" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "おっと、何らかの問題が発生したようです!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "おっと!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "引き出しメニューを開く" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "絵文字を入力" @@ -5416,7 +5822,7 @@ msgstr "フィードの設定メニューを開く" msgid "Open full emoji list" msgstr "全絵文字リストを開く" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "{niceUrl}へのリンクを開く" @@ -5424,11 +5830,11 @@ msgstr "{niceUrl}へのリンクを開く" msgid "Open message options" msgstr "メッセージのオプションを開く" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "モデレーションデバッグページを開く" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "ミュートしたワードとタグの設定を開く" @@ -5453,16 +5859,16 @@ msgstr "共有メニューを開く" msgid "Open starter pack menu" msgstr "スターターパックのメニューを開く" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "絵本のページを開く" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "システムのログを開く" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "{numItems}個のオプションを開く" @@ -5490,11 +5896,11 @@ msgstr "デバイスのカメラを開く" msgid "Opens captions and alt text dialog" msgstr "キャプションとALTテキストのダイアログを開く" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "ハンドル変更ダイアログを開く" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "編集画面を開く" @@ -5502,7 +5908,7 @@ msgstr "編集画面を開く" msgid "Opens device photo gallery" msgstr "デバイスのフォトギャラリーを開く" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "絵文字選択を開く" @@ -5520,15 +5926,19 @@ msgstr "既存のBlueskyアカウントにサインインする画面を開き msgid "Opens GIF select dialog" msgstr "GIFの選択のダイアログを開く" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "ブラウザでヘルプデスクを開く" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "リンク{0}を開く" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "招待コードのリストを開く" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "ライブステータスのダイアログを開く" @@ -5536,12 +5946,8 @@ msgstr "ライブステータスのダイアログを開く" msgid "Opens password reset form" msgstr "パスワードリセットのフォームを開く" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "リンク先のウェブサイトを開く" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "プロフィールを開く" @@ -5558,7 +5964,7 @@ msgstr "オプションとして、以下に追加情報をご記入ください msgid "Options:" msgstr "オプション:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "または以下のオプションを組み合わせてください:" @@ -5600,6 +6006,10 @@ msgstr "その他のアカウント" msgid "Other..." msgstr "その他…" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "私たちのブログの記事" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "あなたの報告をモデレーションチームが受け付けました。" @@ -5608,7 +6018,7 @@ msgstr "あなたの報告をモデレーションチームが受け付けまし msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "モデレーターが報告をレビューし、Blueskyであなたがチャットにアクセスできないようにしました。" -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "ページが見つかりません" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "ページが見つかりません" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "パスワードが更新されました" msgid "Password updated!" msgstr "パスワードが更新されました!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "一時停止" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "ビデオを一時停止" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "ユーザー" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "@{0}がフォロー中のユーザー" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "@{0}をフォロー中のユーザー" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "フォロー中の人" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "写真ライブラリへのアクセスが拒否されました。システム設定で有効にしてください。" @@ -5704,12 +6119,12 @@ msgstr "ホームにピン留め" msgid "Pin to Home" msgstr "ホームにピン留め" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "プロフィールに固定" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "固定" @@ -5718,7 +6133,7 @@ msgstr "固定" msgid "Pinned {0} to Home" msgstr "{0}をホームにピン留めしました" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "ピン留めされたフィード" @@ -5726,38 +6141,38 @@ msgstr "ピン留めされたフィード" msgid "Pinned to your feeds" msgstr "フィードにピン留めしました" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "再生" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "{0}を再生" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "ビデオを再生" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "ビデオを再生" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "GIFの再生や一時停止" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "ビデオの再生や一時停止" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "GIFを再生" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "ビデオを再生" @@ -5765,12 +6180,16 @@ msgstr "ビデオを再生" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "投稿するメディアに該当するコンテンツ警告ラベルを追加してください。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "詳細な手順については、メールの受信トレイを確認してください。届くまでに1〜2分かかることがあります。" + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "ハンドルをお選びください。" #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "パスワードを選択してください。" @@ -5782,7 +6201,8 @@ msgstr "新しいメールアドレスを確認するために送信したメー msgid "Please complete the verification captcha." msgstr "CAPTCHA認証を完了してください。" -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "メールアドレスが正しく入力されていることを再確認してください。" @@ -5804,6 +6224,7 @@ msgstr "このアプリパスワードに固有の名前を入力するか、ラ msgid "Please enter a valid code." msgstr "有効なコードを入力してください。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "有効な形式のメールアドレスを入力してください。" @@ -5812,7 +6233,11 @@ msgstr "有効な形式のメールアドレスを入力してください。" msgid "Please enter a valid word, tag, or phrase to mute" msgstr "ミュートにする有効な単語、タグ、フレーズを入力してください" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "一時的ではない有効なメールアドレスを入力してください。今後このメールアドレスにアクセスする必要があるかもしれません。" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "以下の<0>{0}に送信したコードを入力してください。" @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "前のメールアドレスに送ったセキュリティコードを入力してください。" #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "メールアドレスを入力してください。" -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "招待コードを入力してください。" @@ -5853,6 +6278,19 @@ msgstr "{0}によって適用されたこのラベルが誤りであると思わ msgid "Please explain why you think your chats were incorrectly disabled" msgstr "チャットが間違って無効化されたと考える理由を説明してください" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "戻るか、アクティブなコンテンツの先頭に戻るためにこの要素を有効にしてください。" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "年齢保証状態を適切に評価するために、モデレータが必要となる可能性がある追加の詳細を記入してください。" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "言語を選択してください" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "モデレーションサービスを選択してください" @@ -5870,9 +6308,9 @@ msgstr "@{0}としてサインインしてください" msgid "Please verify your email" msgstr "メールアドレスを確認してください" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "メールアドレスを確認してください" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "メッセージを以下に記入してください:" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "政治" msgid "Porn" msgstr "ポルノ" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "投稿" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "投稿" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "投稿" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "すべてポスト" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "ブロックされた投稿" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "{0}による投稿" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "@{0}による投稿" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "投稿を削除しました" @@ -5919,11 +6362,14 @@ msgstr "投稿を削除しました" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "投稿のアップロードに失敗しました。インターネット接続を確認し、再度試してください。" +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "投稿は削除されました" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "投稿を非表示" @@ -5937,11 +6383,11 @@ msgstr "ミュートしたワードによって投稿が表示されません" msgid "Post Hidden by You" msgstr "あなたが非表示にした投稿" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "投稿への反応の設定" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "投稿への反応の設定" @@ -5954,8 +6400,10 @@ msgstr "投稿の言語" msgid "Post Languages" msgstr "投稿の言語" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "投稿が見つかりません" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "投稿の固定を解除しました" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "投稿" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "投稿はテキスト、タグ、またはその両方に基づいてミュートできます。投稿が表示されなくなる可能性があるため、多くの投稿に使われる一般的なワードは避けることをおすすめします。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "非表示の投稿" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "投稿、返信" + +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" msgstr "誤解を招く可能性のあるリンク" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "設定を保存しました" +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "誤解を招く可能性のあるリンクの警告" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "再接続してみる" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "再実行する" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "あなたもフォローしているこのアカウントのフォロワーを見る" @@ -6015,40 +6469,46 @@ msgstr "前の画像" msgid "Primary Language" msgstr "第一言語" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "あなたのフォローを優先" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "優先通知" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "プライバシー" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "プライバシーとセキュリティ" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "プライバシーとセキュリティ" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "プライバシーとセキュリティの設定" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "プライバシーポリシー" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "ビデオを処理中…" @@ -6062,15 +6522,14 @@ msgstr "処理中…" msgid "profile" msgstr "プロフィール" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "プロフィール" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "プロフィールを更新しました" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "フィードとして見ることに使える、公開された共有可能なリスト" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "投稿を公開" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "投稿を公開" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "返信を公開" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "返信を公開" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "プッシュ" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "プッシュ通知" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "プッシュ、全員" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "プッシュ、フォロー中の人" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "QRコードをクリップボードにコピーしました" @@ -6119,44 +6594,52 @@ msgstr "QRコードをダウンロードしました!" msgid "QR code saved to your camera roll!" msgstr "QRコードをカメラロールに保存しました!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "引用の通知" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "引用" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "引用投稿が再び関連付けられました" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "引用投稿を切り離すことができました" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "引用投稿は無効です" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "引用の設定" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "引用" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "この投稿を引用する" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "ランダムな順番で表示(別名「投稿者のルーレット」)" @@ -6164,8 +6647,8 @@ msgstr "ランダムな順番で表示(別名「投稿者のルーレット」 msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "レート制限を超えました - 短い時間でハンドルを何度も変更しようとしました。再度試す前にしばらく時間をおいてください。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "引用を再度関連付ける" @@ -6177,30 +6660,42 @@ msgstr "{emoji}でリアクションする" msgid "Reactivate your account" msgstr "あなたのアカウントを再有効化" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "さらに{0}個の{1,plural,other {返信}}を表示" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "ブログ記事を読む" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "文字を減らす" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "もっと読む" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "さらに返信を読む" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "私たちのブログの記事を読む" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Blueskyのブログを読む" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Blueskyのプライバシーポリシーを読む" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Blueskyの利用規約を読む" @@ -6213,6 +6708,14 @@ msgstr "異議申し立ての理由" msgid "Reason:" msgstr "理由:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "アプリ内通知を受け取る" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "プッシュ通知を受け取る" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "検索履歴" @@ -6234,8 +6737,8 @@ msgstr "拒否" msgid "Reject chat request" msgstr "チャットのリクエストを拒否する" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "会話を再読み込み" @@ -6244,10 +6747,9 @@ msgstr "会話を再読み込み" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "削除" @@ -6259,17 +6761,17 @@ msgstr "{displayName}をスターターパックから削除" msgid "Remove {historyItem}" msgstr "{historyItem}を削除" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "アカウント切替リストから取り除く" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "添付を削除" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "アバターを削除" @@ -6284,24 +6786,22 @@ msgstr "埋め込みを削除" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "フィードを削除" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "フィードを削除しますか?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "マイフィードから削除" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "クイックアクセスから削除しますか?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "保存されたフィードから削除" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "フィードから削除しますか?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "イメージを削除" @@ -6332,12 +6831,8 @@ msgstr "リストからミュートワードを削除" msgid "Remove profile" msgstr "プロフィールを削除" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "引用を削除" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "リポストを削除" @@ -6345,7 +6840,7 @@ msgstr "リポストを削除" msgid "Remove subtitle file" msgstr "字幕ファイルを削除" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "保存されたフィードからこのフィードを削除" @@ -6364,11 +6859,11 @@ msgstr "認証を削除" msgid "Remove your verification for this account?" msgstr "このアカウントの認証を削除しますか?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "投稿者が削除しました" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "あなたが削除しました" @@ -6377,10 +6872,6 @@ msgstr "あなたが削除しました" msgid "Removed from list" msgstr "リストから削除されました" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "マイフィードから削除しました" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "保存されたフィードから削除しました" @@ -6395,34 +6886,36 @@ msgstr "あなたのフィードから削除しました" msgid "Removed verification" msgstr "認証を削除しました" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "引用を削除する" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Discoverで置き換える" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "返信" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "返信できません" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "この投稿への返信は無効化されています。" -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "返信" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "返信する({0, plural, other {#件の返信}})" @@ -6436,50 +6929,55 @@ msgstr "返信はスレッドの投稿者によって非表示に" msgid "Reply Hidden by You" msgstr "返信はあなたによって非表示に" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "返信の通知" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "返信の設定" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "返信の設定はスレッドの投稿者によって選択されています" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "返信を並び替え" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "<0><1/>に返信" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "ブロックした投稿への返信" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "投稿への返信" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "あなたへの返信" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "返信の表示設定を更新しました" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "返信を非表示にすることができました" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "フィードを報告" msgid "Report list" msgstr "リストを報告" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "メッセージを報告" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "投稿を報告" @@ -6567,25 +7065,26 @@ msgstr "このスターターパックを報告" msgid "Report this user" msgstr "このユーザーを報告" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "リポスト" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "リポスト" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "リポストする({0, plural, other {#件のリポスト}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "リポストの通知" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "リポストまたは引用" @@ -6594,35 +7093,47 @@ msgstr "リポストまたは引用" msgid "Reposted By" msgstr "リポストしたユーザー" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "{0}にリポストされた" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "<0><1/>がリポスト" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "あなたのリポスト" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "リポスト" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "この投稿をリポストする" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "変更を要求" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "リポストのリポスト" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "リポストのリポストの通知" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "コードをリクエスト" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "画像投稿時にALTテキストを必須とする" @@ -6630,7 +7141,7 @@ msgstr "画像投稿時にALTテキストを必須とする" msgid "Require an email code to sign in to your account." msgstr "アカウントにサインインするにはメールの確認コードが必要です。" -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "このプロバイダーに必要" @@ -6642,10 +7153,6 @@ msgstr "あなたの地域では必要" msgid "Resend" msgstr "再送する" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "メール再送済" msgid "Resend Verification Email" msgstr "確認メールを再送済" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "アクティビティ購読ナッジをリセット" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "リセットコード" @@ -6667,8 +7180,8 @@ msgstr "リセットコード" msgid "Reset Code" msgstr "リセットコード" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "オンボーディングの状態をリセット" @@ -6687,21 +7200,23 @@ msgstr "エラーになった最後のアクションをやり直す" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "再試行" @@ -6721,19 +7236,19 @@ msgstr "ホームページに戻る" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "前のページに戻る" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "前のステップに戻る" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "前のステップに戻る" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "保存" @@ -6762,15 +7276,13 @@ msgstr "保存" msgid "Save birthday" msgstr "生年月日を保存" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "変更を保存" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "変更を保存" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "QRコードを保存" msgid "Save to my feeds" msgstr "マイフィードに保存" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "保存されたフィード" @@ -6802,18 +7314,14 @@ msgstr "保存されたフィード" msgid "Saved to your feeds" msgstr "フィードを保存しました" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "プロフィールの変更を保存" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "画像の切り抜き設定を保存" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "よろしく!" @@ -6826,16 +7334,16 @@ msgstr "科学" msgid "Scroll to top" msgstr "一番上までスクロール" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "検索" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "@{0}の投稿を検索" @@ -6861,7 +7369,7 @@ msgstr "「{query}」を検索" msgid "Search for \"{searchText}\"" msgstr "「{searchText}」を検索" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "他の人におすすめしたいフィードを検索。" @@ -6877,10 +7385,14 @@ msgstr "もっとフィードを検索" msgid "Search for posts, users, or feeds" msgstr "投稿、ユーザー、フィードを検索" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "GIFを検索" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "ログアウト時の検索は現在利用できません" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "自分の投稿を検索" @@ -6890,12 +7402,12 @@ msgstr "自分の投稿を検索" msgid "Search posts" msgstr "投稿を検索" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "プロフィールを検索" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Tenorを検索" @@ -6903,7 +7415,7 @@ msgstr "Tenorを検索" msgid "Search..." msgstr "検索…" -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "プロフィールを検索" @@ -6912,10 +7424,6 @@ msgstr "プロフィールを検索" msgid "Security step required" msgstr "セキュリティのステップが必要" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "必要なセキュリティの手順" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "{tag} の投稿を表示(すべてのユーザー)" @@ -6936,14 +7444,31 @@ msgstr "#{tag} の投稿を表示(このユーザーのみ)" msgid "See jobs at Bluesky" msgstr "Blueskyの求人を見る" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "もっと見る" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "好みかもしれないアカウントをもっと見る" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "検索ページでさらにおすすめのプロフィールを見る" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "ガイドを見る" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "シークバー。矢印キーで早送りや早戻し、スペースで再生/一時停止" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "{0}を選択" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "色を選択" @@ -6988,7 +7513,7 @@ msgstr "既存のアカウントから選択" msgid "Select GIF" msgstr "GIFを選ぶ" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "GIF「{0}」を選ぶ" @@ -6996,6 +7521,11 @@ msgstr "GIF「{0}」を選ぶ" msgid "Select how long to mute this word for." msgstr "このワードをどのくらいの間ミュートするのかを選択。" +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "言語選択" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "言語を選択…" @@ -7004,7 +7534,7 @@ msgstr "言語を選択…" msgid "Select languages" msgstr "言語を選択" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "モデレーションサービスを選択" @@ -7045,12 +7575,12 @@ msgstr "アプリのユーザーインターフェースに使用する言語を msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "登録されたフィードに含める言語を選択します。選択されていない場合は、すべての言語が表示されます。" -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "生年月日を選択" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "次のオプションから興味のあるものを選択してください" @@ -7058,7 +7588,11 @@ msgstr "次のオプションから興味のあるものを選択してくださ msgid "Select your preferred language for translations in your feed." msgstr "フィード内の翻訳に使用する言語を選択します。" -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "お好みの通知チャンネルを選択してください" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "{numItems}個中{0}個目のオプションを選択" @@ -7066,17 +7600,9 @@ msgstr "{numItems}個中{0}個目のオプションを選択" msgid "Send a neat website!" msgstr "素敵なウェブサイトを送って!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "確認メールを送信" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "確認のメールを送信" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "メールを送信" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "メールを送信" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "フィードバックを送信" @@ -7095,7 +7621,7 @@ msgstr "フィードバックを送信" msgid "Send message" msgstr "メッセージを送信" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "投稿を {name} に送る" @@ -7114,20 +7640,20 @@ msgstr "報告を送信" msgid "Send report to {0}" msgstr "{0}に報告を送信" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "{title}に報告を送信" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "確認メールを送信" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "ダイレクトメッセージで送信" @@ -7143,7 +7669,7 @@ msgstr "サーバーアドレス" msgid "Set app icon to {0}" msgstr "アプリアイコンを{0}に設定" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "生年月日を設定" @@ -7159,13 +7685,57 @@ msgstr "アカウントを設定する" msgid "Sets email for password reset" msgstr "パスワードをリセットするためのメールアドレスを入力" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "設定" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "他のユーザーのアクティビティの通知の設定" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "あなたの投稿の通知を他のユーザーが受け取るのを許可する設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "いいねの通知の設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "メンションの通知の設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "新しいフォロワーの通知の設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "その他すべての通知の設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "リポストへのいいねの通知の設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "リポストのリポストの通知の設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "引用の通知の設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "返信の通知の設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "リポストの通知の設定" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "クールなストーリーをシェアして!" msgid "Share a fun fact!" msgstr "面白いことをシェアして!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "とにかく共有" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "著者DIDを共有" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "リンクを共有" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "リンクを共有" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "リンク共有のダイアログ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "投稿のat:// URIをコピー" @@ -7247,8 +7812,8 @@ msgstr "このスターターパックを共有" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "このスターターパックを共有して、他のユーザーがBlueskyでのコミュニティに参加するよう手伝います" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "共有…" msgid "Share your favorite feed!" msgstr "お気に入りのフィードをシェアして!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Shared Preferencesのテスター" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "リンクしたウェブサイトを共有" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "表示" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "ALTテキストを表示" @@ -7303,8 +7864,8 @@ msgstr "カスタマイズオプションを表示" msgid "Show hidden replies" msgstr "非表示の返信を表示" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "このような投稿の表示を減らす" @@ -7312,55 +7873,63 @@ msgstr "このような投稿の表示を減らす" msgid "Show list anyway" msgstr "とにかくリストを表示" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "さらに表示" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "このような投稿の表示を増やす" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "さらに返信を表示" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "ミュートした返信を表示" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "スレッドツリー表示で投稿の返信を表示" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "引用を表示" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "返信を表示" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "返信の表示方法" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "返信をスレッドで表示" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "フォローしてる人の返信を他の人の返信より優先して表示" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "返信を全員に見せる" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "リポストを表示" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "保存されたフィードから一部の投稿をFollowingフィードに表示する" @@ -7372,16 +7941,17 @@ msgstr "警告を表示" msgid "Show warning and filter from feeds" msgstr "警告の表示とフィードからのフィルタリング" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "この投稿がいつ作成されたかについての情報を表示する" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "切替可能な他のアカウントを表示" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "コンテンツを表示" @@ -7390,14 +7960,15 @@ msgstr "コンテンツを表示" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "リストにないアカウントにサインイン" msgid "Sign in to Bluesky or create a new account" msgstr "Blueskyにサインイン または 新規アカウントの登録" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "サインインして投稿を表示" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "サインアウト" @@ -7444,8 +8020,8 @@ msgstr "サインアウト" msgid "Sign Out" msgstr "サインアウト" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "サインアウトしますか?" @@ -7459,12 +8035,12 @@ msgstr "サインインが必要" msgid "Signed in as @{0}" msgstr "@{0}でサインイン" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "似ているアカウント" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "スキップ" @@ -7472,12 +8048,11 @@ msgstr "スキップ" msgid "Skip this flow" msgstr "この手順をスキップする" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "小さい" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "リマインダーをスヌーズ" @@ -7490,11 +8065,11 @@ msgstr "ソフトウェア開発" msgid "Some of your verifications are invalid." msgstr "認証の一部が無効です。" -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "お好みかもしれない他のフィード" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "一部の人が返信可能" @@ -7510,10 +8085,11 @@ msgstr "誰かが{1}に{0}とリアクションしました" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "報告しようとしているデータに問題がありました。サポートに連絡してください。" -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "何らかの問題が発生したようです" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "何らかの問題が発生したようなので、もう一度お試しください" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "何らかの問題が発生したようなので、もう一度お試しください。" -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "何らかの問題が発生したようです!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "問題が発生しました。しばらくしてからもう一度お試しください。" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "問題が発生しました。もう一度お試しください。" @@ -7539,20 +8118,23 @@ msgstr "問題が発生しました。もう一度お試しください。" msgid "Something wrong? Let us know." msgstr "何か問題がありますか?お知らせください。" -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "申し訳ありません!セッションの有効期限が切れました。もう一度サインインしてください。" -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "返信を並び替える" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "返信を並び替える:" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "次の方法で同じ投稿への返信を並び替えます。" @@ -7579,7 +8161,7 @@ msgstr "スパム、過剰なメンションや返信" msgid "Sports" msgstr "スポーツ" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "会話を開始すると、ここに表示されます。" @@ -7601,9 +8183,9 @@ msgstr "ユーザーを追加して!" msgid "Start chat with {displayName}" msgstr "{displayName}とのチャットを開始" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "スターターパック" @@ -7611,12 +8193,12 @@ msgstr "スターターパック" msgid "Starter pack by {0}" msgstr "{0}によるスターターパック" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "<0/>によるスターターパック" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "自分のスターターパック" @@ -7638,19 +8220,21 @@ msgstr "スターターパックを使ってお気に入りのフィードやユ msgid "Status Page" msgstr "ステータスページ" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "ステップ {0} / {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "ストレージがクリアされたため、今すぐアプリを再起動する必要があります。" -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "ストーリーブック" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "異議申し立てを送信" msgid "Submit Appeal" msgstr "異議申し立てを送信" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "報告を送信" @@ -7676,10 +8260,14 @@ msgstr "報告を送信" msgid "Subscribe" msgstr "登録" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "これらのラベルを使用するには@{0}を登録してください:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "アカウントアクティビティを購読する" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "ラベラーを登録する" @@ -7692,8 +8280,12 @@ msgstr "このラベラーを登録" msgid "Subscribe to this list" msgstr "このリストに登録" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "成功" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "成功!" @@ -7705,7 +8297,7 @@ msgstr "正常に認証されました" msgid "Suggested Accounts" msgstr "おすすめアカウント" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "あなたへのおすすめ" @@ -7714,26 +8306,26 @@ msgstr "あなたへのおすすめ" msgid "Suggestive" msgstr "きわどい" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "サンライズ" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "サンセット" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "サポート" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "アカウントを切り替える" @@ -7742,24 +8334,24 @@ msgstr "アカウントを切り替える" msgid "Switch Account" msgstr "アカウントを切り替える" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "アカウントを切り替える" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "{0}へ切り替える" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "システム" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "システムログ" @@ -7767,6 +8359,18 @@ msgstr "システムログ" msgid "Tags only" msgstr "タグのみ" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "タップして情報を表示" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "タップしてさらに詳しく" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "タップして、これらの更新を理解して同意し、Blueskyを使用し続けることを確認します" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "もう少し教えて" msgid "Terms" msgstr "規約" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "利用規約" @@ -7848,10 +8454,6 @@ msgstr "テキストの入力フィールド" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "フィードバックありがとうございます!フィードのオペレーターに送られました。" -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "ありがとう!メールの確認に成功しました。" - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "ありがとうございます。あなたの報告は送信されました。" @@ -7864,28 +8466,28 @@ msgstr "ありがとう、メールアドレスの確認に成功しました。 msgid "That contains the following:" msgstr "その内容は以下の通りです:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "そのハンドルはすでに使用されています。" - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "そのスターターパックが見つかりませんでした。" +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "そのユーザー名は既に使用されています" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "以上です、皆さん!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "これで全部です!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "このアカウントは、ブロック解除後にあなたとやり取りすることができます。" @@ -7900,7 +8502,7 @@ msgstr "アプリを再起動します" msgid "The author of this thread has hidden this reply." msgstr "このスレッドの投稿者がこの返信を非表示にしました" -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Blueskyウェブアプリ" @@ -7920,10 +8522,6 @@ msgstr "Discoverフィード" msgid "The Discover feed now knows what you like" msgstr "Discoverフィードはあなたの好みを学習しました" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "入力したメールアドレスは現在のメールアドレスと同じです。" - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "アプリのほうがより良い体験をすることができます。今すぐBlueskyをダウンロードして、中断したところから再開しましょう。" @@ -7944,8 +8542,16 @@ msgstr "以下のラベルがあなたのコンテンツに適用されました msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "新しい投稿を作成する場合、以下の設定がデフォルトとして使用されます。個々の投稿に対する設定は編集画面から変更できます。" -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "あなたの地域の法律は、成人向けコンテンツやダイレクトメッセージなど、Blueskyの特定の機能にアクセスする前に成人あることを確認する必要があります。" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "あなたの地域の法律では、特定の機能にアクセスするにはあなたが成人であることを確認する必要があります。詳細はタップしてください。" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "投稿が削除された可能性があります。" @@ -7953,9 +8559,10 @@ msgstr "投稿が削除された可能性があります。" msgid "The Privacy Policy has been moved to <0/>" msgstr "プライバシーポリシーは<0/>に移動しました" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "選択したビデオのサイズが 100 MB を超えています。" +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "選択したビデオが100MBより大きいです。小さいファイルでもう一度お試しください。" #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "サービス規約は移動しました" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "入力された確認コードが正しくありません。正しいリンクを使用したかを確認するか、新しい確認コードを要求してください。" -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "テーマ" @@ -7990,14 +8597,14 @@ msgstr "テーマ" msgid "There is no time limit for account deactivation, come back any time." msgstr "アカウントの無効化に期限はありません。いつでも戻ってこられます。" -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Tenorへの接続中に問題が発生しました。" #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "サーバーへの問い合わせ中に問題が発生しました" @@ -8006,17 +8613,12 @@ msgstr "サーバーへの問い合わせ中に問題が発生しました" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "サーバーへの問い合わせ中に問題が発生したので、インターネットへの接続を確認の上、もう一度試してください。" -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "サーバーへの問い合わせ中に問題が発生しました" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "通知の取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。" -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "投稿の取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。" @@ -8037,7 +8639,7 @@ msgstr "リストの取得中に問題が発生しました。もう一度試す msgid "There was an issue fetching your service info" msgstr "サービス情報の取得中に問題が発生しました" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "フィードの削除中に問題が発生しました。インターネットへの接続を確認の上、もう一度試してください。" @@ -8052,9 +8654,9 @@ msgstr "報告の送信に問題が発生しました。インターネットの msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "フィードの更新中に問題が発生したので、インターネットへの接続を確認の上、もう一度試してください。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "フィードの更新中に問題が発生したので、インターネ msgid "There was an issue! {0}" msgstr "問題が発生しました! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "問題が発生しました! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "問題が発生しました。インターネットへの接続を確認の上、もう一度お試しください。" -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "アプリケーションに予期しない問題が発生しました。このようなことが繰り返した場合はサポートへお知らせください!" @@ -8089,7 +8691,7 @@ msgstr "アプリケーションに予期しない問題が発生しました。 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Blueskyに新規ユーザーが殺到しています!できるだけ早くアカウントを有効にできるよう努めます。" -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "これらの設定はFollowingフィードにのみ適用されます。" @@ -8146,7 +8748,7 @@ msgstr "このコンテンツは{0}によってホストされています。外 msgid "This content is not available because one of the users involved has blocked the other." msgstr "このコンテンツは関係するユーザーの一方が他方をブロックしているため、利用できません。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "このコンテンツはBlueskyのアカウントがないと閲覧できません。" @@ -8158,6 +8760,10 @@ msgstr "削除あるいは無効化されたアカウントとの会話です。 msgid "This email is already associated with your account." msgstr "このメールアドレスはすでにあなたのアカウントと関連付けられています。" +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "この機能により、他のユーザーはあなたの新しい投稿と返信の通知を受け取ることができます。誰にこの機能を有効にしますか?" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "この機能はベータ版です。リポジトリのエクスポートの詳細については、<0>このブログ投稿を参照してください。" @@ -8170,7 +8776,7 @@ msgstr "この機能はアプリパスワードでは利用できません。メ msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "この機能はアプリパスワードでは利用できません。メインパスワードでサインインしてください。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "現在このフィードにはアクセスが集中しており、一時的にご利用いただけません。時間をおいてもう一度お試しください。" @@ -8209,11 +8815,11 @@ msgstr "投稿者によって適用されたラベルです。" msgid "This label was applied by you." msgstr "あなたによって適用されたラベルです。" -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "このラベラーはどのようなラベルを発行しているか宣言しておらず、活動していない可能性もあります。" -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "このリンクは次のウェブサイトへリンクしています:" @@ -8233,29 +8839,28 @@ msgstr "このリストは空です。" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "このモデレーションのサービスはご利用できません。詳細は以下をご覧ください。この問題が解決しない場合は、サポートへお問い合わせください。" -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "<0>{0}に投稿されたと表示されていますが、Blueskyに初めて登場したのは<1>{1}です。" -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "投稿に対する返信制限のタイプが不明です。アプリが古いかもしれません。" -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "この投稿は削除されました。" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "この投稿はサインインしているユーザーにのみ表示されます。サインインしていないユーザーには表示されません。" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "この投稿はログイン中のユーザーにのみ表示されます。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "この投稿はフィードとスレッドから非表示になります。元に戻すことはできません。" -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "この投稿の投稿者は引用投稿を無効にしています。" @@ -8263,11 +8868,11 @@ msgstr "この投稿の投稿者は引用投稿を無効にしています。" msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "この投稿はサインインしているユーザーにのみ表示されます。サインインしていないユーザーには表示されません。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "この返信はスレッドの一番下にある非表示のセクションに移動され、その後のあなたや他のユーザー宛の返信の通知をミュートします。" -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "このサービスには、利用規約もプライバシーポリシーもありません。" @@ -8275,6 +8880,10 @@ msgstr "このサービスには、利用規約もプライバシーポリシー msgid "This should create a domain record at:" msgstr "これにより以下にドメインレコードが作成されるはずです:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "これには数分かかるはずです。" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "このユーザーには表示名がないため認証できません。" @@ -8316,16 +8925,18 @@ msgstr "このユーザーは誰もフォローしていません。" msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "ミュートしたワードから「{0}」が削除されます。あとでいつでも戻すことができます。" -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "クイックアクセスのリストから@{0}を削除します。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "これによってあなたの投稿が全員に見える引用投稿からは削除され、プレースホルダーに置き換えられます。" -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "スレッドのオプション" @@ -8334,24 +8945,27 @@ msgstr "スレッドのオプション" msgid "Thread preferences" msgstr "スレッドの設定" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "スレッドの設定" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "スレッド" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "スレッドモード" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "スレッドの設定" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "残り時間:{0, plural, other {#秒}}" @@ -8376,42 +8990,56 @@ msgstr "この報告を誰に送りたいですか?" msgid "Today" msgstr "今日" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "ドロップダウンを切り替え" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "成人向けコンテンツの有効もしくは無効の切り替え" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "音の切り替え" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "トップ" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "トップの返信を最初に" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "トピック" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "翻訳" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "ツリー表示" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "トレンド" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "話題のビデオ" @@ -8428,14 +9056,10 @@ msgstr "再試行" msgid "TV" msgstr "テレビ" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "2要素認証(2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "希望するユーザー名をタイプしてください" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "ここにメッセージを入力する" @@ -8453,7 +9077,7 @@ msgstr "接続できません。インターネットへの接続を確認して #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "あなたのサービスに接続できません。インターネット msgid "Unable to delete" msgstr "削除できません" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "プルリクエストを適用しない" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "プルリクエスト {currentChannel} を適用しない" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "利用不可" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "フィードの情報が利用できません" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "ブロックを解除" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "ブロックを解除" @@ -8486,7 +9126,7 @@ msgstr "ブロックを解除" msgid "Unblock account" msgstr "アカウントのブロックを解除" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "アカウントのブロックを解除しますか?" @@ -8495,13 +9135,13 @@ msgstr "アカウントのブロックを解除しますか?" msgid "Unblock list" msgstr "リストのブロックを解除" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "リポストを元に戻す" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "リポストを元に戻す({0, plural, other {#件のリポスト}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "フォローを解除" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "{0}のフォローを解除" @@ -8523,7 +9163,7 @@ msgstr "アカウントのフォローを解除" msgid "Unfollows the user" msgstr "ユーザーのフォローを解除" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "残念ながら、登録しているラベラーはどれもこのタイプの報告をサポートしていません。" @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "いいねを外す" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "いいねを外す({0, plural, other {#件のいいね}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "ミュートを解除" @@ -8555,8 +9195,8 @@ msgstr "ミュートを解除" msgid "Unmute {tag}" msgstr "{tag} のミュートを解除" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "会話のミュートを解除" msgid "Unmute list" msgstr "リストのミュートを解除" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "スレッドのミュートを解除" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "ビデオのミュートを解除" @@ -8597,8 +9237,8 @@ msgstr "フィードのピン留めを外す" msgid "Unpin from home" msgstr "ホームからピン留めを解除" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "プロフィールから固定を解除" @@ -8614,8 +9254,8 @@ msgstr "{0}のピン留めを解除しました" msgid "Unpinned from your feeds" msgstr "フィードからピン留めを解除" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "メールのリマインダーのスヌーズを解除" @@ -8636,7 +9276,7 @@ msgstr "このラベラーの登録を解除" msgid "Unsubscribed from list" msgstr "リストの登録を解除しました" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "サポートしていないビデオ形式" @@ -8662,8 +9302,8 @@ msgstr "リストの<0>{displayName}を更新" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "メールアドレスの更新" @@ -8676,17 +9316,17 @@ msgstr "{domain}に更新" msgid "Update your email" msgstr "メールアドレスの更新" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "引用の添付の更新に失敗しました" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "返信の表示設定の更新に失敗しました" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "更新中…" @@ -8698,20 +9338,20 @@ msgstr "代わりに写真をアップロード" msgid "Upload a text file to:" msgstr "テキストファイルのアップロード先:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "カメラからアップロード" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "ファイルからアップロード" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "ライブラリーからアップロード" msgid "Uploading images..." msgstr "画像をアップロード中…" -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "リンクのサムネイルをアップロード中…" -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "ビデオをアップロード中…" @@ -8761,6 +9401,10 @@ msgstr "おすすめを使う" msgid "Use this to sign in to the other app along with your handle." msgstr "ハンドルと一緒にこのパスワードを使用して、他のアプリにサインインします。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "KWSまたはBlueskyがあなたに連絡する必要がある場合に備えて、あなたが持っているアカウントの電子メールアドレスまたは別の実際の電子メールアドレスを使用してください。" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "使用者:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "ユーザーリストを更新しました" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "ユーザー名は{MAX_SERVICE_HANDLE_LENGTH, plural, other {#文字}}までです" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "ユーザー名はハイフンで始まったり終わったりできません" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "ユーザー名はアルファベット(a-z)、数字、ハイフンのみ使用できます" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "ユーザー名またはメールアドレス" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "<0>@{0}にフォローされているユーザー" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "<0>@{0}をフォローしているユーザー" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "フォローしているユーザー" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "{0}のユーザー" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "フォローしているユーザー" @@ -8846,11 +9502,11 @@ msgstr "値:" msgid "Verification failed, please try again." msgstr "認証に失敗しました。再度試してください。" -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "認証設定" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "認証設定" @@ -8870,31 +9526,37 @@ msgstr "認証者:" msgid "Verify account" msgstr "アカウントを認証" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "再度認証する" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" -msgstr "コードを確認" +msgstr "コードを確認する" #: src/screens/Settings/components/ChangeHandleDialog.tsx:528 #: src/screens/Settings/components/ChangeHandleDialog.tsx:549 msgid "Verify DNS Record" msgstr "DNSレコードを確認" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "メールアドレスを確認" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "メールのコードを確認" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "メールアドレス確認ダイアログ" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "認証する" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "テキストファイルを確認" msgid "Verify this account?" msgstr "このアカウントを認証しますか?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "年齢を認証する" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "メールアドレスを確認" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "メールアドレスを確認" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "認証中" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "年齢保証ステータスを確認中" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "バージョン {appVersion}" +msgid "Version {0}" +msgstr "バージョン {0}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "ビデオ" @@ -8928,7 +9598,7 @@ msgstr "ビデオ" msgid "Video failed to process" msgstr "ビデオの処理に失敗" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "ビデオフィード" @@ -8942,15 +9612,15 @@ msgstr "{0}からのビデオ:{text}" msgid "Video Games" msgstr "ビデオゲーム" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "ビデオは一時停止中です" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "ビデオを再生中です" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "ビデオが見つかりません。" @@ -8958,11 +9628,11 @@ msgstr "ビデオが見つかりません。" msgid "Video settings" msgstr "ビデオの設定" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "ビデオをアップロードしました" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "ビデオ:{0}" @@ -8979,11 +9649,11 @@ msgstr "ビデオは3分未満でなければなりません" msgid "View {0}'s avatar" msgstr "{0}のアバターを表示" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "{0}のプロフィールを表示" @@ -8991,7 +9661,7 @@ msgstr "{0}のプロフィールを表示" msgid "View {displayName}'s profile" msgstr "{displayName}のプロフィールを表示" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "ブロック中のユーザーのプロフィールを表示" @@ -9009,7 +9679,6 @@ msgstr "デバッグエントリーを表示" msgid "View details" msgstr "詳細を表示" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "著作権侵害の報告の詳細を見る" @@ -9022,23 +9691,23 @@ msgstr "スレッドをすべて表示" msgid "View information about these labels" msgstr "これらのラベルに関する情報を見る" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "もっと表示" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "プロフィールを表示" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "アバターを表示" @@ -9054,28 +9723,28 @@ msgstr "このユーザーの認証情報を表示" msgid "View users who like this feed" msgstr "このフィードにいいねしたユーザーを見る" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "ビデオを表示" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "ブロックしたアカウントを見る" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "投稿への反応のデフォルト設定を表示" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "フィードを表示し、さらにフィードを探す" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "モデレーションリストを見る" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "ミュートしたアカウントを見る" @@ -9083,8 +9752,8 @@ msgstr "ミュートしたアカウントを見る" msgid "View your verifications" msgstr "あなたの認証情報を表示" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "画像全体を表示" @@ -9092,16 +9761,20 @@ msgstr "画像全体を表示" msgid "Views video in immersive mode" msgstr "ビデオを没入モードで表示" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" msgstr "サイトへアクセス" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "通知設定を開く" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "音量" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "コンテンツの警告とフィードからのフィルタリング" msgid "Watch now" msgstr "今すぐ見る" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "このカスタムフィードを提供するサービスへ接続できませんでした。一時的に利用できなくなって問題が発生しているか、永久に利用できなくなっている可能性があります。" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "このリストを見つけることができませんでした。おそらく削除されています。" + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "そのハッシュタグの検索結果は見つかりませんでした。" @@ -9128,7 +9809,7 @@ msgstr "そのハッシュタグの検索結果は見つかりませんでした msgid "We couldn't find any results for that topic." msgstr "そのトピックについての検索結果は見つかりませんでした。" -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "この会話を読み込めませんでした" @@ -9136,6 +9817,10 @@ msgstr "この会話を読み込めませんでした" msgid "We estimate {estimatedTime} until your account is ready." msgstr "あなたのアカウントが準備できるまで{estimatedTime}ほどかかります。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "私たちは <0>KWS と提携して、あなたが成人であることを確認します。 下の「開始」をクリックすると、 KWSは、KWSテクノロジーを搭載した他のゲーム/サービスについて、このメールアドレスを使用して年齢を確認しているかどうかを確認します。 そうでない場合、KWSはあなたの年齢を確認するための指示をメールでお送りします。完了したら、Blueskyを引き続きご利用いただけます。" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "別の確認コードを<0>{0}へ送りました。" @@ -9148,15 +9833,15 @@ msgstr "素敵なひとときをお過ごしください。覚えておいてく msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "あなたのフォロー中のユーザーの投稿を読み終わりました。フィード<0/>内の最新の投稿を表示します。" -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "すくなくとも2つの「気になること」を選択するのをお勧めします。" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "<0>{0}にリンクが含まれているメールを送信しました。メールアドレスの確認プロセスを完了するために、そのリンクをクリックしてください。" -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "あなたがビデオのアップロードを許可されているかどうか判断できません。もう一度お試しください。" @@ -9164,10 +9849,14 @@ msgstr "あなたがビデオのアップロードを許可されているかど msgid "We were unable to load your birth date preferences. Please try again." msgstr "生年月日の設定を読み込むことはできませんでした。もう一度お試しください。" -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "現在設定されたラベラーを読み込めません。" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "接続に問題が発生したため、認証を受け取ることができませんでした。確認が完了したら、アカウントは自動的に更新されます。" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "接続できませんでした。アカウントの設定を続けるためにもう一度お試しください。繰り返し失敗する場合は、この手順をスキップすることもできます。" @@ -9176,7 +9865,7 @@ msgstr "接続できませんでした。アカウントの設定を続けるた msgid "We will let you know when your account is ready." msgstr "アカウントの準備ができたらお知らせします。" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "<0>{0}にリンクが含まれているメールを送信します。メールアドレスの確認プロセスを完了するために、そのリンクをクリックしてください。" @@ -9184,6 +9873,22 @@ msgstr "<0>{0}にリンクが含まれているメールを送信します msgid "We'll use this to help customize your experience." msgstr "これはあなたの体験をカスタマイズするために使用されます。" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "<0>コミュニティガイドライン も更新しますので、皆様のご意見をお聞かせください。新しいガイドラインは2025年10月15日より発効します。" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "コミュニティガイドラインも更新しますので、皆様のご意見をお聞かせください。新しいガイドラインは2025年10月15日より施行されます。" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "サーバーで年齢保証のステータスを確認しています。数秒かかります。" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "あなたのアカウントの年齢保証手順の初期化に問題が発生しました。<0>サポートにお問い合わせください。" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "ネットワークで問題が発生しています。もう一度試し msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Blueskyに新しい認証方式を導入しました。見やすいチェックマークです。" -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "私たちはあなたが参加してくれることをとても楽しみにしています!" @@ -9205,15 +9910,15 @@ msgstr "大変申し訳ありませんが、このリストを解決できませ msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "大変申し訳ありませんが、現在ミュートされたワードを読み込むことができませんでした。もう一度お試しください。" -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "大変申し訳ありませんが、検索を完了できませんでした。数分後にもう一度お試しください。" -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "大変申し訳ありません!返信しようとしている投稿は削除されました。" -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "大変申し訳ありません!お探しのページは見つかりません。" @@ -9222,6 +9927,26 @@ msgstr "大変申し訳ありません!お探しのページは見つかりま msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "大変申し訳ありません!ラベラーは20までしか登録できず、すでに上限に達しています。" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "2025 年 9 月 15 日をもって、<0>利用規約、<1>プライバシー ポリシー、<2>著作権ポリシー を更新いたします。" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "ポリシーを更新しています" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "2025 年 9 月 15 日より、利用規約、プライバシー ポリシー、著作権ポリシーを更新します。" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "2025年9月15日より、利用規約、プライバシーポリシー、著作権ポリシーを更新いたします。また、コミュニティガイドラインも更新いたしますので、皆様のご意見をお聞かせください。新しいガイドラインは2025年10月15日より有効となります。変更内容の詳細とご意見の投稿方法については、ブログ記事をご覧ください。" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "年齢保証ステータスを確認しました。このダイアログを閉じることができます。" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "おかえりなさい!" @@ -9240,7 +9965,7 @@ msgstr "あなたのスターターパックを何と呼びたいですか?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "最近どう?" @@ -9256,11 +9981,11 @@ msgstr "この投稿ではどの言語が使われていますか?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "アルゴリズムによるフィードにはどの言語を使用しますか?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "誰がこの投稿に反応できますか?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "返信できるユーザー" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "誰が認証できますか?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "おっと!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "おっと!トレンドビデオの読み込みに失敗しました。" @@ -9322,12 +10047,12 @@ msgstr "なぜこのユーザーをレビューする必要がありますか? msgid "Write a message" msgstr "メッセージを書く" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "投稿を書く" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "返信を書く" @@ -9358,11 +10083,11 @@ msgstr "はい、無効化します" msgid "Yes, delete this starter pack" msgstr "はい、このスターターパックを削除します" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "はい、切り離します" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "はい、非表示にします" @@ -9378,6 +10103,10 @@ msgstr "昨日" msgid "You" msgstr "あなた" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "また、<0>Bluesky のコミュニティガイドラインにも同意するものとします。<1>コミュニティガイドラインの最新版は 10 月 15 日より有効になります。" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "あなたは信頼された認証者です" @@ -9386,6 +10115,10 @@ msgstr "あなたは信頼された認証者です" msgid "You are creating an account on" msgstr "アカウントを作成するホスティングプロバイダー:" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "現在Blueskyの年齢保証手順にアクセスできません。これがエラーだと思われる場合は<0>モデレーションチームまでご連絡ください。" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "あなたは並んでいます。" @@ -9403,7 +10136,7 @@ msgstr "もうライブ中ではありません" msgid "You are not allowed to go live" msgstr "ライブの設定は許可されていません" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "あなたはビデオのアップロードを許可されていません。" @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "あなたは認証されています" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "あなたは認証されています。表示名を変更すると、認証ステータスが失われます。<0>詳細はこちら。" @@ -9441,10 +10173,18 @@ msgstr "また、あなたはフォローすべき新しいカスタムフィー msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "代わりにアカウントを一時的に無効化して、いつでも再有効化することもできます。" -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "アプリ内のチャット設定でチャット通知の音の有無を選択できます" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "どの設定を選択しても進行中の会話は続けることができます。" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "特定のユーザーが投稿した時に通知を受け取ることができるようになります。更新情報をタイムリーに受け取りたい人がいたら、その人のプロフィールのページに移動し、フォローボタンの近くのベルのアイコンを探してください。" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "新しいパスワードでサインインできるようになりまし msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "アカウントを再有効化してログインし続けることができます。あなたのプロフィールと投稿は他のユーザーに見えるようになります。" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "デフォルトの反応の設定は、<0>設定 → モデレーション → 反応関連の設定で設定できます。" #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "これは設定画面から後で変更できます。" @@ -9472,7 +10212,7 @@ msgstr "あなたはまだだれもフォロワーがいません。" msgid "You don't follow any users who follow @{name}." msgstr "@{name}をフォローしているユーザーを誰もフォローしていません。" -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "現在、チャットの要求はありません。" @@ -9480,15 +10220,15 @@ msgstr "現在、チャットの要求はありません。" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "まだ招待コードがありません!Blueskyをもうしばらく利用したらお送りします。" -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "ピン留めされたフィードがありません。" -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "保存されたフィードがありません。" -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "あなたが投稿者をブロックしているか、または投稿者によってあなたはブロックされています。" @@ -9502,6 +10242,10 @@ msgstr "あなたはこのユーザーをブロックしました" msgid "You have blocked this user. You cannot view their content." msgstr "あなたはこのユーザーをブロックしているため、コンテンツを閲覧できません。" +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "返信、引用、メンションの通知が完全に無効になっているので、このタブは更新されません。調整するには、<0>通知設定を開いてください。" + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "このアカウントをミュートしました。" msgid "You have muted this user" msgstr "このユーザーをミュートしました" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "まだ会話していません。始めましょう!" @@ -9547,7 +10291,7 @@ msgstr "ブロック中のアカウントはまだありません。アカウン msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "ミュートしているアカウントはまだありません。アカウントをミュートするには、プロフィールに移動し、アカウントメニューから「アカウントをミュート」を選択します。" -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "最後まで到達しました" @@ -9572,6 +10316,10 @@ msgstr "まだワードやタグをミュートしていません" msgid "You hid this reply." msgstr "あなたがこの返信を非表示にしました。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "{0} 前にこのフローを開始しました。メールが受信トレイに届くまでに最大 5 分かかる場合があります。 再試行する前に数分お待ちください。" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "間違って適用されたと思うのであれば、自己申告ではないラベルならば異議申し立てができます。" @@ -9592,7 +10340,7 @@ msgstr "3つまでフィードを追加できます" msgid "You may only select up to 4 images" msgstr "画像は4枚まで選択できます" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "アカウントを作成するには、13歳以上である必要があります。" @@ -9600,6 +10348,14 @@ msgstr "アカウントを作成するには、13歳以上である必要があ msgid "You must be following at least seven other people to generate a starter pack." msgstr "スターターパックを作成するには、少なくとも7人をフォローしなければなりません。" +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "以下の設定にアクセスするには年齢保証を完了する必要があります。" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "この画面にアクセスするには年齢保証を完了する必要があります。" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "QRコードを保存するには写真ライブラリへのアクセスを許可する必要があります" @@ -9608,6 +10364,11 @@ msgstr "QRコードを保存するには写真ライブラリへのアクセス msgid "You must select at least one labeler for a report" msgstr "報告をするには少なくとも1つのラベラーを選択する必要があります" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "この投稿を見るにはサインインする必要があります。" + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "2要素認証メールを有効にする前に、メールアドレスを確認する必要があります。" @@ -9616,7 +10377,7 @@ msgstr "2要素認証メールを有効にする前に、メールアドレス msgid "You previously deactivated @{0}." msgstr "以前、あなたは@{0}を無効化しました。" -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "今すぐアプリを再起動したほうが良いでしょう。" @@ -9628,16 +10389,20 @@ msgstr "あなたは{0}とリアクションしました" msgid "You reacted {0} to {1}" msgstr "あなたは{1}に{0}とリアクションしました" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "すべてのアカウントからサインアウトします。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "{0}の通知を受信しなくなります" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "これ以降、このスレッドに関する通知を受け取ることはできなくなります" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "これ以降、このスレッドに関する通知を受け取ることができます" @@ -9657,11 +10422,11 @@ msgstr "あなた: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "あなた: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "アカウントの作成を完了するとおすすめのユーザーやフィードをフォローします!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "アカウントの作成を完了するとおすすめのユーザーをフォローします!" @@ -9673,9 +10438,9 @@ msgstr "これらのユーザーや他{0}をフォローします" msgid "You'll follow these people right away" msgstr "これらのユーザーをすぐにフォローします" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "本人確認のために<0>{0}へメールが届きます。" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "{0}の通知を受信し始めます!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "この投稿でワードまたはタグを非表示にすることを選 msgid "You've found some people to follow" msgstr "フォローするユーザーを探せました" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "アクティブなコンテンツの最後に到達しました。" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "フィードはここまでです!もっとフォローするアカウントを見つけましょう。" @@ -9711,19 +10480,23 @@ msgstr "フィードはここまでです!もっとフォローするアカウ msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "リクエスト数の上限に達しました。後でもう一度お試しください。" -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "アクティブなコンテンツの先頭に移動しました。" + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "ビデオのアップロードの一日の上限に到達しました(容量が大きすぎます)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "ビデオのアップロードの一日の上限に到達しました(ビデオの数が多すぎます)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "見るべきビデオがなくなりました。休憩を取ってもいい時間かも?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "あなたのアカウント" @@ -9735,7 +10508,7 @@ msgstr "あなたのアカウントは削除されました" msgid "Your account has been suspended" msgstr "あなたのアカウントは停止されています" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "あなたのアカウントは作成して間もないため動画をアップロードできません。もう一度お試しください。" @@ -9751,11 +10524,11 @@ msgstr "あなたのアカウントは<0>Bluesky Social利用規約に違反 msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "あなたの異議申し立てが送信されました。異議申し立てに成功していれば、あなたにメールが届きます。" -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "生年月日" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "使用中のブラウザが、このビデオ形式に対応していません。他のブラウザをお試しください。" @@ -9771,13 +10544,15 @@ msgstr "あなたの選択は将来のリンクのために記憶されます。 msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "あなたの現在のハンドル<0>{0}は自動的に予約されたままになります。いつでもこのアカウントに戻すことができます。" -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "メールアドレスは更新されましたが、確認されていません。次のステップとして、新しいメールアドレスを確認してください。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "あなたのメールアドレス" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "メールアドレスが無効なようです。" @@ -9786,15 +10561,11 @@ msgstr "メールアドレスが無効なようです。" msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "あなたのメールアドレスはまだ確認されていません。Blueskyのすべての機能を楽しむためにあなたのメールアドレスを確認してください。" -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "メールアドレスはまだ確認されていません。これは、当社が推奨する重要なセキュリティステップです。" - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "最初のいいね!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "フォロワー" @@ -9806,19 +10577,15 @@ msgstr "Followingフィードは空です!もっと多くのユーザーをフ msgid "Your full handle will be <0>@{0}" msgstr "フルハンドルは<0>@{0}になります" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "あなたのフルユーザー名は <0>@{0}になります" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "気になること" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "「気になること」を更新しました!" @@ -9835,15 +10602,15 @@ msgstr "ミュートしたワード" msgid "Your password has been changed successfully!" msgstr "パスワードの変更が完了しました!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "パスワードは 8 文字以上である必要があります。" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "投稿を公開しました" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "投稿が公開されました" @@ -9851,15 +10618,19 @@ msgstr "投稿が公開されました" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "投稿、いいね、ブロックは公開されます。ミュートは非公開です。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "あなたの主要言語" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "あなたのプロフィール、投稿、フィード、そしてリストは他のBlueskyユーザーに見えなくなります。ログインすることでいつでもアカウントを再有効化できます。" -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "返信を公開しました" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "報告は <0>{0}に送信されます。" @@ -9867,7 +10638,7 @@ msgstr "報告は <0>{0}に送信されます。" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "あなたの報告はBluesky Moderation Serviceに送られます" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "「気になること」は興味を引くコンテンツを提供するために役立てます。" diff --git a/src/locale/locales/kab/messages.po b/src/locale/locales/kab/messages.po new file mode 100644 index 0000000000..3a0f656e1c --- /dev/null +++ b/src/locale/locales/kab/messages.po @@ -0,0 +1,10648 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-11-05 16:01-0800\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: kab\n" +"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-08-12 00:28\n" +"Last-Translator: \n" +"Language-Team: Kabyle\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: kab\n" +"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n" +"X-Crowdin-File-ID: 11\n" + +#: src/components/ProgressGuide/FollowDialog.tsx:516 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127 +msgid "(active)" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:160 +msgid "(contains embedded content)" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:69 +msgid "(no email)" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:169 +msgid "{0, plural, one {# day} other {# days}}" +msgstr "" + +#: src/screens/Profile/ProfileFollowers.tsx:40 +msgid "{0, plural, one {# follower} other {# followers}}" +msgstr "" + +#: src/screens/Profile/ProfileFollows.tsx:40 +msgid "{0, plural, one {# following} other {# following}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:159 +msgid "{0, plural, one {# hour} other {# hours}}" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:53 +msgid "{0, plural, one {# label has} other {# labels have}} been placed on this account" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:62 +msgid "{0, plural, one {# label has} other {# labels have}} been placed on this content" +msgstr "" + +#: src/screens/Post/PostLikedBy.tsx:41 +msgid "{0, plural, one {# like} other {# likes}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:149 +msgid "{0, plural, one {# minute} other {# minutes}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:180 +msgid "{0, plural, one {# month} other {# months}}" +msgstr "" + +#: src/screens/Post/PostQuotes.tsx:41 +msgid "{0, plural, one {# quote} other {# quotes}}" +msgstr "" + +#: src/screens/Post/PostRepostedBy.tsx:41 +msgid "{0, plural, one {# repost} other {# reposts}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:139 +msgid "{0, plural, one {# second} other {# seconds}}" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 +msgid "{0, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#. How many months have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:182 +msgid "{0, plural, one {#mo} other {#mo}}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:444 +#: src/screens/Profile/Header/Metrics.tsx:22 +msgid "{0, plural, one {follower} other {followers}}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/screens/Profile/Header/Metrics.tsx:26 +msgid "{0, plural, one {following} other {following}}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 +msgid "{0, plural, one {like} other {likes}}" +msgstr "" + +#: src/screens/Profile/Header/Metrics.tsx:58 +msgid "{0, plural, one {post} other {posts}}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 +msgid "{0, plural, one {quote} other {quotes}}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 +msgid "{0, plural, one {repost} other {reposts}}" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82 +msgid "{0, plural, other {{1} posts}}" +msgstr "" + +#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack +#: src/screens/StarterPack/StarterPackScreen.tsx:490 +msgid "{0, plural, other {# people have}} used this starter pack!" +msgstr "" + +#. Pattern: {wordValue} in tags +#: src/components/dialogs/MutedWords.tsx:475 +msgid "{0} <0>in <1>tags" +msgstr "" + +#. Pattern: {wordValue} in text, tags +#: src/components/dialogs/MutedWords.tsx:465 +msgid "{0} <0>in <1>text & tags" +msgstr "" + +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + +#: src/components/live/LiveStatusDialog.tsx:68 +msgid "{0} is live" +msgstr "" + +#: src/components/live/queries.ts:39 +msgid "{0} is not a valid URL" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 +msgid "{0} joined this week" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 +msgid "{0} of {1}" +msgstr "" + +#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field +#: src/screens/StarterPack/Wizard/StepDetails.tsx:55 +msgid "{0} out of 50" +msgstr "" + +#: src/components/dms/MessageItem.tsx:143 +msgid "{0} reacted {1}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:231 +msgid "{0} reacted {1} to {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 +msgid "{0}'s avatar" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:74 +msgid "{0}'s favorite feeds and people - join me!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:46 +msgid "{0}'s starter pack" +msgstr "" + +#. How many days have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:171 +msgid "{0}d" +msgstr "" + +#. How many hours have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:161 +msgid "{0}h" +msgstr "" + +#. How many minutes have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:151 +msgid "{0}m" +msgstr "" + +#. How many seconds have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:141 +msgid "{0}s" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:402 +msgid "{count, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#: src/lib/generate-starterpack.ts:111 +#: src/screens/StarterPack/Wizard/index.tsx:184 +msgid "{displayName}'s Starter Pack" +msgstr "" + +#: src/screens/SignupQueued.tsx:216 +msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" +msgstr "" + +#: src/screens/SignupQueued.tsx:222 +msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:353 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:379 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:272 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:484 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:457 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:296 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:508 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:403 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:432 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:365 +msgid "{firstAuthorLink} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:342 +msgid "{firstAuthorLink} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:391 +msgid "{firstAuthorLink} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:284 +msgid "{firstAuthorLink} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:496 +msgid "{firstAuthorLink} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:469 +msgid "{firstAuthorLink} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:308 +msgid "{firstAuthorLink} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:520 +msgid "{firstAuthorLink} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:415 +msgid "{firstAuthorLink} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:444 +msgid "{firstAuthorLink} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:346 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:372 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:265 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:477 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:450 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:289 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:501 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:396 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:425 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:351 +msgid "{firstAuthorName} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:341 +msgid "{firstAuthorName} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:377 +msgid "{firstAuthorName} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:270 +msgid "{firstAuthorName} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:482 +msgid "{firstAuthorName} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:455 +msgid "{firstAuthorName} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:294 +msgid "{firstAuthorName} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:506 +msgid "{firstAuthorName} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:401 +msgid "{firstAuthorName} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:430 +msgid "{firstAuthorName} verified you" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:572 +msgid "{following} following" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:413 +msgid "{handle} can't be messaged" +msgstr "" + +#: src/components/live/utils.ts:15 +msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" +msgstr "" + +#: src/components/live/utils.ts:19 +msgid "{hours, plural, one {# hour} other {# hours}}" +msgstr "" + +#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack +#: src/components/StarterPack/StarterPackCard.tsx:101 +msgid "{joinedAllTimeCount, plural, other {# users have}} joined!" +msgstr "" + +#: src/components/live/utils.ts:10 +msgid "{minutes, plural, one {# minute} other {# minutes}}" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 +msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#: src/components/NewskieDialog.tsx:116 +msgid "{profileName} joined Bluesky {0} ago" +msgstr "" + +#: src/components/NewskieDialog.tsx:111 +msgid "{profileName} joined Bluesky using a starter pack {0} ago" +msgstr "" + +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111 +msgid "{rank}." +msgstr "" + +#. trending topic time spent trending. should be as short as possible to fit in a pill +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206 +msgid "{type}h ago" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:60 +msgid "{userName} is a trusted verifier" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:67 +msgid "{userName} is verified" +msgstr "" + +#. Possessive, meaning "the verifications of {userName}" +#: src/components/verification/VerificationsDialog.tsx:69 +msgid "{userName}'s verifications" +msgstr "" + +#. Indicates the number of additional profiles are in the Starter Pack e.g. +12 +#: src/screens/Search/components/StarterPackCard.tsx:249 +msgid "+{computedTotal}" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:488 +msgctxt "profiles" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:541 +msgctxt "feeds" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#: src/view/shell/Drawer.tsx:116 +msgid "<0>{0} {1, plural, one {follower} other {followers}}" +msgstr "" + +#: src/view/shell/Drawer.tsx:127 +msgid "<0>{0} {1, plural, one {following} other {following}}" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:529 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:522 +msgid "<0>{0} is included in your starter pack" +msgstr "" + +#: src/components/WhoCanReply.tsx:319 +msgid "<0>{0} members" +msgstr "" + +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:479 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + +#: src/screens/Profile/Header/Handle.tsx:53 +msgid "⚠Invalid Handle" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:193 +msgid "24 hours" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:268 +msgid "2FA Confirmation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:232 +msgid "30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:217 +msgid "7 days" +msgstr "" + +#. If last message does not contain text, fall back to "{user} reacted to {a message}" +#: src/screens/Messages/components/ChatListItem.tsx:210 +msgid "a message" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91 +msgid "A new form of verification" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#: src/Navigation.tsx:523 +#: src/screens/Settings/AboutSettings.tsx:75 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 +msgid "About" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/RequestButtons.tsx:259 +msgid "Accept" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:249 +msgid "Accept chat request" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/RequestListItem.tsx:42 +msgid "Accept Request" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 +msgid "Accessibility" +msgstr "" + +#: src/Navigation.tsx:382 +msgid "Accessibility Settings" +msgstr "" + +#: src/Navigation.tsx:398 +#: src/screens/Login/LoginForm.tsx:194 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 +msgid "Account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/view/com/profile/ProfileMenu.tsx:158 +msgctxt "toast" +msgid "Account blocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:171 +msgctxt "toast" +msgid "Account followed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 +#: src/view/com/profile/ProfileMenu.tsx:134 +msgctxt "toast" +msgid "Account muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:103 +#: src/lib/moderation/useModerationCauseDescription.ts:98 +msgid "Account Muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:89 +msgid "Account Muted by List" +msgstr "" + +#: src/screens/Settings/Settings.tsx:624 +msgid "Account options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:660 +msgid "Account removed from quick access" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128 +#: src/view/com/profile/ProfileMenu.tsx:148 +msgctxt "toast" +msgid "Account unblocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:183 +msgctxt "toast" +msgid "Account unfollowed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 +#: src/view/com/profile/ProfileMenu.tsx:124 +msgctxt "toast" +msgid "Account unmuted" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:96 +msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 +#: src/components/dialogs/MutedWords.tsx:328 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +msgid "Add" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:572 +msgid "Add {0} more to continue" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Add {displayName} to starter pack" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:107 +#: src/view/com/composer/labels/LabelsBtn.tsx:112 +msgid "Add a content warning" +msgstr "" + +#: src/components/live/GoLiveDialog.tsx:101 +msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event." +msgstr "" + +#: src/view/screens/ProfileList.tsx:924 +#: src/view/screens/ProfileList.tsx:942 +msgid "Add a user to this list" +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:55 +#: src/screens/Deactivated.tsx:192 +msgid "Add account" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:210 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 +msgid "Add alt text" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +msgid "Add alt text (optional)" +msgstr "" + +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 +msgid "Add another account" +msgstr "" + +#: src/view/com/composer/Composer.tsx:776 +msgid "Add another post" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 +msgid "Add app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:75 +#: src/screens/Settings/AppPasswords.tsx:83 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:111 +msgid "Add App Password" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.web.tsx:35 +msgid "Add emoji reaction" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 +msgid "Add more details (optional)" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:321 +msgid "Add mute word with chosen settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:112 +msgid "Add muted words and tags" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1340 +msgid "Add new post" +msgstr "" + +#: src/view/screens/ProfileList.tsx:932 +#: src/view/screens/ProfileList.tsx:950 +msgid "Add people" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79 +msgid "Add people to list" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:55 +msgid "Add Reaction" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:99 +msgid "Add recommended feeds" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:510 +msgid "Add some feeds to your starter pack!" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:41 +msgid "Add the default feed of only people you follow" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:406 +msgid "Add the following DNS record to your domain:" +msgstr "" + +#: src/components/FeedCard.tsx:305 +msgid "Add this feed to your feeds" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:305 +#: src/view/com/profile/ProfileMenu.tsx:308 +msgid "Add to lists" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 +msgid "Add user to list" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 +msgid "Added to list" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:421 +msgid "Additional details (limit 300 characters)" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:159 +msgid "Adult" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:116 +#: src/lib/moderation/useGlobalLabelStrings.ts:34 +#: src/lib/moderation/useModerationCauseDescription.ts:148 +#: src/view/com/composer/labels/LabelsBtn.tsx:127 +msgid "Adult Content" +msgstr "" + +#: src/screens/Moderation/index.tsx:404 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:247 +msgid "Adult content is disabled." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:138 +#: src/view/com/composer/labels/LabelsBtn.tsx:196 +msgid "Adult Content labels" +msgstr "" + +#: src/screens/Moderation/index.tsx:454 +msgid "Advanced" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +msgid "alice@example.com" +msgstr "" + +#: src/view/screens/Notifications.tsx:88 +msgid "All" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:386 +msgid "All accounts have been followed!" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:64 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:99 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:101 +msgid "All languages" +msgstr "" + +#: src/view/screens/Feeds.tsx:707 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:146 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:153 +msgid "Allow access to your direct messages" +msgstr "" + +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 +msgid "Allow new messages from" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 +msgid "Allow quote posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +msgid "Allow replies from:" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:200 +msgid "Allows access to direct messages" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/view/com/modals/ChangePassword.tsx:182 +msgid "Already have a code?" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:43 +msgid "Already signed in as @{0}" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:188 +msgid "ALT" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:54 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 +#: src/view/com/composer/videos/SubtitleDialog.tsx:40 +#: src/view/com/composer/videos/SubtitleDialog.tsx:55 +#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:105 +msgid "Alt text" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 +msgid "Alt Text" +msgstr "" + +#: src/view/com/composer/photos/Gallery.tsx:260 +msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93 +msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:266 +msgid "An error has occurred" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 +msgid "An error occurred" +msgstr "" + +#: src/view/com/composer/state/video.ts:400 +msgid "An error occurred while compressing the video." +msgstr "" + +#: src/state/queries/explore-feed-previews.tsx:173 +msgid "An error occurred while fetching the feed." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 +msgid "An error occurred while generating your starter pack. Want to try again?" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 +msgid "An error occurred while loading the video. Please try again later." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 +msgid "An error occurred while loading the video. Please try again." +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:72 +msgid "An error occurred while saving the QR code!" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:63 +msgid "An error occurred while selecting the video" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:374 +msgid "An error occurred while trying to follow all" +msgstr "" + +#: src/view/com/composer/state/video.ts:441 +msgid "An error occurred while uploading the video." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84 +#: src/components/verification/VerifierDialog.tsx:86 +msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28 +#: src/lib/moderation/useReportOptions.ts:28 +msgid "An issue not included in these options" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:38 +msgid "An issue occurred starting the chat" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +msgid "An issue occurred while trying to open the chat" +msgstr "" + +#: src/components/hooks/useFollowMethods.ts:35 +#: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 +#: src/view/com/profile/FollowButton.tsx:38 +#: src/view/com/profile/FollowButton.tsx:48 +msgid "An issue occurred, please try again." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118 +msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:185 +msgid "an unknown error occurred" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:134 +#: src/lib/moderation/useModerationCauseDescription.ts:144 +msgid "an unknown labeler" +msgstr "" + +#: src/components/WhoCanReply.tsx:340 +msgid "and" +msgstr "" + +#: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:94 +msgid "Animals" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 +msgid "Animated GIF" +msgstr "" + +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 +msgid "Announcing verification on Bluesky" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33 +#: src/lib/moderation/useReportOptions.ts:33 +msgid "Anti-Social Behavior" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +msgid "Anybody can interact" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 +#: src/screens/Settings/AppIconSettings/index.tsx:67 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 +msgid "App Icon" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:87 +msgid "App Language" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:122 +msgid "App Password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:147 +msgctxt "toast" +msgid "App password deleted" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84 +msgid "App password name must be unique" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 +msgid "App password names can only contain letters, numbers, spaces, dashes, and underscores" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 +msgid "App password names must be at least 4 characters long" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 +msgid "App passwords" +msgstr "" + +#: src/Navigation.tsx:350 +#: src/screens/Settings/AppPasswords.tsx:51 +msgid "App Passwords" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:150 +#: src/components/moderation/LabelsOnMeDialog.tsx:153 +msgid "Appeal" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:268 +msgid "Appeal \"{0}\" label" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: src/screens/Messages/components/ChatDisabled.tsx:91 +msgctxt "toast" +msgid "Appeal submitted" +msgstr "" + +#: src/screens/Takendown.tsx:111 +#: src/screens/Takendown.tsx:144 +msgid "Appeal suspension" +msgstr "" + +#: src/screens/Takendown.tsx:114 +msgid "Appeal Suspension" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 +msgid "Appeal this decision" +msgstr "" + +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 +msgid "Appearance" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 +#: src/screens/Home/NoFeedsPinned.tsx:93 +msgid "Apply default recommended feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 +msgid "Archived from {0}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 +msgid "Archived post" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:209 +msgid "Are you sure you want to delete the app password \"{0}\"?" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:183 +msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:657 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:86 +msgid "Are you sure you want to discard your changes?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:46 +msgid "Are you sure you want to leave this conversation?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:45 +msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." +msgstr "" + +#: src/components/FeedCard.tsx:340 +msgid "Are you sure you want to remove this from your feeds?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:725 +msgid "Are you sure you'd like to discard this draft?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:910 +msgid "Are you sure you'd like to discard this post?" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:433 +msgid "Are you sure?" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74 +msgid "Are you writing in <0>{suggestedLanguageName}?" +msgstr "" + +#: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:95 +msgid "Art" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:171 +msgid "Artistic or non-erotic nudity." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 +msgid "Assign topic for algo" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 +msgctxt "Name of app icon variant" +msgid "Aurora" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:116 +#: src/screens/Settings/ContentAndMediaSettings.tsx:122 +msgid "Autoplay videos and GIFs" +msgstr "" + +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:84 +#: src/components/moderation/LabelsOnMeDialog.tsx:315 +#: src/components/moderation/LabelsOnMeDialog.tsx:316 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 +#: src/screens/Login/ForgotPasswordForm.tsx:129 +#: src/screens/Login/LoginForm.tsx:310 +#: src/screens/Login/LoginForm.tsx:316 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:158 +#: src/screens/Signup/BackNextButtons.tsx:41 +#: src/screens/StarterPack/Wizard/index.tsx:303 +msgid "Back" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:259 +msgid "Back to Chats" +msgstr "" + +#: src/view/screens/Lists.tsx:53 +#: src/view/screens/ModerationModlists.tsx:53 +msgid "Before creating a list, you must first verify your email." +msgstr "" + +#: src/lib/hooks/useOpenComposer.tsx:14 +msgid "Before creating a post or replying, you must first verify your email." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:245 +msgid "Before creating a starter pack, you must first verify your email." +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:235 +msgid "Before you can accept this chat request, you must first verify your email." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/MessageProfileButton.tsx:58 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 +msgid "Before you can message another user, you must first verify your email." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:103 +#: src/screens/Settings/AccountSettings.tsx:140 +msgid "Birthday" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:473 +msgid "Block" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:247 +#: src/components/dms/ConvoMenu.tsx:250 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 +#: src/screens/Messages/components/RequestButtons.tsx:144 +#: src/screens/Messages/components/RequestButtons.tsx:146 +#: src/view/com/profile/ProfileMenu.tsx:384 +#: src/view/com/profile/ProfileMenu.tsx:391 +msgid "Block account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 +#: src/view/com/profile/ProfileMenu.tsx:456 +msgid "Block Account?" +msgstr "" + +#: src/view/screens/ProfileList.tsx:669 +msgid "Block accounts" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:317 +msgid "Block and Delete" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:352 +msgid "Block and/or delete this conversation" +msgstr "" + +#: src/view/screens/ProfileList.tsx:789 +msgid "Block list" +msgstr "" + +#: src/screens/Messages/components/ChatStatusInfo.tsx:46 +msgid "Block or report" +msgstr "" + +#: src/view/screens/ProfileList.tsx:784 +msgid "Block these accounts?" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:356 +#: src/components/dms/ReportDialog.tsx:359 +msgid "Block user" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:323 +msgid "Block User" +msgstr "" + +#: src/components/Post/Embed/index.tsx:180 +msgid "Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:282 +msgid "Blocked accounts" +msgstr "" + +#: src/Navigation.tsx:191 +#: src/view/screens/ModerationBlockedAccounts.tsx:104 +msgid "Blocked Accounts" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 +#: src/view/com/profile/ProfileMenu.tsx:468 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:190 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:488 +msgid "Blocked post." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:203 +msgid "Blocking does not prevent this labeler from placing labels on your account." +msgstr "" + +#: src/view/screens/ProfileList.tsx:786 +msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:465 +msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:175 +msgid "Blog" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:136 +#: src/view/com/auth/server-input/index.tsx:137 +msgid "Bluesky" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 +msgid "Bluesky cannot confirm the authenticity of the claimed date." +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 +msgctxt "Name of app icon variant" +msgid "Bluesky Classic™" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:212 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:149 +msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." +msgstr "" + +#: src/components/ProgressGuide/List.tsx:53 +#: src/components/ProgressGuide/List.tsx:70 +msgid "Bluesky is better with friends!" +msgstr "" + +#: src/screens/Takendown.tsx:217 +msgid "Bluesky Social Terms of Service" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:310 +msgid "Bluesky will choose a set of recommended accounts from people in your network." +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:99 +msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132 +msgid "Bluesky will proactively verify notable and authentic accounts." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:99 +msgid "Bluesky+" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:102 +msgid "Bluesky+ icons" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:53 +msgid "Blur images" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:51 +msgid "Blur images and filter from feeds" +msgstr "" + +#: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:96 +msgid "Books" +msgstr "" + +#: src/components/FeedInterstitials.tsx:435 +msgid "Browse more accounts on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:566 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:575 +msgid "Browse more suggestions on the Explore page" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 +msgid "Browse other feeds" +msgstr "" + +#: src/components/TrendingTopics.tsx:178 +msgid "Browse posts about {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:186 +msgid "Browse posts tagged with {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:195 +msgid "Browse starter pack {displayName}" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93 +msgid "Browse topic {0}" +msgstr "" + +#: src/components/TrendingTopics.tsx:232 +msgid "Browse topic {displayName}" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:170 +msgid "Business" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:62 +#: src/components/moderation/ReportDialog/index.tsx:683 +#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/Explore.tsx:930 +msgid "By {0}" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +msgid "By <0>{0}" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:78 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:98 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:105 +msgid "By you" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +msgid "Camera" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 +#: src/components/dialogs/InAppBrowserConsent.tsx:98 +#: src/components/dialogs/InAppBrowserConsent.tsx:104 +#: src/components/live/GoLiveDialog.tsx:247 +#: src/components/live/GoLiveDialog.tsx:253 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 +#: src/components/Prompt.tsx:143 +#: src/components/Prompt.tsx:145 +#: src/screens/Deactivated.tsx:158 +#: src/screens/Profile/Header/EditProfileDialog.tsx:225 +#: src/screens/Profile/Header/EditProfileDialog.tsx:233 +#: src/screens/Search/Shell.tsx:349 +#: src/screens/Settings/AppIconSettings/index.tsx:44 +#: src/screens/Settings/AppIconSettings/index.tsx:225 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:78 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:85 +#: src/screens/Settings/Settings.tsx:289 +#: src/screens/Takendown.tsx:99 +#: src/screens/Takendown.tsx:102 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:43 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:52 +#: src/view/com/modals/ChangePassword.tsx:279 +#: src/view/com/modals/ChangePassword.tsx:282 +#: src/view/com/modals/CreateOrEditList.tsx:333 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/shell/desktop/LeftNav.tsx:212 +msgid "Cancel" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:338 +#: src/view/com/modals/DeleteAccount.tsx:170 +#: src/view/com/modals/DeleteAccount.tsx:278 +msgctxt "action" +msgid "Cancel" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:166 +#: src/view/com/modals/DeleteAccount.tsx:274 +msgid "Cancel account deletion" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:94 +msgid "Cancel image crop" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:203 +msgid "Cancel quote post" +msgstr "" + +#: src/screens/Deactivated.tsx:152 +msgid "Cancel reactivation and sign out" +msgstr "" + +#: src/screens/Search/Shell.tsx:341 +msgid "Cancel search" +msgstr "" + +#: src/components/PostControls/index.tsx:101 +#: src/components/PostControls/index.tsx:132 +#: src/components/PostControls/index.tsx:160 +#: src/state/shell/composer/index.tsx:91 +msgid "Cannot interact with a blocked user" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:132 +msgid "Captions (.vtt)" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:40 +#: src/view/com/composer/videos/SubtitleDialog.tsx:55 +msgid "Captions & alt text" +msgstr "" + +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Change" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:39 +msgid "Change app icon" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:38 +#: src/screens/Settings/AppIconSettings/index.tsx:221 +msgid "Change app icon to \"{0}\"" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:40 +msgid "Change app language" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:94 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:98 +msgid "Change Handle" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:325 +msgid "Change moderation service" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:153 +msgid "Change Password" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85 +msgid "Change post language to {suggestedLanguageName}" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:244 +msgid "Change report reason" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:216 +msgid "Changes app icon" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:49 +#: src/components/forms/HostingProvider.tsx:69 +msgid "Changes hosting provider" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 +msgid "Chat" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:78 +#: src/screens/Messages/components/RequestButtons.tsx:304 +msgctxt "toast" +msgid "Chat deleted" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:176 +msgctxt "toast" +msgid "Chat muted" +msgstr "" + +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 +msgid "Chat request inbox" +msgstr "" + +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 +msgid "Chat requests" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:75 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 +msgid "Chat settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 +msgid "Chat Settings" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:178 +msgctxt "toast" +msgid "Chat unmuted" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 +msgid "Chats" +msgstr "" + +#: src/screens/SignupQueued.tsx:78 +#: src/screens/SignupQueued.tsx:82 +msgid "Check my status" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:301 +msgid "Check your email for a sign in code and enter it here." +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:213 +msgid "Check your inbox for an email with the confirmation code to enter below:" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:389 +msgid "Choose domain verification method" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:200 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 +msgid "Choose for me" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:196 +msgid "Choose People" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:298 +msgid "Choose the algorithms that power your custom feeds." +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 +msgid "Choose this color as your avatar" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:130 +msgid "Choose your account provider" +msgstr "" + +#: src/view/screens/Feeds.tsx:733 +msgid "Choose your own timeline! Feeds built by the community help you find content you love." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:245 +msgid "Choose your password" +msgstr "" + +#: src/screens/Signup/index.tsx:175 +msgid "Choose your username" +msgstr "" + +#: src/screens/Settings/Settings.tsx:490 +msgid "Clear all storage data" +msgstr "" + +#: src/screens/Settings/Settings.tsx:492 +msgid "Clear all storage data (restart after this)" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:116 +#: src/screens/Settings/AboutSettings.tsx:120 +msgid "Clear image cache" +msgstr "" + +#: src/components/forms/SearchInput.tsx:70 +msgid "Clear search query" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + +#: src/view/screens/Support.tsx:41 +msgid "click here" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 +msgid "Click here to restart the verification process." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 +msgid "Click here to update your email" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 +msgid "Click to disable quote posts of this post." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 +msgid "Click to enable quote posts of this post." +msgstr "" + +#: src/components/RichTextTag.tsx:54 +msgid "Click to open tag menu for {tag}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:317 +msgid "Click to retry failed message" +msgstr "" + +#: src/screens/Onboarding/index.tsx:32 +msgid "Climate" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:39 +msgid "Clip 🐴 clop 🐴" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 +#: src/components/dialogs/SearchablePeopleList.tsx:295 +#: src/components/dms/EmojiPopup.android.tsx:58 +#: src/components/dms/ReportDialog.tsx:381 +#: src/components/dms/ReportDialog.tsx:390 +#: src/components/live/EditLiveDialog.tsx:229 +#: src/components/live/EditLiveDialog.tsx:235 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 +#: src/components/ProgressGuide/FollowDialog.tsx:386 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: src/components/verification/VerificationsDialog.tsx:144 +#: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 +#: src/view/com/modals/ChangePassword.tsx:279 +#: src/view/com/modals/ChangePassword.tsx:282 +msgid "Close" +msgstr "" + +#: src/components/Dialog/index.web.tsx:111 +#: src/components/Dialog/index.web.tsx:259 +msgid "Close active dialog" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:31 +msgid "Close alert" +msgstr "" + +#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 +msgid "Close bottom drawer" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 +#: src/components/verification/VerificationsDialog.tsx:136 +#: src/components/verification/VerifierDialog.tsx:136 +msgid "Close dialog" +msgstr "" + +#: src/view/shell/index.web.tsx:100 +msgid "Close drawer menu" +msgstr "" + +#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136 +#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172 +msgid "Close emoji picker" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:170 +msgid "Close GIF dialog" +msgstr "" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:31 +msgid "Close image" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:109 +msgid "Close image viewer" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:53 +#: src/components/ContextMenu/Backdrop.ios.tsx:79 +#: src/components/ContextMenu/Backdrop.tsx:45 +msgid "Close menu" +msgstr "" + +#: src/components/Menu/index.tsx:344 +msgid "Close this dialog" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:32 +msgid "Closes password update alert" +msgstr "" + +#: src/view/com/composer/Composer.tsx:973 +msgid "Closes post composer and discards post draft" +msgstr "" + +#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137 +#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173 +msgid "Closes the emoji picker" +msgstr "" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:32 +msgid "Closes viewer for header image" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:591 +msgid "Collapse list of users" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:805 +msgid "Collapses list of users for a given notification" +msgstr "" + +#: src/components/dialogs/Embed.tsx:154 +#: src/screens/Settings/AppearanceSettings.tsx:96 +msgid "Color mode" +msgstr "" + +#: src/components/dialogs/Embed.tsx:151 +msgid "Color theme" +msgstr "" + +#: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:97 +msgid "Comedy" +msgstr "" + +#: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:98 +msgid "Comics" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 +#: src/view/screens/CommunityGuidelines.tsx:34 +msgid "Community Guidelines" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:311 +msgid "Complete onboarding and start using your account" +msgstr "" + +#: src/screens/Signup/index.tsx:177 +msgid "Complete the challenge" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:519 +msgid "Compose new post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:874 +msgid "Compose posts up to {0, plural, other {# characters}} in length" +msgstr "" + +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 +msgid "Compose reply" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1734 +msgid "Compressing video..." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:88 +msgid "Configure content filtering setting for category: {name}" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:249 +msgid "Configured in <0>moderation settings." +msgstr "" + +#: src/components/Prompt.tsx:186 +#: src/components/Prompt.tsx:189 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188 +msgid "Confirm" +msgstr "" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34 +msgid "Confirm content language settings" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:264 +msgid "Confirm delete account" +msgstr "" + +#: src/screens/Moderation/index.tsx:330 +msgid "Confirm your age:" +msgstr "" + +#: src/screens/Moderation/index.tsx:321 +msgid "Confirm your birthdate" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 +#: src/screens/Login/LoginForm.tsx:274 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 +#: src/view/com/modals/DeleteAccount.tsx:220 +#: src/view/com/modals/DeleteAccount.tsx:226 +msgid "Confirmation code" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:337 +msgid "Connecting..." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 +msgid "Contact support" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:51 +msgid "Content & Media" +msgstr "" + +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 +msgid "Content and media" +msgstr "" + +#: src/Navigation.tsx:507 +msgid "Content and Media" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:18 +msgid "Content Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 +msgid "Content filters" +msgstr "" + +#: src/screens/Search/modules/ExploreRecommendations.tsx:59 +msgid "Content from across the network we think you might like." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:153 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76 +msgid "Content Languages" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:82 +#: src/lib/moderation/useModerationCauseDescription.ts:82 +msgid "Content Not Available" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:50 +#: src/components/moderation/ScreenHider.tsx:93 +#: src/lib/moderation/useGlobalLabelStrings.ts:22 +#: src/lib/moderation/useModerationCauseDescription.ts:45 +msgid "Content Warning" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:60 +msgid "Content warnings" +msgstr "" + +#: src/components/Menu/index.web.tsx:91 +msgid "Context menu backdrop, click to close the menu." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:276 +msgid "Continue" +msgstr "" + +#: src/components/AccountList.tsx:128 +msgid "Continue as {0} (currently signed in)" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 +#: src/view/com/post-thread/PostThreadLoadMore.tsx:60 +msgid "Continue thread..." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:273 +#: src/screens/Signup/BackNextButtons.tsx:60 +msgid "Continue to next step" +msgstr "" + +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:318 +#: src/components/dms/ReportDialog.tsx:321 +msgctxt "toast" +msgid "Conversation deleted" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:196 +msgid "Conversation deleted" +msgstr "" + +#: src/screens/Onboarding/index.tsx:41 +msgid "Cooking" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:183 +msgid "Copied" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:151 +msgid "Copied build version to clipboard" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 +#: src/lib/sharing.ts:25 +#: src/lib/sharing.ts:41 +#: src/view/com/modals/InviteCodes.tsx:153 +msgid "Copied to clipboard" +msgstr "" + +#: src/components/dialogs/Embed.tsx:201 +#: src/screens/Settings/components/CopyButton.tsx:66 +msgid "Copied!" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:127 +msgid "Copies build version to clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:182 +msgid "Copy" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 +msgid "Copy App Password" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:421 +#: src/view/com/profile/ProfileMenu.tsx:424 +msgid "Copy at:// URI" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 +msgid "Copy author DID" +msgstr "" + +#: src/components/dialogs/Embed.tsx:189 +#: src/components/dialogs/Embed.tsx:206 +msgid "Copy code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:491 +#: src/view/com/profile/ProfileMenu.tsx:430 +#: src/view/com/profile/ProfileMenu.tsx:433 +msgid "Copy DID" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:424 +msgid "Copy host" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:617 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:111 +msgid "Copy Link" +msgstr "" + +#: src/view/screens/ProfileList.tsx:513 +msgid "Copy link to list" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 +msgid "Copy link to post" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:254 +msgid "Copy link to profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Copy link to starter pack" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 +msgid "Copy message text" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 +msgid "Copy post at:// URI" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +msgid "Copy post text" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:176 +msgid "Copy QR code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:445 +msgid "Copy TXT record value" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 +#: src/view/screens/CopyrightPolicy.tsx:31 +msgid "Copyright Policy" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:35 +#: src/components/dms/ReportDialog.tsx:310 +msgid "Could not leave chat" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:83 +msgid "Could not load feed" +msgstr "" + +#: src/view/screens/ProfileList.tsx:1029 +msgid "Could not load list" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:182 +msgid "Could not mute chat" +msgstr "" + +#: src/view/com/composer/videos/VideoPreview.web.tsx:66 +msgid "Could not process your video" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:300 +msgid "Create" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:160 +msgid "Create a QR code for a starter pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:178 +#: src/components/StarterPack/ProfileStarterPacks.tsx:287 +#: src/Navigation.tsx:588 +msgid "Create a starter pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:274 +msgid "Create a starter pack for me" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:55 +#: src/view/com/auth/SplashScreen.web.tsx:117 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 +msgid "Create account" +msgstr "" + +#: src/screens/Signup/index.tsx:122 +msgid "Create Account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:86 +#: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 +msgid "Create an account" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310 +msgid "Create an account without using this starter pack" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:290 +msgid "Create an avatar instead" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:185 +msgid "Create another" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:47 +#: src/view/com/auth/SplashScreen.web.tsx:109 +msgid "Create new account" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:585 +#: src/components/ReportDialog/SelectReportOptionView.tsx:99 +msgid "Create report for {0}" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:174 +msgid "Created {0}" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:127 +msgid "Creator has been blocked" +msgstr "" + +#: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:99 +msgid "Culture" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:142 +#: src/view/com/auth/server-input/index.tsx:143 +msgid "Custom" +msgstr "" + +#: src/components/dialogs/Embed.tsx:144 +msgid "Customization options" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 +msgid "Customize who can interact with this post." +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:56 +msgid "Customizes your Bluesky experience" +msgstr "" + +#: src/components/dialogs/Embed.tsx:167 +#: src/components/dialogs/Embed.tsx:169 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 +msgid "Dark" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 +msgctxt "Name of app icon variant" +msgid "Dark" +msgstr "" + +#: src/view/screens/Debug.tsx:69 +msgid "Dark mode" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:121 +msgid "Dark theme" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:273 +msgid "Date of birth" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 +msgid "Deactivate account" +msgstr "" + +#: src/screens/Settings/Settings.tsx:455 +msgid "Debug Moderation" +msgstr "" + +#: src/view/screens/Debug.tsx:89 +msgid "Debug panel" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:171 +msgid "Default" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:75 +msgid "Default icons" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/screens/Messages/components/ChatStatusInfo.tsx:55 +#: src/screens/Settings/AppPasswords.tsx:212 +#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:688 +#: src/screens/StarterPack/StarterPackScreen.tsx:760 +#: src/view/screens/ProfileList.tsx:768 +msgid "Delete" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 +msgid "Delete account" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:101 +msgid "Delete Account <0>\"<1>{0}<2>\"" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:187 +msgid "Delete app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:207 +msgid "Delete app password?" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:316 +#: src/screens/Messages/components/RequestButtons.tsx:323 +msgid "Delete chat" +msgstr "" + +#: src/screens/Settings/Settings.tsx:462 +msgid "Delete chat declaration record" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:362 +#: src/components/dms/ReportDialog.tsx:365 +#: src/screens/Messages/components/RequestButtons.tsx:136 +#: src/screens/Messages/components/RequestButtons.tsx:139 +msgid "Delete conversation" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:320 +msgid "Delete Conversation" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:158 +msgid "Delete for me" +msgstr "" + +#: src/view/screens/ProfileList.tsx:556 +msgid "Delete list" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:181 +msgid "Delete message" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:156 +msgid "Delete message for me" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:267 +msgid "Delete my account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 +msgid "Delete post" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/screens/StarterPack/StarterPackScreen.tsx:751 +msgid "Delete starter pack" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:654 +msgid "Delete starter pack?" +msgstr "" + +#: src/view/screens/ProfileList.tsx:763 +msgid "Delete this list?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +msgid "Delete this post?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:173 +msgid "Deleted" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:160 +#: src/screens/Messages/components/ChatListItem.tsx:128 +msgid "Deleted Account" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 +msgid "Deleted post." +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:369 +#: src/view/com/modals/CreateOrEditList.tsx:278 +#: src/view/com/modals/CreateOrEditList.tsx:299 +msgid "Description" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:389 +msgid "Description is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:390 +msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 +msgid "Descriptive alt text" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 +msgid "Detach quote" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 +msgid "Detach quote post?" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:140 +msgctxt "toast" +msgid "Developer mode disabled" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:134 +msgctxt "toast" +msgid "Developer mode enabled" +msgstr "" + +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 +msgid "Developer options" +msgstr "" + +#: src/components/WhoCanReply.tsx:188 +msgid "Dialog: adjust who can interact with this post" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:125 +msgid "Dim" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242 +msgid "Disable 2FA" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157 +msgid "Disable email 2FA" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89 +msgid "Disable Email 2FA" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 +msgid "Disable haptic feedback" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 +msgid "Disable subtitles" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:32 +#: src/lib/moderation/useLabelBehaviorDescription.ts:42 +#: src/lib/moderation/useLabelBehaviorDescription.ts:68 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 +msgid "Disabled" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:88 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 +msgid "Discard" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:85 +msgid "Discard changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:724 +msgid "Discard draft?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:909 +msgid "Discard post?" +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:87 +#: src/screens/Settings/components/PwiOptOut.tsx:91 +msgid "Discourage apps from showing my account to logged-out users" +msgstr "" + +#: src/screens/Search/Explore.tsx:434 +msgid "Discover Feeds" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 +msgid "Discover new custom feeds" +msgstr "" + +#: src/view/screens/Feeds.tsx:730 +msgid "Discover New Feeds" +msgstr "" + +#: src/components/Dialog/index.tsx:321 +msgid "Dismiss" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1658 +msgid "Dismiss error" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:42 +msgid "Dismiss getting started guide" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 +msgid "Dismiss interests" +msgstr "" + +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 +msgid "Dismiss this section" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 +msgid "Display larger alt text badges" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:326 +#: src/screens/Profile/Header/EditProfileDialog.tsx:376 +msgid "Display name" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:339 +msgid "Display name is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:340 +msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:392 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:394 +msgid "DNS Panel" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:302 +msgid "Do not apply this mute word to users you follow" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:39 +msgid "Does not include nudity." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:507 +msgid "Domain verified!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 +msgid "Don't have a code or need a new one? <0>Click here." +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37 +msgid "Don't see an email? <0>Click here to resend." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:115 +#: src/components/dialogs/BirthDateSettings.tsx:121 +#: src/components/dms/ReportDialog.tsx:314 +#: src/components/forms/DateField/index.tsx:103 +#: src/components/forms/DateField/index.tsx:109 +#: src/components/Select/index.tsx:183 +#: src/components/Select/index.tsx:190 +#: src/screens/Onboarding/StepProfile/index.tsx:328 +#: src/screens/Onboarding/StepProfile/index.tsx:331 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 +#: src/view/com/auth/server-input/index.tsx:232 +#: src/view/com/auth/server-input/index.tsx:233 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:168 +#: src/view/com/composer/videos/SubtitleDialog.tsx:178 +#: src/view/com/modals/CropImage.web.tsx:112 +#: src/view/com/modals/InviteCodes.tsx:81 +#: src/view/com/modals/InviteCodes.tsx:124 +msgid "Done" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 +msgctxt "action" +msgid "Done" +msgstr "" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:42 +msgid "Done{extraText}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:161 +msgid "Double tap or long press the message to add a reaction" +msgstr "" + +#: src/components/Dialog/index.tsx:322 +msgid "Double tap to close the dialog" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1080 +msgid "Double tap to like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 +msgid "Download Bluesky" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:79 +#: src/screens/Settings/components/ExportCarDialog.tsx:84 +msgid "Download CAR file" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:344 +msgid "Drop to add images" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:153 +msgid "Duration:" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:230 +msgid "e.g. alice" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:327 +msgid "e.g. Alice Lastname" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:376 +msgid "e.g. alice.com" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:43 +msgid "E.g. artistic nudes." +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:261 +msgid "e.g. Great Posters" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:262 +msgid "e.g. Spammers" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:290 +msgid "e.g. The posters who never miss." +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:291 +msgid "e.g. Users that repeatedly reply with ads." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:97 +msgid "Each code works once. You'll receive more invite codes periodically." +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 +#: src/screens/StarterPack/StarterPackScreen.tsx:588 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 +msgid "Edit" +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:180 +#: src/view/com/lists/ListMembers.tsx:186 +msgctxt "action" +msgid "Edit" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:439 +#: src/view/com/util/UserBanner.tsx:119 +msgid "Edit avatar" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 +msgid "Edit Feeds" +msgstr "" + +#: src/view/com/composer/photos/EditImageDialog.web.tsx:85 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:89 +#: src/view/com/composer/photos/Gallery.tsx:195 +msgid "Edit image" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 +msgid "Edit interaction settings" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:98 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 +msgid "Edit interests" +msgstr "" + +#: src/view/screens/ProfileList.tsx:544 +msgid "Edit list details" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:317 +#: src/view/com/profile/ProfileMenu.tsx:323 +msgid "Edit live status" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:228 +msgid "Edit Moderation List" +msgstr "" + +#: src/Navigation.tsx:355 +#: src/view/screens/Feeds.tsx:518 +msgid "Edit My Feeds" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 +msgid "Edit People" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 +msgid "Edit post interaction settings" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/EditProfileDialog.tsx:281 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 +msgid "Edit profile" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +msgid "Edit Profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:580 +msgid "Edit starter pack" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:223 +msgid "Edit User List" +msgstr "" + +#: src/components/WhoCanReply.tsx:97 +msgid "Edit who can reply" +msgstr "" + +#: src/Navigation.tsx:593 +msgid "Edit your starter pack" +msgstr "" + +#: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:101 +msgid "Education" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:141 +msgid "Either the creator of this list has blocked you or you have blocked the creator." +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 +msgid "Email" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64 +msgctxt "toast" +msgid "Email 2FA disabled" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 +msgid "Email 2FA enabled" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:93 +msgid "Email address" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 +msgid "Email Resent" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208 +msgid "Email sent!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 +msgid "Email verification complete!" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 +msgid "Email Verified" +msgstr "" + +#: src/components/dialogs/Embed.tsx:181 +msgid "Embed HTML code" +msgstr "" + +#: src/components/dialogs/Embed.tsx:104 +#: src/components/dialogs/Embed.tsx:108 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 +msgid "Embed post" +msgstr "" + +#: src/components/dialogs/Embed.tsx:112 +msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +msgid "Embedded video player" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111 +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Enable" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:100 +msgid "Enable {0} only" +msgstr "" + +#: src/screens/Moderation/index.tsx:381 +msgid "Enable adult content" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92 +msgid "Enable email 2FA" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 +msgid "Enable external media" +msgstr "" + +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 +msgid "Enable media players for" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 +msgid "Enable subtitles" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:93 +msgid "Enable this source only" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:132 +#: src/screens/Settings/ContentAndMediaSettings.tsx:146 +msgid "Enable trending topics" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 +#: src/screens/Settings/ContentAndMediaSettings.tsx:167 +msgid "Enable trending videos in your Discover feed" +msgstr "" + +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 +msgid "Enabled" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:113 +msgid "End of feed" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:158 +msgid "Ensure you have selected a language for each subtitle file." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:147 +msgid "Enter a password" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:128 +msgid "Enter a word or tag" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 +msgid "Enter code" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 +msgid "Enter fullscreen" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:165 +msgid "Enter the code you received to change your password." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:370 +msgid "Enter the domain you want to use" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:113 +msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:218 +msgid "Enter the username or email address you used when you created your account" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:104 +msgid "Enter your birth date" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:217 +msgid "Enter your email address" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:243 +msgid "Enter your password" +msgstr "" + +#: src/screens/Login/index.tsx:123 +msgid "Enter your username and password" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 +msgid "Enters full screen" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239 +msgid "Entertainment" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1743 +#: src/view/com/util/error/ErrorScreen.tsx:42 +msgid "Error" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:47 +msgid "Error occurred while saving file" +msgstr "" + +#: src/screens/Signup/StepCaptcha/index.tsx:124 +msgid "Error receiving captcha response." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:183 +msgid "Error:" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:144 +msgid "Error: {error}" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 +msgid "Everybody" +msgstr "" + +#: src/components/WhoCanReply.tsx:77 +msgid "Everybody can reply" +msgstr "" + +#: src/components/WhoCanReply.tsx:245 +msgid "Everybody can reply to this post." +msgstr "" + +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 +msgid "Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 +#: src/lib/moderation/useReportOptions.ts:73 +msgid "Excessive mentions or replies" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:86 +#: src/lib/moderation/useReportOptions.ts:86 +msgid "Excessive or unwanted messages" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:311 +msgid "Exclude users you follow" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:514 +msgid "Excludes users you follow" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 +msgid "Exit fullscreen" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:275 +msgid "Exits account deletion process" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:95 +msgid "Exits image cropping process" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:110 +msgid "Exits image view" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:184 +msgid "Expand alt text" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:592 +msgid "Expand list of users" +msgstr "" + +#: src/view/com/composer/ComposerReplyTo.tsx:91 +msgid "Expand or collapse the full post you are replying to" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 +msgid "Expands or collapses post text" +msgstr "" + +#: src/lib/api/index.ts:418 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 +msgid "Experimental" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:500 +msgid "Expired" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:502 +msgid "Expires {0}" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:199 +#: src/components/moderation/ModerationDetailsDialog.tsx:208 +msgid "Expires in {0}" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:131 +msgid "Expires in {0} at {1}" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:47 +#: src/lib/moderation/useGlobalLabelStrings.ts:51 +msgid "Explicit or potentially disturbing media." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:35 +msgid "Explicit sexual images." +msgstr "" + +#: src/Navigation.tsx:750 +#: src/screens/Search/Shell.tsx:307 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 +msgid "Explore" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 +msgid "Export my data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:62 +msgid "Export My Data" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:84 +#: src/screens/Settings/ContentAndMediaSettings.tsx:87 +msgid "External media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 +msgid "External Media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 +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:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 +msgid "External Media Preferences" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:220 +msgctxt "toast" +msgid "Failed to accept chat" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:67 +#: src/components/dms/MessageContextMenu.tsx:99 +msgid "Failed to add emoji reaction" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:587 +msgid "Failed to change handle. Please try again." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:173 +msgid "Failed to create app password. Please try again." +msgstr "" + +#: src/components/dms/MessageProfileButton.tsx:36 +msgid "Failed to create conversation" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 +msgid "Failed to create starter pack" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:184 +msgid "Failed to create the list. Check your internet connection and try again." +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:64 +#: src/screens/Messages/components/RequestButtons.tsx:291 +msgctxt "toast" +msgid "Failed to delete chat" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:79 +msgid "Failed to delete message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +msgid "Failed to delete post, please try again" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:722 +msgid "Failed to delete starter pack" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 +msgid "Failed to load conversations" +msgstr "" + +#: src/screens/Search/Explore.tsx:470 +#: src/screens/Search/Explore.tsx:522 +#: src/screens/Search/Explore.tsx:560 +#: src/screens/Search/Explore.tsx:599 +msgid "Failed to load feeds preferences" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:226 +msgid "Failed to load GIFs" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:23 +msgid "Failed to load past messages" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + +#: src/screens/Search/Explore.tsx:463 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:553 +#: src/screens/Search/Explore.tsx:592 +msgid "Failed to load suggested feeds" +msgstr "" + +#: src/screens/Search/Explore.tsx:373 +msgid "Failed to load suggested follows" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 +msgid "Failed to mark all requests as read" +msgstr "" + +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:61 +#: src/components/dms/MessageContextMenu.tsx:93 +msgid "Failed to remove emoji reaction" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:34 +msgid "Failed to remove verification" +msgstr "" + +#: src/lib/media/save-image.ts:28 +msgid "Failed to save image: {0}" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:108 +msgid "Failed to save settings. Please try again." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:132 +msgctxt "toast" +msgid "Failed to save your interests." +msgstr "" + +#: src/components/dms/MessageItem.tsx:310 +msgid "Failed to send" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136 +msgid "Failed to send email, please try again." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/screens/Messages/components/ChatDisabled.tsx:87 +msgid "Failed to submit appeal, please try again." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +msgid "Failed to toggle thread mute, please try again" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83 +msgid "Failed to update email 2FA settings" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:195 +msgid "Failed to update email, please try again." +msgstr "" + +#: src/components/FeedCard.tsx:285 +msgid "Failed to update feeds" +msgstr "" + +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 +msgid "Failed to update settings" +msgstr "" + +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 +msgid "Failed to upload video" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168 +msgid "Failed to verify email, please try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:360 +msgid "Failed to verify handle. Please try again." +msgstr "" + +#: src/Navigation.tsx:290 +msgid "Feed" +msgstr "" + +#: src/components/FeedCard.tsx:139 +#: src/view/com/feeds/FeedSourceCard.tsx:150 +msgid "Feed by {0}" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:354 +msgid "Feed menu" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +msgid "Feed toggle" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:102 +#: src/view/shell/desktop/RightNav.tsx:103 +#: src/view/shell/Drawer.tsx:357 +msgid "Feedback" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 +msgctxt "toast" +msgid "Feedback sent!" +msgstr "" + +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 +#: src/screens/StarterPack/StarterPackScreen.tsx:190 +#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Profile.tsx:230 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 +msgid "Feeds" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:206 +msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." +msgstr "" + +#: src/components/FeedCard.tsx:282 +#: src/view/screens/SavedFeeds.tsx:86 +msgctxt "toast" +msgid "Feeds updated!" +msgstr "" + +#: src/screens/Search/modules/ExploreRecommendations.tsx:65 +msgid "Feeds we think you might like." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:58 +msgid "Fetch update" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:43 +msgid "File saved successfully!" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:66 +msgid "Filter from feeds" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:97 +msgid "Filter search by language" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:70 +msgid "Filter search by language (currently: {currentLanguageLabel})" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:314 +msgid "Finalizing" +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:48 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 +msgid "Find accounts to follow" +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:77 +#: src/components/ProgressGuide/FollowDialog.tsx:87 +#: src/components/ProgressGuide/FollowDialog.tsx:374 +msgid "Find people to follow" +msgstr "" + +#: src/screens/Search/Shell.tsx:476 +msgid "Find posts, users, and feeds on Bluesky" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:201 +msgid "Finish" +msgstr "" + +#: src/screens/Onboarding/index.tsx:35 +msgid "Fitness" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 +msgctxt "Name of app icon variant" +msgid "Flat Black" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +msgctxt "Name of app icon variant" +msgid "Flat Blue" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 +msgctxt "Name of app icon variant" +msgid "Flat White" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:294 +msgid "Flexible" +msgstr "" + +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 +#: src/screens/VideoFeed/index.tsx:850 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 +msgid "Follow" +msgstr "" + +#: src/view/com/profile/FollowButton.tsx:72 +msgctxt "action" +msgid "Follow" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 +msgid "Follow {0}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:827 +msgid "Follow {handle}" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:52 +#: src/state/shell/progress-guide.tsx:229 +msgid "Follow 10 accounts" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:69 +msgid "Follow 7 accounts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:284 +#: src/view/com/profile/ProfileMenu.tsx:295 +msgid "Follow account" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:438 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 +msgid "Follow all" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 +msgid "Follow Back" +msgstr "" + +#: src/view/com/profile/FollowButton.tsx:81 +msgctxt "action" +msgid "Follow Back" +msgstr "" + +#: src/components/KnownFollowers.tsx:238 +msgid "Followed by <0>{0}" +msgstr "" + +#: src/components/KnownFollowers.tsx:224 +msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" +msgstr "" + +#: src/components/KnownFollowers.tsx:211 +msgid "Followed by <0>{0} and <1>{1}" +msgstr "" + +#: src/components/KnownFollowers.tsx:193 +msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" +msgstr "" + +#: src/Navigation.tsx:244 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:104 +#: src/screens/Profile/KnownFollowers.tsx:121 +msgid "Followers you know" +msgstr "" + +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 +#: src/screens/VideoFeed/index.tsx:848 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 +msgid "Following" +msgstr "" + +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "" + +#: src/components/ProfileCard.tsx:474 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 +msgid "Following {0}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:826 +msgid "Following {handle}" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:76 +#: src/screens/Settings/ContentAndMediaSettings.tsx:79 +msgid "Following feed preferences" +msgstr "" + +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 +msgid "Following Feed Preferences" +msgstr "" + +#: src/screens/Profile/Header/Handle.tsx:32 +msgid "Follows you" +msgstr "" + +#: src/components/Pills.tsx:175 +msgid "Follows You" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "Font" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:163 +msgid "Font size" +msgstr "" + +#: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:102 +msgid "Food" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:125 +msgid "For security reasons, we'll need to send a confirmation code to your email address." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:209 +msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:145 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94 +msgid "For You" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:178 +msgid "Forever" +msgstr "" + +#: src/screens/Login/index.tsx:153 +#: src/screens/Login/index.tsx:168 +msgid "Forgot Password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:248 +msgid "Forgot password?" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:259 +msgid "Forgot?" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:54 +#: src/lib/moderation/useReportOptions.ts:54 +msgid "Frequently Posts Unwanted Content" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + +#: src/screens/Hashtag.tsx:120 +msgid "From @{sanitizedAuthor}" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:330 +msgctxt "from-feed" +msgid "From <0/>" +msgstr "" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 +msgid "Gallery" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 +msgid "Generate a starter pack" +msgstr "" + +#: src/view/shell/Drawer.tsx:361 +msgid "Get help" +msgstr "" + +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 +msgid "Get started" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:35 +msgid "Getting started" +msgstr "" + +#: src/components/MediaPreview.tsx:116 +msgid "GIF" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:232 +msgid "Give your profile a face" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39 +#: src/lib/moderation/useReportOptions.ts:39 +msgid "Glaring violations of law or terms of service" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 +#: src/components/Layout/Header/index.tsx:127 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/screens/Messages/Inbox.tsx:249 +#: src/screens/Profile/ProfileFeed/index.tsx:92 +#: src/screens/VideoFeed/components/Header.tsx:163 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileList.tsx:1038 +msgid "Go back" +msgstr "" + +#: src/components/Error.tsx:78 +#: src/screens/List/ListHiddenScreen.tsx:224 +#: src/screens/Profile/ErrorState.tsx:62 +#: src/screens/Profile/ErrorState.tsx:66 +#: src/screens/Profile/ProfileFeed/index.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:773 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileList.tsx:1043 +msgid "Go Back" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:192 +#: src/components/ReportDialog/SelectReportOptionView.tsx:78 +#: src/components/ReportDialog/SubmitView.tsx:110 +#: src/screens/Onboarding/Layout.tsx:99 +#: src/screens/Onboarding/Layout.tsx:188 +#: src/screens/Signup/BackNextButtons.tsx:35 +msgid "Go back to previous step" +msgstr "" + +#: src/view/screens/NotFound.tsx:57 +msgid "Go home" +msgstr "" + +#: src/view/screens/NotFound.tsx:56 +msgid "Go Home" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:318 +#: src/view/com/profile/ProfileMenu.tsx:325 +msgid "Go live" +msgstr "" + +#: src/components/live/GoLiveDialog.tsx:93 +#: src/components/live/GoLiveDialog.tsx:98 +#: src/components/live/GoLiveDialog.tsx:232 +#: src/components/live/GoLiveDialog.tsx:241 +msgid "Go Live" +msgstr "" + +#: src/components/live/GoLiveDialog.tsx:174 +msgid "Go live for" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:221 +msgid "Go to {firstAuthorName}'s profile" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:360 +msgid "Go to conversation with {0}" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:165 +#: src/view/com/modals/ChangePassword.tsx:179 +msgid "Go to next" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:227 +msgid "Go to profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:224 +msgid "Go to user's profile" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/lib/moderation/useGlobalLabelStrings.ts:50 +#: src/view/com/composer/labels/LabelsBtn.tsx:201 +#: src/view/com/composer/labels/LabelsBtn.tsx:204 +msgid "Graphic Media" +msgstr "" + +#: src/state/shell/progress-guide.tsx:218 +#: src/state/shell/progress-guide.tsx:228 +msgid "Half way there!" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 +msgid "Handle" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:591 +msgid "Handle already taken. Please try a different one." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:195 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:344 +msgid "Handle changed!" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:595 +msgid "Handle too long. Please try a shorter one." +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:85 +msgid "Haptics" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:34 +#: src/lib/moderation/useReportOptions.ts:34 +msgid "Harassment, trolling, or intolerance" +msgstr "" + +#: src/Navigation.tsx:538 +msgid "Hashtag" +msgstr "" + +#: src/components/RichTextTag.tsx:51 +msgid "Hashtag {tag}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 +msgid "Have a code? <0>Click here." +msgstr "" + +#: src/screens/Signup/index.tsx:210 +msgid "Having trouble?" +msgstr "" + +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 +#: src/view/shell/desktop/RightNav.tsx:120 +#: src/view/shell/desktop/RightNav.tsx:121 +#: src/view/shell/Drawer.tsx:370 +msgid "Help" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:235 +msgid "Help people know you're not a bot by uploading a picture or creating an avatar." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:187 +msgid "Here is your app password!" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + +#: src/components/VideoPostCard.tsx:178 +#: src/components/VideoPostCard.tsx:460 +msgid "Hidden" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:625 +msgid "Hidden by your moderation settings." +msgstr "" + +#: src/components/ListCard.tsx:132 +msgid "Hidden list" +msgstr "" + +#: src/components/interstitials/Trending.tsx:131 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 +#: src/lib/moderation/useLabelBehaviorDescription.ts:15 +#: src/lib/moderation/useLabelBehaviorDescription.ts:20 +#: src/lib/moderation/useLabelBehaviorDescription.ts:25 +#: src/lib/moderation/useLabelBehaviorDescription.ts:30 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110 +msgid "Hide" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:812 +msgctxt "action" +msgid "Hide" +msgstr "" + +#: src/components/dialogs/Embed.tsx:128 +msgid "Hide customization options" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 +msgid "Hide post for me" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 +msgid "Hide reply for everyone" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 +msgid "Hide reply for me" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:110 +msgid "Hide this card" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +msgid "Hide this post?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +msgid "Hide this reply?" +msgstr "" + +#: src/components/interstitials/Trending.tsx:113 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62 +msgid "Hide trending topics" +msgstr "" + +#: src/components/interstitials/Trending.tsx:129 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108 +msgid "Hide trending topics?" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:136 +msgid "Hide trending videos?" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:803 +msgid "Hide user list" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:85 +#: src/screens/Moderation/VerificationSettings.tsx:94 +msgid "Hide verification badges" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 +msgid "Hides the content" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 +msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 +msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 +msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 +msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 +msgid "Hmm, we're having trouble finding this feed. It may have been deleted." +msgstr "" + +#: src/screens/Moderation/index.tsx:59 +msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:31 +msgid "Hmmmm, we couldn't load that moderation service." +msgstr "" + +#: src/view/com/composer/state/video.ts:415 +msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" +msgstr "" + +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 +msgid "Home" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:417 +msgid "Host:" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:184 +msgid "Hosting provider" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194 +msgid "Hot" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 +msgid "Hot replies first" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:62 +#: src/components/dialogs/InAppBrowserConsent.tsx:66 +msgid "How should we open this link?" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 +msgid "I have a code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:280 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:286 +msgid "I have my own domain" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:57 +#: src/components/dms/ReportConversationPrompt.tsx:21 +msgid "I understand" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:186 +msgid "If alt text is long, toggles alt text expanded state" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:142 +msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." +msgstr "" + +#: src/view/screens/ProfileList.tsx:765 +msgid "If you delete this list, you won't be able to recover it." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:267 +msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 +msgid "If you need to update your email, <0>click here." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +msgid "If you remove this post, you won't be able to recover it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:208 +msgid "If you update your email address, email 2FA will be disabled." +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:160 +msgid "If you want to change your password, we will send you a code to verify that this is your account." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:208 +msgid "If you're a developer, you can host your own server." +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 +msgid "If you're trying to change your handle or email, do so before you deactivate." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:38 +#: src/lib/moderation/useReportOptions.ts:38 +msgid "Illegal and Urgent" +msgstr "" + +#: src/view/com/util/images/Gallery.tsx:71 +msgid "Image" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:64 +msgid "Image cache cleared" +msgstr "" + +#. Android-only toast message which includes amount of space freed using localized number formatting +#: src/screens/Settings/AboutSettings.tsx:50 +msgid "Image cache cleared, freed {0}" +msgstr "" + +#: src/lib/media/save-image.ts:26 +msgid "Image saved" +msgstr "" + +#: src/lib/media/save-image.ts:45 +msgid "Images cannot be saved unless permission is granted to access your photo library." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49 +#: src/lib/moderation/useReportOptions.ts:49 +msgid "Impersonation or false claims about identity or affiliation" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:68 +#: src/lib/moderation/useReportOptions.ts:68 +msgid "Impersonation, misinformation, or false claims" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 +#: src/lib/moderation/useReportOptions.ts:91 +msgid "Inappropriate messages or explicit links" +msgstr "" + +#. Title message shown in chat requests inbox when it's empty +#: src/screens/Messages/Inbox.tsx:229 +msgid "Inbox zero!" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:164 +msgid "Incorrect username or password" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:133 +msgid "Input code sent to your email for password reset" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:228 +msgid "Input confirmation code for account deletion" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:159 +msgid "Input new password" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:247 +msgid "Input password for account deletion" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:289 +msgid "Input the code which has been emailed to you" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 +msgid "Interaction limited" +msgstr "" + +#: src/screens/Moderation/index.tsx:222 +msgid "Interaction settings" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:156 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 +msgid "Invalid 2FA confirmation code." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:597 +msgid "Invalid handle. Please try a different one." +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:347 +msgid "Invalid or unsupported post record" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:73 +msgid "Invalid report subject" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 +msgid "Invalid Verification Code" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:94 +msgid "Invite a Friend" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:167 +msgid "Invite code" +msgstr "" + +#: src/screens/Signup/state.ts:339 +msgid "Invite code not accepted. Check that you input it correctly and try again." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:171 +msgid "Invite codes: {0} available" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:170 +msgid "Invite codes: 1 available" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:77 +msgid "Invite people to this starter pack!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:34 +msgid "Invite your friends to follow your favorite feeds and people" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:31 +msgid "Invites, but personal" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:293 +msgid "It's correct" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:474 +msgid "It's just you right now! Add more people to your starter pack by searching above." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1677 +msgid "Job ID: {0}" +msgstr "" + +#. Link to a page with job openings at Bluesky +#: src/view/com/auth/SplashScreen.web.tsx:180 +msgid "Jobs" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211 +#: src/screens/StarterPack/StarterPackScreen.tsx:466 +#: src/screens/StarterPack/StarterPackScreen.tsx:477 +msgid "Join Bluesky" +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:68 +#: src/view/shell/NavSignupCard.tsx:40 +msgid "Join the conversation" +msgstr "" + +#: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:104 +msgid "Journalism" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 +msgid "Labeled by {0}." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:232 +msgid "Labeled by the author." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:75 +#: src/view/screens/Profile.tsx:223 +msgid "Labels" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:73 +msgid "Labels added" +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:194 +msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:72 +msgid "Labels on your account" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:74 +msgid "Labels on your content" +msgstr "" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:107 +msgid "Language selection" +msgstr "" + +#: src/Navigation.tsx:217 +msgid "Language Settings" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:78 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 +msgid "Languages" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:175 +msgid "Larger" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + +#: src/screens/Hashtag.tsx:95 +#: src/screens/Search/SearchResults.tsx:57 +#: src/screens/Topic.tsx:77 +msgid "Latest" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:271 +msgid "learn more" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:165 +#: src/components/verification/VerifierDialog.tsx:132 +#: src/screens/Moderation/VerificationSettings.tsx:47 +#: src/screens/Profile/Header/EditProfileDialog.tsx:359 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:212 +msgid "Learn more" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:140 +msgid "Learn More" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:168 +msgid "Learn more about Bluesky" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:218 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:152 +msgid "Learn more about the moderation applied to this content" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:218 +msgid "Learn more about the moderation applied to this content." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 +#: src/components/moderation/ScreenHider.tsx:127 +msgid "Learn more about this warning" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:150 +#: src/components/verification/VerifierDialog.tsx:117 +msgid "Learn more about verification on Bluesky" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 +msgid "Learn more about what is public on Bluesky." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 +#: src/view/com/auth/server-input/index.tsx:220 +msgid "Learn more." +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:48 +msgid "Leave" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:74 +#: src/components/dms/MessagesListBlockedFooter.tsx:81 +msgid "Leave chat" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:203 +#: src/components/dms/ConvoMenu.tsx:206 +#: src/components/dms/ConvoMenu.tsx:266 +#: src/components/dms/ConvoMenu.tsx:269 +#: src/components/dms/LeaveConvoPrompt.tsx:42 +msgid "Leave conversation" +msgstr "" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 +msgid "Leave them all unselected to see any language." +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 +msgid "Leaving Bluesky" +msgstr "" + +#: src/screens/SignupQueued.tsx:155 +msgid "left to go." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:323 +msgid "Let me choose" +msgstr "" + +#: src/screens/Login/index.tsx:154 +#: src/screens/Login/index.tsx:169 +msgid "Let's get your password reset!" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:314 +msgid "Let's go!" +msgstr "" + +#: src/components/dialogs/Embed.tsx:162 +#: src/components/dialogs/Embed.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:104 +msgid "Light" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:14 +msgctxt "Name of app icon variant" +msgid "Light" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:518 +msgid "Like" +msgstr "" + +#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form +#: src/components/PostControls/index.tsx:253 +msgid "Like ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:63 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:214 +#: src/state/shell/progress-guide.tsx:219 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 +msgid "Like this feed" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272 +msgid "Like this labeler" +msgstr "" + +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 +msgid "Liked by" +msgstr "" + +#: src/screens/Post/PostLikedBy.tsx:38 +#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 +msgid "Liked By" +msgstr "" + +#: src/components/FeedCard.tsx:218 +#: src/view/com/feeds/FeedSourceCard.tsx:172 +msgid "Liked by {0, plural, one {# user} other {# users}}" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:96 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:493 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306 +msgid "Liked by {likeCount, plural, one {# user} other {# users}}" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/view/screens/Profile.tsx:229 +msgid "Likes" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 +msgid "Likes on this post" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 +msgid "Linear" +msgstr "" + +#: src/Navigation.tsx:250 +msgid "List" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:239 +msgid "List Avatar" +msgstr "" + +#: src/view/screens/ProfileList.tsx:438 +msgctxt "toast" +msgid "List blocked" +msgstr "" + +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 +msgid "List by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 +msgid "List by <0/>" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 +msgid "List by you" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + +#: src/view/screens/ProfileList.tsx:485 +msgctxt "toast" +msgid "List deleted" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:129 +msgid "List has been hidden" +msgstr "" + +#: src/view/screens/ProfileList.tsx:176 +msgid "List Hidden" +msgstr "" + +#: src/view/screens/ProfileList.tsx:402 +msgctxt "toast" +msgid "List muted" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:253 +msgid "List Name" +msgstr "" + +#: src/view/screens/ProfileList.tsx:456 +msgctxt "toast" +msgid "List unblocked" +msgstr "" + +#: src/view/screens/ProfileList.tsx:420 +msgctxt "toast" +msgid "List unmuted" +msgstr "" + +#: src/Navigation.tsx:171 +#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Profile.tsx:224 +#: src/view/screens/Profile.tsx:232 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 +msgid "Lists" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:39 +msgid "Lists blocking this user:" +msgstr "" + +#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters +#: src/components/live/LiveIndicator.tsx:46 +msgid "LIVE" +msgstr "" + +#: src/components/live/LiveStatusDialog.tsx:215 +msgid "Live feature is in beta testing" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:148 +#: src/components/live/EditLiveDialog.tsx:152 +#: src/components/live/GoLiveDialog.tsx:124 +#: src/components/live/GoLiveDialog.tsx:128 +msgid "Live link" +msgstr "" + +#: src/screens/Search/Explore.tsx:86 +msgid "Load more" +msgstr "" + +#: src/screens/Search/Explore.tsx:504 +#: src/screens/Search/Explore.tsx:581 +msgid "Load more suggested feeds" +msgstr "" + +#: src/view/screens/Notifications.tsx:278 +msgid "Load new notifications" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:224 +#: src/screens/Profile/Sections/Feed.tsx:98 +#: src/view/com/feeds/FeedPage.tsx:155 +#: src/view/screens/ProfileList.tsx:878 +msgid "Load new posts" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61 +msgid "Loading..." +msgstr "" + +#: src/Navigation.tsx:320 +msgid "Log" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 +msgid "Logged-out visibility" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:130 +msgid "Logo by @sawaratsuki.bsky.social" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:127 +#: src/view/shell/Drawer.tsx:672 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#: src/components/RichTextTag.tsx:53 +msgid "Long press to open tag menu for #{tag}" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:122 +msgid "Looks like XXXXX-XXXXX" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39 +msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:83 +msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:37 +msgid "Looks like you're missing a following feed. <0>Click here to add one." +msgstr "" + +#: src/components/dialogs/EmailDialog/index.tsx:41 +msgid "Make adjustments to email settings for your account" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +msgid "Make one for me" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:85 +msgid "Make sure this is where you intend to go!" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:60 +#: src/screens/Settings/ContentAndMediaSettings.tsx:63 +msgid "Manage saved feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:292 +msgid "Manage verification settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:108 +msgid "Manage your muted words and tags" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 +msgid "Mark all as read" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:215 +#: src/components/dms/ConvoMenu.tsx:218 +msgid "Mark as read" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 +msgid "Marked all as read" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 +msgid "Maybe later" +msgstr "" + +#: src/view/screens/Profile.tsx:227 +msgid "Media" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:210 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 +msgid "mentioned users" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 +msgid "Mentioned users" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 +msgid "Mentions" +msgstr "" + +#: src/components/Menu/index.tsx:111 +msgid "Menu" +msgstr "" + +#: src/components/dms/MessageProfileButton.tsx:96 +msgid "Message {0}" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:77 +msgctxt "toast" +msgid "Message deleted" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:197 +msgid "Message deleted" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:125 +msgid "Message from @{0}: {1}" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 +msgid "Message from server: {0}" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:152 +msgid "Message input field" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:79 +#: src/screens/Messages/components/MessageInput.web.tsx:60 +msgid "Message is too long" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:123 +msgid "Message options" +msgstr "" + +#: src/Navigation.tsx:760 +msgid "Messages" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 +msgctxt "Name of app icon variant" +msgid "Midnight" +msgstr "" + +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 +#: src/lib/moderation/useReportOptions.ts:47 +msgid "Misleading Account" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:67 +#: src/lib/moderation/useReportOptions.ts:67 +msgid "Misleading Post" +msgstr "" + +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 +msgid "Moderation" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:138 +msgid "Moderation details" +msgstr "" + +#: src/components/ListCard.tsx:151 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 +msgid "Moderation list by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 +msgid "Moderation list by <0/>" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 +msgid "Moderation list by you" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:175 +msgctxt "toast" +msgid "Moderation list created" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:161 +msgctxt "toast" +msgid "Moderation list updated" +msgstr "" + +#: src/screens/Moderation/index.tsx:252 +msgid "Moderation lists" +msgstr "" + +#: src/Navigation.tsx:181 +#: src/view/screens/ModerationModlists.tsx:65 +msgid "Moderation Lists" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:252 +msgid "moderation settings" +msgstr "" + +#: src/Navigation.tsx:310 +msgid "Moderation states" +msgstr "" + +#: src/screens/Moderation/index.tsx:206 +msgid "Moderation tools" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:52 +#: src/lib/moderation/useModerationCauseDescription.ts:47 +msgid "Moderator has chosen to set a general warning on the content." +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:727 +msgid "More" +msgstr "" + +#: src/view/shell/desktop/Feeds.tsx:102 +#: src/view/shell/desktop/Feeds.tsx:105 +msgid "More feeds" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:220 +#: src/view/com/profile/ProfileMenu.tsx:226 +#: src/view/screens/ProfileList.tsx:750 +msgid "More options" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:228 +msgid "Most-liked first" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 +msgid "Most-liked replies first" +msgstr "" + +#: src/screens/Onboarding/state.ts:105 +msgid "Movies" +msgstr "" + +#: src/screens/Onboarding/state.ts:106 +msgid "Music" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 +msgctxt "video" +msgid "Mute" +msgstr "" + +#: src/components/RichTextTag.tsx:140 +#: src/components/RichTextTag.tsx:153 +msgid "Mute {tag}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 +#: src/view/com/profile/ProfileMenu.tsx:363 +#: src/view/com/profile/ProfileMenu.tsx:370 +msgid "Mute account" +msgstr "" + +#: src/view/screens/ProfileList.tsx:657 +msgid "Mute accounts" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:232 +#: src/components/dms/ConvoMenu.tsx:238 +msgid "Mute conversation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:253 +msgid "Mute in:" +msgstr "" + +#: src/view/screens/ProfileList.tsx:779 +msgid "Mute list" +msgstr "" + +#: src/view/screens/ProfileList.tsx:774 +msgid "Mute these accounts?" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:185 +msgid "Mute this word for 24 hours" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:224 +msgid "Mute this word for 30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:209 +msgid "Mute this word for 7 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:258 +msgid "Mute this word in post text and tags" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:274 +msgid "Mute this word in tags only" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:170 +msgid "Mute this word until you unmute it" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 +msgid "Mute thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 +msgid "Mute words & tags" +msgstr "" + +#: src/screens/Moderation/index.tsx:267 +msgid "Muted accounts" +msgstr "" + +#: src/Navigation.tsx:186 +#: src/view/screens/ModerationMutedAccounts.tsx:118 +msgid "Muted Accounts" +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:204 +msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:92 +msgid "Muted by \"{0}\"" +msgstr "" + +#: src/screens/Moderation/index.tsx:237 +msgid "Muted words & tags" +msgstr "" + +#: src/view/screens/ProfileList.tsx:776 +msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:35 +#: src/components/dialogs/BirthDateSettings.tsx:38 +msgid "My Birthday" +msgstr "" + +#: src/view/screens/Feeds.tsx:704 +msgid "My Feeds" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:268 +msgid "Name" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:133 +msgid "Name is required" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:59 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:98 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:106 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:114 +#: src/lib/moderation/useReportOptions.ts:59 +#: src/lib/moderation/useReportOptions.ts:98 +#: src/lib/moderation/useReportOptions.ts:106 +#: src/lib/moderation/useReportOptions.ts:114 +msgid "Name or Description Violates Community Standards" +msgstr "" + +#: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:107 +msgid "Nature" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:130 +#: src/components/StarterPack/StarterPackCard.tsx:160 +msgid "Navigate to {0}" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:131 +msgid "Navigate to starter pack" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:344 +#: src/view/com/modals/ChangePassword.tsx:180 +msgid "Navigates to the next screen" +msgstr "" + +#: src/view/shell/Drawer.tsx:77 +msgid "Navigates to your profile" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:271 +#: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:128 +msgid "Need to report a copyright violation?" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:282 +msgid "Never lose access to your followers or data." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:567 +msgid "Nevermind, create a handle for me" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199 +msgid "New" +msgstr "" + +#: src/view/screens/Lists.tsx:77 +#: src/view/screens/ModerationModlists.tsx:77 +msgctxt "action" +msgid "New" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:67 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 +msgid "New chat" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:222 +msgid "New email address" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 +msgid "New Feature" +msgstr "" + +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:221 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:229 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:375 +msgid "New handle" +msgstr "" + +#: src/view/screens/Lists.tsx:69 +#: src/view/screens/ModerationModlists.tsx:69 +msgid "New list" +msgstr "" + +#: src/components/dms/NewMessagesPill.tsx:92 +msgid "New messages" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:230 +msgid "New Moderation List" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:141 +#: src/view/com/modals/ChangePassword.tsx:224 +msgid "New password" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:229 +msgid "New Password" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:241 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Notifications.tsx:167 +#: src/view/screens/Profile.tsx:510 +#: src/view/screens/ProfileList.tsx:250 +#: src/view/screens/ProfileList.tsx:288 +msgid "New post" +msgstr "" + +#: src/view/com/feeds/FeedPage.tsx:166 +msgctxt "action" +msgid "New post" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:527 +msgctxt "action" +msgid "New Post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/components/NewskieDialog.tsx:83 +msgid "New user info dialog" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:225 +msgid "New User List" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 +msgid "Newest replies first" +msgstr "" + +#: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:108 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241 +msgid "News" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:137 +#: src/screens/Login/ForgotPasswordForm.tsx:143 +#: src/screens/Login/LoginForm.tsx:343 +#: src/screens/Login/LoginForm.tsx:350 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 +#: src/screens/Signup/BackNextButtons.tsx:67 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 +#: src/view/com/modals/ChangePassword.tsx:265 +#: src/view/com/modals/ChangePassword.tsx:267 +msgid "Next" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:169 +msgid "Next image" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:108 +msgid "No app passwords yet" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:397 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:399 +msgid "No DNS Panel" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:140 +msgid "No expiry set" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:232 +msgid "No featured GIFs found. There may be an issue with Tenor." +msgstr "" + +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:119 +msgid "No feeds found. Try searching for something else." +msgstr "" + +#: src/components/live/LinkPreview.tsx:63 +msgid "No image" +msgstr "" + +#: src/components/LikedByList.tsx:84 +#: src/view/com/post-thread/PostLikedBy.tsx:84 +msgid "No likes yet" +msgstr "" + +#: src/components/ProfileCard.tsx:496 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 +msgid "No longer following {0}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:139 +msgid "No messages yet" +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:122 +msgid "No notifications yet!" +msgstr "" + +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 +msgid "No one" +msgstr "" + +#: src/components/WhoCanReply.tsx:269 +msgid "No one but the author can quote this post." +msgstr "" + +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:66 +msgid "No posts yet." +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:105 +msgid "No quotes yet" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:90 +msgid "No reposts yet" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:172 +msgid "No result" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:223 +#: src/components/ProgressGuide/FollowDialog.tsx:212 +msgid "No results" +msgstr "" + +#: src/screens/Search/Explore.tsx:786 +msgid "No results for \"{0}\"." +msgstr "" + +#: src/components/Lists.tsx:190 +msgid "No results found" +msgstr "" + +#: src/view/screens/Feeds.tsx:473 +msgid "No results found for \"{query}\"" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 +msgid "No results found for {query}" +msgstr "" + +#: src/screens/Search/Explore.tsx:790 +msgid "No results." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:230 +msgid "No search results found for \"{search}\"." +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 +msgid "No thanks" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 +msgid "Nobody" +msgstr "" + +#: src/components/LikedByList.tsx:86 +#: src/view/com/post-thread/PostLikedBy.tsx:86 +msgid "Nobody has liked this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:107 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:92 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:104 +msgid "Nobody was found. Try searching for someone else." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:42 +msgid "Non-sexual Nudity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 +msgid "Not followed by anyone you're following" +msgstr "" + +#: src/Navigation.tsx:166 +#: src/view/screens/Profile.tsx:125 +msgid "Not Found" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:480 +msgid "Note about sharing" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 +msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 +msgid "Nothing here" +msgstr "" + +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 +msgid "Notification settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:139 +msgid "Notification sounds" +msgstr "" + +#: src/screens/Messages/Settings.tsx:136 +msgid "Notification Sounds" +msgstr "" + +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 +msgid "Notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:135 +msgid "now" +msgstr "" + +#: src/components/dms/MessageItem.tsx:274 +msgid "Now" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:150 +#: src/view/com/composer/labels/LabelsBtn.tsx:153 +msgid "Nudity" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:78 +#: src/lib/moderation/useReportOptions.ts:78 +msgid "Nudity or adult content not labeled as such" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 +msgid "Off" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 +msgid "Oh no!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:124 +msgid "Oh no! Something went wrong." +msgstr "" + +#. Confirm button text. +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:48 +#: src/screens/Settings/AppIconSettings/index.tsx:48 +#: src/screens/Settings/AppIconSettings/index.tsx:229 +msgid "OK" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:37 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 +msgid "Okay" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 +msgid "Oldest replies first" +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:82 +msgid "on<0><1/><2><3/>" +msgstr "" + +#: src/screens/Settings/Settings.tsx:388 +msgid "Onboarding reset" +msgstr "" + +#: src/view/com/composer/Composer.tsx:347 +msgid "One or more GIFs is missing alt text." +msgstr "" + +#: src/view/com/composer/Composer.tsx:344 +msgid "One or more images is missing alt text." +msgstr "" + +#: src/view/com/composer/Composer.tsx:354 +msgid "One or more videos is missing alt text." +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:115 +msgid "Only .jpg and .png files are supported" +msgstr "" + +#: src/components/WhoCanReply.tsx:249 +msgid "Only {0} can reply." +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" + +#: src/lib/media/picker.shared.ts:32 +msgid "Only image files are supported" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 +msgid "Only WebVTT (.vtt) files are supported" +msgstr "" + +#: src/components/Lists.tsx:95 +msgid "Oops, something went wrong!" +msgstr "" + +#: src/components/Lists.tsx:174 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 +#: src/components/StarterPack/ProfileStarterPacks.tsx:341 +#: src/screens/Settings/AppPasswords.tsx:59 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:106 +#: src/view/screens/Profile.tsx:125 +msgid "Oops!" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:278 +msgid "Open" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:284 +msgid "Open avatar creator" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:368 +#: src/screens/Messages/components/ChatListItem.tsx:369 +msgid "Open conversation options" +msgstr "" + +#: src/components/Layout/Header/index.tsx:159 +msgid "Open drawer menu" +msgstr "" + +#: src/screens/Messages/components/MessageInput.web.tsx:181 +#: src/view/com/composer/Composer.tsx:1325 +msgid "Open emoji picker" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:191 +msgid "Open feed info screen" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:291 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:296 +msgid "Open feed options menu" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:27 +msgid "Open full emoji list" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/components/dms/ActionsWrapper.tsx:35 +msgid "Open message options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:453 +msgid "Open moderation debug page" +msgstr "" + +#: src/screens/Moderation/index.tsx:233 +msgid "Open muted words and tags settings" +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:119 +msgid "Open pack" +msgstr "" + +#: src/components/PostControls/PostMenu/index.tsx:62 +msgid "Open post options menu" +msgstr "" + +#: src/components/live/LiveStatusDialog.tsx:189 +#: src/components/live/LiveStatusDialog.tsx:203 +msgid "Open profile" +msgstr "" + +#: src/components/PostControls/ShareMenu/index.tsx:87 +msgid "Open share menu" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:566 +msgid "Open starter pack menu" +msgstr "" + +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 +msgid "Open storybook page" +msgstr "" + +#: src/screens/Settings/Settings.tsx:439 +msgid "Open system log" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:167 +msgid "Opens {numItems} options" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:62 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:61 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "" + +#: src/view/screens/Log.tsx:59 +msgid "Opens additional details for a debug entry" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:44 +msgid "Opens alt text dialog" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +msgid "Opens camera on device" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:43 +msgid "Opens captions and alt text dialog" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:129 +msgid "Opens change handle dialog" +msgstr "" + +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 +msgid "Opens composer" +msgstr "" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 +msgid "Opens device photo gallery" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1326 +msgid "Opens emoji picker" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:49 +#: src/view/com/auth/SplashScreen.web.tsx:111 +msgid "Opens flow to create a new Bluesky account" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:63 +#: src/view/com/auth/SplashScreen.web.tsx:125 +msgid "Opens flow to sign in to your existing Bluesky account" +msgstr "" + +#: src/view/com/composer/photos/SelectGifBtn.tsx:36 +msgid "Opens GIF select dialog" +msgstr "" + +#: src/screens/Settings/Settings.tsx:237 +msgid "Opens helpdesk in browser" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:173 +msgid "Opens list of invite codes" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:576 +msgid "Opens live status dialog" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:249 +msgid "Opens password reset form" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 +msgid "Opens this profile" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +msgid "Opens video picker" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:221 +#: src/components/ReportDialog/SubmitView.tsx:168 +msgid "Optionally provide additional information below:" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:299 +msgid "Options:" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 +msgid "Or combine these options:" +msgstr "" + +#: src/screens/Deactivated.tsx:200 +msgid "Or, continue with another account." +msgstr "" + +#: src/screens/Deactivated.tsx:187 +msgid "Or, sign in to one of your other accounts." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:52 +msgid "OTA status: ..." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:48 +msgid "OTA status: Available!" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:50 +msgid "OTA status: Error fetching update" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:54 +msgid "OTA status: None available" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27 +#: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:185 +msgid "Other" +msgstr "" + +#: src/components/AccountList.tsx:88 +msgid "Other account" +msgstr "" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:93 +msgid "Other..." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:348 +msgid "Our moderation team has received your report." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:28 +msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." +msgstr "" + +#: src/components/Lists.tsx:191 +#: src/view/screens/NotFound.tsx:47 +msgid "Page not found" +msgstr "" + +#: src/view/screens/NotFound.tsx:44 +msgid "Page Not Found" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 +#: src/view/com/modals/DeleteAccount.tsx:239 +#: src/view/com/modals/DeleteAccount.tsx:246 +msgid "Password" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:154 +msgid "Password Changed" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:99 +msgid "Password must be at least 8 characters long." +msgstr "" + +#: src/screens/Login/index.tsx:181 +msgid "Password updated" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:23 +msgid "Password updated!" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 +msgid "Pause" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 +msgid "Pause video" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:67 +#: src/screens/StarterPack/StarterPackScreen.tsx:189 +#: src/view/screens/ProfileList.tsx:170 +msgid "People" +msgstr "" + +#: src/Navigation.tsx:237 +msgid "People followed by @{0}" +msgstr "" + +#: src/Navigation.tsx:230 +msgid "People following @{0}" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "" + +#: src/lib/media/save-image.ts:51 +msgid "Permission to access your photo library was denied. Please enable it in your system settings." +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +msgid "Person toggle" +msgstr "" + +#: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:109 +msgid "Pets" +msgstr "" + +#: src/screens/Onboarding/state.ts:110 +msgid "Photography" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:169 +msgid "Pictures meant for adults." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:530 +msgid "Pin feed" +msgstr "" + +#: src/components/FeedCard.tsx:329 +msgid "Pin Feed" +msgstr "" + +#: src/view/screens/ProfileList.tsx:714 +msgid "Pin to home" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +msgid "Pin to Home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:411 +msgid "Pinned" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:160 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:174 +msgid "Pinned {0} to Home" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:131 +msgid "Pinned Feeds" +msgstr "" + +#: src/view/screens/ProfileList.tsx:361 +msgid "Pinned to your feeds" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 +msgid "Play" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 +msgid "Play {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 +msgid "Play video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 +msgid "Play Video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 +msgid "Plays or pauses the GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 +msgid "Plays or pauses the video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 +msgid "Plays the GIF" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 +msgid "Plays the video" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:115 +msgid "Please add any content warning labels that are applicable for the media you are posting." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + +#: src/screens/Signup/state.ts:286 +msgid "Please choose your handle." +msgstr "" + +#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/StepInfo/index.tsx:123 +msgid "Please choose your password." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:290 +msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." +msgstr "" + +#: src/screens/Signup/state.ts:301 +msgid "Please complete the verification captcha." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 +msgid "Please double-check that you have entered your email address correctly." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:58 +msgid "Please enter a password." +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:94 +msgid "Please enter a password. It must be at least 8 characters long." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114 +msgid "Please enter a unique name for this app password or use our randomly generated one." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:135 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145 +msgid "Please enter a valid code." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:148 +msgid "Please enter a valid email address." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:86 +msgid "Please enter a valid word, tag, or phrase to mute" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 +msgid "Please enter the code we sent to <0>{0} below." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:247 +msgid "Please enter the security code we sent to your previous email address." +msgstr "" + +#: src/screens/Signup/state.ts:262 +#: src/screens/Signup/StepInfo/index.tsx:94 +msgid "Please enter your email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:87 +msgid "Please enter your invite code." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:217 +msgid "Please enter your new email address." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:99 +msgid "Please enter your password" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:235 +msgid "Please enter your password as well:" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:94 +msgid "Please enter your username" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +msgid "Please explain why you think this label was incorrectly applied by {0}" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:110 +msgid "Please explain why you think your chats were incorrectly disabled" +msgstr "" + +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:31 +msgid "Please select a moderation service" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:28 +msgid "Please select a reason for this report" +msgstr "" + +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 +msgid "Please sign in as @{0}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62 +msgid "Please verify your email" +msgstr "" + +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" + +#: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:111 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235 +msgid "Politics" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:156 +msgid "Porn" +msgstr "" + +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 +msgctxt "description" +msgid "Post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1034 +msgctxt "action" +msgid "Post All" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 +msgid "Post by {0}" +msgstr "" + +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 +msgid "Post by @{0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 +msgctxt "toast" +msgid "Post deleted" +msgstr "" + +#: src/lib/api/index.ts:186 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 +#: src/screens/VideoFeed/index.tsx:529 +msgid "Post has been deleted" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:271 +msgid "Post hidden" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:107 +#: src/lib/moderation/useModerationCauseDescription.ts:106 +msgid "Post Hidden by Muted Word" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:110 +#: src/lib/moderation/useModerationCauseDescription.ts:115 +msgid "Post Hidden by You" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 +msgid "Post interaction settings" +msgstr "" + +#: src/Navigation.tsx:197 +#: src/screens/ModerationInteractionSettings/index.tsx:34 +msgid "Post Interaction Settings" +msgstr "" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:89 +msgid "Post language" +msgstr "" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:77 +msgid "Post Languages" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 +msgid "Post not found" +msgstr "" + +#: src/state/queries/pinned-post.ts:59 +msgctxt "toast" +msgid "Post pinned" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgctxt "toast" +msgid "Post unpinned" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 +#: src/screens/StarterPack/StarterPackScreen.tsx:191 +#: src/view/screens/Profile.tsx:225 +#: src/view/screens/ProfileList.tsx:170 +msgid "Posts" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:115 +msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 +msgid "Posts hidden" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:19 +msgid "Press to attempt reconnection" +msgstr "" + +#: src/components/Error.tsx:60 +#: src/components/Lists.tsx:100 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:47 +msgid "Press to retry" +msgstr "" + +#: src/components/KnownFollowers.tsx:129 +msgid "Press to view followers of this account that you also follow" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:150 +msgid "Previous image" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:120 +msgid "Primary Language" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 +msgid "Prioritize your Follows" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:110 +#: src/view/shell/desktop/RightNav.tsx:111 +msgid "Privacy" +msgstr "" + +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 +msgid "Privacy and security" +msgstr "" + +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 +msgid "Privacy and Security" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 +#: src/screens/Settings/AboutSettings.tsx:92 +#: src/screens/Settings/AboutSettings.tsx:95 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 +msgid "Privacy Policy" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1740 +msgid "Processing video..." +msgstr "" + +#: src/lib/api/index.ts:60 +#: src/screens/Login/ForgotPasswordForm.tsx:149 +msgid "Processing..." +msgstr "" + +#: src/view/screens/DebugMod.tsx:927 +#: src/view/screens/Profile.tsx:364 +msgid "profile" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 +#: src/view/shell/Drawer.tsx:76 +#: src/view/shell/Drawer.tsx:559 +msgid "Profile" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:196 +msgctxt "toast" +msgid "Profile updated" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:264 +msgid "Public" +msgstr "" + +#: src/view/com/lists/MyLists.tsx:77 +msgid "Public, sharable lists of users to mute or block in bulk." +msgstr "" + +#: src/view/com/lists/MyLists.tsx:72 +msgid "Public, sharable lists which can be used to drive feeds." +msgstr "" + +#. Accessibility label for button to publish a single post +#: src/view/com/composer/Composer.tsx:1016 +msgid "Publish post" +msgstr "" + +#. Accessibility label for button to publish multiple posts in a thread +#: src/view/com/composer/Composer.tsx:1009 +msgid "Publish posts" +msgstr "" + +#. Accessibility label for button to publish multiple replies in a thread +#: src/view/com/composer/Composer.tsx:994 +msgid "Publish replies" +msgstr "" + +#. Accessibility label for button to publish a single reply +#: src/view/com/composer/Composer.tsx:1001 +msgid "Publish reply" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:134 +msgid "QR code copied to your clipboard!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:112 +msgid "QR code has been downloaded!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:113 +msgid "QR code saved to your camera roll!" +msgstr "" + +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 +msgid "Quote post" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 +msgid "Quote post was re-attached" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 +msgid "Quote post was successfully detached" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 +msgid "Quote posts disabled" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 +msgid "Quote settings" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:154 +#: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +msgid "Quotes" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 +msgid "Quotes of this post" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 +msgid "Random (aka \"Poster's Roulette\")" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:600 +msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 +msgid "Re-attach quote" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.tsx:85 +msgid "React with {emoji}" +msgstr "" + +#: src/screens/Deactivated.tsx:141 +msgid "Reactivate your account" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 +msgid "Read blog post" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:966 +msgid "Read less" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:966 +msgid "Read more" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:173 +msgid "Read the Bluesky blog" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 +msgid "Read the Bluesky Privacy Policy" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 +msgid "Read the Bluesky Terms of Service" +msgstr "" + +#: src/screens/Takendown.tsx:162 +#: src/screens/Takendown.tsx:170 +msgid "Reason for appeal" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:212 +msgid "Reason:" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:49 +msgid "Recent Searches" +msgstr "" + +#: src/screens/Search/modules/ExploreRecommendations.tsx:54 +msgid "Recommended" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:20 +msgid "Reconnect" +msgstr "" + +#. Reject a chat request, this opens a menu with options +#: src/screens/Messages/components/RequestButtons.tsx:124 +msgid "Reject" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:112 +msgid "Reject chat request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 +msgid "Reload conversations" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 +#: src/components/dialogs/MutedWords.tsx:438 +#: src/components/FeedCard.tsx:343 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 +#: src/screens/Settings/Settings.tsx:662 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 +msgid "Remove" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 +msgid "Remove {displayName} from starter pack" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:94 +msgid "Remove {historyItem}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 +msgid "Remove account" +msgstr "" + +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +msgid "Remove attachment" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 +msgid "Remove Avatar" +msgstr "" + +#: src/view/com/util/UserBanner.tsx:186 +#: src/view/com/util/UserBanner.tsx:189 +msgid "Remove Banner" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:209 +msgid "Remove embed" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:116 +#: src/view/com/posts/FeedShutdownMsg.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 +msgid "Remove feed" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 +msgid "Remove feed?" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/view/screens/ProfileList.tsx:528 +#: src/view/screens/SavedFeeds.tsx:350 +msgid "Remove from my feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:654 +msgid "Remove from quick access?" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:170 +#: src/screens/List/ListHiddenScreen.tsx:174 +msgid "Remove from saved feeds" +msgstr "" + +#: src/components/FeedCard.tsx:338 +msgid "Remove from your feeds?" +msgstr "" + +#: src/view/com/composer/photos/Gallery.tsx:204 +msgid "Remove image" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:240 +#: src/components/live/EditLiveDialog.tsx:247 +msgid "Remove live status" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:523 +msgid "Remove mute word from your list" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:167 +msgid "Remove profile" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 +msgid "Remove repost" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:261 +msgid "Remove subtitle file" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 +msgid "Remove this feed from your saved feeds" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157 +msgid "Remove user from list" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:46 +#: src/components/verification/VerificationsDialog.tsx:247 +#: src/view/com/profile/ProfileMenu.tsx:336 +#: src/view/com/profile/ProfileMenu.tsx:339 +msgid "Remove verification" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:44 +msgid "Remove your verification for this account?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:208 +msgid "Removed by author" +msgstr "" + +#: src/components/Post/Embed/index.tsx:206 +msgid "Removed by you" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 +msgid "Removed from list" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:94 +msgid "Removed from saved feeds" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:122 +#: src/view/com/posts/FeedShutdownMsg.tsx:44 +#: src/view/screens/ProfileList.tsx:392 +msgid "Removed from your feeds" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:32 +msgid "Removed verification" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:129 +#: src/view/com/posts/FeedShutdownMsg.tsx:133 +msgid "Replace with Discover" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/view/screens/Profile.tsx:226 +msgid "Replies" +msgstr "" + +#: src/components/WhoCanReply.tsx:79 +msgid "Replies disabled" +msgstr "" + +#: src/components/WhoCanReply.tsx:247 +msgid "Replies to this post are disabled." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1032 +msgctxt "action" +msgid "Reply" +msgstr "" + +#. Accessibility label for the reply button, verb form followed by number of replies and noun form +#: src/components/PostControls/index.tsx:207 +msgid "Reply ({0, plural, one {# reply} other {# replies}})" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:116 +#: src/lib/moderation/useModerationCauseDescription.ts:125 +msgid "Reply Hidden by Thread Author" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:115 +#: src/lib/moderation/useModerationCauseDescription.ts:124 +msgid "Reply Hidden by You" +msgstr "" + +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +msgid "Reply settings" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 +msgid "Reply settings are chosen by the author of the thread" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 +msgid "Reply sorting" +msgstr "" + +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 +msgctxt "description" +msgid "Reply to <0><1/>" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:593 +msgctxt "description" +msgid "Reply to a blocked post" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:595 +msgctxt "description" +msgid "Reply to a post" +msgstr "" + +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 +msgctxt "description" +msgid "Reply to you" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 +msgctxt "toast" +msgid "Reply visibility updated" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 +msgid "Reply was successfully hidden" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:166 +#: src/components/dms/MessagesListBlockedFooter.tsx:85 +#: src/components/dms/MessagesListBlockedFooter.tsx:92 +msgid "Report" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:403 +#: src/view/com/profile/ProfileMenu.tsx:406 +msgid "Report account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:255 +#: src/components/dms/ConvoMenu.tsx:258 +#: src/components/dms/ReportConversationPrompt.tsx:17 +#: src/screens/Messages/components/RequestButtons.tsx:155 +#: src/screens/Messages/components/RequestButtons.tsx:158 +msgid "Report conversation" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:71 +#: src/components/moderation/ReportDialog/index.tsx:198 +#: src/components/ReportDialog/index.tsx:44 +msgid "Report dialog" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 +msgid "Report feed" +msgstr "" + +#: src/view/screens/ProfileList.tsx:570 +msgid "Report list" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:164 +msgid "Report message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 +msgid "Report post" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:630 +#: src/screens/StarterPack/StarterPackScreen.tsx:633 +msgid "Report starter pack" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:345 +msgid "Report submitted" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:41 +msgid "Report this content" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:31 +#: src/components/ReportDialog/SelectReportOptionView.tsx:54 +msgid "Report this feed" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:25 +#: src/components/ReportDialog/SelectReportOptionView.tsx:51 +msgid "Report this list" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:59 +#: src/components/dms/ReportDialog.tsx:180 +#: src/components/moderation/ReportDialog/copy.ts:43 +#: src/components/ReportDialog/SelectReportOptionView.tsx:60 +msgid "Report this message" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:19 +#: src/components/ReportDialog/SelectReportOptionView.tsx:48 +msgid "Report this post" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:37 +#: src/components/ReportDialog/SelectReportOptionView.tsx:57 +msgid "Report this starter pack" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:13 +#: src/components/ReportDialog/SelectReportOptionView.tsx:45 +msgid "Report this user" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 +msgctxt "action" +msgid "Repost" +msgstr "" + +#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form +#: src/components/PostControls/RepostButton.tsx:76 +msgid "Repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:144 +#: src/components/PostControls/RepostButton.web.tsx:43 +#: src/components/PostControls/RepostButton.web.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:561 +msgid "Repost or quote post" +msgstr "" + +#: src/screens/Post/PostRepostedBy.tsx:38 +msgid "Reposted By" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:351 +msgid "Reposted by {0}" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:370 +msgid "Reposted by <0><1/>" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 +msgid "Reposted by you" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 +msgid "Reposts of this post" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:253 +#: src/view/com/modals/ChangePassword.tsx:255 +msgid "Request Code" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 +msgid "Require alt text before posting" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96 +msgid "Require an email code to sign in to your account." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:181 +msgid "Required for this provider" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40 +msgid "Resend" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 +msgid "Resend email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:130 +msgid "Resend Email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 +msgid "Resend Verification Email" +msgstr "" + +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/view/com/modals/ChangePassword.tsx:197 +msgid "Reset code" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:204 +msgid "Reset Code" +msgstr "" + +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 +msgid "Reset onboarding state" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:80 +msgid "Reset password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:324 +msgid "Retries signing in" +msgstr "" + +#: src/view/com/util/error/ErrorMessage.tsx:62 +#: src/view/com/util/error/ErrorScreen.tsx:99 +msgid "Retries the last action, which errored out" +msgstr "" + +#: src/components/dms/MessageItem.tsx:321 +#: src/components/Error.tsx:65 +#: src/components/Lists.tsx:111 +#: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 +#: src/components/StarterPack/ProfileStarterPacks.tsx:346 +#: src/screens/Login/LoginForm.tsx:323 +#: src/screens/Login/LoginForm.tsx:330 +#: src/screens/Messages/ChatList.tsx:280 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Messages/Inbox.tsx:218 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 +#: src/screens/Signup/BackNextButtons.tsx:53 +#: src/view/com/util/error/ErrorMessage.tsx:60 +#: src/view/com/util/error/ErrorScreen.tsx:97 +msgid "Retry" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:226 +msgid "Retry loading report options" +msgstr "" + +#: src/components/Error.tsx:73 +#: src/screens/List/ListHiddenScreen.tsx:219 +#: src/screens/StarterPack/StarterPackScreen.tsx:767 +msgid "Return to previous page" +msgstr "" + +#: src/view/screens/NotFound.tsx:61 +msgid "Returns to home page" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:93 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:559 +#: src/screens/VideoFeed/index.tsx:1142 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileList.tsx:1039 +msgid "Returns to previous page" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:304 +msgid "Returns to the previous step" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:121 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 +#: src/components/live/EditLiveDialog.tsx:216 +#: src/components/live/EditLiveDialog.tsx:223 +#: src/components/StarterPack/QrCodeDialog.tsx:192 +#: src/screens/Profile/Header/EditProfileDialog.tsx:243 +#: src/screens/Profile/Header/EditProfileDialog.tsx:257 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:262 +#: src/view/com/composer/GifAltText.tsx:193 +#: src/view/com/composer/GifAltText.tsx:202 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:75 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 +#: src/view/com/modals/CreateOrEditList.tsx:315 +#: src/view/screens/SavedFeeds.tsx:117 +msgid "Save" +msgstr "" + +#: src/view/com/lightbox/ImageViewing/index.tsx:610 +#: src/view/com/modals/CreateOrEditList.tsx:323 +msgctxt "action" +msgid "Save" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:115 +msgid "Save birthday" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 +msgid "Save changes" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:131 +#: src/components/StarterPack/ShareDialog.tsx:138 +msgid "Save image" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:104 +msgid "Save image crop" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:248 +msgid "Save new handle" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:186 +msgid "Save QR code" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +msgid "Save to my feeds" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:172 +msgid "Saved Feeds" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:132 +#: src/view/screens/ProfileList.tsx:372 +msgid "Saved to your feeds" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:105 +msgid "Saves image crop settings" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:33 +#: src/components/NewskieDialog.tsx:105 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 +msgid "Say hello!" +msgstr "" + +#: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:112 +msgid "Science" +msgstr "" + +#: src/view/screens/ProfileList.tsx:996 +msgid "Scroll to top" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:514 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/screens/Search/Shell.tsx:307 +#: src/screens/Search/Shell.tsx:464 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 +msgid "Search" +msgstr "" + +#: src/Navigation.tsx:256 +#: src/screens/Profile/ProfileSearch.tsx:37 +msgid "Search @{0}'s posts" +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:683 +msgid "Search by name or interest" +msgstr "" + +#: src/view/screens/Feeds.tsx:444 +msgid "Search feeds" +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:524 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135 +msgid "Search for \"{interestsDisplayName}\"{activeText}" +msgstr "" + +#: src/view/shell/desktop/Search.tsx:131 +msgid "Search for \"{query}\"" +msgstr "" + +#: src/screens/Search/components/AutocompleteResults.tsx:45 +msgid "Search for \"{searchText}\"" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:513 +msgid "Search for feeds that you want to suggest to others." +msgstr "" + +#: src/screens/Search/Explore.tsx:360 +msgid "Search for more accounts" +msgstr "" + +#: src/screens/Search/Explore.tsx:437 +msgid "Search for more feeds" +msgstr "" + +#: src/screens/Search/Shell.tsx:334 +msgid "Search for posts, users, or feeds" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:178 +msgid "Search GIFs" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:36 +msgid "Search my posts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:263 +#: src/view/com/profile/ProfileMenu.tsx:266 +msgid "Search posts" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/ProgressGuide/FollowDialog.tsx:702 +msgid "Search profiles" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:179 +msgid "Search Tenor" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:38 +msgid "Search..." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:535 +#: src/components/ProgressGuide/FollowDialog.tsx:703 +msgid "Searches for profiles" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:243 +msgid "Security step required" +msgstr "" + +#: src/components/RichTextTag.tsx:111 +msgid "See {tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:124 +msgid "See {tag} posts by user" +msgstr "" + +#: src/components/RichTextTag.tsx:118 +msgid "See #{tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:132 +msgid "See #{tag} posts by user" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:178 +msgid "See jobs at Bluesky" +msgstr "" + +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 +msgid "See this guide" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 +msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" +msgstr "" + +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 +msgid "Select a color" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:77 +msgid "Select account" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:60 +msgid "Select an app language" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +msgid "Select an avatar" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 +msgid "Select an emoji" +msgstr "" + +#: src/components/Select/index.tsx:204 +msgid "Select an option" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:98 +msgid "Select app language" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:164 +msgid "Select content languages" +msgstr "" + +#: src/components/live/GoLiveDialog.tsx:179 +msgid "Select duration" +msgstr "" + +#: src/screens/Login/index.tsx:144 +msgid "Select from an existing account" +msgstr "" + +#: src/view/com/composer/photos/SelectGifBtn.tsx:35 +msgid "Select GIF" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:307 +msgid "Select GIF \"{0}\"" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:142 +msgid "Select how long to mute this word for." +msgstr "" + +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:248 +msgid "Select language..." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:178 +msgid "Select languages" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:310 +msgid "Select moderation service" +msgstr "" + +#: src/components/ReportDialog/SelectLabelerView.tsx:28 +msgid "Select moderator" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:131 +msgid "Select primary language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 +msgid "Select subtitle file (.vtt)" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83 +msgid "Select the {emojiName} emoji as your avatar" +msgstr "" + +#: src/components/ReportDialog/SubmitView.tsx:141 +msgid "Select the moderation service(s) to report to" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:74 +msgid "Select video" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:242 +msgid "Select what content this mute word should apply to." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:91 +msgid "Select which language to use for the app's user interface." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:157 +msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:274 +msgid "Select your date of birth" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Settings/InterestsSettings.tsx:161 +msgid "Select your interests from the options below" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:124 +msgid "Select your preferred language for translations in your feed." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 +msgid "Selects option {0} of {numItems}" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:38 +msgid "Send a neat website!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 +#: src/view/com/modals/DeleteAccount.tsx:145 +msgid "Send email" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:158 +msgctxt "action" +msgid "Send Email" +msgstr "" + +#: src/view/shell/Drawer.tsx:350 +msgid "Send feedback" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:192 +#: src/screens/Messages/components/MessageInput.web.tsx:235 +msgid "Send message" +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 +msgid "Send post to {name}" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 +msgid "Send post to..." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:271 +#: src/components/dms/ReportDialog.tsx:274 +#: src/components/ReportDialog/SubmitView.tsx:221 +#: src/components/ReportDialog/SubmitView.tsx:225 +msgid "Send report" +msgstr "" + +#: src/components/ReportDialog/SelectLabelerView.tsx:42 +msgid "Send report to {0}" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:649 +msgid "Send report to {title}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 +msgid "Send verification email" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 +msgid "Send via direct message" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:147 +msgid "Sends email with confirmation code for account deletion" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:167 +msgid "Server address" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:178 +msgid "Set app icon to {0}" +msgstr "" + +#: src/screens/Moderation/index.tsx:333 +msgid "Set birthdate" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:106 +msgid "Set new password" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:47 +msgid "Set up your account" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:107 +msgid "Sets email for password reset" +msgstr "" + +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 +msgid "Settings" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:102 +msgctxt "toast" +msgid "Settings saved" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:173 +msgid "Sexual activity or erotic nudity." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:38 +msgid "Sexually Suggestive" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:182 +#: src/screens/Hashtag.tsx:126 +#: src/screens/StarterPack/StarterPackScreen.tsx:433 +#: src/screens/Topic.tsx:102 +#: src/view/screens/ProfileList.tsx:513 +msgid "Share" +msgstr "" + +#: src/view/com/lightbox/ImageViewing/index.tsx:619 +msgctxt "action" +msgid "Share" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:37 +msgid "Share a cool story!" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:36 +msgid "Share a fun fact!" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:485 +msgid "Share anyway" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 +msgid "Share author DID" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 +#: src/components/StarterPack/ShareDialog.tsx:104 +#: src/components/StarterPack/ShareDialog.tsx:111 +msgid "Share link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:68 +msgid "Share link dialog" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 +msgid "Share post at:// URI" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:115 +#: src/components/StarterPack/ShareDialog.tsx:126 +msgid "Share QR code" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:474 +msgid "Share this feed" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:426 +msgid "Share this starter pack" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:80 +msgid "Share this starter pack and help people join your community on Bluesky." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/screens/StarterPack/StarterPackScreen.tsx:611 +#: src/screens/StarterPack/StarterPackScreen.tsx:619 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:256 +msgid "Share via..." +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:34 +msgid "Share your favorite feed!" +msgstr "" + +#: src/Navigation.tsx:315 +msgid "Shared Preferences Tester" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 +msgid "Show" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 +msgid "Show alt text" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/screens/List/ListHiddenScreen.tsx:190 +#: src/screens/VideoFeed/index.tsx:628 +#: src/screens/VideoFeed/index.tsx:634 +msgid "Show anyway" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:27 +#: src/lib/moderation/useLabelBehaviorDescription.ts:63 +msgid "Show badge" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:61 +msgid "Show badge and filter from feeds" +msgstr "" + +#: src/components/dialogs/Embed.tsx:129 +msgid "Show customization options" +msgstr "" + +#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 +msgid "Show hidden replies" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 +msgid "Show less like this" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:186 +msgid "Show list anyway" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:51 +msgid "Show More" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 +msgid "Show more like this" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "" + +#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 +msgid "Show muted replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 +msgid "Show quote posts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 +msgid "Show replies" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 +msgid "Show replies as" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:285 +msgid "Show replies as threaded" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 +msgid "Show replies by people you follow before all other replies" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 +msgid "Show reply for everyone" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 +msgid "Show reposts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 +msgid "Show samples of your saved feeds in your Following feed" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:58 +msgid "Show warning" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:56 +msgid "Show warning and filter from feeds" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 +msgid "Shows information about when this post was created" +msgstr "" + +#: src/screens/Settings/Settings.tsx:125 +msgid "Shows other accounts you can switch to" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 +msgid "Shows the content" +msgstr "" + +#: src/components/dialogs/Signin.tsx:97 +#: src/components/dialogs/Signin.tsx:99 +#: src/screens/Login/index.tsx:122 +#: src/screens/Login/index.tsx:143 +#: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 +#: src/view/com/auth/SplashScreen.tsx:61 +#: src/view/com/auth/SplashScreen.tsx:69 +#: src/view/com/auth/SplashScreen.web.tsx:123 +#: src/view/com/auth/SplashScreen.web.tsx:131 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 +msgid "Sign in" +msgstr "" + +#: src/components/AccountList.tsx:129 +msgid "Sign in as {0}" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:80 +msgid "Sign in as..." +msgstr "" + +#: src/screens/Deactivated.tsx:203 +#: src/screens/Deactivated.tsx:209 +msgid "Sign in or create an account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:75 +msgid "Sign in or create your account to join the conversation!" +msgstr "" + +#: src/components/AccountList.tsx:68 +msgid "Sign in to account that is not listed" +msgstr "" + +#: src/components/dialogs/Signin.tsx:46 +msgid "Sign in to Bluesky or create a new account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 +#: src/screens/SignupQueued.tsx:93 +#: src/screens/SignupQueued.tsx:96 +#: src/screens/Takendown.tsx:85 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 +msgid "Sign out" +msgstr "" + +#: src/screens/Takendown.tsx:88 +msgid "Sign Out" +msgstr "" + +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 +msgid "Sign out?" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:91 +#: src/lib/moderation/useGlobalLabelStrings.ts:28 +msgid "Sign-in Required" +msgstr "" + +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 +msgid "Signed in as @{0}" +msgstr "" + +#: src/components/FeedInterstitials.tsx:389 +msgid "Similar accounts" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:201 +msgid "Skip" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:228 +msgid "Skip this flow" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:167 +msgid "Smaller" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 +msgid "Snoozes the reminder" +msgstr "" + +#: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:100 +msgid "Software Dev" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:120 +msgid "Some of your verifications are invalid." +msgstr "" + +#: src/components/FeedInterstitials.tsx:529 +msgid "Some other feeds you might like" +msgstr "" + +#: src/components/WhoCanReply.tsx:80 +msgid "Some people can reply" +msgstr "" + +#: src/components/dms/MessageItem.tsx:148 +msgid "Someone reacted {0}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:241 +msgid "Someone reacted {0} to {1}" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:76 +msgid "Something wasn't quite right with the data you're trying to report. Please contact support." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:144 +msgid "Something went wrong" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 +#: src/components/moderation/ReportDialog/index.tsx:223 +#: src/screens/Deactivated.tsx:94 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 +msgid "Something went wrong, please try again" +msgstr "" + +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 +msgid "Something went wrong, please try again." +msgstr "" + +#: src/components/Lists.tsx:175 +msgid "Something went wrong!" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:178 +msgid "Something went wrong. Please try again." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +msgid "Something wrong? Let us know." +msgstr "" + +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 +msgid "Sorry! Your session expired. Please sign in again." +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 +msgid "Sort replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 +msgid "Sort replies by" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 +msgid "Sort replies to the same post by:" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:178 +#: src/components/moderation/ModerationDetailsDialog.tsx:186 +msgid "Source: <0>{sourceName}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:72 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:85 +#: src/lib/moderation/useReportOptions.ts:72 +#: src/lib/moderation/useReportOptions.ts:85 +msgid "Spam" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:55 +#: src/lib/moderation/useReportOptions.ts:55 +msgid "Spam; excessive mentions or replies" +msgstr "" + +#: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:113 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 +msgid "Sports" +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 +msgid "Start a conversation, and it will appear here." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:74 +msgid "Start a new chat" +msgstr "" + +#: src/view/screens/ProfileList.tsx:846 +#: src/view/screens/ProfileList.tsx:967 +msgid "Start adding people" +msgstr "" + +#: src/view/screens/ProfileList.tsx:853 +#: src/view/screens/ProfileList.tsx:974 +msgid "Start adding people!" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:382 +msgid "Start chat with {displayName}" +msgstr "" + +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 +msgid "Starter Pack" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:90 +msgid "Starter pack by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 +msgid "Starter pack by <0/>" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:89 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:731 +msgid "Starter pack is invalid" +msgstr "" + +#: src/screens/Search/Explore.tsx:628 +#: src/view/screens/Profile.tsx:231 +msgid "Starter Packs" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:266 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:100 +#: src/screens/Settings/AboutSettings.tsx:103 +msgid "Status Page" +msgstr "" + +#: src/screens/Signup/index.tsx:163 +msgid "Step {0} of {1}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:393 +msgid "Storage cleared, you need to restart the app now." +msgstr "" + +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 +msgid "Storybook" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 +#: src/components/moderation/LabelsOnMeDialog.tsx:324 +#: src/components/moderation/LabelsOnMeDialog.tsx:325 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 +msgid "Submit" +msgstr "" + +#: src/screens/Takendown.tsx:70 +msgid "Submit appeal" +msgstr "" + +#: src/screens/Takendown.tsx:76 +msgid "Submit Appeal" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 +msgid "Submit report" +msgstr "" + +#: src/view/screens/ProfileList.tsx:741 +msgid "Subscribe" +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:231 +msgid "Subscribe to @{0} to use these labels:" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 +msgid "Subscribe to Labeler" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201 +msgid "Subscribe to this labeler" +msgstr "" + +#: src/view/screens/ProfileList.tsx:737 +msgid "Subscribe to this list" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:286 +msgid "Success!" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:36 +msgid "Successfully verified" +msgstr "" + +#: src/screens/Search/Explore.tsx:357 +msgid "Suggested Accounts" +msgstr "" + +#: src/components/FeedInterstitials.tsx:391 +msgid "Suggested for you" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:144 +#: src/view/com/composer/labels/LabelsBtn.tsx:147 +msgid "Suggestive" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 +msgctxt "Name of app icon variant" +msgid "Sunrise" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 +msgctxt "Name of app icon variant" +msgid "Sunset" +msgstr "" + +#: src/Navigation.tsx:325 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 +msgid "Support" +msgstr "" + +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 +msgid "Switch account" +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 +msgid "Switch Account" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:109 +msgid "Switch accounts" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:293 +msgid "Switch to {0}" +msgstr "" + +#: src/components/dialogs/Embed.tsx:157 +#: src/components/dialogs/Embed.tsx:159 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 +msgid "System" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:107 +#: src/screens/Settings/AboutSettings.tsx:110 +#: src/screens/Settings/Settings.tsx:441 +msgid "System log" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:282 +msgid "Tags only" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:54 +#: src/components/ContextMenu/Backdrop.ios.tsx:80 +#: src/components/ContextMenu/Backdrop.tsx:46 +msgid "Tap to close context menu" +msgstr "" + +#: src/components/ProgressGuide/Toast.tsx:156 +msgid "Tap to dismiss" +msgstr "" + +#: src/state/shell/progress-guide.tsx:233 +msgid "Task complete - 10 follows!" +msgstr "" + +#: src/state/shell/progress-guide.tsx:223 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:64 +msgid "Teach our algorithm what you like" +msgstr "" + +#: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:114 +msgid "Tech" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:35 +msgid "Tell a joke!" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:377 +msgid "Tell us a bit about yourself" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:69 +msgid "Tell us a little more" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:116 +#: src/view/shell/desktop/RightNav.tsx:117 +msgid "Terms" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 +#: src/screens/Settings/AboutSettings.tsx:84 +#: src/screens/Settings/AboutSettings.tsx:87 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 +msgid "Terms of Service" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:60 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:99 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:107 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 +#: src/lib/moderation/useReportOptions.ts:60 +#: src/lib/moderation/useReportOptions.ts:99 +#: src/lib/moderation/useReportOptions.ts:107 +#: src/lib/moderation/useReportOptions.ts:115 +msgid "Terms used violate community standards" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:266 +msgid "Text & tags" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:229 +msgid "Text field" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:288 +#: src/screens/Messages/components/ChatDisabled.tsx:108 +msgid "Text input field" +msgstr "" + +#: src/view/com/posts/ShowLessFollowup.tsx:39 +msgid "Thank you for your feedback! It has been sent to the feed operator." +msgstr "" + +#: src/components/ReportDialog/SubmitView.tsx:83 +msgid "Thank you. Your report has been sent." +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:487 +msgid "That contains the following:" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:110 +#: src/screens/StarterPack/StarterPackScreen.tsx:111 +#: src/screens/StarterPack/StarterPackScreen.tsx:155 +#: src/screens/StarterPack/StarterPackScreen.tsx:156 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 +msgid "That starter pack could not be found." +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:132 +msgid "That's all, folks!" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1114 +msgid "That's everything!" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 +#: src/view/com/profile/ProfileMenu.tsx:461 +msgid "The account will be able to interact with you after unblocking." +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:41 +#: src/screens/Settings/AppIconSettings/index.tsx:222 +msgid "The app will be restarted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:119 +#: src/lib/moderation/useModerationCauseDescription.ts:128 +msgid "The author of this thread has hidden this reply." +msgstr "" + +#: src/screens/Moderation/index.tsx:407 +msgid "The Bluesky web application" +msgstr "" + +#: src/view/screens/CommunityGuidelines.tsx:38 +msgid "The Community Guidelines have been moved to <0/>" +msgstr "" + +#: src/view/screens/CopyrightPolicy.tsx:35 +msgid "The Copyright Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:102 +msgid "The Discover feed" +msgstr "" + +#: src/state/shell/progress-guide.tsx:224 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 +msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:67 +msgid "The feed has been replaced with Discover." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:59 +msgid "The following labels were applied to your account." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:60 +msgid "The following labels were applied to your content." +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:42 +msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 +msgid "The post may have been deleted." +msgstr "" + +#: src/view/screens/PrivacyPolicy.tsx:35 +msgid "The Privacy Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:40 +#: src/lib/strings/errors.ts:18 +msgid "The server appears to be experiencing issues. Please try again in a few moments." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:741 +msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." +msgstr "" + +#: src/components/ContextMenu/index.tsx:433 +msgid "The subject of the context menu" +msgstr "" + +#: src/view/screens/Support.tsx:37 +msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." +msgstr "" + +#: src/view/screens/TermsOfService.tsx:35 +msgid "The Terms of Service have been moved to" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 +msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:154 +msgid "Theme" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 +msgid "There is no time limit for account deactivation, come back any time." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:227 +msgid "There was an issue connecting to Tenor." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/view/screens/ProfileList.tsx:375 +#: src/view/screens/ProfileList.tsx:394 +#: src/view/screens/SavedFeeds.tsx:93 +msgid "There was an issue contacting the server" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:418 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:130 +msgid "There was an issue fetching notifications. Tap here to try again." +msgstr "" + +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 +msgid "There was an issue fetching posts. Tap here to try again." +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:151 +msgid "There was an issue fetching the list. Tap here to try again." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:60 +msgid "There was an issue fetching your app passwords" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:151 +#: src/view/com/lists/ProfileLists.tsx:150 +msgid "There was an issue fetching your lists. Tap here to try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:107 +msgid "There was an issue fetching your service info" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:259 +#: src/components/ReportDialog/SubmitView.tsx:88 +msgid "There was an issue sending your report. Please check your internet connection." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101 +#: src/view/com/profile/ProfileMenu.tsx:128 +#: src/view/com/profile/ProfileMenu.tsx:138 +#: src/view/com/profile/ProfileMenu.tsx:152 +#: src/view/com/profile/ProfileMenu.tsx:162 +#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/view/com/profile/ProfileMenu.tsx:187 +msgid "There was an issue! {0}" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 +#: src/screens/List/ListHiddenScreen.tsx:63 +#: src/screens/List/ListHiddenScreen.tsx:77 +#: src/screens/List/ListHiddenScreen.tsx:99 +#: src/view/screens/ProfileList.tsx:411 +#: src/view/screens/ProfileList.tsx:429 +#: src/view/screens/ProfileList.tsx:447 +#: src/view/screens/ProfileList.tsx:465 +msgid "There was an issue. Please check your internet connection and try again." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 +msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" +msgstr "" + +#: src/screens/SignupQueued.tsx:130 +msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 +msgid "These settings only apply to the Following feed." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:111 +msgid "This {screenDescription} has been flagged:" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:87 +msgid "This account has a checkmark because it's been verified by trusted sources." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:92 +msgid "This account has one or more attempted verifications, but it is not currently verified." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:106 +msgid "This account has requested that users sign in to view their profile." +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:34 +msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:55 +msgid "This action can be undone at any time." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:271 +msgid "This appeal will be sent to <0>{sourceName}." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:104 +msgid "This appeal will be sent to Bluesky's moderation service." +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:18 +msgid "This chat was disconnected" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:19 +msgid "This content has been hidden by the moderators." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:24 +msgid "This content has received a general warning from moderators." +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:63 +msgid "This content is hosted by {0}. Do you want to enable external media?" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:84 +#: src/lib/moderation/useModerationCauseDescription.ts:84 +msgid "This content is not available because one of the users involved has blocked the other." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 +msgid "This content is not viewable without a Bluesky account." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:362 +msgid "This conversation is with a deleted or a deactivated account. Press for options" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:156 +msgid "This email is already associated with your account." +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:96 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:49 +msgid "This feature is not available while using an app password. Please sign in with your main password." +msgstr "" + +#: src/lib/strings/errors.ts:21 +msgid "This feature is not available while using an App Password. Please sign in with your main password." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 +msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:38 +msgid "This feed is empty! You may need to follow more users or tune your language settings." +msgstr "" + +#: src/components/StarterPack/Main/PostsList.tsx:36 +#: src/screens/Profile/ProfileFeed/index.tsx:192 +#: src/view/screens/ProfileList.tsx:843 +msgid "This feed is empty." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:99 +msgid "This feed is no longer online. We are showing <0>Discover instead." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:593 +msgid "This handle is reserved. Please try a different one." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:41 +msgid "This information is not shared with other users." +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:189 +#: src/components/live/GoLiveDialog.tsx:160 +msgid "This is not a valid link" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:168 +msgid "This label was applied by the author." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:165 +msgid "This label was applied by you." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:218 +msgid "This labeler hasn't declared what labels it publishes, and may not be active." +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:79 +msgid "This link is taking you to the following website:" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:151 +msgid "This list – created by <0>{0} – contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:146 +msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/view/screens/ProfileList.tsx:962 +msgid "This list is empty." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:40 +msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 +msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." +msgstr "" + +#: src/components/WhoCanReply.tsx:240 +msgid "This post has an unknown type of threadgate on it. Your app may be out of date." +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:171 +msgid "This post has been deleted." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 +msgid "This post will be hidden from feeds and threads. This cannot be undone." +msgstr "" + +#: src/view/com/composer/Composer.tsx:463 +msgid "This post's author has disabled quote posts." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:482 +msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 +msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:66 +msgid "This service has not provided terms of service or a privacy policy." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:456 +msgid "This should create a domain record at:" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:93 +msgid "This user does not have a display name, and therefore cannot be verified." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:95 +msgid "This user doesn't have any followers." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:68 +msgid "This user has blocked you" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:79 +#: src/lib/moderation/useModerationCauseDescription.ts:75 +msgid "This user has blocked you. You cannot view their content." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:30 +msgid "This user has requested that their content only be shown to signed-in users." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:59 +msgid "This user is included in the <0>{0} list which you have blocked." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:91 +msgid "This user is included in the <0>{0} list which you have muted." +msgstr "" + +#: src/components/NewskieDialog.tsx:65 +msgid "This user is new here. Press for more info about when they joined." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:95 +msgid "This user isn't following anyone." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:435 +msgid "This will delete \"{0}\" from your muted words. You can always add it back later." +msgstr "" + +#: src/screens/Settings/Settings.tsx:656 +msgid "This will remove @{0} from the quick access list." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 +msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 +msgid "Thread options" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:68 +#: src/screens/Settings/ContentAndMediaSettings.tsx:71 +msgid "Thread preferences" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 +msgid "Thread Preferences" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 +msgid "Threaded" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:276 +msgid "Threaded mode" +msgstr "" + +#: src/Navigation.tsx:368 +msgid "Threads Preferences" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 +msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:99 +msgid "To disable the email 2FA method, please verify your access to the email address." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215 +msgid "To disable your email 2FA method, please verify your access to <0>{0}" +msgstr "" + +#: src/components/dms/ReportConversationPrompt.tsx:19 +msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." +msgstr "" + +#: src/components/ReportDialog/SelectLabelerView.tsx:31 +msgid "To whom would you like to send this report?" +msgstr "" + +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:263 +msgid "Toggle dropdown" +msgstr "" + +#: src/screens/Moderation/index.tsx:384 +msgid "Toggle to enable or disable adult content" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 +msgid "Toggles the sound" +msgstr "" + +#: src/screens/Hashtag.tsx:84 +#: src/screens/Search/SearchResults.tsx:47 +#: src/screens/Topic.tsx:71 +msgid "Top" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:543 +msgid "Topic" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 +msgid "Translate" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "" + +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 +msgid "Trending" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending Videos" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138 +msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." +msgstr "" + +#: src/view/com/util/error/ErrorScreen.tsx:103 +msgctxt "action" +msgid "Try again" +msgstr "" + +#: src/screens/Onboarding/state.ts:115 +msgid "TV" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 +msgid "Two-factor authentication (2FA)" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:153 +msgid "Type your message here" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:432 +msgid "Type:" +msgstr "" + +#: src/lib/hooks/useCleanError.ts:27 +#: src/lib/strings/errors.ts:11 +msgid "Unable to connect. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:79 +#: src/screens/Login/LoginForm.tsx:169 +#: src/screens/Login/SetNewPasswordForm.tsx:81 +#: src/screens/Signup/index.tsx:76 +#: src/view/com/modals/ChangePassword.tsx:71 +#: src/view/com/modals/ChangePassword.tsx:117 +msgid "Unable to contact your service. Please check your Internet connection." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:673 +msgid "Unable to delete" +msgstr "" + +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:97 +#: src/components/dms/MessagesListBlockedFooter.tsx:104 +#: src/components/dms/MessagesListBlockedFooter.tsx:112 +#: src/components/dms/MessagesListBlockedFooter.tsx:119 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:473 +#: src/view/screens/ProfileList.tsx:723 +msgid "Unblock" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +msgctxt "action" +msgid "Unblock" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:247 +#: src/components/dms/ConvoMenu.tsx:250 +#: src/view/com/profile/ProfileMenu.tsx:383 +#: src/view/com/profile/ProfileMenu.tsx:389 +msgid "Unblock account" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 +#: src/view/com/profile/ProfileMenu.tsx:455 +msgid "Unblock Account?" +msgstr "" + +#: src/view/screens/ProfileList.tsx:620 +msgid "Unblock list" +msgstr "" + +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 +msgid "Undo repost" +msgstr "" + +#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun +#: src/components/PostControls/RepostButton.tsx:66 +msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#: src/view/com/profile/FollowButton.tsx:63 +msgctxt "action" +msgid "Unfollow" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +msgid "Unfollow {0}" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:283 +#: src/view/com/profile/ProfileMenu.tsx:293 +msgid "Unfollow account" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:831 +msgid "Unfollows the user" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:372 +msgid "Unfortunately, none of your subscribed labelers supports this report type." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:206 +msgid "Unknown verifier" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:518 +msgid "Unlike" +msgstr "" + +#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun +#: src/components/PostControls/index.tsx:243 +msgid "Unlike ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +msgctxt "video" +msgid "Unmute" +msgstr "" + +#: src/view/screens/ProfileList.tsx:730 +msgid "Unmute" +msgstr "" + +#: src/components/RichTextTag.tsx:140 +#: src/components/RichTextTag.tsx:153 +msgid "Unmute {tag}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 +#: src/view/com/profile/ProfileMenu.tsx:362 +#: src/view/com/profile/ProfileMenu.tsx:368 +msgid "Unmute account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:236 +msgid "Unmute conversation" +msgstr "" + +#: src/view/screens/ProfileList.tsx:605 +msgid "Unmute list" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 +msgid "Unmute thread" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 +msgid "Unmute video" +msgstr "" + +#: src/view/screens/ProfileList.tsx:714 +msgid "Unpin" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:530 +msgid "Unpin feed" +msgstr "" + +#: src/components/FeedCard.tsx:320 +msgid "Unpin Feed" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:310 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +msgid "Unpin from home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 +msgid "Unpin from profile" +msgstr "" + +#: src/view/screens/ProfileList.tsx:585 +msgid "Unpin moderation list" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:163 +msgid "Unpinned {0} from Home" +msgstr "" + +#: src/view/screens/ProfileList.tsx:362 +msgid "Unpinned from your feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 +msgid "Unsnooze email reminder" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233 +msgid "Unsubscribe" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:198 +#: src/screens/List/ListHiddenScreen.tsx:208 +msgid "Unsubscribe from list" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200 +msgid "Unsubscribe from this labeler" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:86 +msgid "Unsubscribed from list" +msgstr "" + +#: src/view/com/composer/Composer.tsx:814 +msgid "Unsupported video type" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:48 +msgid "Unsupported video type: {0}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:77 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:90 +#: src/lib/moderation/useReportOptions.ts:77 +#: src/lib/moderation/useReportOptions.ts:90 +msgid "Unwanted Sexual Content" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:58 +#: src/screens/Settings/components/OTAInfo.tsx:74 +msgid "Update" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:312 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 +msgid "Update email" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:526 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:547 +msgid "Update to {domain}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:203 +msgid "Update your email" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +msgctxt "toast" +msgid "Updating quote attachment failed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 +msgctxt "toast" +msgid "Updating reply visibility failed" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:194 +msgid "Updating..." +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:288 +msgid "Upload a photo instead" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:472 +msgid "Upload a text file to:" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 +#: src/view/com/util/UserBanner.tsx:157 +#: src/view/com/util/UserBanner.tsx:160 +msgid "Upload from Camera" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:486 +#: src/view/com/util/UserBanner.tsx:174 +msgid "Upload from Files" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 +#: src/view/com/util/UserBanner.tsx:168 +#: src/view/com/util/UserBanner.tsx:172 +msgid "Upload from Library" +msgstr "" + +#: src/lib/api/index.ts:302 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1737 +msgid "Uploading video..." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:67 +msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:558 +msgid "Use default provider" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:77 +#: src/components/dialogs/InAppBrowserConsent.tsx:83 +msgid "Use in-app browser" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:102 +#: src/screens/Settings/ContentAndMediaSettings.tsx:108 +msgid "Use in-app browser to open links" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:87 +#: src/components/dialogs/InAppBrowserConsent.tsx:93 +msgid "Use my default browser" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:53 +msgid "Use recommended" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:190 +msgid "Use this to sign in to the other app along with your handle." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:201 +msgid "Used by:" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:324 +msgctxt "toast" +msgid "User blocked" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:71 +#: src/lib/moderation/useModerationCauseDescription.ts:63 +msgid "User Blocked" +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:55 +msgid "User Blocked by \"{0}\"" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:27 +msgid "User blocked by list" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:57 +msgid "User Blocked by List" +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:73 +msgid "User Blocking You" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:77 +msgid "User Blocks You" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:214 +msgid "User list by {0}" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +msgid "User list by you" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:174 +msgctxt "toast" +msgid "User list created" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:160 +msgctxt "toast" +msgid "User list updated" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:201 +msgid "Username or email address" +msgstr "" + +#: src/components/WhoCanReply.tsx:303 +msgid "users followed by <0>@{0}" +msgstr "" + +#: src/components/WhoCanReply.tsx:290 +msgid "users following <0>@{0}" +msgstr "" + +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 +msgid "Users I follow" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 +msgid "Users in \"{0}\"" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 +msgid "Users you follow" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:438 +msgid "Value:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:39 +msgid "Verification failed, please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:297 +msgid "Verification settings" +msgstr "" + +#: src/Navigation.tsx:205 +#: src/screens/Moderation/VerificationSettings.tsx:32 +msgid "Verification Settings" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:41 +msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:103 +msgid "Verified by:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:84 +#: src/components/verification/VerificationCreatePrompt.tsx:86 +#: src/view/com/profile/ProfileMenu.tsx:346 +#: src/view/com/profile/ProfileMenu.tsx:349 +msgid "Verify account" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" +msgid "Verify code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:528 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:549 +msgid "Verify DNS Record" +msgstr "" + +#. Dialog title when a user is verifying their email address by entering a code they have been sent +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 +msgid "Verify email code" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 +msgid "Verify email dialog" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:529 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:551 +msgid "Verify Text File" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:51 +msgid "Verify this account?" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 +msgid "Verify your email" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:126 +#: src/screens/Settings/AboutSettings.tsx:155 +msgid "Version {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 +msgid "Video" +msgstr "" + +#: src/view/com/composer/state/video.ts:358 +msgid "Video failed to process" +msgstr "" + +#: src/Navigation.tsx:599 +msgid "Video Feed" +msgstr "" + +#: src/components/VideoPostCard.tsx:122 +msgid "Video from {0}: {text}" +msgstr "" + +#: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:103 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237 +msgid "Video Games" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1072 +msgid "Video is paused" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1072 +msgid "Video is playing" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 +msgid "Video not found." +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:98 +msgid "Video settings" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1747 +msgid "Video uploaded" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +msgid "Video: {0}" +msgstr "" + +#: src/view/screens/Profile.tsx:228 +msgid "Videos" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:42 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:55 +msgid "Videos must be less than 3 minutes long" +msgstr "" + +#: src/screens/Profile/Header/Shell.tsx:211 +msgid "View {0}'s avatar" +msgstr "" + +#: src/components/ProfileCard.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Search/components/SearchProfileCard.tsx:36 +#: src/screens/VideoFeed/index.tsx:790 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 +msgid "View {0}'s profile" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:181 +msgid "View {displayName}'s profile" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:480 +msgid "View blocked user's profile" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:100 +msgid "View blogpost for more details" +msgstr "" + +#: src/view/screens/Log.tsx:57 +msgid "View debug entry" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:137 +#: src/screens/VideoFeed/index.tsx:656 +#: src/screens/VideoFeed/index.tsx:674 +msgid "View details" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:132 +msgid "View details for reporting a copyright violation" +msgstr "" + +#: src/view/com/posts/ViewFullThread.tsx:59 +msgid "View full thread" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:46 +msgid "View information about these labels" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 +msgid "View more" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 +#: src/view/com/util/PostMeta.tsx:91 +#: src/view/com/util/PostMeta.tsx:128 +msgid "View profile" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 +msgid "View the avatar" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:164 +msgid "View the labeling service provided by @{0}" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:99 +msgid "View this user's verifications" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:489 +msgid "View users who like this feed" +msgstr "" + +#: src/components/VideoPostCard.tsx:399 +msgid "View video" +msgstr "" + +#: src/screens/Moderation/index.tsx:277 +msgid "View your blocked accounts" +msgstr "" + +#: src/screens/Moderation/index.tsx:217 +msgid "View your default post interaction settings" +msgstr "" + +#: src/view/com/home/HomeHeaderLayout.web.tsx:56 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 +msgid "View your feeds and explore more" +msgstr "" + +#: src/screens/Moderation/index.tsx:247 +msgid "View your moderation lists" +msgstr "" + +#: src/screens/Moderation/index.tsx:262 +msgid "View your muted accounts" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:98 +msgid "View your verifications" +msgstr "" + +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 +msgid "Views full image" +msgstr "" + +#: src/components/VideoPostCard.tsx:121 +msgid "Views video in immersive mode" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "" + +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 +msgid "Volume" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:142 +#: src/lib/moderation/useLabelBehaviorDescription.ts:17 +#: src/lib/moderation/useLabelBehaviorDescription.ts:22 +msgid "Warn" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:48 +msgid "Warn content" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:46 +msgid "Warn content and filter from feeds" +msgstr "" + +#: src/components/live/LiveStatusDialog.tsx:156 +#: src/components/live/LiveStatusDialog.tsx:169 +msgid "Watch now" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "" + +#: src/screens/Hashtag.tsx:205 +msgid "We couldn't find any results for that hashtag." +msgstr "" + +#: src/screens/Topic.tsx:178 +msgid "We couldn't find any results for that topic." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:145 +msgid "We couldn't load this conversation" +msgstr "" + +#: src/screens/SignupQueued.tsx:160 +msgid "We estimate {estimatedTime} until your account is ready." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 +msgid "We have sent another verification email to <0>{0}." +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:256 +msgid "We hope you have a wonderful time. Remember, Bluesky is:" +msgstr "" + +#: src/view/com/posts/DiscoverFallbackHeader.tsx:29 +msgid "We ran out of posts from your follows. Here's the latest from <0/>." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:154 +msgid "We recommend selecting at least two interests." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 +msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/view/com/composer/state/video.ts:419 +msgid "We were unable to determine if you are allowed to upload videos. Please try again." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:52 +msgid "We were unable to load your birth date preferences. Please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:464 +msgid "We were unable to load your configured labelers at this time." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:129 +msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." +msgstr "" + +#: src/screens/SignupQueued.tsx:164 +msgid "We will let you know when your account is ready." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 +msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:134 +msgid "We'll use this to help customize your experience." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:107 +#: src/components/ProgressGuide/FollowDialog.tsx:172 +msgid "We're having network issues, try again" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 +msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." +msgstr "" + +#: src/screens/Signup/index.tsx:123 +msgid "We're so excited to have you join us!" +msgstr "" + +#: src/view/screens/ProfileList.tsx:117 +msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:378 +msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:285 +msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." +msgstr "" + +#: src/view/com/composer/Composer.tsx:460 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + +#: src/components/Lists.tsx:195 +#: src/view/screens/NotFound.tsx:50 +msgid "We're sorry! We can't find the page you were looking for." +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343 +msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + +#: src/screens/Deactivated.tsx:125 +msgid "Welcome back!" +msgstr "" + +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:126 +msgid "What are your interests?" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:41 +msgid "What do you want to call your starter pack?" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:38 +#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/composer/Composer.tsx:777 +msgid "What's up?" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146 +msgid "When you tap on a check, you’ll see which organizations have granted verification." +msgstr "" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80 +msgid "Which languages are used in this post?" +msgstr "" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:79 +msgid "Which languages would you like to see in your algorithmic feeds?" +msgstr "" + +#: src/components/WhoCanReply.tsx:192 +msgid "Who can interact with this post?" +msgstr "" + +#: src/components/WhoCanReply.tsx:97 +msgid "Who can reply" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127 +msgid "Who can verify?" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:79 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 +msgid "Whoops!" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:125 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 +msgid "Whoops! Trending videos failed to load." +msgstr "" + +#: src/screens/Takendown.tsx:173 +msgid "Why are you appealing?" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:42 +msgid "Why should this content be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:32 +#: src/components/ReportDialog/SelectReportOptionView.tsx:55 +msgid "Why should this feed be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:26 +#: src/components/ReportDialog/SelectReportOptionView.tsx:52 +msgid "Why should this list be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:44 +#: src/components/ReportDialog/SelectReportOptionView.tsx:61 +msgid "Why should this message be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:20 +#: src/components/ReportDialog/SelectReportOptionView.tsx:49 +msgid "Why should this post be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:38 +#: src/components/ReportDialog/SelectReportOptionView.tsx:58 +msgid "Why should this starter pack be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:14 +#: src/components/ReportDialog/SelectReportOptionView.tsx:46 +msgid "Why should this user be reviewed?" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:154 +#: src/screens/Messages/components/MessageInput.web.tsx:214 +msgid "Write a message" +msgstr "" + +#: src/view/com/composer/Composer.tsx:872 +msgid "Write post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 +msgid "Write your reply" +msgstr "" + +#: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:116 +msgid "Writers" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:356 +msgid "Wrong DID returned from server. Received: {0}" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:153 +#: src/components/live/GoLiveDialog.tsx:129 +msgid "www.mylivestream.tv" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87 +msgid "Yes" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 +msgid "Yes, deactivate" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:685 +msgid "Yes, delete this starter pack" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 +msgid "Yes, detach" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 +msgid "Yes, hide" +msgstr "" + +#: src/screens/Deactivated.tsx:147 +msgid "Yes, reactivate my account" +msgstr "" + +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "" + +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:59 +msgid "You are a trusted verifier" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:45 +msgid "You are creating an account on" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + +#: src/screens/SignupQueued.tsx:157 +msgid "You are in line." +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:119 +#: src/components/live/EditLiveDialog.tsx:124 +msgid "You are Live" +msgstr "" + +#: src/components/live/queries.ts:211 +msgid "You are no longer live" +msgstr "" + +#: src/components/live/queries.ts:35 +msgid "You are not allowed to go live" +msgstr "" + +#: src/view/com/composer/state/video.ts:412 +msgid "You are not allowed to upload videos." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:94 +msgid "You are not following anyone." +msgstr "" + +#: src/components/live/queries.ts:156 +msgid "You are now live!" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:64 +msgid "You are verified" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:355 +msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:208 +msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:45 +msgid "You can adjust your interests at any time from \"Content and media\" settings." +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 +msgid "You can also discover new Custom Feeds to follow." +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:198 +msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 +msgid "You can continue ongoing conversations regardless of which setting you choose." +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + +#: src/screens/Login/index.tsx:182 +#: src/screens/Login/PasswordUpdatedForm.tsx:26 +msgid "You can now sign in with your new password." +msgstr "" + +#: src/screens/Deactivated.tsx:133 +msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 +msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." +msgstr "" + +#: src/components/interstitials/Trending.tsx:130 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 +msgid "You can update this later from your settings." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:94 +msgid "You do not have any followers." +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:109 +msgid "You don't follow any users who follow @{name}." +msgstr "" + +#: src/screens/Messages/Inbox.tsx:241 +msgid "You don't have any chat requests at the moment." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:67 +msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:145 +msgid "You don't have any pinned feeds." +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:185 +msgid "You don't have any saved feeds." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:273 +msgid "You have blocked the author or you have been blocked by the author." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:66 +msgid "You have blocked this user" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:73 +#: src/lib/moderation/useModerationCauseDescription.ts:57 +#: src/lib/moderation/useModerationCauseDescription.ts:65 +msgid "You have blocked this user. You cannot view their content." +msgstr "" + +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:49 +#: src/screens/Login/SetNewPasswordForm.tsx:95 +#: src/view/com/modals/ChangePassword.tsx:87 +#: src/view/com/modals/ChangePassword.tsx:133 +msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:116 +msgid "You have hidden this post" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:111 +msgid "You have hidden this post." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:104 +#: src/lib/moderation/useModerationCauseDescription.ts:99 +msgid "You have muted this account." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:93 +msgid "You have muted this user" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:301 +msgid "You have no conversations yet. Start one!" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:139 +msgid "You have no feeds." +msgstr "" + +#: src/view/com/lists/MyLists.tsx:81 +#: src/view/com/lists/ProfileLists.tsx:135 +msgid "You have no lists." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:164 +msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:179 +msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." +msgstr "" + +#: src/components/Lists.tsx:58 +msgid "You have reached the end" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187 +msgid "You have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/lib/media/video/upload.shared.ts:56 +msgid "You have temporarily reached the limit for video uploads. Please try again later." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:263 +msgid "You haven't created a starter pack yet!" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:398 +msgid "You haven't muted any words or tags yet" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:118 +#: src/lib/moderation/useModerationCauseDescription.ts:127 +msgid "You hid this reply." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:79 +msgid "You may appeal non-self labels if you feel they were placed in error." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:84 +msgid "You may appeal these labels if you feel they were placed in error." +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:76 +msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}" +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:95 +msgid "You may only add up to 3 feeds" +msgstr "" + +#: src/lib/media/picker.shared.ts:25 +msgid "You may only select up to 4 images" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:136 +msgid "You must be 13 years of age or older to create an account." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:334 +msgid "You must be following at least seven other people to generate a starter pack." +msgstr "" + +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:61 +msgid "You must grant access to your photo library to save a QR code" +msgstr "" + +#: src/components/ReportDialog/SubmitView.tsx:211 +msgid "You must select at least one labeler for a report" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 +msgid "You need to verify your email address before you can enable email 2FA." +msgstr "" + +#: src/screens/Deactivated.tsx:128 +msgid "You previously deactivated @{0}." +msgstr "" + +#: src/screens/Settings/Settings.tsx:404 +msgid "You probably want to restart the app now." +msgstr "" + +#: src/components/dms/MessageItem.tsx:135 +msgid "You reacted {0}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:218 +msgid "You reacted {0} to {1}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 +msgid "You will be signed out of all your accounts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 +msgid "You will no longer receive notifications for this thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 +msgid "You will now receive notifications for this thread" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:108 +msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:154 +msgid "You: {0}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:183 +msgid "You: {defaultEmbeddedContentMessage}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:176 +msgid "You: {short}" +msgstr "" + +#: src/screens/Signup/index.tsx:139 +msgid "You'll follow the suggested users and feeds once you finish creating your account!" +msgstr "" + +#: src/screens/Signup/index.tsx:144 +msgid "You'll follow the suggested users once you finish creating your account!" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:236 +msgid "You'll follow these people and {0} others" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 +msgid "You'll follow these people right away" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 +msgid "You'll stay updated with these feeds" +msgstr "" + +#: src/screens/SignupQueued.tsx:127 +msgid "You're in line" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:253 +msgid "You're ready to go!" +msgstr "" + +#: src/screens/Deactivated.tsx:89 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 +msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:108 +#: src/lib/moderation/useModerationCauseDescription.ts:108 +msgid "You've chosen to hide a word or tag within this post." +msgstr "" + +#: src/state/shell/progress-guide.tsx:234 +msgid "You've found some people to follow" +msgstr "" + +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 +msgid "You've reached the end of your feed! Find some more accounts to follow." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:58 +msgid "You've reached the maximum number of requests allowed. Please try again later." +msgstr "" + +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 +msgid "You've reached your daily limit for video uploads (too many bytes)" +msgstr "" + +#: src/view/com/composer/state/video.ts:427 +msgid "You've reached your daily limit for video uploads (too many videos)" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1123 +msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" +msgstr "" + +#: src/screens/Signup/index.tsx:173 +msgid "Your account" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:84 +msgid "Your account has been deleted" +msgstr "" + +#: src/screens/Takendown.tsx:146 +msgid "Your account has been suspended" +msgstr "" + +#: src/view/com/composer/state/video.ts:431 +msgid "Your account is not yet old enough to upload videos. Please try again later." +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:67 +msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." +msgstr "" + +#: src/screens/Takendown.tsx:214 +msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error." +msgstr "" + +#: src/screens/Takendown.tsx:154 +msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:261 +msgid "Your birth date" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 +msgid "Your browser does not support the video format. Please try a different browser." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:25 +msgid "Your chats have been disabled" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:69 +msgid "Your choice will be remembered for future links. You can change it at any time in settings." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:513 +msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:51 +#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/StepInfo/index.tsx:101 +#: src/view/com/modals/ChangePassword.tsx:55 +msgid "Your email appears to be invalid." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65 +msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." +msgstr "" + +#: src/state/shell/progress-guide.tsx:213 +msgid "Your first like!" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 +msgid "Your followers" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:43 +msgid "Your following feed is empty! Follow more users to see what's happening." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:240 +msgid "Your full handle will be <0>@{0}" +msgstr "" + +#: src/Navigation.tsx:515 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:67 +#: src/screens/Settings/ContentAndMediaSettings.tsx:92 +#: src/screens/Settings/ContentAndMediaSettings.tsx:95 +#: src/screens/Settings/InterestsSettings.tsx:42 +msgid "Your interests" +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:123 +msgctxt "toast" +msgid "Your interests have been updated!" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:94 +msgid "Your interests help us find what you like!" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:369 +msgid "Your muted words" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:169 +msgid "Your password has been changed successfully!" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:130 +msgid "Your password must be at least 8 characters long." +msgstr "" + +#: src/view/com/composer/Composer.tsx:522 +msgid "Your post has been published" +msgstr "" + +#: src/view/com/composer/Composer.tsx:519 +msgid "Your posts have been published" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:268 +msgid "Your posts, likes, and blocks are public. Mutes are private." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 +msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "" + +#: src/view/com/composer/Composer.tsx:521 +msgid "Your reply has been published" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:394 +msgid "Your report will be sent to <0>{0}." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:200 +msgid "Your report will be sent to the Bluesky Moderation Service" +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:56 +msgid "Your selected interests help us serve you content you care about." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:65 +msgid "Your verifications" +msgstr "" + diff --git a/src/locale/locales/km/messages.po b/src/locale/locales/km/messages.po index 723c987bdb..7632572447 100644 --- a/src/locale/locales/km/messages.po +++ b/src/locale/locales/km/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: km\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: Khmer\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -27,7 +27,7 @@ msgstr "" msgid "(contains embedded content)" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(គ្មានអ៊ីមែល)" @@ -79,9 +79,9 @@ msgstr "" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -90,17 +90,18 @@ msgstr "" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {អ្នកតាម} other {អ្នកតាម}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {អ្នកកំពុងតាម} other {អ្នកកំពុងតាម}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "" @@ -108,11 +109,13 @@ msgstr "" msgid "{0, plural, one {post} other {posts}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "" @@ -135,6 +138,10 @@ msgstr "" msgid "{0} <0>in <1>text & tags" msgstr "" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "" @@ -143,11 +150,15 @@ msgstr "" msgid "{0} is not a valid URL" msgstr "" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} បានចូលរួមសប្តាហ៍នេះ" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "" @@ -164,8 +175,16 @@ msgstr "" msgid "{0} reacted {1} to {2}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "" @@ -197,12 +216,12 @@ msgstr "" msgid "{0}s" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "" @@ -214,164 +233,163 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} បានតាមអ្នក" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} តាមអ្នកមកវិញ" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} ចូលចិត្តព័ត៌មានផ្ទាល់ខ្លួនរបស់អ្នក" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} បានចូលចិត្តការបង្ហោះរបស់អ្នក" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} បានបង្ហោះសាររបស់អ្នកឡើងវិញ" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} បានចុះឈ្មោះជាមួយកញ្ចប់ចាប់ផ្តើមរបស់អ្នក" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} បានតាមអ្នក" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} តាមអ្នកមកវិញ" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} ចូលចិត្តព័ត៌មានផ្ទាល់ខ្លួនរបស់អ្នក" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} បានចូលចិត្តការបង្ហោះរបស់អ្នក" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} បានបង្ហោះសាររបស់អ្នកឡើងវិញ" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} បានចុះឈ្មោះជាមួយកញ្ចប់ចាប់ផ្តើមរបស់អ្នក" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} កំពុងតាម" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "{handle} មិនអាចផ្ញើសារបានទេ" @@ -392,7 +410,7 @@ msgstr "" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -432,12 +450,12 @@ msgstr "" msgid "+{computedTotal}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {អ្នកតាម} other {អ្នក msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {អ្នកកំពុងតាម} other {អ្នកកំពុងតាម}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "\"<0>{0} និង<1> <2>{1} ត្រូវបានរួមបញ្ចូលនៅក្នុងកញ្ចប់ចាប់ផ្តើមរបស់អ្នក" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} ត្រូវបានរួមបញ្ចូលនៅក្នុងកញ្ចប់ចាប់ផ្តើមរបស់អ្នក" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "សមាជិក <0>{0}" @@ -466,11 +484,11 @@ msgstr "សមាជិក <0>{0}" msgid "<0>{date} at {time}" msgstr "<0>{date} នៅ {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>ការពិសោធន៍៖ នៅពេលដែលចំណូលចិត្តនេះត្រូវបានបើក អ្នកនឹងទទួលតែការជូនដំណឹងអំពីការឆ្លើយតប និងការដកស្រង់ពីអ្នកប្រើប្រាស់ដែលអ្នកតាមដានប៉ុណ្ណោះ។ យើងនឹងបន្តបន្ថែមការគ្រប់គ្រងបន្ថែមទៀតនៅទីនេះតាមពេលវេលា" +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>អ្នក និង<1> <2>{0} ត្រូវបានរួមបញ្ចូលនៅក្នុងកញ្ចប់ចាប់ផ្តើមរបស់អ្នក" @@ -503,10 +521,14 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "អំពី" @@ -524,25 +546,25 @@ msgstr "" msgid "Accept Request" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "ភាពងាយស្រួល" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "ការកំណត់មានភាពងាយស្រួល" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "គណនី" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "គណនីបានធ្វើតាម" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "គណនីត្រូវបានបិទសំឡេង" msgid "Account Muted by List" msgstr "គណនីត្រូវបានបិទសំឡេងដោយបញ្ជី" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "ជម្រើសគណនី" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "គណនីត្រូវបានដកចេញពីការចូលប្រើរហ័ស" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "គណនី​មិន​បាន​តាម" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "គណនីត្រូវបានបើក" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "បន្ថែម" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "បន្ថែម {0} បន្ថែមទៀតដើម្បីបន្ត" @@ -634,8 +666,8 @@ msgstr "បន្ថែមគណនី" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "បន្ថែមអត្ថបទជំនួស" msgid "Add alt text (optional)" msgstr "បន្ថែមអត្ថបទជំនួស (ជាជម្រើស)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "បន្ថែមគណនីផ្សេងទៀត" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "បន្ថែមប្រកាសមួយទៀត" @@ -670,8 +702,8 @@ msgstr "បន្ថែមពាក្យសម្ងាត់កម្មវិ msgid "Add emoji reaction" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "" @@ -683,7 +715,7 @@ msgstr "" msgid "Add muted words and tags" msgstr "បន្ថែមពាក្យ និងស្លាកដែលបានបិទ" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "បន្ថែមប្រកាសថ្មី" @@ -704,7 +736,7 @@ msgstr "" msgid "Add recommended feeds" msgstr "បន្ថែមមតិព័ត៌មានដែលបានណែនាំ" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "បន្ថែមមតិព័ត៌មានមួយចំនួនទៅកញ្ចប់ចាប់ផ្តើមរបស់អ្នក" @@ -725,10 +757,6 @@ msgstr "បញ្ចូលព័ត៌មាននេះទៅក្នុងម msgid "Add to lists" msgstr "បន្ថែមទៅបញ្ជី" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "បន្ថែមទៅមតិព័ត៌មានរបស់ខ្ញុំ" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "" @@ -738,11 +766,11 @@ msgstr "" msgid "Added to list" msgstr "បានបន្ថែមទៅក្នុងបញ្ជី" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "បន្ថែមទៅមតិព័ត៌មានរបស់ខ្ញុំ" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "" @@ -750,18 +778,18 @@ msgstr "" msgid "Adult" msgstr "មនុស្សពេញវ័យ" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "មាតិកាសម្រាប់មនុស្សពេញវ័យ" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "មាតិកាសម្រាប់មនុស្សពេញវ័យអាចត្រូវបានបើកតាមរយៈគេហទំព័រនៅ <0>bsky.app ប៉ុណ្ណោះ។" -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "មាតិកាសម្រាប់មនុស្សពេញវ័យត្រូវបានបិទ" @@ -770,16 +798,32 @@ msgstr "មាតិកាសម្រាប់មនុស្សពេញវ័ msgid "Adult Content labels" msgstr "ស្លាកមាតិកាសម្រាប់មនុស្សពេញវ័យ" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "កម្រិតខ្ពស់" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "" @@ -793,7 +837,7 @@ msgstr "គណនីទាំងអស់ត្រូវបានតាមដា msgid "All languages" msgstr "" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "មតិព័ត៌មានទាំងអស់ដែលអ្នកបានរក្សាទុក នៅកន្លែងតែមួយ" @@ -802,16 +846,21 @@ msgstr "មតិព័ត៌មានទាំងអស់ដែលអ្នក msgid "Allow access to your direct messages" msgstr "អនុញ្ញាតឱ្យចូលប្រើសារផ្ទាល់របស់អ្នក" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "អនុញ្ញាតឱ្យសារថ្មីពី" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "អនុញ្ញាតឱ្យ quote posts" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "អនុញ្ញាតការឆ្លើយតបពី៖" @@ -828,13 +877,13 @@ msgstr "មានលេខកូដរួចហើយ?" msgid "Already signed in as @{0}" msgstr "បាន​ចូល​ជា @{0} រួច​ហើយ" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ជំនួស" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ជំនួស" msgid "Alt text" msgstr "អត្ថបទជំនួស" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "អត្ថបទជំនួស" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "អត្ថបទជំនួសពិពណ៌នារូបភាពសម្រាប់អ្នកប្រើប្រាស់ពិការភ្នែក និងភ្នែកទាប និងជួយផ្តល់បរិបទដល់មនុស្សគ្រប់គ្នា" @@ -861,27 +910,19 @@ msgstr "" msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "\"អ៊ីមែល​ត្រូវ​បាន​ផ្ញើ​ទៅ {0}។ វា​រួម​បញ្ចូល​ទាំង​កូដ​បញ្ជាក់​ដែល​អ្នក​អាច​បញ្ចូល​ខាងក្រោម" -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "អ៊ីមែលត្រូវបានផ្ញើ! សូមបញ្ចូលលេខកូដបញ្ជាក់ដែលមានក្នុងអ៊ីមែលខាងក្រោម" - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "កំហុសមួយបានកើតឡើង" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "កំហុសមួយបានកើតឡើង" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "កំហុសមួយបានកើតឡើងខណៈពេលកំពុងបង្ហាប់វីដេអូ" -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "" @@ -889,11 +930,11 @@ msgstr "" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុងបង្កើតកញ្ចប់ចាប់ផ្តើមរបស់អ្នក។ ចង់សាកល្បងម្តងទៀតទេ?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុងផ្ទុកវីដេអូ។ សូមព្យាយាមម្តងទៀតនៅពេលក្រោយ" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុងផ្ទុកវីដេអូ។ សូមព្យាយាមម្តងទៀត" @@ -910,7 +951,7 @@ msgstr "កំហុសបានកើតឡើងនៅពេលជ្រើស msgid "An error occurred while trying to follow all" msgstr "កំហុសបានកើតឡើងខណៈពេលព្យាយាមតាមដានទាំងអស់" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "កំហុស​មួយ​បាន​កើត​ឡើង​ពេល​ផ្ទុក​វីដេអូ" @@ -934,8 +975,8 @@ msgstr "បញ្ហាមួយបានកើតឡើងខណៈពេលព #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "កំហុសមិនស្គាល់បានកើតឡើង" msgid "an unknown labeler" msgstr "ស្លាកសញ្ញាមិនស្គាល់" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "ហើយ" @@ -963,10 +1004,14 @@ msgstr "ហើយ" msgid "Animals" msgstr "សត្វ" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "GIF ដែលមានចលនា" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "" @@ -980,7 +1025,13 @@ msgstr "" msgid "Anybody can interact" msgstr "អ្នក​ណា​ក៏​អាច​ធ្វើ​អន្តរកម្ម" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "ឈ្មោះ​ពាក្យ​សម្ងាត់​កម្ម msgid "App password names must be at least 4 characters long" msgstr "ឈ្មោះពាក្យសម្ងាត់កម្មវិធីត្រូវតែមានយ៉ាងហោចណាស់ 4 តួអក្សរ" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "ពាក្យសម្ងាត់កម្មវិធី" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "ពាក្យសម្ងាត់កម្មវិធី" @@ -1053,10 +1104,10 @@ msgstr "" msgid "Appeal this decision" msgstr "ប្តឹងឧទ្ធរណ៍លើការសម្រេចចិត្តនេះ។" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "រូបរាង" @@ -1065,12 +1116,20 @@ msgstr "រូបរាង" msgid "Apply default recommended feeds" msgstr "អនុវត្ត​មតិព័ត៌មាន​ដែល​បាន​ណែនាំ​លំនាំដើម" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "បានរក្សាទុកពី {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "" @@ -1078,7 +1137,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "តើអ្នកប្រាកដថាចង់លុបពាក្យសម្ងាត់កម្មវិធី \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "តើអ្នកប្រាកដថាចង់លុបសារនេះទេ? សារនឹងត្រូវបានលុបសម្រាប់អ្នក ប៉ុន្តែមិនមែនសម្រាប់អ្នកចូលរួមផ្សេងទៀតទេ" @@ -1098,19 +1157,15 @@ msgstr "" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "តើអ្នកប្រាកដថាចង់ចាកចេញពីការសន្ទនានេះទេ? សាររបស់អ្នកនឹងត្រូវបានលុបសម្រាប់អ្នក ប៉ុន្តែមិនមែនសម្រាប់អ្នកចូលរួមផ្សេងទៀតទេ" -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "តើអ្នកប្រាកដទេថាអ្នកចង់លុប {0} ចេញពីព័ត៌មានរបស់អ្នក" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "តើអ្នកប្រាកដថាចង់លុបវាចេញពីមតិព័ត៌មានរបស់អ្នកមែនទេ" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "តើ​អ្នក​ប្រាកដ​ថា​អ្នក​ចង់​បោះបង់​សេចក្តី​ព្រាង​នេះ" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "តើអ្នកប្រាកដថាចង់បោះបង់ការបង្ហោះនេះទេ?" @@ -1131,29 +1186,26 @@ msgstr "សិល្បៈ" msgid "Artistic or non-erotic nudity." msgstr "អាក្រាតកាយបែបសិល្បៈ ឬមិនស្រើបស្រាល" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "យ៉ាងហោចណាស់ 3 តួអក្សរ" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "ជម្រើសលេងដោយស្វ័យប្រវត្តិបានផ្លាស់ទីទៅ <0>ការកំណត់មាតិកា និងមេឌៀ" - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "ចាក់វីដេអូ និង GIFs ដោយស្វ័យប្រវត្តិ" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "ចាក់វីដេអូ និង GIFs ដោយស្វ័យ #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "ត្រឡប់" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "" @@ -1195,28 +1247,44 @@ msgstr "មុននឹងបង្កើតកញ្ចប់ចាប់ផ្ msgid "Before you can accept this chat request, you must first verify your email." msgstr "" +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "ថ្ងៃកំណើត" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "ទប់ស្កាត់" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "ទប់ស្កាត់" msgid "Block account" msgstr "បិទគណនី" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "បិទគណនី?" @@ -1262,20 +1330,20 @@ msgstr "" msgid "Block User" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "រារាំង" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "គណនី​ដែល​បាន​ទប់ស្កាត់" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "គណនី​ដែល​បាន​ទប់ស្កាត់" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "គណនី​ដែល​បាន​ទប់ស្កាត់​មិន​អាច​ឆ្លើយ​តប​ក្នុង​ខ្សែ​ស្រឡាយ​របស់​អ្នក លើក​ឡើង​ពី​អ្នក ឬ​ធ្វើ​អន្តរកម្ម​ជាមួយ​អ្នក" @@ -1284,11 +1352,11 @@ msgstr "គណនី​ដែល​បាន​ទប់ស្កាត់​ម msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "គណនី​ដែល​បាន​ទប់ស្កាត់​មិន​អាច​ឆ្លើយ​តប​ក្នុង​ខ្សែ​ស្រឡាយ​របស់​អ្នក លើក​ឡើង​ពី​អ្នក ឬ​ធ្វើ​អន្តរកម្ម​ជាមួយ​អ្នក។ អ្នកនឹងមិនឃើញខ្លឹមសាររបស់ពួកគេទេ ហើយពួកគេនឹងត្រូវបានរារាំងមិនឱ្យឃើញរបស់អ្នក" -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "ទប់ស្កាត់ post" -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "ការទប់ស្កាត់មិនរារាំងអ្នកដាក់ស្លាកនេះពីការដាក់ស្លាកនៅលើគណនីរបស់អ្នកនោះទេ" @@ -1309,11 +1377,12 @@ msgstr "ប្លុក" msgid "Bluesky" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky មិនអាចបញ្ជាក់ពីភាពត្រឹមត្រូវនៃកាលបរិច្ឆេទដែលបានទាមទារនោះទេ" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1347,6 +1416,14 @@ msgstr "Bluesky នឹងមិនបង្ហាញប្រវត្តិរ msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "" @@ -1368,23 +1445,20 @@ msgstr "រូបភាពព្រិលៗ និងត្រងចេញព msgid "Books" msgstr "សៀវភៅ" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "រកមើលគណនីច្រើនទៀតនៅលើទំព័ររុករក" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "រកមើលព័ត៌មានបន្ថែមនៅលើទំព័ររុករក" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "រកមើលការណែនាំបន្ថែម" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "រកមើលការណែនាំបន្ថែមនៅលើទំព័ររុករក" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "អាជីវកម្ម" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "ដោយ {0}" @@ -1428,15 +1502,23 @@ msgstr "ដោយ {0}" msgid "By <0>{0}" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "តាមរយៈការបង្កើតគណនីមួយ អ្នកយល់ព្រមចំពោះ <0>គោលការណ៍ឯកជនភាព" -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "តាមរយៈការបង្កើតគណនីមួយ អ្នកយល់ព្រមនឹង <0>លក្ខខណ្ឌប្រើប្រាស់ និង <1>គោលការណ៍ឯកជនភាព" -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "តាមរយៈការបង្កើតគណនីមួយ អ្នកយល់ព្រមនឹង <0>លក្ខខណ្ឌប្រើប្រាស់" @@ -1448,14 +1530,17 @@ msgstr "" msgid "Camera" msgstr "កាមេរ៉ា" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "កាមេរ៉ា" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "បោះបង់" @@ -1500,11 +1582,7 @@ msgstr "បោះបង់ការលុបគណនី" msgid "Cancel image crop" msgstr "បោះបង់ការច្រឹបរូបភាព" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "បោះបង់ការកែទម្រង់" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "បោះបង់ការប្រកាសសម្រង់" @@ -1516,14 +1594,10 @@ msgstr "បោះបង់ការបើកដំណើរការឡើងវ msgid "Cancel search" msgstr "បោះបង់ការស្វែងរក" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "បោះបង់ការបើកគេហទំព័រដែលបានភ្ជាប់" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "មិនអាចធ្វើអន្តរកម្មជាមួយអ្នកប្រើប្រាស់ដែលត្រូវបានទប់ស្កាត់បានទេ" @@ -1553,17 +1627,12 @@ msgstr "ផ្លាស់ប្តូររូបតំណាងកម្មវ msgid "Change app language" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "ផ្លាស់ប្តូរអាសយដ្ឋានអ៊ីមែល" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "ផ្លាស់ប្តូរ Handle" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "" @@ -1579,14 +1648,6 @@ msgstr "" msgid "Change report reason" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "ផ្លាស់ប្តូរអ៊ីមែលរបស់អ្នក" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "ផ្លាស់ប្តូរអាសយដ្ឋានអ៊ីមែលរបស់អ្នក" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "" @@ -1596,10 +1657,15 @@ msgstr "" msgid "Changes hosting provider" msgstr "" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "ជជែក" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "បានបិទការជជែក" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "ការកំណត់ការជជែក" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "ការកំណត់ការជជែក" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "បាន​បើក​ការ​ជជែក" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "" @@ -1661,7 +1738,7 @@ msgstr "ពិនិត្យប្រអប់សំបុត្ររបស់ msgid "Choose domain verification method" msgstr "ជ្រើសរើសវិធីសាស្ត្រផ្ទៀងផ្ទាត់ដែន" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "ជ្រើសរើសមតិព័ត៌មាន" @@ -1669,7 +1746,7 @@ msgstr "ជ្រើសរើសមតិព័ត៌មាន" msgid "Choose for me" msgstr "ជ្រើសរើសសម្រាប់ខ្ញុំ" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "ជ្រើសរើសមនុស្ស" @@ -1685,23 +1762,23 @@ msgstr "ជ្រើសរើសពណ៌នេះជារូបតំណាង msgid "Choose your account provider" msgstr "" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "ជ្រើសរើសពាក្យសម្ងាត់របស់អ្នក" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "សម្អាតទិន្នន័យផ្ទុកទាំងអស់" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "សម្អាតទិន្នន័យផ្ទុកទាំងអស់ (ចាប់ផ្តើមឡើងវិញបន្ទាប់ពីនេះ)" @@ -1714,23 +1791,27 @@ msgstr "" msgid "Clear search query" msgstr "ជម្រះសំណួរស្វែងរក" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "ចុចទីនេះ" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "ចុច​ដើម្បី​បិទ​ការ​ប្រកាស​សម្រង់​នៃ​ការ​ប្រកាស​នេះ" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "ចុច​ដើម្បី​បើក​ការ​ប្រកាស​សម្រង់​នៃ​ការ​ប្រកាស​នេះ" @@ -1750,14 +1831,16 @@ msgstr "អាកាសធាតុ" msgid "Clip 🐴 clop 🐴" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "បិទ" @@ -1789,13 +1876,15 @@ msgstr "បិទការជូនដំណឹង" msgid "Close bottom drawer" msgstr "" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "បិទប្រអប់" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "" @@ -1804,7 +1893,7 @@ msgstr "" msgid "Close emoji picker" msgstr "" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "បិទប្រអប់ GIF" @@ -1822,7 +1911,7 @@ msgstr "បិទកម្មវិធីមើលរូបភាព" msgid "Close menu" msgstr "" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "បិទប្រអប់នេះ។" @@ -1830,7 +1919,7 @@ msgstr "បិទប្រអប់នេះ។" msgid "Closes password update alert" msgstr "បិទការជូនដំណឹងអំពីការអាប់ដេតពាក្យសម្ងាត់" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "" @@ -1843,16 +1932,16 @@ msgstr "" msgid "Closes viewer for header image" msgstr "បិទកម្មវិធីមើលសម្រាប់រូបភាពបឋមកថា" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "បង្រួមបញ្ជីអ្នកប្រើប្រាស់" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "បង្រួមបញ្ជីអ្នកប្រើប្រាស់សម្រាប់ការជូនដំណឹងដែលបានផ្តល់ឱ្យ" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "របៀបពណ៌" @@ -1870,7 +1959,8 @@ msgstr "កំប្លែង" msgid "Comics" msgstr "រឿងកំប្លែង" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "គោលការណ៍ណែនាំសហគមន៍" @@ -1879,38 +1969,34 @@ msgstr "គោលការណ៍ណែនាំសហគមន៍" msgid "Complete onboarding and start using your account" msgstr "បញ្ចប់ការបើកដំណើរការ ហើយចាប់ផ្តើមប្រើគណនីរបស់អ្នក" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "បញ្ចប់ការប្រឈម" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "សរសេរអត្ថបទថ្មី" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "សរសេរការឆ្លើយតប" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "កំពុង​បង្ហាប់​វីដេអូ..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "កំណត់រចនាសម្ព័ន្ធការកំណត់តម្រងមាតិកាសម្រាប់ប្រភេទ៖ {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "បានកំណត់រចនាសម្ព័ន្ធនៅក្នុង <0>ការកំណត់កម្រិតមធ្យម" -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "បញ្ជាក់ការកំណត់ភាសាមាតិក msgid "Confirm delete account" msgstr "បញ្ជាក់ការលុបគណនី" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "បញ្ជាក់អាយុរបស់អ្នក៖" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "បញ្ជាក់ថ្ងៃខែឆ្នាំកំណើតរបស់អ្នក។" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "បញ្ជាក់ថ្ងៃខែឆ្នាំកំណើតរ msgid "Confirmation code" msgstr "លេខកូដបញ្ជាក់" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "លេខកូដបញ្ជាក់" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "កំពុងភ្ជាប់..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "ទាក់ទងផ្នែកគាំទ្រ" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "ខ្លឹមសារ និងប្រព័ន្ធផ្សព្វផ្សាយ" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "ខ្លឹមសារ និងប្រព័ន្ធផ្សព្វផ្សាយ" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "ខ្លឹមសារ និងប្រព័ន្ធផ្សព្វផ្សាយ" @@ -1977,7 +2069,8 @@ msgstr "ខ្លឹមសារ និងប្រព័ន្ធផ្សព msgid "Content Blocked" msgstr "មាតិកាត្រូវបានរារាំង" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "តម្រងមាតិកា" @@ -2006,10 +2099,12 @@ msgstr "ការព្រមានអំពីខ្លឹមសារ" msgid "Content warnings" msgstr "ការព្រមានអំពីខ្លឹមសារ" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "ផ្ទាំងខាងក្រោយម៉ឺនុយបរិបទ ចុចដើម្បីបិទម៉ឺនុយ" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "បន្ត" msgid "Continue as {0} (currently signed in)" msgstr "បន្ត​ជា {0} (បច្ចុប្បន្ន​ចូល)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "បន្ត​ខ្សែ..." @@ -2029,6 +2129,10 @@ msgstr "បន្ត​ខ្សែ..." msgid "Continue to next step" msgstr "បន្តទៅជំហានបន្ទាប់" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "ចម្លង" msgid "Copied build version to clipboard" msgstr "បានចម្លងកំណែស្ថាបនាទៅ clipboard" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "" msgid "Copy" msgstr "ចម្លង" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "ចម្លងពាក្យសម្ងាត់កម្មវិធី" @@ -2087,8 +2187,8 @@ msgstr "ចម្លងពាក្យសម្ងាត់កម្មវិធ msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "" @@ -2120,10 +2220,10 @@ msgstr "ចម្លងតំណ" msgid "Copy link to list" msgstr "ចម្លងតំណទៅបញ្ជី" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "ចម្លងតំណទៅប្រកាស" @@ -2136,18 +2236,18 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "ចម្លងអត្ថបទសារ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "ចម្លងអត្ថបទអត្ថបទ" @@ -2159,11 +2259,25 @@ msgstr "ចម្លងកូដ QR" msgid "Copy TXT record value" msgstr "ចម្លងតម្លៃកំណត់ត្រា TXT" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "គោលការណ៍រក្សាសិទ្ធិ" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "មិនអាចបិទការជជែកបានទេ" msgid "Could not process your video" msgstr "មិនអាចដំណើរការវីដេអូរបស់អ្នកបានទេ" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "បង្កើត" @@ -2195,7 +2317,7 @@ msgstr "បង្កើតលេខកូដ QR សម្រាប់កញ្ #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "បង្កើតកញ្ចប់ចាប់ផ្តើម" @@ -2205,21 +2327,22 @@ msgstr "បង្កើតកញ្ចប់ចាប់ផ្តើមសម្ #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "ចុះឈ្មោះ" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "បង្កើតគណនី" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "បង្កើតគណនី" @@ -2241,7 +2364,7 @@ msgstr "បង្កើតមួយផ្សេងទៀត" msgid "Create new account" msgstr "បង្កើតគណនីថ្មី" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "បង្កើតរបាយការណ៍សម្រាប់ {0}" @@ -2268,7 +2391,7 @@ msgstr "" msgid "Customization options" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "ប្ដូរតាមបំណងអ្នកដែលអាចធ្វើអន្តរកម្មជាមួយនឹងការបង្ហោះនេះ" @@ -2278,12 +2401,12 @@ msgstr "" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "ងងឹត" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "ងងឹត" @@ -2292,21 +2415,21 @@ msgstr "ងងឹត" msgid "Dark mode" msgstr "ទម្រង់ងងឹត" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "ស្បែកខ្មៅងងឹត" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "ថ្ងៃខែឆ្នាំកំណើត" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "បិទដំណើរការគណនី" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "ការសម្របសម្រួលបំបាត់កំហុស" @@ -2314,7 +2437,7 @@ msgstr "ការសម្របសម្រួលបំបាត់កំហុ msgid "Debug panel" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "លំនាំដើម" @@ -2322,8 +2445,8 @@ msgstr "លំនាំដើម" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "" msgid "Delete" msgstr "លុប" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "លុបគណនី" @@ -2355,7 +2478,7 @@ msgstr "លុបពាក្យសម្ងាត់កម្មវិធី" msgid "Delete chat" msgstr "" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "លុបកំណត់ត្រាប្រកាសការជជែក" @@ -2370,7 +2493,7 @@ msgstr "" msgid "Delete Conversation" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "លុបពីខ្ញុំ" @@ -2378,11 +2501,11 @@ msgstr "លុបពីខ្ញុំ" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "លុបសារ" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "" @@ -2390,9 +2513,9 @@ msgstr "" msgid "Delete my account" msgstr "លុបសារពីខ្ញុំ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "លុប post" @@ -2409,11 +2532,11 @@ msgstr "លុបកញ្ចប់ចាប់ផ្តើម?" msgid "Delete this list?" msgstr "លុបបញ្ជីនេះ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "លុប post នេះ?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "បានលុប់" @@ -2422,15 +2545,20 @@ msgstr "បានលុប់" msgid "Deleted Account" msgstr "គណនីបានលុប" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "លុប post" #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "ការពិពណ៌នា" @@ -2447,12 +2575,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "អត្ថបទ alt ពិពណ៌នា" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "ផ្ដាច់សម្រង់" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "ផ្ដាច់សម្រង់ post?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "ប្រអប់៖ កែតម្រូវអ្នកដែលអាចធ្វើអន្តរកម្មជាមួយការបង្ហោះនេះ" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "" @@ -2492,27 +2620,27 @@ msgstr "" msgid "Disable Email 2FA" msgstr "បិទអ៊ីមែល 2FA" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "បិទ​រំញ័រ" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "បិទ​ចំណង​ជើង​រង" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "បានបិទ" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "បោះបង់" @@ -2520,11 +2648,11 @@ msgstr "បោះបង់" msgid "Discard changes?" msgstr "បោះបង់ " -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "បោះបង់ការផ្លាស់ប្តូរ?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "បោះបង់ការបង្ហោះ?" @@ -2542,7 +2670,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "ស្វែងរកព័ត៌មានផ្ទាល់ខ្លួនថ្មី" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "ស្វែងរកមតិព័ត៌មានថ្មី" @@ -2550,7 +2678,7 @@ msgstr "ស្វែងរកមតិព័ត៌មានថ្មី" msgid "Dismiss" msgstr "ច្រានចោល" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "ច្រានចោលកំហុស" @@ -2562,26 +2690,26 @@ msgstr "បោះបង់ការណែនាំអំពីការចាប msgid "Dismiss interests" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "បង្ហាញផ្លាកសញ្ញាអក្សរជំនួសធំជាង" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "បង្ហាញឈ្មោះ" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "បង្ហាញឈ្មោះ" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "ឈ្មោះបង្ហាញវែងពេក" @@ -2603,15 +2731,11 @@ msgstr "កុំ​ប្រើ​ពាក្យ​ស្ងាត់​នេ msgid "Does not include nudity." msgstr "មិនរាប់បញ្ចូលភាពអាក្រាតកាយ" -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "មិនចាប់ផ្តើម ឬបញ្ចប់ដោយសហសញ្ញា" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "បានផ្ទៀងផ្ទាត់ Domain" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -2619,6 +2743,15 @@ msgstr "" msgid "Don't see an email? <0>Click here to resend." msgstr "" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "" msgid "Double tap to close the dialog" msgstr "ចុចពីរដងដើម្បីបិទប្រអប់" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "" @@ -2673,7 +2806,7 @@ msgstr "" msgid "Download CAR file" msgstr "" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "ទម្លាក់ដើម្បីបន្ថែមរូបភាព" @@ -2689,18 +2822,10 @@ msgstr "" msgid "e.g. Alice Lastname" msgstr "" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "" - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "" @@ -2725,10 +2850,11 @@ msgstr "" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "" -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "កែសម្រួល" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "កែសម្រួល" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "កែសម្រួលរូបតំណាង" @@ -2749,12 +2875,12 @@ msgstr "កែសម្រួលមតិព័ត៌មាន" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "កែរូបភាព" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "កែសម្រួលការកំណត់អន្តរកម្ម" @@ -2776,33 +2902,33 @@ msgstr "" msgid "Edit Moderation List" msgstr "កែសម្រួលបញ្ជីសម្របសម្រួល" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "កែសម្រួលមតិព័ត៌មានរបស់ខ្ញុំ" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "កែប្រវត្តិរូបរបស់ខ្ញុំ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "កែសម្រួលមនុស្ស" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "កែសម្រួលការកំណត់អន្តរកម្មនៃការបង្ហោះ" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "កែប្រវត្តិរូប" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "កែប្រវត្តិរូប" @@ -2814,19 +2940,11 @@ msgstr "កែសម្រួលកញ្ចប់ចាប់ផ្តើម" msgid "Edit User List" msgstr "កែសម្រួលបញ្ជីអ្នកប្រើប្រាស់" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "កែសម្រួលអ្នកណាអាចឆ្លើយតបបាន" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "កែសម្រួលឈ្មោះបង្ហាញរបស់អ្នក" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "កែសម្រួល​ការ​ពិពណ៌នា​ប្រវត្តិរូប​របស់​អ្នក" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "កែសម្រួលកញ្ចប់ចាប់ផ្តើមរបស់អ្នក" @@ -2839,8 +2957,8 @@ msgstr "ការអប់រំ" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "" -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "អ៊ីមែល 2FA ត្រូវបានបើក" @@ -2865,10 +2983,6 @@ msgstr "ផ្ញើអ៊ីមែលឡើងវិញ" msgid "Email sent!" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "" @@ -2883,8 +2997,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "" @@ -2892,7 +3006,7 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "បង្កប់ការបង្ហោះនេះនៅក្នុងគេហទំព័ររបស់អ្នក។ គ្រាន់តែចម្លងផ្នែកខាងក្រោម ហើយបិទភ្ជាប់វាទៅក្នុងកូដ HTML នៃគេហទំព័ររបស់អ្នក" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "កម្មវិធីចាក់វីដេអូដែលបានបង្កប់" @@ -2906,7 +3020,7 @@ msgstr "បើក" msgid "Enable {0} only" msgstr "បើកដំណើរការតែ {0} ប៉ុណ្ណោះ" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "បើកមាតិកាសម្រាប់មនុស្សពេញវ័យ" @@ -2919,16 +3033,20 @@ msgstr "" msgid "Enable external media" msgstr "បើកប្រព័ន្ធផ្សព្វផ្សាយខាងក្រៅ" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "បើកកម្មវិធីចាក់មេឌៀសម្រាប់" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "បើកការជូនដំណឹងជាអាទិភាព" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "បើកចំណងជើងរង" @@ -2941,17 +3059,14 @@ msgstr "បើកដំណើរការប្រភពនេះតែប៉ុ msgid "Enable trending topics" msgstr "" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "" - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "បានបើក" @@ -2963,7 +3078,7 @@ msgstr "ចុងបញ្ចប់នៃមតិព័ត៌មាន" msgid "Ensure you have selected a language for each subtitle file." msgstr "ត្រូវប្រាកដថាអ្នកបានជ្រើសរើសភាសាសម្រាប់ឯកសារចំណងជើងរងនីមួយៗ" -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "បញ្ចូលពាក្យសម្ងាត់" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "បញ្ចូលពាក្យ ឬស្លាក" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "បញ្ចូលលេខកូដ" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "បញ្ចូលអេក្រង់ពេញ" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "បញ្ចូលថ្ងៃខែឆ្នាំកំណើតរបស់អ្នក" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "បញ្ចូលអាសយដ្ឋានអ៊ីមែលរបស់អ្នក" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "បញ្ចូលអាសយដ្ឋានអ៊ីមែលថ្មីរបស់អ្នកខាងក្រោម" - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "" @@ -3022,7 +3129,7 @@ msgstr "" msgid "Enter your username and password" msgstr "បញ្ចូលឈ្មោះអ្នកប្រើប្រាស់ និងពាក្យសម្ងាត់របស់អ្នក។" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "" @@ -3030,16 +3137,28 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "កំហុស" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "កំហុសបានកើតឡើងខណៈពេលរក្សាទុកឯកសារ" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "កំហុសក្នុងការទទួលការឆ្លើយតប captcha" @@ -3047,27 +3166,34 @@ msgstr "កំហុសក្នុងការទទួលការឆ្លើ msgid "Error:" msgstr "កំហុស" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "ទាំងអស់គ្នា" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "អ្នក​រាល់​គ្នា​អាច​ឆ្លើយ​តប" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "អ្នក​រាល់​គ្នា​អាច​ឆ្លើយ​តប​នឹង​ការ​ប្រកាស​នេះ" -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "ទាំងអស់គ្នា" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "មិនរាប់បញ្ចូលអ្នកប្រើប្រ msgid "Excludes users you follow" msgstr "មិនរាប់បញ្ចូលអ្នកប្រើប្រាស់ដែលអ្នកតាមដាន" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "ចេញពីអេក្រង់ពេញ" @@ -3106,24 +3232,28 @@ msgstr "ចាកចេញពីទិដ្ឋភាពរូបភាព" msgid "Expand alt text" msgstr "ពង្រីកអត្ថបទជំនួស" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "ពង្រីកបញ្ជីអ្នកប្រើប្រាស់" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "ពង្រីក ឬបង្រួមការបង្ហោះពេញដែលអ្នកកំពុងឆ្លើយតប" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "អ្នករំពឹងថានឹងដោះស្រាយកំណត់ត្រាមួយ។" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "ពិសោធន៍" @@ -3153,15 +3283,15 @@ msgstr "ប្រព័ន្ធផ្សព្វផ្សាយច្បាស msgid "Explicit sexual images." msgstr "រូបភាពផ្លូវភេទច្បាស់លាស់" -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "នាំចេញទិន្នន័យរបស់ខ្ញុំ" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "ប្រព័ន្ធផ្សព្វផ្សាយខាងក្រៅ" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "ប្រព័ន្ធផ្សព្វផ្សាយខាងក្រៅអាចអនុញ្ញាតឱ្យគេហទំព័រប្រមូលព័ត៌មានអំពីអ្នក និងឧបករណ៍របស់អ្នក។ គ្មាន​ព័ត៌មាន​ត្រូវ​បាន​ផ្ញើ ឬ​ស្នើ​រហូត​ដល់​អ្នក​ចុច​ប៊ូតុង \"play\"" -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "ចំណូលចិត្តប្រព័ន្ធផ្សព្វផ្សាយខាងក្រៅ" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "" @@ -3211,8 +3341,8 @@ msgstr "បរាជ័យក្នុងការបង្កើតពាក្ msgid "Failed to create conversation" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "បរាជ័យក្នុងការបង្កើតកញ្ចប់ចាប់ផ្តើម" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "បរាជ័យក្នុងការលុបសារ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "បរាជ័យក្នុងការលុបការបង្ហោះ សូមព្យាយាមម្តងទៀត" @@ -3238,8 +3368,8 @@ msgstr "បរាជ័យក្នុងការលុបការបង្ហ msgid "Failed to delete starter pack" msgstr "បរាជ័យក្នុងការលុបកញ្ចប់ចាប់ផ្តើម" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "" @@ -3250,14 +3380,32 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "បានបរាជ័យក្នុងការផ្ទុកចំណូលចិត្តមតិព័ត៌មាន" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "បានបរាជ័យក្នុងការផ្ទុក GIFs" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "បានបរាជ័យក្នុងការផ្ទុកសារពីមុន" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "បានបរាជ័យក្នុងការផ្ទុកព័ msgid "Failed to load suggested follows" msgstr "បានបរាជ័យក្នុងការផ្ទុកដែលបានណែនាំដូចខាងក្រោម" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "បរាជ័យក្នុងការខ្ទាស់ការបង្ហោះ" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "" @@ -3291,15 +3439,11 @@ msgstr "" msgid "Failed to save image: {0}" msgstr "" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "បរាជ័យក្នុងការរក្សាទុកចំណូលចិត្តការជូនដំណឹង សូមព្យាយាមម្តងទៀត" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "" @@ -3318,7 +3462,7 @@ msgstr "" msgid "Failed to submit appeal, please try again." msgstr "បរាជ័យក្នុងការដាក់បណ្តឹងតវ៉ា សូមព្យាយាមម្តងទៀត" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "មិន​អាច​បិទ​បើក​បិទ​សំឡេង​បាន​ទេ សូម​ព្យាយាម​ម្ដង​ទៀត" @@ -3335,7 +3479,11 @@ msgstr "" msgid "Failed to update feeds" msgstr "បរាជ័យក្នុងការធ្វើបច្ចុប្បន្នភាពព័ត៌មាន" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "បរាជ័យក្នុងការធ្វើបច្ចុប្បន្នភាពការកំណត់" @@ -3354,15 +3502,23 @@ msgstr "" msgid "Failed to verify handle. Please try again." msgstr "បរាជ័យក្នុងការផ្ទៀងផ្ទាត់ចំណុចទាញ។ សូមព្យាយាមម្តងទៀត" -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "ព័ត៌មាន" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "ព័ត៌មានដោយ {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "" @@ -3371,35 +3527,39 @@ msgstr "" msgid "Feed toggle" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "មតិកែលម្អ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "បានផ្ញើមតិកែលម្អ!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "ព័ត៌មាន" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "មតិព័ត៌មានគឺជាក្បួនដោះស្រាយផ្ទាល់ខ្លួនដែលអ្នកប្រើប្រាស់បង្កើតដោយមានជំនាញសរសេរកូដតិចតួច។ <0/> សម្រាប់ព័ត៌មានបន្ថែម" #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "បានធ្វើបច្ចុប្បន្នភាពព័ត៌មាន!" @@ -3428,6 +3588,14 @@ msgstr "" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "បញ្ចប់" @@ -3448,7 +3616,7 @@ msgstr "" msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "បញ្ចប់" @@ -3456,17 +3624,17 @@ msgstr "បញ្ចប់" msgid "Fitness" msgstr "សម្បទា" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "អាចបត់បែនបាន" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "តាម" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "តាម {0}" @@ -3518,7 +3686,7 @@ msgstr "តាមដានគណនី" msgid "Follow all" msgstr "តាមដានទាំងអស់គ្នា" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "តាមដានត្រឡប់វិញ" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "តាមដានត្រឡប់វិញ" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "តាមដោយ <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "តាមដោយ <0>{0} and {1, plural, one {# ផ្សេងទៀត} other {# ផ្សេងទៀត}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "តាមដោយ <0>{0} និង <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "អ្នកតាមដាន @{0} ដែលអ្នកស្គាល់" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "អ្នកតាមដែលអ្នកស្គាល់" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "កំពុងតាម" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "កំពុងតាម" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "កំពុងតាម {0}" @@ -3579,8 +3751,8 @@ msgstr "" msgid "Following feed preferences" msgstr "ធ្វើតាមចំណូលចិត្តមតិព័ត៌មាន" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "ធ្វើតាមចំណូលចិត្តមតិព័ត៌មាន" @@ -3592,11 +3764,11 @@ msgstr "តាមអ្នក" msgid "Follows You" msgstr "តាមអ្នក" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "ពុម្ពអក្សរ" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "ទំហំពុម្ពអក្សរ" @@ -3613,7 +3785,7 @@ msgstr "សម្រាប់ហេតុផលសុវត្ថិភាព msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "សម្រាប់ហេតុផលសុវត្ថិភាព អ្នកនឹងមិនអាចមើលវាម្តងទៀតបានទេ។ ប្រសិនបើអ្នកបាត់ពាក្យសម្ងាត់កម្មវិធីនេះ អ្នកនឹងត្រូវបង្កើតពាក្យសម្ងាត់ថ្មី" -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "សម្រាប់បទពិសោធន៍ដ៏ល្អបំផុត យើងសូមណែនាំឱ្យប្រើពុម្ពអក្សរស្បែក" @@ -3643,11 +3815,15 @@ msgstr "ភ្លេច?" msgid "Frequently Posts Unwanted Content" msgstr "បង្ហោះមាតិកាដែលមិនចង់បានញឹកញាប់" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "ពី @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "ពី <0/>" @@ -3660,14 +3836,68 @@ msgstr "វិចិត្រសាល" msgid "Generate a starter pack" msgstr "បង្កើតកញ្ចប់ចាប់ផ្តើម" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "រកជំនួយ" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "" @@ -3688,14 +3918,16 @@ msgstr "ផ្តល់ទម្រង់មុខរបស់អ្នក" msgid "Glaring violations of law or terms of service" msgstr "ការបំពានច្បាប់ ឬលក្ខខណ្ឌប្រើប្រាស់ជាក់ស្តែង" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "ចូលទៅកាន់ការសន្ទនាជាមួយ {0}" @@ -3779,8 +4017,8 @@ msgstr "ប្រព័ន្ធផ្សព្វផ្សាយក្រាហ msgid "Half way there!" msgstr "ពាក់កណ្តាលផ្លូវ" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "" @@ -3797,7 +4035,7 @@ msgstr "" msgid "Handle too long. Please try a shorter one." msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "" @@ -3806,7 +4044,7 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "ការបៀតបៀន ការបោកប្រាស់ ឬការមិនអត់ឱន" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "" -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "មានបញ្ហា?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "ជំនួយ" @@ -3839,8 +4077,13 @@ msgstr "ជួយមនុស្សឱ្យដឹងថាអ្នកមិន msgid "Here is your app password!" msgstr "នេះគឺជាពាក្យសម្ងាត់កម្មវិធីរបស់អ្នក" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "" @@ -3848,16 +4091,16 @@ msgstr "" msgid "Hidden by your moderation settings." msgstr "" -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "បញ្ជីដែលលាក់" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "បញ្ជីដែលលាក់" msgid "Hide" msgstr "លាក់" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "លាក់" @@ -3875,18 +4118,18 @@ msgstr "លាក់" msgid "Hide customization options" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "លាក់ post សម្រាប់ខ្ញុំ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "លាក់ការឆ្លើយតបសម្រាប់អ្នករាល់គ្នា" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "លាក់ការឆ្លើយតបសម្រាប់ខ្ញុំ" @@ -3894,12 +4137,12 @@ msgstr "លាក់ការឆ្លើយតបសម្រាប់ខ្ញ msgid "Hide this card" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "លាក់ការបង្ហោះនេះ?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "លាក់ការឆ្លើយតបនេះ?" @@ -3913,11 +4156,11 @@ msgstr "" msgid "Hide trending topics?" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "លាក់បញ្ជីអ្នកប្រើប្រាស់" @@ -3926,32 +4169,32 @@ msgstr "លាក់បញ្ជីអ្នកប្រើប្រាស់" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "ហ៎ បញ្ហា​មួយ​ចំនួន​បាន​កើត​ឡើង​ពេល​ទាក់ទង​ទៅ​ម៉ាស៊ីន​បម្រើ​មតិព័ត៌មាន។ សូមប្រាប់ម្ចាស់ព័ត៌មានអំពីបញ្ហានេះ" -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "ហ៊ឺ ម៉ាស៊ីនមេរបស់មតិព័ត៌មានហាក់ដូចជាត្រូវបានកំណត់រចនាសម្ព័ន្ធខុស។ សូមប្រាប់ម្ចាស់ព័ត៌មានអំពីបញ្ហានេះ" -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "ហ៊ឺ ម៉ាស៊ីនមេរបស់មតិព័ត៌មានហាក់ដូចជាគ្មានអ៊ីនធឺណិត។ សូមប្រាប់ម្ចាស់ព័ត៌មានអំពីបញ្ហានេះ" -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "ហ៊ឺ ម៉ាស៊ីនមេចំណីបានផ្តល់ការឆ្លើយតបមិនល្អ។ សូមប្រាប់ម្ចាស់ព័ត៌មានអំពីបញ្ហានេះ" -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "ហ៊ឺ យើងមានបញ្ហាក្នុងការស្វែងរកព័ត៌មាននេះ។ វាប្រហែលជាត្រូវបានលុប" -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "ហឺម វាហាក់ដូចជាយើងមានបញ្ហាក្នុងការផ្ទុកទិន្នន័យនេះ។ សូមមើលខាងក្រោមសម្រាប់ព័ត៌មានលម្អិតបន្ថែម។ ប្រសិនបើបញ្ហានេះនៅតែបន្តកើតមាន សូមទាក់ទងមកយើងខ្ញុំ" @@ -3959,15 +4202,15 @@ msgstr "ហឺម វាហាក់ដូចជាយើងមានបញ្ msgid "Hmmmm, we couldn't load that moderation service." msgstr "ហ៊ឺ យើងមិនអាចផ្ទុកសេវាកម្មសម្របសម្រួលនោះបានទេ" -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "ចាំ! យើងកំពុងផ្តល់សិទ្ធិចូលប្រើវីដេអូបន្តិចម្តងៗ ហើយអ្នកនៅតែរង់ចាំក្នុងជួរ។ សូមពិនិត្យមើលឡើងវិញឆាប់ៗនេះ" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "ទំព័រដើម" @@ -3984,10 +4227,10 @@ msgstr "" msgid "Hot" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "ការឆ្លើយតបភ្លាមៗជាមុន" @@ -3996,10 +4239,6 @@ msgstr "ការឆ្លើយតបភ្លាមៗជាមុន" msgid "How should we open this link?" msgstr "តើយើងគួរបើកតំណនេះដោយរបៀបណា?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "ខ្ញុំយល់" msgid "If alt text is long, toggles alt text expanded state" msgstr "ប្រសិនបើអត្ថបទ alt វែង បិទ/បើកស្ថានភាពពង្រីកអត្ថបទ" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "ប្រសិនបើអ្នកមិនទាន់ពេញវ័យស្របតាមច្បាប់នៃប្រទេសរបស់អ្នក ឪពុកម្តាយ ឬអាណាព្យាបាលស្របច្បាប់របស់អ្នកត្រូវតែអានលក្ខខណ្ឌទាំងនេះជំនួសអ្នក" @@ -4031,11 +4270,11 @@ msgstr "ប្រសិនបើអ្នកលុបបញ្ជីនេះ msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "ប្រសិនបើអ្នកលុបការបង្ហោះនេះ អ្នកនឹងមិនអាចយកវាមកវិញបានទេ" @@ -4047,6 +4286,10 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "ប្រសិនបើអ្នកចង់ផ្លាស់ប្តូរពាក្យសម្ងាត់របស់អ្នក យើងនឹងផ្ញើលេខកូដទៅអ្នកដើម្បីផ្ទៀងផ្ទាត់ថានេះគឺជាគណនីរបស់អ្នក" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "" @@ -4091,13 +4334,41 @@ msgstr "ការក្លែងបន្លំ ឬការអះអាងម msgid "Impersonation, misinformation, or false claims" msgstr "ការក្លែងបន្លំ ព័ត៌មានមិនពិត ឬការអះអាងមិនពិត" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "សារមិនសមរម្យ ឬតំណច្បាស់លាស់" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "" @@ -4105,7 +4376,7 @@ msgstr "" msgid "Incorrect username or password" msgstr "ឈ្មោះអ្នកប្រើ ឬពាក្យសម្ងាត់មិនត្រឹមត្រូវ" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "បញ្ចូលលេខកូដដែលបានផ្ញើទៅអ៊ីមែលរបស់អ្នកសម្រាប់កំណត់ពាក្យសម្ងាត់ឡើងវិញ" @@ -4113,7 +4384,7 @@ msgstr "បញ្ចូលលេខកូដដែលបានផ្ញើទៅ msgid "Input confirmation code for account deletion" msgstr "បញ្ចូលលេខកូដបញ្ជាក់សម្រាប់ការលុបគណនី" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "បញ្ចូលពាក្យសម្ងាត់ថ្មី" @@ -4129,10 +4400,14 @@ msgstr "បញ្ចូលលេខកូដដែលបានផ្ញើទៅ msgid "Interaction limited" msgstr "អន្តរកម្មមានកំណត់" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "លេខកូដបញ្ជាក់ 2FA មិនត្រឹមត msgid "Invalid handle. Please try a different one." msgstr "ចំណុចទាញមិនត្រឹមត្រូវ។ សូមសាកល្បងមួយផ្សេងទៀត" -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "កំណត់ត្រាប្រកាសមិនត្រឹមត្រូវ ឬមិនគាំទ្រ" @@ -4158,7 +4433,7 @@ msgstr "លេខកូដផ្ទៀងផ្ទាត់មិនត្រឹ msgid "Invite a Friend" msgstr "អញ្ជើញមិត្តម្នាក់" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "លេខកូដអញ្ជើញ" @@ -4186,15 +4461,15 @@ msgstr "អញ្ជើញមិត្តភ័ក្តិរបស់អ្ន msgid "Invites, but personal" msgstr "ការអញ្ជើញ ប៉ុន្តែផ្ទាល់ខ្លួន" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "វាត្រឹមត្រូវ" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "មានតែអ្នកទេឥឡូវនេះ! បន្ថែមមនុស្សបន្ថែមទៀតទៅក្នុងកញ្ចប់ចាប់ផ្តើមរបស់អ្នកដោយស្វែងរកខាងលើ" -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "" @@ -4220,11 +4495,27 @@ msgstr "ចូលរួមការសន្ទនា" msgid "Journalism" msgstr "សារព័ត៌មាន" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "ដាក់ស្លាកដោយ {0}" -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "ដាក់ស្លាកដោយអ្នកនិពន្ធ" @@ -4237,7 +4528,7 @@ msgstr "ស្លាក" msgid "Labels added" msgstr "ស្លាកត្រូវបានបន្ថែម" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "ស្លាកគឺជាចំណារពន្យល់អំពីអ្នកប្រើប្រាស់ និងខ្លឹមសារ។ ពួកវាអាចត្រូវបានប្រើដើម្បីលាក់ ព្រមាន និងចាត់ថ្នាក់បណ្តាញ" @@ -4253,22 +4544,30 @@ msgstr "ស្លាកនៅលើមាតិការបស់អ្នក" msgid "Language selection" msgstr "ការជ្រើសរើសភាសា" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "ការកំណត់ភាសា" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "ភាសា" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "ធំជាង" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "ចុងក្រោយ" @@ -4282,7 +4581,6 @@ msgstr "ស្វែងយល់បន្ថែម" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "" @@ -4290,6 +4588,10 @@ msgstr "" msgid "Learn More" msgstr "ស្វែងយល់បន្ថែម" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "មើល​បន្ថែមទៀត​អំពី Bluesky នៅលើ Facebook" @@ -4298,15 +4600,23 @@ msgstr "មើល​បន្ថែមទៀត​អំពី Bluesky នៅល msgid "Learn more about self hosting your PDS." msgstr "ស្វែងយល់បន្ថែមអំពីការបង្ហោះដោយខ្លួនឯង PDS របស់អ្នក" -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "ស្វែងយល់បន្ថែមអំពីការសម្របសម្រួលដែលបានអនុវត្តចំពោះខ្លឹមសារនេះ" -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "ស្វែងយល់បន្ថែមអំពីការព្រមាននេះ" @@ -4316,12 +4626,16 @@ msgstr "ស្វែងយល់បន្ថែមអំពីការព្រ msgid "Learn more about verification on Bluesky" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "ស្វែងយល់បន្ថែមអំពីអ្វីដែលជាសាធារណៈនៅលើ Bluesky" -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "ស្វែងយល់បន្ថែម" @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "ចាកចេញពីការសន្ទនា" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "ទុកពួកវាទាំងអស់ដោយមិនធីក ដើម្បីមើលភាសាណាមួយ" +msgid "Leave them all unselected to see any language." +msgstr "" -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "ចាកចេញពី Bluesky" @@ -4370,7 +4685,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "ពន្លឺ" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -4397,6 +4712,10 @@ msgstr "ចូលចិត្ត 10 ប្រកាស" msgid "Like 10 posts to train the Discover feed" msgstr "ចូលចិត្តការបង្ហោះចំនួន 10 ដើម្បីបណ្តុះបណ្តាល Discover feed" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "ចូលចិត្តមតិព័ត៌មាននេះ" @@ -4405,8 +4724,8 @@ msgstr "ចូលចិត្តមតិព័ត៌មាននេះ" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "ចូលចិត្ត" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "ចូលចិត្ត" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" @@ -4428,20 +4747,36 @@ msgstr "" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "ចូលចិត្ត" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "ចូលចិត្តនៅលើប្រកាសនេះ" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "បញ្ជី" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "បញ្ជីត្រូវបានរារាំង" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "រាយបញ្ជីដោយ {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "បាន​បិទ​បញ្ជី" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "​បញ្ជី" @@ -4537,7 +4876,7 @@ msgstr "ផ្ទុកច្រើនទៀត" msgid "Load more suggested feeds" msgstr "ផ្ទុកព័ត៌មានដែលបានណែនាំបន្ថែមទៀត" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "ផ្ទុកការជូនដំណឹងថ្មីៗ" @@ -4552,11 +4891,11 @@ msgstr "ផ្ទុកប្រកាសថ្មីៗ" msgid "Loading..." msgstr "កំពុងផ្ទុក..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "កំណត់ហេតុ" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "ភាពមើលឃើញពីការចេញពីគណនី" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "និមិត្តសញ្ញាដោយ <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "និមិត្តសញ្ញាដោយ <0>@sawaratsuki.bsky.socia msgid "Long press to open tag menu for #{tag}" msgstr "ចុចឱ្យយូរដើម្បីបើកម៉ឺនុយស្លាកសម្រាប់ #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "មើលទៅដូចជា XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "" msgid "Make one for me" msgstr "ធ្វើមួយសម្រាប់ខ្ញុំ" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "ត្រូវប្រាកដថានេះជាកន្លែងដែលអ្នកចង់ទៅ" @@ -4606,7 +4945,7 @@ msgstr "ត្រូវប្រាកដថានេះជាកន្លែង msgid "Manage saved feeds" msgstr "គ្រប់គ្រងព័ត៌មានដែលបានរក្សាទុក" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "" @@ -4614,9 +4953,9 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "គ្រប់គ្រងពាក្យ និងស្លាកដែលបានបិទរបស់អ្នក" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "" @@ -4625,15 +4964,13 @@ msgstr "" msgid "Mark as read" msgstr "សម្គាល់ថាបានអានហើយ" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "" @@ -4645,19 +4982,26 @@ msgstr "ប្រព័ន្ធផ្សព្វផ្សាយ" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "ប្រព័ន្ធផ្សព្វផ្សាយដែលអាចរំខាន ឬមិនសមរម្យសម្រាប់ទស្សនិកជនមួយចំនួន" -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "អ្នកប្រើប្រាស់ដែលបានលើកឡើង" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "អ្នកប្រើប្រាស់ដែលបានលើកឡើង" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "ម៉ឺនុយ" @@ -4665,7 +5009,7 @@ msgstr "ម៉ឺនុយ" msgid "Message {0}" msgstr "សារ {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "សារត្រូវបានលុប" @@ -4674,11 +5018,11 @@ msgstr "សារត្រូវបានលុប" msgid "Message deleted" msgstr "សារត្រូវបានលុប" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "" @@ -4691,19 +5035,23 @@ msgstr "វាលបញ្ចូលសារ" msgid "Message is too long" msgstr "សារវែងពេក" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "សារ" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "គណនីបន្លំ" msgid "Misleading Post" msgstr "post បន្លំ" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "ការសម្របសម្រួល" @@ -4725,17 +5073,17 @@ msgstr "ការសម្របសម្រួល" msgid "Moderation details" msgstr "ព័ត៌មានលម្អិតនៃការសម្របសម្រួល" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "បញ្ជីសម្របសម្រួលដោយ {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "បញ្ជីសម្របសម្រួលដោយ <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "បញ្ជីសម្របសម្រួលដោយអ្នក" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "បានធ្វើបច្ចុប្បន្នភាពបញ្ជីសម្របសម្រួល" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "បញ្ជីសម្របសម្រួល" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "បញ្ជីការសម្របសម្រួល" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "ការកំណត់កម្រិតមធ្យម" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "ឧបករណ៍សំរបសំរួល" @@ -4775,7 +5123,7 @@ msgstr "ឧបករណ៍សំរបសំរួល" msgid "Moderator has chosen to set a general warning on the content." msgstr "អ្នកសម្របសម្រួលបានជ្រើសរើសដើម្បីកំណត់ការព្រមានទូទៅលើខ្លឹមសារ" -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "ច្រើនទៀត" @@ -4790,13 +5138,13 @@ msgstr "ព័ត៌មានច្រើនទៀត" msgid "More options" msgstr "ជម្រើសច្រើនទៀត" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "ចូលចិត្តបំផុតមុនគេ" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "ចម្លើយដែលចូលចិត្តបំផុតមុនគេ" @@ -4808,8 +5156,8 @@ msgstr "ភាពយន្ត" msgid "Music" msgstr "តន្ត្រី" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "បិទ" @@ -4819,8 +5167,8 @@ msgstr "បិទ" msgid "Mute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "បិទពាក្យនេះនៅក្នុងស្លាកត msgid "Mute this word until you unmute it" msgstr "បិទ​ពាក្យ​នេះ​រហូត​ដល់​អ្នក​បើក​សំឡេង​វា" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "បិទ thread" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "បិទពាក្យ & ស្លាក" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "គណនីបិទ" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "គណនីបិទ" @@ -4898,7 +5246,7 @@ msgstr "គណនីដែលបានបិទសំឡេងបានលុប msgid "Muted by \"{0}\"" msgstr "បានបិទសំឡេងដោយ \"{0}\"" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "ពាក្យ និងស្លាកដែលបានបិទ" @@ -4911,7 +5259,7 @@ msgstr "ការបិទសំឡេងគឺឯកជន។ គណនីដ msgid "My Birthday" msgstr "ខួបកំណើតរបស់ខ្ញុំ" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "មតិព័ត៌មានរបស់ខ្ញុំ" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "ធម្មជាតិ" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "រុករកទៅ {0}" @@ -4958,11 +5306,11 @@ msgstr "រុករកទៅអេក្រង់បន្ទាប់" msgid "Navigates to your profile" msgstr "រុករកទៅកម្រងព័ត៌មានរបស់អ្នក" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "ត្រូវ​ការ​ផ្លាស់​ប្តូ​រ​វា​?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "ត្រូវការរាយការណ៍អំពីការរំលោភសិទ្ធិអ្នកនិពន្ធ?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "ថ្មី" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "ការជជែកថ្មី" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "សារថ្មី" msgid "New Moderation List" msgstr "បញ្ជីសម្របសម្រួលថ្មី" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "ពាក្យសម្ងាត់ថ្មី" @@ -5029,7 +5396,7 @@ msgstr "ពាក្យសម្ងាត់ថ្មី" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "post ថ្មី" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "post ថ្មី" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "ប្រអប់ព័ត៌មានអ្នកប្រើប្រាស់ថ្មី" @@ -5054,10 +5429,14 @@ msgstr "ប្រអប់ព័ត៌មានអ្នកប្រើប្រ msgid "New User List" msgstr "បញ្ជីអ្នកប្រើប្រាស់ថ្មី" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "ការឆ្លើយតបថ្មីបំផុតជាមុនសិន" @@ -5071,15 +5450,15 @@ msgstr "ព័ត៌មាន" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "គ្មានបន្ទះ DNS" msgid "No expiry set" msgstr "" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "រកមិនឃើញ GIF ដែលមានលក្ខណៈពិសេសទេ។ ប្រហែលជាមានបញ្ហាជាមួយ Tenor" @@ -5119,32 +5498,35 @@ msgstr "" msgid "No likes yet" msgstr "មិនទាន់មានអ្នកចូលចិត្តទេ" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "លែង​តាម {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "មិនមានសារនៅឡើយទេ" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "មិនមានការជូនដំណឹងនៅឡើយទេ" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "គ្មាននរណាម្នាក់" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "គ្មាននរណាម្នាក់ក្រៅពីអ្នកនិពន្ធអាចដកស្រង់ការប្រកាសនេះបានទេ" +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "មិនទាន់មានប្រកាសនៅឡើយទេ" @@ -5171,7 +5553,7 @@ msgstr "គ្មានលទ្ធផល" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "រកមិនឃើញលទ្ធផលទេ" @@ -5179,9 +5561,9 @@ msgstr "រកមិនឃើញលទ្ធផលទេ" msgid "No results found for \"{query}\"" msgstr "រកមិនឃើញលទ្ធផលសម្រាប់ \"{query}\"" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "រកមិនឃើញលទ្ធផលសម្រាប់ {query}" @@ -5189,7 +5571,7 @@ msgstr "រកមិនឃើញលទ្ធផលសម្រាប់ {query}" msgid "No results." msgstr "" -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "រកមិនឃើញលទ្ធផលស្វែងរកសម្រាប់ \"{search}\" ទេ" @@ -5198,7 +5580,7 @@ msgstr "រកមិនឃើញលទ្ធផលស្វែងរកសម្ msgid "No thanks" msgstr "ទេ អរគុណ" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "គ្មាននរណាម្នាក់" @@ -5223,59 +5605,76 @@ msgstr "គ្មាននរណាម្នាក់ត្រូវបានរ msgid "Non-sexual Nudity" msgstr "" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "រកមិនឃើញ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "ចំណាំអំពីការចែករំលែក" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "ចំណាំ៖ Bluesky គឺជាបណ្តាញបើកចំហ និងសាធារណៈ។ ការកំណត់នេះកំណត់តែការមើលឃើញខ្លឹមសាររបស់អ្នកនៅលើកម្មវិធី និងគេហទំព័រ Bluesky ហើយកម្មវិធីផ្សេងទៀតប្រហែលជាមិនគោរពការកំណត់នេះទេ។ ខ្លឹមសាររបស់អ្នកអាចនៅតែត្រូវបានបង្ហាញដល់អ្នកប្រើប្រាស់ដែលបានចេញពីគណនីដោយកម្មវិធី និងគេហទំព័រផ្សេងទៀត" -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "គ្មានអ្វីនៅទីនេះទេ" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "តម្រងការជូនដំណឹង" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "ការកំណត់ការជូនដំណឹង" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "ការកំណត់ការជូនដំណឹង" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "សំឡេងជូនដំណឹង" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "សំឡេងជូនដំណឹង" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "ការជូនដំណឹង" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "ឥឡូវនេះ" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "អាក្រាតកាយ ឬខ្លឹមសារសម្រាប់មនុស្សពេញវ័យមិនត្រូវបានដាក់ស្លាកបែបនេះទេ" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "បិទ" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "ចម្លើយចាស់បំផុតជាមុនសិន" @@ -5331,19 +5736,19 @@ msgstr "ចម្លើយចាស់បំផុតជាមុនសិន" msgid "on<0><1/><2><3/>" msgstr "" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "កំណត់ការចូលដំណើរការឡើងវិញ" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "GIFs មួយ ឬ​ច្រើន​បាត់​អត្ថបទ​ជំនួស" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "រូបភាពមួយ ឬច្រើនបាត់អត្ថបទជំនួស" -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "វីដេអូមួយ ឬច្រើនបាត់អត្ថបទជំនួស" @@ -5351,13 +5756,15 @@ msgstr "វីដេអូមួយ ឬច្រើនបាត់អត្ថ msgid "Only .jpg and .png files are supported" msgstr "មានតែឯកសារ .jpg និង .png ប៉ុណ្ណោះដែលត្រូវបានគាំទ្រ" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "មានតែ {0} ប៉ុណ្ណោះដែលអាចឆ្លើយតបបាន" -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "មាន​តែ​អក្សរ លេខ និង​សហសញ្ញា" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "មានតែឯកសាររូបភាពប៉ុណ្ណោះ msgid "Only WebVTT (.vtt) files are supported" msgstr "មានតែឯកសារ WebVTT (.vtt) ប៉ុណ្ណោះដែលត្រូវបានគាំទ្រ" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "ឯកសារ WebVTT (.vtt) ងាយស្រួលគាំទ្រ" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "បើកកម្មវិធីជ្រើសរើសរូបអារម្មណ៍" @@ -5416,7 +5822,7 @@ msgstr "បើកម៉ឺនុយជម្រើសមតិព័ត៌មា msgid "Open full emoji list" msgstr "" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "បើកតំណទៅ {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "បើកតំណទៅ {niceUrl}" msgid "Open message options" msgstr "បើកជម្រើសសារ" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "បើកទំព័របំបាត់កំហុសការសម្របសម្រួល" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "បើកការកំណត់ពាក្យ និងស្លាកដែលបានបិទ" @@ -5453,16 +5859,16 @@ msgstr "" msgid "Open starter pack menu" msgstr "បើកម៉ឺនុយកញ្ចប់ចាប់ផ្តើម" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "បើកជម្រើស {numItems}" @@ -5490,11 +5896,11 @@ msgstr "បើកកាមេរ៉ានៅលើឧបករណ៍" msgid "Opens captions and alt text dialog" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "បើកកម្មវិធីតែង" @@ -5502,7 +5908,7 @@ msgstr "បើកកម្មវិធីតែង" msgid "Opens device photo gallery" msgstr "បើកវិចិត្រសាលរូបភាពឧបករណ៍" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "" @@ -5520,15 +5926,19 @@ msgstr "" msgid "Opens GIF select dialog" msgstr "បើកប្រអប់ជ្រើសរើស GIF" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "បើកបញ្ជីលេខកូដអញ្ជើញ" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "" @@ -5536,12 +5946,8 @@ msgstr "" msgid "Opens password reset form" msgstr "បើកទម្រង់កំណត់ពាក្យសម្ងាត់ឡើងវិញ" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "បើកគេហទំព័រដែលបានភ្ជាប់" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "បើកកម្រងព័ត៌មាននេះ" @@ -5558,7 +5964,7 @@ msgstr "ជាជម្រើសផ្តល់ព័ត៌មានបន្ថ msgid "Options:" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "ឬផ្សំជម្រើសទាំងនេះ៖" @@ -5600,6 +6006,10 @@ msgstr "គណនីផ្សេងទៀត" msgid "Other..." msgstr "ផ្សេងៗ..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "" @@ -5608,7 +6018,7 @@ msgstr "" msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "អ្នកសម្របសម្រួលរបស់យើងបានពិនិត្យរបាយការណ៍ ហើយបានសម្រេចចិត្តបិទការចូលប្រើការជជែករបស់អ្នកនៅលើ Bluesky" -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "រកមិនឃើញទំព័រ" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "រកមិនឃើញទំព័រ" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "បានធ្វើបច្ចុប្បន្នភាពពាក msgid "Password updated!" msgstr "បានធ្វើបច្ចុប្បន្នភាពពាក្យសម្ងាត់" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "ផ្អាក" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "ផ្អាក video" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "មនុស្ស" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "មនុស្ស​តាម​ដោយ @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "មនុស្ស​តាម @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "" @@ -5704,12 +6119,12 @@ msgstr "" msgid "Pin to Home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "" @@ -5718,7 +6133,7 @@ msgstr "" msgid "Pinned {0} to Home" msgstr "" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "" @@ -5726,38 +6141,38 @@ msgstr "" msgid "Pinned to your feeds" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "លេង" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "លេង {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "ចាក់វីដេអូ" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "ចាក់វីដេអូ" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "លេង GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "" @@ -5765,12 +6180,16 @@ msgstr "" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "សូមជ្រើសរើស handle របស់អ្នក" #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "សូមជ្រើសរើសពាក្យសម្ងាត់របស់អ្នក" @@ -5782,7 +6201,8 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "សូមបំពេញការផ្ទៀងផ្ទាត់ captcha" -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "" @@ -5804,6 +6224,7 @@ msgstr "សូមបញ្ចូលឈ្មោះតែមួយគត់សម msgid "Please enter a valid code." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "" @@ -5812,7 +6233,11 @@ msgstr "" msgid "Please enter a valid word, tag, or phrase to mute" msgstr "សូមបញ្ចូលពាក្យ ស្លាក ឬឃ្លាដែលត្រឹមត្រូវ ដើម្បីបិទសំឡេង" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "" #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "សូមបញ្ចូលអ៊ីមែលរបស់អ្នក" -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "សូមបញ្ចូលលេខកូដអញ្ជើញរបស់អ្នក" @@ -5853,6 +6278,19 @@ msgstr "សូមពន្យល់ពីមូលហេតុដែលអ្ន msgid "Please explain why you think your chats were incorrectly disabled" msgstr "សូមពន្យល់ពីមូលហេតុដែលអ្នកគិតថាការជជែករបស់អ្នកត្រូវបានបិទមិនត្រឹមត្រូវ" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "" @@ -5870,9 +6308,9 @@ msgstr "សូមចូលគណនីជា @{0}" msgid "Please verify your email" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "សូមផ្ទៀងផ្ទាត់អ៊ីមែលរបស់អ្នក" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "នយោបាយ" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "ការបង្ហោះ" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "ការបង្ហោះ" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "ការបង្ហោះ" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Post ទាំងអស់" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Post ដោយ {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Post ត្រូវាបានលុប" @@ -5919,11 +6362,14 @@ msgstr "Post ត្រូវាបានលុប" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "មិនអាចបង្ហោះសារបង្ហោះបានទេ។ សូមពិនិត្យមើលការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក ហើយព្យាយាមម្តងទៀត" +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "" @@ -5937,11 +6383,11 @@ msgstr "" msgid "Post Hidden by You" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "ការ​កំណត់​អន្តរកម្ម​ post" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "" @@ -5954,8 +6400,10 @@ msgstr "" msgid "Post Languages" msgstr "ភាសា post" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "ការបង្ហោះ" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "ការបង្ហោះអាចត្រូវបានបិទដោយផ្អែកលើអត្ថបទ ស្លាករបស់ពួកគេ ឬទាំងពីរ។ យើង​សូម​ណែនាំ​ឱ្យ​ជៀសវាង​ពាក្យ​ធម្មតា​ដែល​បង្ហាញ​ក្នុង​ការ​បង្ហោះ​ជា​ច្រើន ព្រោះ​វា​អាច​នាំ​ឱ្យ​គ្មាន​ការ​បង្ហោះ​ត្រូវ​បាន​បង្ហាញ" -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "តំណភ្ជាប់ដែលអាចយល់ច្រឡំ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "បានរក្សាទុកចំណូលចិត្ត" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "ចុចដើម្បីព្យាយាមភ្ជាប់ឡើងវិញ" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "ចុចដើម្បីព្យាយាមម្តងទៀត" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "ចុចដើម្បីមើលអ្នកតាមដានគណនីនេះដែលអ្នកតាមដានផងដែរ" @@ -6015,40 +6469,46 @@ msgstr "រូបភាពពីមុន" msgid "Primary Language" msgstr "ភាសាចម្បង" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "ផ្តល់អាទិភាពដល់ការតាមដានរបស់អ្នក" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "ការជូនដំណឹងជាអាទិភាព" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "ឯកជនភាព" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "ភាពឯកជន និងសុវត្ថិភាព" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "ភាពឯកជន និងសុវត្ថិភាព" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "គោលការណ៍ឯកជនភាព" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "ដំណើរការវីដេអូ..." @@ -6062,15 +6522,14 @@ msgstr "កំពុងដំណើរការ..." msgid "profile" msgstr "ប្រវត្តិរូប" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "ប្រវត្តិរូប" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "បានធ្វើបច្ចុប្បន្នភាពប្រវត្តិរូប" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "កូដ QR ត្រូវបានចម្លងទៅក្ដារតម្បៀតខ្ទាស់របស់អ្នក" @@ -6119,44 +6594,52 @@ msgstr "កូដ QR ត្រូវបានទាញយកហើយ" msgid "QR code saved to your camera roll!" msgstr "លេខកូដ QR ត្រូវបានរក្សាទុកទៅក្នុងក្រឡុកកាមេរ៉ារបស់អ្នក" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "Quote post ត្រូវបានភ្ជាប់ម្តងទៀត" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "Quote post ត្រូវបានផ្ដាច់ដោយជោគជ័យ" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Quote posts ត្រូវបានបិទ" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "កំណត់ Quote" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "ចៃដន្យ (ហៅកាត់ថា \"រ៉ូឡែតរបស់ផ្ទាំងរូបភាព\")" @@ -6164,8 +6647,8 @@ msgstr "ចៃដន្យ (ហៅកាត់ថា \"រ៉ូឡែតរប msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "លើសកម្រិតកំណត់ - អ្នកបានព្យាយាមផ្លាស់ប្តូរចំណុចទាញរបស់អ្នកច្រើនដងពេកក្នុងរយៈពេលខ្លី។ សូមរង់ចាំមួយភ្លែត មុនពេលព្យាយាមម្តងទៀត" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "" @@ -6177,30 +6660,42 @@ msgstr "" msgid "Reactivate your account" msgstr "បើកដំណើរការគណនីរបស់អ្នកឡើងវិញ" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "អានប្លក់ Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "អានគោលការណ៍ឯកជនភាព Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "អានលក្ខខណ្ឌនៃសេវាកម្ម Bluesky" @@ -6213,6 +6708,14 @@ msgstr "" msgid "Reason:" msgstr "ហេតុផល៖" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "ការស្វែងរកថ្មីៗ" @@ -6234,8 +6737,8 @@ msgstr "" msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "ផ្ទុកការសន្ទនាឡើងវិញ" @@ -6244,10 +6747,9 @@ msgstr "ផ្ទុកការសន្ទនាឡើងវិញ" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "ដកចេញ" @@ -6259,17 +6761,17 @@ msgstr "លុប {displayName} ចេញពីកញ្ចប់ចាប់ផ msgid "Remove {historyItem}" msgstr "" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "លុបគណនី" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "យកឯកសារភ្ជាប់ចេញ" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "លុប Avatar" @@ -6284,24 +6786,22 @@ msgstr "លុប​កាបង្កប់" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "លុប​មតិព័ត៌មាន" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "លុប​មតិព័ត៌មាន?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "លុបចេញពីមតិព័ត៌មានរបស់ខ្ញុំ" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "ដកចេញពីការចូលប្រើរហ័ស?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "យកចេញពីព័ត៌មានដែលបានរក្សាទុក" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "លុបរូបភាព" @@ -6332,12 +6831,8 @@ msgstr "លុប​ពាក្យ​ស្ងាត់​ចេញ​ពី​ msgid "Remove profile" msgstr "លុបកម្រងព័ត៌មាន" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "លុប quote" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "លុបការបង្ហោះឡើងវិញ" @@ -6345,7 +6840,7 @@ msgstr "លុបការបង្ហោះឡើងវិញ" msgid "Remove subtitle file" msgstr "លុបឯកសារចំណងជើងរង" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "លុបព័ត៌មាននេះចេញពីព័ត៌មានដែលអ្នកបានរក្សាទុក" @@ -6364,11 +6859,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "លុបចេញដោយ author" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "ដកចេញដោយអ្នក" @@ -6377,10 +6872,6 @@ msgstr "ដកចេញដោយអ្នក" msgid "Removed from list" msgstr "បានដកចេញពីបញ្ជី" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "បានលុបចេញពីព័ត៌មានរបស់ខ្ញុំ" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "បានលុបចេញពីព័ត៌មានដែលបានរក្សាទុក" @@ -6395,34 +6886,36 @@ msgstr "បានលុបចេញពីមតិព័ត៌មានរបស msgid "Removed verification" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "លុប quoted post" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "ជំនួសដោយ Discover" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "ការឆ្លើយតប" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "ការឆ្លើយតបត្រូវបានបិទ" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "ការឆ្លើយតបទៅនឹងការបង្ហោះនេះត្រូវបានបិទ" -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "ឆ្លើយតប" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -6436,50 +6929,55 @@ msgstr "ឆ្លើយតបដែលលាក់ដោយ Thread Author" msgid "Reply Hidden by You" msgstr "ឆ្លើយតបដែលលាក់ដោយអ្នក" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "ឆ្លើយតបការកំណត់" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "ការកំណត់ការឆ្លើយតបត្រូវបានជ្រើសរើសដោយ author នៃ thread" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "ឆ្លើយតបទៅ <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "ឆ្លើយតបទៅនឹងការបង្ហោះដែលត្រូវបានរារាំង" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "ឆ្លើយតបទៅនឹង post" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "ឆ្លើយតបទៅអ្នក" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "បានធ្វើបច្ចុប្បន្នភាពភាពមើលឃើញនៃការឆ្លើយតប" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "ការឆ្លើយតបត្រូវបានលាក់ដោយជោគជ័យ" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "រាយការណ៍ព័ត៌មាន" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "រាយការណ៍ពីសារ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "រាយការណ៍ពី post" @@ -6567,25 +7065,26 @@ msgstr "រាយការណ៍កញ្ចប់ចាប់ផ្តើមន msgid "Report this user" msgstr "រាយការណ៍ពីអ្នកប្រើប្រាស់នេះ" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "បង្ហោះឡើងវិញ" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "បង្ហោះឡើងវិញ" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "បង្ហោះឡើងវិញ ឬ quote post" @@ -6594,26 +7093,38 @@ msgstr "បង្ហោះឡើងវិញ ឬ quote post" msgid "Reposted By" msgstr "បង្ហោះឡើងវិញដោយ" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "បង្ហោះឡើងវិញដោយ {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "បង្ហោះឡើងវិញដោយ <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "ផ្សាយឡើងវិញដោយអ្នក" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "ការផ្សាយឡើងវិញនៃប្រកាសនេះ" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" msgstr "" #: src/view/com/modals/ChangePassword.tsx:253 @@ -6621,8 +7132,8 @@ msgstr "" msgid "Request Code" msgstr "ស្នើសុំលេខកូដ" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "ទាមទារអត្ថបទជំនួសមុនពេលបង្ហោះ" @@ -6630,7 +7141,7 @@ msgstr "ទាមទារអត្ថបទជំនួសមុនពេលប msgid "Require an email code to sign in to your account." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "ទាមទារសម្រាប់អ្នកផ្តល់សេវានេះ" @@ -6642,10 +7153,6 @@ msgstr "ទាមទារនៅក្នុងតំបន់របស់អ្ msgid "Resend" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "ផ្ញើអ៊ីមែលឡើងវិញ" msgid "Resend Verification Email" msgstr "ផ្ញើអ៊ីមែលផ្ទៀងផ្ទាត់ឡើងវិញ" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "កំណត់លេខកូដឡើងវិញ" @@ -6667,8 +7180,8 @@ msgstr "កំណត់លេខកូដឡើងវិញ" msgid "Reset Code" msgstr "កំណត់លេខកូដឡើងវិញ" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "កំណត់ស្ថានភាពចាប់ផ្តើមឡើងវិញ" @@ -6687,21 +7200,23 @@ msgstr "ព្យាយាមម្តងទៀតនូវសកម្មភា #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "ព្យាយាមម្តងទៀត" @@ -6721,19 +7236,19 @@ msgstr "ត្រឡប់ទៅទំព័រដើមវិញ" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "ត្រឡប់ទៅទំព័រមុនវិញ" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "រក្សាទុក" @@ -6762,15 +7276,13 @@ msgstr "រក្សាទុក" msgid "Save birthday" msgstr "រក្សាទុកថ្ងៃកំណើត" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "រក្សាទុកការផ្លាស់ប្តូរ" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "រក្សាទុកការផ្លាស់ប្តូរ" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "រក្សាទុកកូដ QR" msgid "Save to my feeds" msgstr "រក្សាទុកក្នុងព័ត៌មានរបស់ខ្ញុំ" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "មតិព័ត៌មានដែលបានរក្សាទុក" @@ -6802,18 +7314,14 @@ msgstr "មតិព័ត៌មានដែលបានរក្សាទុក msgid "Saved to your feeds" msgstr "បានរក្សាទុកទៅក្នុងមតិព័ត៌មានរបស់អ្នក" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "រក្សាទុកការផ្លាស់ប្តូរណាមួយចំពោះកម្រងព័ត៌មានរបស់អ្នក" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "រក្សាទុកការកំណត់ការច្រឹបរូបភាព" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "និយាយថាជំរាបសួរ" @@ -6826,16 +7334,16 @@ msgstr "វិទ្យាសាស្ត្រ" msgid "Scroll to top" msgstr "រំកិលទៅកំពូល" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "ស្វែងរក" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -6861,7 +7369,7 @@ msgstr "ស្វែងរក \"{query}\"" msgid "Search for \"{searchText}\"" msgstr "ស្វែងរក \"{searchText}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "ស្វែងរកព័ត៌មានដែលអ្នកចង់ណែនាំដល់អ្នកដទៃ" @@ -6877,10 +7385,14 @@ msgstr "" msgid "Search for posts, users, or feeds" msgstr "" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "ស្វែងរក GIFs" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "" @@ -6890,12 +7402,12 @@ msgstr "" msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "ស្វែងរកប្រវត្តិរូប" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "ស្វែងរក Tenor" @@ -6903,7 +7415,7 @@ msgstr "ស្វែងរក Tenor" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "" @@ -6912,10 +7424,6 @@ msgstr "" msgid "Security step required" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "ជំហានសុវត្ថិភាពចាំបាច់" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "" @@ -6936,14 +7444,31 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "មើលការងារនៅ Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "សូមមើលការណែនាំនេះ" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "ស្វែងរកគ្រាប់រំកិល។ ប្រើគ្រាប់ចុចព្រួញដើម្បីស្វែងរកទៅមុខ និងថយក្រោយ និងកន្លែងទំនេរសម្រាប់ លេង/ផ្អាក" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "ជ្រើសរើសពណ៌មួយ" @@ -6988,7 +7513,7 @@ msgstr "ជ្រើសរើសពីគណនីដែលមានស្រា msgid "Select GIF" msgstr "ជ្រើសរើស GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "ជ្រើសរើស GIF \"{0}\"" @@ -6996,6 +7521,11 @@ msgstr "ជ្រើសរើស GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "ជ្រើសរើសរយៈពេលដើម្បីបិទពាក្យនេះ" +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "ជ្រើសរើសភាសា..." @@ -7004,7 +7534,7 @@ msgstr "ជ្រើសរើសភាសា..." msgid "Select languages" msgstr "ជ្រើសរើសភាសា" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "" @@ -7045,12 +7575,12 @@ msgstr "" msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "ជ្រើសរើសភាសាណាមួយដែលអ្នកចង់បញ្ចូលព័ត៌មានដែលបានជាវរបស់អ្នក។ ប្រសិនបើ​មិន​ត្រូវ​បាន​ជ្រើសរើស​ទេ ភាសា​ទាំងអស់​នឹង​ត្រូវ​បាន​បង្ហាញ" -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "ជ្រើសរើសថ្ងៃខែឆ្នាំកំណើតរបស់អ្នក" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "ជ្រើសរើសចំណាប់អារម្មណ៍របស់អ្នកពីជម្រើសខាងក្រោម" @@ -7058,7 +7588,11 @@ msgstr "ជ្រើសរើសចំណាប់អារម្មណ៍រប msgid "Select your preferred language for translations in your feed." msgstr "ជ្រើសរើសភាសាដែលអ្នកពេញចិត្តសម្រាប់ការបកប្រែនៅក្នុងព័ត៌មានរបស់អ្នក" -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "" @@ -7066,17 +7600,9 @@ msgstr "" msgid "Send a neat website!" msgstr "ផ្ញើគេហទំព័រស្អាត" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "ផ្ញើអ៊ីមែលបញ្ជាក់" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "ផ្ញើអ៊ីមែល" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "ផ្ញើអ៊ីមែល" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "ផ្ញើមតិកែលម្អ" @@ -7095,7 +7621,7 @@ msgstr "ផ្ញើមតិកែលម្អ" msgid "Send message" msgstr "ផ្ញើសារ" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "" @@ -7114,20 +7640,20 @@ msgstr "ផ្ញើរបាយការណ៍" msgid "Send report to {0}" msgstr "ផ្ញើរបាយការណ៍ទៅ {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "ផ្ញើអ៊ីមែលផ្ទៀងផ្ទាត់" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "ផ្ញើតាមសារផ្ទាល់" @@ -7143,7 +7669,7 @@ msgstr "អាសយដ្ឋានម៉ាស៊ីនមេ" msgid "Set app icon to {0}" msgstr "" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "កំណត់ថ្ងៃខែឆ្នាំកំណើត" @@ -7159,13 +7685,57 @@ msgstr "រៀបចំគណនីរបស់អ្នក" msgid "Sets email for password reset" msgstr "កំណត់អ៊ីមែលសម្រាប់កំណត់ពាក្យសម្ងាត់ឡើងវិញ" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "ការកំណត់" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "ចែករំលែករឿងដ៏ត្រជាក់មួយ" msgid "Share a fun fact!" msgstr "ចែករំលែកការពិតរីករាយ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "ចែករំលែក" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "ចែករំលែកតំណ" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "ចែករំលែកតំណ" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "ប្រអប់ចែករំលែកតំណ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "" @@ -7247,8 +7812,8 @@ msgstr "ចែករំលែកកញ្ចប់ចាប់ផ្តើមន msgid "Share this starter pack and help people join your community on Bluesky." msgstr "ចែករំលែកកញ្ចប់ចាប់ផ្តើមនេះ និងជួយមនុស្សចូលរួមសហគមន៍របស់អ្នកនៅលើ Bluesky" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "" msgid "Share your favorite feed!" msgstr "ចែករំលែកមតិព័ត៌មានដែលអ្នកចូលចិត្ត" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "កម្មវិធីសាកល្បងចំណូលចិត្តដែលបានចែករំលែក" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "ចែករំលែកគេហទំព័រដែលបានភ្ជាប់" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "បង្ហាញ" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "បង្ហាញអត្ថបទជំនួស" @@ -7303,8 +7864,8 @@ msgstr "" msgid "Show hidden replies" msgstr "បង្ហាញការឆ្លើយតបដែលលាក់" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "បង្ហាញបែបនេះតិច" @@ -7312,55 +7873,63 @@ msgstr "បង្ហាញបែបនេះតិច" msgid "Show list anyway" msgstr "ទោះយ៉ាងណាក៏ដោយ បង្ហាញបញ្ជី" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "បង្ហាញច្រើនទៀត" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "បង្ហាញច្រើនទៀតដូចនេះ" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "បង្ហាញការឆ្លើយតបដែលបានបិទ" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "បង្ហាញប្រកាសសម្រង់" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "បង្ហាញការឆ្លើយតប" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "បង្ហាញការឆ្លើយតបដោយមនុស្សដែលអ្នកតាមដាន មុនពេលការឆ្លើយតបផ្សេងទៀតទាំងអស់" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "បង្ហាញការឆ្លើយតបសម្រាប់អ្នករាល់គ្នា" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "បង្ហាញសារឡើងវិញ" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "បង្ហាញគំរូនៃមតិព័ត៌មានដែលអ្នកបានរក្សាទុកនៅក្នុងព័ត៌មានបន្ទាប់របស់អ្នក" @@ -7372,16 +7941,17 @@ msgstr "បង្ហាញការព្រមាន" msgid "Show warning and filter from feeds" msgstr "បង្ហាញការព្រមាន និងត្រងពីមតិព័ត៌មាន" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "" @@ -7390,14 +7960,15 @@ msgstr "" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "ចូលទៅគណនីដែលមិនមានក្នុងប msgid "Sign in to Bluesky or create a new account" msgstr "ចូល Bluesky ឬបង្កើតគណនីថ្មីមួយ" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "ចេញ" @@ -7444,8 +8020,8 @@ msgstr "ចេញ" msgid "Sign Out" msgstr "ចេញ" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "ចេញ?" @@ -7459,12 +8035,12 @@ msgstr "តម្រូវឱ្យចូល" msgid "Signed in as @{0}" msgstr "ចូលជា @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "គណនីស្រដៀងគ្នា" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "រំលង" @@ -7472,12 +8048,11 @@ msgstr "រំលង" msgid "Skip this flow" msgstr "រំលងជំហ៊ាននេះ" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "តូចជាង" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "" @@ -7490,11 +8065,11 @@ msgstr "កម្មវិធី Dev" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "មតិព័ត៌មានផ្សេងទៀតដែលអ្នកប្រហែលជាចូលចិត្ត" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "មនុស្សមួយចំនួនអាចឆ្លើយតបបាន" @@ -7510,10 +8085,11 @@ msgstr "" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "" -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "មានអ្វីមួយខុសប្រក្រតី" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "មានអ្វីមួយខុសប្រក្រតី សូមព្យាយាមម្តងទៀត" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "មានអ្វីមួយខុសប្រក្រតី សូមព្យាយាមម្តងទៀត" -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "មានអ្វីមួយខុសប្រក្រតី" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "" @@ -7539,20 +8118,23 @@ msgstr "" msgid "Something wrong? Let us know." msgstr "" -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "តម្រៀបការឆ្លើយតប" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "តម្រៀបការឆ្លើយតបដោយ" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "តម្រៀបការឆ្លើយតបទៅនឹងការបង្ហោះដូចគ្នាដោយ៖" @@ -7579,7 +8161,7 @@ msgstr "សារឥតបានការ; ការលើកឡើង ឬកា msgid "Sports" msgstr "កីឡា" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "" @@ -7601,9 +8183,9 @@ msgstr "" msgid "Start chat with {displayName}" msgstr "ចាប់ផ្តើមជជែកជាមួយ {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "កញ្ចប់ចាប់ផ្តើម" @@ -7611,12 +8193,12 @@ msgstr "កញ្ចប់ចាប់ផ្តើម" msgid "Starter pack by {0}" msgstr "កញ្ចប់ចាប់ផ្តើមដោយ {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "កញ្ចប់ចាប់ផ្តើមដោយអ្នក" @@ -7638,19 +8220,21 @@ msgstr "កញ្ចប់ចាប់ផ្តើមអនុញ្ញាតឱ msgid "Status Page" msgstr "ទំព័រស្ថានភាព" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "ជំហានទី {0} នៃ {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "កន្លែងផ្ទុកត្រូវបានសម្អាត អ្នកត្រូវចាប់ផ្តើមកម្មវិធីឡើងវិញឥឡូវនេះ" -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "" @@ -7676,10 +8260,14 @@ msgstr "" msgid "Subscribe" msgstr "ជាវ" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "ជាវ @{0} ដើម្បីប្រើស្លាកទាំងនេះ៖" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "ជាវអ្នកដាក់ស្លាក" @@ -7692,8 +8280,12 @@ msgstr "ជាវអ្នកដាក់ស្លាកនេះ" msgid "Subscribe to this list" msgstr "ជាវបញ្ជីនេះ" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "ជោគជ័យ!" @@ -7705,7 +8297,7 @@ msgstr "" msgid "Suggested Accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "បានណែនាំសម្រាប់អ្នក" @@ -7714,26 +8306,26 @@ msgstr "បានណែនាំសម្រាប់អ្នក" msgid "Suggestive" msgstr "ណែនាំ" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "គាំទ្រ" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "ប្តូរគណនី" @@ -7742,24 +8334,24 @@ msgstr "ប្តូរគណនី" msgid "Switch Account" msgstr "ប្តូរគណនី" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "ប្រព័ន្ធ" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "កំណត់ហេតុប្រព័ន្ធ" @@ -7767,6 +8359,18 @@ msgstr "កំណត់ហេតុប្រព័ន្ធ" msgid "Tags only" msgstr "ស្លាកតែប៉ុណ្ណោះ" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "ប្រាប់យើងបន្តិចទៀត" msgid "Terms" msgstr "លក្ខខណ្ឌ" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "លក្ខខណ្ឌនៃសេវាកម្ម" @@ -7848,10 +8454,6 @@ msgstr "វាលបញ្ចូលអត្ថបទ" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "សូមអរគុណ! អ៊ីមែលរបស់អ្នកត្រូវបានផ្ទៀងផ្ទាត់ដោយជោគជ័យ" - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "សូមអរគុណ។ របាយការណ៍របស់អ្នកត្រូវបានផ្ញើ" @@ -7864,28 +8466,28 @@ msgstr "សូមអរគុណ អ្នកបានផ្ទៀងផ្ទ msgid "That contains the following:" msgstr "ដែល​មាន​ដូច​ខាង​ក្រោម៖" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "ចំណុចទាញនោះត្រូវបានយករួចហើយ" - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "កញ្ចប់ចាប់ផ្តើមនោះមិនត្រូវបានរកឃើញទេ" +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "គណនីនឹងអាចធ្វើអន្តរកម្មជាមួយអ្នកបន្ទាប់ពីឈប់ទប់ស្កាត់" @@ -7900,7 +8502,7 @@ msgstr "" msgid "The author of this thread has hidden this reply." msgstr "អ្នកនិពន្ធនៃអត្ថបទនេះបានលាក់ការឆ្លើយតបនេះ" -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "កម្មវិធីបណ្តាញ Bluesky" @@ -7920,10 +8522,6 @@ msgstr "មតិព័ត៌មាន Discover" msgid "The Discover feed now knows what you like" msgstr "ឥឡូវនេះផ្ទាំងព័ត៌មាន Discover ដឹងពីអ្វីដែលអ្នកចូលចិត្ត" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "" - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "បទពិសោធន៍គឺប្រសើរជាងនៅក្នុងកម្មវិធី។ ទាញយក Bluesky ឥឡូវនេះ ហើយយើងនឹងយកមកវិញនូវកន្លែងដែលអ្នកបានចាកចេញ" @@ -7944,8 +8542,16 @@ msgstr "ស្លាកខាងក្រោមត្រូវបានអនុ msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "ប្រកាស​អាច​ត្រូវ​បាន​លុប" @@ -7953,9 +8559,10 @@ msgstr "ប្រកាស​អាច​ត្រូវ​បាន​លុប msgid "The Privacy Policy has been moved to <0/>" msgstr "គោលការណ៍ឯកជនភាពត្រូវបានផ្លាស់ទីទៅ <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "វីដេអូដែលបានជ្រើសរើសមានទំហំធំជាង 100 MB" +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "" #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "លក្ខខណ្ឌនៃសេវាកម្មត្រូវប msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "លេខកូដផ្ទៀងផ្ទាត់ដែលអ្នកបានផ្តល់មិនត្រឹមត្រូវទេ។ សូមប្រាកដថាអ្នកបានប្រើតំណផ្ទៀងផ្ទាត់ត្រឹមត្រូវ ឬស្នើសុំថ្មីមួយ" -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "" @@ -7990,14 +8597,14 @@ msgstr "" msgid "There is no time limit for account deactivation, come back any time." msgstr "មិនមានកំណត់ពេលវេលាសម្រាប់ការបិទគណនីទេ ត្រលប់មកវិញនៅពេលណាក៏បាន" -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "មានបញ្ហាក្នុងការភ្ជាប់ទៅ Tenor" #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "មានបញ្ហាក្នុងការទាក់ទងម៉ាស៊ីនមេ" @@ -8006,17 +8613,12 @@ msgstr "មានបញ្ហាក្នុងការទាក់ទងម៉ msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "មានបញ្ហាក្នុងការទាក់ទងម៉ាស៊ីនមេ សូមពិនិត្យមើលការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក ហើយព្យាយាមម្តងទៀត" -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "មានបញ្ហាក្នុងការទាក់ទងម៉ាស៊ីនមេរបស់អ្នក" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "មានបញ្ហាក្នុងការទាញយកការជូនដំណឹង។ ចុចទីនេះដើម្បីព្យាយាមម្តងទៀត" -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "មានបញ្ហាក្នុងការទាញយកសារបង្ហោះ។ ចុចទីនេះដើម្បីព្យាយាមម្តងទៀត" @@ -8037,7 +8639,7 @@ msgstr "មានបញ្ហាក្នុងការទៅយកបញ្ជ msgid "There was an issue fetching your service info" msgstr "មានបញ្ហាក្នុងការទាញយកព័ត៌មានសេវាកម្មរបស់អ្នក" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "មាន​បញ្ហា​ក្នុង​ការ​ដក​មតិ​ព័ត៌មាន​នេះ​ចេញ។ សូមពិនិត្យមើលការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក ហើយព្យាយាមម្តងទៀត" @@ -8052,9 +8654,9 @@ msgstr "មានបញ្ហាក្នុងការផ្ញើរបាយ msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "មានបញ្ហាក្នុងការធ្វើបច្ចុប្បន្នភាពព័ត៌មានរបស់អ្នក សូមពិនិត្យមើលការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក ហើយព្យាយាមម្តងទៀត" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "មានបញ្ហាក្នុងការធ្វើបច្ច msgid "There was an issue! {0}" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "" msgid "There was an issue. Please check your internet connection and try again." msgstr "មាន​បញ្ហា។ សូមពិនិត្យមើលការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក ហើយព្យាយាមម្តងទៀត" -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "មានបញ្ហាដែលមិននឹកស្មានដល់នៅក្នុងកម្មវិធី។ សូមប្រាប់ពួកយើងប្រសិនបើរឿងនេះកើតឡើងចំពោះអ្នក" @@ -8089,7 +8691,7 @@ msgstr "មានបញ្ហាដែលមិននឹកស្មានដល msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "មានការប្រញាប់ប្រញាល់នៃអ្នកប្រើប្រាស់ថ្មីទៅកាន់ Bluesky! យើងនឹងដំណើរការគណនីរបស់អ្នកឱ្យបានឆាប់តាមដែលយើងអាចធ្វើបាន" -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "ការកំណត់ទាំងនេះអនុវត្តចំពោះតែព័ត៌មានខាងក្រោមប៉ុណ្ណោះ" @@ -8146,7 +8748,7 @@ msgstr "ខ្លឹមសារនេះត្រូវបានបង្ហោ msgid "This content is not available because one of the users involved has blocked the other." msgstr "ខ្លឹមសារនេះមិនមានទេ ដោយសារអ្នកប្រើប្រាស់ម្នាក់ដែលពាក់ព័ន្ធបានរារាំងអ្នកផ្សេង" -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "ខ្លឹមសារនេះមិនអាចមើលបានដោយគ្មានគណនី Bluesky ទេ" @@ -8158,6 +8760,10 @@ msgstr "" msgid "This email is already associated with your account." msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "មុខងារនេះស្ថិតនៅក្នុងបេតា។ អ្នកអាចអានបន្ថែមអំពីការនាំចេញឃ្លាំងនៅក្នុង <0>ប្លុកនេះ" @@ -8170,7 +8776,7 @@ msgstr "" msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "មុខងារនេះមិនមានពេលប្រើពាក្យសម្ងាត់កម្មវិធីទេ។ សូមចូលដោយប្រើពាក្យសម្ងាត់ចម្បងរបស់អ្នក" -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "បច្ចុប្បន្ន​ព័ត៌មាន​នេះ​កំពុង​ទទួល​បាន​ចរាចរណ៍​ខ្ពស់ ហើយ​មិន​អាច​ប្រើ​បាន​ជា​បណ្ដោះអាសន្ន។ សូមព្យាយាមម្តងទៀតនៅពេលក្រោយ" @@ -8209,11 +8815,11 @@ msgstr "ស្លាកនេះត្រូវបានអនុវត្តដ msgid "This label was applied by you." msgstr "ស្លាកនេះត្រូវបានអនុវត្តដោយអ្នក" -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "អ្នកដាក់ស្លាកនេះមិនទាន់បានប្រកាសថាស្លាកណាដែលវាបោះពុម្ពទេ ហើយប្រហែលជាមិនសកម្មទេ" -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "តំណភ្ជាប់នេះនាំអ្នកទៅកាន់គេហទំព័រខាងក្រោម៖" @@ -8233,29 +8839,28 @@ msgstr "" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "សេវាកម្មសម្របសម្រួលនេះមិនមានទេ។ សូមមើលខាងក្រោមសម្រាប់ព័ត៌មានលម្អិតបន្ថែម។ ប្រសិនបើបញ្ហានេះនៅតែបន្តកើតមាន សូមទាក់ទងមកយើងខ្ញុំ" -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "ប្រកាសនេះអះអាងថាត្រូវបានបង្កើតឡើងនៅលើ <0>{0} ប៉ុន្តែត្រូវបានមើលឃើញជាលើកដំបូងដោយ Bluesky នៅលើ <1>{1}" -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "ប្រកាសនេះត្រូវបានលុប" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "ប្រកាសនេះនឹងត្រូវបានលាក់ពីមតិព័ត៌មាន និងខ្សែស្រលាយ។ នេះមិនអាចត្រឡប់វិញបានទេ" -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "អ្នកនិពន្ធនៃប្រកាសនេះបានបិទការបង្ហោះសម្រង់" @@ -8263,11 +8868,11 @@ msgstr "អ្នកនិពន្ធនៃប្រកាសនេះបាន msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "ការ​ឆ្លើយតប​នេះ​នឹង​ត្រូវ​បាន​តម្រៀប​ជា​ផ្នែក​ដែល​លាក់​នៅ​ផ្នែក​ខាង​ក្រោម​នៃ​ខ្សែ​ស្រឡាយ​របស់​អ្នក ហើយ​នឹង​បិទ​ការ​ជូន​ដំណឹង​សម្រាប់​ការ​ឆ្លើយតប​ជា​បន្ត​បន្ទាប់ - ទាំង​សម្រាប់​ខ្លួន​អ្នក​និង​អ្នក​ដទៃ" -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "សេវាកម្មនេះមិនបានផ្តល់លក្ខខណ្ឌនៃសេវាកម្ម ឬគោលការណ៍ឯកជនភាពទេ" @@ -8275,6 +8880,10 @@ msgstr "សេវាកម្មនេះមិនបានផ្តល់លក msgid "This should create a domain record at:" msgstr "វាគួរបង្កើតកំណត់ត្រាដែននៅ៖" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" @@ -8316,16 +8925,18 @@ msgstr "អ្នកប្រើប្រាស់នេះមិនតាមដ msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "វានឹងលុប \"{0}\" ចេញពីពាក្យដែលអ្នកបានបិទ។ អ្នកតែងតែអាចបន្ថែមវាត្រឡប់មកវិញនៅពេលក្រោយ" -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "វានឹងដក @{0} ចេញពីបញ្ជីចូលប្រើរហ័ស" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "វានឹងលុបការបង្ហោះរបស់អ្នកចេញពីប្រកាសសម្រង់នេះសម្រាប់អ្នកប្រើប្រាស់ទាំងអស់ ហើយជំនួសវាដោយកន្លែងដាក់" -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "" @@ -8334,24 +8945,27 @@ msgstr "" msgid "Thread preferences" msgstr "ចំណូលចិត្តខ្សែស្រឡាយ" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "ចំណូលចិត្តខ្សែស្រឡាយ" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "" @@ -8376,42 +8990,56 @@ msgstr "តើអ្នកចង់ផ្ញើរបាយការណ៍នេ msgid "Today" msgstr "ថ្ងៃនេះ" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "បិទ/បើកការទម្លាក់ចុះ" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "បិទ/បើក ដើម្បីបើក ឬបិទមាតិកាសម្រាប់មនុស្សពេញវ័យ" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "កំពូល" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "បកប្រែ" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "" @@ -8428,14 +9056,10 @@ msgstr "ព្យាយាមម្តងទៀត" msgid "TV" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "ការផ្ទៀងផ្ទាត់កត្តាពីរ (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "វាយបញ្ចូលសាររបស់អ្នកនៅទីនេះ" @@ -8453,7 +9077,7 @@ msgstr "មិនអាចភ្ជាប់បានទេ។ សូមពិ #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "មិនអាចទាក់ទងសេវាកម្មរបស់ msgid "Unable to delete" msgstr "មិនអាចលុបបានទេ" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "ឈប់ទប់ស្កាត់" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "ឈប់ទប់ស្កាត់" @@ -8486,7 +9126,7 @@ msgstr "ឈប់ទប់ស្កាត់" msgid "Unblock account" msgstr "បិទគណនី" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "បិទគណនី?" @@ -8495,13 +9135,13 @@ msgstr "បិទគណនី?" msgid "Unblock list" msgstr "" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "បោះបង់ការបង្ហោះឡើងវិញ" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "ឈប់តាម" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "ឈប់តាម {0}" @@ -8523,7 +9163,7 @@ msgstr "ឈប់តាមដានគណនី" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "" @@ -8555,8 +9195,8 @@ msgstr "បើក​សំឡេង" msgid "Unmute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "បើកការសន្ទនា" msgid "Unmute list" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "" @@ -8597,8 +9237,8 @@ msgstr "" msgid "Unpin from home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "" @@ -8614,8 +9254,8 @@ msgstr "" msgid "Unpinned from your feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "" @@ -8636,7 +9276,7 @@ msgstr "ឈប់ជាវពីអ្នកដាក់ស្លាកនេះ msgid "Unsubscribed from list" msgstr "ឈប់ជាវពីបញ្ជី" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "ប្រភេទវីដេអូដែលមិនគាំទ្រ" @@ -8662,8 +9302,8 @@ msgstr "ធ្វើបច្ចុប្បន្នភាព <0>{displayName}< #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "" @@ -8676,17 +9316,17 @@ msgstr "ធ្វើបច្ចុប្បន្នភាពទៅ {domain}" msgid "Update your email" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "ការធ្វើបច្ចុប្បន្នភាពឯកសារភ្ជាប់សម្រង់បានបរាជ័យ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "ការធ្វើបច្ចុប្បន្នភាពលទ្ធភាពមើលឃើញការឆ្លើយតបបានបរាជ័យ" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "កំពុងធ្វើបច្ចុប្បន្នភាព..." @@ -8698,20 +9338,20 @@ msgstr "បង្ហោះរូបថតជំនួសវិញ" msgid "Upload a text file to:" msgstr "បង្ហោះឯកសារអត្ថបទទៅ៖" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "បង្ហោះពីកាមេរ៉ា" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "បង្ហោះពីឯកសារ" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "បង្ហោះពីបណ្ណាល័យ" msgid "Uploading images..." msgstr "កំពុងបង្ហោះរូបភាព..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "កំពុងបង្ហោះរូបភាពតូចនៃតំណ..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "កំពុងបង្ហោះវីដេអូ..." @@ -8761,6 +9401,10 @@ msgstr "ប្រើបានណែនាំ" msgid "Use this to sign in to the other app along with your handle." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "ប្រើដោយ៖" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "ធ្វើបច្ចុប្បន្នភាពបញ្ជីអ្នកប្រើប្រាស់" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "ឈ្មោះអ្នកប្រើប្រាស់ ឬអាសយដ្ឋានអ៊ីមែល" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "អ្នក​ប្រើ​តាម​ដោយ <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "អ្នកប្រើប្រាស់ដែលខ្ញុំធ្វើតាម" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "អ្នកប្រើប្រាស់នៅក្នុង \"{0}\"" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "" @@ -8846,11 +9502,11 @@ msgstr "តម្លៃ៖" msgid "Verification failed, please try again." msgstr "" -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "" @@ -8870,8 +9526,15 @@ msgstr "" msgid "Verify account" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "" @@ -8880,21 +9543,20 @@ msgstr "" msgid "Verify DNS Record" msgstr "ផ្ទៀងផ្ទាត់ DNS Record" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "ផ្ទៀងផ្ទាត់ប្រអប់អ៊ីមែល" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "ផ្ទៀងផ្ទាត់ឯកសារអត្ថបទ" msgid "Verify this account?" msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "ផ្ទៀងផ្ទាត់អ៊ីមែលរបស់អ្នក" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "ផ្ទៀងផ្ទាត់អ៊ីមែលរបស់អ្នក" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "កំណែ {appVersion}" +msgid "Version {0}" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "វីដេអូ" @@ -8928,7 +9598,7 @@ msgstr "វីដេអូ" msgid "Video failed to process" msgstr "វីដេអូបានបរាជ័យក្នុងដំណើរការ" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "" @@ -8942,15 +9612,15 @@ msgstr "" msgid "Video Games" msgstr "វីដេអូហ្គេម" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "រកមិនឃើញវីដេអូ" @@ -8958,11 +9628,11 @@ msgstr "រកមិនឃើញវីដេអូ" msgid "Video settings" msgstr "ការកំណត់វីដេអូ" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "បង្ហោះវីដេអូ" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "វីដេអូ៖ {0}" @@ -8979,11 +9649,11 @@ msgstr "" msgid "View {0}'s avatar" msgstr "មើលរូបតំណាងរបស់ {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "មើលប្រវត្តិរូបរបស់ {0}" @@ -8991,7 +9661,7 @@ msgstr "មើលប្រវត្តិរូបរបស់ {0}" msgid "View {displayName}'s profile" msgstr "មើលប្រវត្តិរូបរបស់ {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "មើលប្រវត្តិរូបរបស់អ្នកប្រើដែលត្រូវបានរារាំង" @@ -9009,7 +9679,6 @@ msgstr "មើលធាតុបំបាត់កំហុស" msgid "View details" msgstr "មើលព័ត៌មានលម្អិត" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "មើលព័ត៌មានលម្អិតសម្រាប់ការរាយការណ៍អំពីការរំលោភលើសិទ្ធិអ្នកនិពន្ធ" @@ -9022,23 +9691,23 @@ msgstr "មើល thread ពេញ" msgid "View information about these labels" msgstr "មើលព័ត៌មានអំពីស្លាកទាំងនេះ" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "មើលប្រវត្តិរូប" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "មើលរូបតំណាង" @@ -9054,28 +9723,28 @@ msgstr "" msgid "View users who like this feed" msgstr "មើលអ្នកប្រើប្រាស់ដែលចូលចិត្តព័ត៌មាននេះ" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "មើលគណនីដែលអ្នកបានទប់ស្កាត់" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "មើលព័ត៌មានរបស់អ្នក និងស្វែងយល់បន្ថែម" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "មើលបញ្ជីសម្របសម្រួលរបស់អ្នក" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "មើលគណនីដែលបានបិទរបស់អ្នក" @@ -9083,8 +9752,8 @@ msgstr "មើលគណនីដែលបានបិទរបស់អ្នក msgid "View your verifications" msgstr "" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "" @@ -9092,16 +9761,20 @@ msgstr "" msgid "Views video in immersive mode" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "ទស្សនាគេហទំព័រ" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "កម្រិតសំឡេង" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "ព្រមានខ្លឹមសារ និងត្រងពី msgid "Watch now" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "" + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "យើងមិនអាចស្វែងរកលទ្ធផលណាមួយសម្រាប់ hashtag នោះទេ" @@ -9128,7 +9809,7 @@ msgstr "យើងមិនអាចស្វែងរកលទ្ធផលណា msgid "We couldn't find any results for that topic." msgstr "" -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "យើងមិនអាចផ្ទុកការសន្ទនានេះបានទេ" @@ -9136,6 +9817,10 @@ msgstr "យើងមិនអាចផ្ទុកការសន្ទនាន msgid "We estimate {estimatedTime} until your account is ready." msgstr "យើងប៉ាន់ស្មាន {estimatedTime} រហូតដល់គណនីរបស់អ្នករួចរាល់" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "យើងបានផ្ញើអ៊ីមែលផ្ទៀងផ្ទាត់មួយផ្សេងទៀតទៅ <0>{0}" @@ -9148,15 +9833,15 @@ msgstr "យើងសង្ឃឹមថាអ្នកមានពេលវេល msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "យើង​បាន​អស់​ការ​ប្រកាស​ពី​ការ​តាម​ដាន​របស់​អ្នក។ នេះជាព័ត៌មានចុងក្រោយពី <0/>" -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "យើងមិនអាចកំណត់ថាតើអ្នកត្រូវបានអនុញ្ញាតឱ្យបង្ហោះវីដេអូឬអត់។ សូមព្យាយាមម្តងទៀត" @@ -9164,10 +9849,14 @@ msgstr "យើងមិនអាចកំណត់ថាតើអ្នកត្ msgid "We were unable to load your birth date preferences. Please try again." msgstr "យើងមិនអាចផ្ទុកចំណូលចិត្តថ្ងៃខែឆ្នាំកំណើតរបស់អ្នកបានទេ។ សូមព្យាយាមម្តងទៀត" -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "យើងមិនអាចផ្ទុកស្លាកសញ្ញាដែលបានកំណត់រចនាសម្ព័ន្ធរបស់អ្នកបានទេនៅពេលនេះ" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "យើង​មិន​អាច​តភ្ជាប់​បាន​ទេ។ សូមព្យាយាមម្តងទៀត ដើម្បីបន្តការដំឡើងគណនីរបស់អ្នក។ ប្រសិនបើវាបន្តបរាជ័យ អ្នកអាចរំលងលំហូរនេះ" @@ -9176,7 +9865,7 @@ msgstr "យើង​មិន​អាច​តភ្ជាប់​បាន​ msgid "We will let you know when your account is ready." msgstr "យើងនឹងប្រាប់អ្នកនៅពេលគណនីរបស់អ្នករួចរាល់" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -9184,6 +9873,22 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "យើងនឹងប្រើវាដើម្បីជួយសម្រួលបទពិសោធន៍របស់អ្នក" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "យើងកំពុងមានបញ្ហាបណ្តាញ ស msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "យើងពិតជារំភើបណាស់ដែលមានអ្នកចូលរួមជាមួយយើង" @@ -9205,15 +9910,15 @@ msgstr "យើងសុំទោស ប៉ុន្តែយើងមិនអ msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "យើងសុំទោស ប៉ុន្តែយើងមិនអាចផ្ទុកពាក្យដែលអ្នកបានបិទសំឡេងនៅពេលនេះបានទេ។ សូមព្យាយាមម្តងទៀត" -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "យើងសុំទោស ប៉ុន្តែការស្វែងរករបស់អ្នកមិនអាចបញ្ចប់បានទេ។ សូមព្យាយាមម្តងទៀតក្នុងរយៈពេលពីរបីនាទីទៀត" -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "យើងសុំទោស! ប្រកាសដែលអ្នកកំពុងឆ្លើយតបត្រូវបានលុប" -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "យើងសុំទោស! យើងមិនអាចស្វែងរកទំព័រដែលអ្នកកំពុងស្វែងរកបានទេ" @@ -9222,6 +9927,26 @@ msgstr "យើងសុំទោស! យើងមិនអាចស្វែង msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "យើងសុំទោស! អ្នក​អាច​ជាវ​បាន​តែ​អ្នក​ដាក់​ស្លាក​ម្ភៃ​ប៉ុណ្ណោះ ហើយ​អ្នក​បាន​ដល់​ចំនួន​កំណត់​របស់​អ្នក​ម្ភៃ​ហើយ" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "សូមស្វាគមន៍ការត្រឡប់មកវិញ" @@ -9240,7 +9965,7 @@ msgstr "តើអ្នកចង់ហៅកញ្ចប់ចាប់ផ្ត #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "មានរឿងអី?" @@ -9256,11 +9981,11 @@ msgstr "តើ​ភាសា​ណា​ខ្លះ​ត្រូវ​បា msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "តើភាសាមួយណាដែលអ្នកចង់ឃើញនៅក្នុងមតិព័ត៌មាន algorithmic របស់អ្នក?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "តើអ្នកណាអាចទាក់ទងជាមួយការបង្ហោះនេះ?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "អ្នកដែលអាចឆ្លើយបាន" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "" @@ -9322,12 +10047,12 @@ msgstr "ហេតុអ្វីបានជាអ្នកប្រើប្រ msgid "Write a message" msgstr "សរសេរសារ" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "សរសេរសារបង្ហោះ" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "សរសេរការឆ្លើយតបរបស់អ្នក" @@ -9358,11 +10083,11 @@ msgstr "បាទ បិទដំណើរការ" msgid "Yes, delete this starter pack" msgstr "បាទ/ចាស លុបកញ្ចប់ចាប់ផ្តើមនេះ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "បាទ ផ្ដាច់" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "បាទ លាក់" @@ -9378,6 +10103,10 @@ msgstr "ម្សិលមិញ" msgid "You" msgstr "អ្នក" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "" @@ -9386,6 +10115,10 @@ msgstr "" msgid "You are creating an account on" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "អ្នកស្ថិតនៅក្នុងជួរ" @@ -9403,7 +10136,7 @@ msgstr "" msgid "You are not allowed to go live" msgstr "" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យបង្ហោះវីដេអូទេ" @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "" @@ -9441,10 +10173,18 @@ msgstr "អ្នកក៏អាចរកឃើញ Custom Feeds ថ្មីដ msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "អ្នកក៏អាចបិទគណនីរបស់អ្នកជាបណ្ដោះអាសន្នជំនួសវិញ ហើយបើកដំណើរការវាឡើងវិញបានគ្រប់ពេល" -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "អ្នកអាចបន្តការសន្ទនាបន្តដោយមិនគិតពីការកំណត់ណាមួយដែលអ្នកជ្រើសរើស" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "ឥឡូវនេះ អ្នកអាចចូលដោយប្រ msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "អ្នកអាចដំណើរការគណនីរបស់អ្នកឡើងវិញ ដើម្បីបន្តចូល។ ប្រវត្តិរូប និងការបង្ហោះរបស់អ្នកនឹងអាចមើលឃើញដោយអ្នកប្រើប្រាស់ផ្សេងទៀត" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "" #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "" @@ -9472,7 +10212,7 @@ msgstr "អ្នកមិនមានអ្នកតាមទេ" msgid "You don't follow any users who follow @{name}." msgstr "អ្នកមិនធ្វើតាមអ្នកប្រើប្រាស់ណាដែលតាមដានទេ" -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "" @@ -9480,15 +10220,15 @@ msgstr "" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "អ្នកមិនទាន់មានលេខកូដអញ្ជើញនៅឡើយទេ! យើង​នឹង​ផ្ញើ​ជូន​អ្នក​ខ្លះ​នៅ​ពេល​អ្នក​នៅ​លើ Bluesky យូរ​ជាង​នេះ​បន្តិច" -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "អ្នកមិនមានព័ត៌មានដែលបានខ្ទាស់ណាមួយទេ" -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "អ្នកមិនមានព័ត៌មានដែលបានរក្សាទុកទេ" -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "អ្នកបានរារាំងអ្នកនិពន្ធ ឬអ្នកត្រូវបានរារាំងដោយអ្នកនិពន្ធ" @@ -9502,6 +10242,10 @@ msgstr "អ្នកបានទប់ស្កាត់អ្នកប្រើ msgid "You have blocked this user. You cannot view their content." msgstr "អ្នកបានរារាំងអ្នកប្រើប្រាស់នេះ។ អ្នកមិនអាចមើលមាតិការបស់ពួកគេបានទេ" +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "អ្នកបានបិទគណនីនេះ" msgid "You have muted this user" msgstr "អ្នកបានបិទអ្នកប្រើប្រាស់នេះ" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "អ្នកមិនទាន់មានការសន្ទនានៅឡើយទេ។ ចាប់ផ្តើមមួយ!" @@ -9547,7 +10291,7 @@ msgstr "អ្នកមិនទាន់បានបិទគណនីណាម msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "អ្នកមិនទាន់បានបិទគណនីណាមួយនៅឡើយទេ។ ដើម្បីបិទគណនី សូមចូលទៅកាន់កម្រងព័ត៌មានរបស់ពួកគេ ហើយជ្រើសរើស \"បិទគណនី\" ពីម៉ឺនុយនៅលើគណនីរបស់ពួកគេ" -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "អ្នកបានឈានដល់ទីបញ្ចប់ហើយ" @@ -9572,6 +10316,10 @@ msgstr "អ្នកមិនទាន់បានបិទពាក្យ ឬ msgid "You hid this reply." msgstr "អ្នកបានលាក់ការឆ្លើយតបនេះ" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "អ្នកអាចប្តឹងតវ៉ាចំពោះស្លាកដែលមិនមែនជាខ្លួនឯង ប្រសិនបើអ្នកមានអារម្មណ៍ថាពួកគេត្រូវបានដាក់ក្នុងកំហុស" @@ -9592,7 +10340,7 @@ msgstr "អ្នកអាចបន្ថែមបានត្រឹមតែ 3 msgid "You may only select up to 4 images" msgstr "អ្នកអាចជ្រើសរើសបានត្រឹមតែ 4 រូបភាពប៉ុណ្ណោះ" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "" @@ -9600,6 +10348,14 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "អ្នក​ត្រូវ​តែ​តាម​យ៉ាង​ហោច​ណាស់​ប្រាំពីរ​នាក់​ផ្សេង​ទៀត​ដើម្បី​បង្កើត​កញ្ចប់​ចាប់ផ្ដើម" +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "អ្នកត្រូវតែផ្តល់សិទ្ធិចូលប្រើបណ្ណាល័យរូបថតរបស់អ្នក ដើម្បីរក្សាទុកកូដ QR" @@ -9608,6 +10364,11 @@ msgstr "អ្នកត្រូវតែផ្តល់សិទ្ធិចូ msgid "You must select at least one labeler for a report" msgstr "អ្នកត្រូវតែជ្រើសរើសស្លាកសញ្ញាយ៉ាងហោចណាស់មួយសម្រាប់របាយការណ៍" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "" @@ -9616,7 +10377,7 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "ពីមុនអ្នកបានបិទដំណើរការ @{0}" -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "" @@ -9628,16 +10389,20 @@ msgstr "" msgid "You reacted {0} to {1}" msgstr "" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "អ្នកនឹងត្រូវបានចេញពីគណនីរបស់អ្នកទាំងអស់" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "អ្នក​នឹង​លែង​ទទួល​បាន​ការ​ជូន​ដំណឹង​សម្រាប់​ខ្សែ​នេះ​ទៀត​ហើយ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "ឥឡូវនេះ អ្នកនឹងទទួលបានការជូនដំណឹងសម្រាប់អត្ថបទនេះ" @@ -9657,11 +10422,11 @@ msgstr "អ្នក៖ {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "អ្នក៖ {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "អ្នក​នឹង​ធ្វើ​តាម​អ្នក​ប្រើ​ដែល​បាន​ណែនាំ និង​មតិព័ត៌មាន​នៅ​ពេល​អ្នក​បញ្ចប់​ការ​បង្កើត​គណនី​របស់​អ្នក" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "អ្នកនឹងធ្វើតាមអ្នកប្រើប្រាស់ដែលបានណែនាំ នៅពេលអ្នកបញ្ចប់ការបង្កើតគណនីរបស់អ្នក" @@ -9673,9 +10438,9 @@ msgstr "អ្នកនឹងធ្វើតាមមនុស្សទាំង msgid "You'll follow these people right away" msgstr "អ្នកនឹងធ្វើតាមមនុស្សទាំងនេះភ្លាមៗ" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "អ្នកនឹងទទួលបានអ៊ីមែលនៅ <0>{0} ដើម្បីផ្ទៀងផ្ទាត់ថាជាអ្នក" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "អ្នកបានជ្រើសរើសលាក់ពាក្យ msgid "You've found some people to follow" msgstr "" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "អ្នក​បាន​ដល់​ចុង​បញ្ចប់​នៃ​ព័ត៌មាន​របស់​អ្នក​ហើយ! ស្វែងរកគណនីមួយចំនួនទៀតដើម្បីតាមដាន" @@ -9711,19 +10480,23 @@ msgstr "អ្នក​បាន​ដល់​ចុង​បញ្ចប់​ msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "អ្នកបានឈានដល់ដែនកំណត់ប្រចាំថ្ងៃរបស់អ្នកសម្រាប់ការបង្ហោះវីដេអូ (ច្រើនបៃ)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "អ្នកបានឈានដល់ដែនកំណត់ប្រចាំថ្ងៃរបស់អ្នកសម្រាប់ការបង្ហោះវីដេអូ (វីដេអូច្រើនពេក)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "គណនីរបស់អ្នក។" @@ -9735,7 +10508,7 @@ msgstr "គណនីរបស់អ្នកត្រូវបានលុប" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "គណនីរបស់អ្នកមិនទាន់ចាស់គ្រប់គ្រាន់ក្នុងការបង្ហោះវីដេអូ។ សូមព្យាយាមម្តងទៀតនៅពេលក្រោយ" @@ -9751,11 +10524,11 @@ msgstr "" msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "ថ្ងៃខែឆ្នាំកំណើតរបស់អ្នក" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "កម្មវិធីរុករកតាមអ៊ីនធឺណិតរបស់អ្នកមិនគាំទ្រទ្រង់ទ្រាយវីដេអូទេ។ សូមសាកល្បងកម្មវិធីរុករកផ្សេង" @@ -9771,13 +10544,15 @@ msgstr "" msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "អ៊ីមែលរបស់អ្នកហាក់ដូចជាមិនត្រឹមត្រូវ" @@ -9786,15 +10561,11 @@ msgstr "អ៊ីមែលរបស់អ្នកហាក់ដូចជាម msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "អ៊ីមែលរបស់អ្នកមិនទាន់ត្រូវបានផ្ទៀងផ្ទាត់នៅឡើយ។ នេះគឺជាជំហានសុវត្ថិភាពដ៏សំខាន់មួយដែលយើងណែនាំ" - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "ចូលចិត្តដំបូងរបស់អ្នក។" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "" @@ -9806,19 +10577,15 @@ msgstr "មតិព័ត៌មានខាងក្រោមរបស់អ្ msgid "Your full handle will be <0>@{0}" msgstr "ចំណុចទាញពេញលេញរបស់អ្នកនឹងមាន <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "" @@ -9835,15 +10602,15 @@ msgstr "ពាក្យដែលអ្នកបានបិទ" msgid "Your password has been changed successfully!" msgstr "ពាក្យសម្ងាត់របស់អ្នកត្រូវបានផ្លាស់ប្តូរដោយជោគជ័យ" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "ប្រកាសរបស់អ្នកត្រូវបានផ្សព្វផ្សាយ" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "ប្រកាសរបស់អ្នកត្រូវបានបោះពុម្ពផ្សាយ" @@ -9851,15 +10618,19 @@ msgstr "ប្រកាសរបស់អ្នកត្រូវបានបោ msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "ការបង្ហោះ ការចូលចិត្ត និងប្លុករបស់អ្នកគឺសាធារណៈ។ ការបិទសំឡេងមានលក្ខណៈឯកជន" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "ប្រវត្តិរូប ការបង្ហោះ មតិព័ត៌មាន និងបញ្ជីរបស់អ្នកនឹងលែងអាចមើលឃើញដោយអ្នកប្រើប្រាស់ Bluesky ផ្សេងទៀត។ អ្នកអាចដំណើរការគណនីរបស់អ្នកឡើងវិញបានគ្រប់ពេលដោយការចូល" -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "ការឆ្លើយតបរបស់អ្នកត្រូវបានបោះពុម្ពផ្សាយ" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -9867,7 +10638,7 @@ msgstr "" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "របាយការណ៍របស់អ្នកនឹងត្រូវបានផ្ញើទៅកាន់សេវាសម្របសម្រួល Bluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "" diff --git a/src/locale/locales/ko/messages.po b/src/locale/locales/ko/messages.po index da1c0f4d32..d3c9491302 100644 --- a/src/locale/locales/ko/messages.po +++ b/src/locale/locales/ko/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ko\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 01:46\n" "Last-Translator: \n" "Language-Team: Korean\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -27,7 +27,7 @@ msgstr "(활성)" msgid "(contains embedded content)" msgstr "(임베드 콘텐츠 포함)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(이메일 없음)" @@ -79,9 +79,9 @@ msgstr "{0, plural, other {# 재게시}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, other {#초}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "읽지 않은 항목 {0, plural, other {#개}}" @@ -90,17 +90,18 @@ msgstr "읽지 않은 항목 {0, plural, other {#개}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, other {#개월}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, other {팔로워}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, other {팔로우 중}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, other {좋아요}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, other {좋아요}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, other {게시물}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, other {인용}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, other {재게시}}" @@ -135,6 +138,10 @@ msgstr "<0><1>태그에서 {0}" msgid "{0} <0>in <1>text & tags" msgstr "<0><1>텍스트 및 태그에서 {0}" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} 팔로우 중" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "{0} 님은 라이브 중" @@ -143,11 +150,15 @@ msgstr "{0} 님은 라이브 중" msgid "{0} is not a valid URL" msgstr "{0}은(는) 올바른 URL이 아닙니다" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "{0}은(는) 사용할 수 없습니다" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "이번 주에 {0}명이 가입함" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0}/{1}" @@ -164,14 +175,22 @@ msgstr "{0} 님이 {1}(으)로 반응함" msgid "{0} reacted {1} to {2}" msgstr "{0} 님이 {2}에 {1}(으)로 반응함" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{1} 님의 리스트 {0}, {2}명이 좋아요 표시함" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{1} 님의 리스트 {0}" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "{0} 님의 아바타" #: src/screens/StarterPack/Wizard/StepDetails.tsx:74 msgid "{0}'s favorite feeds and people - join me!" -msgstr "{0} 님이 좋아하는 피드 및 사람들 - 함께하세요!" +msgstr "{0} 님이 좋아하는 피드 및 사용자 - 함께하세요!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:46 msgid "{0}'s starter pack" @@ -197,12 +216,12 @@ msgstr "{0}분" msgid "{0}s" msgstr "{0}초" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "읽지 않은 항목 {count, plural, other {#개}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "{displayName} 님의 스타터 팩" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, other {시간}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, other {분}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 나를 팔로우했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 맞춤 피드를 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 게시물을 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 재게시물을 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 계정을 인증 취소했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 게시물을 재게시했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 재게시물을 재게시했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 스타터 팩으로 가입했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 나를 인증했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} 님이 나를 팔로우했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} 님이 나를 맞팔로우했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} 님이 내 맞춤 피드를 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} 님이 내 게시물을 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} 님이 내 재게시물을 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} 님이 나를 인증 취소했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} 님이 내 게시물을 재게시했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} 님이 내 재게시물을 재게시했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} 님이 내 스타터 팩으로 가입했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} 님이 나를 인증했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 나를 팔로우했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 맞춤 피드를 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 게시물을 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 재게시물을 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 계정을 인증 취소했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 게시물을 재게시했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 재게시물을 재게시했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 스타터 팩으로 가입했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 나를 인증했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} 님이 나를 팔로우했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} 님이 나를 맞팔로우했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} 님이 내 맞춤 피드를 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} 님이 내 게시물을 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} 님이 내 재게시물을 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} 님이 나를 인증 취소했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} 님이 내 게시물을 재게시했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} 님이 내 재게시물을 재게시했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} 님이 내 스타터 팩으로 가입했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} 님이 나를 인증했습니다" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} 팔로우 중" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "{handle} 님에게 메시지를 보낼 수 없습니다" @@ -392,7 +410,7 @@ msgstr "{joinedAllTimeCount, plural, other {#명}}의 사용자가 가입했습 msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "{minutes, plural, other {#분}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "읽지 않은 항목 {notificationCount, plural, other {#개}}" @@ -432,12 +450,12 @@ msgstr "{userName} 님의 인증" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} 외 {2, plural, other {#명}}이 스타터 팩에 포함됩니다" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} 외 {2, plural, other {#개}}가 스타터 팩에 포함됩니다" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, other {팔로워}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, other {팔로우 중}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} 및<1> <2>{1}이(가) 스타터 팩에 포함됩니다" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0}이(가) 스타터 팩에 포함됩니다" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0}의 멤버" @@ -466,11 +484,11 @@ msgstr "<0>{0}의 멤버" msgid "<0>{date} at {time}" msgstr "<0>{date} {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>실험적: 이 설정을 활성화하면 내가 팔로우하는 사용자로부터만 답글 및 인용 알림을 받습니다. 시간이 지남에 따라 여기에 더 많은 제어 기능을 추가할 예정입니다." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<0>로그인<1>하거나 <2>계정을 만들고<3> <4>뉴스, 스포츠, 정치 등 Bluesky의 다양한 소식을 검색하세요." -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>나와<1> <2>{0} 님이 스타터 팩에 포함됩니다" @@ -503,10 +521,14 @@ msgstr "메시지" msgid "A new form of verification" msgstr "새로운 방식의 인증" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "팔로우 버튼 옆에 새 활동 알림 기능을 나타내는 종 모양 아이콘이 있는 프로필 페이지 스크린샷" + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "정보" @@ -524,25 +546,25 @@ msgstr "대화 요청 수락하기" msgid "Accept Request" msgstr "요청 수락" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "접근성" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "접근성 설정" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "계정" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "계정을 팔로우했습니다" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "계정 뮤트됨" msgid "Account Muted by List" msgstr "리스트로 계정 뮤트됨" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "계정 옵션" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "빠른 액세스에서 계정 제거" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "계정을 언팔로우했습니다" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "계정을 언뮤트했습니다" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "물결 모양의 파란색 체크 표시 <0><1/> 가 있는 계정은 다른 계정을 인증할 수 있습니다. 이러한 신뢰할 수 있는 인증자는 Bluesky에서 선정합니다." +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "다른 사용자의 활동" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "활동 알림" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "추가" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "계속하려면 {0}명 더 추가하기" @@ -634,8 +666,8 @@ msgstr "계정 추가" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "대체 텍스트 추가" msgid "Add alt text (optional)" msgstr "대체 텍스트 추가 (선택 사항)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "다른 계정 추가" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "다른 게시물 추가하기" @@ -670,8 +702,8 @@ msgstr "앱 비밀번호 추가" msgid "Add emoji reaction" msgstr "이모티콘 반응 추가" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "세부 정보 추가 (선택 사항)" @@ -683,18 +715,18 @@ msgstr "선택한 설정으로 뮤트 단어 추가" msgid "Add muted words and tags" msgstr "뮤트할 단어 및 태그 추가" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "새 게시물 추가" #: src/view/screens/ProfileList.tsx:932 #: src/view/screens/ProfileList.tsx:950 msgid "Add people" -msgstr "사람 추가" +msgstr "사용자 추가" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79 msgid "Add people to list" -msgstr "리스트에 사람들 추가하기" +msgstr "리스트에 사용자 추가하기" #: src/components/dms/EmojiPopup.android.tsx:55 msgid "Add Reaction" @@ -704,13 +736,13 @@ msgstr "반응 추가" msgid "Add recommended feeds" msgstr "추천 피드 추가" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "스타터 팩에 피드를 추가해 보세요!" #: src/screens/Feeds/NoFollowingFeed.tsx:41 msgid "Add the default feed of only people you follow" -msgstr "내가 팔로우하는 사람의 기본 피드만 추가하기" +msgstr "내가 팔로우하는 사용자의 기본 피드만 추가하기" #: src/screens/Settings/components/ChangeHandleDialog.tsx:406 msgid "Add the following DNS record to your domain:" @@ -725,10 +757,6 @@ msgstr "이 피드를 내 피드에 추가하기" msgid "Add to lists" msgstr "리스트에 추가" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "내 피드에 추가" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "리스트에 사용자 추가" @@ -738,11 +766,11 @@ msgstr "리스트에 사용자 추가" msgid "Added to list" msgstr "리스트에 추가했습니다" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "내 피드에 추가했습니다" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "추가 세부 정보 (1000자 이내)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "추가 세부 정보 (300자 이내)" @@ -750,18 +778,18 @@ msgstr "추가 세부 정보 (300자 이내)" msgid "Adult" msgstr "성인물" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "성인 콘텐츠" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "성인 콘텐츠는 <0>bsky.app에서 웹을 통해서만 활성화할 수 있습니다." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "성인 콘텐츠가 비활성화되어 있습니다." @@ -770,16 +798,32 @@ msgstr "성인 콘텐츠가 비활성화되어 있습니다." msgid "Adult Content labels" msgstr "성인 콘텐츠 라벨" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "고급" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "연령 확인" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "연령 확인 요청을 전송하지 못했습니다. 다시 시도해 주세요." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "연령 확인 요청을 제출했습니다" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "연령 확인은 몇 분이면 완료됩니다" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "alice@example.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "모두" @@ -793,7 +837,7 @@ msgstr "모든 계정을 팔로우했습니다" msgid "All languages" msgstr "모든 언어" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "저장한 모든 피드를 한 곳에서 확인하세요." @@ -802,16 +846,21 @@ msgstr "저장한 모든 피드를 한 곳에서 확인하세요." msgid "Allow access to your direct messages" msgstr "다이렉트 메시지 접근 허용" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "새 메시지를 허용할 대상" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "다른 사용자에게 내 게시물 알림 허용" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "게시물 인용 허용" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "답글을 허용할 대상" @@ -828,13 +877,13 @@ msgstr "이미 코드가 있나요?" msgid "Already signed in as @{0}" msgstr "이미 @{0}(으)로 로그인했습니다" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "대체 텍스트" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "대체 텍스트" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "대체 텍스트는 시각장애인과 저시력 사용자를 위해 이미지를 설명하며 모든 사용자의 이해를 돕습니다." @@ -861,27 +910,19 @@ msgstr "대체 텍스트가 잘립니다. {MAX_ALT_TEXT, plural, other {제한: msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "{0}(으)로 이메일을 보냈습니다. 이 이메일에는 아래에 입력하는 인증 코드가 포함되어 있습니다." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "이전 주소인 {currentEmail}(으)로 이메일을 보냈습니다. 이 이메일에는 아래에 입력하는 인증 코드가 포함되어 있습니다." - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "이메일을 보냈습니다! 아래에 이메일에 포함된 인증 코드를 입력하세요." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "오류 발생" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "오류 발생" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "동영상을 압축하는 동안 오류가 발생했습니다." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "피드를 가져오는 동안 오류가 발생했습니다." @@ -889,11 +930,11 @@ msgstr "피드를 가져오는 동안 오류가 발생했습니다." msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "스타터 팩을 만드는 동안 오류가 발생했습니다. 다시 시도하시겠습니까?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "동영상을 불러오는 동안 오류가 발생했습니다. 나중에 다시 시도해 주세요." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "동영상을 불러오는 동안 오류가 발생했습니다. 다시 시도해 주세요." @@ -910,7 +951,7 @@ msgstr "동영상을 선택하는 동안 오류가 발생했습니다" msgid "An error occurred while trying to follow all" msgstr "모두 팔로우하려고 하는 동안 오류가 발생했습니다" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "동영상을 업로드하는 동안 오류가 발생했습니다." @@ -934,8 +975,8 @@ msgstr "대화를 여는 동안 문제가 발생했습니다" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "알 수 없는 오류가 발생했습니다" msgid "an unknown labeler" msgstr "알 수 없는 라벨러" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "및" @@ -963,10 +1004,14 @@ msgstr "및" msgid "Animals" msgstr "동물" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "움직이는 GIF" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "공지사항" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "Bluesky의 인증 기능 소개" @@ -980,7 +1025,13 @@ msgstr "반사회적 행위" msgid "Anybody can interact" msgstr "누구나 상호작용할 수 있음" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "나를 팔로우하는 모든 사용자" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "앱 비밀번호 이름에는 문자, 숫자, 공백, 대시, 밑줄만 msgid "App password names must be at least 4 characters long" msgstr "앱 비밀번호 이름은 4자 이상이어야 합니다" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "앱 비밀번호" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "앱 비밀번호" @@ -1053,10 +1104,10 @@ msgstr "일시 정지 이의신청" msgid "Appeal this decision" msgstr "이 결정에 이의신청" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "모양" @@ -1065,12 +1116,20 @@ msgstr "모양" msgid "Apply default recommended feeds" msgstr "기본 추천 피드 적용하기" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "풀 리퀘스트 적용" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "{0}에 보관됨" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "보관된 게시물" @@ -1078,7 +1137,7 @@ msgstr "보관된 게시물" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "앱 비밀번호 \"{0}\"을(를) 삭제하시겠습니까?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "정말 이 메시지를 삭제하시겠습니까? 나에게 보이는 메시지는 삭제되지만 상대방에게는 삭제되지 않습니다." @@ -1098,19 +1157,15 @@ msgstr "이 대화에서 나가시겠습니까?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "정말 이 대화에서 나가시겠습니까? 나에게 보이는 메시지는 삭제되지만 상대방에게는 삭제되지 않습니다." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "피드에서 {0}을(를) 제거하시겠습니까?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "내 피드에서 이 피드를 삭제하시겠습니까?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "이 초안을 삭제하시겠습니까?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "이 게시물을 삭제하시겠습니까?" @@ -1131,29 +1186,26 @@ msgstr "예술" msgid "Artistic or non-erotic nudity." msgstr "선정적이지 않거나 예술적인 나체." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "알고리즘에 주제 지정" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "3자 이상" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "오로라" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "자동 재생 옵션은 <0>콘텐츠 및 미디어 설정으로 이동했습니다." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "동영상 및 GIF 자동 재생" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "사용 가능" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "동영상 및 GIF 자동 재생" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "뒤로" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "대화로 돌아가기" @@ -1195,28 +1247,44 @@ msgstr "스타터 팩을 만들기 전에 먼저 이메일을 인증해야 합 msgid "Before you can accept this chat request, you must first verify your email." msgstr "이 대화 요청을 수락하려면 먼저 이메일을 인증해야 합니다." +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "{name} 님의 게시물에 대한 알림을 받으려면 먼저 이메일을 인증해야 합니다." + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "다른 사용자에게 메시지를 보내려면 먼저 이메일을 인증해야 합니다." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "시작하기" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "연령 확인 절차 시작하기" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "아래 항목을 작성하여 연령 확인 절차를 시작하세요." + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "생년월일" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "차단" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "차단" msgid "Block account" msgstr "계정 차단" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "계정을 차단하시겠습니까?" @@ -1262,20 +1330,20 @@ msgstr "사용자 차단" msgid "Block User" msgstr "사용자 차단" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "차단됨" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "차단한 계정" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "차단한 계정" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "차단한 계정은 내 스레드에 답글을 달거나 나를 멘션하거나 기타 다른 방식으로 나와 상호작용할 수 없습니다." @@ -1284,11 +1352,11 @@ msgstr "차단한 계정은 내 스레드에 답글을 달거나 나를 멘션 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "차단한 계정은 내 스레드에 답글을 달거나 나를 멘션하거나 기타 다른 방식으로 나와 상호작용할 수 없습니다. 차단한 계정의 콘텐츠를 볼 수 없으며 해당 계정도 내 콘텐츠를 볼 수 없게 됩니다." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "차단된 게시물." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "차단하더라도 이 라벨러가 내 계정에 라벨을 붙이는 것을 막지는 못합니다." @@ -1309,11 +1377,12 @@ msgstr "블로그" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky는 해당 날짜의 진위를 확인할 수 없습니다." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1337,7 +1406,7 @@ msgstr "Bluesky Social 서비스 이용약관" #: src/components/StarterPack/ProfileStarterPacks.tsx:310 msgid "Bluesky will choose a set of recommended accounts from people in your network." -msgstr "Bluesky가 네트워크에 있는 사람들 중에서 임의로 추천 계정 세트를 선택합니다." +msgstr "Bluesky가 네트워크에 있는 사용자 중에서 임의로 추천 계정 세트를 선택합니다." #: src/screens/Settings/components/PwiOptOut.tsx:99 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." @@ -1347,6 +1416,14 @@ msgstr "로그아웃한 사용자에게 내 프로필과 게시물을 표시하 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky는 주목할 만하고 신뢰할 수 있는 계정을 우선적으로 인증합니다." +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "Bluesky 커뮤니티 가이드라인" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "업데이트된 Bluesky 커뮤니티 가이드라인" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "이미지 블러 및 피드에서 필터링" msgid "Books" msgstr "책" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "탐색 페이지에서 더 많은 계정 찾아보기" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "탐색 페이지에서 더 많은 피드 찾아보기" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "더 많은 추천 찾아보기" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "탐색 페이지에서 더 많은 추천 찾아보기" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "비즈니스" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "{0} 님이 만듦" @@ -1428,15 +1502,23 @@ msgstr "{0} 님이 만듦" msgid "By <0>{0}" msgstr "<0>{0} 님이 만듦" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "\"계속\"을 클릭하면 이 업데이트 내용을 이해하고 이에 동의하는 것으로 간주됩니다." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "계속 진행하면 <0>KWS 이용약관에 동의하며, <1>KWS 개인정보 처리방침에 따라 KWS가 귀하의 인증 상태를 해시 처리된 이메일 주소와 함께 저장하는 것에 동의하는 것으로 간주됩니다. 이에 따라 향후 KWS 기술이 적용된 다른 앱, 게임, 서비스에서 이 이메일을 사용할 경우 다시 인증할 필요가 없습니다." + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "계정을 만들면 <0>개인정보 처리방침에 동의하는 것입니다." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "계정을 만들면 <0>서비스 이용약관 및 <1>개인정보 처리방침에 동의하는 것입니다." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "계정을 만들면 <0>서비스 이용약관에 동의하는 것입니다." @@ -1448,14 +1530,17 @@ msgstr "내가 만듦" msgid "Camera" msgstr "카메라" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "카메라" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "취소" @@ -1500,11 +1582,7 @@ msgstr "계정 삭제 취소" msgid "Cancel image crop" msgstr "이미지 자르기 취소" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "프로필 편집 취소" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "게시물 인용 취소" @@ -1516,14 +1594,10 @@ msgstr "재활성화 취소 및 로그아웃" msgid "Cancel search" msgstr "검색 취소" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "연결된 웹사이트를 여는 것을 취소합니다" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "차단된 사용자와 상호작용할 수 없습니다" @@ -1553,17 +1627,12 @@ msgstr "앱 아이콘을 \"{0}\"(으)로 변경합니다" msgid "Change app language" msgstr "앱 언어 변경" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "이메일 주소 변경" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "핸들 변경" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "검토 서비스 변경" @@ -1579,14 +1648,6 @@ msgstr "게시물 언어를 {suggestedLanguageName}(으)로 변경" msgid "Change report reason" msgstr "신고 이유 변경" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "이메일 변경하기" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "이메일 주소를 변경하세요" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "앱 아이콘을 변경합니다" @@ -1596,10 +1657,15 @@ msgstr "앱 아이콘을 변경합니다" msgid "Changes hosting provider" msgstr "호스팅 제공자를 변경합니다" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "변경 사항을 저장했습니다" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "대화" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "대화를 삭제했습니다" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "대화 메시지 - 음소거" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "대화 메시지 - 소리" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "대화를 뮤트했습니다" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "대화 요청 수신함" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "대화 요청" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "대화 설정" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "대화 설정" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "대화를 언뮤트했습니다" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "대화" @@ -1661,7 +1738,7 @@ msgstr "받은 편지함에서 아래에 입력할 인증 코드가 포함된 msgid "Choose domain verification method" msgstr "도메인 인증 방법 선택" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "피드 선택" @@ -1669,9 +1746,9 @@ msgstr "피드 선택" msgid "Choose for me" msgstr "임의로 선택하기" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" -msgstr "사람들 선택" +msgstr "사용자 선택" #: src/screens/Onboarding/StepFinished.tsx:298 msgid "Choose the algorithms that power your custom feeds." @@ -1685,23 +1762,23 @@ msgstr "이 색상을 아바타로 선택" msgid "Choose your account provider" msgstr "계정 제공자 선택" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "나만의 타임라인을 선택하세요! 커뮤니티에서 만든 피드를 통해 마음에 드는 콘텐츠를 찾을 수 있습니다." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "비밀번호를 입력하세요" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "사용자 이름 선택" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "모든 스토리지 데이터 지우기" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "모든 스토리지 데이터 지우기 (이후 다시 시작)" @@ -1714,23 +1791,27 @@ msgstr "이미지 캐시 지우기" msgid "Clear search query" msgstr "검색어 지우기" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "세부 정보 보기" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "이곳을 클릭" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "인증 절차를 다시 시작하려면 이곳을 클릭하세요." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "이메일을 변경하려면 이곳을 클릭하세요" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "이 게시물의 인용 게시물을 비활성화하려면 클릭하세요." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "이 게시물의 인용 게시물을 활성화하려면 클릭하세요." @@ -1740,7 +1821,7 @@ msgstr "클릭하여 {tag}에 대한 태그 메뉴를 엽니다" #: src/components/dms/MessageItem.tsx:317 msgid "Click to retry failed message" -msgstr "클릭하여 메시지를 다시 보내기" +msgstr "클릭하여 메시지 다시 보내기" #: src/screens/Onboarding/index.tsx:32 msgid "Climate" @@ -1750,14 +1831,16 @@ msgstr "기후" msgid "Clip 🐴 clop 🐴" msgstr "다그닥 🐴 다그닥 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "다그닥 🐴 다그닥 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "닫기" @@ -1789,13 +1876,15 @@ msgstr "알림 닫기" msgid "Close bottom drawer" msgstr "하단 서랍 닫기" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "대화 상자 닫기" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "서랍 메뉴 닫기" @@ -1804,7 +1893,7 @@ msgstr "서랍 메뉴 닫기" msgid "Close emoji picker" msgstr "이모티콘 선택기 닫기" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "GIF 대화 상자 닫기" @@ -1822,7 +1911,7 @@ msgstr "이미지 뷰어 닫기" msgid "Close menu" msgstr "매뉴 닫기" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "이 대화 상자 닫기" @@ -1830,7 +1919,7 @@ msgstr "이 대화 상자 닫기" msgid "Closes password update alert" msgstr "비밀번호 변경 알림을 닫습니다" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "게시물 작성기를 닫고 게시물 초안을 삭제합니다" @@ -1843,16 +1932,16 @@ msgstr "이모티콘 선택기를 닫습니다" msgid "Closes viewer for header image" msgstr "헤더 이미지 뷰어를 닫습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "사용자 목록 접기" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "이 알림에 대한 사용자 목록을 축소합니다" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "색상 모드" @@ -1870,7 +1959,8 @@ msgstr "코미디" msgid "Comics" msgstr "만화" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "커뮤니티 가이드라인" @@ -1879,38 +1969,34 @@ msgstr "커뮤니티 가이드라인" msgid "Complete onboarding and start using your account" msgstr "온보딩 완료 후 계정 사용 시작" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "챌린지 완료하기" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "새 게시물 작성하기" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "게시물을 최대 {0, plural, other {#자}}까지 작성할 수 있습니다" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "답글 작성하기" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "동영상 압축 중…" -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "{name} 카테고리에 대한 콘텐츠 필터링 설정을 구성합니다." -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "<0>검토 설정에서 설정합니다." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "콘텐츠 언어 설정 확인" msgid "Confirm delete account" msgstr "계정 삭제 확인" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "나이를 확인하세요:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "생년월일 확인" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "생년월일 확인" msgid "Confirmation code" msgstr "인증 코드" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "인증 코드" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "연결 중…" -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "연결 오류" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "운영팀에 문의하기" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" -msgstr "지원에 연락하기" +msgstr "지원팀에 연락하기" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "문의하기" #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "콘텐츠 및 미디어" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "콘텐츠 및 미디어" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "콘텐츠 및 미디어" @@ -1977,7 +2069,8 @@ msgstr "콘텐츠 및 미디어" msgid "Content Blocked" msgstr "콘텐츠 차단됨" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "콘텐츠 필터" @@ -2006,10 +2099,12 @@ msgstr "콘텐츠 경고" msgid "Content warnings" msgstr "콘텐츠 경고" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "컨텍스트 메뉴 배경을 클릭하여 메뉴를 닫습니다." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "계속" msgid "Continue as {0} (currently signed in)" msgstr "{0}(으)로 계속하기 (현재 로그인)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "스레드 더 보기" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "스레드 더 보기…" @@ -2029,6 +2129,10 @@ msgstr "스레드 더 보기…" msgid "Continue to next step" msgstr "다음 단계로 계속하기" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "대화" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "복사됨" msgid "Copied build version to clipboard" msgstr "빌드 버전을 클립보드에 복사했습니다" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "빌드 버전을 클립보드에 복사합니다" msgid "Copy" msgstr "복사" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "무시하고 복사" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "앱 비밀번호 복사" @@ -2087,8 +2187,8 @@ msgstr "앱 비밀번호 복사" msgid "Copy at:// URI" msgstr "at:// URI 복사" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "작성자 DID 복사" @@ -2120,10 +2220,10 @@ msgstr "링크 복사" msgid "Copy link to list" msgstr "리스트 링크 복사" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "게시물 링크 복사" @@ -2136,18 +2236,18 @@ msgstr "프로필 링크 복사" msgid "Copy link to starter pack" msgstr "스타터 팩 링크 복사" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "메시지 텍스트 복사" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "게시물 at:// URI 복사" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "게시물 텍스트 복사" @@ -2159,11 +2259,25 @@ msgstr "QR 코드 복사" msgid "Copy TXT record value" msgstr "TXT 레코드 값 복사" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "저작권 정책" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "맞춤 피드에 연결할 수 없습니다" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "피드 서비스에 연결할 수 없습니다" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "프로필을 찾을 수 없습니다" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "대화를 뮤트할 수 없습니다" msgid "Could not process your video" msgstr "동영상을 처리할 수 없습니다" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "변경 사항을 저장할 수 없습니다: {0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "알림 설정을 업데이트할 수 없습니다" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "만들기" @@ -2195,7 +2317,7 @@ msgstr "스타터 팩 QR 코드 만들기" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "스타터 팩 만들기" @@ -2205,21 +2327,22 @@ msgstr "나를 위한 스타터 팩 만들기" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "가입하기" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "계정 만들기" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "계정 만들기" @@ -2241,7 +2364,7 @@ msgstr "다른 스타터 팩 만들기" msgid "Create new account" msgstr "새 계정 만들기" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "{0}에 대한 신고 작성하기" @@ -2268,9 +2391,9 @@ msgstr "사용자 지정" msgid "Customization options" msgstr "사용자 지정 옵션" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." -msgstr "이 게시물과 상호작용할 수 있는 사람을 사용자 지정합니다." +msgstr "이 게시물과 상호작용할 수 있는 사용자를 맞춤 설정합니다." #: src/screens/Onboarding/Layout.tsx:56 msgid "Customizes your Bluesky experience" @@ -2278,12 +2401,12 @@ msgstr "내 Bluesky 경험을 맞춤 설정합니다" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "어두움" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "어두움" @@ -2292,21 +2415,21 @@ msgstr "어두움" msgid "Dark mode" msgstr "어두운 모드" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "어두운 테마" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "생년월일" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "계정 비활성화" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "검토 디버그" @@ -2314,7 +2437,7 @@ msgstr "검토 디버그" msgid "Debug panel" msgstr "디버그 패널" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "기본" @@ -2322,8 +2445,8 @@ msgstr "기본" msgid "Default icons" msgstr "기본 아이콘" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "기본 아이콘" msgid "Delete" msgstr "삭제" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "계정 삭제" @@ -2355,7 +2478,7 @@ msgstr "앱 비밀번호를 삭제하시겠습니까?" msgid "Delete chat" msgstr "대화 삭제" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "대화 신고 기록 삭제" @@ -2370,7 +2493,7 @@ msgstr "대화 삭제" msgid "Delete Conversation" msgstr "대화 삭제" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "나에게서 삭제" @@ -2378,11 +2501,11 @@ msgstr "나에게서 삭제" msgid "Delete list" msgstr "리스트 삭제" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "메시지 삭제" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "나에게 보이는 메시지 삭제" @@ -2390,9 +2513,9 @@ msgstr "나에게 보이는 메시지 삭제" msgid "Delete my account" msgstr "내 계정 삭제" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "게시물 삭제" @@ -2409,11 +2532,11 @@ msgstr "스타터 팩 삭제" msgid "Delete this list?" msgstr "이 리스트를 삭제하시겠습니까?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "이 게시물을 삭제하시겠습니까?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "삭제됨" @@ -2422,15 +2545,20 @@ msgstr "삭제됨" msgid "Deleted Account" msgstr "삭제된 계정" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "삭제된 리스트" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "삭제된 게시물." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "설명" @@ -2447,12 +2575,12 @@ msgstr "설명이 너무 깁니다. {DESCRIPTION_MAX_GRAPHEMES, plural, other { msgid "Descriptive alt text" msgstr "설명이 포함된 대체 텍스트" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "인용 해제" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "인용을 해제하시겠습니까?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "개발자 모드를 활성화했습니다" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "개발자 옵션" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" -msgstr "대화 상자: 이 게시물과 상호작용할 수 있는 사람 조정하기" +msgstr "대화 상자: 이 게시물과 상호작용할 수 있는 사용자 조정하기" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "어둑함" @@ -2492,27 +2620,27 @@ msgstr "이메일 2단계 인증 비활성화" msgid "Disable Email 2FA" msgstr "이메일 2단계 인증 끄기" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "햅틱 피드백 끄기" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "자막 사용 안 함" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "사용 안 함" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "삭제" @@ -2520,11 +2648,11 @@ msgstr "삭제" msgid "Discard changes?" msgstr "변경 사항 삭제" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "초안 삭제" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "게시물 삭제" @@ -2542,7 +2670,7 @@ msgstr "피드 발견하기" msgid "Discover new custom feeds" msgstr "새로운 맞춤 피드 찾아보기" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "새 피드 발견하기" @@ -2550,7 +2678,7 @@ msgstr "새 피드 발견하기" msgid "Dismiss" msgstr "닫기" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "오류 무시" @@ -2562,26 +2690,26 @@ msgstr "시작하기 가이드 닫기" msgid "Dismiss interests" msgstr "관심 주제 닫기" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "메시지 닫기" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "이 부분 닫기" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "더 큰 대체 텍스트 배지 표시" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "표시 이름" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "표시 이름" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "표시 이름이 너무 깁니다" @@ -2603,15 +2731,11 @@ msgstr "내가 팔로우하는 사용자에게는 이 뮤트 단어를 적용하 msgid "Does not include nudity." msgstr "나체를 포함하지 않습니다." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "하이픈으로 시작하거나 끝나지 않음" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "도메인을 확인했습니다." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "코드가 없거나 새 코드가 필요한가요? <0>이곳을 클릭하세요." @@ -2619,6 +2743,15 @@ msgstr "코드가 없거나 새 코드가 필요한가요? <0>이곳을 클릭 msgid "Don't see an email? <0>Click here to resend." msgstr "이메일이 보이지 않나요? <0>다시 보내려면 이곳을 클릭하세요." +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "다시 표시하지 않기" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "걱정 마세요! 모든 기존 메시지와 설정은 저장되며 성인 인증 후에 다시 이용할 수 있습니다." + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "메시지를 두 번 탭하거나 길게 눌러서 반응을 추가합 msgid "Double tap to close the dialog" msgstr "두 번 탭하여 대화 상자를 닫습니다" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "두 번 탭하여 좋아요 표시합니다" @@ -2673,7 +2806,7 @@ msgstr "Bluesky 다운로드" msgid "Download CAR file" msgstr "CAR 파일 다운로드" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "드롭하여 이미지 추가" @@ -2689,18 +2822,10 @@ msgstr "예: alice" msgid "e.g. Alice Lastname" msgstr "예: 앨리스 라스트네임" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "예: 앨리스 로버츠" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "예: alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "예: 예술가, 개 애호가 및 열혈 독서가." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "예: 예술적인 나체." @@ -2725,10 +2850,11 @@ msgstr "예: 반복적으로 광고 답글을 다는 계정." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "각 코드는 한 번만 사용할 수 있습니다. 주기적으로 더 많은 초대 코드를 받게 됩니다." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "편집" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "편집" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "아바타 편집" @@ -2749,12 +2875,12 @@ msgstr "피드 편집하기" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "이미지 편집하기" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "상호작용 설정 편집" @@ -2776,33 +2902,33 @@ msgstr "라이브 상태 편집" msgid "Edit Moderation List" msgstr "검토 리스트 편집" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "내 피드 편집" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "내 프로필 편집하기" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "{0} 님의 알림 편집" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" -msgstr "사람들 편집하기" +msgstr "사용자 편집하기" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "게시물 상호작용 설정 편집하기" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "프로필 편집" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "프로필 편집" @@ -2814,19 +2940,11 @@ msgstr "스타터 팩 편집" msgid "Edit User List" msgstr "사용자 리스트 편집" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" -msgstr "답글을 달 수 있는 사람 편집" +msgstr "답글을 달 수 있는 사용자 편집" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "내 표시 이름을 편집합니다" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "내 프로필 설명을 편집합니다" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "스타터 팩 편집" @@ -2839,8 +2957,8 @@ msgstr "교육" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "이 리스트의 작성자가 나를 차단했거나 내가 작성자를 차단했습니다." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "이메일" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "이메일 2단계 인증을 비활성화했습니다" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "이메일 2단계 인증 활성화됨" @@ -2865,10 +2983,6 @@ msgstr "이메일 다시 전송됨" msgid "Email sent!" msgstr "이메일을 보냈습니다!" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "이메일을 변경했습니다!" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "이메일 인증 완료!" @@ -2883,8 +2997,8 @@ msgstr "임베드 HTML 코드" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "게시물 임베드" @@ -2892,7 +3006,7 @@ msgstr "게시물 임베드" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "웹사이트에 이 게시물을 임베드하세요. 다음 코드를 복사하여 웹사이트에 HTML 코드로 붙여넣기만 하면 됩니다." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "임베드 동영상 플레이어" @@ -2906,7 +3020,7 @@ msgstr "활성화" msgid "Enable {0} only" msgstr "{0}에서만 사용" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "성인 콘텐츠 활성화" @@ -2919,16 +3033,20 @@ msgstr "이메일 2단계 인증 활성화" msgid "Enable external media" msgstr "외부 미디어 사용" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "미디어 플레이어를 사용할 외부 사이트" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "우선순위 알림 사용" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "계정의 프로필을 방문하여 <0>종 모양 아이콘 <1/> 을 눌러 계정에 대한 알림을 사용 설정하세요." -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "푸시 알림 사용" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "자막 사용" @@ -2941,17 +3059,14 @@ msgstr "이 소스에서만 사용" msgid "Enable trending topics" msgstr "인기 주제 사용" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Discover 피드에서 인기 동영상 사용" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Discover 피드에서 인기 동영상 사용" - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "사용" @@ -2963,7 +3078,7 @@ msgstr "피드 끝" msgid "Ensure you have selected a language for each subtitle file." msgstr "각 자막 파일에 대한 언어를 선택했는지 확인하세요." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "비밀번호 입력" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "단어 또는 태그 입력" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "코드 입력" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "코드 입력" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "전체화면으로 보기" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "생년월일을 입력하세요" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "이메일 주소를 입력하세요" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "아래에 새 이메일 주소를 입력하세요." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "비밀번호를 입력합니다" @@ -3022,7 +3129,7 @@ msgstr "비밀번호를 입력합니다" msgid "Enter your username and password" msgstr "사용자 이름 및 비밀번호 입력" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "전체화면으로 봅니다" @@ -3030,16 +3137,28 @@ msgstr "전체화면으로 봅니다" msgid "Entertainment" msgstr "엔터테인먼트" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "오류" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "게시물 불러오기 오류" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "환경설정 불러오기 오류" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "오류 메시지" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "파일을 저장하는 동안 오류가 발생했습니다" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "캡차 응답을 수신하는 동안 오류가 발생했습니다." @@ -3047,27 +3166,34 @@ msgstr "캡차 응답을 수신하는 동안 오류가 발생했습니다." msgid "Error:" msgstr "오류:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "오류: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "모두" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "누구나 답글을 달 수 있음" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "누구나 이 게시물에 답글을 달 수 있습니다." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "모두" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "기타" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "내가 팔로우하는 사용자 제외하기" msgid "Excludes users you follow" msgstr "내가 팔로우하는 사용자 제외" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "전체화면 나가기" @@ -3106,24 +3232,28 @@ msgstr "이미지 보기를 종료합니다" msgid "Expand alt text" msgstr "대체 텍스트 확장" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "사용자 목록 펼치기" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "답글을 달고 있는 전체 게시물을 펼치거나 접습니다" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "게시물 텍스트 확장" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "게시물 텍스트를 펼치거나 접습니다" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "레코드로 확인될 것으로 예상되는 URI" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "실험적" @@ -3153,15 +3283,15 @@ msgstr "노골적이거나 불쾌감을 줄 수 있는 미디어." msgid "Explicit sexual images." msgstr "노골적인 성적 이미지." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "탐색" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "내 데이터 내보내기" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "외부 미디어" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 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:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "외부 미디어 설정" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "대화를 수락하지 못했습니다" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "이모티콘 반응을 추가하지 못했습니다" @@ -3211,8 +3341,8 @@ msgstr "앱 비밀번호를 만들지 못했습니다. 다시 시도해 주세 msgid "Failed to create conversation" msgstr "대화를 만들지 못했습니다" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "스타터 팩을 만들지 못했습니다" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "대화를 삭제하지 못했습니다" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "메시지를 삭제하지 못했습니다" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "게시물을 삭제하지 못했습니다. 다시 시도해 주세요" @@ -3238,8 +3368,8 @@ msgstr "게시물을 삭제하지 못했습니다. 다시 시도해 주세요" msgid "Failed to delete starter pack" msgstr "스타터 팩을 삭제하지 못했습니다" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "대화를 불러오지 못했습니다" @@ -3250,14 +3380,32 @@ msgstr "대화를 불러오지 못했습니다" msgid "Failed to load feeds preferences" msgstr "피드 환경설정을 불러오지 못했습니다" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "GIF를 불러오지 못했습니다" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "알림 설정을 불러오지 못했습니다." + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "지난 메시지를 불러오지 못했습니다" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "환경설정을 불러오지 못했습니다." + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "추천 피드를 불러오지 못했습니다" msgid "Failed to load suggested follows" msgstr "추천 팔로우를 불러오지 못했습니다" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "모든 요청을 읽음으로 표시하지 못했습니다" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "게시물을 고정하지 못했습니다" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "이모티콘 반응을 제거하지 못했습니다" @@ -3291,15 +3439,11 @@ msgstr "인증을 취소하지 못했습니다" msgid "Failed to save image: {0}" msgstr "이미지를 저장하지 못함: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "알림 설정을 저장하지 못했습니다. 다시 시도해 주세요" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "설정을 저장하지 못했습니다. 다시 시도해 주세요." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "관심 주제를 저장하지 못했습니다." @@ -3318,7 +3462,7 @@ msgstr "이메일을 보내지 못했습니다. 다시 시도해 주세요." msgid "Failed to submit appeal, please try again." msgstr "이의신청을 제출하지 못했습니다. 다시 시도해 주세요." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "스레드 뮤트를 전환하지 못했습니다. 다시 시도해 주세요" @@ -3335,7 +3479,11 @@ msgstr "이메일을 변경하지 못했습니다. 다시 시도해 주세요." msgid "Failed to update feeds" msgstr "피드를 업데이트하지 못했습니다" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "알림 선언을 업데이트하지 못했습니다" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "설정을 업데이트하지 못했습니다" @@ -3354,15 +3502,23 @@ msgstr "이메일을 인증하지 못했습니다. 다시 시도해 주세요." msgid "Failed to verify handle. Please try again." msgstr "핸들을 인증하지 못했습니다. 다시 시도해 주세요." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "피드" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "{0} 님의 피드" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "피드 작성자" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "피드 ID" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "피드 메뉴" @@ -3371,35 +3527,39 @@ msgstr "피드 메뉴" msgid "Feed toggle" msgstr "피드 켜기/끄기" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "사용할 수 없는 피드" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "피드백" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "피드백을 보냈습니다!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "피드" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "피드는 사용자가 약간의 코딩 전문 지식만으로 구축할 수 있는 맞춤 알고리즘입니다. <0/>에서 자세한 내용을 확인하세요." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "피드를 업데이트했습니다!" @@ -3428,6 +3588,14 @@ msgstr "언어별 검색 필터링" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "언어별 검색 필터링 (현재: {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "내 활동 알림을 받을 수 있는 사용자 필터링" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "알림 수신 대상 필터링" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "마무리 중" @@ -3442,13 +3610,13 @@ msgstr "팔로우할 계정 찾아보기" #: src/components/ProgressGuide/FollowDialog.tsx:87 #: src/components/ProgressGuide/FollowDialog.tsx:374 msgid "Find people to follow" -msgstr "팔로우할 사람 찾아보기" +msgstr "팔로우할 사용자 찾아보기" #: src/screens/Search/Shell.tsx:476 msgid "Find posts, users, and feeds on Bluesky" msgstr "Bluesky에서 게시물, 사용자, 피드 찾기" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "완료" @@ -3456,17 +3624,17 @@ msgstr "완료" msgid "Fitness" msgstr "건강" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "플랫 블랙" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "플랫 블루" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "플랫 화이트" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "유연성" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "팔로우" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "{0} 님을 팔로우" @@ -3518,7 +3686,7 @@ msgstr "계정 팔로우" msgid "Follow all" msgstr "모두 팔로우" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "맞팔로우" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "맞팔로우" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "<0>{0} 님이 팔로우함" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "<0>{0} 님 외 {1, plural, other {#명}}이 팔로우함" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "<0>{0} 님과 <1>{1} 님이 팔로우함" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "<0>{0} 님, <1>{1} 님 외 {2, plural, other {#명}}이 팔로우함" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "내가 아는 @{0} 님의 팔로워" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "내가 아는 팔로워" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "팔로우 중" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "팔로우 중" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "{0} 님을 팔로우했습니다" @@ -3579,8 +3751,8 @@ msgstr "{handle} 님을 팔로우 중" msgid "Following feed preferences" msgstr "팔로우 중 피드 설정" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "팔로우 중 피드 설정" @@ -3592,11 +3764,11 @@ msgstr "나를 팔로우함" msgid "Follows You" msgstr "나를 팔로우함" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "글꼴" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "글꼴 크기" @@ -3613,7 +3785,7 @@ msgstr "보안상의 이유로 이메일 주소로 인증 코드를 보내야 msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "보안상의 이유로 이 비밀번호는 다시 볼 수 없습니다. 이 앱 비밀번호를 분실한 경우 새로 생성해야 합니다." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "최상의 경험을 위해 테마 글꼴을 사용하는 것을 추천합니다." @@ -3643,11 +3815,15 @@ msgstr "분실" msgid "Frequently Posts Unwanted Content" msgstr "잦은 원치 않는 콘텐츠 게시" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "수신 대상" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "@{sanitizedAuthor} 님의 태그" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "<0/>에서" @@ -3660,14 +3836,68 @@ msgstr "갤러리" msgid "Generate a starter pack" msgstr "스타터 팩 만들기" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "도움말" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "사람들이 나를 팔로우하면 알림을 받습니다." + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "사람들이 내가 재게시한 게시물에 좋아요를 누르면 알림을 받습니다." + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "사람들이 내 게시물에 좋아요를 누르면 알림을 받습니다." + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "사람들이 나를 멘션하면 알림을 받습니다." + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "사람들이 내 게시물을 인용하면 알림을 받습니다." + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "사람들이 내 게시물에 답글을 달면 알림을 받습니다." + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "사람들이 내가 재게시한 게시물을 재게시하면 알림을 받습니다." + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "사람들이 내 게시물을 재게시하면 알림을 받습니다." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "새 게시물 알림 받기" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "내가 선택한 계정의 새 게시물과 답글에 대한 알림을 받습니다." + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "{name} 님의 새 게시물 알림 받기" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "이 계정의 활동 알림 받기" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "{name} 님이 게시물을 올리면 알림 받기" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "다른 사용자가 게시물을 올릴 때 알림 받기" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "시작하기" @@ -3688,14 +3918,16 @@ msgstr "프로필에 얼굴 달기" msgid "Glaring violations of law or terms of service" msgstr "명백한 법률 또는 서비스 이용약관 위반 행위" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,9 +3978,15 @@ msgstr "라이브 시작" msgid "Go live for" msgstr "라이브 예정 시간" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" -msgstr "{firstAuthorName} 님의 프로필로 가기" +msgstr "{firstAuthorName} 님의 프로필로 이동" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "계정 설정으로 이동" #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" @@ -3761,11 +3999,11 @@ msgstr "다음" #: src/components/dms/ConvoMenu.tsx:227 msgid "Go to profile" -msgstr "프로필로 가기" +msgstr "프로필로 이동" #: src/components/dms/ConvoMenu.tsx:224 msgid "Go to user's profile" -msgstr "사용자의 프로필로 가기" +msgstr "사용자의 프로필로 이동" #: src/lib/moderation/useGlobalLabelStrings.ts:46 #: src/lib/moderation/useGlobalLabelStrings.ts:50 @@ -3779,8 +4017,8 @@ msgstr "불쾌감을 주는 미디어" msgid "Half way there!" msgstr "절반은 완료!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "핸들" @@ -3797,7 +4035,7 @@ msgstr "핸들을 변경했습니다!" msgid "Handle too long. Please try a shorter one." msgstr "핸들이 너무 깁니다. 더 짧은 핸들을 사용하세요." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "햅틱" @@ -3806,7 +4044,7 @@ msgstr "햅틱" msgid "Harassment, trolling, or intolerance" msgstr "괴롭힘, 분쟁 유발 또는 차별" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "해시태그" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "해시태그 #{tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "코드가 있나요? <0>이곳을 클릭하세요." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "문제가 있나요?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "도움말" @@ -3839,8 +4077,13 @@ msgstr "사진을 업로드하거나 아바타를 만들어 사람들이 내가 msgid "Here is your app password!" msgstr "앱 비밀번호를 만들었습니다!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "안녕하세요 👋" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "숨겨짐" @@ -3848,16 +4091,16 @@ msgstr "숨겨짐" msgid "Hidden by your moderation settings." msgstr "검토 설정에 의해 숨겨졌습니다." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "숨겨진 리스트" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "숨겨진 리스트" msgid "Hide" msgstr "숨기기" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "숨기기" @@ -3875,18 +4118,18 @@ msgstr "숨기기" msgid "Hide customization options" msgstr "사용자 지정 옵션 숨기기" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "나에게서 게시물 숨기기" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "모두에게서 답글 숨기기" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "나에게서 답글 숨기기" @@ -3894,12 +4137,12 @@ msgstr "나에게서 답글 숨기기" msgid "Hide this card" msgstr "이 카드 숨기기" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "이 게시물을 숨기시겠습니까?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "이 답글을 숨기시겠습니까?" @@ -3913,11 +4156,11 @@ msgstr "인기 주제 숨기기" msgid "Hide trending topics?" msgstr "인기 주제를 숨기시겠습니까?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "인기 동영상을 숨기시겠습니까?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "사용자 리스트 숨기기" @@ -3926,32 +4169,32 @@ msgstr "사용자 리스트 숨기기" msgid "Hide verification badges" msgstr "인증 배지 숨기기" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "콘텐츠를 숨깁니다" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "피드 서버에 연결하는 동안 어떤 문제가 발생했습니다. 피드 소유자에게 이 문제에 대해 알려주세요." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "피드 서버가 잘못 구성된 것 같습니다. 피드 소유자에게 이 문제에 대해 알려주세요." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "피드 서버가 오프라인 상태인 것 같습니다. 피드 소유자에게 이 문제에 대해 알려주세요." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "피드 서버에서 잘못된 응답을 보냈습니다. 피드 소유자에게 이 문제에 대해 알려주세요." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "이 피드를 찾는 데 문제가 있습니다. 피드가 삭제되었을 수 있습니다." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "이 데이터를 불러오는 데 문제가 있는 것 같습니다. 자세한 내용은 아래를 참조하세요. 이 문제가 지속되면 문의해 주세요." @@ -3959,15 +4202,15 @@ msgstr "이 데이터를 불러오는 데 문제가 있는 것 같습니다. 자 msgid "Hmmmm, we couldn't load that moderation service." msgstr "검토 서비스를 불러올 수 없습니다." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "잠깐! 동영상에 대한 접근 권한이 점차적으로 제공되고 있지만 아직은 기다려야 합니다. 나중에 다시 확인해 주세요!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "홈" @@ -3984,10 +4227,10 @@ msgstr "호스팅 제공자" msgid "Hot" msgstr "인기" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "인기순" @@ -3996,10 +4239,6 @@ msgstr "인기순" msgid "How should we open this link?" msgstr "이 링크를 어떻게 여시겠습니까?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "확인" msgid "If alt text is long, toggles alt text expanded state" msgstr "대체 텍스트가 긴 경우 대체 텍스트 확장 상태를 전환합니다" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "해당 국가의 법률에 따라 아직 성인이 아닌 경우 부모 또는 법적 보호자가 대신 이 약관을 읽어야 합니다." @@ -4029,13 +4268,13 @@ msgstr "이 리스트를 삭제하면 다시 복구할 수 없습니다." #: src/screens/Settings/components/ChangeHandleDialog.tsx:267 msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." -msgstr "자체 도메인이 있는 경우 이를 핸들로 사용할 수 있으며, 이를 통해 본인임을 다른 사람들에게 알릴 수 있습니다. <0>더 알아보기" +msgstr "자체 도메인이 있는 경우 이를 핸들로 사용할 수 있으며, 이를 통해 본인임을 다른 사용자에게 알릴 수 있습니다. <0>더 알아보기" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "이메일을 변경해야 하는 경우 <0>이곳을 클릭하세요." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "이 게시물을 삭제하면 다시 복구할 수 없습니다." @@ -4047,6 +4286,10 @@ msgstr "이메일 주소를 변경하면 이메일 2단계 인증이 비활성 msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "비밀번호를 변경하고 싶다면 본인 계정임을 확인할 수 있는 코드를 보내 드립니다." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "내 계정의 활동에 대한 알림을 받을 수 있는 사용자를 제한하려면 <0>설정 → 개인정보 및 보안에서 변경할 수 있습니다." + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "개발자라면 직접 서버를 호스팅할 수 있습니다." @@ -4091,13 +4334,41 @@ msgstr "신원 또는 소속에 대한 사칭 또는 허위 주장" msgid "Impersonation, misinformation, or false claims" msgstr "사칭, 허위 정보 또는 허위 주장" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "인앱" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "인앱 알림" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "인앱, 모두" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "인앱, 내가 팔로우하는 사용자" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "인앱, 푸시" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "인앱, 푸시, 모두" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "인앱, 푸시, 내가 팔로우하는 사용자" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "부적절한 메시지 또는 노골적인 링크" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "수신함 제로!" @@ -4105,7 +4376,7 @@ msgstr "수신함 제로!" msgid "Incorrect username or password" msgstr "사용자 이름 또는 비밀번호가 올바르지 않습니다" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "비밀번호 재설정을 위해 이메일로 전송된 코드를 입력합니다" @@ -4113,7 +4384,7 @@ msgstr "비밀번호 재설정을 위해 이메일로 전송된 코드를 입력 msgid "Input confirmation code for account deletion" msgstr "계정 삭제를 위한 인증 코드를 입력합니다" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "새 비밀번호를 입력합니다" @@ -4129,10 +4400,14 @@ msgstr "이메일로 전송된 코드를 입력합니다" msgid "Interaction limited" msgstr "상호작용 제한됨" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "상호작용 설정" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "활동 알림 소개" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "잘못된 2단계 인증 코드입니다." msgid "Invalid handle. Please try a different one." msgstr "잘못된 핸들입니다. 다른 핸들을 사용하세요." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "유효하지 않거나 지원되지 않는 게시물 기록" @@ -4158,7 +4433,7 @@ msgstr "잘못된 인증 코드" msgid "Invite a Friend" msgstr "친구 초대하기" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "초대 코드" @@ -4180,21 +4455,21 @@ msgstr "이 스타터 팩을 사용할 사람들을 초대하세요!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:34 msgid "Invite your friends to follow your favorite feeds and people" -msgstr "친구를 초대하여 좋아하는 피드와 사람들을 팔로우할 수 있도록 합니다" +msgstr "친구를 초대하여 좋아하는 피드와 사용자를 팔로우할 수 있도록 합니다" #: src/screens/StarterPack/Wizard/StepDetails.tsx:31 msgid "Invites, but personal" msgstr "개인적인 초대" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "올바른 주소입니다" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." -msgstr "아직은 나밖에 없습니다. 위에서 검색하여 스타터 팩에 더 많은 사람을 추가하세요." +msgstr "아직은 나밖에 없습니다. 위에서 검색하여 스타터 팩에 더 많은 사용자를 추가하세요." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "작업 ID: {0}" @@ -4220,11 +4495,27 @@ msgstr "대화에 참여하기" msgid "Journalism" msgstr "저널리즘" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "최신 소식 받기" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "KWS 개인정보 처리방침" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "KWS 이용약관" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "KWS 웹사이트" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "{0}이(가) 라벨 지정함." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "작성자가 라벨 지정함." @@ -4237,7 +4528,7 @@ msgstr "라벨" msgid "Labels added" msgstr "라벨 추가됨" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "라벨은 사용자 및 콘텐츠에 대한 주석입니다. 네트워크를 숨기고, 경고하고, 분류하는 데 사용할 수 있습니다." @@ -4253,22 +4544,30 @@ msgstr "내 콘텐츠의 라벨" msgid "Language selection" msgstr "언어 선택" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "언어 설정" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "언어" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "큼" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "{timeAgo} 전 시작함" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "방금 시작함" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "최신" @@ -4282,7 +4581,6 @@ msgstr "더 알아보기" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "더 알아보기" @@ -4290,6 +4588,10 @@ msgstr "더 알아보기" msgid "Learn More" msgstr "더 알아보기" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "연령 확인에 대해 자세히 알아보기" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Bluesky에 대해 더 알아보기" @@ -4298,15 +4600,23 @@ msgstr "Bluesky에 대해 더 알아보기" msgid "Learn more about self hosting your PDS." msgstr "PDS 셀프 호스팅에 대해 자세히 알아보세요." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "이 콘텐츠에 적용된 검토 설정에 대해 자세히 알아보세요" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "이 콘텐츠에 적용된 검토 설정에 대해 자세히 알아보세요." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "이 변경 사항에 대한 자세한 내용과 의견 제출 방법은 <0>이 블로그 게시물에서 확인할 수 있습니다." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "이 변경 사항에 대한 자세한 내용과 의견 제출 방법은 이 블로그 게시물에서 확인할 수 있습니다." + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "이 경고에 대해 더 알아보기" @@ -4316,12 +4626,16 @@ msgstr "이 경고에 대해 더 알아보기" msgid "Learn more about verification on Bluesky" msgstr "Bluesky의 인증에 대해 더 알아보기" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Bluesky에서 공개되는 항목에 대해 자세히 알아보세요." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "<0>계정 설정에서 자세히 알아보세요." + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "더 알아보기" @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "대화 나가기" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." +msgid "Leave them all unselected to see any language." msgstr "모든 언어를 보려면 모두 선택하지 않은 상태로 두세요." -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Bluesky 떠나기" @@ -4370,7 +4685,7 @@ msgstr "출발!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "밝음" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "좋아요" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "좋아요 ({0, plural, other {#개}})" @@ -4397,6 +4712,10 @@ msgstr "10개 게시물에 좋아요 누르기" msgid "Like 10 posts to train the Discover feed" msgstr "10개 게시물에 좋아요를 눌러 Discover 피드를 훈련시키세요" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "좋아요 알림" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "이 피드에 좋아요 표시" @@ -4405,8 +4724,8 @@ msgstr "이 피드에 좋아요 표시" msgid "Like this labeler" msgstr "이 라벨러에 좋아요 표시" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "좋아요 표시한 사용자" @@ -4417,31 +4736,47 @@ msgid "Liked By" msgstr "좋아요 표시한 사용자" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" -msgstr "{0, plural, other {#명}}의 사용자가 좋아함" +msgstr "{0, plural, other {#명}}의 사용자가 좋아요 표시함" #: src/components/LabelingServiceCard/index.tsx:96 #: src/screens/Profile/components/ProfileFeedHeader.tsx:493 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" -msgstr "{likeCount, plural, other {#명}}의 사용자가 좋아함" +msgstr "{likeCount, plural, other {#명}}의 사용자가 좋아요 표시함" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "좋아요" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "내 재게시물의 좋아요" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "내 재게시물의 좋아요 알림" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "이 게시물을 좋아요 표시합니다" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "일반" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "리스트" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "리스트를 차단했습니다" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "{0} 님의 리스트" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "<0/> 님의 리스트" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "내 리스트" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "리스트 작성자" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "리스트를 언뮤트했습니다" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "리스트" @@ -4537,7 +4876,7 @@ msgstr "더 불러오기" msgid "Load more suggested feeds" msgstr "추천 피드 더 불러오기" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "새 알림 불러오기" @@ -4552,11 +4891,11 @@ msgstr "새 게시물 불러오기" msgid "Loading..." msgstr "불러오는 중…" -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "로그" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "로그아웃 표시" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "@sawaratsuki.bsky.social 님의 로고" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "<0>@sawaratsuki.bsky.social 님의 로고" @@ -4573,7 +4912,7 @@ msgstr "<0>@sawaratsuki.bsky.social 님의 로고" msgid "Long press to open tag menu for #{tag}" msgstr "길게 눌러 #{tag}에 대한 태그 메뉴를 엽니다" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "XXXXX-XXXXX 형식" @@ -4597,7 +4936,7 @@ msgstr "계정의 이메일 설정 조정하기" msgid "Make one for me" msgstr "나를 위해 만들기" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "이곳이 당신이 가고자 하는 곳인지 확인하세요!" @@ -4606,7 +4945,7 @@ msgstr "이곳이 당신이 가고자 하는 곳인지 확인하세요!" msgid "Manage saved feeds" msgstr "저장한 피드 관리" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "인증 설정 관리" @@ -4614,9 +4953,9 @@ msgstr "인증 설정 관리" msgid "Manage your muted words and tags" msgstr "뮤트한 단어 및 태그 관리" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "모두 읽음으로 표시" @@ -4625,15 +4964,13 @@ msgstr "모두 읽음으로 표시" msgid "Mark as read" msgstr "읽음으로 표시" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "모두 읽음으로 표시했습니다" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "나중에 하기" @@ -4645,19 +4982,26 @@ msgstr "미디어" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "일부 사용자에게 불쾌감을 주거나 부적절할 수 있는 미디어." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "멘션 알림" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "멘션한 사용자" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "멘션한 사용자" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "멘션" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "메뉴" @@ -4665,7 +5009,7 @@ msgstr "메뉴" msgid "Message {0}" msgstr "{0} 님에게 메시지 보내기" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "메시지를 삭제했습니다" @@ -4674,11 +5018,11 @@ msgstr "메시지를 삭제했습니다" msgid "Message deleted" msgstr "메시지 삭제됨" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "@{0} 님이 보낸 메시지: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "서버에서 보낸 메시지: {0}" @@ -4691,19 +5035,23 @@ msgstr "메시지 입력 필드" msgid "Message is too long" msgstr "메시지가 너무 깁니다" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "메시지 옵션" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "메시지" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "심야" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "기타 알림" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "오해의 소지가 있는 계정" msgid "Misleading Post" msgstr "오해의 소지가 있는 게시물" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "검토" @@ -4725,17 +5073,17 @@ msgstr "검토" msgid "Moderation details" msgstr "검토 세부 정보" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "{0} 님의 검토 리스트" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "<0/> 님의 검토 리스트" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "내 검토 리스트" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "검토 리스트를 업데이트했습니다" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "검토 리스트" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "검토 리스트" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "검토 설정" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "검토 상태" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "검토 도구" @@ -4775,7 +5123,7 @@ msgstr "검토 도구" msgid "Moderator has chosen to set a general warning on the content." msgstr "검토자가 콘텐츠에 일반 경고를 설정했습니다." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "더 보기" @@ -4790,13 +5138,13 @@ msgstr "피드 더 보기" msgid "More options" msgstr "옵션 더 보기" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "좋아요 많은 순" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "좋아요 많은 순" @@ -4808,8 +5156,8 @@ msgstr "영화" msgid "Music" msgstr "음악" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "음소거" @@ -4819,8 +5167,8 @@ msgstr "음소거" msgid "Mute {tag}" msgstr "{tag} 뮤트" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "태그에서만 이 단어 뮤트하기" msgid "Mute this word until you unmute it" msgstr "뮤트를 해제할 때까지 이 단어 뮤트하기" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "스레드 뮤트" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "단어 및 태그 뮤트" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "뮤트한 계정" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "뮤트한 계정" @@ -4898,7 +5246,7 @@ msgstr "계정을 뮤트하면 피드와 알림에서 해당 계정의 게시물 msgid "Muted by \"{0}\"" msgstr "\"{0}\"에 의해 뮤트됨" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "뮤트한 단어 및 태그" @@ -4911,7 +5259,7 @@ msgstr "뮤트 목록은 비공개입니다. 뮤트한 계정은 나와 상호 msgid "My Birthday" msgstr "내 생년월일" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "내 피드" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "자연" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "{0}(으)로 이동" @@ -4958,11 +5306,11 @@ msgstr "다음 화면으로 이동합니다" msgid "Navigates to your profile" msgstr "내 프로필로 이동합니다" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "이메일을 변경해야 하나요?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "저작권 위반, 법적 요청 또는 규정 준수 문제를 신고해야 하나요?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "저작권 위반을 신고해야 하나요?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "새로 만들기" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "{firstAuthorLink} 님의 새 {postsCount, plural, other {게시물}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "{firstAuthorName} 님의 새 {postsCount, plural, other {게시물}}" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "새 대화" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "새 이메일 주소" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "새로운 기능" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "새 팔로워 알림" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "새 팔로워" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "새 메시지" msgid "New Moderation List" msgstr "새 검토 리스트" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "새 비밀번호" @@ -5029,7 +5396,7 @@ msgstr "새 비밀번호" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "새 게시물" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "새 게시물" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}의 새 게시물" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}의 새 게시물" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "새 사용자 정보 대화 상자" @@ -5054,10 +5429,14 @@ msgstr "새 사용자 정보 대화 상자" msgid "New User List" msgstr "새 사용자 리스트" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "새로운 순" @@ -5071,15 +5450,15 @@ msgstr "뉴스" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "DNS 패널 없음" msgid "No expiry set" msgstr "종료 시간 미정" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "인기 GIF를 찾을 수 없습니다. Tenor에 문제가 있을 수 있습니다." @@ -5119,32 +5498,35 @@ msgstr "이미지 없음" msgid "No likes yet" msgstr "아직 좋아요 없음" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" -msgstr "더 이상 {0} 님을 팔로우하지 않음" - -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "{MAX_SERVICE_HANDLE_LENGTH, plural, other {#자}} 이하" +msgstr "{0} 님을 언팔로우했습니다" #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "아직 메시지가 없습니다" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "아직 알림이 없습니다" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "없음" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "이 게시물은 작성자 외에는 누구도 인용할 수 없습니다." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "게시물이 없습니다" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "아직 게시물이 없습니다." @@ -5171,7 +5553,7 @@ msgstr "결과 없음" msgid "No results for \"{0}\"." msgstr "\"{0}\"에 대한 결과가 없습니다." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "결과를 찾을 수 없음" @@ -5179,9 +5561,9 @@ msgstr "결과를 찾을 수 없음" msgid "No results found for \"{query}\"" msgstr "\"{query}\"에 대한 결과를 찾을 수 없습니다" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "{query}에 대한 결과를 찾을 수 없습니다" @@ -5189,7 +5571,7 @@ msgstr "{query}에 대한 결과를 찾을 수 없습니다" msgid "No results." msgstr "결과가 없습니다." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "\"{search}\"에 대한 검색 결과를 찾을 수 없습니다." @@ -5198,7 +5580,7 @@ msgstr "\"{search}\"에 대한 검색 결과를 찾을 수 없습니다." msgid "No thanks" msgstr "사용하지 않음" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "없음" @@ -5223,59 +5605,76 @@ msgstr "아무도 찾을 수 없습니다. 다른 사용자를 검색해 보세 msgid "Non-sexual Nudity" msgstr "선정적이지 않은 나체" -#: src/components/KnownFollowers.tsx:255 -msgid "Not followed by anyone you're following" -msgstr "내가 팔로우하는 사람이 팔로우하지 않음" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "없음" -#: src/Navigation.tsx:139 +#: src/components/KnownFollowers.tsx:259 +msgid "Not followed by anyone you're following" +msgstr "내가 팔로우하는 사용자가 팔로우하지 않음" + +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "찾을 수 없음" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "공유 관련 참고 사항" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "참고: Bluesky는 개방형 공개 네트워크입니다. 이 설정은 Bluesky 앱과 웹사이트에서만 내 콘텐츠가 표시되는 것을 제한하며, 다른 앱에서는 이 설정을 준수하지 않을 수 있습니다. 다른 앱과 웹사이트에서는 로그아웃한 사용자에게 내 콘텐츠가 계속 표시될 수 있습니다." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "참고: 이 게시물은 로그인한 사용자만 볼 수 있습니다." + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "빈 페이지" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "알림 필터" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "알림 설정" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "알림 설정" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "알림음" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "알림음" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "알림" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "다른 사용자가 내 스타터 팩을 통해 가입하는 경우 등 기타 모든 알림을 받습니다." + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "지금" @@ -5295,17 +5694,18 @@ msgid "Nudity or adult content not labeled as such" msgstr "나체 또는 성인 콘텐츠로 설정되지 않은 콘텐츠" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "끄기" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "이런!" #: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." -msgstr "이런! 뭔가 잘못되었습니다." +msgstr "문제가 발생했습니다." #. Confirm button text. #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349 @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "확인" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "확인" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "오래된 순" @@ -5331,19 +5736,19 @@ msgstr "오래된 순" msgid "on<0><1/><2><3/>" msgstr "<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "온보딩 재설정" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "하나 이상의 GIF에 대체 텍스트가 누락되었습니다." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "하나 이상의 이미지에 대체 텍스트가 누락되었습니다." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "하나 이상의 동영상에 대체 텍스트가 누락되었습니다." @@ -5351,13 +5756,15 @@ msgstr "하나 이상의 동영상에 대체 텍스트가 누락되었습니다. msgid "Only .jpg and .png files are supported" msgstr ".jpg 및 .png 파일만 지원됩니다" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "{0}만 답글을 달 수 있습니다." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "문자, 숫자, 하이픈만 포함" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "내가 팔로우하는 팔로워만" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "이미지 파일만 지원됩니다" msgid "Only WebVTT (.vtt) files are supported" msgstr "WebVTT(.vtt) 파일만 지원됩니다" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" -msgstr "이런, 뭔가 잘못되었습니다!" +msgstr "문제가 발생했습니다!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "이런!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "서랍 메뉴 열기" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "이모티콘 선택기 열기" @@ -5416,7 +5822,7 @@ msgstr "피드 옵션 메뉴 열기" msgid "Open full emoji list" msgstr "전체 이모티콘 목록 열기" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "{niceUrl} 링크 열기" @@ -5424,11 +5830,11 @@ msgstr "{niceUrl} 링크 열기" msgid "Open message options" msgstr "메시지 옵션 열기" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "검토 디버그 페이지 열기" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "뮤트한 단어 및 태그 설정 열기" @@ -5453,16 +5859,16 @@ msgstr "공유 메뉴 열기" msgid "Open starter pack menu" msgstr "스타터 팩 메뉴 열기" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "스토리북 페이지 열기" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "시스템 로그 열기" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "{numItems}번째 옵션을 엽니다" @@ -5472,7 +5878,7 @@ msgstr "게시물에 콘텐츠 경고를 추가하는 대화 상자를 엽니다 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:61 msgid "Opens a dialog to choose who can reply to this thread" -msgstr "이 스레드에 답글을 달 수 있는 사람을 선택하는 대화 상자를 엽니다" +msgstr "이 스레드에 답글을 달 수 있는 사용자를 선택하는 대화 상자를 엽니다" #: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" @@ -5490,11 +5896,11 @@ msgstr "기기에서 카메라를 엽니다" msgid "Opens captions and alt text dialog" msgstr "자막 및 대체 텍스트 대화 상자를 엽니다" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "핸들 변경 대화 상자를 엽니다" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "답글 작성 상자를 엽니다" @@ -5502,7 +5908,7 @@ msgstr "답글 작성 상자를 엽니다" msgid "Opens device photo gallery" msgstr "기기의 사진 갤러리를 엽니다" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "이모티콘 선택기를 엽니다" @@ -5520,15 +5926,19 @@ msgstr "존재하는 Bluesky 계정에 로그인하는 화면을 엽니다" msgid "Opens GIF select dialog" msgstr "GIF 선택 대화 상자를 엽니다" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "브라우저에서 지원 문서를 엽니다" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "링크 {0}을(를) 엽니다" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "초대 코드 목록을 엽니다" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "라이브 상태 대화 상자를 엽니다" @@ -5536,12 +5946,8 @@ msgstr "라이브 상태 대화 상자를 엽니다" msgid "Opens password reset form" msgstr "비밀번호 재설정 양식을 엽니다" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "연결된 웹사이트를 엽니다" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "이 프로필을 엽니다" @@ -5558,7 +5964,7 @@ msgstr "선택 사항으로 아래에 추가 정보를 입력하세요." msgid "Options:" msgstr "옵션:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "또는 다음 옵션을 결합하세요." @@ -5600,6 +6006,10 @@ msgstr "다른 계정" msgid "Other..." msgstr "기타…" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "이 블로그 게시물" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "Bluesky 검토 팀에서 신고를 접수했습니다." @@ -5608,7 +6018,7 @@ msgstr "Bluesky 검토 팀에서 신고를 접수했습니다." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Bluesky 검토 팀에서 신고를 검토한 결과 귀하의 Bluesky 대화 접속을 비활성화하기로 결정했습니다." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "페이지를 찾을 수 없음" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "페이지를 찾을 수 없음" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,29 +6052,34 @@ msgstr "비밀번호 변경됨" msgid "Password updated!" msgstr "비밀번호를 변경했습니다!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "일시 정지" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "동영상 일시 정지" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" -msgstr "사람들" +msgstr "사용자" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" -msgstr "@{0} 님이 팔로우하는 사람들" +msgstr "@{0} 님이 팔로우하는 사용자" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" -msgstr "@{0} 님을 팔로우하는 사람들" +msgstr "@{0} 님을 팔로우하는 사용자" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "내가 팔로우하는 사용자" #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." @@ -5672,7 +6087,7 @@ msgstr "사진 보관함에 대한 접근 권한이 거부되었습니다. 시 #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" -msgstr "사람 켜기/끄기" +msgstr "사용자 켜기/끄기" #: src/screens/Onboarding/index.tsx:28 #: src/screens/Onboarding/state.ts:109 @@ -5704,12 +6119,12 @@ msgstr "홈에 고정" msgid "Pin to Home" msgstr "홈에 고정" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "내 프로필에 고정" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "고정됨" @@ -5718,7 +6133,7 @@ msgstr "고정됨" msgid "Pinned {0} to Home" msgstr "{0}을(를) 홈에 고정했습니다" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "고정한 피드" @@ -5726,38 +6141,38 @@ msgstr "고정한 피드" msgid "Pinned to your feeds" msgstr "내 피드에 고정했습니다" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "재생" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "{0} 재생" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "동영상 재생" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "동영상 재생" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "GIF를 재생하거나 일시 정지합니다" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "동영상을 재생하거나 일시 정지합니다" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "GIF를 재생합니다" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "동영상을 재생합니다" @@ -5765,12 +6180,16 @@ msgstr "동영상을 재생합니다" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "게시하는 미디어에 해당하는 콘텐츠 경고 라벨을 추가해 주세요." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "자세한 안내는 이메일 받은편지함을 확인하세요. 도착하는 데 1~2분 정도 소요될 수 있습니다." + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "핸들을 입력하세요." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "비밀번호를 입력하세요." @@ -5782,7 +6201,8 @@ msgstr "방금 보낸 이메일에 있는 링크를 클릭하여 새 이메일 msgid "Please complete the verification captcha." msgstr "인증 캡차를 완료해 주세요." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "이메일 주소를 정확하게 입력했는지 다시 한 번 확인해 주세요." @@ -5804,6 +6224,7 @@ msgstr "이 앱 비밀번호에 대해 고유한 이름을 입력하거나 무 msgid "Please enter a valid code." msgstr "올바른 코드를 입력해 주세요." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "올바른 이메일 주소를 입력해 주세요." @@ -5812,7 +6233,11 @@ msgstr "올바른 이메일 주소를 입력해 주세요." msgid "Please enter a valid word, tag, or phrase to mute" msgstr "뮤트할 단어나 태그 또는 문구를 입력하세요" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "추후 확인이 필요할 수 있으므로 임시 이메일이 아닌 유효한 이메일 주소를 입력해 주세요." + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "아래에 <0>{0}(으)로 전송된 코드를 입력하세요." @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "기존 이메일 주소로 전송된 보안 코드를 입력하세요." #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "이메일을 입력하세요." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "초대 코드를 입력하세요." @@ -5853,6 +6278,19 @@ msgstr "{0}이(가) 이 라벨을 잘못 적용했다고 생각하는 이유를 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "대화가 잘못 비활성화되었다고 생각하는 이유를 설명해 주세요" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "이전 페이지로 돌아가거나, 이 요소를 활성화하여 현재 활성화된 콘텐츠의 시작 부분으로 돌아갑니다." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "검토자가 내 연령 확인 상태를 정확하게 심사하기 위해 필요하다고 생각되는 추가 정보를 제공해 주세요." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "언어를 선택하세요" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "검토 서비스를 선택하세요" @@ -5870,9 +6308,9 @@ msgstr "@{0}(으)로 로그인하세요" msgid "Please verify your email" msgstr "이메일을 인증해 주세요" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "이메일 인증하기" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "아래에 메시지를 작성하세요:" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "정치" msgid "Porn" msgstr "음란물" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "게시하기" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "게시물" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "게시하기" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "모두 게시하기" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "게시물 차단됨" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "{0} 님의 게시물" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "@{0} 님의 게시물" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "게시물을 삭제했습니다" @@ -5919,11 +6362,14 @@ msgstr "게시물을 삭제했습니다" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "게시물을 업로드하지 못했습니다. 인터넷 연결을 확인한 후 다시 시도해 주세요." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "게시물 삭제됨" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "게시물 숨김" @@ -5937,11 +6383,11 @@ msgstr "뮤트한 단어로 숨겨진 게시물" msgid "Post Hidden by You" msgstr "내가 숨긴 게시물" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "게시물 상호작용 설정" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "게시물 상호작용 설정" @@ -5954,8 +6400,10 @@ msgstr "게시물 언어" msgid "Post Languages" msgstr "게시물 언어" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "게시물을 찾을 수 없음" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "게시물을 고정 해제했습니다" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "게시물" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "게시물을 텍스트, 태그 또는 둘 다에 따라 뮤트할 수 있습니다. 많은 게시물에 자주 등장하는 단어는 게시물이 표시되지 않을 수 있으므로 피하는 것이 좋습니다." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "게시물 숨겨짐" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "게시물, 답글" + +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" msgstr "오해의 소지가 있는 링크" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "설정을 저장했습니다" +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "오해의 소지가 있는 링크 경고" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "다시 연결을 시도하려면 누르기" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "다시 시도하려면 누르기" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "내가 팔로우하는 이 계정의 팔로워를 보려면 누르세요" @@ -6015,40 +6469,46 @@ msgstr "이전 이미지" msgid "Primary Language" msgstr "주 언어" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "내 팔로우 먼저 표시" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "우선순위 알림" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "개인정보" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "개인정보 및 보안" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "개인정보 및 보안" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "개인정보 및 보안 설정" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "개인정보 처리방침" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "동영상 처리 중…" @@ -6062,15 +6522,14 @@ msgstr "처리 중…" msgid "profile" msgstr "프로필" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "프로필" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "프로필을 업데이트했습니다" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "피드를 탐색하는 데 사용할 수 있는 공개적이고 공유 가능한 목록입니다." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "게시물 등록하기" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "게시물 등록하기" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "답글 등록하기" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "답글 등록하기" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "푸시" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "푸시 알림" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "푸시, 모두" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "푸시, 내가 팔로우하는 사용자" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "QR 코드를 클립보드에 복사했습니다." @@ -6119,44 +6594,52 @@ msgstr "QR 코드를 다운로드했습니다." msgid "QR code saved to your camera roll!" msgstr "QR 코드를 사진 보관함에 저장했습니다." -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "인용 알림" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "게시물 인용" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "인용을 다시 연결했습니다" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "인용을 성공적으로 해제했습니다" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "게시물 인용 비활성화됨" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "인용 설정" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "인용" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "이 게시물의 인용" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "무작위" @@ -6164,8 +6647,8 @@ msgstr "무작위" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "짧은 시간에 핸들 변경을 너무 많이 시도했습니다. 잠시 기다렸다가 다시 시도해 주세요." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "인용 다시 연결" @@ -6177,30 +6660,42 @@ msgstr "{emoji}(으)로 반응하기" msgid "Reactivate your account" msgstr "계정 재활성화" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "{1, plural, other {답글}} {0}개 더 보기" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "블로그 게시물 읽기" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "접기" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "펼치기" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "답글 더 보기" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "블로그 게시물 읽기" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Bluesky 블로그 읽기" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Bluesky 개인정보 처리방침 읽기" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Bluesky 서비스 이용약관 읽기" @@ -6213,6 +6708,14 @@ msgstr "이의신청 이유" msgid "Reason:" msgstr "이유:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "인앱 알림 받기" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "푸시 알림 받기" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "최근 검색" @@ -6234,8 +6737,8 @@ msgstr "거절" msgid "Reject chat request" msgstr "대화 요청 거절하기" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "대화 다시 불러오기" @@ -6244,10 +6747,9 @@ msgstr "대화 다시 불러오기" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "제거" @@ -6259,17 +6761,17 @@ msgstr "스타터 팩에서 {displayName} 제거" msgid "Remove {historyItem}" msgstr "{historyItem} 제거" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "계정 제거" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "첨부 제거" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "아바타 제거" @@ -6284,24 +6786,22 @@ msgstr "임베드 제거" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "피드 제거" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "피드를 제거하시겠습니까?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "내 피드에서 제거" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "빠른 액세스에서 제거하시겠습니까?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "저장한 피드에서 제거" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "내 피드에서 제거하시겠습니까?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "이미지 제거" @@ -6332,12 +6831,8 @@ msgstr "목록에서 뮤트한 단어 제거" msgid "Remove profile" msgstr "프로필 제거" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "인용 제거" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "재게시 취소" @@ -6345,7 +6840,7 @@ msgstr "재게시 취소" msgid "Remove subtitle file" msgstr "자막 파일 제거" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "저장한 피드에서 이 피드를 제거합니다" @@ -6364,11 +6859,11 @@ msgstr "인증 취소" msgid "Remove your verification for this account?" msgstr "이 계정을 인증 취소하시겠습니까?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "작성자가 제거함" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "내가 제거함" @@ -6377,10 +6872,6 @@ msgstr "내가 제거함" msgid "Removed from list" msgstr "리스트에서 제거했습니다" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "내 피드에서 제거했습니다" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "저장한 피드에서 제거했습니다" @@ -6395,34 +6886,36 @@ msgstr "내 피드에서 제거했습니다" msgid "Removed verification" msgstr "인증을 취소했습니다" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "인용된 게시물을 제거합니다" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Discover로 교체" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "답글" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "답글 비활성화됨" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "이 게시물에 대한 답글은 비활성화되어 있습니다." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "답글 게시하기" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "답글 ({0, plural, other {#개}})" @@ -6436,50 +6929,55 @@ msgstr "스레드 작성자에 의해 답글 숨겨짐" msgid "Reply Hidden by You" msgstr "나에 의해 답글 숨겨짐" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "답글 알림" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "답글 설정" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "답글 설정은 스레드 작성자가 선택합니다" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "답글 정렬" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "<0><1/> 님에게 보내는 답글" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "차단된 게시물에 보내는 답글" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "게시물에 보내는 답글" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "나에게 보내는 답글" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "답글 표시 여부를 업데이트했습니다" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "답글을 성공적으로 숨겼습니다" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "피드 신고" msgid "Report list" msgstr "리스트 신고" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "메시지 신고" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "게시물 신고" @@ -6567,25 +7065,26 @@ msgstr "이 스타터 팩 신고하기" msgid "Report this user" msgstr "이 사용자 신고하기" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "재게시" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "재게시" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "재게시 ({0, plural, other {#개}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "재게시 알림" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "재게시 또는 게시물 인용" @@ -6594,35 +7093,47 @@ msgstr "재게시 또는 게시물 인용" msgid "Reposted By" msgstr "재게시한 사용자" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "{0} 님이 재게시함" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "<0><1/> 님이 재게시함" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "내가 재게시함" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "재게시" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "이 게시물의 재게시물" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "변경 요청" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "내 재게시물의 재게시" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "내 재게시물의 재게시 알림" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "코드 요청" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "게시하기 전 대체 텍스트 필수" @@ -6630,7 +7141,7 @@ msgstr "게시하기 전 대체 텍스트 필수" msgid "Require an email code to sign in to your account." msgstr "계정에 로그인할 때 이메일 코드를 요구합니다." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "이 제공자에서 필수" @@ -6642,10 +7153,6 @@ msgstr "내 지역에서 필수" msgid "Resend" msgstr "다시 보내기" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "이메일 다시 전송" msgid "Resend Verification Email" msgstr "인증 이메일 다시 전송하기" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "활동 구독 미세 조정 초기화" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "재설정 코드" @@ -6667,8 +7180,8 @@ msgstr "재설정 코드" msgid "Reset Code" msgstr "재설정 코드" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "온보딩 상태 초기화" @@ -6687,21 +7200,23 @@ msgstr "오류가 발생한 마지막 작업을 다시 시도합니다" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "다시 시도" @@ -6721,19 +7236,19 @@ msgstr "홈 페이지로 돌아갑니다" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "이전 페이지로 돌아갑니다" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "이전 단계로 돌아갑니다" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "이전 단계로 돌아갑니다" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "저장" @@ -6762,15 +7276,13 @@ msgstr "저장" msgid "Save birthday" msgstr "생년월일 저장" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "변경 사항 저장" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "변경 사항 저장" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "QR 코드 저장" msgid "Save to my feeds" msgstr "내 피드에 저장" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "저장한 피드" @@ -6802,18 +7314,14 @@ msgstr "저장한 피드" msgid "Saved to your feeds" msgstr "내 피드에 저장했습니다" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "내 프로필의 모든 변경 사항을 저장합니다" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "이미지 자르기 설정을 저장합니다" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "인사해 보세요!" @@ -6826,16 +7334,16 @@ msgstr "과학" msgid "Scroll to top" msgstr "맨 위로 스크롤" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "검색" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "@{0} 님의 게시물 검색" @@ -6861,7 +7369,7 @@ msgstr "\"{query}\"에 대한 검색 결과" msgid "Search for \"{searchText}\"" msgstr "\"{searchText}\"에 대한 검색 결과" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "다른 사람에게 추천할 피드를 검색하세요." @@ -6877,10 +7385,14 @@ msgstr "더 많은 피드 검색하기" msgid "Search for posts, users, or feeds" msgstr "게시물, 사용자 또는 피드 검색" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "GIF 검색하기" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "현재 로그아웃 상태에서는 검색 기능을 사용할 수 없습니다" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "내 게시물 검색" @@ -6890,12 +7402,12 @@ msgstr "내 게시물 검색" msgid "Search posts" msgstr "게시물 검색" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "프로필 검색" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Tenor 검색" @@ -6903,7 +7415,7 @@ msgstr "Tenor 검색" msgid "Search..." msgstr "검색..." -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "프로필을 검색합니다" @@ -6912,10 +7424,6 @@ msgstr "프로필을 검색합니다" msgid "Security step required" msgstr "보안 단계 필요" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "보안 단계 필요" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "{tag} 게시물 보기" @@ -6936,14 +7444,31 @@ msgstr "사용자의 #{tag} 게시물 보기" msgid "See jobs at Bluesky" msgstr "Bluesky에 지원하기" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "더 보기" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "추천 계정 더 보기" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "탐색 페이지에서 더 많은 추천 프로필 보기" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "이 가이드" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "탐색 슬라이더. 화살표 키를 사용하여 앞뒤로 탐색하고 스페이스 키를 사용하여 재생 또는 일시 정지합니다" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "{0} 선택" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "색상 선택" @@ -6988,7 +7513,7 @@ msgstr "기존 계정에서 선택하기" msgid "Select GIF" msgstr "GIF 선택" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "GIF \"{0}\" 선택" @@ -6996,6 +7521,11 @@ msgstr "GIF \"{0}\" 선택" msgid "Select how long to mute this word for." msgstr "이 단어를 음소거할 기간 선택하기" +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "언어 선택" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "언어 선택…" @@ -7004,7 +7534,7 @@ msgstr "언어 선택…" msgid "Select languages" msgstr "언어 선택" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "검토 서비스 선택" @@ -7045,12 +7575,12 @@ msgstr "앱의 사용자 인터페이스에 사용할 언어를 선택합니다. msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "구독하는 피드에 포함할 언어를 선택합니다. 선택하지 않으면 모든 언어가 표시됩니다." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "생년월일을 선택하세요" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "아래 옵션에서 관심 주제를 선택하세요" @@ -7058,7 +7588,11 @@ msgstr "아래 옵션에서 관심 주제를 선택하세요" msgid "Select your preferred language for translations in your feed." msgstr "피드에서 번역을 위해 선호하는 언어를 선택합니다." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "선호하는 알림 채널 선택" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "옵션 {numItems}개 중 {0}번째를 선택합니다" @@ -7066,17 +7600,9 @@ msgstr "옵션 {numItems}개 중 {0}번째를 선택합니다" msgid "Send a neat website!" msgstr "멋진 웹사이트 링크를 보내 보세요!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "인증 메일 보내기" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "인증 이메일 보내기" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "이메일 보내기" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "이메일 보내기" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "피드백 보내기" @@ -7095,7 +7621,7 @@ msgstr "피드백 보내기" msgid "Send message" msgstr "메시지 보내기" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "{name} 님에게 게시물 보내기" @@ -7114,20 +7640,20 @@ msgstr "신고 보내기" msgid "Send report to {0}" msgstr "{0}에게 신고 보내기" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "{title}에게 신고 보내기" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "인증 이메일 보내기" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "다이렉트 메시지로 보내기" @@ -7143,7 +7669,7 @@ msgstr "서버 주소" msgid "Set app icon to {0}" msgstr "앱 아이콘을 {0}(으)로 설정" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "생년월일 설정" @@ -7159,13 +7685,57 @@ msgstr "계정 설정하기" msgid "Sets email for password reset" msgstr "비밀번호 재설정을 위한 이메일을 설정합니다" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "설정" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "다른 사용자의 활동 알림 설정" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "다른 사용자에게 내 게시물 알림을 허용할지에 대한 설정" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "좋아요 알림 설정" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "멘션 알림 설정" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "새 팔로워 알림 설정" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "기타 모든 알림 설정" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "내 재게시물의 좋아요 알림 설정" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "내 재게시물의 재게시 알림 설정" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "인용 알림 설정" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "답글 알림 설정" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "재게시 알림 설정" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "멋진 이야기를 전하세요!" msgid "Share a fun fact!" msgstr "재미있는 사실을 전하세요!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "무시하고 공유" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "작성자 DID 공유" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "링크 공유" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "링크 공유" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "링크 공유 대화 상자" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "게시물 at:// URI 공유" @@ -7247,8 +7812,8 @@ msgstr "이 스타터 팩 공유하기" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "이 스타터 팩을 공유하여 사람들이 Bluesky에서 커뮤니티에 참여할 수 있도록 도와주세요." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "공유..." msgid "Share your favorite feed!" msgstr "좋아하는 피드를 공유해 보세요!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "공유 설정 테스터" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "연결된 웹사이트를 공유합니다" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "표시" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "대체 텍스트 표시" @@ -7303,8 +7864,8 @@ msgstr "사용자 지정 옵션 표시" msgid "Show hidden replies" msgstr "숨겨진 답글 표시" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "이런 항목 덜 보기" @@ -7312,55 +7873,63 @@ msgstr "이런 항목 덜 보기" msgid "Show list anyway" msgstr "무시하고 리스트 표시하기" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "더 보기" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "이런 항목 더 보기" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "답글 더 보기" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "뮤트된 답글 표시" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "게시물 답글을 스레드 트리 뷰로 표시하기" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "인용 게시물 표시" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "답글 표시" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "답글 표시 형식" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "스레드로 답글 표시" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" -msgstr "내가 팔로우하는 사람들의 답글을 다른 모든 답글보다 먼저 표시" +msgstr "내가 팔로우하는 사용자의 답글을 다른 모든 답글보다 먼저 표시하기" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "모두에게 답글 표시" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "재게시물 표시" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "팔로우 중 피드에서 저장한 피드 샘플 보기" @@ -7372,16 +7941,17 @@ msgstr "경고 표시" msgid "Show warning and filter from feeds" msgstr "경고 표시 및 피드에서 필터링" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "이 게시물이 언제 작성되었는지에 대한 정보를 표시합니다" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "전환할 수 있는 다른 계정을 표시합니다" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "콘텐츠를 표시합니다" @@ -7390,14 +7960,15 @@ msgstr "콘텐츠를 표시합니다" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "목록에 없는 계정으로 로그인" msgid "Sign in to Bluesky or create a new account" msgstr "Bluesky에 로그인하거나 새 계정 만들기" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "로그인하여 게시물 보기" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "로그아웃" @@ -7444,8 +8020,8 @@ msgstr "로그아웃" msgid "Sign Out" msgstr "로그아웃" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "로그아웃하시겠습니까?" @@ -7459,12 +8035,12 @@ msgstr "로그인 필요" msgid "Signed in as @{0}" msgstr "@{0}(으)로 로그인했습니다" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "비슷한 계정" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "건너뛰기" @@ -7472,12 +8048,11 @@ msgstr "건너뛰기" msgid "Skip this flow" msgstr "이 단계 건너뛰기" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "작음" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "알림을 끕니다" @@ -7490,13 +8065,13 @@ msgstr "소프트웨어 개발" msgid "Some of your verifications are invalid." msgstr "일부 인증이 유효하지 않습니다." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "좋아할 만한 다른 피드" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" -msgstr "일부 사람들이 답글을 달 수 있음" +msgstr "일부 사용자가 답글을 달 수 있음" #: src/components/dms/MessageItem.tsx:148 msgid "Someone reacted {0}" @@ -7508,51 +8083,58 @@ msgstr "누가 {1}에 {0}(으)로 반응함" #: src/components/moderation/ReportDialog/index.tsx:76 msgid "Something wasn't quite right with the data you're trying to report. Please contact support." -msgstr "신고하려는 데이터에 문제가 있습니다. 지원에 문의하세요." +msgstr "신고하려는 데이터에 문제가 있습니다. 지원팀에 문의하세요." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" -msgstr "알 수 없는 오류가 발생했습니다" +msgstr "문제가 발생했습니다" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 msgid "Something went wrong, please try again" -msgstr "알 수 없는 오류가 발생했습니다. 다시 시도해 주세요" +msgstr "문제가 발생했습니다. 다시 시도해 주세요" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." -msgstr "알 수 없는 오류가 발생했습니다. 다시 시도해 주세요." +msgstr "문제가 발생했습니다. 다시 시도해 주세요." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "문제가 발생했습니다!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "문제가 발생했습니다. 잠시 후 다시 시도해 주세요." + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." -msgstr "알 수 없는 오류가 발생했습니다. 다시 시도해 주세요." +msgstr "문제가 발생했습니다. 다시 시도해 주세요." #: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Something wrong? Let us know." msgstr "문제가 발생했나요? 저희에게 알려주세요." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "죄송합니다. 세션이 만료되었습니다. 다시 로그인해 주세요." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "답글 정렬" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "답글 정렬" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "동일한 게시물에 대한 답글을 정렬하는 기준입니다." @@ -7579,7 +8161,7 @@ msgstr "스팸, 과도한 멘션 또는 답글" msgid "Sports" msgstr "스포츠" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "대화를 시작하면 여기에 표시됩니다." @@ -7590,20 +8172,20 @@ msgstr "새 대화 시작하기" #: src/view/screens/ProfileList.tsx:846 #: src/view/screens/ProfileList.tsx:967 msgid "Start adding people" -msgstr "사람 추가하기" +msgstr "사용자 추가하기" #: src/view/screens/ProfileList.tsx:853 #: src/view/screens/ProfileList.tsx:974 msgid "Start adding people!" -msgstr "사람들을 추가해 보세요!" +msgstr "사용자를 추가해 보세요!" #: src/components/dialogs/SearchablePeopleList.tsx:382 msgid "Start chat with {displayName}" msgstr "{displayName} 님과 대화 시작하기" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "스타터 팩" @@ -7611,12 +8193,12 @@ msgstr "스타터 팩" msgid "Starter pack by {0}" msgstr "{0} 님의 스타터 팩" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "<0/> 님의 스타터 팩" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "내 스타터 팩" @@ -7631,26 +8213,28 @@ msgstr "스타터 팩" #: src/components/StarterPack/ProfileStarterPacks.tsx:266 msgid "Starter packs let you easily share your favorite feeds and people with your friends." -msgstr "스타터 팩을 사용하면 좋아하는 피드와 사람들을 친구들과 쉽게 공유할 수 있습니다." +msgstr "스타터 팩을 사용하면 좋아하는 피드와 사용자를 친구들과 쉽게 공유할 수 있습니다." #: src/screens/Settings/AboutSettings.tsx:100 #: src/screens/Settings/AboutSettings.tsx:103 msgid "Status Page" msgstr "상태 페이지" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "{1}단계 중 {0}단계" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "스토리지가 지워졌으며 지금 앱을 다시 시작해야 합니다." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "스토리북" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "이의신청 제출" msgid "Submit Appeal" msgstr "이의신청 제출" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "신고 제출" @@ -7676,10 +8260,14 @@ msgstr "신고 제출" msgid "Subscribe" msgstr "구독" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "이 라벨을 사용하려면 @{0}을(를) 구독하세요." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "계정 활동 알림 받기" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "라벨러 구독" @@ -7692,8 +8280,12 @@ msgstr "이 라벨러 구독하기" msgid "Subscribe to this list" msgstr "이 리스트 구독하기" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "성공" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "성공!" @@ -7705,7 +8297,7 @@ msgstr "성공적으로 인증했습니다" msgid "Suggested Accounts" msgstr "추천 계정" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "나를 위한 추천" @@ -7714,26 +8306,26 @@ msgstr "나를 위한 추천" msgid "Suggestive" msgstr "외설적" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "일출" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "일몰" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "지원" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "계정 전환" @@ -7742,24 +8334,24 @@ msgstr "계정 전환" msgid "Switch Account" msgstr "계정 전환" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "계정 전환" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "{0}(으)로 전환" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "시스템" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "시스템 로그" @@ -7767,6 +8359,18 @@ msgstr "시스템 로그" msgid "Tags only" msgstr "태그만" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "세부 정보 보기" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "탭하여 세부 정보 보기" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "이 업데이트 내용을 이해하고 동의하며 Bluesky를 계속 사용하려면 탭합니다" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "좀 더 자세히 알려주세요" msgid "Terms" msgstr "이용약관" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "서비스 이용약관" @@ -7848,10 +8454,6 @@ msgstr "텍스트 입력 필드" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "피드백을 보내주셔서 감사합니다! 피드 운영자에게 전송되었습니다." -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "감사합니다! 이메일을 성공적으로 인증했습니다." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "감사합니다. 신고를 전송했습니다." @@ -7864,28 +8466,28 @@ msgstr "이메일 주소를 성공적으로 인증했습니다. 이 대화 상 msgid "That contains the following:" msgstr "텍스트 파일 내용:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "이 핸들은 이미 사용 중입니다." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "스타터 팩을 찾을 수 없습니다." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "이 사용자 이름은 이미 사용 중입니다" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "이상입니다, 여러분!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "그게 다예요!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "차단을 해제하면 이 계정이 나와 상호작용할 수 있게 됩니다." @@ -7900,7 +8502,7 @@ msgstr "앱을 다시 시작합니다" msgid "The author of this thread has hidden this reply." msgstr "이 스레드의 작성자가 이 답글을 숨겼습니다." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Bluesky 웹 애플리케이션" @@ -7920,10 +8522,6 @@ msgstr "Discover 피드" msgid "The Discover feed now knows what you like" msgstr "Discover 피드는 이제 당신이 무엇을 좋아하는지 알 테죠" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "입력한 이메일 주소가 현재 이메일 주소와 동일합니다." - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "앱에서 더 나은 환경을 경험하세요. 지금 Bluesky를 다운로드하면 중단한 부분부터 다시 시작합니다." @@ -7944,8 +8542,16 @@ msgstr "내 콘텐츠에 다음 라벨이 적용되었습니다." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "새 게시물을 작성할 때 다음 설정이 기본값으로 사용됩니다. 작성기에서 특정 게시물에 대해 이러한 설정을 변경할 수 있습니다." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "해당 지역의 법률에 따라 성인 콘텐츠 및 다이렉트 메시지와 같은 Bluesky의 특정 기능을 이용하려면 먼저 성인 인증을 완료해야 합니다." + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "해당 지역의 법률에 따라 특정 기능을 이용하려면 성인 인증을 완료해야 합니다. 자세히 알아보려면 탭하세요." + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "게시물이 삭제되었을 수 있습니다." @@ -7953,9 +8559,10 @@ msgstr "게시물이 삭제되었을 수 있습니다." msgid "The Privacy Policy has been moved to <0/>" msgstr "개인정보 처리방침을 <0/>(으)로 이동했습니다" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "선택한 동영상이 100MB를 초과합니다." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "선택한 동영상이 100MB보다 큽니다. 더 작은 파일로 다시 시도해 주세요." #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "서비스 이용약관을 다음으로 이동했습니다:" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "입력한 인증 코드가 올바르지 않습니다. 올바른 인증 링크를 사용했는지 확인하거나 새 인증 링크를 요청하세요." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "테마" @@ -7990,14 +8597,14 @@ msgstr "테마" msgid "There is no time limit for account deactivation, come back any time." msgstr "계정 비활성화에는 시간 제한이 없으므로 언제든지 다시 돌아올 수 있습니다." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Tenor에 연결하는 동안 문제가 발생했습니다." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "서버에 연결하는 동안 문제가 발생했습니다" @@ -8006,17 +8613,12 @@ msgstr "서버에 연결하는 동안 문제가 발생했습니다" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "서버에 연결하는 동안 문제가 발생했습니다. 인터넷 연결을 확인한 후 다시 시도해 주세요." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "서버에 연결하는 동안 문제가 발생했습니다" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "알림을 가져오는 동안 문제가 발생했습니다. 다시 시도하려면 이곳을 탭하세요." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "게시물을 가져오는 동안 문제가 발생했습니다. 다시 시도하려면 이곳을 탭하세요." @@ -8037,7 +8639,7 @@ msgstr "리스트를 가져오는 동안 문제가 발생했습니다. 다시 msgid "There was an issue fetching your service info" msgstr "내 서비스 정보를 가져오는 동안 문제가 발생했습니다" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "이 피드를 삭제하는 동안 문제가 발생했습니다. 인터넷 연결을 확인한 후 다시 시도해 주세요." @@ -8052,9 +8654,9 @@ msgstr "신고를 전송하는 동안 문제가 발생했습니다. 인터넷 msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "피드를 업데이트하는 동안 문제가 발생했습니다. 인터넷 연결을 확인한 후 다시 시도해 주세요." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "피드를 업데이트하는 동안 문제가 발생했습니다. 인터 msgid "There was an issue! {0}" msgstr "문제가 발생했습니다! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "문제가 발생했습니다! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "문제가 발생했습니다. 인터넷 연결을 확인한 후 다시 시도해 주세요." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "애플리케이션에 예기치 않은 문제가 발생했습니다. 이런 일이 발생하면 저희에게 알려주세요!" @@ -8089,7 +8691,7 @@ msgstr "애플리케이션에 예기치 않은 문제가 발생했습니다. 이 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Bluesky에 신규 사용자가 몰리고 있습니다! 최대한 빨리 계정을 활성화하겠습니다." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "이 설정은 팔로우 중 피드에만 적용됩니다." @@ -8146,7 +8748,7 @@ msgstr "이 콘텐츠는 {0}에서 호스팅됩니다. 외부 미디어를 사 msgid "This content is not available because one of the users involved has blocked the other." msgstr "관련 사용자 중 한 명이 다른 사용자를 차단했기 때문에 이 콘텐츠를 사용할 수 없습니다." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "이 콘텐츠는 Bluesky 계정이 없으면 볼 수 없습니다." @@ -8158,6 +8760,10 @@ msgstr "이 대화는 삭제되었거나 비활성화된 계정과의 대화입 msgid "This email is already associated with your account." msgstr "이 이메일은 이미 내 계정에 연결되어 있습니다." +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "이 기능을 사용하면 다른 사용자가 내 새 게시물과 답글에 대한 알림을 받을 수 있습니다. 누구에게 이 기능을 사용 설정하시겠습니까?" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "이 기능은 베타 버전입니다. 저장소 내보내기에 대한 자세한 내용은 <0>이 블로그 글에서 확인할 수 있습니다." @@ -8170,7 +8776,7 @@ msgstr "앱 비밀번호를 사용하는 동안에는 이 기능을 사용할 msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "앱 비밀번호를 사용하는 동안에는 이 기능을 사용할 수 없습니다. 기본 비밀번호로 로그인하세요." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "이 피드는 현재 트래픽이 많아 일시적으로 사용할 수 없습니다. 나중에 다시 시도해 주세요." @@ -8209,11 +8815,11 @@ msgstr "이 라벨은 작성자가 적용했습니다." msgid "This label was applied by you." msgstr "이 라벨은 내가 적용했습니다." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "이 라벨러는 라벨을 등록하지 않았으며 활성화되어 있지 않을 수 있습니다." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "이 링크를 클릭하면 다음 웹사이트로 이동합니다." @@ -8233,29 +8839,28 @@ msgstr "이 리스트는 비어 있습니다." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "이 검토 서비스는 사용할 수 없습니다. 자세한 내용은 아래를 참조하세요. 이 문제가 지속되면 문의해 주세요." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "이 게시물은 <0>{0}에 작성되었다고 주장하지만 Bluesky에서는 <1>{1}에 처음 확인되었습니다." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "이 게시물에 알 수 없는 유형의 스레드게이트가 있습니다. 앱이 오래되었을 수 있습니다." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "이 게시물은 삭제되었습니다." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "이 게시물은 로그인한 사용자에게만 표시됩니다. 로그인하지 않은 사용자에게는 표시되지 않습니다." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "이 게시물은 로그인한 사용자만 볼 수 있습니다." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "이 게시물을 피드와 스레드에서 숨깁니다. 이 작업은 되돌릴 수 없습니다." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "이 게시물의 작성자가 인용 게시물을 비활성화했습니다." @@ -8263,11 +8868,11 @@ msgstr "이 게시물의 작성자가 인용 게시물을 비활성화했습니 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "이 프로필은 로그인한 사용자에게만 표시됩니다. 로그인하지 않은 사용자에게는 표시되지 않습니다." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "이 답글은 스레드 하단의 숨겨진 위치에 정렬되며 자신과 다른 사용자 모두의 후속 답글에 대한 알림이 뮤트됩니다." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "이 서비스는 서비스 이용약관이나 개인정보 처리방침을 제공하지 않습니다." @@ -8275,6 +8880,10 @@ msgstr "이 서비스는 서비스 이용약관이나 개인정보 처리방침 msgid "This should create a domain record at:" msgstr "이 도메인에 레코드가 추가됩니다:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "이 절차는 몇 분 정도 소요됩니다." + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "이 사용자는 표시 이름이 없으므로 인증할 수 없습니다." @@ -8316,16 +8925,18 @@ msgstr "이 사용자는 아무도 팔로우하지 않았습니다." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "뮤트한 단어에서 \"{0}\"을(를) 삭제합니다. 나중에 언제든지 다시 추가할 수 있습니다." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "빠른 액세스 목록에서 @{0}을(를) 제거합니다." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "모든 사용자의 인용 게시물에서 해당 게시물이 삭제되고 자리 표시자로 대체됩니다." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "스레드 옵션" @@ -8334,24 +8945,27 @@ msgstr "스레드 옵션" msgid "Thread preferences" msgstr "스레드 설정" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "스레드 설정" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "스레드" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "스레드 모드" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "스레드 설정" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "남은 시간: {0, plural, other {#초}}" @@ -8376,42 +8990,56 @@ msgstr "이 신고를 누구에게 보내시겠습니까?" msgid "Today" msgstr "오늘" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "드롭다운 열기 및 닫기" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "성인 콘텐츠 활성화 또는 비활성화 전환" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "소리를 켜거나 끕니다" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "인기" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "인기순" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "주제" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "번역" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "트리 뷰" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "인기" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "인기 동영상" @@ -8428,14 +9056,10 @@ msgstr "다시 시도" msgid "TV" msgstr "TV" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "2단계 인증" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "원하는 사용자 이름을 입력하세요" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "메시지를 입력하세요" @@ -8453,7 +9077,7 @@ msgstr "연결할 수 없습니다. 인터넷 연결을 확인한 후 다시 시 #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "서비스에 연결할 수 없습니다. 인터넷 연결을 확인하 msgid "Unable to delete" msgstr "삭제할 수 없음" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "풀 리퀘스트 적용 취소" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "풀 리퀘스트 {currentChannel} 적용 취소" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "사용할 수 없음" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "사용할 수 없는 피드 정보" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "차단 해제" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "차단 해제" @@ -8486,7 +9126,7 @@ msgstr "차단 해제" msgid "Unblock account" msgstr "계정 차단 해제" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "계정을 차단 해제하시겠습니까?" @@ -8495,13 +9135,13 @@ msgstr "계정을 차단 해제하시겠습니까?" msgid "Unblock list" msgstr "리스트 차단 해제" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "재게시 취소" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "재게시 취소 ({0, plural, other {#개}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "언팔로우" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "{0} 님을 언팔로우" @@ -8523,7 +9163,7 @@ msgstr "계정 언팔로우" msgid "Unfollows the user" msgstr "사용자를 언팔로우합니다" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "안타깝게도 구독하는 라벨러 중 이 신고 유형을 지원하는 라벨러가 없습니다." @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "좋아요 취소" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "좋아요 취소 ({0, plural, other {#개}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "음소거 해제" @@ -8555,8 +9195,8 @@ msgstr "언뮤트" msgid "Unmute {tag}" msgstr "{tag} 언뮤트" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "대화 언뮤트" msgid "Unmute list" msgstr "리스트 언뮤트" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "스레드 언뮤트" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "동영상 음소거 해제" @@ -8597,8 +9237,8 @@ msgstr "피드 고정 해제" msgid "Unpin from home" msgstr "홈에서 고정 해제" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "프로필에서 고정 해제" @@ -8614,8 +9254,8 @@ msgstr "{0}을(를) 홈에서 고정 해제했습니다" msgid "Unpinned from your feeds" msgstr "내 피드에서 고정 해제했습니다" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "이메일 알림 켜기" @@ -8636,7 +9276,7 @@ msgstr "이 라벨러 구독 취소하기" msgid "Unsubscribed from list" msgstr "리스트를 구독 취소했습니다" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "지원되지 않는 동영상 유형" @@ -8662,8 +9302,8 @@ msgstr "리스트에서 <0>{displayName} 업데이트" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "이메일 변경" @@ -8676,17 +9316,17 @@ msgstr "{domain}(으)로 변경" msgid "Update your email" msgstr "이메일 변경하기" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "인용 첨부를 업데이트하지 못했습니다" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "답글 표시 여부를 업데이트하지 못했습니다" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "업데이트 중…" @@ -8698,20 +9338,20 @@ msgstr "대신 사진 업로드하기" msgid "Upload a text file to:" msgstr "텍스트 파일 업로드 경로:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "카메라에서 업로드" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "파일에서 업로드" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "보관함에서 업로드" msgid "Uploading images..." msgstr "이미지 업로드 중…" -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "링크 미리보기 업로드 중…" -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "동영상 업로드 중…" @@ -8761,6 +9401,10 @@ msgstr "추천 사용" msgid "Use this to sign in to the other app along with your handle." msgstr "이 비밀번호와 핸들을 사용하여 다른 앱에 로그인하세요." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "KWS나 Bluesky에서 연락해야 할 경우를 대비하여, 계정 이메일 주소 또는 직접 관리하는 다른 실제 이메일 주소를 사용하세요." + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "사용 계정:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "사용자 리스트를 업데이트했습니다" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "사용자 이름은 {MAX_SERVICE_HANDLE_LENGTH, plural, other {#자}}를 초과할 수 없습니다" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "사용자 이름은 하이픈으로 시작하거나 끝날 수 없습니다" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "사용자 이름에는 영문자(a-z), 숫자, 하이픈만 사용할 수 있습니다" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "사용자 이름 또는 이메일 주소" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "<0>@{0} 님이 팔로우하는 사용자" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "<0>@{0} 님을 팔로우하는 사용자" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "내가 팔로우하는 사용자" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "\"{0}\"에 있는 사용자" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "내가 팔로우하는 사용자" @@ -8846,11 +9502,11 @@ msgstr "값:" msgid "Verification failed, please try again." msgstr "인증하지 못했습니다. 다시 시도해 주세요." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "인증 설정" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "인증 설정" @@ -8870,8 +9526,15 @@ msgstr "인증자:" msgid "Verify account" msgstr "계정 인증" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "다시 인증하기" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "코드 인증" @@ -8880,21 +9543,20 @@ msgstr "코드 인증" msgid "Verify DNS Record" msgstr "DNS 레코드 인증" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "이메일 인증" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "이메일 코드 인증하기" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "이메일 인증 대화 상자" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "지금 인증하기" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "텍스트 파일 인증" msgid "Verify this account?" msgstr "이 계정을 인증하시겠습니까?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "나이를 인증하세요" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "이메일 인증하기" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "이메일 인증하기" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "인증하는 중" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "연령 확인 상태를 확인하는 중" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "버전 {appVersion}" +msgid "Version {0}" +msgstr "버전 {0}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "동영상" @@ -8928,7 +9598,7 @@ msgstr "동영상" msgid "Video failed to process" msgstr "동영상을 처리하지 못했습니다" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "동영상 피드" @@ -8942,15 +9612,15 @@ msgstr "{0} 님의 동영상: {text}" msgid "Video Games" msgstr "비디오 게임" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "동영상 일시 정지됨" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "동영상 재생 중" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "동영상을 찾을 수 없습니다." @@ -8958,11 +9628,11 @@ msgstr "동영상을 찾을 수 없습니다." msgid "Video settings" msgstr "동영상 설정" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "동영상 업로드됨" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "동영상: {0}" @@ -8979,11 +9649,11 @@ msgstr "동영상 길이는 3분 미만이어야 합니다" msgid "View {0}'s avatar" msgstr "{0} 님의 아바타 보기" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "{0} 님의 프로필 보기" @@ -8991,7 +9661,7 @@ msgstr "{0} 님의 프로필 보기" msgid "View {displayName}'s profile" msgstr "{displayName} 님의 프로필 보기" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "차단된 사용자의 프로필 보기" @@ -9009,7 +9679,6 @@ msgstr "디버그 항목 보기" msgid "View details" msgstr "세부 정보 보기" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "저작권 위반 신고에 대한 세부 정보 보기" @@ -9022,23 +9691,23 @@ msgstr "전체 스레드 보기" msgid "View information about these labels" msgstr "이 라벨에 대한 정보 보기" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "더 보기" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "프로필 보기" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "아바타 보기" @@ -9054,28 +9723,28 @@ msgstr "이 사용자의 인증 보기" msgid "View users who like this feed" msgstr "이 피드를 좋아하는 사용자 보기" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "동영상 보기" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "내가 차단한 계정 보기" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "기본 게시물 상호작용 설정 보기" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "내 피드를 보거나 새 피드 탐색하기" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "내 검토 리스트 보기" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "내가 뮤트한 계정 보기" @@ -9083,8 +9752,8 @@ msgstr "내가 뮤트한 계정 보기" msgid "View your verifications" msgstr "내 인증 보기" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "전체 이미지를 봅니다" @@ -9092,16 +9761,20 @@ msgstr "전체 이미지를 봅니다" msgid "Views video in immersive mode" msgstr "몰입형 모드로 동영상을 봅니다" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "사이트 방문" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "사이트 열기" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "알림 설정으로 이동" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "음량" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "콘텐츠 경고 및 피드에서 필터링" msgid "Watch now" msgstr "시청하기" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "이 맞춤 피드를 제공하는 서비스에 연결할 수 없습니다. 일시적인 문제가 발생했거나 서비스가 영구적으로 중단되었을 수 있습니다." + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "이 리스트를 찾을 수 없습니다. 삭제되었을 수 있습니다." + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "해당 해시태그에 대한 결과를 찾을 수 없습니다." @@ -9128,7 +9809,7 @@ msgstr "해당 해시태그에 대한 결과를 찾을 수 없습니다." msgid "We couldn't find any results for that topic." msgstr "해당 주제에 대한 결과를 찾을 수 없습니다." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "이 대화를 불러올 수 없습니다" @@ -9136,6 +9817,10 @@ msgstr "이 대화를 불러올 수 없습니다" msgid "We estimate {estimatedTime} until your account is ready." msgstr "계정이 준비될 때까지 {estimatedTime}이 걸릴 것으로 예상됩니다." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "우리는 <0>KWS와 제휴하여 귀하가 성인인지 확인합니다. 아래의 \"시작하기\"를 클릭하면 KWS가 이전에 이 이메일 주소를 사용하여 KWS 기술로 구동되는 다른 게임/서비스에서 연령을 인증한 적이 있는지 확인합니다. 그렇지 않은 경우, KWS에서 연령 확인을 위한 지침을 이메일로 발송합니다. 확인이 완료되면 Bluesky를 계속 사용할 수 있는 페이지로 돌아갑니다." + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "<0>{0}(으)로 또 다른 인증 이메일을 보냈습니다." @@ -9148,15 +9833,15 @@ msgstr "즐거운 시간 되시기 바랍니다. Bluesky의 다음 특징을 기 msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "팔로우하는 사용자의 게시물이 부족합니다. 대신 <0/>의 최신 게시물을 표시합니다." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "관심 주제를 2개 이상 선택하는 것을 권장합니다." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "링크가 포함된 이메일을 <0>{0}(으)로 보냈습니다. 이메일 인증 절차를 완료하려면 해당 링크를 클릭하세요." -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "동영상을 업로드할 수 있는지 확인할 수 없습니다. 다시 시도해 주세요." @@ -9164,10 +9849,14 @@ msgstr "동영상을 업로드할 수 있는지 확인할 수 없습니다. 다 msgid "We were unable to load your birth date preferences. Please try again." msgstr "생년월일 설정을 불러올 수 없습니다. 다시 시도해 주세요." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "현재 구성된 라벨러를 불러올 수 없습니다." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "연결 문제로 인해 인증 정보를 받지 못했습니다. 나중에 정보가 도착하면 계정이 자동으로 업데이트됩니다." + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "연결하지 못했습니다. 계정 설정을 계속하려면 다시 시도해 주세요. 계속 실패하면 이 과정을 건너뛸 수 있습니다." @@ -9176,7 +9865,7 @@ msgstr "연결하지 못했습니다. 계정 설정을 계속하려면 다시 msgid "We will let you know when your account is ready." msgstr "계정이 준비되면 알려 드리겠습니다." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "링크가 포함된 이메일을 <0>{0}(으)로 보냅니다. 이메일 인증 절차를 완료하려면 해당 링크를 클릭하세요." @@ -9184,6 +9873,22 @@ msgstr "링크가 포함된 이메일을 <0>{0}(으)로 보냅니다. 이메 msgid "We'll use this to help customize your experience." msgstr "이를 통해 사용자 환경을 맞춤 설정할 수 있습니다." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "또한 <0>커뮤니티 가이드라인도 업데이트될 예정이며, 이에 대한 여러분의 의견을 기다립니다! 새로운 가이드라인은 2025년 10월 15일부터 적용됩니다." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "또한 커뮤니티 가이드라인도 업데이트될 예정이며, 이에 대한 여러분의 의견을 기다립니다! 새로운 가이드라인은 2025년 10월 15일부터 적용됩니다." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "서버에서 연령 확인 상태를 확인 중입니다. 몇 초 정도 소요됩니다." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "계정의 연령 확인 절차를 시작하는 데 문제가 발생했습니다. 도움이 필요하면 <0>지원팀에 문의해 주세요." + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "네트워크 문제가 발생했습니다. 다시 시도해 주세요" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Bluesky에 인증을 쉽게 확인할 수 있는 체크 표시를 도입합니다." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "함께하게 되어 정말 기뻐요!" @@ -9205,15 +9910,15 @@ msgstr "죄송하지만 이 리스트를 불러올 수 없습니다. 이 문제 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "죄송하지만 현재 뮤트한 단어를 불러올 수 없습니다. 다시 시도해 주세요." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "죄송하지만 검색을 완료할 수 없습니다. 몇 분 후에 다시 시도해 주세요." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "죄송하지만 답글을 달려는 게시물이 삭제되었습니다." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "죄송합니다. 페이지를 찾을 수 없습니다." @@ -9222,6 +9927,26 @@ msgstr "죄송합니다. 페이지를 찾을 수 없습니다." msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "죄송합니다. 라벨러는 20개까지만 구독할 수 있으며 20개에 도달했습니다." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "2025년 9월 15일부터 <0>서비스 이용약관, <1>개인정보 처리방침, <2>저작권 정책이 업데이트됩니다." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "정책 업데이트 안내" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "2025년 9월 15일부터 서비스 이용약관, 개인정보 처리방침, 저작권 정책이 업데이트됩니다." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "2025년 9월 15일부터 서비스 이용약관, 개인정보 처리방침, 저작권 정책이 업데이트됩니다. 또한 커뮤니티 가이드라인도 업데이트될 예정이며, 이에 대한 여러분의 의견을 기다립니다! 새로운 가이드라인은 2025년 10월 15일부터 적용됩니다. 이 변경 사항에 대한 자세한 내용과 의견 제출 방법은 이 블로그 게시물에서 확인할 수 있습니다." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "내 연령 확인 상태를 확인했습니다. 이제 이 대화 상자를 닫을 수 있습니다." + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "다시 돌아오셨군요!" @@ -9240,7 +9965,7 @@ msgstr "스타터 팩의 이름을 무엇으로 할까요?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "무슨 일이 일어나고 있나요?" @@ -9256,25 +9981,25 @@ msgstr "이 게시물에 어떤 언어가 사용되나요?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "알고리즘 피드에 어떤 언어를 표시하시겠습니까?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "누가 이 게시물과 상호작용할 수 있나요?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" -msgstr "답글을 달 수 있는 사람" +msgstr "답글을 달 수 있는 사용자" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127 msgid "Who can verify?" msgstr "누가 인증을 받을 수 있나요?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "이런!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "이런! 인기 동영상을 불러오지 못했습니다." @@ -9322,12 +10047,12 @@ msgstr "이 사용자를 검토해야 하는 이유는 무엇인가요?" msgid "Write a message" msgstr "메시지를 입력하세요" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "게시물 작성" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "답글 작성하기" @@ -9358,11 +10083,11 @@ msgstr "비활성화" msgid "Yes, delete this starter pack" msgstr "이 스타터 팩 삭제하기" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "해제" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "숨기기" @@ -9378,6 +10103,10 @@ msgstr "어제" msgid "You" msgstr "나" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "또한 <0>Bluesky 커뮤니티 가이드라인에도 동의하는 것입니다. <1>업데이트된 가이드라인은 10월 15일부터 적용됩니다." + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "나는 신뢰할 수 있는 인증자입니다" @@ -9386,6 +10115,10 @@ msgstr "나는 신뢰할 수 있는 인증자입니다" msgid "You are creating an account on" msgstr "호스팅 제공자:" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "현재 Bluesky의 연령 확인 절차를 이용할 수 없습니다. 오류라고 생각되면 <0>운영팀에 문의해 주세요." + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "대기 중입니다." @@ -9403,7 +10136,7 @@ msgstr "더 이상 라이브 중이 아닙니다" msgid "You are not allowed to go live" msgstr "라이브를 시작할 수 없습니다" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "동영상을 업로드할 수 없습니다." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "내 계정은 인증되었습니다" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "현재 인증된 상태입니다. 표시 이름을 변경하면 인증이 해제될 수 있습니다. <0>더 알아보기" @@ -9441,10 +10173,18 @@ msgstr "팔로우할 새로운 맞춤 피드를 찾을 수도 있습니다." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "대신 계정을 일시적으로 비활성화한 후 언제든지 재활성화할 수도 있습니다." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "앱 내 대화 설정에서 대화 알림 소리 여부를 선택할 수 있습니다" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "어떤 설정을 선택하든 진행 중인 대화를 계속할 수 있습니다." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "이제 특정 사용자가 게시물을 올릴 때 알림을 받도록 선택할 수 있습니다. 실시간 업데이트를 받고 싶은 사용자가 있다면 해당 사용자의 프로필로 이동하여 팔로우 버튼 근처에 있는 새로운 종 모양 아이콘을 찾아보세요." + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "이제 새 비밀번호로 로그인할 수 있습니다." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "계정을 재활성화하여 로그인을 계속할 수 있습니다. 내 프로필과 글이 다른 사용자에게 표시됩니다." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "<0>설정 → 검토 → 상호작용 설정에서 기본 상호작용 설정을 변경할 수 있습니다." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "나중에 설정에서 변경할 수 있습니다." @@ -9472,7 +10212,7 @@ msgstr "팔로워가 없습니다." msgid "You don't follow any users who follow @{name}." msgstr "@{name} 님을 팔로우하는 사용자를 팔로우하고 있지 않습니다." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "지금은 대화 요청이 없습니다." @@ -9480,15 +10220,15 @@ msgstr "지금은 대화 요청이 없습니다." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "아직 초대 코드가 없습니다! Bluesky를 좀 더 오래 사용하신 후에 보내 드리겠습니다." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "고정한 피드가 없습니다." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "저장한 피드가 없습니다." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "작성자를 차단했거나 작성자가 나를 차단했습니다." @@ -9502,6 +10242,10 @@ msgstr "이 사용자를 차단했습니다" msgid "You have blocked this user. You cannot view their content." msgstr "이 사용자를 차단했습니다. 해당 사용자의 콘텐츠를 볼 수 없습니다." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "답글, 인용, 멘션 알림을 완전히 비활성화했으므로 이 탭은 더 이상 업데이트되지 않습니다. 이를 변경하려면 <0>알림 설정으로 이동하세요." + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "내가 이 계정을 뮤트했습니다." msgid "You have muted this user" msgstr "내가 이 사용자를 뮤트했습니다" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "아직 대화가 없습니다. 시작해 보세요!" @@ -9547,7 +10291,7 @@ msgstr "아직 어떤 계정도 차단하지 않았습니다. 계정을 차단 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "아직 어떤 계정도 뮤트하지 않았습니다. 계정을 뮤트하려면 해당 계정의 프로필로 이동하여 계정 메뉴에서 \"계정 뮤트\"를 선택하세요." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "끝에 도달했습니다" @@ -9572,6 +10316,10 @@ msgstr "아직 어떤 단어나 태그도 뮤트하지 않았습니다" msgid "You hid this reply." msgstr "내가 이 답글을 숨겼습니다." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "이미 {0} 전에 이 절차를 시작했습니다. 이메일이 받은편지함에 도착하기까지 최대 5분이 걸릴 수 있으니, 몇 분 정도 기다렸다가 다시 시도해 보세요." + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "비셀프 라벨이 잘못 지정되었다고 생각되면 이의신청할 수 있습니다." @@ -9592,13 +10340,21 @@ msgstr "피드는 최대 3개까지 추가할 수 있습니다" msgid "You may only select up to 4 images" msgstr "이미지는 최대 4개까지 선택할 수 있습니다" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "계정을 만들려면 만 13세 이상이어야 합니다." #: src/components/StarterPack/ProfileStarterPacks.tsx:334 msgid "You must be following at least seven other people to generate a starter pack." -msgstr "스타터 팩을 만들려면 다른 사람을 최소 7명 이상 팔로우해야 합니다." +msgstr "스타터 팩을 만들려면 다른 사용자를 최소 7명 이상 팔로우해야 합니다." + +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "아래 설정을 이용하려면 먼저 연령 확인을 완료해야 합니다." + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "이 화면을 보려면 먼저 연령 확인을 완료해야 합니다." #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" @@ -9608,6 +10364,11 @@ msgstr "QR 코드를 저장하려면 사진 보관함에 대한 접근 권한을 msgid "You must select at least one labeler for a report" msgstr "신고하려면 라벨을 하나 이상 선택해야 합니다" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "이 게시물을 보려면 로그인해야 합니다." + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "이메일 2단계 인증을 사용하려면 이메일 주소를 인증해야 합니다." @@ -9616,7 +10377,7 @@ msgstr "이메일 2단계 인증을 사용하려면 이메일 주소를 인증 msgid "You previously deactivated @{0}." msgstr "이전에 @{0}을(를) 비활성화했습니다." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "앱을 다시 시작해야 할 수 있습니다." @@ -9628,16 +10389,20 @@ msgstr "내가 {0}(으)로 반응함" msgid "You reacted {0} to {1}" msgstr "내가 {1}에 {0}(으)로 반응함" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "모든 계정에서 로그아웃됩니다." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "{0}에 대한 알림을 더 이상 받지 않습니다" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "이 스레드에 대한 알림을 더 이상 받지 않습니다" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "이제 이 스레드에 대한 알림을 받습니다" @@ -9657,25 +10422,25 @@ msgstr "나: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "나: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "계정 생성을 완료하면 추천 사용자 및 피드를 팔로우하게 됩니다." -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "계정 생성을 완료하면 추천 사용자를 팔로우하게 됩니다." #: src/screens/StarterPack/StarterPackLandingScreen.tsx:236 msgid "You'll follow these people and {0} others" -msgstr "다음 사람들 외 {0}명을 팔로우하게 됩니다" +msgstr "다음 사용자 외 {0}명을 팔로우하게 됩니다" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 msgid "You'll follow these people right away" -msgstr "다음 사람들을 바로 팔로우하게 됩니다" +msgstr "다음 사용자를 바로 팔로우하게 됩니다" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "본인 인증을 위해 <0>{0}(으)로 이메일을 보냅니다." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "이제 {0}에 대한 알림을 받습니다!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9701,7 +10466,11 @@ msgstr "이 글에서 단어 또는 태그를 숨기도록 설정했습니다." #: src/state/shell/progress-guide.tsx:234 msgid "You've found some people to follow" -msgstr "팔로우할 사람들을 찾은 것 같군요" +msgstr "팔로우할 사용자를 찾은 것 같군요" + +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "활성 콘텐츠의 끝에 도달했습니다." #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." @@ -9711,19 +10480,23 @@ msgstr "피드 끝에 도달했습니다! 팔로우할 계정을 더 찾아보 msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "허용된 최대 요청 수에 도달했습니다. 나중에 다시 시도해 주세요." -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "활성 콘텐츠의 시작 부분에 도달했습니다." + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "동영상 업로드 일일 한도에 도달했습니다 (용량이 너무 큼)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "동영상 업로드 일일 한도에 도달했습니다 (동영상 수가 너무 많음)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "시청할 동영상이 부족합니다. 잠시 쉬는 건 어떠신가요?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "내 계정" @@ -9735,7 +10508,7 @@ msgstr "계정을 삭제했습니다" msgid "Your account has been suspended" msgstr "계정이 일시 정지되었습니다" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "내 계정은 아직 동영상을 업로드할 수 없습니다. 나중에 다시 시도해 주세요." @@ -9751,11 +10524,11 @@ msgstr "귀하의 계정이 <0>Bluesky Social 서비스 이용약관을 위 msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "이의신청을 제출했습니다. 이의신청이 받아들여지면 이메일을 보내 드립니다." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "생년월일" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "브라우저가 이 동영상 형식을 지원하지 않습니다. 다른 브라우저를 사용하세요." @@ -9771,13 +10544,15 @@ msgstr "선택한 항목은 앞으로 클릭할 링크에도 적용되며 설정 msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "현재 핸들 <0>{0}은 자동으로 예약된 상태로 유지됩니다. 이 계정에서 언제든지 다시 전환할 수 있습니다." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "이메일 주소를 변경했지만 아직 인증되지 않았습니다. 다음 단계에서 새 이메일을 인증해 주세요." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "이메일" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "이메일이 잘못된 것 같습니다." @@ -9786,15 +10561,11 @@ msgstr "이메일이 잘못된 것 같습니다." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "내 이메일이 아직 인증되지 않았습니다. Bluesky의 모든 기능을 즐기려면 이메일을 인증해 주세요." -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "이메일이 아직 인증되지 않았습니다. 이는 중요한 보안 단계이므로 권장하는 사항입니다." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "첫 좋아요!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "내 팔로워" @@ -9806,19 +10577,15 @@ msgstr "팔로우 중 피드가 비어 있습니다. 더 많은 사용자를 팔 msgid "Your full handle will be <0>@{0}" msgstr "내 전체 핸들: <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "내 전체 사용자 이름: <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "내 관심 주제" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "관심 주제를 업데이트했습니다!" @@ -9835,15 +10602,15 @@ msgstr "뮤트한 단어" msgid "Your password has been changed successfully!" msgstr "비밀번호를 성공적으로 변경했습니다." -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "비밀번호는 8자 이상이어야 합니다." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "게시물을 등록했습니다" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "게시물을 등록했습니다" @@ -9851,15 +10618,19 @@ msgstr "게시물을 등록했습니다" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "게시물, 좋아요, 차단 목록은 공개됩니다. 뮤트 목록은 공개되지 않습니다." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "선호하는 언어" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." -msgstr "내 프로필, 글, 피드 및 리스트가 더 이상 다른 Bluesky 사용자에게 표시되지 않습니다. 언제든지 로그인하여 계정을 재활성화할 수 있습니다." +msgstr "내 프로필, 게시물, 피드, 리스트가 더 이상 다른 Bluesky 사용자에게 표시되지 않습니다. 언제든지 로그인하여 계정을 재활성화할 수 있습니다." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "답글을 등록했습니다" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "신고를 <0>{0}에게 보냅니다." @@ -9867,7 +10638,7 @@ msgstr "신고를 <0>{0}에게 보냅니다." msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "신고를 Bluesky Moderation Service에게 보냅니다." -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "선택한 관심 주제는 사용자가 관심 있는 콘텐츠를 제공하는 데 도움을 줍니다." diff --git a/src/locale/locales/lt/messages.po b/src/locale/locales/lt/messages.po new file mode 100644 index 0000000000..19038a8306 --- /dev/null +++ b/src/locale/locales/lt/messages.po @@ -0,0 +1,10648 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-11-05 16:01-0800\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: lt\n" +"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-08-12 00:28\n" +"Last-Translator: \n" +"Language-Team: Lithuanian\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n" +"X-Crowdin-Project: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: lt\n" +"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n" +"X-Crowdin-File-ID: 11\n" + +#: src/components/ProgressGuide/FollowDialog.tsx:516 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127 +msgid "(active)" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:160 +msgid "(contains embedded content)" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:69 +msgid "(no email)" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:169 +msgid "{0, plural, one {# day} other {# days}}" +msgstr "" + +#: src/screens/Profile/ProfileFollowers.tsx:40 +msgid "{0, plural, one {# follower} other {# followers}}" +msgstr "" + +#: src/screens/Profile/ProfileFollows.tsx:40 +msgid "{0, plural, one {# following} other {# following}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:159 +msgid "{0, plural, one {# hour} other {# hours}}" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:53 +msgid "{0, plural, one {# label has} other {# labels have}} been placed on this account" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:62 +msgid "{0, plural, one {# label has} other {# labels have}} been placed on this content" +msgstr "" + +#: src/screens/Post/PostLikedBy.tsx:41 +msgid "{0, plural, one {# like} other {# likes}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:149 +msgid "{0, plural, one {# minute} other {# minutes}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:180 +msgid "{0, plural, one {# month} other {# months}}" +msgstr "" + +#: src/screens/Post/PostQuotes.tsx:41 +msgid "{0, plural, one {# quote} other {# quotes}}" +msgstr "" + +#: src/screens/Post/PostRepostedBy.tsx:41 +msgid "{0, plural, one {# repost} other {# reposts}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:139 +msgid "{0, plural, one {# second} other {# seconds}}" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 +msgid "{0, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#. How many months have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:182 +msgid "{0, plural, one {#mo} other {#mo}}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:444 +#: src/screens/Profile/Header/Metrics.tsx:22 +msgid "{0, plural, one {follower} other {followers}}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/screens/Profile/Header/Metrics.tsx:26 +msgid "{0, plural, one {following} other {following}}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 +msgid "{0, plural, one {like} other {likes}}" +msgstr "" + +#: src/screens/Profile/Header/Metrics.tsx:58 +msgid "{0, plural, one {post} other {posts}}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 +msgid "{0, plural, one {quote} other {quotes}}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 +msgid "{0, plural, one {repost} other {reposts}}" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82 +msgid "{0, plural, other {{1} posts}}" +msgstr "" + +#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack +#: src/screens/StarterPack/StarterPackScreen.tsx:490 +msgid "{0, plural, other {# people have}} used this starter pack!" +msgstr "" + +#. Pattern: {wordValue} in tags +#: src/components/dialogs/MutedWords.tsx:475 +msgid "{0} <0>in <1>tags" +msgstr "" + +#. Pattern: {wordValue} in text, tags +#: src/components/dialogs/MutedWords.tsx:465 +msgid "{0} <0>in <1>text & tags" +msgstr "" + +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + +#: src/components/live/LiveStatusDialog.tsx:68 +msgid "{0} is live" +msgstr "" + +#: src/components/live/queries.ts:39 +msgid "{0} is not a valid URL" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 +msgid "{0} joined this week" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 +msgid "{0} of {1}" +msgstr "" + +#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field +#: src/screens/StarterPack/Wizard/StepDetails.tsx:55 +msgid "{0} out of 50" +msgstr "" + +#: src/components/dms/MessageItem.tsx:143 +msgid "{0} reacted {1}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:231 +msgid "{0} reacted {1} to {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 +msgid "{0}'s avatar" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:74 +msgid "{0}'s favorite feeds and people - join me!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:46 +msgid "{0}'s starter pack" +msgstr "" + +#. How many days have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:171 +msgid "{0}d" +msgstr "" + +#. How many hours have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:161 +msgid "{0}h" +msgstr "" + +#. How many minutes have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:151 +msgid "{0}m" +msgstr "" + +#. How many seconds have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:141 +msgid "{0}s" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:402 +msgid "{count, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#: src/lib/generate-starterpack.ts:111 +#: src/screens/StarterPack/Wizard/index.tsx:184 +msgid "{displayName}'s Starter Pack" +msgstr "" + +#: src/screens/SignupQueued.tsx:216 +msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" +msgstr "" + +#: src/screens/SignupQueued.tsx:222 +msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:353 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:379 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:272 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:484 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:457 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:296 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:508 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:403 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:432 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:365 +msgid "{firstAuthorLink} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:342 +msgid "{firstAuthorLink} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:391 +msgid "{firstAuthorLink} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:284 +msgid "{firstAuthorLink} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:496 +msgid "{firstAuthorLink} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:469 +msgid "{firstAuthorLink} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:308 +msgid "{firstAuthorLink} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:520 +msgid "{firstAuthorLink} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:415 +msgid "{firstAuthorLink} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:444 +msgid "{firstAuthorLink} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:346 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:372 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:265 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:477 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:450 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:289 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:501 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:396 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:425 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:351 +msgid "{firstAuthorName} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:341 +msgid "{firstAuthorName} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:377 +msgid "{firstAuthorName} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:270 +msgid "{firstAuthorName} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:482 +msgid "{firstAuthorName} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:455 +msgid "{firstAuthorName} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:294 +msgid "{firstAuthorName} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:506 +msgid "{firstAuthorName} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:401 +msgid "{firstAuthorName} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:430 +msgid "{firstAuthorName} verified you" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:572 +msgid "{following} following" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:413 +msgid "{handle} can't be messaged" +msgstr "" + +#: src/components/live/utils.ts:15 +msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" +msgstr "" + +#: src/components/live/utils.ts:19 +msgid "{hours, plural, one {# hour} other {# hours}}" +msgstr "" + +#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack +#: src/components/StarterPack/StarterPackCard.tsx:101 +msgid "{joinedAllTimeCount, plural, other {# users have}} joined!" +msgstr "" + +#: src/components/live/utils.ts:10 +msgid "{minutes, plural, one {# minute} other {# minutes}}" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 +msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#: src/components/NewskieDialog.tsx:116 +msgid "{profileName} joined Bluesky {0} ago" +msgstr "" + +#: src/components/NewskieDialog.tsx:111 +msgid "{profileName} joined Bluesky using a starter pack {0} ago" +msgstr "" + +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111 +msgid "{rank}." +msgstr "" + +#. trending topic time spent trending. should be as short as possible to fit in a pill +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206 +msgid "{type}h ago" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:60 +msgid "{userName} is a trusted verifier" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:67 +msgid "{userName} is verified" +msgstr "" + +#. Possessive, meaning "the verifications of {userName}" +#: src/components/verification/VerificationsDialog.tsx:69 +msgid "{userName}'s verifications" +msgstr "" + +#. Indicates the number of additional profiles are in the Starter Pack e.g. +12 +#: src/screens/Search/components/StarterPackCard.tsx:249 +msgid "+{computedTotal}" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:488 +msgctxt "profiles" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:541 +msgctxt "feeds" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#: src/view/shell/Drawer.tsx:116 +msgid "<0>{0} {1, plural, one {follower} other {followers}}" +msgstr "" + +#: src/view/shell/Drawer.tsx:127 +msgid "<0>{0} {1, plural, one {following} other {following}}" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:529 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:522 +msgid "<0>{0} is included in your starter pack" +msgstr "" + +#: src/components/WhoCanReply.tsx:319 +msgid "<0>{0} members" +msgstr "" + +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:479 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + +#: src/screens/Profile/Header/Handle.tsx:53 +msgid "⚠Invalid Handle" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:193 +msgid "24 hours" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:268 +msgid "2FA Confirmation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:232 +msgid "30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:217 +msgid "7 days" +msgstr "" + +#. If last message does not contain text, fall back to "{user} reacted to {a message}" +#: src/screens/Messages/components/ChatListItem.tsx:210 +msgid "a message" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91 +msgid "A new form of verification" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#: src/Navigation.tsx:523 +#: src/screens/Settings/AboutSettings.tsx:75 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 +msgid "About" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/RequestButtons.tsx:259 +msgid "Accept" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:249 +msgid "Accept chat request" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/RequestListItem.tsx:42 +msgid "Accept Request" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 +msgid "Accessibility" +msgstr "" + +#: src/Navigation.tsx:382 +msgid "Accessibility Settings" +msgstr "" + +#: src/Navigation.tsx:398 +#: src/screens/Login/LoginForm.tsx:194 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 +msgid "Account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/view/com/profile/ProfileMenu.tsx:158 +msgctxt "toast" +msgid "Account blocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:171 +msgctxt "toast" +msgid "Account followed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 +#: src/view/com/profile/ProfileMenu.tsx:134 +msgctxt "toast" +msgid "Account muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:103 +#: src/lib/moderation/useModerationCauseDescription.ts:98 +msgid "Account Muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:89 +msgid "Account Muted by List" +msgstr "" + +#: src/screens/Settings/Settings.tsx:624 +msgid "Account options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:660 +msgid "Account removed from quick access" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128 +#: src/view/com/profile/ProfileMenu.tsx:148 +msgctxt "toast" +msgid "Account unblocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:183 +msgctxt "toast" +msgid "Account unfollowed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 +#: src/view/com/profile/ProfileMenu.tsx:124 +msgctxt "toast" +msgid "Account unmuted" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:96 +msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 +#: src/components/dialogs/MutedWords.tsx:328 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +msgid "Add" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:572 +msgid "Add {0} more to continue" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Add {displayName} to starter pack" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:107 +#: src/view/com/composer/labels/LabelsBtn.tsx:112 +msgid "Add a content warning" +msgstr "" + +#: src/components/live/GoLiveDialog.tsx:101 +msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event." +msgstr "" + +#: src/view/screens/ProfileList.tsx:924 +#: src/view/screens/ProfileList.tsx:942 +msgid "Add a user to this list" +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:55 +#: src/screens/Deactivated.tsx:192 +msgid "Add account" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:210 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 +msgid "Add alt text" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +msgid "Add alt text (optional)" +msgstr "" + +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 +msgid "Add another account" +msgstr "" + +#: src/view/com/composer/Composer.tsx:776 +msgid "Add another post" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 +msgid "Add app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:75 +#: src/screens/Settings/AppPasswords.tsx:83 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:111 +msgid "Add App Password" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.web.tsx:35 +msgid "Add emoji reaction" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 +msgid "Add more details (optional)" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:321 +msgid "Add mute word with chosen settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:112 +msgid "Add muted words and tags" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1340 +msgid "Add new post" +msgstr "" + +#: src/view/screens/ProfileList.tsx:932 +#: src/view/screens/ProfileList.tsx:950 +msgid "Add people" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79 +msgid "Add people to list" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:55 +msgid "Add Reaction" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:99 +msgid "Add recommended feeds" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:510 +msgid "Add some feeds to your starter pack!" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:41 +msgid "Add the default feed of only people you follow" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:406 +msgid "Add the following DNS record to your domain:" +msgstr "" + +#: src/components/FeedCard.tsx:305 +msgid "Add this feed to your feeds" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:305 +#: src/view/com/profile/ProfileMenu.tsx:308 +msgid "Add to lists" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 +msgid "Add user to list" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 +msgid "Added to list" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:421 +msgid "Additional details (limit 300 characters)" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:159 +msgid "Adult" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:116 +#: src/lib/moderation/useGlobalLabelStrings.ts:34 +#: src/lib/moderation/useModerationCauseDescription.ts:148 +#: src/view/com/composer/labels/LabelsBtn.tsx:127 +msgid "Adult Content" +msgstr "" + +#: src/screens/Moderation/index.tsx:404 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:247 +msgid "Adult content is disabled." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:138 +#: src/view/com/composer/labels/LabelsBtn.tsx:196 +msgid "Adult Content labels" +msgstr "" + +#: src/screens/Moderation/index.tsx:454 +msgid "Advanced" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +msgid "alice@example.com" +msgstr "" + +#: src/view/screens/Notifications.tsx:88 +msgid "All" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:386 +msgid "All accounts have been followed!" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:64 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:99 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:101 +msgid "All languages" +msgstr "" + +#: src/view/screens/Feeds.tsx:707 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:146 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:153 +msgid "Allow access to your direct messages" +msgstr "" + +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 +msgid "Allow new messages from" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 +msgid "Allow quote posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +msgid "Allow replies from:" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:200 +msgid "Allows access to direct messages" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/view/com/modals/ChangePassword.tsx:182 +msgid "Already have a code?" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:43 +msgid "Already signed in as @{0}" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:188 +msgid "ALT" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:54 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 +#: src/view/com/composer/videos/SubtitleDialog.tsx:40 +#: src/view/com/composer/videos/SubtitleDialog.tsx:55 +#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:105 +msgid "Alt text" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 +msgid "Alt Text" +msgstr "" + +#: src/view/com/composer/photos/Gallery.tsx:260 +msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93 +msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:266 +msgid "An error has occurred" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 +msgid "An error occurred" +msgstr "" + +#: src/view/com/composer/state/video.ts:400 +msgid "An error occurred while compressing the video." +msgstr "" + +#: src/state/queries/explore-feed-previews.tsx:173 +msgid "An error occurred while fetching the feed." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 +msgid "An error occurred while generating your starter pack. Want to try again?" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 +msgid "An error occurred while loading the video. Please try again later." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 +msgid "An error occurred while loading the video. Please try again." +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:72 +msgid "An error occurred while saving the QR code!" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:63 +msgid "An error occurred while selecting the video" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:374 +msgid "An error occurred while trying to follow all" +msgstr "" + +#: src/view/com/composer/state/video.ts:441 +msgid "An error occurred while uploading the video." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84 +#: src/components/verification/VerifierDialog.tsx:86 +msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28 +#: src/lib/moderation/useReportOptions.ts:28 +msgid "An issue not included in these options" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:38 +msgid "An issue occurred starting the chat" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +msgid "An issue occurred while trying to open the chat" +msgstr "" + +#: src/components/hooks/useFollowMethods.ts:35 +#: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 +#: src/view/com/profile/FollowButton.tsx:38 +#: src/view/com/profile/FollowButton.tsx:48 +msgid "An issue occurred, please try again." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118 +msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:185 +msgid "an unknown error occurred" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:134 +#: src/lib/moderation/useModerationCauseDescription.ts:144 +msgid "an unknown labeler" +msgstr "" + +#: src/components/WhoCanReply.tsx:340 +msgid "and" +msgstr "" + +#: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:94 +msgid "Animals" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 +msgid "Animated GIF" +msgstr "" + +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 +msgid "Announcing verification on Bluesky" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33 +#: src/lib/moderation/useReportOptions.ts:33 +msgid "Anti-Social Behavior" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +msgid "Anybody can interact" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 +#: src/screens/Settings/AppIconSettings/index.tsx:67 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 +msgid "App Icon" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:87 +msgid "App Language" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:122 +msgid "App Password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:147 +msgctxt "toast" +msgid "App password deleted" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84 +msgid "App password name must be unique" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 +msgid "App password names can only contain letters, numbers, spaces, dashes, and underscores" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 +msgid "App password names must be at least 4 characters long" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 +msgid "App passwords" +msgstr "" + +#: src/Navigation.tsx:350 +#: src/screens/Settings/AppPasswords.tsx:51 +msgid "App Passwords" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:150 +#: src/components/moderation/LabelsOnMeDialog.tsx:153 +msgid "Appeal" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:268 +msgid "Appeal \"{0}\" label" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: src/screens/Messages/components/ChatDisabled.tsx:91 +msgctxt "toast" +msgid "Appeal submitted" +msgstr "" + +#: src/screens/Takendown.tsx:111 +#: src/screens/Takendown.tsx:144 +msgid "Appeal suspension" +msgstr "" + +#: src/screens/Takendown.tsx:114 +msgid "Appeal Suspension" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 +msgid "Appeal this decision" +msgstr "" + +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 +msgid "Appearance" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 +#: src/screens/Home/NoFeedsPinned.tsx:93 +msgid "Apply default recommended feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 +msgid "Archived from {0}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 +msgid "Archived post" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:209 +msgid "Are you sure you want to delete the app password \"{0}\"?" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:183 +msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:657 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:86 +msgid "Are you sure you want to discard your changes?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:46 +msgid "Are you sure you want to leave this conversation?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:45 +msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." +msgstr "" + +#: src/components/FeedCard.tsx:340 +msgid "Are you sure you want to remove this from your feeds?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:725 +msgid "Are you sure you'd like to discard this draft?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:910 +msgid "Are you sure you'd like to discard this post?" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:433 +msgid "Are you sure?" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74 +msgid "Are you writing in <0>{suggestedLanguageName}?" +msgstr "" + +#: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:95 +msgid "Art" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:171 +msgid "Artistic or non-erotic nudity." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 +msgid "Assign topic for algo" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 +msgctxt "Name of app icon variant" +msgid "Aurora" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:116 +#: src/screens/Settings/ContentAndMediaSettings.tsx:122 +msgid "Autoplay videos and GIFs" +msgstr "" + +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:84 +#: src/components/moderation/LabelsOnMeDialog.tsx:315 +#: src/components/moderation/LabelsOnMeDialog.tsx:316 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 +#: src/screens/Login/ForgotPasswordForm.tsx:129 +#: src/screens/Login/LoginForm.tsx:310 +#: src/screens/Login/LoginForm.tsx:316 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:158 +#: src/screens/Signup/BackNextButtons.tsx:41 +#: src/screens/StarterPack/Wizard/index.tsx:303 +msgid "Back" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:259 +msgid "Back to Chats" +msgstr "" + +#: src/view/screens/Lists.tsx:53 +#: src/view/screens/ModerationModlists.tsx:53 +msgid "Before creating a list, you must first verify your email." +msgstr "" + +#: src/lib/hooks/useOpenComposer.tsx:14 +msgid "Before creating a post or replying, you must first verify your email." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:245 +msgid "Before creating a starter pack, you must first verify your email." +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:235 +msgid "Before you can accept this chat request, you must first verify your email." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/MessageProfileButton.tsx:58 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 +msgid "Before you can message another user, you must first verify your email." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:103 +#: src/screens/Settings/AccountSettings.tsx:140 +msgid "Birthday" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:473 +msgid "Block" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:247 +#: src/components/dms/ConvoMenu.tsx:250 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 +#: src/screens/Messages/components/RequestButtons.tsx:144 +#: src/screens/Messages/components/RequestButtons.tsx:146 +#: src/view/com/profile/ProfileMenu.tsx:384 +#: src/view/com/profile/ProfileMenu.tsx:391 +msgid "Block account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 +#: src/view/com/profile/ProfileMenu.tsx:456 +msgid "Block Account?" +msgstr "" + +#: src/view/screens/ProfileList.tsx:669 +msgid "Block accounts" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:317 +msgid "Block and Delete" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:352 +msgid "Block and/or delete this conversation" +msgstr "" + +#: src/view/screens/ProfileList.tsx:789 +msgid "Block list" +msgstr "" + +#: src/screens/Messages/components/ChatStatusInfo.tsx:46 +msgid "Block or report" +msgstr "" + +#: src/view/screens/ProfileList.tsx:784 +msgid "Block these accounts?" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:356 +#: src/components/dms/ReportDialog.tsx:359 +msgid "Block user" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:323 +msgid "Block User" +msgstr "" + +#: src/components/Post/Embed/index.tsx:180 +msgid "Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:282 +msgid "Blocked accounts" +msgstr "" + +#: src/Navigation.tsx:191 +#: src/view/screens/ModerationBlockedAccounts.tsx:104 +msgid "Blocked Accounts" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 +#: src/view/com/profile/ProfileMenu.tsx:468 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:190 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:488 +msgid "Blocked post." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:203 +msgid "Blocking does not prevent this labeler from placing labels on your account." +msgstr "" + +#: src/view/screens/ProfileList.tsx:786 +msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:465 +msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:175 +msgid "Blog" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:136 +#: src/view/com/auth/server-input/index.tsx:137 +msgid "Bluesky" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 +msgid "Bluesky cannot confirm the authenticity of the claimed date." +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 +msgctxt "Name of app icon variant" +msgid "Bluesky Classic™" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:212 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:149 +msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." +msgstr "" + +#: src/components/ProgressGuide/List.tsx:53 +#: src/components/ProgressGuide/List.tsx:70 +msgid "Bluesky is better with friends!" +msgstr "" + +#: src/screens/Takendown.tsx:217 +msgid "Bluesky Social Terms of Service" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:310 +msgid "Bluesky will choose a set of recommended accounts from people in your network." +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:99 +msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132 +msgid "Bluesky will proactively verify notable and authentic accounts." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:99 +msgid "Bluesky+" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:102 +msgid "Bluesky+ icons" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:53 +msgid "Blur images" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:51 +msgid "Blur images and filter from feeds" +msgstr "" + +#: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:96 +msgid "Books" +msgstr "" + +#: src/components/FeedInterstitials.tsx:435 +msgid "Browse more accounts on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:566 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:575 +msgid "Browse more suggestions on the Explore page" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 +msgid "Browse other feeds" +msgstr "" + +#: src/components/TrendingTopics.tsx:178 +msgid "Browse posts about {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:186 +msgid "Browse posts tagged with {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:195 +msgid "Browse starter pack {displayName}" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93 +msgid "Browse topic {0}" +msgstr "" + +#: src/components/TrendingTopics.tsx:232 +msgid "Browse topic {displayName}" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:170 +msgid "Business" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:62 +#: src/components/moderation/ReportDialog/index.tsx:683 +#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/Explore.tsx:930 +msgid "By {0}" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +msgid "By <0>{0}" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:78 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:98 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:105 +msgid "By you" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +msgid "Camera" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 +#: src/components/dialogs/InAppBrowserConsent.tsx:98 +#: src/components/dialogs/InAppBrowserConsent.tsx:104 +#: src/components/live/GoLiveDialog.tsx:247 +#: src/components/live/GoLiveDialog.tsx:253 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 +#: src/components/Prompt.tsx:143 +#: src/components/Prompt.tsx:145 +#: src/screens/Deactivated.tsx:158 +#: src/screens/Profile/Header/EditProfileDialog.tsx:225 +#: src/screens/Profile/Header/EditProfileDialog.tsx:233 +#: src/screens/Search/Shell.tsx:349 +#: src/screens/Settings/AppIconSettings/index.tsx:44 +#: src/screens/Settings/AppIconSettings/index.tsx:225 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:78 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:85 +#: src/screens/Settings/Settings.tsx:289 +#: src/screens/Takendown.tsx:99 +#: src/screens/Takendown.tsx:102 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:43 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:52 +#: src/view/com/modals/ChangePassword.tsx:279 +#: src/view/com/modals/ChangePassword.tsx:282 +#: src/view/com/modals/CreateOrEditList.tsx:333 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/shell/desktop/LeftNav.tsx:212 +msgid "Cancel" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:338 +#: src/view/com/modals/DeleteAccount.tsx:170 +#: src/view/com/modals/DeleteAccount.tsx:278 +msgctxt "action" +msgid "Cancel" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:166 +#: src/view/com/modals/DeleteAccount.tsx:274 +msgid "Cancel account deletion" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:94 +msgid "Cancel image crop" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:203 +msgid "Cancel quote post" +msgstr "" + +#: src/screens/Deactivated.tsx:152 +msgid "Cancel reactivation and sign out" +msgstr "" + +#: src/screens/Search/Shell.tsx:341 +msgid "Cancel search" +msgstr "" + +#: src/components/PostControls/index.tsx:101 +#: src/components/PostControls/index.tsx:132 +#: src/components/PostControls/index.tsx:160 +#: src/state/shell/composer/index.tsx:91 +msgid "Cannot interact with a blocked user" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:132 +msgid "Captions (.vtt)" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:40 +#: src/view/com/composer/videos/SubtitleDialog.tsx:55 +msgid "Captions & alt text" +msgstr "" + +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Change" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:39 +msgid "Change app icon" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:38 +#: src/screens/Settings/AppIconSettings/index.tsx:221 +msgid "Change app icon to \"{0}\"" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:40 +msgid "Change app language" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:94 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:98 +msgid "Change Handle" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:325 +msgid "Change moderation service" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:153 +msgid "Change Password" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85 +msgid "Change post language to {suggestedLanguageName}" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:244 +msgid "Change report reason" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:216 +msgid "Changes app icon" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:49 +#: src/components/forms/HostingProvider.tsx:69 +msgid "Changes hosting provider" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 +msgid "Chat" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:78 +#: src/screens/Messages/components/RequestButtons.tsx:304 +msgctxt "toast" +msgid "Chat deleted" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:176 +msgctxt "toast" +msgid "Chat muted" +msgstr "" + +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 +msgid "Chat request inbox" +msgstr "" + +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 +msgid "Chat requests" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:75 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 +msgid "Chat settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 +msgid "Chat Settings" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:178 +msgctxt "toast" +msgid "Chat unmuted" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 +msgid "Chats" +msgstr "" + +#: src/screens/SignupQueued.tsx:78 +#: src/screens/SignupQueued.tsx:82 +msgid "Check my status" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:301 +msgid "Check your email for a sign in code and enter it here." +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:213 +msgid "Check your inbox for an email with the confirmation code to enter below:" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:389 +msgid "Choose domain verification method" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:200 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 +msgid "Choose for me" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:196 +msgid "Choose People" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:298 +msgid "Choose the algorithms that power your custom feeds." +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 +msgid "Choose this color as your avatar" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:130 +msgid "Choose your account provider" +msgstr "" + +#: src/view/screens/Feeds.tsx:733 +msgid "Choose your own timeline! Feeds built by the community help you find content you love." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:245 +msgid "Choose your password" +msgstr "" + +#: src/screens/Signup/index.tsx:175 +msgid "Choose your username" +msgstr "" + +#: src/screens/Settings/Settings.tsx:490 +msgid "Clear all storage data" +msgstr "" + +#: src/screens/Settings/Settings.tsx:492 +msgid "Clear all storage data (restart after this)" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:116 +#: src/screens/Settings/AboutSettings.tsx:120 +msgid "Clear image cache" +msgstr "" + +#: src/components/forms/SearchInput.tsx:70 +msgid "Clear search query" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + +#: src/view/screens/Support.tsx:41 +msgid "click here" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 +msgid "Click here to restart the verification process." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 +msgid "Click here to update your email" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 +msgid "Click to disable quote posts of this post." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 +msgid "Click to enable quote posts of this post." +msgstr "" + +#: src/components/RichTextTag.tsx:54 +msgid "Click to open tag menu for {tag}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:317 +msgid "Click to retry failed message" +msgstr "" + +#: src/screens/Onboarding/index.tsx:32 +msgid "Climate" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:39 +msgid "Clip 🐴 clop 🐴" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 +#: src/components/dialogs/SearchablePeopleList.tsx:295 +#: src/components/dms/EmojiPopup.android.tsx:58 +#: src/components/dms/ReportDialog.tsx:381 +#: src/components/dms/ReportDialog.tsx:390 +#: src/components/live/EditLiveDialog.tsx:229 +#: src/components/live/EditLiveDialog.tsx:235 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 +#: src/components/ProgressGuide/FollowDialog.tsx:386 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: src/components/verification/VerificationsDialog.tsx:144 +#: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 +#: src/view/com/modals/ChangePassword.tsx:279 +#: src/view/com/modals/ChangePassword.tsx:282 +msgid "Close" +msgstr "" + +#: src/components/Dialog/index.web.tsx:111 +#: src/components/Dialog/index.web.tsx:259 +msgid "Close active dialog" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:31 +msgid "Close alert" +msgstr "" + +#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 +msgid "Close bottom drawer" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 +#: src/components/verification/VerificationsDialog.tsx:136 +#: src/components/verification/VerifierDialog.tsx:136 +msgid "Close dialog" +msgstr "" + +#: src/view/shell/index.web.tsx:100 +msgid "Close drawer menu" +msgstr "" + +#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136 +#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172 +msgid "Close emoji picker" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:170 +msgid "Close GIF dialog" +msgstr "" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:31 +msgid "Close image" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:109 +msgid "Close image viewer" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:53 +#: src/components/ContextMenu/Backdrop.ios.tsx:79 +#: src/components/ContextMenu/Backdrop.tsx:45 +msgid "Close menu" +msgstr "" + +#: src/components/Menu/index.tsx:344 +msgid "Close this dialog" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:32 +msgid "Closes password update alert" +msgstr "" + +#: src/view/com/composer/Composer.tsx:973 +msgid "Closes post composer and discards post draft" +msgstr "" + +#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137 +#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173 +msgid "Closes the emoji picker" +msgstr "" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:32 +msgid "Closes viewer for header image" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:591 +msgid "Collapse list of users" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:805 +msgid "Collapses list of users for a given notification" +msgstr "" + +#: src/components/dialogs/Embed.tsx:154 +#: src/screens/Settings/AppearanceSettings.tsx:96 +msgid "Color mode" +msgstr "" + +#: src/components/dialogs/Embed.tsx:151 +msgid "Color theme" +msgstr "" + +#: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:97 +msgid "Comedy" +msgstr "" + +#: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:98 +msgid "Comics" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 +#: src/view/screens/CommunityGuidelines.tsx:34 +msgid "Community Guidelines" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:311 +msgid "Complete onboarding and start using your account" +msgstr "" + +#: src/screens/Signup/index.tsx:177 +msgid "Complete the challenge" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:519 +msgid "Compose new post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:874 +msgid "Compose posts up to {0, plural, other {# characters}} in length" +msgstr "" + +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 +msgid "Compose reply" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1734 +msgid "Compressing video..." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:88 +msgid "Configure content filtering setting for category: {name}" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:249 +msgid "Configured in <0>moderation settings." +msgstr "" + +#: src/components/Prompt.tsx:186 +#: src/components/Prompt.tsx:189 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188 +msgid "Confirm" +msgstr "" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34 +msgid "Confirm content language settings" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:264 +msgid "Confirm delete account" +msgstr "" + +#: src/screens/Moderation/index.tsx:330 +msgid "Confirm your age:" +msgstr "" + +#: src/screens/Moderation/index.tsx:321 +msgid "Confirm your birthdate" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 +#: src/screens/Login/LoginForm.tsx:274 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 +#: src/view/com/modals/DeleteAccount.tsx:220 +#: src/view/com/modals/DeleteAccount.tsx:226 +msgid "Confirmation code" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:337 +msgid "Connecting..." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 +msgid "Contact support" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:51 +msgid "Content & Media" +msgstr "" + +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 +msgid "Content and media" +msgstr "" + +#: src/Navigation.tsx:507 +msgid "Content and Media" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:18 +msgid "Content Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 +msgid "Content filters" +msgstr "" + +#: src/screens/Search/modules/ExploreRecommendations.tsx:59 +msgid "Content from across the network we think you might like." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:153 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76 +msgid "Content Languages" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:82 +#: src/lib/moderation/useModerationCauseDescription.ts:82 +msgid "Content Not Available" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:50 +#: src/components/moderation/ScreenHider.tsx:93 +#: src/lib/moderation/useGlobalLabelStrings.ts:22 +#: src/lib/moderation/useModerationCauseDescription.ts:45 +msgid "Content Warning" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:60 +msgid "Content warnings" +msgstr "" + +#: src/components/Menu/index.web.tsx:91 +msgid "Context menu backdrop, click to close the menu." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:276 +msgid "Continue" +msgstr "" + +#: src/components/AccountList.tsx:128 +msgid "Continue as {0} (currently signed in)" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 +#: src/view/com/post-thread/PostThreadLoadMore.tsx:60 +msgid "Continue thread..." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:273 +#: src/screens/Signup/BackNextButtons.tsx:60 +msgid "Continue to next step" +msgstr "" + +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:318 +#: src/components/dms/ReportDialog.tsx:321 +msgctxt "toast" +msgid "Conversation deleted" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:196 +msgid "Conversation deleted" +msgstr "" + +#: src/screens/Onboarding/index.tsx:41 +msgid "Cooking" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:183 +msgid "Copied" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:151 +msgid "Copied build version to clipboard" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 +#: src/lib/sharing.ts:25 +#: src/lib/sharing.ts:41 +#: src/view/com/modals/InviteCodes.tsx:153 +msgid "Copied to clipboard" +msgstr "" + +#: src/components/dialogs/Embed.tsx:201 +#: src/screens/Settings/components/CopyButton.tsx:66 +msgid "Copied!" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:127 +msgid "Copies build version to clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:182 +msgid "Copy" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 +msgid "Copy App Password" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:421 +#: src/view/com/profile/ProfileMenu.tsx:424 +msgid "Copy at:// URI" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 +msgid "Copy author DID" +msgstr "" + +#: src/components/dialogs/Embed.tsx:189 +#: src/components/dialogs/Embed.tsx:206 +msgid "Copy code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:491 +#: src/view/com/profile/ProfileMenu.tsx:430 +#: src/view/com/profile/ProfileMenu.tsx:433 +msgid "Copy DID" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:424 +msgid "Copy host" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:617 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:111 +msgid "Copy Link" +msgstr "" + +#: src/view/screens/ProfileList.tsx:513 +msgid "Copy link to list" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 +msgid "Copy link to post" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:254 +msgid "Copy link to profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Copy link to starter pack" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 +msgid "Copy message text" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 +msgid "Copy post at:// URI" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +msgid "Copy post text" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:176 +msgid "Copy QR code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:445 +msgid "Copy TXT record value" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 +#: src/view/screens/CopyrightPolicy.tsx:31 +msgid "Copyright Policy" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:35 +#: src/components/dms/ReportDialog.tsx:310 +msgid "Could not leave chat" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:83 +msgid "Could not load feed" +msgstr "" + +#: src/view/screens/ProfileList.tsx:1029 +msgid "Could not load list" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:182 +msgid "Could not mute chat" +msgstr "" + +#: src/view/com/composer/videos/VideoPreview.web.tsx:66 +msgid "Could not process your video" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:300 +msgid "Create" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:160 +msgid "Create a QR code for a starter pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:178 +#: src/components/StarterPack/ProfileStarterPacks.tsx:287 +#: src/Navigation.tsx:588 +msgid "Create a starter pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:274 +msgid "Create a starter pack for me" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:55 +#: src/view/com/auth/SplashScreen.web.tsx:117 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 +msgid "Create account" +msgstr "" + +#: src/screens/Signup/index.tsx:122 +msgid "Create Account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:86 +#: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 +msgid "Create an account" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310 +msgid "Create an account without using this starter pack" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:290 +msgid "Create an avatar instead" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:185 +msgid "Create another" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:47 +#: src/view/com/auth/SplashScreen.web.tsx:109 +msgid "Create new account" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:585 +#: src/components/ReportDialog/SelectReportOptionView.tsx:99 +msgid "Create report for {0}" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:174 +msgid "Created {0}" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:127 +msgid "Creator has been blocked" +msgstr "" + +#: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:99 +msgid "Culture" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:142 +#: src/view/com/auth/server-input/index.tsx:143 +msgid "Custom" +msgstr "" + +#: src/components/dialogs/Embed.tsx:144 +msgid "Customization options" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 +msgid "Customize who can interact with this post." +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:56 +msgid "Customizes your Bluesky experience" +msgstr "" + +#: src/components/dialogs/Embed.tsx:167 +#: src/components/dialogs/Embed.tsx:169 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 +msgid "Dark" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 +msgctxt "Name of app icon variant" +msgid "Dark" +msgstr "" + +#: src/view/screens/Debug.tsx:69 +msgid "Dark mode" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:121 +msgid "Dark theme" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:273 +msgid "Date of birth" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 +msgid "Deactivate account" +msgstr "" + +#: src/screens/Settings/Settings.tsx:455 +msgid "Debug Moderation" +msgstr "" + +#: src/view/screens/Debug.tsx:89 +msgid "Debug panel" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:171 +msgid "Default" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:75 +msgid "Default icons" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/screens/Messages/components/ChatStatusInfo.tsx:55 +#: src/screens/Settings/AppPasswords.tsx:212 +#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:688 +#: src/screens/StarterPack/StarterPackScreen.tsx:760 +#: src/view/screens/ProfileList.tsx:768 +msgid "Delete" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 +msgid "Delete account" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:101 +msgid "Delete Account <0>\"<1>{0}<2>\"" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:187 +msgid "Delete app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:207 +msgid "Delete app password?" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:316 +#: src/screens/Messages/components/RequestButtons.tsx:323 +msgid "Delete chat" +msgstr "" + +#: src/screens/Settings/Settings.tsx:462 +msgid "Delete chat declaration record" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:362 +#: src/components/dms/ReportDialog.tsx:365 +#: src/screens/Messages/components/RequestButtons.tsx:136 +#: src/screens/Messages/components/RequestButtons.tsx:139 +msgid "Delete conversation" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:320 +msgid "Delete Conversation" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:158 +msgid "Delete for me" +msgstr "" + +#: src/view/screens/ProfileList.tsx:556 +msgid "Delete list" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:181 +msgid "Delete message" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:156 +msgid "Delete message for me" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:267 +msgid "Delete my account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 +msgid "Delete post" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/screens/StarterPack/StarterPackScreen.tsx:751 +msgid "Delete starter pack" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:654 +msgid "Delete starter pack?" +msgstr "" + +#: src/view/screens/ProfileList.tsx:763 +msgid "Delete this list?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +msgid "Delete this post?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:173 +msgid "Deleted" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:160 +#: src/screens/Messages/components/ChatListItem.tsx:128 +msgid "Deleted Account" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 +msgid "Deleted post." +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:369 +#: src/view/com/modals/CreateOrEditList.tsx:278 +#: src/view/com/modals/CreateOrEditList.tsx:299 +msgid "Description" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:389 +msgid "Description is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:390 +msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 +msgid "Descriptive alt text" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 +msgid "Detach quote" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 +msgid "Detach quote post?" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:140 +msgctxt "toast" +msgid "Developer mode disabled" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:134 +msgctxt "toast" +msgid "Developer mode enabled" +msgstr "" + +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 +msgid "Developer options" +msgstr "" + +#: src/components/WhoCanReply.tsx:188 +msgid "Dialog: adjust who can interact with this post" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:125 +msgid "Dim" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242 +msgid "Disable 2FA" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157 +msgid "Disable email 2FA" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89 +msgid "Disable Email 2FA" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 +msgid "Disable haptic feedback" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 +msgid "Disable subtitles" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:32 +#: src/lib/moderation/useLabelBehaviorDescription.ts:42 +#: src/lib/moderation/useLabelBehaviorDescription.ts:68 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 +msgid "Disabled" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:88 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 +msgid "Discard" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:85 +msgid "Discard changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:724 +msgid "Discard draft?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:909 +msgid "Discard post?" +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:87 +#: src/screens/Settings/components/PwiOptOut.tsx:91 +msgid "Discourage apps from showing my account to logged-out users" +msgstr "" + +#: src/screens/Search/Explore.tsx:434 +msgid "Discover Feeds" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 +msgid "Discover new custom feeds" +msgstr "" + +#: src/view/screens/Feeds.tsx:730 +msgid "Discover New Feeds" +msgstr "" + +#: src/components/Dialog/index.tsx:321 +msgid "Dismiss" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1658 +msgid "Dismiss error" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:42 +msgid "Dismiss getting started guide" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 +msgid "Dismiss interests" +msgstr "" + +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 +msgid "Dismiss this section" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 +msgid "Display larger alt text badges" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:326 +#: src/screens/Profile/Header/EditProfileDialog.tsx:376 +msgid "Display name" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:339 +msgid "Display name is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:340 +msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:392 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:394 +msgid "DNS Panel" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:302 +msgid "Do not apply this mute word to users you follow" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:39 +msgid "Does not include nudity." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:507 +msgid "Domain verified!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 +msgid "Don't have a code or need a new one? <0>Click here." +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37 +msgid "Don't see an email? <0>Click here to resend." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:115 +#: src/components/dialogs/BirthDateSettings.tsx:121 +#: src/components/dms/ReportDialog.tsx:314 +#: src/components/forms/DateField/index.tsx:103 +#: src/components/forms/DateField/index.tsx:109 +#: src/components/Select/index.tsx:183 +#: src/components/Select/index.tsx:190 +#: src/screens/Onboarding/StepProfile/index.tsx:328 +#: src/screens/Onboarding/StepProfile/index.tsx:331 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 +#: src/view/com/auth/server-input/index.tsx:232 +#: src/view/com/auth/server-input/index.tsx:233 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:168 +#: src/view/com/composer/videos/SubtitleDialog.tsx:178 +#: src/view/com/modals/CropImage.web.tsx:112 +#: src/view/com/modals/InviteCodes.tsx:81 +#: src/view/com/modals/InviteCodes.tsx:124 +msgid "Done" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 +msgctxt "action" +msgid "Done" +msgstr "" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:42 +msgid "Done{extraText}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:161 +msgid "Double tap or long press the message to add a reaction" +msgstr "" + +#: src/components/Dialog/index.tsx:322 +msgid "Double tap to close the dialog" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1080 +msgid "Double tap to like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 +msgid "Download Bluesky" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:79 +#: src/screens/Settings/components/ExportCarDialog.tsx:84 +msgid "Download CAR file" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:344 +msgid "Drop to add images" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:153 +msgid "Duration:" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:230 +msgid "e.g. alice" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:327 +msgid "e.g. Alice Lastname" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:376 +msgid "e.g. alice.com" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:43 +msgid "E.g. artistic nudes." +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:261 +msgid "e.g. Great Posters" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:262 +msgid "e.g. Spammers" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:290 +msgid "e.g. The posters who never miss." +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:291 +msgid "e.g. Users that repeatedly reply with ads." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:97 +msgid "Each code works once. You'll receive more invite codes periodically." +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 +#: src/screens/StarterPack/StarterPackScreen.tsx:588 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 +msgid "Edit" +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:180 +#: src/view/com/lists/ListMembers.tsx:186 +msgctxt "action" +msgid "Edit" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:439 +#: src/view/com/util/UserBanner.tsx:119 +msgid "Edit avatar" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 +msgid "Edit Feeds" +msgstr "" + +#: src/view/com/composer/photos/EditImageDialog.web.tsx:85 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:89 +#: src/view/com/composer/photos/Gallery.tsx:195 +msgid "Edit image" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 +msgid "Edit interaction settings" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:98 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 +msgid "Edit interests" +msgstr "" + +#: src/view/screens/ProfileList.tsx:544 +msgid "Edit list details" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:317 +#: src/view/com/profile/ProfileMenu.tsx:323 +msgid "Edit live status" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:228 +msgid "Edit Moderation List" +msgstr "" + +#: src/Navigation.tsx:355 +#: src/view/screens/Feeds.tsx:518 +msgid "Edit My Feeds" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 +msgid "Edit People" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 +msgid "Edit post interaction settings" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/EditProfileDialog.tsx:281 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 +msgid "Edit profile" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +msgid "Edit Profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:580 +msgid "Edit starter pack" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:223 +msgid "Edit User List" +msgstr "" + +#: src/components/WhoCanReply.tsx:97 +msgid "Edit who can reply" +msgstr "" + +#: src/Navigation.tsx:593 +msgid "Edit your starter pack" +msgstr "" + +#: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:101 +msgid "Education" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:141 +msgid "Either the creator of this list has blocked you or you have blocked the creator." +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 +msgid "Email" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64 +msgctxt "toast" +msgid "Email 2FA disabled" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 +msgid "Email 2FA enabled" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:93 +msgid "Email address" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 +msgid "Email Resent" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208 +msgid "Email sent!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 +msgid "Email verification complete!" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 +msgid "Email Verified" +msgstr "" + +#: src/components/dialogs/Embed.tsx:181 +msgid "Embed HTML code" +msgstr "" + +#: src/components/dialogs/Embed.tsx:104 +#: src/components/dialogs/Embed.tsx:108 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 +msgid "Embed post" +msgstr "" + +#: src/components/dialogs/Embed.tsx:112 +msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +msgid "Embedded video player" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111 +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Enable" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:100 +msgid "Enable {0} only" +msgstr "" + +#: src/screens/Moderation/index.tsx:381 +msgid "Enable adult content" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92 +msgid "Enable email 2FA" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 +msgid "Enable external media" +msgstr "" + +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 +msgid "Enable media players for" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 +msgid "Enable subtitles" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:93 +msgid "Enable this source only" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:132 +#: src/screens/Settings/ContentAndMediaSettings.tsx:146 +msgid "Enable trending topics" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 +#: src/screens/Settings/ContentAndMediaSettings.tsx:167 +msgid "Enable trending videos in your Discover feed" +msgstr "" + +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 +msgid "Enabled" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:113 +msgid "End of feed" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:158 +msgid "Ensure you have selected a language for each subtitle file." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:147 +msgid "Enter a password" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:128 +msgid "Enter a word or tag" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 +msgid "Enter code" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 +msgid "Enter fullscreen" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:165 +msgid "Enter the code you received to change your password." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:370 +msgid "Enter the domain you want to use" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:113 +msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:218 +msgid "Enter the username or email address you used when you created your account" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:104 +msgid "Enter your birth date" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:217 +msgid "Enter your email address" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:243 +msgid "Enter your password" +msgstr "" + +#: src/screens/Login/index.tsx:123 +msgid "Enter your username and password" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 +msgid "Enters full screen" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239 +msgid "Entertainment" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1743 +#: src/view/com/util/error/ErrorScreen.tsx:42 +msgid "Error" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:47 +msgid "Error occurred while saving file" +msgstr "" + +#: src/screens/Signup/StepCaptcha/index.tsx:124 +msgid "Error receiving captcha response." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:183 +msgid "Error:" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:144 +msgid "Error: {error}" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 +msgid "Everybody" +msgstr "" + +#: src/components/WhoCanReply.tsx:77 +msgid "Everybody can reply" +msgstr "" + +#: src/components/WhoCanReply.tsx:245 +msgid "Everybody can reply to this post." +msgstr "" + +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 +msgid "Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 +#: src/lib/moderation/useReportOptions.ts:73 +msgid "Excessive mentions or replies" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:86 +#: src/lib/moderation/useReportOptions.ts:86 +msgid "Excessive or unwanted messages" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:311 +msgid "Exclude users you follow" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:514 +msgid "Excludes users you follow" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 +msgid "Exit fullscreen" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:275 +msgid "Exits account deletion process" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:95 +msgid "Exits image cropping process" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:110 +msgid "Exits image view" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:184 +msgid "Expand alt text" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:592 +msgid "Expand list of users" +msgstr "" + +#: src/view/com/composer/ComposerReplyTo.tsx:91 +msgid "Expand or collapse the full post you are replying to" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 +msgid "Expands or collapses post text" +msgstr "" + +#: src/lib/api/index.ts:418 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 +msgid "Experimental" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:500 +msgid "Expired" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:502 +msgid "Expires {0}" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:199 +#: src/components/moderation/ModerationDetailsDialog.tsx:208 +msgid "Expires in {0}" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:131 +msgid "Expires in {0} at {1}" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:47 +#: src/lib/moderation/useGlobalLabelStrings.ts:51 +msgid "Explicit or potentially disturbing media." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:35 +msgid "Explicit sexual images." +msgstr "" + +#: src/Navigation.tsx:750 +#: src/screens/Search/Shell.tsx:307 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 +msgid "Explore" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 +msgid "Export my data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:62 +msgid "Export My Data" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:84 +#: src/screens/Settings/ContentAndMediaSettings.tsx:87 +msgid "External media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 +msgid "External Media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 +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:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 +msgid "External Media Preferences" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:220 +msgctxt "toast" +msgid "Failed to accept chat" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:67 +#: src/components/dms/MessageContextMenu.tsx:99 +msgid "Failed to add emoji reaction" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:587 +msgid "Failed to change handle. Please try again." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:173 +msgid "Failed to create app password. Please try again." +msgstr "" + +#: src/components/dms/MessageProfileButton.tsx:36 +msgid "Failed to create conversation" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 +msgid "Failed to create starter pack" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:184 +msgid "Failed to create the list. Check your internet connection and try again." +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:64 +#: src/screens/Messages/components/RequestButtons.tsx:291 +msgctxt "toast" +msgid "Failed to delete chat" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:79 +msgid "Failed to delete message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +msgid "Failed to delete post, please try again" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:722 +msgid "Failed to delete starter pack" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 +msgid "Failed to load conversations" +msgstr "" + +#: src/screens/Search/Explore.tsx:470 +#: src/screens/Search/Explore.tsx:522 +#: src/screens/Search/Explore.tsx:560 +#: src/screens/Search/Explore.tsx:599 +msgid "Failed to load feeds preferences" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:226 +msgid "Failed to load GIFs" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:23 +msgid "Failed to load past messages" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + +#: src/screens/Search/Explore.tsx:463 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:553 +#: src/screens/Search/Explore.tsx:592 +msgid "Failed to load suggested feeds" +msgstr "" + +#: src/screens/Search/Explore.tsx:373 +msgid "Failed to load suggested follows" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 +msgid "Failed to mark all requests as read" +msgstr "" + +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:61 +#: src/components/dms/MessageContextMenu.tsx:93 +msgid "Failed to remove emoji reaction" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:34 +msgid "Failed to remove verification" +msgstr "" + +#: src/lib/media/save-image.ts:28 +msgid "Failed to save image: {0}" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:108 +msgid "Failed to save settings. Please try again." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:132 +msgctxt "toast" +msgid "Failed to save your interests." +msgstr "" + +#: src/components/dms/MessageItem.tsx:310 +msgid "Failed to send" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136 +msgid "Failed to send email, please try again." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/screens/Messages/components/ChatDisabled.tsx:87 +msgid "Failed to submit appeal, please try again." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +msgid "Failed to toggle thread mute, please try again" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83 +msgid "Failed to update email 2FA settings" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:195 +msgid "Failed to update email, please try again." +msgstr "" + +#: src/components/FeedCard.tsx:285 +msgid "Failed to update feeds" +msgstr "" + +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 +msgid "Failed to update settings" +msgstr "" + +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 +msgid "Failed to upload video" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168 +msgid "Failed to verify email, please try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:360 +msgid "Failed to verify handle. Please try again." +msgstr "" + +#: src/Navigation.tsx:290 +msgid "Feed" +msgstr "" + +#: src/components/FeedCard.tsx:139 +#: src/view/com/feeds/FeedSourceCard.tsx:150 +msgid "Feed by {0}" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:354 +msgid "Feed menu" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +msgid "Feed toggle" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:102 +#: src/view/shell/desktop/RightNav.tsx:103 +#: src/view/shell/Drawer.tsx:357 +msgid "Feedback" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 +msgctxt "toast" +msgid "Feedback sent!" +msgstr "" + +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 +#: src/screens/StarterPack/StarterPackScreen.tsx:190 +#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Profile.tsx:230 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 +msgid "Feeds" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:206 +msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." +msgstr "" + +#: src/components/FeedCard.tsx:282 +#: src/view/screens/SavedFeeds.tsx:86 +msgctxt "toast" +msgid "Feeds updated!" +msgstr "" + +#: src/screens/Search/modules/ExploreRecommendations.tsx:65 +msgid "Feeds we think you might like." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:58 +msgid "Fetch update" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:43 +msgid "File saved successfully!" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:66 +msgid "Filter from feeds" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:97 +msgid "Filter search by language" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:70 +msgid "Filter search by language (currently: {currentLanguageLabel})" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:314 +msgid "Finalizing" +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:48 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 +msgid "Find accounts to follow" +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:77 +#: src/components/ProgressGuide/FollowDialog.tsx:87 +#: src/components/ProgressGuide/FollowDialog.tsx:374 +msgid "Find people to follow" +msgstr "" + +#: src/screens/Search/Shell.tsx:476 +msgid "Find posts, users, and feeds on Bluesky" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:201 +msgid "Finish" +msgstr "" + +#: src/screens/Onboarding/index.tsx:35 +msgid "Fitness" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 +msgctxt "Name of app icon variant" +msgid "Flat Black" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +msgctxt "Name of app icon variant" +msgid "Flat Blue" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 +msgctxt "Name of app icon variant" +msgid "Flat White" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:294 +msgid "Flexible" +msgstr "" + +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 +#: src/screens/VideoFeed/index.tsx:850 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 +msgid "Follow" +msgstr "" + +#: src/view/com/profile/FollowButton.tsx:72 +msgctxt "action" +msgid "Follow" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 +msgid "Follow {0}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:827 +msgid "Follow {handle}" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:52 +#: src/state/shell/progress-guide.tsx:229 +msgid "Follow 10 accounts" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:69 +msgid "Follow 7 accounts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:284 +#: src/view/com/profile/ProfileMenu.tsx:295 +msgid "Follow account" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:438 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 +msgid "Follow all" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 +msgid "Follow Back" +msgstr "" + +#: src/view/com/profile/FollowButton.tsx:81 +msgctxt "action" +msgid "Follow Back" +msgstr "" + +#: src/components/KnownFollowers.tsx:238 +msgid "Followed by <0>{0}" +msgstr "" + +#: src/components/KnownFollowers.tsx:224 +msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" +msgstr "" + +#: src/components/KnownFollowers.tsx:211 +msgid "Followed by <0>{0} and <1>{1}" +msgstr "" + +#: src/components/KnownFollowers.tsx:193 +msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" +msgstr "" + +#: src/Navigation.tsx:244 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:104 +#: src/screens/Profile/KnownFollowers.tsx:121 +msgid "Followers you know" +msgstr "" + +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 +#: src/screens/VideoFeed/index.tsx:848 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 +msgid "Following" +msgstr "" + +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "" + +#: src/components/ProfileCard.tsx:474 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 +msgid "Following {0}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:826 +msgid "Following {handle}" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:76 +#: src/screens/Settings/ContentAndMediaSettings.tsx:79 +msgid "Following feed preferences" +msgstr "" + +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 +msgid "Following Feed Preferences" +msgstr "" + +#: src/screens/Profile/Header/Handle.tsx:32 +msgid "Follows you" +msgstr "" + +#: src/components/Pills.tsx:175 +msgid "Follows You" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "Font" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:163 +msgid "Font size" +msgstr "" + +#: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:102 +msgid "Food" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:125 +msgid "For security reasons, we'll need to send a confirmation code to your email address." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:209 +msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:145 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94 +msgid "For You" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:178 +msgid "Forever" +msgstr "" + +#: src/screens/Login/index.tsx:153 +#: src/screens/Login/index.tsx:168 +msgid "Forgot Password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:248 +msgid "Forgot password?" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:259 +msgid "Forgot?" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:54 +#: src/lib/moderation/useReportOptions.ts:54 +msgid "Frequently Posts Unwanted Content" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + +#: src/screens/Hashtag.tsx:120 +msgid "From @{sanitizedAuthor}" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:330 +msgctxt "from-feed" +msgid "From <0/>" +msgstr "" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 +msgid "Gallery" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 +msgid "Generate a starter pack" +msgstr "" + +#: src/view/shell/Drawer.tsx:361 +msgid "Get help" +msgstr "" + +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 +msgid "Get started" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:35 +msgid "Getting started" +msgstr "" + +#: src/components/MediaPreview.tsx:116 +msgid "GIF" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:232 +msgid "Give your profile a face" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39 +#: src/lib/moderation/useReportOptions.ts:39 +msgid "Glaring violations of law or terms of service" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 +#: src/components/Layout/Header/index.tsx:127 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/screens/Messages/Inbox.tsx:249 +#: src/screens/Profile/ProfileFeed/index.tsx:92 +#: src/screens/VideoFeed/components/Header.tsx:163 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileList.tsx:1038 +msgid "Go back" +msgstr "" + +#: src/components/Error.tsx:78 +#: src/screens/List/ListHiddenScreen.tsx:224 +#: src/screens/Profile/ErrorState.tsx:62 +#: src/screens/Profile/ErrorState.tsx:66 +#: src/screens/Profile/ProfileFeed/index.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:773 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileList.tsx:1043 +msgid "Go Back" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:192 +#: src/components/ReportDialog/SelectReportOptionView.tsx:78 +#: src/components/ReportDialog/SubmitView.tsx:110 +#: src/screens/Onboarding/Layout.tsx:99 +#: src/screens/Onboarding/Layout.tsx:188 +#: src/screens/Signup/BackNextButtons.tsx:35 +msgid "Go back to previous step" +msgstr "" + +#: src/view/screens/NotFound.tsx:57 +msgid "Go home" +msgstr "" + +#: src/view/screens/NotFound.tsx:56 +msgid "Go Home" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:318 +#: src/view/com/profile/ProfileMenu.tsx:325 +msgid "Go live" +msgstr "" + +#: src/components/live/GoLiveDialog.tsx:93 +#: src/components/live/GoLiveDialog.tsx:98 +#: src/components/live/GoLiveDialog.tsx:232 +#: src/components/live/GoLiveDialog.tsx:241 +msgid "Go Live" +msgstr "" + +#: src/components/live/GoLiveDialog.tsx:174 +msgid "Go live for" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:221 +msgid "Go to {firstAuthorName}'s profile" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:360 +msgid "Go to conversation with {0}" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:165 +#: src/view/com/modals/ChangePassword.tsx:179 +msgid "Go to next" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:227 +msgid "Go to profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:224 +msgid "Go to user's profile" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/lib/moderation/useGlobalLabelStrings.ts:50 +#: src/view/com/composer/labels/LabelsBtn.tsx:201 +#: src/view/com/composer/labels/LabelsBtn.tsx:204 +msgid "Graphic Media" +msgstr "" + +#: src/state/shell/progress-guide.tsx:218 +#: src/state/shell/progress-guide.tsx:228 +msgid "Half way there!" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 +msgid "Handle" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:591 +msgid "Handle already taken. Please try a different one." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:195 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:344 +msgid "Handle changed!" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:595 +msgid "Handle too long. Please try a shorter one." +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:85 +msgid "Haptics" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:34 +#: src/lib/moderation/useReportOptions.ts:34 +msgid "Harassment, trolling, or intolerance" +msgstr "" + +#: src/Navigation.tsx:538 +msgid "Hashtag" +msgstr "" + +#: src/components/RichTextTag.tsx:51 +msgid "Hashtag {tag}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 +msgid "Have a code? <0>Click here." +msgstr "" + +#: src/screens/Signup/index.tsx:210 +msgid "Having trouble?" +msgstr "" + +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 +#: src/view/shell/desktop/RightNav.tsx:120 +#: src/view/shell/desktop/RightNav.tsx:121 +#: src/view/shell/Drawer.tsx:370 +msgid "Help" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:235 +msgid "Help people know you're not a bot by uploading a picture or creating an avatar." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:187 +msgid "Here is your app password!" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + +#: src/components/VideoPostCard.tsx:178 +#: src/components/VideoPostCard.tsx:460 +msgid "Hidden" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:625 +msgid "Hidden by your moderation settings." +msgstr "" + +#: src/components/ListCard.tsx:132 +msgid "Hidden list" +msgstr "" + +#: src/components/interstitials/Trending.tsx:131 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 +#: src/lib/moderation/useLabelBehaviorDescription.ts:15 +#: src/lib/moderation/useLabelBehaviorDescription.ts:20 +#: src/lib/moderation/useLabelBehaviorDescription.ts:25 +#: src/lib/moderation/useLabelBehaviorDescription.ts:30 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110 +msgid "Hide" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:812 +msgctxt "action" +msgid "Hide" +msgstr "" + +#: src/components/dialogs/Embed.tsx:128 +msgid "Hide customization options" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 +msgid "Hide post for me" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 +msgid "Hide reply for everyone" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 +msgid "Hide reply for me" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:110 +msgid "Hide this card" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +msgid "Hide this post?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +msgid "Hide this reply?" +msgstr "" + +#: src/components/interstitials/Trending.tsx:113 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62 +msgid "Hide trending topics" +msgstr "" + +#: src/components/interstitials/Trending.tsx:129 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108 +msgid "Hide trending topics?" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:136 +msgid "Hide trending videos?" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:803 +msgid "Hide user list" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:85 +#: src/screens/Moderation/VerificationSettings.tsx:94 +msgid "Hide verification badges" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 +msgid "Hides the content" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 +msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 +msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 +msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 +msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 +msgid "Hmm, we're having trouble finding this feed. It may have been deleted." +msgstr "" + +#: src/screens/Moderation/index.tsx:59 +msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:31 +msgid "Hmmmm, we couldn't load that moderation service." +msgstr "" + +#: src/view/com/composer/state/video.ts:415 +msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" +msgstr "" + +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 +msgid "Home" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:417 +msgid "Host:" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:184 +msgid "Hosting provider" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194 +msgid "Hot" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 +msgid "Hot replies first" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:62 +#: src/components/dialogs/InAppBrowserConsent.tsx:66 +msgid "How should we open this link?" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 +msgid "I have a code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:280 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:286 +msgid "I have my own domain" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:57 +#: src/components/dms/ReportConversationPrompt.tsx:21 +msgid "I understand" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:186 +msgid "If alt text is long, toggles alt text expanded state" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:142 +msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." +msgstr "" + +#: src/view/screens/ProfileList.tsx:765 +msgid "If you delete this list, you won't be able to recover it." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:267 +msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 +msgid "If you need to update your email, <0>click here." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +msgid "If you remove this post, you won't be able to recover it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:208 +msgid "If you update your email address, email 2FA will be disabled." +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:160 +msgid "If you want to change your password, we will send you a code to verify that this is your account." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:208 +msgid "If you're a developer, you can host your own server." +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 +msgid "If you're trying to change your handle or email, do so before you deactivate." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:38 +#: src/lib/moderation/useReportOptions.ts:38 +msgid "Illegal and Urgent" +msgstr "" + +#: src/view/com/util/images/Gallery.tsx:71 +msgid "Image" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:64 +msgid "Image cache cleared" +msgstr "" + +#. Android-only toast message which includes amount of space freed using localized number formatting +#: src/screens/Settings/AboutSettings.tsx:50 +msgid "Image cache cleared, freed {0}" +msgstr "" + +#: src/lib/media/save-image.ts:26 +msgid "Image saved" +msgstr "" + +#: src/lib/media/save-image.ts:45 +msgid "Images cannot be saved unless permission is granted to access your photo library." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49 +#: src/lib/moderation/useReportOptions.ts:49 +msgid "Impersonation or false claims about identity or affiliation" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:68 +#: src/lib/moderation/useReportOptions.ts:68 +msgid "Impersonation, misinformation, or false claims" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 +#: src/lib/moderation/useReportOptions.ts:91 +msgid "Inappropriate messages or explicit links" +msgstr "" + +#. Title message shown in chat requests inbox when it's empty +#: src/screens/Messages/Inbox.tsx:229 +msgid "Inbox zero!" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:164 +msgid "Incorrect username or password" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:133 +msgid "Input code sent to your email for password reset" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:228 +msgid "Input confirmation code for account deletion" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:159 +msgid "Input new password" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:247 +msgid "Input password for account deletion" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:289 +msgid "Input the code which has been emailed to you" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 +msgid "Interaction limited" +msgstr "" + +#: src/screens/Moderation/index.tsx:222 +msgid "Interaction settings" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:156 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 +msgid "Invalid 2FA confirmation code." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:597 +msgid "Invalid handle. Please try a different one." +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:347 +msgid "Invalid or unsupported post record" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:73 +msgid "Invalid report subject" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 +msgid "Invalid Verification Code" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:94 +msgid "Invite a Friend" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:167 +msgid "Invite code" +msgstr "" + +#: src/screens/Signup/state.ts:339 +msgid "Invite code not accepted. Check that you input it correctly and try again." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:171 +msgid "Invite codes: {0} available" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:170 +msgid "Invite codes: 1 available" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:77 +msgid "Invite people to this starter pack!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:34 +msgid "Invite your friends to follow your favorite feeds and people" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:31 +msgid "Invites, but personal" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:293 +msgid "It's correct" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:474 +msgid "It's just you right now! Add more people to your starter pack by searching above." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1677 +msgid "Job ID: {0}" +msgstr "" + +#. Link to a page with job openings at Bluesky +#: src/view/com/auth/SplashScreen.web.tsx:180 +msgid "Jobs" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211 +#: src/screens/StarterPack/StarterPackScreen.tsx:466 +#: src/screens/StarterPack/StarterPackScreen.tsx:477 +msgid "Join Bluesky" +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:68 +#: src/view/shell/NavSignupCard.tsx:40 +msgid "Join the conversation" +msgstr "" + +#: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:104 +msgid "Journalism" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 +msgid "Labeled by {0}." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:232 +msgid "Labeled by the author." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:75 +#: src/view/screens/Profile.tsx:223 +msgid "Labels" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:73 +msgid "Labels added" +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:194 +msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:72 +msgid "Labels on your account" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:74 +msgid "Labels on your content" +msgstr "" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:107 +msgid "Language selection" +msgstr "" + +#: src/Navigation.tsx:217 +msgid "Language Settings" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:78 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 +msgid "Languages" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:175 +msgid "Larger" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + +#: src/screens/Hashtag.tsx:95 +#: src/screens/Search/SearchResults.tsx:57 +#: src/screens/Topic.tsx:77 +msgid "Latest" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:271 +msgid "learn more" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:165 +#: src/components/verification/VerifierDialog.tsx:132 +#: src/screens/Moderation/VerificationSettings.tsx:47 +#: src/screens/Profile/Header/EditProfileDialog.tsx:359 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:212 +msgid "Learn more" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:140 +msgid "Learn More" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:168 +msgid "Learn more about Bluesky" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:218 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:152 +msgid "Learn more about the moderation applied to this content" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:218 +msgid "Learn more about the moderation applied to this content." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 +#: src/components/moderation/ScreenHider.tsx:127 +msgid "Learn more about this warning" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:150 +#: src/components/verification/VerifierDialog.tsx:117 +msgid "Learn more about verification on Bluesky" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 +msgid "Learn more about what is public on Bluesky." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 +#: src/view/com/auth/server-input/index.tsx:220 +msgid "Learn more." +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:48 +msgid "Leave" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:74 +#: src/components/dms/MessagesListBlockedFooter.tsx:81 +msgid "Leave chat" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:203 +#: src/components/dms/ConvoMenu.tsx:206 +#: src/components/dms/ConvoMenu.tsx:266 +#: src/components/dms/ConvoMenu.tsx:269 +#: src/components/dms/LeaveConvoPrompt.tsx:42 +msgid "Leave conversation" +msgstr "" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 +msgid "Leave them all unselected to see any language." +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 +msgid "Leaving Bluesky" +msgstr "" + +#: src/screens/SignupQueued.tsx:155 +msgid "left to go." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:323 +msgid "Let me choose" +msgstr "" + +#: src/screens/Login/index.tsx:154 +#: src/screens/Login/index.tsx:169 +msgid "Let's get your password reset!" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:314 +msgid "Let's go!" +msgstr "" + +#: src/components/dialogs/Embed.tsx:162 +#: src/components/dialogs/Embed.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:104 +msgid "Light" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:14 +msgctxt "Name of app icon variant" +msgid "Light" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:518 +msgid "Like" +msgstr "" + +#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form +#: src/components/PostControls/index.tsx:253 +msgid "Like ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:63 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:214 +#: src/state/shell/progress-guide.tsx:219 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 +msgid "Like this feed" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272 +msgid "Like this labeler" +msgstr "" + +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 +msgid "Liked by" +msgstr "" + +#: src/screens/Post/PostLikedBy.tsx:38 +#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 +msgid "Liked By" +msgstr "" + +#: src/components/FeedCard.tsx:218 +#: src/view/com/feeds/FeedSourceCard.tsx:172 +msgid "Liked by {0, plural, one {# user} other {# users}}" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:96 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:493 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306 +msgid "Liked by {likeCount, plural, one {# user} other {# users}}" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/view/screens/Profile.tsx:229 +msgid "Likes" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 +msgid "Likes on this post" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 +msgid "Linear" +msgstr "" + +#: src/Navigation.tsx:250 +msgid "List" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:239 +msgid "List Avatar" +msgstr "" + +#: src/view/screens/ProfileList.tsx:438 +msgctxt "toast" +msgid "List blocked" +msgstr "" + +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 +msgid "List by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 +msgid "List by <0/>" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 +msgid "List by you" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + +#: src/view/screens/ProfileList.tsx:485 +msgctxt "toast" +msgid "List deleted" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:129 +msgid "List has been hidden" +msgstr "" + +#: src/view/screens/ProfileList.tsx:176 +msgid "List Hidden" +msgstr "" + +#: src/view/screens/ProfileList.tsx:402 +msgctxt "toast" +msgid "List muted" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:253 +msgid "List Name" +msgstr "" + +#: src/view/screens/ProfileList.tsx:456 +msgctxt "toast" +msgid "List unblocked" +msgstr "" + +#: src/view/screens/ProfileList.tsx:420 +msgctxt "toast" +msgid "List unmuted" +msgstr "" + +#: src/Navigation.tsx:171 +#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Profile.tsx:224 +#: src/view/screens/Profile.tsx:232 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 +msgid "Lists" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:39 +msgid "Lists blocking this user:" +msgstr "" + +#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters +#: src/components/live/LiveIndicator.tsx:46 +msgid "LIVE" +msgstr "" + +#: src/components/live/LiveStatusDialog.tsx:215 +msgid "Live feature is in beta testing" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:148 +#: src/components/live/EditLiveDialog.tsx:152 +#: src/components/live/GoLiveDialog.tsx:124 +#: src/components/live/GoLiveDialog.tsx:128 +msgid "Live link" +msgstr "" + +#: src/screens/Search/Explore.tsx:86 +msgid "Load more" +msgstr "" + +#: src/screens/Search/Explore.tsx:504 +#: src/screens/Search/Explore.tsx:581 +msgid "Load more suggested feeds" +msgstr "" + +#: src/view/screens/Notifications.tsx:278 +msgid "Load new notifications" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:224 +#: src/screens/Profile/Sections/Feed.tsx:98 +#: src/view/com/feeds/FeedPage.tsx:155 +#: src/view/screens/ProfileList.tsx:878 +msgid "Load new posts" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61 +msgid "Loading..." +msgstr "" + +#: src/Navigation.tsx:320 +msgid "Log" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 +msgid "Logged-out visibility" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:130 +msgid "Logo by @sawaratsuki.bsky.social" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:127 +#: src/view/shell/Drawer.tsx:672 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#: src/components/RichTextTag.tsx:53 +msgid "Long press to open tag menu for #{tag}" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:122 +msgid "Looks like XXXXX-XXXXX" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39 +msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:83 +msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:37 +msgid "Looks like you're missing a following feed. <0>Click here to add one." +msgstr "" + +#: src/components/dialogs/EmailDialog/index.tsx:41 +msgid "Make adjustments to email settings for your account" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +msgid "Make one for me" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:85 +msgid "Make sure this is where you intend to go!" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:60 +#: src/screens/Settings/ContentAndMediaSettings.tsx:63 +msgid "Manage saved feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:292 +msgid "Manage verification settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:108 +msgid "Manage your muted words and tags" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 +msgid "Mark all as read" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:215 +#: src/components/dms/ConvoMenu.tsx:218 +msgid "Mark as read" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 +msgid "Marked all as read" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 +msgid "Maybe later" +msgstr "" + +#: src/view/screens/Profile.tsx:227 +msgid "Media" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:210 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 +msgid "mentioned users" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 +msgid "Mentioned users" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 +msgid "Mentions" +msgstr "" + +#: src/components/Menu/index.tsx:111 +msgid "Menu" +msgstr "" + +#: src/components/dms/MessageProfileButton.tsx:96 +msgid "Message {0}" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:77 +msgctxt "toast" +msgid "Message deleted" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:197 +msgid "Message deleted" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:125 +msgid "Message from @{0}: {1}" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 +msgid "Message from server: {0}" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:152 +msgid "Message input field" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:79 +#: src/screens/Messages/components/MessageInput.web.tsx:60 +msgid "Message is too long" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:123 +msgid "Message options" +msgstr "" + +#: src/Navigation.tsx:760 +msgid "Messages" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 +msgctxt "Name of app icon variant" +msgid "Midnight" +msgstr "" + +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 +#: src/lib/moderation/useReportOptions.ts:47 +msgid "Misleading Account" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:67 +#: src/lib/moderation/useReportOptions.ts:67 +msgid "Misleading Post" +msgstr "" + +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 +msgid "Moderation" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:138 +msgid "Moderation details" +msgstr "" + +#: src/components/ListCard.tsx:151 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 +msgid "Moderation list by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 +msgid "Moderation list by <0/>" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 +msgid "Moderation list by you" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:175 +msgctxt "toast" +msgid "Moderation list created" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:161 +msgctxt "toast" +msgid "Moderation list updated" +msgstr "" + +#: src/screens/Moderation/index.tsx:252 +msgid "Moderation lists" +msgstr "" + +#: src/Navigation.tsx:181 +#: src/view/screens/ModerationModlists.tsx:65 +msgid "Moderation Lists" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:252 +msgid "moderation settings" +msgstr "" + +#: src/Navigation.tsx:310 +msgid "Moderation states" +msgstr "" + +#: src/screens/Moderation/index.tsx:206 +msgid "Moderation tools" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:52 +#: src/lib/moderation/useModerationCauseDescription.ts:47 +msgid "Moderator has chosen to set a general warning on the content." +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:727 +msgid "More" +msgstr "" + +#: src/view/shell/desktop/Feeds.tsx:102 +#: src/view/shell/desktop/Feeds.tsx:105 +msgid "More feeds" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:220 +#: src/view/com/profile/ProfileMenu.tsx:226 +#: src/view/screens/ProfileList.tsx:750 +msgid "More options" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:228 +msgid "Most-liked first" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 +msgid "Most-liked replies first" +msgstr "" + +#: src/screens/Onboarding/state.ts:105 +msgid "Movies" +msgstr "" + +#: src/screens/Onboarding/state.ts:106 +msgid "Music" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 +msgctxt "video" +msgid "Mute" +msgstr "" + +#: src/components/RichTextTag.tsx:140 +#: src/components/RichTextTag.tsx:153 +msgid "Mute {tag}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 +#: src/view/com/profile/ProfileMenu.tsx:363 +#: src/view/com/profile/ProfileMenu.tsx:370 +msgid "Mute account" +msgstr "" + +#: src/view/screens/ProfileList.tsx:657 +msgid "Mute accounts" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:232 +#: src/components/dms/ConvoMenu.tsx:238 +msgid "Mute conversation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:253 +msgid "Mute in:" +msgstr "" + +#: src/view/screens/ProfileList.tsx:779 +msgid "Mute list" +msgstr "" + +#: src/view/screens/ProfileList.tsx:774 +msgid "Mute these accounts?" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:185 +msgid "Mute this word for 24 hours" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:224 +msgid "Mute this word for 30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:209 +msgid "Mute this word for 7 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:258 +msgid "Mute this word in post text and tags" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:274 +msgid "Mute this word in tags only" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:170 +msgid "Mute this word until you unmute it" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 +msgid "Mute thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 +msgid "Mute words & tags" +msgstr "" + +#: src/screens/Moderation/index.tsx:267 +msgid "Muted accounts" +msgstr "" + +#: src/Navigation.tsx:186 +#: src/view/screens/ModerationMutedAccounts.tsx:118 +msgid "Muted Accounts" +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:204 +msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:92 +msgid "Muted by \"{0}\"" +msgstr "" + +#: src/screens/Moderation/index.tsx:237 +msgid "Muted words & tags" +msgstr "" + +#: src/view/screens/ProfileList.tsx:776 +msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:35 +#: src/components/dialogs/BirthDateSettings.tsx:38 +msgid "My Birthday" +msgstr "" + +#: src/view/screens/Feeds.tsx:704 +msgid "My Feeds" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:268 +msgid "Name" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:133 +msgid "Name is required" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:59 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:98 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:106 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:114 +#: src/lib/moderation/useReportOptions.ts:59 +#: src/lib/moderation/useReportOptions.ts:98 +#: src/lib/moderation/useReportOptions.ts:106 +#: src/lib/moderation/useReportOptions.ts:114 +msgid "Name or Description Violates Community Standards" +msgstr "" + +#: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:107 +msgid "Nature" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:130 +#: src/components/StarterPack/StarterPackCard.tsx:160 +msgid "Navigate to {0}" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:131 +msgid "Navigate to starter pack" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:344 +#: src/view/com/modals/ChangePassword.tsx:180 +msgid "Navigates to the next screen" +msgstr "" + +#: src/view/shell/Drawer.tsx:77 +msgid "Navigates to your profile" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:271 +#: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:128 +msgid "Need to report a copyright violation?" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:282 +msgid "Never lose access to your followers or data." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:567 +msgid "Nevermind, create a handle for me" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199 +msgid "New" +msgstr "" + +#: src/view/screens/Lists.tsx:77 +#: src/view/screens/ModerationModlists.tsx:77 +msgctxt "action" +msgid "New" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:67 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 +msgid "New chat" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:222 +msgid "New email address" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 +msgid "New Feature" +msgstr "" + +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:221 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:229 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:375 +msgid "New handle" +msgstr "" + +#: src/view/screens/Lists.tsx:69 +#: src/view/screens/ModerationModlists.tsx:69 +msgid "New list" +msgstr "" + +#: src/components/dms/NewMessagesPill.tsx:92 +msgid "New messages" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:230 +msgid "New Moderation List" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:141 +#: src/view/com/modals/ChangePassword.tsx:224 +msgid "New password" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:229 +msgid "New Password" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:241 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Notifications.tsx:167 +#: src/view/screens/Profile.tsx:510 +#: src/view/screens/ProfileList.tsx:250 +#: src/view/screens/ProfileList.tsx:288 +msgid "New post" +msgstr "" + +#: src/view/com/feeds/FeedPage.tsx:166 +msgctxt "action" +msgid "New post" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:527 +msgctxt "action" +msgid "New Post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/components/NewskieDialog.tsx:83 +msgid "New user info dialog" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:225 +msgid "New User List" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 +msgid "Newest replies first" +msgstr "" + +#: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:108 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241 +msgid "News" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:137 +#: src/screens/Login/ForgotPasswordForm.tsx:143 +#: src/screens/Login/LoginForm.tsx:343 +#: src/screens/Login/LoginForm.tsx:350 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 +#: src/screens/Signup/BackNextButtons.tsx:67 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 +#: src/view/com/modals/ChangePassword.tsx:265 +#: src/view/com/modals/ChangePassword.tsx:267 +msgid "Next" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:169 +msgid "Next image" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:108 +msgid "No app passwords yet" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:397 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:399 +msgid "No DNS Panel" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:140 +msgid "No expiry set" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:232 +msgid "No featured GIFs found. There may be an issue with Tenor." +msgstr "" + +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:119 +msgid "No feeds found. Try searching for something else." +msgstr "" + +#: src/components/live/LinkPreview.tsx:63 +msgid "No image" +msgstr "" + +#: src/components/LikedByList.tsx:84 +#: src/view/com/post-thread/PostLikedBy.tsx:84 +msgid "No likes yet" +msgstr "" + +#: src/components/ProfileCard.tsx:496 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 +msgid "No longer following {0}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:139 +msgid "No messages yet" +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:122 +msgid "No notifications yet!" +msgstr "" + +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 +msgid "No one" +msgstr "" + +#: src/components/WhoCanReply.tsx:269 +msgid "No one but the author can quote this post." +msgstr "" + +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:66 +msgid "No posts yet." +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:105 +msgid "No quotes yet" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:90 +msgid "No reposts yet" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:172 +msgid "No result" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:223 +#: src/components/ProgressGuide/FollowDialog.tsx:212 +msgid "No results" +msgstr "" + +#: src/screens/Search/Explore.tsx:786 +msgid "No results for \"{0}\"." +msgstr "" + +#: src/components/Lists.tsx:190 +msgid "No results found" +msgstr "" + +#: src/view/screens/Feeds.tsx:473 +msgid "No results found for \"{query}\"" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 +msgid "No results found for {query}" +msgstr "" + +#: src/screens/Search/Explore.tsx:790 +msgid "No results." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:230 +msgid "No search results found for \"{search}\"." +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 +msgid "No thanks" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 +msgid "Nobody" +msgstr "" + +#: src/components/LikedByList.tsx:86 +#: src/view/com/post-thread/PostLikedBy.tsx:86 +msgid "Nobody has liked this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:107 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:92 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:104 +msgid "Nobody was found. Try searching for someone else." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:42 +msgid "Non-sexual Nudity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 +msgid "Not followed by anyone you're following" +msgstr "" + +#: src/Navigation.tsx:166 +#: src/view/screens/Profile.tsx:125 +msgid "Not Found" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:480 +msgid "Note about sharing" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 +msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 +msgid "Nothing here" +msgstr "" + +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 +msgid "Notification settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:139 +msgid "Notification sounds" +msgstr "" + +#: src/screens/Messages/Settings.tsx:136 +msgid "Notification Sounds" +msgstr "" + +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 +msgid "Notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:135 +msgid "now" +msgstr "" + +#: src/components/dms/MessageItem.tsx:274 +msgid "Now" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:150 +#: src/view/com/composer/labels/LabelsBtn.tsx:153 +msgid "Nudity" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:78 +#: src/lib/moderation/useReportOptions.ts:78 +msgid "Nudity or adult content not labeled as such" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 +msgid "Off" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 +msgid "Oh no!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:124 +msgid "Oh no! Something went wrong." +msgstr "" + +#. Confirm button text. +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:48 +#: src/screens/Settings/AppIconSettings/index.tsx:48 +#: src/screens/Settings/AppIconSettings/index.tsx:229 +msgid "OK" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:37 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 +msgid "Okay" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 +msgid "Oldest replies first" +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:82 +msgid "on<0><1/><2><3/>" +msgstr "" + +#: src/screens/Settings/Settings.tsx:388 +msgid "Onboarding reset" +msgstr "" + +#: src/view/com/composer/Composer.tsx:347 +msgid "One or more GIFs is missing alt text." +msgstr "" + +#: src/view/com/composer/Composer.tsx:344 +msgid "One or more images is missing alt text." +msgstr "" + +#: src/view/com/composer/Composer.tsx:354 +msgid "One or more videos is missing alt text." +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:115 +msgid "Only .jpg and .png files are supported" +msgstr "" + +#: src/components/WhoCanReply.tsx:249 +msgid "Only {0} can reply." +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" + +#: src/lib/media/picker.shared.ts:32 +msgid "Only image files are supported" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 +msgid "Only WebVTT (.vtt) files are supported" +msgstr "" + +#: src/components/Lists.tsx:95 +msgid "Oops, something went wrong!" +msgstr "" + +#: src/components/Lists.tsx:174 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 +#: src/components/StarterPack/ProfileStarterPacks.tsx:341 +#: src/screens/Settings/AppPasswords.tsx:59 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:106 +#: src/view/screens/Profile.tsx:125 +msgid "Oops!" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:278 +msgid "Open" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:284 +msgid "Open avatar creator" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:368 +#: src/screens/Messages/components/ChatListItem.tsx:369 +msgid "Open conversation options" +msgstr "" + +#: src/components/Layout/Header/index.tsx:159 +msgid "Open drawer menu" +msgstr "" + +#: src/screens/Messages/components/MessageInput.web.tsx:181 +#: src/view/com/composer/Composer.tsx:1325 +msgid "Open emoji picker" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:191 +msgid "Open feed info screen" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:291 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:296 +msgid "Open feed options menu" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:27 +msgid "Open full emoji list" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/components/dms/ActionsWrapper.tsx:35 +msgid "Open message options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:453 +msgid "Open moderation debug page" +msgstr "" + +#: src/screens/Moderation/index.tsx:233 +msgid "Open muted words and tags settings" +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:119 +msgid "Open pack" +msgstr "" + +#: src/components/PostControls/PostMenu/index.tsx:62 +msgid "Open post options menu" +msgstr "" + +#: src/components/live/LiveStatusDialog.tsx:189 +#: src/components/live/LiveStatusDialog.tsx:203 +msgid "Open profile" +msgstr "" + +#: src/components/PostControls/ShareMenu/index.tsx:87 +msgid "Open share menu" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:566 +msgid "Open starter pack menu" +msgstr "" + +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 +msgid "Open storybook page" +msgstr "" + +#: src/screens/Settings/Settings.tsx:439 +msgid "Open system log" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:167 +msgid "Opens {numItems} options" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:62 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:61 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "" + +#: src/view/screens/Log.tsx:59 +msgid "Opens additional details for a debug entry" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:44 +msgid "Opens alt text dialog" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +msgid "Opens camera on device" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:43 +msgid "Opens captions and alt text dialog" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:129 +msgid "Opens change handle dialog" +msgstr "" + +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 +msgid "Opens composer" +msgstr "" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 +msgid "Opens device photo gallery" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1326 +msgid "Opens emoji picker" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:49 +#: src/view/com/auth/SplashScreen.web.tsx:111 +msgid "Opens flow to create a new Bluesky account" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:63 +#: src/view/com/auth/SplashScreen.web.tsx:125 +msgid "Opens flow to sign in to your existing Bluesky account" +msgstr "" + +#: src/view/com/composer/photos/SelectGifBtn.tsx:36 +msgid "Opens GIF select dialog" +msgstr "" + +#: src/screens/Settings/Settings.tsx:237 +msgid "Opens helpdesk in browser" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:173 +msgid "Opens list of invite codes" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:576 +msgid "Opens live status dialog" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:249 +msgid "Opens password reset form" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 +msgid "Opens this profile" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +msgid "Opens video picker" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:221 +#: src/components/ReportDialog/SubmitView.tsx:168 +msgid "Optionally provide additional information below:" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:299 +msgid "Options:" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 +msgid "Or combine these options:" +msgstr "" + +#: src/screens/Deactivated.tsx:200 +msgid "Or, continue with another account." +msgstr "" + +#: src/screens/Deactivated.tsx:187 +msgid "Or, sign in to one of your other accounts." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:52 +msgid "OTA status: ..." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:48 +msgid "OTA status: Available!" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:50 +msgid "OTA status: Error fetching update" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:54 +msgid "OTA status: None available" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27 +#: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:185 +msgid "Other" +msgstr "" + +#: src/components/AccountList.tsx:88 +msgid "Other account" +msgstr "" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:93 +msgid "Other..." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:348 +msgid "Our moderation team has received your report." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:28 +msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." +msgstr "" + +#: src/components/Lists.tsx:191 +#: src/view/screens/NotFound.tsx:47 +msgid "Page not found" +msgstr "" + +#: src/view/screens/NotFound.tsx:44 +msgid "Page Not Found" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 +#: src/view/com/modals/DeleteAccount.tsx:239 +#: src/view/com/modals/DeleteAccount.tsx:246 +msgid "Password" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:154 +msgid "Password Changed" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:99 +msgid "Password must be at least 8 characters long." +msgstr "" + +#: src/screens/Login/index.tsx:181 +msgid "Password updated" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:23 +msgid "Password updated!" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 +msgid "Pause" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 +msgid "Pause video" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:67 +#: src/screens/StarterPack/StarterPackScreen.tsx:189 +#: src/view/screens/ProfileList.tsx:170 +msgid "People" +msgstr "" + +#: src/Navigation.tsx:237 +msgid "People followed by @{0}" +msgstr "" + +#: src/Navigation.tsx:230 +msgid "People following @{0}" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "" + +#: src/lib/media/save-image.ts:51 +msgid "Permission to access your photo library was denied. Please enable it in your system settings." +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +msgid "Person toggle" +msgstr "" + +#: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:109 +msgid "Pets" +msgstr "" + +#: src/screens/Onboarding/state.ts:110 +msgid "Photography" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:169 +msgid "Pictures meant for adults." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:530 +msgid "Pin feed" +msgstr "" + +#: src/components/FeedCard.tsx:329 +msgid "Pin Feed" +msgstr "" + +#: src/view/screens/ProfileList.tsx:714 +msgid "Pin to home" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +msgid "Pin to Home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:411 +msgid "Pinned" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:160 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:174 +msgid "Pinned {0} to Home" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:131 +msgid "Pinned Feeds" +msgstr "" + +#: src/view/screens/ProfileList.tsx:361 +msgid "Pinned to your feeds" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 +msgid "Play" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 +msgid "Play {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 +msgid "Play video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 +msgid "Play Video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 +msgid "Plays or pauses the GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 +msgid "Plays or pauses the video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 +msgid "Plays the GIF" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 +msgid "Plays the video" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:115 +msgid "Please add any content warning labels that are applicable for the media you are posting." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + +#: src/screens/Signup/state.ts:286 +msgid "Please choose your handle." +msgstr "" + +#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/StepInfo/index.tsx:123 +msgid "Please choose your password." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:290 +msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." +msgstr "" + +#: src/screens/Signup/state.ts:301 +msgid "Please complete the verification captcha." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 +msgid "Please double-check that you have entered your email address correctly." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:58 +msgid "Please enter a password." +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:94 +msgid "Please enter a password. It must be at least 8 characters long." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114 +msgid "Please enter a unique name for this app password or use our randomly generated one." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:135 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145 +msgid "Please enter a valid code." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:148 +msgid "Please enter a valid email address." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:86 +msgid "Please enter a valid word, tag, or phrase to mute" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 +msgid "Please enter the code we sent to <0>{0} below." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:247 +msgid "Please enter the security code we sent to your previous email address." +msgstr "" + +#: src/screens/Signup/state.ts:262 +#: src/screens/Signup/StepInfo/index.tsx:94 +msgid "Please enter your email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:87 +msgid "Please enter your invite code." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:217 +msgid "Please enter your new email address." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:99 +msgid "Please enter your password" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:235 +msgid "Please enter your password as well:" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:94 +msgid "Please enter your username" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +msgid "Please explain why you think this label was incorrectly applied by {0}" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:110 +msgid "Please explain why you think your chats were incorrectly disabled" +msgstr "" + +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:31 +msgid "Please select a moderation service" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:28 +msgid "Please select a reason for this report" +msgstr "" + +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 +msgid "Please sign in as @{0}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62 +msgid "Please verify your email" +msgstr "" + +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" + +#: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:111 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235 +msgid "Politics" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:156 +msgid "Porn" +msgstr "" + +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 +msgctxt "description" +msgid "Post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1034 +msgctxt "action" +msgid "Post All" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 +msgid "Post by {0}" +msgstr "" + +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 +msgid "Post by @{0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 +msgctxt "toast" +msgid "Post deleted" +msgstr "" + +#: src/lib/api/index.ts:186 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 +#: src/screens/VideoFeed/index.tsx:529 +msgid "Post has been deleted" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:271 +msgid "Post hidden" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:107 +#: src/lib/moderation/useModerationCauseDescription.ts:106 +msgid "Post Hidden by Muted Word" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:110 +#: src/lib/moderation/useModerationCauseDescription.ts:115 +msgid "Post Hidden by You" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 +msgid "Post interaction settings" +msgstr "" + +#: src/Navigation.tsx:197 +#: src/screens/ModerationInteractionSettings/index.tsx:34 +msgid "Post Interaction Settings" +msgstr "" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:89 +msgid "Post language" +msgstr "" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:77 +msgid "Post Languages" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 +msgid "Post not found" +msgstr "" + +#: src/state/queries/pinned-post.ts:59 +msgctxt "toast" +msgid "Post pinned" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgctxt "toast" +msgid "Post unpinned" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 +#: src/screens/StarterPack/StarterPackScreen.tsx:191 +#: src/view/screens/Profile.tsx:225 +#: src/view/screens/ProfileList.tsx:170 +msgid "Posts" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:115 +msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 +msgid "Posts hidden" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:19 +msgid "Press to attempt reconnection" +msgstr "" + +#: src/components/Error.tsx:60 +#: src/components/Lists.tsx:100 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:47 +msgid "Press to retry" +msgstr "" + +#: src/components/KnownFollowers.tsx:129 +msgid "Press to view followers of this account that you also follow" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:150 +msgid "Previous image" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:120 +msgid "Primary Language" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 +msgid "Prioritize your Follows" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:110 +#: src/view/shell/desktop/RightNav.tsx:111 +msgid "Privacy" +msgstr "" + +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 +msgid "Privacy and security" +msgstr "" + +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 +msgid "Privacy and Security" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 +#: src/screens/Settings/AboutSettings.tsx:92 +#: src/screens/Settings/AboutSettings.tsx:95 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 +msgid "Privacy Policy" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1740 +msgid "Processing video..." +msgstr "" + +#: src/lib/api/index.ts:60 +#: src/screens/Login/ForgotPasswordForm.tsx:149 +msgid "Processing..." +msgstr "" + +#: src/view/screens/DebugMod.tsx:927 +#: src/view/screens/Profile.tsx:364 +msgid "profile" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 +#: src/view/shell/Drawer.tsx:76 +#: src/view/shell/Drawer.tsx:559 +msgid "Profile" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:196 +msgctxt "toast" +msgid "Profile updated" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:264 +msgid "Public" +msgstr "" + +#: src/view/com/lists/MyLists.tsx:77 +msgid "Public, sharable lists of users to mute or block in bulk." +msgstr "" + +#: src/view/com/lists/MyLists.tsx:72 +msgid "Public, sharable lists which can be used to drive feeds." +msgstr "" + +#. Accessibility label for button to publish a single post +#: src/view/com/composer/Composer.tsx:1016 +msgid "Publish post" +msgstr "" + +#. Accessibility label for button to publish multiple posts in a thread +#: src/view/com/composer/Composer.tsx:1009 +msgid "Publish posts" +msgstr "" + +#. Accessibility label for button to publish multiple replies in a thread +#: src/view/com/composer/Composer.tsx:994 +msgid "Publish replies" +msgstr "" + +#. Accessibility label for button to publish a single reply +#: src/view/com/composer/Composer.tsx:1001 +msgid "Publish reply" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:134 +msgid "QR code copied to your clipboard!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:112 +msgid "QR code has been downloaded!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:113 +msgid "QR code saved to your camera roll!" +msgstr "" + +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 +msgid "Quote post" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 +msgid "Quote post was re-attached" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 +msgid "Quote post was successfully detached" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 +msgid "Quote posts disabled" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 +msgid "Quote settings" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:154 +#: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +msgid "Quotes" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 +msgid "Quotes of this post" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 +msgid "Random (aka \"Poster's Roulette\")" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:600 +msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 +msgid "Re-attach quote" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.tsx:85 +msgid "React with {emoji}" +msgstr "" + +#: src/screens/Deactivated.tsx:141 +msgid "Reactivate your account" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 +msgid "Read blog post" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:966 +msgid "Read less" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:966 +msgid "Read more" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:173 +msgid "Read the Bluesky blog" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 +msgid "Read the Bluesky Privacy Policy" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 +msgid "Read the Bluesky Terms of Service" +msgstr "" + +#: src/screens/Takendown.tsx:162 +#: src/screens/Takendown.tsx:170 +msgid "Reason for appeal" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:212 +msgid "Reason:" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:49 +msgid "Recent Searches" +msgstr "" + +#: src/screens/Search/modules/ExploreRecommendations.tsx:54 +msgid "Recommended" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:20 +msgid "Reconnect" +msgstr "" + +#. Reject a chat request, this opens a menu with options +#: src/screens/Messages/components/RequestButtons.tsx:124 +msgid "Reject" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:112 +msgid "Reject chat request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 +msgid "Reload conversations" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 +#: src/components/dialogs/MutedWords.tsx:438 +#: src/components/FeedCard.tsx:343 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 +#: src/screens/Settings/Settings.tsx:662 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 +msgid "Remove" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 +msgid "Remove {displayName} from starter pack" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:94 +msgid "Remove {historyItem}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 +msgid "Remove account" +msgstr "" + +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +msgid "Remove attachment" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 +msgid "Remove Avatar" +msgstr "" + +#: src/view/com/util/UserBanner.tsx:186 +#: src/view/com/util/UserBanner.tsx:189 +msgid "Remove Banner" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:209 +msgid "Remove embed" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:116 +#: src/view/com/posts/FeedShutdownMsg.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 +msgid "Remove feed" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 +msgid "Remove feed?" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/view/screens/ProfileList.tsx:528 +#: src/view/screens/SavedFeeds.tsx:350 +msgid "Remove from my feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:654 +msgid "Remove from quick access?" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:170 +#: src/screens/List/ListHiddenScreen.tsx:174 +msgid "Remove from saved feeds" +msgstr "" + +#: src/components/FeedCard.tsx:338 +msgid "Remove from your feeds?" +msgstr "" + +#: src/view/com/composer/photos/Gallery.tsx:204 +msgid "Remove image" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:240 +#: src/components/live/EditLiveDialog.tsx:247 +msgid "Remove live status" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:523 +msgid "Remove mute word from your list" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:167 +msgid "Remove profile" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 +msgid "Remove repost" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:261 +msgid "Remove subtitle file" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 +msgid "Remove this feed from your saved feeds" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157 +msgid "Remove user from list" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:46 +#: src/components/verification/VerificationsDialog.tsx:247 +#: src/view/com/profile/ProfileMenu.tsx:336 +#: src/view/com/profile/ProfileMenu.tsx:339 +msgid "Remove verification" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:44 +msgid "Remove your verification for this account?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:208 +msgid "Removed by author" +msgstr "" + +#: src/components/Post/Embed/index.tsx:206 +msgid "Removed by you" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 +msgid "Removed from list" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:94 +msgid "Removed from saved feeds" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:122 +#: src/view/com/posts/FeedShutdownMsg.tsx:44 +#: src/view/screens/ProfileList.tsx:392 +msgid "Removed from your feeds" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:32 +msgid "Removed verification" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:129 +#: src/view/com/posts/FeedShutdownMsg.tsx:133 +msgid "Replace with Discover" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/view/screens/Profile.tsx:226 +msgid "Replies" +msgstr "" + +#: src/components/WhoCanReply.tsx:79 +msgid "Replies disabled" +msgstr "" + +#: src/components/WhoCanReply.tsx:247 +msgid "Replies to this post are disabled." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1032 +msgctxt "action" +msgid "Reply" +msgstr "" + +#. Accessibility label for the reply button, verb form followed by number of replies and noun form +#: src/components/PostControls/index.tsx:207 +msgid "Reply ({0, plural, one {# reply} other {# replies}})" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:116 +#: src/lib/moderation/useModerationCauseDescription.ts:125 +msgid "Reply Hidden by Thread Author" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:115 +#: src/lib/moderation/useModerationCauseDescription.ts:124 +msgid "Reply Hidden by You" +msgstr "" + +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +msgid "Reply settings" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 +msgid "Reply settings are chosen by the author of the thread" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 +msgid "Reply sorting" +msgstr "" + +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 +msgctxt "description" +msgid "Reply to <0><1/>" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:593 +msgctxt "description" +msgid "Reply to a blocked post" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:595 +msgctxt "description" +msgid "Reply to a post" +msgstr "" + +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 +msgctxt "description" +msgid "Reply to you" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 +msgctxt "toast" +msgid "Reply visibility updated" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 +msgid "Reply was successfully hidden" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:166 +#: src/components/dms/MessagesListBlockedFooter.tsx:85 +#: src/components/dms/MessagesListBlockedFooter.tsx:92 +msgid "Report" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:403 +#: src/view/com/profile/ProfileMenu.tsx:406 +msgid "Report account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:255 +#: src/components/dms/ConvoMenu.tsx:258 +#: src/components/dms/ReportConversationPrompt.tsx:17 +#: src/screens/Messages/components/RequestButtons.tsx:155 +#: src/screens/Messages/components/RequestButtons.tsx:158 +msgid "Report conversation" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:71 +#: src/components/moderation/ReportDialog/index.tsx:198 +#: src/components/ReportDialog/index.tsx:44 +msgid "Report dialog" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 +msgid "Report feed" +msgstr "" + +#: src/view/screens/ProfileList.tsx:570 +msgid "Report list" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:164 +msgid "Report message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 +msgid "Report post" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:630 +#: src/screens/StarterPack/StarterPackScreen.tsx:633 +msgid "Report starter pack" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:345 +msgid "Report submitted" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:41 +msgid "Report this content" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:31 +#: src/components/ReportDialog/SelectReportOptionView.tsx:54 +msgid "Report this feed" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:25 +#: src/components/ReportDialog/SelectReportOptionView.tsx:51 +msgid "Report this list" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:59 +#: src/components/dms/ReportDialog.tsx:180 +#: src/components/moderation/ReportDialog/copy.ts:43 +#: src/components/ReportDialog/SelectReportOptionView.tsx:60 +msgid "Report this message" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:19 +#: src/components/ReportDialog/SelectReportOptionView.tsx:48 +msgid "Report this post" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:37 +#: src/components/ReportDialog/SelectReportOptionView.tsx:57 +msgid "Report this starter pack" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:13 +#: src/components/ReportDialog/SelectReportOptionView.tsx:45 +msgid "Report this user" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 +msgctxt "action" +msgid "Repost" +msgstr "" + +#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form +#: src/components/PostControls/RepostButton.tsx:76 +msgid "Repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:144 +#: src/components/PostControls/RepostButton.web.tsx:43 +#: src/components/PostControls/RepostButton.web.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:561 +msgid "Repost or quote post" +msgstr "" + +#: src/screens/Post/PostRepostedBy.tsx:38 +msgid "Reposted By" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:351 +msgid "Reposted by {0}" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:370 +msgid "Reposted by <0><1/>" +msgstr "" + +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 +msgid "Reposted by you" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 +msgid "Reposts of this post" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:253 +#: src/view/com/modals/ChangePassword.tsx:255 +msgid "Request Code" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 +msgid "Require alt text before posting" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96 +msgid "Require an email code to sign in to your account." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:181 +msgid "Required for this provider" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40 +msgid "Resend" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 +msgid "Resend email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:130 +msgid "Resend Email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 +msgid "Resend Verification Email" +msgstr "" + +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/view/com/modals/ChangePassword.tsx:197 +msgid "Reset code" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:204 +msgid "Reset Code" +msgstr "" + +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 +msgid "Reset onboarding state" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:80 +msgid "Reset password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:324 +msgid "Retries signing in" +msgstr "" + +#: src/view/com/util/error/ErrorMessage.tsx:62 +#: src/view/com/util/error/ErrorScreen.tsx:99 +msgid "Retries the last action, which errored out" +msgstr "" + +#: src/components/dms/MessageItem.tsx:321 +#: src/components/Error.tsx:65 +#: src/components/Lists.tsx:111 +#: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 +#: src/components/StarterPack/ProfileStarterPacks.tsx:346 +#: src/screens/Login/LoginForm.tsx:323 +#: src/screens/Login/LoginForm.tsx:330 +#: src/screens/Messages/ChatList.tsx:280 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Messages/Inbox.tsx:218 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 +#: src/screens/Signup/BackNextButtons.tsx:53 +#: src/view/com/util/error/ErrorMessage.tsx:60 +#: src/view/com/util/error/ErrorScreen.tsx:97 +msgid "Retry" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:226 +msgid "Retry loading report options" +msgstr "" + +#: src/components/Error.tsx:73 +#: src/screens/List/ListHiddenScreen.tsx:219 +#: src/screens/StarterPack/StarterPackScreen.tsx:767 +msgid "Return to previous page" +msgstr "" + +#: src/view/screens/NotFound.tsx:61 +msgid "Returns to home page" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:93 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:559 +#: src/screens/VideoFeed/index.tsx:1142 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileList.tsx:1039 +msgid "Returns to previous page" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:304 +msgid "Returns to the previous step" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:121 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 +#: src/components/live/EditLiveDialog.tsx:216 +#: src/components/live/EditLiveDialog.tsx:223 +#: src/components/StarterPack/QrCodeDialog.tsx:192 +#: src/screens/Profile/Header/EditProfileDialog.tsx:243 +#: src/screens/Profile/Header/EditProfileDialog.tsx:257 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:262 +#: src/view/com/composer/GifAltText.tsx:193 +#: src/view/com/composer/GifAltText.tsx:202 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:75 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 +#: src/view/com/modals/CreateOrEditList.tsx:315 +#: src/view/screens/SavedFeeds.tsx:117 +msgid "Save" +msgstr "" + +#: src/view/com/lightbox/ImageViewing/index.tsx:610 +#: src/view/com/modals/CreateOrEditList.tsx:323 +msgctxt "action" +msgid "Save" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:115 +msgid "Save birthday" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 +msgid "Save changes" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:131 +#: src/components/StarterPack/ShareDialog.tsx:138 +msgid "Save image" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:104 +msgid "Save image crop" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:248 +msgid "Save new handle" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:186 +msgid "Save QR code" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +msgid "Save to my feeds" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:172 +msgid "Saved Feeds" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:132 +#: src/view/screens/ProfileList.tsx:372 +msgid "Saved to your feeds" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:105 +msgid "Saves image crop settings" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:33 +#: src/components/NewskieDialog.tsx:105 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 +msgid "Say hello!" +msgstr "" + +#: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:112 +msgid "Science" +msgstr "" + +#: src/view/screens/ProfileList.tsx:996 +msgid "Scroll to top" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:514 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/screens/Search/Shell.tsx:307 +#: src/screens/Search/Shell.tsx:464 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 +msgid "Search" +msgstr "" + +#: src/Navigation.tsx:256 +#: src/screens/Profile/ProfileSearch.tsx:37 +msgid "Search @{0}'s posts" +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:683 +msgid "Search by name or interest" +msgstr "" + +#: src/view/screens/Feeds.tsx:444 +msgid "Search feeds" +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:524 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135 +msgid "Search for \"{interestsDisplayName}\"{activeText}" +msgstr "" + +#: src/view/shell/desktop/Search.tsx:131 +msgid "Search for \"{query}\"" +msgstr "" + +#: src/screens/Search/components/AutocompleteResults.tsx:45 +msgid "Search for \"{searchText}\"" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:513 +msgid "Search for feeds that you want to suggest to others." +msgstr "" + +#: src/screens/Search/Explore.tsx:360 +msgid "Search for more accounts" +msgstr "" + +#: src/screens/Search/Explore.tsx:437 +msgid "Search for more feeds" +msgstr "" + +#: src/screens/Search/Shell.tsx:334 +msgid "Search for posts, users, or feeds" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:178 +msgid "Search GIFs" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:36 +msgid "Search my posts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:263 +#: src/view/com/profile/ProfileMenu.tsx:266 +msgid "Search posts" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/ProgressGuide/FollowDialog.tsx:702 +msgid "Search profiles" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:179 +msgid "Search Tenor" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:38 +msgid "Search..." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:535 +#: src/components/ProgressGuide/FollowDialog.tsx:703 +msgid "Searches for profiles" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:243 +msgid "Security step required" +msgstr "" + +#: src/components/RichTextTag.tsx:111 +msgid "See {tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:124 +msgid "See {tag} posts by user" +msgstr "" + +#: src/components/RichTextTag.tsx:118 +msgid "See #{tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:132 +msgid "See #{tag} posts by user" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:178 +msgid "See jobs at Bluesky" +msgstr "" + +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 +msgid "See this guide" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 +msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" +msgstr "" + +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 +msgid "Select a color" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:77 +msgid "Select account" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:60 +msgid "Select an app language" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +msgid "Select an avatar" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 +msgid "Select an emoji" +msgstr "" + +#: src/components/Select/index.tsx:204 +msgid "Select an option" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:98 +msgid "Select app language" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:164 +msgid "Select content languages" +msgstr "" + +#: src/components/live/GoLiveDialog.tsx:179 +msgid "Select duration" +msgstr "" + +#: src/screens/Login/index.tsx:144 +msgid "Select from an existing account" +msgstr "" + +#: src/view/com/composer/photos/SelectGifBtn.tsx:35 +msgid "Select GIF" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:307 +msgid "Select GIF \"{0}\"" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:142 +msgid "Select how long to mute this word for." +msgstr "" + +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:248 +msgid "Select language..." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:178 +msgid "Select languages" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:310 +msgid "Select moderation service" +msgstr "" + +#: src/components/ReportDialog/SelectLabelerView.tsx:28 +msgid "Select moderator" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:131 +msgid "Select primary language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 +msgid "Select subtitle file (.vtt)" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83 +msgid "Select the {emojiName} emoji as your avatar" +msgstr "" + +#: src/components/ReportDialog/SubmitView.tsx:141 +msgid "Select the moderation service(s) to report to" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:74 +msgid "Select video" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:242 +msgid "Select what content this mute word should apply to." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:91 +msgid "Select which language to use for the app's user interface." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:157 +msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:274 +msgid "Select your date of birth" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Settings/InterestsSettings.tsx:161 +msgid "Select your interests from the options below" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:124 +msgid "Select your preferred language for translations in your feed." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 +msgid "Selects option {0} of {numItems}" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:38 +msgid "Send a neat website!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 +#: src/view/com/modals/DeleteAccount.tsx:145 +msgid "Send email" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:158 +msgctxt "action" +msgid "Send Email" +msgstr "" + +#: src/view/shell/Drawer.tsx:350 +msgid "Send feedback" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:192 +#: src/screens/Messages/components/MessageInput.web.tsx:235 +msgid "Send message" +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 +msgid "Send post to {name}" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 +msgid "Send post to..." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:271 +#: src/components/dms/ReportDialog.tsx:274 +#: src/components/ReportDialog/SubmitView.tsx:221 +#: src/components/ReportDialog/SubmitView.tsx:225 +msgid "Send report" +msgstr "" + +#: src/components/ReportDialog/SelectLabelerView.tsx:42 +msgid "Send report to {0}" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:649 +msgid "Send report to {title}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 +msgid "Send verification email" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 +msgid "Send via direct message" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:147 +msgid "Sends email with confirmation code for account deletion" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:167 +msgid "Server address" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:178 +msgid "Set app icon to {0}" +msgstr "" + +#: src/screens/Moderation/index.tsx:333 +msgid "Set birthdate" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:106 +msgid "Set new password" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:47 +msgid "Set up your account" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:107 +msgid "Sets email for password reset" +msgstr "" + +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 +msgid "Settings" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:102 +msgctxt "toast" +msgid "Settings saved" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:173 +msgid "Sexual activity or erotic nudity." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:38 +msgid "Sexually Suggestive" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:182 +#: src/screens/Hashtag.tsx:126 +#: src/screens/StarterPack/StarterPackScreen.tsx:433 +#: src/screens/Topic.tsx:102 +#: src/view/screens/ProfileList.tsx:513 +msgid "Share" +msgstr "" + +#: src/view/com/lightbox/ImageViewing/index.tsx:619 +msgctxt "action" +msgid "Share" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:37 +msgid "Share a cool story!" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:36 +msgid "Share a fun fact!" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:485 +msgid "Share anyway" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 +msgid "Share author DID" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 +#: src/components/StarterPack/ShareDialog.tsx:104 +#: src/components/StarterPack/ShareDialog.tsx:111 +msgid "Share link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:68 +msgid "Share link dialog" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 +msgid "Share post at:// URI" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:115 +#: src/components/StarterPack/ShareDialog.tsx:126 +msgid "Share QR code" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:474 +msgid "Share this feed" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:426 +msgid "Share this starter pack" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:80 +msgid "Share this starter pack and help people join your community on Bluesky." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/screens/StarterPack/StarterPackScreen.tsx:611 +#: src/screens/StarterPack/StarterPackScreen.tsx:619 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:256 +msgid "Share via..." +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:34 +msgid "Share your favorite feed!" +msgstr "" + +#: src/Navigation.tsx:315 +msgid "Shared Preferences Tester" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 +msgid "Show" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 +msgid "Show alt text" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/screens/List/ListHiddenScreen.tsx:190 +#: src/screens/VideoFeed/index.tsx:628 +#: src/screens/VideoFeed/index.tsx:634 +msgid "Show anyway" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:27 +#: src/lib/moderation/useLabelBehaviorDescription.ts:63 +msgid "Show badge" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:61 +msgid "Show badge and filter from feeds" +msgstr "" + +#: src/components/dialogs/Embed.tsx:129 +msgid "Show customization options" +msgstr "" + +#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 +msgid "Show hidden replies" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 +msgid "Show less like this" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:186 +msgid "Show list anyway" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:51 +msgid "Show More" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 +msgid "Show more like this" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "" + +#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 +msgid "Show muted replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 +msgid "Show quote posts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 +msgid "Show replies" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 +msgid "Show replies as" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:285 +msgid "Show replies as threaded" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 +msgid "Show replies by people you follow before all other replies" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 +msgid "Show reply for everyone" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 +msgid "Show reposts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 +msgid "Show samples of your saved feeds in your Following feed" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:58 +msgid "Show warning" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:56 +msgid "Show warning and filter from feeds" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 +msgid "Shows information about when this post was created" +msgstr "" + +#: src/screens/Settings/Settings.tsx:125 +msgid "Shows other accounts you can switch to" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 +msgid "Shows the content" +msgstr "" + +#: src/components/dialogs/Signin.tsx:97 +#: src/components/dialogs/Signin.tsx:99 +#: src/screens/Login/index.tsx:122 +#: src/screens/Login/index.tsx:143 +#: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 +#: src/view/com/auth/SplashScreen.tsx:61 +#: src/view/com/auth/SplashScreen.tsx:69 +#: src/view/com/auth/SplashScreen.web.tsx:123 +#: src/view/com/auth/SplashScreen.web.tsx:131 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 +msgid "Sign in" +msgstr "" + +#: src/components/AccountList.tsx:129 +msgid "Sign in as {0}" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:80 +msgid "Sign in as..." +msgstr "" + +#: src/screens/Deactivated.tsx:203 +#: src/screens/Deactivated.tsx:209 +msgid "Sign in or create an account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:75 +msgid "Sign in or create your account to join the conversation!" +msgstr "" + +#: src/components/AccountList.tsx:68 +msgid "Sign in to account that is not listed" +msgstr "" + +#: src/components/dialogs/Signin.tsx:46 +msgid "Sign in to Bluesky or create a new account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 +#: src/screens/SignupQueued.tsx:93 +#: src/screens/SignupQueued.tsx:96 +#: src/screens/Takendown.tsx:85 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 +msgid "Sign out" +msgstr "" + +#: src/screens/Takendown.tsx:88 +msgid "Sign Out" +msgstr "" + +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 +msgid "Sign out?" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:91 +#: src/lib/moderation/useGlobalLabelStrings.ts:28 +msgid "Sign-in Required" +msgstr "" + +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 +msgid "Signed in as @{0}" +msgstr "" + +#: src/components/FeedInterstitials.tsx:389 +msgid "Similar accounts" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:201 +msgid "Skip" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:228 +msgid "Skip this flow" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:167 +msgid "Smaller" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 +msgid "Snoozes the reminder" +msgstr "" + +#: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:100 +msgid "Software Dev" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:120 +msgid "Some of your verifications are invalid." +msgstr "" + +#: src/components/FeedInterstitials.tsx:529 +msgid "Some other feeds you might like" +msgstr "" + +#: src/components/WhoCanReply.tsx:80 +msgid "Some people can reply" +msgstr "" + +#: src/components/dms/MessageItem.tsx:148 +msgid "Someone reacted {0}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:241 +msgid "Someone reacted {0} to {1}" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:76 +msgid "Something wasn't quite right with the data you're trying to report. Please contact support." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:144 +msgid "Something went wrong" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 +#: src/components/moderation/ReportDialog/index.tsx:223 +#: src/screens/Deactivated.tsx:94 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 +msgid "Something went wrong, please try again" +msgstr "" + +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 +msgid "Something went wrong, please try again." +msgstr "" + +#: src/components/Lists.tsx:175 +msgid "Something went wrong!" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:178 +msgid "Something went wrong. Please try again." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +msgid "Something wrong? Let us know." +msgstr "" + +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 +msgid "Sorry! Your session expired. Please sign in again." +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 +msgid "Sort replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 +msgid "Sort replies by" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 +msgid "Sort replies to the same post by:" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:178 +#: src/components/moderation/ModerationDetailsDialog.tsx:186 +msgid "Source: <0>{sourceName}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:72 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:85 +#: src/lib/moderation/useReportOptions.ts:72 +#: src/lib/moderation/useReportOptions.ts:85 +msgid "Spam" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:55 +#: src/lib/moderation/useReportOptions.ts:55 +msgid "Spam; excessive mentions or replies" +msgstr "" + +#: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:113 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 +msgid "Sports" +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 +msgid "Start a conversation, and it will appear here." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:74 +msgid "Start a new chat" +msgstr "" + +#: src/view/screens/ProfileList.tsx:846 +#: src/view/screens/ProfileList.tsx:967 +msgid "Start adding people" +msgstr "" + +#: src/view/screens/ProfileList.tsx:853 +#: src/view/screens/ProfileList.tsx:974 +msgid "Start adding people!" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:382 +msgid "Start chat with {displayName}" +msgstr "" + +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 +msgid "Starter Pack" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:90 +msgid "Starter pack by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 +msgid "Starter pack by <0/>" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:89 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:731 +msgid "Starter pack is invalid" +msgstr "" + +#: src/screens/Search/Explore.tsx:628 +#: src/view/screens/Profile.tsx:231 +msgid "Starter Packs" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:266 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:100 +#: src/screens/Settings/AboutSettings.tsx:103 +msgid "Status Page" +msgstr "" + +#: src/screens/Signup/index.tsx:163 +msgid "Step {0} of {1}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:393 +msgid "Storage cleared, you need to restart the app now." +msgstr "" + +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 +msgid "Storybook" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 +#: src/components/moderation/LabelsOnMeDialog.tsx:324 +#: src/components/moderation/LabelsOnMeDialog.tsx:325 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 +msgid "Submit" +msgstr "" + +#: src/screens/Takendown.tsx:70 +msgid "Submit appeal" +msgstr "" + +#: src/screens/Takendown.tsx:76 +msgid "Submit Appeal" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 +msgid "Submit report" +msgstr "" + +#: src/view/screens/ProfileList.tsx:741 +msgid "Subscribe" +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:231 +msgid "Subscribe to @{0} to use these labels:" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 +msgid "Subscribe to Labeler" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201 +msgid "Subscribe to this labeler" +msgstr "" + +#: src/view/screens/ProfileList.tsx:737 +msgid "Subscribe to this list" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:286 +msgid "Success!" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:36 +msgid "Successfully verified" +msgstr "" + +#: src/screens/Search/Explore.tsx:357 +msgid "Suggested Accounts" +msgstr "" + +#: src/components/FeedInterstitials.tsx:391 +msgid "Suggested for you" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:144 +#: src/view/com/composer/labels/LabelsBtn.tsx:147 +msgid "Suggestive" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 +msgctxt "Name of app icon variant" +msgid "Sunrise" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 +msgctxt "Name of app icon variant" +msgid "Sunset" +msgstr "" + +#: src/Navigation.tsx:325 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 +msgid "Support" +msgstr "" + +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 +msgid "Switch account" +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 +msgid "Switch Account" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:109 +msgid "Switch accounts" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:293 +msgid "Switch to {0}" +msgstr "" + +#: src/components/dialogs/Embed.tsx:157 +#: src/components/dialogs/Embed.tsx:159 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 +msgid "System" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:107 +#: src/screens/Settings/AboutSettings.tsx:110 +#: src/screens/Settings/Settings.tsx:441 +msgid "System log" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:282 +msgid "Tags only" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:54 +#: src/components/ContextMenu/Backdrop.ios.tsx:80 +#: src/components/ContextMenu/Backdrop.tsx:46 +msgid "Tap to close context menu" +msgstr "" + +#: src/components/ProgressGuide/Toast.tsx:156 +msgid "Tap to dismiss" +msgstr "" + +#: src/state/shell/progress-guide.tsx:233 +msgid "Task complete - 10 follows!" +msgstr "" + +#: src/state/shell/progress-guide.tsx:223 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:64 +msgid "Teach our algorithm what you like" +msgstr "" + +#: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:114 +msgid "Tech" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:35 +msgid "Tell a joke!" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:377 +msgid "Tell us a bit about yourself" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:69 +msgid "Tell us a little more" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:116 +#: src/view/shell/desktop/RightNav.tsx:117 +msgid "Terms" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 +#: src/screens/Settings/AboutSettings.tsx:84 +#: src/screens/Settings/AboutSettings.tsx:87 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 +msgid "Terms of Service" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:60 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:99 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:107 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 +#: src/lib/moderation/useReportOptions.ts:60 +#: src/lib/moderation/useReportOptions.ts:99 +#: src/lib/moderation/useReportOptions.ts:107 +#: src/lib/moderation/useReportOptions.ts:115 +msgid "Terms used violate community standards" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:266 +msgid "Text & tags" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:229 +msgid "Text field" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:288 +#: src/screens/Messages/components/ChatDisabled.tsx:108 +msgid "Text input field" +msgstr "" + +#: src/view/com/posts/ShowLessFollowup.tsx:39 +msgid "Thank you for your feedback! It has been sent to the feed operator." +msgstr "" + +#: src/components/ReportDialog/SubmitView.tsx:83 +msgid "Thank you. Your report has been sent." +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:487 +msgid "That contains the following:" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:110 +#: src/screens/StarterPack/StarterPackScreen.tsx:111 +#: src/screens/StarterPack/StarterPackScreen.tsx:155 +#: src/screens/StarterPack/StarterPackScreen.tsx:156 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 +msgid "That starter pack could not be found." +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:132 +msgid "That's all, folks!" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1114 +msgid "That's everything!" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 +#: src/view/com/profile/ProfileMenu.tsx:461 +msgid "The account will be able to interact with you after unblocking." +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:41 +#: src/screens/Settings/AppIconSettings/index.tsx:222 +msgid "The app will be restarted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:119 +#: src/lib/moderation/useModerationCauseDescription.ts:128 +msgid "The author of this thread has hidden this reply." +msgstr "" + +#: src/screens/Moderation/index.tsx:407 +msgid "The Bluesky web application" +msgstr "" + +#: src/view/screens/CommunityGuidelines.tsx:38 +msgid "The Community Guidelines have been moved to <0/>" +msgstr "" + +#: src/view/screens/CopyrightPolicy.tsx:35 +msgid "The Copyright Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:102 +msgid "The Discover feed" +msgstr "" + +#: src/state/shell/progress-guide.tsx:224 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 +msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:67 +msgid "The feed has been replaced with Discover." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:59 +msgid "The following labels were applied to your account." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:60 +msgid "The following labels were applied to your content." +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:42 +msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 +msgid "The post may have been deleted." +msgstr "" + +#: src/view/screens/PrivacyPolicy.tsx:35 +msgid "The Privacy Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:40 +#: src/lib/strings/errors.ts:18 +msgid "The server appears to be experiencing issues. Please try again in a few moments." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:741 +msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." +msgstr "" + +#: src/components/ContextMenu/index.tsx:433 +msgid "The subject of the context menu" +msgstr "" + +#: src/view/screens/Support.tsx:37 +msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." +msgstr "" + +#: src/view/screens/TermsOfService.tsx:35 +msgid "The Terms of Service have been moved to" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 +msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:154 +msgid "Theme" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 +msgid "There is no time limit for account deactivation, come back any time." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:227 +msgid "There was an issue connecting to Tenor." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/view/screens/ProfileList.tsx:375 +#: src/view/screens/ProfileList.tsx:394 +#: src/view/screens/SavedFeeds.tsx:93 +msgid "There was an issue contacting the server" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:418 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:130 +msgid "There was an issue fetching notifications. Tap here to try again." +msgstr "" + +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 +msgid "There was an issue fetching posts. Tap here to try again." +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:151 +msgid "There was an issue fetching the list. Tap here to try again." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:60 +msgid "There was an issue fetching your app passwords" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:151 +#: src/view/com/lists/ProfileLists.tsx:150 +msgid "There was an issue fetching your lists. Tap here to try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:107 +msgid "There was an issue fetching your service info" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:259 +#: src/components/ReportDialog/SubmitView.tsx:88 +msgid "There was an issue sending your report. Please check your internet connection." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101 +#: src/view/com/profile/ProfileMenu.tsx:128 +#: src/view/com/profile/ProfileMenu.tsx:138 +#: src/view/com/profile/ProfileMenu.tsx:152 +#: src/view/com/profile/ProfileMenu.tsx:162 +#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/view/com/profile/ProfileMenu.tsx:187 +msgid "There was an issue! {0}" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 +#: src/screens/List/ListHiddenScreen.tsx:63 +#: src/screens/List/ListHiddenScreen.tsx:77 +#: src/screens/List/ListHiddenScreen.tsx:99 +#: src/view/screens/ProfileList.tsx:411 +#: src/view/screens/ProfileList.tsx:429 +#: src/view/screens/ProfileList.tsx:447 +#: src/view/screens/ProfileList.tsx:465 +msgid "There was an issue. Please check your internet connection and try again." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 +msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" +msgstr "" + +#: src/screens/SignupQueued.tsx:130 +msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 +msgid "These settings only apply to the Following feed." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:111 +msgid "This {screenDescription} has been flagged:" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:87 +msgid "This account has a checkmark because it's been verified by trusted sources." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:92 +msgid "This account has one or more attempted verifications, but it is not currently verified." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:106 +msgid "This account has requested that users sign in to view their profile." +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:34 +msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:55 +msgid "This action can be undone at any time." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:271 +msgid "This appeal will be sent to <0>{sourceName}." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:104 +msgid "This appeal will be sent to Bluesky's moderation service." +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:18 +msgid "This chat was disconnected" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:19 +msgid "This content has been hidden by the moderators." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:24 +msgid "This content has received a general warning from moderators." +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:63 +msgid "This content is hosted by {0}. Do you want to enable external media?" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:84 +#: src/lib/moderation/useModerationCauseDescription.ts:84 +msgid "This content is not available because one of the users involved has blocked the other." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 +msgid "This content is not viewable without a Bluesky account." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:362 +msgid "This conversation is with a deleted or a deactivated account. Press for options" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:156 +msgid "This email is already associated with your account." +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:96 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:49 +msgid "This feature is not available while using an app password. Please sign in with your main password." +msgstr "" + +#: src/lib/strings/errors.ts:21 +msgid "This feature is not available while using an App Password. Please sign in with your main password." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 +msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:38 +msgid "This feed is empty! You may need to follow more users or tune your language settings." +msgstr "" + +#: src/components/StarterPack/Main/PostsList.tsx:36 +#: src/screens/Profile/ProfileFeed/index.tsx:192 +#: src/view/screens/ProfileList.tsx:843 +msgid "This feed is empty." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:99 +msgid "This feed is no longer online. We are showing <0>Discover instead." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:593 +msgid "This handle is reserved. Please try a different one." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:41 +msgid "This information is not shared with other users." +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:189 +#: src/components/live/GoLiveDialog.tsx:160 +msgid "This is not a valid link" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:168 +msgid "This label was applied by the author." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:165 +msgid "This label was applied by you." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:218 +msgid "This labeler hasn't declared what labels it publishes, and may not be active." +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:79 +msgid "This link is taking you to the following website:" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:151 +msgid "This list – created by <0>{0} – contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:146 +msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/view/screens/ProfileList.tsx:962 +msgid "This list is empty." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:40 +msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 +msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." +msgstr "" + +#: src/components/WhoCanReply.tsx:240 +msgid "This post has an unknown type of threadgate on it. Your app may be out of date." +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:171 +msgid "This post has been deleted." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 +msgid "This post will be hidden from feeds and threads. This cannot be undone." +msgstr "" + +#: src/view/com/composer/Composer.tsx:463 +msgid "This post's author has disabled quote posts." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:482 +msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 +msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:66 +msgid "This service has not provided terms of service or a privacy policy." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:456 +msgid "This should create a domain record at:" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:93 +msgid "This user does not have a display name, and therefore cannot be verified." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:95 +msgid "This user doesn't have any followers." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:68 +msgid "This user has blocked you" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:79 +#: src/lib/moderation/useModerationCauseDescription.ts:75 +msgid "This user has blocked you. You cannot view their content." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:30 +msgid "This user has requested that their content only be shown to signed-in users." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:59 +msgid "This user is included in the <0>{0} list which you have blocked." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:91 +msgid "This user is included in the <0>{0} list which you have muted." +msgstr "" + +#: src/components/NewskieDialog.tsx:65 +msgid "This user is new here. Press for more info about when they joined." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:95 +msgid "This user isn't following anyone." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:435 +msgid "This will delete \"{0}\" from your muted words. You can always add it back later." +msgstr "" + +#: src/screens/Settings/Settings.tsx:656 +msgid "This will remove @{0} from the quick access list." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 +msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 +msgid "Thread options" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:68 +#: src/screens/Settings/ContentAndMediaSettings.tsx:71 +msgid "Thread preferences" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 +msgid "Thread Preferences" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 +msgid "Threaded" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:276 +msgid "Threaded mode" +msgstr "" + +#: src/Navigation.tsx:368 +msgid "Threads Preferences" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 +msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:99 +msgid "To disable the email 2FA method, please verify your access to the email address." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215 +msgid "To disable your email 2FA method, please verify your access to <0>{0}" +msgstr "" + +#: src/components/dms/ReportConversationPrompt.tsx:19 +msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." +msgstr "" + +#: src/components/ReportDialog/SelectLabelerView.tsx:31 +msgid "To whom would you like to send this report?" +msgstr "" + +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:263 +msgid "Toggle dropdown" +msgstr "" + +#: src/screens/Moderation/index.tsx:384 +msgid "Toggle to enable or disable adult content" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 +msgid "Toggles the sound" +msgstr "" + +#: src/screens/Hashtag.tsx:84 +#: src/screens/Search/SearchResults.tsx:47 +#: src/screens/Topic.tsx:71 +msgid "Top" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:543 +msgid "Topic" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 +msgid "Translate" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "" + +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 +msgid "Trending" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending Videos" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138 +msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." +msgstr "" + +#: src/view/com/util/error/ErrorScreen.tsx:103 +msgctxt "action" +msgid "Try again" +msgstr "" + +#: src/screens/Onboarding/state.ts:115 +msgid "TV" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 +msgid "Two-factor authentication (2FA)" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:153 +msgid "Type your message here" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:432 +msgid "Type:" +msgstr "" + +#: src/lib/hooks/useCleanError.ts:27 +#: src/lib/strings/errors.ts:11 +msgid "Unable to connect. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:79 +#: src/screens/Login/LoginForm.tsx:169 +#: src/screens/Login/SetNewPasswordForm.tsx:81 +#: src/screens/Signup/index.tsx:76 +#: src/view/com/modals/ChangePassword.tsx:71 +#: src/view/com/modals/ChangePassword.tsx:117 +msgid "Unable to contact your service. Please check your Internet connection." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:673 +msgid "Unable to delete" +msgstr "" + +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:97 +#: src/components/dms/MessagesListBlockedFooter.tsx:104 +#: src/components/dms/MessagesListBlockedFooter.tsx:112 +#: src/components/dms/MessagesListBlockedFooter.tsx:119 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:473 +#: src/view/screens/ProfileList.tsx:723 +msgid "Unblock" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +msgctxt "action" +msgid "Unblock" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:247 +#: src/components/dms/ConvoMenu.tsx:250 +#: src/view/com/profile/ProfileMenu.tsx:383 +#: src/view/com/profile/ProfileMenu.tsx:389 +msgid "Unblock account" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 +#: src/view/com/profile/ProfileMenu.tsx:455 +msgid "Unblock Account?" +msgstr "" + +#: src/view/screens/ProfileList.tsx:620 +msgid "Unblock list" +msgstr "" + +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 +msgid "Undo repost" +msgstr "" + +#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun +#: src/components/PostControls/RepostButton.tsx:66 +msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#: src/view/com/profile/FollowButton.tsx:63 +msgctxt "action" +msgid "Unfollow" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +msgid "Unfollow {0}" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:283 +#: src/view/com/profile/ProfileMenu.tsx:293 +msgid "Unfollow account" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:831 +msgid "Unfollows the user" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:372 +msgid "Unfortunately, none of your subscribed labelers supports this report type." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:206 +msgid "Unknown verifier" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:518 +msgid "Unlike" +msgstr "" + +#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun +#: src/components/PostControls/index.tsx:243 +msgid "Unlike ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +msgctxt "video" +msgid "Unmute" +msgstr "" + +#: src/view/screens/ProfileList.tsx:730 +msgid "Unmute" +msgstr "" + +#: src/components/RichTextTag.tsx:140 +#: src/components/RichTextTag.tsx:153 +msgid "Unmute {tag}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 +#: src/view/com/profile/ProfileMenu.tsx:362 +#: src/view/com/profile/ProfileMenu.tsx:368 +msgid "Unmute account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:236 +msgid "Unmute conversation" +msgstr "" + +#: src/view/screens/ProfileList.tsx:605 +msgid "Unmute list" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 +msgid "Unmute thread" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 +msgid "Unmute video" +msgstr "" + +#: src/view/screens/ProfileList.tsx:714 +msgid "Unpin" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:530 +msgid "Unpin feed" +msgstr "" + +#: src/components/FeedCard.tsx:320 +msgid "Unpin Feed" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:310 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +msgid "Unpin from home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 +msgid "Unpin from profile" +msgstr "" + +#: src/view/screens/ProfileList.tsx:585 +msgid "Unpin moderation list" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:163 +msgid "Unpinned {0} from Home" +msgstr "" + +#: src/view/screens/ProfileList.tsx:362 +msgid "Unpinned from your feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 +msgid "Unsnooze email reminder" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233 +msgid "Unsubscribe" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:198 +#: src/screens/List/ListHiddenScreen.tsx:208 +msgid "Unsubscribe from list" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200 +msgid "Unsubscribe from this labeler" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:86 +msgid "Unsubscribed from list" +msgstr "" + +#: src/view/com/composer/Composer.tsx:814 +msgid "Unsupported video type" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:48 +msgid "Unsupported video type: {0}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:77 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:90 +#: src/lib/moderation/useReportOptions.ts:77 +#: src/lib/moderation/useReportOptions.ts:90 +msgid "Unwanted Sexual Content" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:58 +#: src/screens/Settings/components/OTAInfo.tsx:74 +msgid "Update" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:312 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 +msgid "Update email" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:526 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:547 +msgid "Update to {domain}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:203 +msgid "Update your email" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +msgctxt "toast" +msgid "Updating quote attachment failed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 +msgctxt "toast" +msgid "Updating reply visibility failed" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:194 +msgid "Updating..." +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:288 +msgid "Upload a photo instead" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:472 +msgid "Upload a text file to:" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 +#: src/view/com/util/UserBanner.tsx:157 +#: src/view/com/util/UserBanner.tsx:160 +msgid "Upload from Camera" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:486 +#: src/view/com/util/UserBanner.tsx:174 +msgid "Upload from Files" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 +#: src/view/com/util/UserBanner.tsx:168 +#: src/view/com/util/UserBanner.tsx:172 +msgid "Upload from Library" +msgstr "" + +#: src/lib/api/index.ts:302 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1737 +msgid "Uploading video..." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:67 +msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:558 +msgid "Use default provider" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:77 +#: src/components/dialogs/InAppBrowserConsent.tsx:83 +msgid "Use in-app browser" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:102 +#: src/screens/Settings/ContentAndMediaSettings.tsx:108 +msgid "Use in-app browser to open links" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:87 +#: src/components/dialogs/InAppBrowserConsent.tsx:93 +msgid "Use my default browser" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:53 +msgid "Use recommended" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:190 +msgid "Use this to sign in to the other app along with your handle." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:201 +msgid "Used by:" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:324 +msgctxt "toast" +msgid "User blocked" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:71 +#: src/lib/moderation/useModerationCauseDescription.ts:63 +msgid "User Blocked" +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:55 +msgid "User Blocked by \"{0}\"" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:27 +msgid "User blocked by list" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:57 +msgid "User Blocked by List" +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:73 +msgid "User Blocking You" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:77 +msgid "User Blocks You" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:214 +msgid "User list by {0}" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +msgid "User list by you" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:174 +msgctxt "toast" +msgid "User list created" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:160 +msgctxt "toast" +msgid "User list updated" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:201 +msgid "Username or email address" +msgstr "" + +#: src/components/WhoCanReply.tsx:303 +msgid "users followed by <0>@{0}" +msgstr "" + +#: src/components/WhoCanReply.tsx:290 +msgid "users following <0>@{0}" +msgstr "" + +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 +msgid "Users I follow" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 +msgid "Users in \"{0}\"" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 +msgid "Users you follow" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:438 +msgid "Value:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:39 +msgid "Verification failed, please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:297 +msgid "Verification settings" +msgstr "" + +#: src/Navigation.tsx:205 +#: src/screens/Moderation/VerificationSettings.tsx:32 +msgid "Verification Settings" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:41 +msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:103 +msgid "Verified by:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:84 +#: src/components/verification/VerificationCreatePrompt.tsx:86 +#: src/view/com/profile/ProfileMenu.tsx:346 +#: src/view/com/profile/ProfileMenu.tsx:349 +msgid "Verify account" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" +msgid "Verify code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:528 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:549 +msgid "Verify DNS Record" +msgstr "" + +#. Dialog title when a user is verifying their email address by entering a code they have been sent +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 +msgid "Verify email code" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 +msgid "Verify email dialog" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:529 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:551 +msgid "Verify Text File" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:51 +msgid "Verify this account?" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 +msgid "Verify your email" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:126 +#: src/screens/Settings/AboutSettings.tsx:155 +msgid "Version {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 +msgid "Video" +msgstr "" + +#: src/view/com/composer/state/video.ts:358 +msgid "Video failed to process" +msgstr "" + +#: src/Navigation.tsx:599 +msgid "Video Feed" +msgstr "" + +#: src/components/VideoPostCard.tsx:122 +msgid "Video from {0}: {text}" +msgstr "" + +#: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:103 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237 +msgid "Video Games" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1072 +msgid "Video is paused" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1072 +msgid "Video is playing" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 +msgid "Video not found." +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:98 +msgid "Video settings" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1747 +msgid "Video uploaded" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +msgid "Video: {0}" +msgstr "" + +#: src/view/screens/Profile.tsx:228 +msgid "Videos" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:42 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:55 +msgid "Videos must be less than 3 minutes long" +msgstr "" + +#: src/screens/Profile/Header/Shell.tsx:211 +msgid "View {0}'s avatar" +msgstr "" + +#: src/components/ProfileCard.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Search/components/SearchProfileCard.tsx:36 +#: src/screens/VideoFeed/index.tsx:790 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 +msgid "View {0}'s profile" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:181 +msgid "View {displayName}'s profile" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:480 +msgid "View blocked user's profile" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:100 +msgid "View blogpost for more details" +msgstr "" + +#: src/view/screens/Log.tsx:57 +msgid "View debug entry" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:137 +#: src/screens/VideoFeed/index.tsx:656 +#: src/screens/VideoFeed/index.tsx:674 +msgid "View details" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:132 +msgid "View details for reporting a copyright violation" +msgstr "" + +#: src/view/com/posts/ViewFullThread.tsx:59 +msgid "View full thread" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:46 +msgid "View information about these labels" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 +msgid "View more" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 +#: src/view/com/util/PostMeta.tsx:91 +#: src/view/com/util/PostMeta.tsx:128 +msgid "View profile" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 +msgid "View the avatar" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:164 +msgid "View the labeling service provided by @{0}" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:99 +msgid "View this user's verifications" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:489 +msgid "View users who like this feed" +msgstr "" + +#: src/components/VideoPostCard.tsx:399 +msgid "View video" +msgstr "" + +#: src/screens/Moderation/index.tsx:277 +msgid "View your blocked accounts" +msgstr "" + +#: src/screens/Moderation/index.tsx:217 +msgid "View your default post interaction settings" +msgstr "" + +#: src/view/com/home/HomeHeaderLayout.web.tsx:56 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 +msgid "View your feeds and explore more" +msgstr "" + +#: src/screens/Moderation/index.tsx:247 +msgid "View your moderation lists" +msgstr "" + +#: src/screens/Moderation/index.tsx:262 +msgid "View your muted accounts" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:98 +msgid "View your verifications" +msgstr "" + +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 +msgid "Views full image" +msgstr "" + +#: src/components/VideoPostCard.tsx:121 +msgid "Views video in immersive mode" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "" + +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 +msgid "Volume" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:142 +#: src/lib/moderation/useLabelBehaviorDescription.ts:17 +#: src/lib/moderation/useLabelBehaviorDescription.ts:22 +msgid "Warn" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:48 +msgid "Warn content" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:46 +msgid "Warn content and filter from feeds" +msgstr "" + +#: src/components/live/LiveStatusDialog.tsx:156 +#: src/components/live/LiveStatusDialog.tsx:169 +msgid "Watch now" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "" + +#: src/screens/Hashtag.tsx:205 +msgid "We couldn't find any results for that hashtag." +msgstr "" + +#: src/screens/Topic.tsx:178 +msgid "We couldn't find any results for that topic." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:145 +msgid "We couldn't load this conversation" +msgstr "" + +#: src/screens/SignupQueued.tsx:160 +msgid "We estimate {estimatedTime} until your account is ready." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 +msgid "We have sent another verification email to <0>{0}." +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:256 +msgid "We hope you have a wonderful time. Remember, Bluesky is:" +msgstr "" + +#: src/view/com/posts/DiscoverFallbackHeader.tsx:29 +msgid "We ran out of posts from your follows. Here's the latest from <0/>." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:154 +msgid "We recommend selecting at least two interests." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 +msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/view/com/composer/state/video.ts:419 +msgid "We were unable to determine if you are allowed to upload videos. Please try again." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:52 +msgid "We were unable to load your birth date preferences. Please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:464 +msgid "We were unable to load your configured labelers at this time." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:129 +msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." +msgstr "" + +#: src/screens/SignupQueued.tsx:164 +msgid "We will let you know when your account is ready." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 +msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:134 +msgid "We'll use this to help customize your experience." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:107 +#: src/components/ProgressGuide/FollowDialog.tsx:172 +msgid "We're having network issues, try again" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 +msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." +msgstr "" + +#: src/screens/Signup/index.tsx:123 +msgid "We're so excited to have you join us!" +msgstr "" + +#: src/view/screens/ProfileList.tsx:117 +msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:378 +msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:285 +msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." +msgstr "" + +#: src/view/com/composer/Composer.tsx:460 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + +#: src/components/Lists.tsx:195 +#: src/view/screens/NotFound.tsx:50 +msgid "We're sorry! We can't find the page you were looking for." +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343 +msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + +#: src/screens/Deactivated.tsx:125 +msgid "Welcome back!" +msgstr "" + +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:126 +msgid "What are your interests?" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:41 +msgid "What do you want to call your starter pack?" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:38 +#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/composer/Composer.tsx:777 +msgid "What's up?" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146 +msgid "When you tap on a check, you’ll see which organizations have granted verification." +msgstr "" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80 +msgid "Which languages are used in this post?" +msgstr "" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:79 +msgid "Which languages would you like to see in your algorithmic feeds?" +msgstr "" + +#: src/components/WhoCanReply.tsx:192 +msgid "Who can interact with this post?" +msgstr "" + +#: src/components/WhoCanReply.tsx:97 +msgid "Who can reply" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127 +msgid "Who can verify?" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:79 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 +msgid "Whoops!" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:125 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 +msgid "Whoops! Trending videos failed to load." +msgstr "" + +#: src/screens/Takendown.tsx:173 +msgid "Why are you appealing?" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:42 +msgid "Why should this content be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:32 +#: src/components/ReportDialog/SelectReportOptionView.tsx:55 +msgid "Why should this feed be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:26 +#: src/components/ReportDialog/SelectReportOptionView.tsx:52 +msgid "Why should this list be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:44 +#: src/components/ReportDialog/SelectReportOptionView.tsx:61 +msgid "Why should this message be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:20 +#: src/components/ReportDialog/SelectReportOptionView.tsx:49 +msgid "Why should this post be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:38 +#: src/components/ReportDialog/SelectReportOptionView.tsx:58 +msgid "Why should this starter pack be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:14 +#: src/components/ReportDialog/SelectReportOptionView.tsx:46 +msgid "Why should this user be reviewed?" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:154 +#: src/screens/Messages/components/MessageInput.web.tsx:214 +msgid "Write a message" +msgstr "" + +#: src/view/com/composer/Composer.tsx:872 +msgid "Write post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 +msgid "Write your reply" +msgstr "" + +#: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:116 +msgid "Writers" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:356 +msgid "Wrong DID returned from server. Received: {0}" +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:153 +#: src/components/live/GoLiveDialog.tsx:129 +msgid "www.mylivestream.tv" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87 +msgid "Yes" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 +msgid "Yes, deactivate" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:685 +msgid "Yes, delete this starter pack" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 +msgid "Yes, detach" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 +msgid "Yes, hide" +msgstr "" + +#: src/screens/Deactivated.tsx:147 +msgid "Yes, reactivate my account" +msgstr "" + +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "" + +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:59 +msgid "You are a trusted verifier" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:45 +msgid "You are creating an account on" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + +#: src/screens/SignupQueued.tsx:157 +msgid "You are in line." +msgstr "" + +#: src/components/live/EditLiveDialog.tsx:119 +#: src/components/live/EditLiveDialog.tsx:124 +msgid "You are Live" +msgstr "" + +#: src/components/live/queries.ts:211 +msgid "You are no longer live" +msgstr "" + +#: src/components/live/queries.ts:35 +msgid "You are not allowed to go live" +msgstr "" + +#: src/view/com/composer/state/video.ts:412 +msgid "You are not allowed to upload videos." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:94 +msgid "You are not following anyone." +msgstr "" + +#: src/components/live/queries.ts:156 +msgid "You are now live!" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:64 +msgid "You are verified" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:355 +msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:208 +msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:45 +msgid "You can adjust your interests at any time from \"Content and media\" settings." +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 +msgid "You can also discover new Custom Feeds to follow." +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:198 +msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 +msgid "You can continue ongoing conversations regardless of which setting you choose." +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + +#: src/screens/Login/index.tsx:182 +#: src/screens/Login/PasswordUpdatedForm.tsx:26 +msgid "You can now sign in with your new password." +msgstr "" + +#: src/screens/Deactivated.tsx:133 +msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 +msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." +msgstr "" + +#: src/components/interstitials/Trending.tsx:130 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 +msgid "You can update this later from your settings." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:94 +msgid "You do not have any followers." +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:109 +msgid "You don't follow any users who follow @{name}." +msgstr "" + +#: src/screens/Messages/Inbox.tsx:241 +msgid "You don't have any chat requests at the moment." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:67 +msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:145 +msgid "You don't have any pinned feeds." +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:185 +msgid "You don't have any saved feeds." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:273 +msgid "You have blocked the author or you have been blocked by the author." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:66 +msgid "You have blocked this user" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:73 +#: src/lib/moderation/useModerationCauseDescription.ts:57 +#: src/lib/moderation/useModerationCauseDescription.ts:65 +msgid "You have blocked this user. You cannot view their content." +msgstr "" + +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:49 +#: src/screens/Login/SetNewPasswordForm.tsx:95 +#: src/view/com/modals/ChangePassword.tsx:87 +#: src/view/com/modals/ChangePassword.tsx:133 +msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:116 +msgid "You have hidden this post" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:111 +msgid "You have hidden this post." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:104 +#: src/lib/moderation/useModerationCauseDescription.ts:99 +msgid "You have muted this account." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:93 +msgid "You have muted this user" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:301 +msgid "You have no conversations yet. Start one!" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:139 +msgid "You have no feeds." +msgstr "" + +#: src/view/com/lists/MyLists.tsx:81 +#: src/view/com/lists/ProfileLists.tsx:135 +msgid "You have no lists." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:164 +msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:179 +msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." +msgstr "" + +#: src/components/Lists.tsx:58 +msgid "You have reached the end" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187 +msgid "You have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/lib/media/video/upload.shared.ts:56 +msgid "You have temporarily reached the limit for video uploads. Please try again later." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:263 +msgid "You haven't created a starter pack yet!" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:398 +msgid "You haven't muted any words or tags yet" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:118 +#: src/lib/moderation/useModerationCauseDescription.ts:127 +msgid "You hid this reply." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:79 +msgid "You may appeal non-self labels if you feel they were placed in error." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:84 +msgid "You may appeal these labels if you feel they were placed in error." +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:76 +msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}" +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:95 +msgid "You may only add up to 3 feeds" +msgstr "" + +#: src/lib/media/picker.shared.ts:25 +msgid "You may only select up to 4 images" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:136 +msgid "You must be 13 years of age or older to create an account." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:334 +msgid "You must be following at least seven other people to generate a starter pack." +msgstr "" + +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:61 +msgid "You must grant access to your photo library to save a QR code" +msgstr "" + +#: src/components/ReportDialog/SubmitView.tsx:211 +msgid "You must select at least one labeler for a report" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 +msgid "You need to verify your email address before you can enable email 2FA." +msgstr "" + +#: src/screens/Deactivated.tsx:128 +msgid "You previously deactivated @{0}." +msgstr "" + +#: src/screens/Settings/Settings.tsx:404 +msgid "You probably want to restart the app now." +msgstr "" + +#: src/components/dms/MessageItem.tsx:135 +msgid "You reacted {0}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:218 +msgid "You reacted {0} to {1}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 +msgid "You will be signed out of all your accounts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 +msgid "You will no longer receive notifications for this thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 +msgid "You will now receive notifications for this thread" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:108 +msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:154 +msgid "You: {0}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:183 +msgid "You: {defaultEmbeddedContentMessage}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:176 +msgid "You: {short}" +msgstr "" + +#: src/screens/Signup/index.tsx:139 +msgid "You'll follow the suggested users and feeds once you finish creating your account!" +msgstr "" + +#: src/screens/Signup/index.tsx:144 +msgid "You'll follow the suggested users once you finish creating your account!" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:236 +msgid "You'll follow these people and {0} others" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 +msgid "You'll follow these people right away" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 +msgid "You'll stay updated with these feeds" +msgstr "" + +#: src/screens/SignupQueued.tsx:127 +msgid "You're in line" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:253 +msgid "You're ready to go!" +msgstr "" + +#: src/screens/Deactivated.tsx:89 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 +msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:108 +#: src/lib/moderation/useModerationCauseDescription.ts:108 +msgid "You've chosen to hide a word or tag within this post." +msgstr "" + +#: src/state/shell/progress-guide.tsx:234 +msgid "You've found some people to follow" +msgstr "" + +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 +msgid "You've reached the end of your feed! Find some more accounts to follow." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:58 +msgid "You've reached the maximum number of requests allowed. Please try again later." +msgstr "" + +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 +msgid "You've reached your daily limit for video uploads (too many bytes)" +msgstr "" + +#: src/view/com/composer/state/video.ts:427 +msgid "You've reached your daily limit for video uploads (too many videos)" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1123 +msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" +msgstr "" + +#: src/screens/Signup/index.tsx:173 +msgid "Your account" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:84 +msgid "Your account has been deleted" +msgstr "" + +#: src/screens/Takendown.tsx:146 +msgid "Your account has been suspended" +msgstr "" + +#: src/view/com/composer/state/video.ts:431 +msgid "Your account is not yet old enough to upload videos. Please try again later." +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:67 +msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." +msgstr "" + +#: src/screens/Takendown.tsx:214 +msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error." +msgstr "" + +#: src/screens/Takendown.tsx:154 +msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:261 +msgid "Your birth date" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 +msgid "Your browser does not support the video format. Please try a different browser." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:25 +msgid "Your chats have been disabled" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:69 +msgid "Your choice will be remembered for future links. You can change it at any time in settings." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:513 +msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:51 +#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/StepInfo/index.tsx:101 +#: src/view/com/modals/ChangePassword.tsx:55 +msgid "Your email appears to be invalid." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65 +msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." +msgstr "" + +#: src/state/shell/progress-guide.tsx:213 +msgid "Your first like!" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 +msgid "Your followers" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:43 +msgid "Your following feed is empty! Follow more users to see what's happening." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:240 +msgid "Your full handle will be <0>@{0}" +msgstr "" + +#: src/Navigation.tsx:515 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:67 +#: src/screens/Settings/ContentAndMediaSettings.tsx:92 +#: src/screens/Settings/ContentAndMediaSettings.tsx:95 +#: src/screens/Settings/InterestsSettings.tsx:42 +msgid "Your interests" +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:123 +msgctxt "toast" +msgid "Your interests have been updated!" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:94 +msgid "Your interests help us find what you like!" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:369 +msgid "Your muted words" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:169 +msgid "Your password has been changed successfully!" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:130 +msgid "Your password must be at least 8 characters long." +msgstr "" + +#: src/view/com/composer/Composer.tsx:522 +msgid "Your post has been published" +msgstr "" + +#: src/view/com/composer/Composer.tsx:519 +msgid "Your posts have been published" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:268 +msgid "Your posts, likes, and blocks are public. Mutes are private." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 +msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "" + +#: src/view/com/composer/Composer.tsx:521 +msgid "Your reply has been published" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:394 +msgid "Your report will be sent to <0>{0}." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:200 +msgid "Your report will be sent to the Bluesky Moderation Service" +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:56 +msgid "Your selected interests help us serve you content you care about." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:65 +msgid "Your verifications" +msgstr "" + diff --git a/src/locale/locales/ne/messages.po b/src/locale/locales/ne/messages.po index a9fa619af8..e5a30ce177 100644 --- a/src/locale/locales/ne/messages.po +++ b/src/locale/locales/ne/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ne\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: Nepali\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,7 +27,7 @@ msgstr "" msgid "(contains embedded content)" msgstr "सामग्री समावेश गरिएको छ" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "इमेल छैन" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# पुन: पोष्ट} other {# पुन: प msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# सेकेन्ड} other {# सेकेन्डहरू}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -90,17 +90,18 @@ msgstr "" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {अनुगामी} other {अनुगामीहरू}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {अनुगमन गरिरहेको} other {अनुगमन गरिरहेका}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {मन पराइएको} other {मन पराइएका}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {मन पराइएको} other {मन परा msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {पोष्ट} other {पोष्टहरू}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {उद्धरण} other {उद्धरणहरू}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {पुन: पोष्ट} other {पुन: पोष्टहरू}}" @@ -135,6 +138,10 @@ msgstr "{0} <0>ट्यागहरूमा <1>भित्र" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>पाठ र ट्यागहरूमा <1>भित्र" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "" @@ -143,11 +150,15 @@ msgstr "" msgid "{0} is not a valid URL" msgstr "" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} यस हप्ता सामेल भए" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} को {1}" @@ -164,8 +175,16 @@ msgstr "" msgid "{0} reacted {1} to {2}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "{0} को अवतार" @@ -197,12 +216,12 @@ msgstr "{0}मि" msgid "{0}s" msgstr "{0}से" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "{displayName} को स्टार्टर प्याक" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {घण्टा} other {घण्टा msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {मिनेट} other {मिनेटहरू}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} र <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंलाई अनुसरण गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} र <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंको कस्टम फिडलाई मन पराए" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} र <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंको पोस्टलाई मन पराए" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} र <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंको पोस्टलाई पुन: पोस्ट गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} र <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंको स्टार्टर प्याकबाट साइन अप गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} ले तपाईंलाई अनुसरण गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} ले तपाईंलाई पुनः अनुसरण गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} ले तपाईंको कस्टम फिडलाई मन पराए" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} ले तपाईंको पोस्टलाई मन पराए" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} ले तपाईंको पोस्टलाई पुन: पोस्ट गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} ले तपाईंको स्टार्टर प्याकबाट साइन अप गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} र {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंलाई अनुसरण गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} र {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंको कस्टम फिडलाई मन पराए" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} र {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंको पोस्टलाई मन पराए" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} र {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंको पोस्टलाई पुन: पोस्ट गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} र {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंको स्टार्टर प्याकबाट साइन अप गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} ले तपाईंलाई पछ्याए" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} ले तपाईंलाई फिर्ता पछ्याए" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} ले तपाईंको कस्टम फिडलाई मन पराए" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} ले तपाईंको पोस्टलाई मन पराए" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} ले तपाईंको पोस्टलाई पुन: पोस्ट गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} ले तपाईंको स्टार्टर प्याकबाट साइन अप गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} पछ्याउँदै छन्" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "{handle} लाई सन्देश पठाउन सकिदैन" @@ -392,7 +410,7 @@ msgstr "" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -432,12 +450,12 @@ msgstr "" msgid "+{computedTotal}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, र {2, plural, one {# other} other {# others}} तपाईंको स्टार्टर प्याकमा समावेश छन्" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, र {2, plural, one {# other} other {# others}} तपाईंको स्टार्टर प्याकमा समावेश छन्" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {अनुगामी} other {अनुग msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {पछ्याउँदै छन्} other {पछ्याउँदै छन्}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} र<1> <2>{1} तपाईंको स्टार्टर प्याकमा समावेश छन्" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} तपाईंको स्टार्टर प्याकमा समावेश छ" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} सदस्यहरू" @@ -466,11 +484,11 @@ msgstr "<0>{0} सदस्यहरू" msgid "<0>{date} at {time}" msgstr "<0>{date} मा {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>प्रयोगात्मक: यो प्राथमिकता सक्षम भएपछि, तपाईंले केवल आफूले पछ्याएका प्रयोगकर्ताहरूबाट उत्तर र उद्धरण सूचना प्राप्त गर्नुहुनेछ। हामी यहाँ थप नियन्त्रणहरू समयसँगै थप्नेछौं।" +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>तपाईं र<1> <2>{0} तपाईंको स्टार्टर प्याकमा समावेश छन्" @@ -503,10 +521,14 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "बारेमा" @@ -524,25 +546,25 @@ msgstr "" msgid "Accept Request" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "पहुँचयोग्यता" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "पहुँचयोग्यता सेटिङ्स" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "खाता" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "खाता पछ्याइएको छ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "खाता म्यूट गरिएको छ" msgid "Account Muted by List" msgstr "सूचीद्वारा खाता म्यूट गरिएको छ" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "खाताको विकल्पहरू" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "खाता छिटो पहुँचबाट हटाइएको छ" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "खाताको पछ्याइ हटाइएको छ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "खाताको म्यूट हटाइएको छ" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "थप्नुहोस्" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "जारी राख्न {0} थप्नुहोस्" @@ -634,8 +666,8 @@ msgstr "खाता थप्नुहोस्" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "वैकल्पिक पाठ थप्नुहोस्" msgid "Add alt text (optional)" msgstr "वैकल्पिक पाठ थप्नुहोस् (ऐच्छिक)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "अर्को खाता थप्नुहोस्" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "अर्को पोष्ट थप्नुहोस्" @@ -670,8 +702,8 @@ msgstr "एप पासवर्ड थप्नुहोस्" msgid "Add emoji reaction" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "" @@ -683,7 +715,7 @@ msgstr "" msgid "Add muted words and tags" msgstr "म्यूट शब्दहरू र ट्यागहरू थप्नुहोस्" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "नयाँ पोष्ट थप्नुहोस्" @@ -704,7 +736,7 @@ msgstr "" msgid "Add recommended feeds" msgstr "सुझाइएको फिड थप्नुहोस्" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "आफ्नो स्टार्टर प्याकमा केही फिडहरू थप्नुहोस्!" @@ -725,10 +757,6 @@ msgstr "यस फिडलाई तपाईंको फिडमा थप msgid "Add to lists" msgstr "सूचीहरूमा थप्नुहोस्" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "मेरो फिडमा थप्नुहोस्" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "" @@ -738,11 +766,11 @@ msgstr "" msgid "Added to list" msgstr "सूचीमा थपियो" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "मेरो फिडमा थपियो" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "" @@ -750,18 +778,18 @@ msgstr "" msgid "Adult" msgstr "वयस्क" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "वयस्क सामग्री" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "वयस्क सामग्री मात्र वेब मार्फत <0>bsky.app मा सक्षम गर्न सकिन्छ।" -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "वयस्क सामग्री अक्षम छ।" @@ -770,16 +798,32 @@ msgstr "वयस्क सामग्री अक्षम छ।" msgid "Adult Content labels" msgstr "वयस्क सामग्रीका लेबलहरू" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "उन्नत" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "" @@ -793,7 +837,7 @@ msgstr "सबै खाताहरू पछ्याइएका छन्!" msgid "All languages" msgstr "" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "तपाईंले बचत गरेका सबै फिडहरू एउटै स्थानमा।" @@ -802,16 +846,21 @@ msgstr "तपाईंले बचत गरेका सबै फिडह msgid "Allow access to your direct messages" msgstr "तपाईंको प्रत्यक्ष सन्देशहरूमा पहुँच अनुमति दिनुहोस्" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "नयाँ सन्देशहरूबाट अनुमति दिनुहोस्" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "उत्तरहरूबाट अनुमति दिनुहोस्:" @@ -828,13 +877,13 @@ msgstr "पहिले नै कोड छ?" msgid "Already signed in as @{0}" msgstr "पहिले नै @{0} को रूपमा साइन इन गरिएको छ" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "वैकल्पिक" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "वैकल्पिक" msgid "Alt text" msgstr "वैकल्पिक पाठ" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "वैकल्पिक पाठ" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "वैकल्पिक पाठले दृष्टिहीन र कमजोर दृष्टि भएका प्रयोगकर्ताहरूका लागि चित्रहरू वर्णन गर्छ, र सबैलाई सन्दर्भ दिन मद्दत गर्दछ।" @@ -861,27 +910,19 @@ msgstr "" msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "एक इमेल {0} मा पठाइएको छ। यसमा एक पुष्टिकरण कोड समावेश छ, जसलाई तपाईं तल प्रविष्ट गर्न सक्नुहुन्छ।" -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "इमेल पठाइएको छ! कृपया इमेलमा समावेश गरिएको पुष्टिकरण कोड तल प्रविष्ट गर्नुहोस्।" - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "त्रुटि भएको छ" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "त्रुटि भयो" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "भिडियो संकुचन गर्दा त्रुटि भयो।" -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "" @@ -889,11 +930,11 @@ msgstr "" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "तपाईंको स्टार्टर प्याक निर्माण गर्दा त्रुटि भयो। के पुन: प्रयास गर्न चाहनुहुन्छ?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "भिडियो लोड गर्दा त्रुटि भयो। कृपया पछि पुन: प्रयास गर्नुहोस्।" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "भिडियो लोड गर्दा त्रुटि भयो। कृपया पुन: प्रयास गर्नुहोस्।" @@ -910,7 +951,7 @@ msgstr "भिडियो चयन गर्दा त्रुटि भय msgid "An error occurred while trying to follow all" msgstr "सबैलाई पछ्याउने प्रयास गर्दा त्रुटि भयो" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "भिडियो अपलोड गर्दा त्रुटि भयो।" @@ -934,8 +975,8 @@ msgstr "कुराकानी खोल्ने प्रयास गर् #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "अज्ञात त्रुटि भयो" msgid "an unknown labeler" msgstr "अज्ञात लेबलकर्ता" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "र" @@ -963,10 +1004,14 @@ msgstr "र" msgid "Animals" msgstr "जनावरहरू" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "एनिमेटेड GIF" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "" @@ -980,7 +1025,13 @@ msgstr "विरोधी सामाजिक व्यवहार" msgid "Anybody can interact" msgstr "कुनै पनि व्यक्ति अन्तरक्रिया गर्न सक्छन्" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "एप पासवर्डका नाममा केवल अक msgid "App password names must be at least 4 characters long" msgstr "एप पासवर्ड नाम कम्तिमा ४ वर्ण लामो हुनुपर्छ।" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "एप पासवर्डहरू" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "एप पासवर्डहरू" @@ -1053,10 +1104,10 @@ msgstr "" msgid "Appeal this decision" msgstr "यो निर्णयको अपील गर्नुहोस्।" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "रूपरङ्ग" @@ -1065,12 +1116,20 @@ msgstr "रूपरङ्ग" msgid "Apply default recommended feeds" msgstr "डिफल्ट सिफारिस गरिएका फिडहरू लागू गर्नुहोस्।" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "{0} बाट आर्काइभ गरिएको" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "आर्काइभ गरिएको पोस्ट" @@ -1078,7 +1137,7 @@ msgstr "आर्काइभ गरिएको पोस्ट" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "के तपाईं \"{0}\" एप पासवर्ड मेटाउन निश्चित हुनुहुन्छ?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "के तपाईं यो सन्देश मेटाउन निश्चित हुनुहुन्छ? सन्देश तपाईंको लागि मेटिनेछ, तर अर्को सहभागीको लागि होइन।" @@ -1098,19 +1157,15 @@ msgstr "" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "के तपाईं यो कुराकानी छोड्न निश्चित हुनुहुन्छ? तपाईंका सन्देशहरू तपाईंको लागि मेटिनेछन्, तर अर्को सहभागीको लागि होइन।" -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "के तपाईं {0} लाई आफ्नो फिडहरूबाट हटाउन निश्चित हुनुहुन्छ?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "के तपाईं यसलाई आफ्नो फिडहरूबाट हटाउन निश्चित हुनुहुन्छ?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "के तपाईं यस मस्यौदा हटाउन चाहनुहुन्छ?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "के तपाईं यस पोस्ट हटाउन चाहनुहुन्छ?" @@ -1131,29 +1186,26 @@ msgstr "कला" msgid "Artistic or non-erotic nudity." msgstr "कलात्मक वा गैर-इरोटिक नग्नता।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "कम्तिमा ३ अक्षरहरू" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "अटोप्ले विकल्पहरू <0>सामग्री र मिडिया सेटिङ्स मा सारिएको छ।" - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "भिडियो र GIF हरू अटोप्ले गर्नुहोस्" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "भिडियो र GIF हरू अटोप्ले गर्न #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "फिर्ता" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "" @@ -1195,28 +1247,44 @@ msgstr "स्टार्टर प्याक सिर्जना गर् msgid "Before you can accept this chat request, you must first verify your email." msgstr "" +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "जन्मदिन" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "ब्लक गर्नुहोस्" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "ब्लक गर्नुहोस्" msgid "Block account" msgstr "खाता ब्लक गर्नुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "खाता ब्लक गर्नुहोस्?" @@ -1262,20 +1330,20 @@ msgstr "" msgid "Block User" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "ब्लक गरियो" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "ब्लक गरिएका खाताहरू" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "ब्लक गरिएका खाताहरू" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ब्लक गरिएका खाताहरूले तपाईंको थ्रेडहरूमा उत्तर दिन सक्दैनन्, तपाईंलाई उल्लेख गर्न सक्दैनन्, वा अन्यथा तपाईंसँग अन्तरक्रिया गर्न सक्दैनन्।" @@ -1284,11 +1352,11 @@ msgstr "ब्लक गरिएका खाताहरूले तपाई msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "ब्लक गरिएका खाताहरूले तपाईंको थ्रेडहरूमा उत्तर दिन सक्दैनन्, तपाईंलाई उल्लेख गर्न सक्दैनन्, वा अन्यथा तपाईंसँग अन्तरक्रिया गर्न सक्दैनन्। तपाईंले उनीहरूको सामग्री देख्न सक्नुहुन्न र तिनीहरूले तपाईंको सामग्री हेर्नबाट रोकिनेछन्।" -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "ब्लक गरिएको पोस्ट।" -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "ब्लकले यस लेबलकर्ताले तपाईंको खातामा लेबल राख्नबाट रोक्दैन।" @@ -1309,11 +1377,12 @@ msgstr "ब्लग" msgid "Bluesky" msgstr "ब्लूस्काई" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "ब्लूस्काईले दाबी गरिएको मितिको प्रामाणिकता पुष्टि गर्न सक्दैन।" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1347,6 +1416,14 @@ msgstr "ब्लूस्काईले तपाईंको प्रोफ msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "" @@ -1368,23 +1445,20 @@ msgstr "चित्रहरू धुंधला गर्नुहोस् msgid "Books" msgstr "पुस्तकहरू" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "एक्सप्लोर पृष्ठमा थप खाता ब्राउज गर्नुहोस्" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "एक्सप्लोर पृष्ठमा थप फिड ब्राउज गर्नुहोस्" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "थप सुझावहरू ब्राउज गर्नुहोस्" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "एक्सप्लोर पृष्ठमा थप सुझावहरू ब्राउज गर्नुहोस्" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "व्यापार" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "{0} द्वारा" @@ -1428,15 +1502,23 @@ msgstr "{0} द्वारा" msgid "By <0>{0}" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "खाता सिर्जना गरेर तपाईं <0>गोपनीयता नीति सँग सहमत हुनुहुन्छ।" -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "खाता सिर्जना गरेर तपाईं <0>सेवा सर्तहरू र <1>गोपनीयता नीति सँग सहमत हुनुहुन्छ।" -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "खाता सिर्जना गरेर तपाईं <0>सेवा सर्तहरू सँग सहमत हुनुहुन्छ।" @@ -1448,14 +1530,17 @@ msgstr "" msgid "Camera" msgstr "क्यामेरा" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "क्यामेरा" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "रद्द गर्नुहोस्" @@ -1500,11 +1582,7 @@ msgstr "खाता मेटाउन रद्द गर्नुहोस् msgid "Cancel image crop" msgstr "चित्र काट्ने कार्य रद्द गर्नुहोस्" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "प्रोफाइल सम्पादन रद्द गर्नुहोस्" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "कोट पोस्ट रद्द गर्नुहोस्" @@ -1516,14 +1594,10 @@ msgstr "पुनः सक्रियता रद्द गर्नुहो msgid "Cancel search" msgstr "खोजी रद्द गर्नुहोस्" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "लिङ्क गरिएको वेबसाइट खोल्ने कार्य रद्द गर्नुहोस्" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "ब्लक गरिएको प्रयोगकर्तासँग अन्तरक्रिया गर्न सकिँदैन" @@ -1553,17 +1627,12 @@ msgstr "" msgid "Change app language" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "इमेल ठेगाना परिवर्तन गर्नुहोस्" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "ह्यान्डल परिवर्तन गर्नुहोस्" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "" @@ -1579,14 +1648,6 @@ msgstr "" msgid "Change report reason" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "तपाईंको इमेल परिवर्तन गर्नुहोस्" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "तपाईंको इमेल ठेगाना परिवर्तन गर्नुहोस्" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "" @@ -1596,10 +1657,15 @@ msgstr "" msgid "Changes hosting provider" msgstr "" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "कुराकानी" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "कुराकानी म्यूट गरियो" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "कुराकानी सेटिङ्स" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "कुराकानी सेटिङ्स" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "कुराकानी अनम्यूट गरियो" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "" @@ -1661,7 +1738,7 @@ msgstr "तल प्रविष्ट गर्नको लागि पु msgid "Choose domain verification method" msgstr "डोमेन प्रमाणीकरण विधि छान्नुहोस्" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "फिडहरू छान्नुहोस्" @@ -1669,7 +1746,7 @@ msgstr "फिडहरू छान्नुहोस्" msgid "Choose for me" msgstr "मेरो लागि छान्नुहोस्" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "व्यक्तिहरू छान्नुहोस्" @@ -1685,23 +1762,23 @@ msgstr "यो रंगलाई आफ्नो अवतारको रू msgid "Choose your account provider" msgstr "" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "तपाईंको पासवर्ड छान्नुहोस्" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "सबै भण्डारण डाटा खाली गर्नुहोस्" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "सबै भण्डारण डाटा खाली गर्नुहोस् (यसपछि पुनः सुरु गर्नुहोस्)" @@ -1714,23 +1791,27 @@ msgstr "" msgid "Clear search query" msgstr "खोज प्रश्न खाली गर्नुहोस्" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "यहाँ क्लिक गर्नुहोस्" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "यो पोस्टको कोट पोस्टहरू अक्षम गर्न क्लिक गर्नुहोस्।" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "यो पोस्टको कोट पोस्टहरू सक्षम गर्न क्लिक गर्नुहोस्।" @@ -1750,14 +1831,16 @@ msgstr "जलवायु" msgid "Clip 🐴 clop 🐴" msgstr "क्लिप 🐴 क्लोप 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "क्लिप 🐴 क्लोप 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "बन्द गर्नुहोस्" @@ -1789,13 +1876,15 @@ msgstr "चेतावनी बन्द गर्नुहोस्" msgid "Close bottom drawer" msgstr "तलको दराज बन्द गर्नुहोस्" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "संवाद बन्द गर्नुहोस्" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "" @@ -1804,7 +1893,7 @@ msgstr "" msgid "Close emoji picker" msgstr "" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "GIF संवाद बन्द गर्नुहोस्" @@ -1822,7 +1911,7 @@ msgstr "चित्र दर्शक बन्द गर्नुहोस् msgid "Close menu" msgstr "" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "यो संवाद बन्द गर्नुहोस्" @@ -1830,7 +1919,7 @@ msgstr "यो संवाद बन्द गर्नुहोस्" msgid "Closes password update alert" msgstr "पासवर्ड अद्यावधिक चेतावनी बन्द गर्नुहोस्" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "" @@ -1843,16 +1932,16 @@ msgstr "" msgid "Closes viewer for header image" msgstr "हेडर चित्रको दर्शक बन्द गर्नुहोस्" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "प्रयोगकर्ताहरूको सूची संक्षेप गर्नुहोस्" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "दिइएको सूचना लागि प्रयोगकर्ताहरूको सूची संक्षेप गर्दछ" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "रंग मोड" @@ -1870,7 +1959,8 @@ msgstr "कमेडी" msgid "Comics" msgstr "कमिक्स" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "समुदायका दिशानिर्देशहरू" @@ -1879,38 +1969,34 @@ msgstr "समुदायका दिशानिर्देशहरू" msgid "Complete onboarding and start using your account" msgstr "अनबोर्डिङ पूरा गर्नुहोस् र आफ्नो खाता प्रयोग गर्न सुरु गर्नुहोस्" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "चुनौती पूरा गर्नुहोस्" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "नयाँ पोस्ट तयार गर्नुहोस्" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "जवाफ तयार गर्नुहोस्" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "भिडियो कम्प्रेस गर्दै..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "श्रेणी: {name} का लागि सामग्री फिल्टरिङ सेटिङ कन्फिगर गर्नुहोस्" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "<0>मोडरेशन सेटिङ्स मा कन्फिगर गरिएको।" -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "सामग्री भाषा सेटिङ पुष्टि msgid "Confirm delete account" msgstr "खाता मेटाउने पुष्टि गर्नुहोस्" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "तपाईंको उमेर पुष्टि गर्नुहोस्:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "तपाईंको जन्ममिति पुष्टि गर्नुहोस्" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "तपाईंको जन्ममिति पुष्टि गर msgid "Confirmation code" msgstr "पुष्टिकरण कोड" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "पुष्टिकरण कोड" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "जोड्दैछ..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "समर्थन सम्पर्क गर्नुहोस्" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "सामग्री र मिडिया" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "सामग्री र मिडिया" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "सामग्री र मिडिया" @@ -1977,7 +2069,8 @@ msgstr "सामग्री र मिडिया" msgid "Content Blocked" msgstr "सामग्री अवरुद्ध गरियो" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "सामग्री फिल्टरहरू" @@ -2006,10 +2099,12 @@ msgstr "सामग्री चेतावनी" msgid "Content warnings" msgstr "सामग्री चेतावनीहरू" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "सन्दर्भ मेनु पृष्ठभूमि, मेनु बन्द गर्न क्लिक गर्नुहोस्।" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "जारी राख्नुहोस्" msgid "Continue as {0} (currently signed in)" msgstr "{0} को रूपमा जारी राख्नुहोस् (हाल साइन इन गरिएको)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "थ्रेड जारी राख्नुहोस्..." @@ -2029,6 +2129,10 @@ msgstr "थ्रेड जारी राख्नुहोस्..." msgid "Continue to next step" msgstr "अर्को चरणमा जारी राख्नुहोस्" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "प्रतिलिपि गरियो" msgid "Copied build version to clipboard" msgstr "बिल्ड संस्करण क्लिपबोर्डमा प्रतिलिपि गरियो" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "" msgid "Copy" msgstr "प्रतिलिपि गर्नुहोस्" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "एप पासवर्ड प्रतिलिपि गर्नुहोस्" @@ -2087,8 +2187,8 @@ msgstr "एप पासवर्ड प्रतिलिपि गर्नु msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "" @@ -2120,10 +2220,10 @@ msgstr "लिंक प्रतिलिपि गर्नुहोस्" msgid "Copy link to list" msgstr "सूचीको लिंक प्रतिलिपि गर्नुहोस्" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "पोस्टको लिंक प्रतिलिपि गर्नुहोस्" @@ -2136,18 +2236,18 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "सन्देशको पाठ प्रतिलिपि गर्नुहोस्" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "पोस्टको पाठ प्रतिलिपि गर्नुहोस्" @@ -2159,11 +2259,25 @@ msgstr "QR कोड प्रतिलिपि गर्नुहोस्" msgid "Copy TXT record value" msgstr "TXT रेकर्ड मान प्रतिलिपि गर्नुहोस्" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "प्रतिलिपि अधिकार नीति" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "कुराकानी म्यूट गर्न सकिएन" msgid "Could not process your video" msgstr "तपाईंको भिडियो प्रक्रिया गर्न सकिएन" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "सिर्जना गर्नुहोस्" @@ -2195,7 +2317,7 @@ msgstr "स्टार्टर प्याकका लागि QR कोड #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "स्टार्टर प्याक सिर्जना गर्नुहोस्" @@ -2205,21 +2327,22 @@ msgstr "मेरो लागि स्टार्टर प्याक स #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "साइन अप गर्नुहोस्" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "खाता सिर्जना गर्नुहोस्" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "खाता बनाउनुहोस्" @@ -2241,7 +2364,7 @@ msgstr "अर्को बनाउनुहोस्" msgid "Create new account" msgstr "नयाँ खाता सिर्जना गर्नुहोस्" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "{0} का लागि रिपोर्ट सिर्जना गर्नुहोस्" @@ -2268,7 +2391,7 @@ msgstr "अनुकूलित" msgid "Customization options" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "यस पोस्टसँग कसले अन्तरक्रिया गर्न सक्छ भन्ने अनुकूलन गर्नुहोस्।" @@ -2278,12 +2401,12 @@ msgstr "" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "गाढा" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "गाढा" @@ -2292,21 +2415,21 @@ msgstr "गाढा" msgid "Dark mode" msgstr "गाढा मोड" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "गाढा थिम" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "जन्म मिति" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "खाता निष्क्रिय गर्नुहोस्" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "डिबग मोडरेशन" @@ -2314,7 +2437,7 @@ msgstr "डिबग मोडरेशन" msgid "Debug panel" msgstr "डिबग प्यानल" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "डिफल्ट" @@ -2322,8 +2445,8 @@ msgstr "डिफल्ट" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "" msgid "Delete" msgstr "मेटाउनुहोस्" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "खाता मेटाउनुहोस्" @@ -2355,7 +2478,7 @@ msgstr "एप पासवर्ड मेटाउनुहोस्?" msgid "Delete chat" msgstr "" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "कुराकानी घोषणाको रेकर्ड मेटाउनुहोस्" @@ -2370,7 +2493,7 @@ msgstr "" msgid "Delete Conversation" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "मेरो लागि मेटाउनुहोस्" @@ -2378,11 +2501,11 @@ msgstr "मेरो लागि मेटाउनुहोस्" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "सन्देश मेटाउनुहोस्" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "मेरो लागि सन्देश मेटाउनुहोस्" @@ -2390,9 +2513,9 @@ msgstr "मेरो लागि सन्देश मेटाउनुहो msgid "Delete my account" msgstr "मेरो खाता मेटाउनुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "पोस्ट मेटाउनुहोस्" @@ -2409,11 +2532,11 @@ msgstr "स्टार्टर प्याक मेटाउनुहोस msgid "Delete this list?" msgstr "यो सूची मेटाउनुहोस्?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "यो पोस्ट मेटाउनुहोस्?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "मेटाइयो" @@ -2422,15 +2545,20 @@ msgstr "मेटाइयो" msgid "Deleted Account" msgstr "मेटाइएको खाता" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "मेटाइएको पोस्ट।" #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "विवरण" @@ -2447,12 +2575,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "वर्णनात्मक वैकल्पिक पाठ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "उद्धरण अलग गर्नुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "उद्धरण पोस्ट अलग गर्नुहोस्?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "डेभलपर विकल्पहरू" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "संवाद: यो पोस्टसँग कसले अन्तरक्रिया गर्न सक्छ समायोजन गर्नुहोस्" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "धूमिल" @@ -2492,27 +2620,27 @@ msgstr "" msgid "Disable Email 2FA" msgstr "इमेल 2FA अक्षम गर्नुहोस्" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "ह्याप्टिक प्रतिक्रिया अक्षम गर्नुहोस्" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "उपशीर्षक अक्षम गर्नुहोस्" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "अक्षम गरियो" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "त्याग्नुहोस्" @@ -2520,11 +2648,11 @@ msgstr "त्याग्नुहोस्" msgid "Discard changes?" msgstr "परिवर्तनहरू त्याग्नुहोस्?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "मस्यौदा त्याग्नुहोस्?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "पोस्ट त्याग्नुहोस्?" @@ -2542,7 +2670,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "नयाँ अनुकूलित फिडहरू पत्ता लगाउनुहोस्" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "नयाँ फिडहरू खोज्नुहोस्" @@ -2550,7 +2678,7 @@ msgstr "नयाँ फिडहरू खोज्नुहोस्" msgid "Dismiss" msgstr "रद्द गर्नुहोस्" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "त्रुटि रद्द गर्नुहोस्" @@ -2562,26 +2690,26 @@ msgstr "गाइडलाई रद्द गर्नुहोस्" msgid "Dismiss interests" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "ठूलो वैकल्पिक पाठ ब्याज देखाउनुहोस्" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "प्रदर्शन नाम" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "प्रदर्शन नाम" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "प्रदर्शन नाम धेरै लामो छ" @@ -2603,15 +2731,11 @@ msgstr "यो म्यूट शब्द तपाईंले फलो ग msgid "Does not include nudity." msgstr "यसमा नग्नता समावेश छैन।" -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "ड्यासबाट सुरु वा अन्त्य गर्दैन" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "डोमेन प्रमाणित गरियो!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -2619,6 +2743,15 @@ msgstr "" msgid "Don't see an email? <0>Click here to resend." msgstr "" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "" msgid "Double tap to close the dialog" msgstr "संवाद बन्द गर्न डबल ट्याप गर्नुहोस्" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "" @@ -2673,7 +2806,7 @@ msgstr "Bluesky डाउनलोड गर्नुहोस्" msgid "Download CAR file" msgstr "CAR फाइल डाउनलोड गर्नुहोस्" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "तस्बिरहरू थप्न ड्रप गर्नुहोस्" @@ -2689,18 +2822,10 @@ msgstr "उदा. एलिस" msgid "e.g. Alice Lastname" msgstr "उदा. एलिस थर" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "उदा. एलिस रोबर्ट्स" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "उदा. alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "उदा. कलाकार, कुकुरप्रेमी, र पुस्तकप्रेमी।" - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "उदा. कलात्मक नग्न।" @@ -2725,10 +2850,11 @@ msgstr "उदा. बारम्बार विज्ञापनहरू msgid "Each code works once. You'll receive more invite codes periodically." msgstr "प्रत्येक कोड एक पटक मात्र प्रयोग गर्न सकिन्छ। तपाईं समय-समयमा थप निमन्त्रणा कोड प्राप्त गर्नुहुनेछ।" -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "सम्पादन गर्नुहोस्" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "सम्पादन गर्नुहोस्" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "अवतार सम्पादन गर्नुहोस्" @@ -2749,12 +2875,12 @@ msgstr "फिड सम्पादन गर्नुहोस्" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "चित्र सम्पादन गर्नुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "अन्तर्क्रिया सेटिङ्स सम्पादन गर्नुहोस्" @@ -2776,33 +2902,33 @@ msgstr "" msgid "Edit Moderation List" msgstr "मोडरेशन सूची सम्पादन गर्नुहोस्" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "मेरो फिड सम्पादन गर्नुहोस्" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "मेरो प्रोफाइल सम्पादन गर्नुहोस्" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "व्यक्ति सम्पादन गर्नुहोस्" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "पोस्ट अन्तर्क्रिया सेटिङ्स सम्पादन गर्नुहोस्" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "प्रोफाइल सम्पादन गर्नुहोस्" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "प्रोफाइल सम्पादन गर्नुहोस्" @@ -2814,19 +2940,11 @@ msgstr "स्टार्टर प्याक सम्पादन गर् msgid "Edit User List" msgstr "प्रयोगकर्ता सूची सम्पादन गर्नुहोस्" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "को उत्तर दिन सक्छ सम्पादन गर्नुहोस्" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "तपाईंको प्रदर्शन नाम सम्पादन गर्नुहोस्" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "तपाईंको प्रोफाइल विवरण सम्पादन गर्नुहोस्" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "तपाईंको स्टार्टर प्याक सम्पादन गर्नुहोस्" @@ -2839,8 +2957,8 @@ msgstr "शिक्षा" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "" -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "इमेल" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "इमेल 2FA अक्षम गरियो" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "इमेल 2FA सक्षम गरियो" @@ -2865,10 +2983,6 @@ msgstr "इमेल पुनः पठाइयो" msgid "Email sent!" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "" @@ -2883,8 +2997,8 @@ msgstr "HTML कोड समावेश गर्नुहोस्" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "पोस्ट समावेश गर्नुहोस्" @@ -2892,7 +3006,7 @@ msgstr "पोस्ट समावेश गर्नुहोस्" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "यो पोस्टलाई तपाईंको वेबसाइटमा समावेश गर्नुहोस्। तलको स्निपेट प्रतिलिपि गरी तपाईंको वेबसाइटको HTML कोडमा टाँस्नुहोस्।" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "समाविष्ट भिडियो प्लेयर" @@ -2906,7 +3020,7 @@ msgstr "सक्षम गर्नुहोस्" msgid "Enable {0} only" msgstr "केवल {0} सक्षम गर्नुहोस्" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "वयस्क सामग्री सक्षम गर्नुहोस्" @@ -2919,16 +3033,20 @@ msgstr "" msgid "Enable external media" msgstr "बाह्य मिडिया सक्षम गर्नुहोस्" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "मिडिया प्लेयर सक्षम गर्नुहोस्" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "प्राथमिकता सूचनाहरू सक्षम गर्नुहोस्" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "उपशीर्षकहरू सक्षम गर्नुहोस्" @@ -2941,17 +3059,14 @@ msgstr "यो स्रोत मात्र सक्षम गर्नु msgid "Enable trending topics" msgstr "" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "" - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "सक्षम गरिएको" @@ -2963,7 +3078,7 @@ msgstr "फिडको अन्त्य" msgid "Ensure you have selected a language for each subtitle file." msgstr "प्रत्येक उपशीर्षक फाइलको लागि भाषा चयन गरिएको सुनिश्चित गर्नुहोस्।" -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "पासवर्ड प्रविष्ट गर्नुहोस्" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "शब्द वा ट्याग प्रविष्ट गर्नुहोस्" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "कोड प्रविष्ट गर्नुहोस्" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "पूर्ण स्क्रीनमा प्रवेश गर्नुहोस्" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "तपाईंको जन्म मिति प्रविष्ट गर्नुहोस्" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "तपाईंको इमेल ठेगाना प्रविष्ट गर्नुहोस्" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "तल तपाईंको नयाँ इमेल ठेगाना प्रविष्ट गर्नुहोस्।" - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "" @@ -3022,7 +3129,7 @@ msgstr "" msgid "Enter your username and password" msgstr "तपाईंको प्रयोगकर्ता नाम र पासवर्ड प्रविष्ट गर्नुहोस्" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "" @@ -3030,16 +3137,28 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "त्रुटि" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "फाइल बचत गर्दा त्रुटि भयो" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "क्याप्चा प्रतिक्रिया प्राप्त गर्दा त्रुटि।" @@ -3047,27 +3166,34 @@ msgstr "क्याप्चा प्रतिक्रिया प्रा msgid "Error:" msgstr "त्रुटि:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "सबै" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "सबैले उत्तर दिन सक्छन्" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "सबैले यो पोस्टमा उत्तर दिन सक्छन्।" -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "सबै जना" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "तपाईंले पछ्याएका प्रयोगकर msgid "Excludes users you follow" msgstr "तपाईंले पछ्याएका प्रयोगकर्ताहरू हटाउँछ" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "पूर्ण स्क्रीनबाट बाहिर जानुहोस्" @@ -3106,24 +3232,28 @@ msgstr "चित्र दृश्य बन्द गर्नुहोस् msgid "Expand alt text" msgstr "वैकल्पिक पाठ विस्तार गर्नुहोस्" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "प्रयोगकर्ताहरूको सूची विस्तार गर्नुहोस्" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "जसमा तपाईं उत्तर दिँदै हुनुहुन्छ, त्यो पोस्ट विस्तार वा सङ्कुचित गर्नुहोस्" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "एक रेकर्डमा URI समाधान हुने आशा गरियो" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "प्रायोगिक" @@ -3153,15 +3283,15 @@ msgstr "स्पष्ट वा सम्भावित रूपमा ब msgid "Explicit sexual images." msgstr "स्पष्ट यौन चित्रहरू।" -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "मेरो डाटा निर्यात गर्नुहोस्" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "बाह्य मिडिया" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 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:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "बाह्य मिडिया प्राथमिकताहरू" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "" @@ -3211,8 +3341,8 @@ msgstr "एप पासवर्ड सिर्जना गर्न अस msgid "Failed to create conversation" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "स्टार्टर प्याक सिर्जना गर्न असफल" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "सन्देश मेटाउन असफल" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "पोस्ट मेटाउन असफल। कृपया पुन: प्रयास गर्नुहोस्।" @@ -3238,8 +3368,8 @@ msgstr "पोस्ट मेटाउन असफल। कृपया प msgid "Failed to delete starter pack" msgstr "स्टार्टर प्याक मेटाउन असफल" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "" @@ -3250,14 +3380,32 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "फिड्स प्राथमिकताहरू लोड गर्न असफल" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "GIF लोड गर्न असफल" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "पछिल्ला सन्देशहरू लोड गर्न असफल" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "सुझाव गरिएका फिड्स लोड गर् msgid "Failed to load suggested follows" msgstr "सुझाव गरिएका फलोहरू लोड गर्न असफल भयो" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "पोस्ट पिन गर्न असफल भयो" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "" @@ -3291,15 +3439,11 @@ msgstr "" msgid "Failed to save image: {0}" msgstr "तस्बिर सुरक्षित गर्न असफल: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "सूचना प्राथमिकताहरू सुरक्षित गर्न असफल भयो, कृपया पुन: प्रयास गर्नुहोस्" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "" @@ -3318,7 +3462,7 @@ msgstr "" msgid "Failed to submit appeal, please try again." msgstr "अपील पठाउन असफल भयो, कृपया पुन: प्रयास गर्नुहोस्।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "थ्रेड म्यूट टगल गर्न असफल, कृपया पुन: प्रयास गर्नुहोस्" @@ -3335,7 +3479,11 @@ msgstr "" msgid "Failed to update feeds" msgstr "फिड्स अद्यावधिक गर्न असफल भयो" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "सेटिङ्स अद्यावधिक गर्न असफल" @@ -3354,15 +3502,23 @@ msgstr "" msgid "Failed to verify handle. Please try again." msgstr "ह्यान्डल प्रमाणित गर्न असफल भयो। कृपया पुन: प्रयास गर्नुहोस्।" -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "फिड" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "{0} द्वारा फिड" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "" @@ -3371,35 +3527,39 @@ msgstr "" msgid "Feed toggle" msgstr "फिड टगल" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "प्रतिक्रिया" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "प्रतिक्रिया पठाइयो!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "फिड्स" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "फिड्स कस्टम एल्गोरिदम हुन्, जसलाई प्रयोगकर्ताहरूले अलिकति कोडिङ ज्ञानको साथ निर्माण गर्छन्। थप जानकारीका लागि <0/>।" #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "फिड्स अद्यावधिक गरियो!" @@ -3428,6 +3588,14 @@ msgstr "" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "अन्तिम रूप दिँदै" @@ -3448,7 +3616,7 @@ msgstr "" msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "समाप्त" @@ -3456,17 +3624,17 @@ msgstr "समाप्त" msgid "Fitness" msgstr "फिटनेस" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "लचिलो" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "अनुसरण गर्नुहोस्" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "{0} लाई अनुसरण गर्नुहोस्" @@ -3518,7 +3686,7 @@ msgstr "खाता अनुसरण गर्नुहोस्" msgid "Follow all" msgstr "सबैलाई अनुसरण गर्नुहोस्" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "पछाडि अनुसरण गर्नुहोस्" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "पछाडि अनुसरण गर्नुहोस्" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "<0>{0} ले अनुसरण गरेका छन्" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "<0>{0} र {1, plural, one {# other} other {# others}} ले अनुसरण गरेका छन्" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "<0>{0} र <1>{1} ले अनुसरण गरेका छन्" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "<0>{0}, <1>{1}, र {2, plural, one {# other} other {# others}} ले अनुसरण गरेका छन्" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "तपाईंले चिनेका @{0} का अनुसरणकर्ताहरू" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "तपाईंले चिनेका अनुसरणकर्ताहरू" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "अनुसरण गर्दै" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "अनुसरण गर्दै" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "{0} लाई अनुसरण गर्दै" @@ -3579,8 +3751,8 @@ msgstr "" msgid "Following feed preferences" msgstr "अनुसरण फिड प्राथमिकताहरू" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "अनुसरण फिड प्राथमिकताहरू" @@ -3592,11 +3764,11 @@ msgstr "तपाईलाई अनुसरण गर्छ" msgid "Follows You" msgstr "तपाईलाई अनुसरण गर्छ" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "फन्ट" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "फन्ट आकार" @@ -3613,7 +3785,7 @@ msgstr "सुरक्षा कारणहरूले गर्दा, ह msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "सुरक्षा कारणहरूको लागि, तपाईं यसलाई पुन: हेर्न सक्नुहुनेछैन। यदि तपाईंले यो पासवर्ड हराउनु भयो भने, तपाईंले नयाँ उत्पन्न गर्नुपर्नेछ।" -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "सर्वोत्तम अनुभवको लागि, हामी थिम फन्ट प्रयोग गर्न सिफारिस गर्छौं।" @@ -3643,11 +3815,15 @@ msgstr "बिर्सनुभयो?" msgid "Frequently Posts Unwanted Content" msgstr "बारम्बार अवाञ्छित सामग्री पोस्ट गर्दछ" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "@{sanitizedAuthor} बाट" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "<0/> बाट" @@ -3660,14 +3836,68 @@ msgstr "ग्यालेरी" msgid "Generate a starter pack" msgstr "स्टार्टर प्याक उत्पन्न गर्नुहोस्" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "मद्दत प्राप्त गर्नुहोस्" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "" @@ -3688,14 +3918,16 @@ msgstr "आफ्नो प्रोफाइललाई अनुहार द msgid "Glaring violations of law or terms of service" msgstr "कानुन वा सेवा सर्तहरूको स्पष्ट उल्लङ्घन" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "{0} सँगको कुराकानीमा जानुहोस्" @@ -3779,8 +4017,8 @@ msgstr "ग्राफिक मिडिया" msgid "Half way there!" msgstr "मध्यसम्म पुगियो!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "ह्यान्डल" @@ -3797,7 +4035,7 @@ msgstr "ह्यान्डल परिवर्तन भयो!" msgid "Handle too long. Please try a shorter one." msgstr "ह्यान्डल धेरै लामो छ। कृपया छोटो प्रयास गर्नुहोस्।" -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "ह्याप्टिक्स" @@ -3806,7 +4044,7 @@ msgstr "ह्याप्टिक्स" msgid "Harassment, trolling, or intolerance" msgstr "उत्पीडन, ट्रोलिङ, वा असहिष्णुता" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "ह्यासट्याग" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "" -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "समस्या भइरहेको छ?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "सहयोग" @@ -3839,8 +4077,13 @@ msgstr "फोटो अपलोड गरेर वा अवतार सि msgid "Here is your app password!" msgstr "यो तपाईंको एप पासवर्ड हो!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "" @@ -3848,16 +4091,16 @@ msgstr "" msgid "Hidden by your moderation settings." msgstr "" -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "लुकेको सूची" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "लुकेको सूची" msgid "Hide" msgstr "लुकाउनुहोस्" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "लुकाउनुहोस्" @@ -3875,18 +4118,18 @@ msgstr "लुकाउनुहोस्" msgid "Hide customization options" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "मेरो लागि पोष्ट लुकाउनुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "सबैका लागि उत्तर लुकाउनुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "मेरो लागि उत्तर लुकाउनुहोस्" @@ -3894,12 +4137,12 @@ msgstr "मेरो लागि उत्तर लुकाउनुहोस msgid "Hide this card" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "यो पोस्ट लुकाउनुहोस्?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "यो उत्तर लुकाउनुहोस्?" @@ -3913,11 +4156,11 @@ msgstr "" msgid "Hide trending topics?" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "प्रयोगकर्ता सूची लुकाउनुहोस्" @@ -3926,32 +4169,32 @@ msgstr "प्रयोगकर्ता सूची लुकाउनुह msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "हुन सक्छ, फिड सर्भरसँग सम्पर्क गर्दा कुनै समस्या भयो। कृपया यो समस्याबारे फिड मालिकलाई जानकारी दिनुहोस्।" -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "हुन सक्छ, फिड सर्भर गलत रूपमा कन्फिगर गरिएको छ। कृपया यो समस्याबारे फिड मालिकलाई जानकारी दिनुहोस्।" -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "हाम्रोमा समस्या छ, फिड सर्भर अफलाइन देखिन्छ। कृपया फिड मालिकलाई यो समस्याबारे जानकारी दिनुहोस्।" -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "हाम्रोमा समस्या छ, फिड सर्भरले गलत प्रतिक्रिया दियो। कृपया फिड मालिकलाई यो समस्याबारे जानकारी दिनुहोस्।" -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "हाम्रोमा समस्या छ, यो फिड फेला पार्न गाह्रो भइरहेको छ। सम्भवतः यो हटाइएको हुन सक्छ।" -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "हाम्रोमा समस्या छ, यो डेटा लोड गर्न समस्या भइरहेको देखिन्छ। थप विवरणका लागि तल हेर्नुहोस्। यदि यो समस्या कायम रहन्छ भने, कृपया हामीलाई सम्पर्क गर्नुहोस्।" @@ -3959,15 +4202,15 @@ msgstr "हाम्रोमा समस्या छ, यो डेटा ल msgid "Hmmmm, we couldn't load that moderation service." msgstr "हाम्रोमा समस्या छ, हामीले त्यो मोडरेशन सेवा लोड गर्न सकेनौं।" -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "पर्खनुहोस्! हामी बिस्तारै भिडियो पहुँच उपलब्ध गराउँदैछौं, र तपाईं अझै प्रतीक्षामा हुनुहुन्छ। छिट्टै पुनः प्रयास गर्नुहोस्।" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "गृहपृष्ठ" @@ -3984,10 +4227,10 @@ msgstr "होस्टिंग प्रदायक" msgid "Hot" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "पहिले चर्चित उत्तरहरू" @@ -3996,10 +4239,6 @@ msgstr "पहिले चर्चित उत्तरहरू" msgid "How should we open this link?" msgstr "यो लिंक कसरी खोल्ने?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "म बुझ्छु" msgid "If alt text is long, toggles alt text expanded state" msgstr "यदि वैकल्पिक पाठ लामो छ भने, यसको विस्तारित स्थिति परिवर्तन गर्नुहोस्।" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "यदि तपाईं आफ्नो देशको कानून अनुसार अझै वयस्क हुनुहुन्न भने, तपाईंको अभिभावक वा कानुनी संरक्षकले यी सर्तहरू पढ्नुपर्छ।" @@ -4031,11 +4270,11 @@ msgstr "यदि तपाईं यो सूची हटाउनुहु msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "यदि तपाईंले यो पोस्ट हटाउनुभयो भने, तपाईं यसलाई पुनः प्राप्त गर्न सक्नुहुन्न।" @@ -4047,6 +4286,10 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "यदि तपाईं आफ्नो पासवर्ड परिवर्तन गर्न चाहनुहुन्छ भने, हामी तपाईंलाई यो खाता हो भनेर प्रमाणित गर्न कोड पठाउनेछौं।" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "" @@ -4091,13 +4334,41 @@ msgstr "पहिचान वा सम्बन्धितता बारे msgid "Impersonation, misinformation, or false claims" msgstr "प्रतिरूपण, गलत जानकारी, वा झूटा दाबीहरू" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "अशोभनीय सन्देशहरू वा स्पष्ट लिङ्कहरू" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "" @@ -4105,7 +4376,7 @@ msgstr "" msgid "Incorrect username or password" msgstr "अमान्य प्रयोगकर्ता नाम वा पासवर्ड" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "पासवर्ड रिसेट गर्न तपाईंको इमेलमा पठाइएको कोड प्रविष्ट गर्नुहोस्" @@ -4113,7 +4384,7 @@ msgstr "पासवर्ड रिसेट गर्न तपाईंको msgid "Input confirmation code for account deletion" msgstr "खाता मेटाउनको लागि पुष्टि कोड प्रविष्ट गर्नुहोस्" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "नयाँ पासवर्ड प्रविष्ट गर्नुहोस्" @@ -4129,10 +4400,14 @@ msgstr "तपाईंलाई इमेल गरिएका कोड प msgid "Interaction limited" msgstr "परस्पर क्रिया सीमित छ" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "अमान्य 2FA पुष्टि कोड।" msgid "Invalid handle. Please try a different one." msgstr "अवैध ह्यान्डल। कृपया अर्को प्रयास गर्नुहोस्।" -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "अवैध वा असमर्थित पोस्ट रेकर्ड" @@ -4158,7 +4433,7 @@ msgstr "अवैध प्रमाणिकरण कोड" msgid "Invite a Friend" msgstr "एक साथीलाई निमन्त्रणा गर्नुहोस्" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "निमन्त्रणा कोड" @@ -4186,15 +4461,15 @@ msgstr "आफ्ना साथीहरूलाई तपाईंका म msgid "Invites, but personal" msgstr "निमन्त्रणहरू, तर व्यक्तिगत" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "यो सहि छ" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "अहिले मात्र तपाईं हुनुहुन्छ! माथि खोजेर आफ्नो स्टार्टर प्याकमा थप मानिसहरू थप्नुहोस्।" -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "जॉब आईडी: {0}" @@ -4220,11 +4495,27 @@ msgstr "कुरा गर्ने प्रक्रियामा साम msgid "Journalism" msgstr "पत्रकारिता" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "{0} द्वारा लेबल गरिएको।" -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "लेखकद्वारा लेबल गरिएको।" @@ -4237,7 +4528,7 @@ msgstr "लेबलहरू" msgid "Labels added" msgstr "लेबलहरू थपियो" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "लेबलहरू प्रयोगकर्ता र सामग्रीमा ट्यागहरू हुन्। ती नेटवर्कलाई लुकाउन, चेतावनी दिन, र वर्गीकृत गर्न प्रयोग गर्न सकिन्छ।" @@ -4253,22 +4544,30 @@ msgstr "तपाईंको सामग्रीमा लेबलहरू" msgid "Language selection" msgstr "भाषा चयन" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "भाषा सेटिङ" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "भाषाहरू" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "ठूलो" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "पछिल्लो" @@ -4282,7 +4581,6 @@ msgstr "थप जान्नुहोस्" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "" @@ -4290,6 +4588,10 @@ msgstr "" msgid "Learn More" msgstr "थप जान्नुहोस्" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "ब्लूस्काईबारे थप जान्नुहोस्" @@ -4298,15 +4600,23 @@ msgstr "ब्लूस्काईबारे थप जान्नुहो msgid "Learn more about self hosting your PDS." msgstr "आफ्नो PDS आफैं होस्ट गर्ने बारे थप जान्नुहोस्।" -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "यस सामग्रीमा लागू गरिएको मॉडरेशनबारे थप जान्नुहोस्।" -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "यस चेतावनीबारे थप जान्नुहोस्।" @@ -4316,12 +4626,16 @@ msgstr "यस चेतावनीबारे थप जान्नुहो msgid "Learn more about verification on Bluesky" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "ब्लूस्काईमा सार्वजनिक हुने विषयबारे थप जान्नुहोस्।" -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "थप जान्नुहोस्।" @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "वार्तालाप छोड्नुहोस्" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "कुनै पनि भाषा हेर्न, सबै अनचेक गर्नुहोस्।" +msgid "Leave them all unselected to see any language." +msgstr "" -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "ब्लूस्काई छोड्दै" @@ -4370,7 +4685,7 @@ msgstr "हिँडौं!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "हल्का" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -4397,6 +4712,10 @@ msgstr "१० पोस्टहरू मन पराउनुहोस्" msgid "Like 10 posts to train the Discover feed" msgstr "डिस्कभर फीडलाई तालिम दिन १० पोस्ट मन पराउनुहोस्।" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "यस फीडलाई मन पराउनुहोस्।" @@ -4405,8 +4724,8 @@ msgstr "यस फीडलाई मन पराउनुहोस्।" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "मन पराउनेहरू" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "मन पराउनेहरू" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" @@ -4428,20 +4747,36 @@ msgstr "" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "रुचिहरू" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "यस पोस्टमा रुचिहरू" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "सूची" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "सूची ब्लक गरियो" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "{0} द्वारा सूची" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "सूची अनम्यूट गरियो" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "सूचीहरू" @@ -4537,7 +4876,7 @@ msgstr "थप लोड गर्नुहोस्" msgid "Load more suggested feeds" msgstr "थप सुझाइएका फीडहरू लोड गर्नुहोस्।" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "नयाँ सूचनाहरू लोड गर्नुहोस्।" @@ -4552,11 +4891,11 @@ msgstr "नयाँ पोस्टहरू लोड गर्नुहोस msgid "Loading..." msgstr "लोड हुँदैछ..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "लग" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "लग आउट गरिएको दृश्यता" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "लोगो द्वारा <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "लोगो द्वारा <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "#{tag} को लागि ट्याग मेनु खोल्न लामो समयसम्म थिच्नुहोस्।" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "यो XXXXX-XXXXX जस्तो देखिन्छ।" @@ -4597,7 +4936,7 @@ msgstr "" msgid "Make one for me" msgstr "मेरो लागि एउटा बनाउनुहोस्।" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "तपाईं जहाँ जान चाहनुहुन्छ, यो त्यही हो भनेर सुनिश्चित गर्नुहोस्!" @@ -4606,7 +4945,7 @@ msgstr "तपाईं जहाँ जान चाहनुहुन्छ, msgid "Manage saved feeds" msgstr "सुरक्षित फीडहरू व्यवस्थापन गर्नुहोस्" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "" @@ -4614,9 +4953,9 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "तपाईंका म्यूट गरिएको शब्द र ट्यागहरू व्यवस्थापन गर्नुहोस्।" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "" @@ -4625,15 +4964,13 @@ msgstr "" msgid "Mark as read" msgstr "पढिएको रूपमा चिन्ह लगाउनुहोस्।" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "" @@ -4645,19 +4982,26 @@ msgstr "मिडिया" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "केही दर्शकहरूको लागि असुविधाजनक वा अनुचित हुन सक्ने मिडिया।" -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "उल्लेख गरिएका प्रयोगकर्ता" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "उल्लेख गरिएका प्रयोगकर्ता" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "मेनु" @@ -4665,7 +5009,7 @@ msgstr "मेनु" msgid "Message {0}" msgstr "सन्देश {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "सन्देश मेटाइएको।" @@ -4674,11 +5018,11 @@ msgstr "सन्देश मेटाइएको।" msgid "Message deleted" msgstr "सन्देश मेटाइएको।" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "सर्भरबाट सन्देश: {0}" @@ -4691,19 +5035,23 @@ msgstr "सन्देश इनपुट क्षेत्र" msgid "Message is too long" msgstr "सन्देश धेरै लामो छ।" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "सन्देशहरू" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "भ्रामक खाता" msgid "Misleading Post" msgstr "भ्रामक पोस्ट" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "मोडरेशन" @@ -4725,17 +5073,17 @@ msgstr "मोडरेशन" msgid "Moderation details" msgstr "मोडरेशन विवरणहरू" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "{0} द्वारा मोडरेशन सूची" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "<0/> द्वारा मोडरेशन सूची" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "तपाईं द्वारा मोडरेशन सूची" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "मोडरेशन सूची अपडेट गरियो।" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "मोडरेशन सूचीहरू" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "मोडरेशन सूचीहरू" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "मोडरेशन सेटिङ्स" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "मोडरेशन अवस्थाहरू" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "मोडरेशन उपकरणहरू" @@ -4775,7 +5123,7 @@ msgstr "मोडरेशन उपकरणहरू" msgid "Moderator has chosen to set a general warning on the content." msgstr "मोडरेटरले सामग्रीमा सामान्य चेतावनी सेट गर्ने निर्णय गरेका छन्।" -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "थप" @@ -4790,13 +5138,13 @@ msgstr "थप फीडहरू" msgid "More options" msgstr "थप विकल्पहरू" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "पहिले धेरै मन पराइएको" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "पहिले धेरै मन पराइएका उत्तरहरू" @@ -4808,8 +5156,8 @@ msgstr "चलचित्रहरू" msgid "Music" msgstr "संगीत" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "म्यूट गर्नुहोस्" @@ -4819,8 +5167,8 @@ msgstr "म्यूट गर्नुहोस्" msgid "Mute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "यो शब्द केवल ट्यागहरूमा म् msgid "Mute this word until you unmute it" msgstr "तपाईंले अनम्यूट नगरेसम्म यो शब्द म्यूट गर्नुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "थ्रेड म्यूट गर्नुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "शब्दहरू र ट्यागहरू म्यूट गर्नुहोस्" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "म्यूट गरिएका खाता" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "म्यूट गरिएका खाता" @@ -4898,7 +5246,7 @@ msgstr "म्यूट गरिएका खाताहरूका पोस msgid "Muted by \"{0}\"" msgstr "\"{0}\" द्वारा म्यूट गरियो।" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "म्यूट गरिएका शब्दहरू र ट्यागहरू" @@ -4911,7 +5259,7 @@ msgstr "म्यूट निजी हुन्छ। म्यूट गर msgid "My Birthday" msgstr "मेरो जन्मदिन" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "मेरो फीडहरू" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "प्रकृति" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "{0} मा जानुहोस्" @@ -4958,11 +5306,11 @@ msgstr "अर्को स्क्रिनमा जानुहोस्" msgid "Navigates to your profile" msgstr "तपाईंको प्रोफाइलमा जानुहोस्" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "यसलाई परिवर्तन गर्न आवश्यक छ?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "प्रतिलिपि अधिकार उल्लङ्घनको रिपोर्ट गर्न चाहनुहुन्छ?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "नयाँ" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "नयाँ कुराकानी" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "नयाँ सन्देशहरू" msgid "New Moderation List" msgstr "नयाँ मोडरेशन सूची" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "नयाँ पासवर्ड" @@ -5029,7 +5396,7 @@ msgstr "नयाँ पासवर्ड" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "नयाँ पोस्ट" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "नयाँ पोस्ट" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "नयाँ प्रयोगकर्ता जानकारी संवाद" @@ -5054,10 +5429,14 @@ msgstr "नयाँ प्रयोगकर्ता जानकारी स msgid "New User List" msgstr "नयाँ प्रयोगकर्ता सूची" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "पहिले सबैभन्दा नयाँ उत्तरहरू" @@ -5071,15 +5450,15 @@ msgstr "समाचार" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "कुनै DNS प्यानल छैन" msgid "No expiry set" msgstr "" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "विशेष GIFहरू फेला परेनन्। Tenorसँग समस्या हुन सक्छ।" @@ -5119,32 +5498,35 @@ msgstr "" msgid "No likes yet" msgstr "अहिलेसम्म कुनै रुचिहरू छैन" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "{0} लाई अब अनुसरण गरिरहेको छैन" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "अहिलेसम्म कुनै सन्देश छैन" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "अहिले सम्म कुनै सूचना छैन!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "कसैलाई पनि होइन" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "लेखकबाहेक कसैले पनि यो पोस्ट उद्धृत गर्न सक्दैन।" +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "अहिलेसम्म कुनै पोस्ट छैन।" @@ -5171,7 +5553,7 @@ msgstr "कुनै परिणाम छैन" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "कुनै परिणाम भेटिएन" @@ -5179,9 +5561,9 @@ msgstr "कुनै परिणाम भेटिएन" msgid "No results found for \"{query}\"" msgstr "\"{query}\" को लागि कुनै परिणाम भेटिएन" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "{query} को लागि कुनै परिणाम भेटिएन" @@ -5189,7 +5571,7 @@ msgstr "{query} को लागि कुनै परिणाम भेटि msgid "No results." msgstr "" -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "\"{search}\" को लागि कुनै खोज परिणाम भेटिएन।" @@ -5198,7 +5580,7 @@ msgstr "\"{search}\" को लागि कुनै खोज परिणा msgid "No thanks" msgstr "हैन, धन्यवाद" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "कसैले पनि होइन" @@ -5223,59 +5605,76 @@ msgstr "कसैलाई भेटिएन। अरू कसैलाई msgid "Non-sexual Nudity" msgstr "अ-यौन नग्नता" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "फेला परेन" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "साझेदारीको बारेमा नोट" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "नोट: Bluesky एक खुला र सार्वजनिक नेटवर्क हो। यो सेटिङले तपाईंको सामग्रीको दृश्यता केवल Bluesky एप र वेबसाइटमा सीमित गर्दछ, र अन्य एपहरूले यो सेटिङलाई सम्मान नगर्न सक्छन्। तपाईंको सामग्री अन्य एपहरू र वेबसाइटहरूले लग आउट प्रयोगकर्ताहरूलाई देखाउन सक्छ।" -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "यहाँ केही छैन" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "सूचना फिल्टरहरू" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "सूचना सेटिङ्स" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "सूचना सेटिङ्स" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "सूचना ध्वनीहरू" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "सूचना ध्वनीहरू" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "सूचनाहरू" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "अहिले" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "नग्नता वा वयस्क सामग्री जसलाई यथोचित रूपमा लेबल गरिएको छैन" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "बन्द" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "ओहो!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "ठिक छ" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "हुन्छ" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "सबैभन्दा पुराना उत्तर पहिले" @@ -5331,19 +5736,19 @@ msgstr "सबैभन्दा पुराना उत्तर पहिल msgid "on<0><1/><2><3/>" msgstr "मा<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "अनबोर्डिङ रिसेट" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "एक वा बढी GIF हरूमा वैकल्पिक पाठ छैन।" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "एक वा बढी चित्रहरूमा वैकल्पिक पाठ छैन।" -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "एक वा बढी भिडियोहरूमा वैकल्पिक पाठ छैन।" @@ -5351,13 +5756,15 @@ msgstr "एक वा बढी भिडियोहरूमा वैकल msgid "Only .jpg and .png files are supported" msgstr "केवल .jpg र .png फाइलहरू समर्थित छन्" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "केवल {0} उत्तर दिन सक्छ।" -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "केवल अक्षर, संख्या, र हाइफनहरू समावेश गर्दछ" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "केवल चित्र फाइलहरू समर्थित msgid "Only WebVTT (.vtt) files are supported" msgstr "केवल WebVTT (.vtt) फाइलहरू समर्थित छन्" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "ओहो, केही गडबड भयो!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "ओहो!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "इमोजी चयनकर्ता खोल्नुहोस्" @@ -5416,7 +5822,7 @@ msgstr "फिड विकल्प मेनु खोल्नुहोस् msgid "Open full emoji list" msgstr "" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "{niceUrl} को लिङ्क खोल्नुहोस्" @@ -5424,11 +5830,11 @@ msgstr "{niceUrl} को लिङ्क खोल्नुहोस्" msgid "Open message options" msgstr "सन्देश विकल्प खोल्नुहोस्" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "मोडरेसन डिबग पृष्ठ खोल्नुहोस्" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "मुट गरिएका शब्दहरू र ट्यागहरूको सेटिङ खोल्नुहोस्" @@ -5453,16 +5859,16 @@ msgstr "" msgid "Open starter pack menu" msgstr "स्टार्टर प्याक मेनु खोल्नुहोस्" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "स्टोरीबुक पृष्ठ खोल्नुहोस्" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "प्रणाली लग खोल्नुहोस्" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "{numItems} विकल्पहरू खोल्नुहोस्" @@ -5490,11 +5896,11 @@ msgstr "डिभाइसमा क्यामेरा खोल्नुह msgid "Opens captions and alt text dialog" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "कम्पोजर खोल्नुहोस्" @@ -5502,7 +5908,7 @@ msgstr "कम्पोजर खोल्नुहोस्" msgid "Opens device photo gallery" msgstr "डिभाइस फोटो ग्यालरी खोल्नुहोस्" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "" @@ -5520,15 +5926,19 @@ msgstr "आफ्नो विद्यमान Bluesky खातामा स msgid "Opens GIF select dialog" msgstr "GIF चयन संवाद खोल्नुहोस्" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "आमन्त्रण कोडहरूको सूची खोल्नुहोस्" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "" @@ -5536,12 +5946,8 @@ msgstr "" msgid "Opens password reset form" msgstr "पासवर्ड रिसेट फारम खोल्नुहोस्" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "लिङ्क गरिएको वेबसाइट खोल्नुहोस्" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "यो प्रोफाइल खोल्नुहोस्" @@ -5558,7 +5964,7 @@ msgstr "वैकल्पिक रूपमा तल थप जानका msgid "Options:" msgstr "विकल्पहरू:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "वा यी विकल्पहरूलाई संयोजन गर्नुहोस्:" @@ -5600,6 +6006,10 @@ msgstr "अन्य खाता" msgid "Other..." msgstr "अन्य..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "" @@ -5608,7 +6018,7 @@ msgstr "" msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "हाम्रा मोडरेटरहरूले रिपोर्टहरूको समीक्षा गरी तपाईंको Bluesky च्याट पहुँचलाई निष्क्रिय गर्ने निर्णय गरेका छन्।" -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "पृष्ठ फेला परेन" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "पृष्ठ फेला परेन" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "पासवर्ड अद्यावधिक गरियो" msgid "Password updated!" msgstr "पासवर्ड अद्यावधिक गरियो!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "रोक्नुहोस्" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "भिडियो रोक्नुहोस्" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "व्यक्ति" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "@{0} द्वारा अनुसरण गरिएका व्यक्ति" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "@{0} लाई अनुसरण गर्ने व्यक्ति" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "" @@ -5704,12 +6119,12 @@ msgstr "होममा पिन गर्नुहोस्" msgid "Pin to Home" msgstr "होममा पिन गर्नुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "तपाईंको प्रोफाइलमा पिन गर्नुहोस्" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "पिन गरियो" @@ -5718,7 +6133,7 @@ msgstr "पिन गरियो" msgid "Pinned {0} to Home" msgstr "" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "पिन गरिएका फिडहरू" @@ -5726,38 +6141,38 @@ msgstr "पिन गरिएका फिडहरू" msgid "Pinned to your feeds" msgstr "तपाईंका फिडहरूमा पिन गरियो" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "चलाउनुहोस्" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "{0} चलाउनुहोस्" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "भिडियो चलाउनुहोस्" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "भिडियो चलाउनुहोस्" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "GIF चलाउनुहोस्" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "" @@ -5765,12 +6180,16 @@ msgstr "" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "कृपया तपाईंको ह्यान्डल चयन गर्नुहोस्।" #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "कृपया तपाईंको पासवर्ड चयन गर्नुहोस्।" @@ -5782,7 +6201,8 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "कृपया प्रमाणीकरण क्याप्चा पूरा गर्नुहोस्।" -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "" @@ -5804,6 +6224,7 @@ msgstr "कृपया यस एप पासवर्डको लागि msgid "Please enter a valid code." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "" @@ -5812,7 +6233,11 @@ msgstr "" msgid "Please enter a valid word, tag, or phrase to mute" msgstr "कृपया म्यूट गर्नका लागि मान्य शब्द, ट्याग, वा वाक्यांश प्रविष्ट गर्नुहोस्।" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "" #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "कृपया तपाईंको इमेल प्रविष्ट गर्नुहोस्।" -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "कृपया तपाईंको आमन्त्रण कोड प्रविष्ट गर्नुहोस्।" @@ -5853,6 +6278,19 @@ msgstr "कृपया व्याख्या गर्नुहोस् क msgid "Please explain why you think your chats were incorrectly disabled" msgstr "कृपया व्याख्या गर्नुहोस् कि तपाईंलाई किन लाग्छ तपाईंको च्याटहरू गलत रूपमा निष्क्रिय गरिए।" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "" @@ -5870,9 +6308,9 @@ msgstr "कृपया @{0} को रूपमा साइन इन गर msgid "Please verify your email" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "कृपया तपाईंको इमेल प्रमाणित गर्नुहोस्।" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "राजनीति" msgid "Porn" msgstr "पोर्न" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "पोस्ट" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "पोस्ट" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "पोस्ट" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "सबै पोस्ट गर्नुहोस्" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "{0} द्वारा पोस्ट" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "@{0} द्वारा पोस्ट" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "पोस्ट मेटियो" @@ -5919,11 +6362,14 @@ msgstr "पोस्ट मेटियो" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "पोस्ट अपलोड गर्न असफल भयो। कृपया तपाईंको इन्टरनेट कनेक्शन जाँच गर्नुहोस् र पुनः प्रयास गर्नुहोस्।" +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "पोस्ट लुकाइएको छ" @@ -5937,11 +6383,11 @@ msgstr "म्यूट गरिएको शब्दद्वारा पो msgid "Post Hidden by You" msgstr "तपाईं द्वारा पोस्ट लुकाइएको छ।" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "पोस्ट अन्तरक्रिया सेटिङ्स" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "" @@ -5954,8 +6400,10 @@ msgstr "पोस्ट भाषा" msgid "Post Languages" msgstr "पोस्ट भाषाहरू" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "पोस्ट फेला परेन" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "पोस्ट अनपिन गरियो" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "पोस्टहरू" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "पोस्टहरूलाई तिनीहरूको पाठ, ट्याग, वा दुवैको आधारमा म्यूट गर्न सकिन्छ। धेरै पोस्टमा देखिने साधारण शब्दहरू प्रयोग गर्न नपर्ने सुझाव दिन्छौं, किनकि यसले कुनै पोस्ट पनि देखाउन नसकिने स्थिति उत्पन्न गर्न सक्छ।" -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "पोस्टहरू लुकाइयो।" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "संभवतः भ्रमित गर्ने लिंक।" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "प्राथमिकता सुरक्षित गरियो।" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "पुनः जडानको प्रयास गर्न थिच्नुहोस्।" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "पुनः प्रयास गर्न थिच्नुहोस्।" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "यस खाता का अनुयायीहरू जसलाई तपाईंले पनि पछ्याउनुभएको छ हेर्न थिच्नुहोस्।" @@ -6015,40 +6469,46 @@ msgstr "अघिल्लो चित्र।" msgid "Primary Language" msgstr "प्राथमिक भाषा।" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "तपाईंको पछ्याउनेहरूलाई प्राथमिकता दिनुहोस्।" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "प्राथमिकता सूचनाहरू।" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "गोपनीयता।" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "गोपनीयता र सुरक्षा" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "गोपनीयता र सुरक्षा" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "गोपनीयता नीति" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "भिडियो प्रशोधन हुँदैछ।" @@ -6062,15 +6522,14 @@ msgstr "प्रशोधन हुँदैछ।" msgid "profile" msgstr "प्रोफाइल" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "प्रोफाइल" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "प्रोफाइल अद्यावधिक गरियो।" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "QR कोड तपाईंको क्लिपबोर्डमा प्रतिलिपि गरियो!" @@ -6119,44 +6594,52 @@ msgstr "QR कोड डाउनलोड गरियो!" msgid "QR code saved to your camera roll!" msgstr "QR कोड तपाईंको क्यामेरा रोलमा सुरक्षित गरियो!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "उद्धरण पोस्ट।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "उद्धरण पोस्ट पुन: संलग्न गरियो।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "उद्धरण पोस्ट सफलतापूर्वक अलग गरियो।" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "उद्धरण पोस्टहरू अक्षम गरिएको छ।" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "उद्धरण सेटिङ्स" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "उद्धरण।" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "यस पोस्टका उद्धरण।" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "अनियमित (जसलाई \"पोस्टरको रूले\" भनिन्छ)।" @@ -6164,8 +6647,8 @@ msgstr "अनियमित (जसलाई \"पोस्टरको रू msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "दर सीमा नाघियो – तपाईंले छोटो समयमा धेरै पटक आफ्नो हैंडल परिवर्तन गर्न प्रयास गर्नुभयो। कृपया पुन: प्रयास गर्नु अघि एक मिनेट पर्खनुहोस्।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "उद्धरण पुनः जोड्नुहोस्" @@ -6177,30 +6660,42 @@ msgstr "" msgid "Reactivate your account" msgstr "तपाईंको खाता पुन: सक्रिय गर्नुहोस्।" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "ब्लूस्काई ब्लग पढ्नुहोस्।" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "ब्लूस्काई गोपनीयता नीति पढ्नुहोस्।" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "ब्लूस्काई सेवा सर्तहरू पढ्नुहोस्।" @@ -6213,6 +6708,14 @@ msgstr "" msgid "Reason:" msgstr "कारण:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "हालको खोजीहरू" @@ -6234,8 +6737,8 @@ msgstr "" msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "वार्तालाप पुनः लोड गर्नुहोस्" @@ -6244,10 +6747,9 @@ msgstr "वार्तालाप पुनः लोड गर्नुहो #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "हटाउनुहोस्" @@ -6259,17 +6761,17 @@ msgstr "{displayName} लाई स्टार्टर प्याकबा msgid "Remove {historyItem}" msgstr "" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "खाता हटाउनुहोस्" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "संलग्नक हटाउनुहोस्" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "अवतार हटाउनुहोस्" @@ -6284,24 +6786,22 @@ msgstr "एम्बेड हटाउनुहोस्" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "फिड हटाउनुहोस्" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "फिड हटाउने?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "मेरो फिडबाट हटाउनुहोस्" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "छिटो पहुँचबाट हटाउने?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "सुरक्षित फिडबाट हटाउनुहोस्" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "तस्बिर हटाउनुहोस्" @@ -6332,12 +6831,8 @@ msgstr "तपाईंको सूचीबाट मौन शब्द ह msgid "Remove profile" msgstr "प्रोफाइल हटाउनुहोस्" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "उद्धरण हटाउनुहोस्" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "पुनःपोस्ट हटाउनुहोस्" @@ -6345,7 +6840,7 @@ msgstr "पुनःपोस्ट हटाउनुहोस्" msgid "Remove subtitle file" msgstr "उपशीर्षक फाइल हटाउनुहोस्" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "यस फिडलाई तपाईँको सुरक्षित फिडहरूबाट हटाउनुहोस्" @@ -6364,11 +6859,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "लेखकद्वारा हटाइयो" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "तपाईँद्वारा हटाइयो" @@ -6377,10 +6872,6 @@ msgstr "तपाईँद्वारा हटाइयो" msgid "Removed from list" msgstr "सूचीबाट हटाइयो" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "मेरो फिडहरूबाट हटाइयो" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "सुरक्षित फिडहरूबाट हटाइयो" @@ -6395,34 +6886,36 @@ msgstr "तपाईँको फिडहरूबाट हटाइयो" msgid "Removed verification" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "उद्धृत पोस्ट हटाउनुहोस्" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "डिस्कभरसँग प्रतिस्थापन गर्नुहोस्" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "उत्तरहरू" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "उत्तरहरू निष्क्रिय गरियो" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "यो पोस्टका उत्तरहरू निष्क्रिय गरिएका छन्।" -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "उत्तर दिनुहोस्" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -6436,50 +6929,55 @@ msgstr "थ्रेड लेखकद्वारा उत्तर लुक msgid "Reply Hidden by You" msgstr "तपाईँद्वारा उत्तर लुकाइएको" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "उत्तर सेटिङ्स" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "उत्तर सेटिङ्स थ्रेडका लेखकद्वारा चयन गरिन्छ" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "<0><1/> लाई उत्तर दिनुहोस्" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "अवरुद्ध पोस्टलाई उत्तर दिनुहोस्" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "पोस्टलाई उत्तर दिनुहोस्" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "तपाईँलाई उत्तर दिनुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "उत्तर दृश्यता अद्यावधिक गरियो" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "उत्तर सफलतापूर्वक लुकाइएको" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "फिड रिपोर्ट गर्नुहोस्" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "सन्देश रिपोर्ट गर्नुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "पोस्ट रिपोर्ट गर्नुहोस्" @@ -6567,25 +7065,26 @@ msgstr "यस स्टार्टर प्याकलाई रिपोर msgid "Report this user" msgstr "यस प्रयोगकर्तालाई रिपोर्ट गर्नुहोस्" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "पुनःपोस्ट गर्नुहोस्" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "पुनःपोस्ट गर्नुहोस्" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "पुनः पोस्ट गर्नुहोस् वा पोस्टलाई उद्धृत गर्नुहोस्" @@ -6594,26 +7093,38 @@ msgstr "पुनः पोस्ट गर्नुहोस् वा पो msgid "Reposted By" msgstr "पुनःपोस्ट गरियो" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "{0} द्वारा पुनःपोस्ट गरियो" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "<0><1/> द्वारा पुनःपोस्ट गरियो" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "तपाईँद्वारा पुनःपोस्ट गरियो" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "यस पोस्टका पुनःपोस्टहरू" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" msgstr "" #: src/view/com/modals/ChangePassword.tsx:253 @@ -6621,8 +7132,8 @@ msgstr "" msgid "Request Code" msgstr "कोडको अनुरोध गर्नुहोस्" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "पोस्ट गर्नु अघि वैकल्पिक पाठ आवश्यक छ" @@ -6630,7 +7141,7 @@ msgstr "पोस्ट गर्नु अघि वैकल्पिक प msgid "Require an email code to sign in to your account." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "यस प्रदायकका लागि आवश्यक छ" @@ -6642,10 +7153,6 @@ msgstr "तपाईँको क्षेत्रमा आवश्यक छ msgid "Resend" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "ईमेल पुनः पठाउनुहोस्" msgid "Resend Verification Email" msgstr "प्रमाणीकरण ईमेल पुनः पठाउनुहोस्" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "कोड रिसेट गर्नुहोस्" @@ -6667,8 +7180,8 @@ msgstr "कोड रिसेट गर्नुहोस्" msgid "Reset Code" msgstr "रिसेट कोड" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "प्रारम्भिक अवस्थालाई रिसेट गर्नुहोस्" @@ -6687,21 +7200,23 @@ msgstr "अन्तिम कार्य पुन: प्रयास गर #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "पुन: प्रयास गर्नुहोस्" @@ -6721,19 +7236,19 @@ msgstr "गृहपृष्ठमा फर्कनुहोस्" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "अघिल्लो पृष्ठमा फर्कनुहोस्" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "सुरक्षित गर्नुहोस्" @@ -6762,15 +7276,13 @@ msgstr "सुरक्षित गर्नुहोस्" msgid "Save birthday" msgstr "जन्मदिन सुरक्षित गर्नुहोस्" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "परिवर्तनहरू सुरक्षित गर्नुहोस्" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "परिवर्तनहरू सुरक्षित गर्नुहोस्" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "QR कोड सुरक्षित गर्नुहोस्" msgid "Save to my feeds" msgstr "मेरो फिडहरूमा सुरक्षित गर्नुहोस्" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "सुरक्षित फिडहरू" @@ -6802,18 +7314,14 @@ msgstr "सुरक्षित फिडहरू" msgid "Saved to your feeds" msgstr "तपाईंको फिडहरूमा सुरक्षित गरियो" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "तपाईंको प्रोफाइलका कुनै पनि परिवर्तन सुरक्षित गर्दछ" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "चित्र काट्ने सेटिङ सुरक्षित गर्दछ" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "नमस्ते भन्नुहोस्!" @@ -6826,16 +7334,16 @@ msgstr "विज्ञान" msgid "Scroll to top" msgstr "माथि स्क्रोल गर्नुहोस्" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "खोज्नुहोस्" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -6861,7 +7369,7 @@ msgstr "\"{query}\" को लागि खोज्नुहोस्" msgid "Search for \"{searchText}\"" msgstr "“{searchText}” को लागि खोज्नुहोस्" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "अरूलाई सिफारिस गर्न चाहिने फिडहरूको लागि खोज्नुहोस्।" @@ -6877,10 +7385,14 @@ msgstr "" msgid "Search for posts, users, or feeds" msgstr "" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "GIF हरूको लागि खोज्नुहोस्।" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "" @@ -6890,12 +7402,12 @@ msgstr "" msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "प्रोफाइलहरूको लागि खोज्नुहोस्।" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "टेनरमा खोज्नुहोस्।" @@ -6903,7 +7415,7 @@ msgstr "टेनरमा खोज्नुहोस्।" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "" @@ -6912,10 +7424,6 @@ msgstr "" msgid "Security step required" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "सुरक्षा चरण आवश्यक।" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "" @@ -6936,14 +7444,31 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Bluesky मा जागिरहरू हेर्नुहोस्।" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "यो मार्गदर्शक हेर्नुहोस्।" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "स्लाइडर खोज्नुहोस्। अगाडि र पछाडि जान तीर कुञ्जीहरू प्रयोग गर्नुहोस्, र प्ले/पज गर्न स्पेसबार प्रयोग गर्नुहोस्।" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "रंग चयन गर्नुहोस्।" @@ -6988,7 +7513,7 @@ msgstr "अस्तित्वमा रहेको खाताबाट च msgid "Select GIF" msgstr "GIF चयन गर्नुहोस्।" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "GIF \"{0}\" चयन गर्नुहोस्।" @@ -6996,6 +7521,11 @@ msgstr "GIF \"{0}\" चयन गर्नुहोस्।" msgid "Select how long to mute this word for." msgstr "यो शब्द कति समयसम्म म्यूट गर्ने चयन गर्नुहोस्।" +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "भाषा चयन गर्नुहोस्..." @@ -7004,7 +7534,7 @@ msgstr "भाषा चयन गर्नुहोस्..." msgid "Select languages" msgstr "भाषाहरू चयन गर्नुहोस्।" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "" @@ -7045,12 +7575,12 @@ msgstr "" msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "तपाईंको सदस्यता प्राप्त फिडहरूले समेट्ने भाषाहरू चयन गर्नुहोस्। केही पनि चयन नगरिएमा, सबै भाषाहरू देखाइनेछ।" -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "आफ्नो जन्म मिति चयन गर्नुहोस्" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "तलका विकल्पहरूबाट आफ्नो रुचिहरू चयन गर्नुहोस्" @@ -7058,7 +7588,11 @@ msgstr "तलका विकल्पहरूबाट आफ्नो रु msgid "Select your preferred language for translations in your feed." msgstr "आफ्नो फिडमा अनुवादका लागि मनपर्ने भाषा चयन गर्नुहोस्।" -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "" @@ -7066,17 +7600,9 @@ msgstr "" msgid "Send a neat website!" msgstr "सुन्दर वेबसाइट पठाउनुहोस्!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "पुष्टिकरण इमेल पठाउनुहोस्" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "इमेल पठाउनुहोस्" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "इमेल पठाउनुहोस्" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "प्रतिक्रिया पठाउनुहोस्" @@ -7095,7 +7621,7 @@ msgstr "प्रतिक्रिया पठाउनुहोस्" msgid "Send message" msgstr "सन्देश पठाउनुहोस्" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "" @@ -7114,20 +7640,20 @@ msgstr "रिपोर्ट पठाउनुहोस्" msgid "Send report to {0}" msgstr "रिपोर्ट पठाउनुहोस् {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "सत्यापन इमेल पठाउनुहोस्" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "प्रत्यक्ष सन्देश मार्फत पठाउनुहोस्" @@ -7143,7 +7669,7 @@ msgstr "सर्भर ठेगाना" msgid "Set app icon to {0}" msgstr "" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "जन्म मिति सेट गर्नुहोस्" @@ -7159,13 +7685,57 @@ msgstr "तपाईंको खाता सेट गर्नुहोस् msgid "Sets email for password reset" msgstr "पासवर्ड रीसेटको लागि इमेल सेट गर्दछ" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "सेटिङ्स" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "एक शानदार कथा साझा गर्नुहो msgid "Share a fun fact!" msgstr "एक रमाइलो तथ्य साझा गर्नुहोस्!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "तथापि साझा गर्नुहोस्" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "लिङ्क साझा गर्नुहोस्" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "लिङ्क साझा गर्नुहोस्" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "लिङ्क साझा संवाद" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "" @@ -7247,8 +7812,8 @@ msgstr "यस स्टार्टर प्याकलाई साझा msgid "Share this starter pack and help people join your community on Bluesky." msgstr "यस स्टार्टर प्याकलाई साझा गर्नुहोस् र तपाईंको समुदायमा मानिसहरूलाई ब्लूस्काईमा सामेल हुन मद्दत गर्नुहोस्।" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "" msgid "Share your favorite feed!" msgstr "तपाईंको मनपर्ने फीड साझा गर्नुहोस्!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "साझा गरिएको प्राथमिकता परीक्षक" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "लिङ्क गरिएका वेबसाइटलाई साझा गर्छ" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "देखाउनुहोस्" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "विकल्पात्मक पाठ देखाउनुहोस्" @@ -7303,8 +7864,8 @@ msgstr "" msgid "Show hidden replies" msgstr "लुकेका उत्तरहरू देखाउनुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "यसको जस्तो कम देखाउनुहोस्" @@ -7312,55 +7873,63 @@ msgstr "यसको जस्तो कम देखाउनुहोस्" msgid "Show list anyway" msgstr "सूचीलाई यथास्थिति देखाउनुहोस्" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "थप देखाउनुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "यसको जस्तो थप देखाउनुहोस्" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "मुट गरिएका उत्तरहरू देखाउनुहोस्" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "उद्धरण पोस्टहरू देखाउनुहोस्" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "उत्तरहरू देखाउनुहोस्" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "तपाईंले अनुसरण गर्ने व्यक्तिहरूको उत्तरहरू सबै अन्य उत्तरहरूभन्दा पहिले देखाउनुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "सबैको लागि उत्तर देखाउनुहोस्" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "पुनःपोस्टहरू देखाउनुहोस्" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "तपाईंको अनुसरण गर्ने फीडमा तपाईंको सहेजिएका फीडहरूको नमूना देखाउनुहोस्" @@ -7372,16 +7941,17 @@ msgstr "चेतावनी देखाउनुहोस्" msgid "Show warning and filter from feeds" msgstr "चेतावनी देखाउनुहोस् र फीडबाट फिल्टर गर्नुहोस्" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "" @@ -7390,14 +7960,15 @@ msgstr "" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "सूचीबद्ध नभएको खातामा लगइन msgid "Sign in to Bluesky or create a new account" msgstr "ब्लूस्काईमा साइन इन गर्नुहोस् वा नयाँ खाता सिर्जना गर्नुहोस्" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "साइन आउट गर्नुहोस्" @@ -7444,8 +8020,8 @@ msgstr "साइन आउट गर्नुहोस्" msgid "Sign Out" msgstr "साइन आउट गर्नुहोस्" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "साइन आउट गर्नुहोस्?" @@ -7459,12 +8035,12 @@ msgstr "साइन इन आवश्यक छ" msgid "Signed in as @{0}" msgstr "को रूपमा साइन इन गरिएको छ @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "समान खाता" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "छोड्नुहोस्" @@ -7472,12 +8048,11 @@ msgstr "छोड्नुहोस्" msgid "Skip this flow" msgstr "यो प्रवाह छोड्नुहोस्" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "सानो" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "" @@ -7490,11 +8065,11 @@ msgstr "सॉफ़्टवेयर विकासकर्ता" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "तपाईंलाई मन पर्ने अन्य फीडहरू" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "केही व्यक्तिहरू उत्तर दिन सक्छन्" @@ -7510,10 +8085,11 @@ msgstr "" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "" -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "केहि गलत भयो" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "केहि गलत भयो, कृपया पुन: प्रयास गर्नुहोस्" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "केहि गलत भयो, कृपया पुन: प्रयास गर्नुहोस्।" -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "केहि गलत भयो!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "" @@ -7539,20 +8118,23 @@ msgstr "" msgid "Something wrong? Let us know." msgstr "" -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "उत्तरहरू वर्गीकरण गर्नुहोस्" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "उत्तरहरूलाई यसद्वारा वर्गीकरण गर्नुहोस्" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "त्यसै पोस्टका उत्तरहरूलाई यसद्वारा वर्गीकरण गर्नुहोस्:" @@ -7579,7 +8161,7 @@ msgstr "स्प्याम; अत्यधिक उल्लेखहरू msgid "Sports" msgstr "खेलकुद" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "" @@ -7601,9 +8183,9 @@ msgstr "" msgid "Start chat with {displayName}" msgstr "{displayName} सँग च्याट सुरु गर्नुहोस्" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "स्टार्टर प्याक" @@ -7611,12 +8193,12 @@ msgstr "स्टार्टर प्याक" msgid "Starter pack by {0}" msgstr "{0} द्वारा स्टार्टर प्याक" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "तपाईंको द्वारा स्टार्टर प्याक" @@ -7638,19 +8220,21 @@ msgstr "स्टार्टर प्याकहरूले तपाईं msgid "Status Page" msgstr "स्थिति पृष्ठ" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "चरण {0} को {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "भण्डारण मेटिएको छ, अब तपाईंले अनुप्रयोग पुनः सुरु गर्न आवश्यक छ।" -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "स्टोरीबुक" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "" @@ -7676,10 +8260,14 @@ msgstr "" msgid "Subscribe" msgstr "सदस्यता लिनुहोस्" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "यी लेबलहरू प्रयोग गर्न @{0} लाई सदस्यता लिनुहोस्:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "लेबलरलाई सदस्यता लिनुहोस्" @@ -7692,8 +8280,12 @@ msgstr "यस लेबलरलाई सदस्यता लिनुहो msgid "Subscribe to this list" msgstr "यस सूचीलाई सदस्यता लिनुहोस्" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "सफलता!" @@ -7705,7 +8297,7 @@ msgstr "" msgid "Suggested Accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "तपाईंका लागि सुझाव गरिएको" @@ -7714,26 +8306,26 @@ msgstr "तपाईंका लागि सुझाव गरिएको" msgid "Suggestive" msgstr "सुझावात्मक" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "सहयोग" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "खाता स्विच गर्नुहोस्" @@ -7742,24 +8334,24 @@ msgstr "खाता स्विच गर्नुहोस्" msgid "Switch Account" msgstr "खाता स्विच गर्नुहोस्" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "सिस्टम" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "सिस्टम लग" @@ -7767,6 +8359,18 @@ msgstr "सिस्टम लग" msgid "Tags only" msgstr "केवल टैगहरू" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "हाम्रोलाई थोरै बढी बताउनुह msgid "Terms" msgstr "नियमहरू" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "सेवाका नियमहरू" @@ -7848,10 +8454,6 @@ msgstr "पाठ इनपुट क्षेत्र" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "धन्यवाद! तपाईंको ईमेल सफलतापूर्वक प्रमाणित गरिएको छ।" - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "धन्यवाद। तपाईंको रिपोर्ट पठाइएको छ।" @@ -7864,28 +8466,28 @@ msgstr "धन्यवाद, तपाईंले तपाईंको ई msgid "That contains the following:" msgstr "यसमा तलका सामग्रीहरू छन्:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "त्यो हैंडल पहिले नै लिइएको छ।" - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "त्यो स्टार्टर प्याक फेला पार्न सकिएन।" +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "त्यति हो, साथीहरू!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "खाता अनब्लक गरेपछि तपाईं सँग अन्तर्क्रिया गर्न सक्षम हुनेछ।" @@ -7900,7 +8502,7 @@ msgstr "" msgid "The author of this thread has hidden this reply." msgstr "यस थ्रेडका लेखकले यस उत्तरलाई लुकेको छ।" -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "ब्लूस्काई वेब अनुप्रयोग" @@ -7920,10 +8522,6 @@ msgstr "डिस्कभर फीड" msgid "The Discover feed now knows what you like" msgstr "डिस्कभर फीडले अब तपाईंलाई के मनपर्छ थाहा पाएको छ।" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "" - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "अनुप्रयोगमा अनुभव राम्रो छ। अब ब्लूस्काई डाउनलोड गर्नुहोस् र हामी तपाईंको स्थानबाट पुनः सुरु गर्नेछौं।" @@ -7944,8 +8542,16 @@ msgstr "तलका लेबलहरू तपाईंको सामग् msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "पोस्ट मेटाइएको हुन सक्छ।" @@ -7953,8 +8559,9 @@ msgstr "पोस्ट मेटाइएको हुन सक्छ।" msgid "The Privacy Policy has been moved to <0/>" msgstr "गोपनीयता नीति <0/> मा सारिएको छ।" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." msgstr "" #: src/lib/hooks/useCleanError.ts:40 @@ -7982,7 +8589,7 @@ msgstr "सेवाका नियमहरू <0/> मा सारिएक msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "तपाईंले दिएको प्रमाणिकरण कोड अमान्य छ। कृपया पक्का गर्नुहोस् कि तपाईंले सहि प्रमाणिकरण लिंक प्रयोग गर्नुभएको छ वा नयाँ कोडको अनुरोध गर्नुहोस्।" -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "थिम" @@ -7990,14 +8597,14 @@ msgstr "थिम" msgid "There is no time limit for account deactivation, come back any time." msgstr "खाता निष्क्रिय गर्नको लागि कुनै समय सीमा छैन, कुनै पनि समय फर्कनुहोस्।" -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "टेणरमा जडान गर्न समस्या आयो।" #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "सर्भरलाई सम्पर्क गर्न समस्या आयो।" @@ -8006,17 +8613,12 @@ msgstr "सर्भरलाई सम्पर्क गर्न समस् msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "सर्भरलाई सम्पर्क गर्न समस्या आयो, कृपया आफ्नो इन्टरनेट जडान जाँच गर्नुहोस् र पुन: प्रयास गर्नुहोस्।" -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "तपाईंको सर्भरलाई सम्पर्क गर्न समस्या आयो।" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "सूचनाहरू प्राप्त गर्न समस्या आयो। पुन: प्रयास गर्न यहाँ ट्याप गर्नुहोस्।" -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "पोस्टहरू प्राप्त गर्न समस्या आयो। पुन: प्रयास गर्न यहाँ ट्याप गर्नुहोस्।" @@ -8037,7 +8639,7 @@ msgstr "तपाईंका सूची प्राप्त गर्न msgid "There was an issue fetching your service info" msgstr "तपाईंको सेवा जानकारी प्राप्त गर्न समस्या आयो।" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "यो फीड मेटाउन समस्या आयो। कृपया आफ्नो इन्टरनेट जडान जाँच गर्नुहोस् र पुन: प्रयास गर्नुहोस्।" @@ -8052,9 +8654,9 @@ msgstr "तपाईंको रिपोर्ट पठाउन समस् msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "तपाईंको फीडहरू अपडेट गर्न समस्या आयो, कृपया आफ्नो इन्टरनेट जडान जाँच गर्नुहोस् र पुन: प्रयास गर्नुहोस्।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "तपाईंको फीडहरू अपडेट गर्न msgid "There was an issue! {0}" msgstr "समस्या आयो! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "समस्या आयो! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "समस्या आयो। कृपया आफ्नो इन्टरनेट जडान जाँच गर्नुहोस् र पुन: प्रयास गर्नुहोस्।" -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "अनुप्रयोगमा अप्रत्याशित समस्या आयो। कृपया हामीलाई बताउनुहोस् यदि यो तपाईंलाई भएको छ!" @@ -8089,7 +8691,7 @@ msgstr "अनुप्रयोगमा अप्रत्याशित स msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "ब्लूस्काईमा नयाँ प्रयोगकर्ताहरूको भीड भएको छ! हामी तपाईंको खाता सकेसम्म चाँडो सक्रिय गर्नेछौं।" -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "यी सेटिङ्स केवल फलोइङ फीडमा लागू हुन्छ।" @@ -8146,7 +8748,7 @@ msgstr "यो सामग्री {0} द्वारा होस्ट ग msgid "This content is not available because one of the users involved has blocked the other." msgstr "यो सामग्री उपलब्ध छैन किनकि संलग्न भएका एक प्रयोगकर्ताले अर्को प्रयोगकर्तालाई ब्लक गरेको छ।" -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "यो सामग्री बिना Bluesky खाता प्रयोग नगरी हेर्न सकिँदैन।" @@ -8158,6 +8760,10 @@ msgstr "" msgid "This email is already associated with your account." msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "यो सुविधा बेटामा छ। तपाईं <0>यो ब्लगपोस्ट मा रिपोजिटरी निर्यातहरूको बारेमा थप पढ्न सक्नुहुन्छ।" @@ -8170,7 +8776,7 @@ msgstr "" msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "यो सुविधा App पासवर्ड प्रयोग गर्दा उपलब्ध छैन। कृपया आफ्नो मुख्य पासवर्ड सँग साइन इन गर्नुहोस्।" -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "यो फिड अहिले उच्च ट्राफिक प्राप्त गर्दैछ र अस्थायी रूपमा उपलब्ध छैन। कृपया पछि प्रयास गर्नुहोस्।" @@ -8209,11 +8815,11 @@ msgstr "यो लेबल लेखक द्वारा लागू गर msgid "This label was applied by you." msgstr "यो लेबल तपाईं द्वारा लागू गरियो।" -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "यस लेबलरले कुन लेबलहरू प्रकाशित गर्छ भन्ने घोषणा गरेको छैन, र यो सक्रिय नहुन सक्छ।" -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "यो लिंक तपाईंलाई निम्न वेबसाइटमा लैजान्छ:" @@ -8233,29 +8839,28 @@ msgstr "" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "यो मोडरेशन सेवा उपलब्ध छैन। थप विवरणको लागि तल हेर्नुहोस्। यदि यो समस्या जारी रहन्छ भने, हामीलाई सम्पर्क गर्नुहोस्।" -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "यो पोस्ट <0>{0} मा सिर्जना गरिएको दावी गर्दछ, तर पहिलो पटक Bluesky द्वारा <1>{1} मा देखिएको थियो।" -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "यो पोस्ट हटाइयो।" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "यो पोस्ट फिड र थ्रेडहरूबाट लुकेको हुनेछ। यसलाई उल्टाउन सकिँदैन।" -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "यस पोस्टको लेखकले उद्धरण पोस्टहरू निष्क्रिय गरेको छ।" @@ -8263,11 +8868,11 @@ msgstr "यस पोस्टको लेखकले उद्धरण प msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "यो जवाफ तपाईंको थ्रेडको तल लुकेको सेक्सनमा क्रमबद्ध गरिनेछ र subsequent जवाफहरूको लागि - तपाईं र अरूसँग - अधिसूचनाहरू म्यूट गरिनेछ।" -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "यस सेवाले सेवा सर्तहरू वा गोपनीयता नीति प्रदान गरेको छैन।" @@ -8275,6 +8880,10 @@ msgstr "यस सेवाले सेवा सर्तहरू वा ग msgid "This should create a domain record at:" msgstr "यसले निम्न स्थानमा एक डोमेन रेकर्ड सिर्जना गर्नु पर्छ:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" @@ -8316,16 +8925,18 @@ msgstr "यो प्रयोगकर्ता कसैलाई पनि msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "यसले \"{0}\"लाई तपाईंको म्यूटेड शब्दहरूबाट मेटाउनेछ। तपाईं यसलाई पछि पुनः थप्न सक्नुहुन्छ।" -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "यसले @{0}लाई क्विक एक्सेस सूचीबाट हटाउनेछ।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "यसले तपाईंको पोस्टलाई यो उद्धरण पोस्टबाट सबै प्रयोगकर्ताहरूको लागि हटाउनेछ र यसलाई एक स्थानधारक सँग प्रतिस्थापित गर्नेछ।" -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "" @@ -8334,24 +8945,27 @@ msgstr "" msgid "Thread preferences" msgstr "थ्रेड प्राथमिकताहरू" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "थ्रेड प्राथमिकताहरू" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "थ्रेडेड मोड" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "थ्रेड प्राथमिकताहरू" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "" @@ -8376,42 +8990,56 @@ msgstr "यो रिपोर्ट तपाईं कुनलाई पठ msgid "Today" msgstr "आज" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "ड्रपडाउन टगल गर्नुहोस्" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "वयस्क सामग्री सक्षम वा असक्षम गर्न टगल गर्नुहोस्" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "शीर्ष" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "अनुवाद गर्नुहोस्" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "" @@ -8428,14 +9056,10 @@ msgstr "पुनः प्रयास गर्नुहोस्" msgid "TV" msgstr "टीभी" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "दुई-कारक प्रमाणीकरण (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "यहाँ तपाईंको सन्देश टाइप गर्नुहोस्" @@ -8453,7 +9077,7 @@ msgstr "जडान गर्न असमर्थ। कृपया आफ #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "तपाईंको सेवा सम्पर्क गर्न msgid "Unable to delete" msgstr "हटाउन असमर्थ" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "ब्लक हटाउनुहोस्" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "ब्लक हटाउनुहोस्" @@ -8486,7 +9126,7 @@ msgstr "ब्लक हटाउनुहोस्" msgid "Unblock account" msgstr "खाता ब्लक हटाउनुहोस्" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "खाता ब्लक हटाउन चाहानुहुन्छ?" @@ -8495,13 +9135,13 @@ msgstr "खाता ब्लक हटाउन चाहानुहुन् msgid "Unblock list" msgstr "" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "पुनःपोस्टलाई रद्द गर्नुहोस्" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "अनफोलो गर्नुहोस्" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "{0} लाई अनफोलो गर्नुहोस्" @@ -8523,7 +9163,7 @@ msgstr "खाता अनफोलो गर्नुहोस्" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "" @@ -8555,8 +9195,8 @@ msgstr "म्यूट हटाउनुहोस्" msgid "Unmute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "वार्तालाप म्यूट हटाउनुहोस msgid "Unmute list" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "थ्रेड म्यूट हटाउनुहोस्" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "भिडियो म्यूट हटाउनुहोस्" @@ -8597,8 +9237,8 @@ msgstr "" msgid "Unpin from home" msgstr "होमबाट अनपिन गर्नुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "प्रोफाइलबाट अनपिन गर्नुहोस्" @@ -8614,8 +9254,8 @@ msgstr "" msgid "Unpinned from your feeds" msgstr "तपाईंको फिडहरूबाट अनपिन गरिएको" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "" @@ -8636,7 +9276,7 @@ msgstr "यस लेबलरबाट सदस्यता समाप्त msgid "Unsubscribed from list" msgstr "सूचीबाट सदस्यता समाप्त गरिएको" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "समर्थन नगर्ने भिडियो प्रकार" @@ -8662,8 +9302,8 @@ msgstr "सूचीहरूमा <0>{displayName} अपडेट गर #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "" @@ -8676,17 +9316,17 @@ msgstr "{domain} मा अपडेट गर्नुहोस्" msgid "Update your email" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "कोट अट्याचमेन्ट अपडेट गर्न असफल" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "उत्तर दृश्यता अपडेट गर्न असफल" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "अपडेट गर्दै..." @@ -8698,20 +9338,20 @@ msgstr "फोटो अपलोड गर्नुहोस्" msgid "Upload a text file to:" msgstr "टेक्स्ट फाइल अपलोड गर्नुहोस्:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "क्यामेरा बाट अपलोड गर्नुहोस्" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "फाइल बाट अपलोड गर्नुहोस्" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "लाइब्रेरी बाट अपलोड गर्नुह msgid "Uploading images..." msgstr "तस्विरहरू अपलोड गर्दै..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "लिंक थम्बनेल अपलोड गर्दै..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "भिडियो अपलोड गर्दै..." @@ -8761,6 +9401,10 @@ msgstr "सिफारिस गरिएको प्रयोग गर्न msgid "Use this to sign in to the other app along with your handle." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "द्वारा प्रयोग गरिएको:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "प्रयोगकर्ता सूची अद्यावधिक गरियो" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "प्रयोगकर्ता नाम वा ईमेल ठेगाना" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "<0>@{0} द्वारा फलो गरिएका प्रयोगकर्ताहरू" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "मैले फलो गरेका प्रयोगकर्ताहरू" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "\"{0}\" मा रहेका प्रयोगकर्ताहरू" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "" @@ -8846,11 +9502,11 @@ msgstr "मूल्य:" msgid "Verification failed, please try again." msgstr "" -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "" @@ -8870,8 +9526,15 @@ msgstr "" msgid "Verify account" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "" @@ -8880,21 +9543,20 @@ msgstr "" msgid "Verify DNS Record" msgstr "DNS रेकर्ड प्रमाणित गर्नुहोस्" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "ईमेल प्रमाणिकरण संवाद" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "पाठ फाइल प्रमाणित गर्नुहोस msgid "Verify this account?" msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "तपाईंको ईमेल प्रमाणित गर्नुहोस्" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "तपाईंको ईमेल प्रमाणित गर्नुहोस्" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "संस्करण {appVersion}" +msgid "Version {0}" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "भिडियो" @@ -8928,7 +9598,7 @@ msgstr "भिडियो" msgid "Video failed to process" msgstr "भिडियो प्रोसेस गर्न असफल" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "" @@ -8942,15 +9612,15 @@ msgstr "" msgid "Video Games" msgstr "भिडियो खेल" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "भिडियो फेला पारिएन।" @@ -8958,11 +9628,11 @@ msgstr "भिडियो फेला पारिएन।" msgid "Video settings" msgstr "भिडियो सेटिङ्गहरू" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "भिडियो अपलोड गरियो" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "भिडियो: {0}" @@ -8979,11 +9649,11 @@ msgstr "" msgid "View {0}'s avatar" msgstr "{0} को अवतार हेर्नुहोस्" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "{0} को प्रोफाइल हेर्नुहोस्" @@ -8991,7 +9661,7 @@ msgstr "{0} को प्रोफाइल हेर्नुहोस्" msgid "View {displayName}'s profile" msgstr "{displayName} को प्रोफाइल हेर्नुहोस्" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "अवरोधित प्रयोगकर्ताको प्रोफाइल हेर्नुहोस्" @@ -9009,7 +9679,6 @@ msgstr "डिबग प्रविष्टि हेर्नुहोस्" msgid "View details" msgstr "विवरण हेर्नुहोस्" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "कपिराइट उल्लङ्घन रिपोर्ट गर्नका लागि विवरण हेर्नुहोस्" @@ -9022,23 +9691,23 @@ msgstr "पूरा थ्रेड हेर्नुहोस्" msgid "View information about these labels" msgstr "यी लेबलहरूको जानकारी हेर्नुहोस्" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "प्रोफाइल हेर्नुहोस्" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "अवतार हेर्नुहोस्" @@ -9054,28 +9723,28 @@ msgstr "" msgid "View users who like this feed" msgstr "यो फिड मन पराउने प्रयोगकर्ताहरू हेर्नुहोस्" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "तपाईंको अवरोधित खाता हेर्नुहोस्" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "तपाईंका फिडहरू हेर्नुहोस् र अझ बढी अन्वेषण गर्नुहोस्" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "तपाईंका मोडरेशन सूचीहरू हेर्नुहोस्" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "तपाईंका म्युट गरिएको खाता हेर्नुहोस्" @@ -9083,8 +9752,8 @@ msgstr "तपाईंका म्युट गरिएको खाता msgid "View your verifications" msgstr "" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "" @@ -9092,16 +9761,20 @@ msgstr "" msgid "Views video in immersive mode" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "साइट भ्रमण गर्नुहोस्" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "ध्वनि" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "सामग्रीलाई चेतावनी दिनुहो msgid "Watch now" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "" + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "हाम्रो द्वारा त्यहाँ कुनै परिणाम फेला पारेन।" @@ -9128,7 +9809,7 @@ msgstr "हाम्रो द्वारा त्यहाँ कुनै msgid "We couldn't find any results for that topic." msgstr "" -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "हामी यो कुराकानी लोड गर्न असमर्थ भयौं।" @@ -9136,6 +9817,10 @@ msgstr "हामी यो कुराकानी लोड गर्न अ msgid "We estimate {estimatedTime} until your account is ready." msgstr "हामी अनुमान गर्दैछौं कि तपाईंको खाता तयार हुन {estimatedTime} लाग्नेछ।" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "हामीले अर्को प्रमाणीकरण इमेल <0>{0} मा पठाएका छौं।" @@ -9148,15 +9833,15 @@ msgstr "हामी आशा गर्छौं कि तपाईंला msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "हामी तपाईंको पछ्याउनेहरूबाट पोस्टहरू समाप्त गर्‍यौं। यहाँ <0/> बाट नवीनतम पोस्ट छ।" -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "हामी यो निर्धारण गर्न असमर्थ भयौं कि तपाईंलाई भिडियो अपलोड गर्न अनुमति छ कि छैन। कृपया पुन: प्रयास गर्नुहोस्।" @@ -9164,10 +9849,14 @@ msgstr "हामी यो निर्धारण गर्न असमर msgid "We were unable to load your birth date preferences. Please try again." msgstr "हामी तपाईंको जन्म मिति प्राथमिकताहरू लोड गर्न असमर्थ भयौं। कृपया पुन: प्रयास गर्नुहोस्।" -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "हामी अहिले तपाईंका कन्फिगर गरिएका लेबलरहरू लोड गर्न असमर्थ भयौं।" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "हामी जडान गर्न असमर्थ भयौं। कृपया पुन: प्रयास गर्नुहोस् र तपाईंको खाता सेटअप जारी राख्नुहोस्। यदि यो असफल रहन्छ भने, तपाईं यो फ्लो छोड्न सक्नुहुन्छ।" @@ -9176,7 +9865,7 @@ msgstr "हामी जडान गर्न असमर्थ भयौं msgid "We will let you know when your account is ready." msgstr "हामी तपाईंलाई तपाईंको खाता तयार भएपछि जानकारी दिनेछौं।" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -9184,6 +9873,22 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "हामी यसलाई तपाईंको अनुभव अनुकूलित गर्न प्रयोग गर्नेछौं।" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "हामी नेटवर्क समस्या भोगिरह msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "हामी तपाईंलाई हाम्रो सँग सामेल गर्न पाउँदा धेरै उत्साहित छौं!" @@ -9205,15 +9910,15 @@ msgstr "हामीलाई खेद छ, तर हामी यो सू msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "हामीलाई खेद छ, तर हामी तपाईंका म्यूट गरिएका शब्दहरू लोड गर्न असमर्थ भयौं। कृपया पुन: प्रयास गर्नुहोस्।" -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "हामीलाई खेद छ, तर तपाईंको खोजी पूरा गर्न सकिएन। कृपया केही मिनेटमा पुन: प्रयास गर्नुहोस्।" -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "हामीलाई खेद छ! तपाईंले जवाफ दिइरहेको पोस्ट मेटाइ सकेको छ।" -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "हामीलाई खेद छ! हामी तपाईंले खोजेको पृष्ठ फेला पार्न सक्दैनौं।" @@ -9222,6 +9927,26 @@ msgstr "हामीलाई खेद छ! हामी तपाईंले msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "हामीलाई खेद छ! तपाईं केवल बाइसवटा लेबलरहरूमा सदस्यता लिन सक्नुहुन्छ, र तपाईंले आफ्नो बाइसवटाको सीमा पुगेको छ।" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "फेरी स्वागत छ!" @@ -9240,7 +9965,7 @@ msgstr "तपाईंको स्टार्टर प्याकलाई #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "के भइरहेको छ?" @@ -9256,11 +9981,11 @@ msgstr "यस पोस्टमा कुन भाषाहरू प्र msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "तपाईंको एल्गोरिदमिक फीडहरूमा कुन भाषाहरू देख्न चाहनुहुन्छ?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "यस पोस्टसँग को को अन्तरक्रिया गर्न सक्छ?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "को को जवाफ दिन सक्छ?" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "वोप्स!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "" @@ -9322,12 +10047,12 @@ msgstr "यो प्रयोगकर्ता किन समीक्षा msgid "Write a message" msgstr "सन्देश लेख्नुहोस्" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "पोस्ट लेख्नुहोस्" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "तपाईंको जवाफ लेख्नुहोस्" @@ -9358,11 +10083,11 @@ msgstr "हो, निष्क्रिय गर्नुहोस्" msgid "Yes, delete this starter pack" msgstr "हो, यो स्टार्टर प्याक मेटाउनुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "हो, अलग गर्नुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "हो, लुकेको राख्नुहोस्" @@ -9378,6 +10103,10 @@ msgstr "हिजो" msgid "You" msgstr "तपाईं" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "" @@ -9386,6 +10115,10 @@ msgstr "" msgid "You are creating an account on" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "तपाईं पंक्तिमा हुनुहुन्छ।" @@ -9403,7 +10136,7 @@ msgstr "" msgid "You are not allowed to go live" msgstr "" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "तपाईंलाई भिडियो अपलोड गर्न अनुमति छैन।" @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "" @@ -9441,10 +10173,18 @@ msgstr "तपाईं नयाँ कस्टम फीडहरू पन msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "तपाईं आफ्नो खाता अस्थायी रूपमा निष्क्रिय गर्न सक्नुहुन्छ, र यसलाई कुनै पनि समय पुनः सक्रिय गर्न सक्नुहुन्छ।" -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "तपाईंले जुन सेटिङ पनि छनोट गर्नुभएको भए पनि चलिरहेको वार्तालापलाई जारी राख्न सक्नुहुन्छ।" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "तपाईं अब नयाँ पासवर्डसँग स msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "तपाईं आफ्नो खाता पुनः सक्रिय गरेर लगइन जारी राख्न सक्नुहुन्छ। तपाईंको प्रोफाइल र पोस्ट अन्य प्रयोगकर्ताहरूलाई देखिनेछन्।" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "" #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "" @@ -9472,7 +10212,7 @@ msgstr "तपाईंको कुनै पनि फलोअर्स छ msgid "You don't follow any users who follow @{name}." msgstr "तपाईं @{name} लाई फलो गर्ने कुनै पनि प्रयोगकर्तालाई फलो गर्नुभएको छैन।" -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "" @@ -9480,15 +10220,15 @@ msgstr "" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "तपाईंको कुनै पनि निमन्त्रण कोड छैन! जब तपाईं थोरै समयको लागि Bluesky मा हुनुहुन्छ, तब हामी तपाईंलाई केही पठाउनेछौं।" -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "तपाईंको कुनै पनि पिन गरिएका फीडहरू छैन।" -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "तपाईंको कुनै पनि बचत गरिएका फीडहरू छैन।" -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "तपाईंले लेखकलाई ब्लक गर्नुभएको छ वा तपाईं लेखकद्वारा ब्लक गर्नुभएको छ।" @@ -9502,6 +10242,10 @@ msgstr "तपाईंले यो प्रयोगकर्तालाई msgid "You have blocked this user. You cannot view their content." msgstr "तपाईंले यो प्रयोगकर्तालाई ब्लक गर्नुभएको छ। तपाईं तिनीहरूको सामग्री हेर्न सक्नुहुन्न।" +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "तपाईंले यो खाता म्यूट गर्न msgid "You have muted this user" msgstr "तपाईंले यो प्रयोगकर्तालाई म्यूट गर्नुभएको छ।" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "तपाईंको कुनै पनि वार्तालाप छैन। एक सुरु गर्नुहोस्!" @@ -9547,7 +10291,7 @@ msgstr "तपाईंले कुनै खाता ब्लक गर् msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "तपाईंले कुनै खाता म्यूट गर्नुभएको छैन। एक खाता म्यूट गर्नको लागि, तिनीहरूको प्रोफाइलमा जानुहोस् र तिनीहरूको खाता मेनूबाट \"खाता म्यूट गर्नुहोस्\" चयन गर्नुहोस्।" -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "तपाईंले अन्त्यमा पुग्नुभयो" @@ -9572,6 +10316,10 @@ msgstr "तपाईंले अझै कुनै शब्द वा ट् msgid "You hid this reply." msgstr "तपाईंले यो उत्तर लुकेको छ।" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "यदि तपाईंलाई लाग्छ कि गैर-आत्म लेबलहरू गल्तीले राखिएका छन् भने, तपाईं तिनीहरूको विरोध गर्न सक्नुहुन्छ।" @@ -9592,7 +10340,7 @@ msgstr "तपाईं केवल ३ फीडहरू मात्र थ msgid "You may only select up to 4 images" msgstr "तपाईं केवल ४ चित्रहरू मात्र चयन गर्न सक्नुहुन्छ।" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "" @@ -9600,6 +10348,14 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "तपाईंलाई कम्तिमा सात अन्य व्यक्तिहरूलाई फलो गर्नुपर्छ ताकि starter pack सिर्जना गर्न सकिन्छ।" +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "QR कोड बचत गर्नको लागि तपाईंलाई आफ्नो फोटो लाइब्रेरीमा पहुँच दिनु पर्छ।" @@ -9608,6 +10364,11 @@ msgstr "QR कोड बचत गर्नको लागि तपाईं msgid "You must select at least one labeler for a report" msgstr "तपाईंलाई रिपोर्टको लागि कम्तीमा एक लेबलर चयन गर्नु पर्छ।" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "" @@ -9616,7 +10377,7 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "तपाईंले पहिले @{0} निष्क्रिय गर्नुभएको थियो।" -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "" @@ -9628,16 +10389,20 @@ msgstr "" msgid "You reacted {0} to {1}" msgstr "" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "तपाईंलाई तपाईंका सबै खाता हरुबाट साइन आउट गरिनेछ।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "तपाईं अब यस थ्रेडको लागि सूचनाहरू प्राप्त गर्न सक्नुहुन्न।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "तपाईं अब यस थ्रेडको लागि सूचनाहरू प्राप्त गर्नुहुनेछ।" @@ -9657,11 +10422,11 @@ msgstr "तपाईं: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "तपाईं: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "तपाईंले आफ्नो खाता सिर्जना गरेपछि सल्लाह दिइएका प्रयोगकर्ताहरू र फीडहरूलाई फलो गर्नुहुनेछ!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "तपाईंले आफ्नो खाता सिर्जना गरेपछि सल्लाह दिइएका प्रयोगकर्ताहरूलाई फलो गर्नुहुनेछ!" @@ -9673,9 +10438,9 @@ msgstr "तपाईंले यी व्यक्तिहरू र {0} अ msgid "You'll follow these people right away" msgstr "तपाईंले यी व्यक्तिहरूलाई तुरुन्तै फलो गर्नुहुनेछ।" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "तपाईंलाई <0>{0} मा एक इमेल प्राप्त हुनेछ जसले प्रमाणित गर्नेछ कि यो तपाईं हो।" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "तपाईंले यस पोष्टमा एक शब्द msgid "You've found some people to follow" msgstr "" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "तपाईंले आफ्नो फीडको अन्त्यमा पुग्नुभयो! थप खाता फलो गर्नको लागि खोजी गर्नुहोस्।" @@ -9711,19 +10480,23 @@ msgstr "तपाईंले आफ्नो फीडको अन्त्य msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "तपाईंले भिडियो अपलोडको लागि आफ्नो दैनिक सीमा पुग्नुभयो (धेरै बाइट्स)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "तपाईंले भिडियो अपलोडको लागि आफ्नो दैनिक सीमा पुग्नुभयो (धेरै भिडियो)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "तपाईंको खाता" @@ -9735,7 +10508,7 @@ msgstr "तपाईंको खाता मेटाइएको छ" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "तपाईंको खाता अझै भिडियो अपलोड गर्नको लागि पर्याप्त पुरानो छैन। कृपया पछि पुनः प्रयास गर्नुहोस्।" @@ -9751,11 +10524,11 @@ msgstr "" msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "तपाईंको जन्म मिति" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "तपाईंको ब्राउजर भिडियो ढाँचा समर्थन गर्दैन। कृपया अर्को ब्राउजर प्रयास गर्नुहोस्।" @@ -9771,13 +10544,15 @@ msgstr "" msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "तपाईंको ईमेल अमान्य देखिन्छ।" @@ -9786,15 +10561,11 @@ msgstr "तपाईंको ईमेल अमान्य देखिन् msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "तपाईंको ईमेल अझै प्रमाणित गरिएको छैन। यो एक महत्त्वपूर्ण सुरक्षा कदम हो जुन हामी सिफारिस गर्छौं।" - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "तपाईंको पहिलो लाइक!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "" @@ -9806,19 +10577,15 @@ msgstr "तपाईंको फलोइङ फीड खाली छ! के msgid "Your full handle will be <0>@{0}" msgstr "तपाईंको पूर्ण ह्याण्डल हुनेछ <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "" @@ -9835,15 +10602,15 @@ msgstr "तपाईंका म्यूट शब्दहरू" msgid "Your password has been changed successfully!" msgstr "तपाईंको पासवर्ड सफलतापूर्वक परिवर्तन गरिएको छ!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "तपाईंको पोष्ट प्रकाशित गरिएको छ" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "तपाईंका पोष्टहरू प्रकाशित गरिएको छ" @@ -9851,15 +10618,19 @@ msgstr "तपाईंका पोष्टहरू प्रकाशित msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "तपाईंका पोष्टहरू, लाइकहरू, र ब्लकहरू सार्वजनिक छन्। म्यूटहरू निजी छन्।" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "तपाईंको प्रोफाइल, पोष्टहरू, फीडहरू, र सूचीहरू अब अन्य ब्लूस्की प्रयोगकर्ताहरूलाई देखाइने छैन। तपाईं कुनै पनि समयमा आफ्नो खाता पुनः सक्रिय गर्नको लागि लग इन गर्न सक्नुहुन्छ।" -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "तपाईंको उत्तर प्रकाशित गरिएको छ" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -9867,7 +10638,7 @@ msgstr "" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "तपाईंको रिपोर्ट ब्लूस्की मोडरेसन सेवामा पठाइनेछ" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "" diff --git a/src/locale/locales/nl/messages.po b/src/locale/locales/nl/messages.po index c442a5f0cf..dead8bacf1 100644 --- a/src/locale/locales/nl/messages.po +++ b/src/locale/locales/nl/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: nl\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,7 +27,7 @@ msgstr "(actief)" msgid "(contains embedded content)" msgstr "(bevat ingesloten inhoud)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(geen e-mailadres)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# herplaatsing} other {# herplaatsingen}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# seconde} other {# seconden}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# ongelezen item} other {# ongelezen items}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {# ongelezen item} other {# ongelezen items}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {#ma} other {#ma}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {volger} other {volgers}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {volgend} other {volgend}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {vind-ik-leuk} other {vind-ik-leuks}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {vind-ik-leuk} other {vind-ik-leuks}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {bericht} other {berichten}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {citaat} other {citaten}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {herplaatsing} other {herplaatsingen}}" @@ -135,6 +138,10 @@ msgstr "{0} <0>in <1>tags" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>in <1>tekst en tags" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "{0} is live" @@ -143,11 +150,15 @@ msgstr "{0} is live" msgid "{0} is not a valid URL" msgstr "{0} is geen geldige URL" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} deze week lid geworden" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} van {1}" @@ -164,8 +175,16 @@ msgstr "{0} heeft gereageerd met {1}" msgid "{0} reacted {1} to {2}" msgstr "{0} heeft gereageerd met {1} op {2}" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "Avatar van {0}" @@ -197,12 +216,12 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}s" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# ongelezen item} other {# ongelezen items}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Startpakket van {displayName}" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {uur} other {uur}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuut} other {minuten}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} hebben je gevolgd" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} vonden je gepersonaliseerde feed leuk" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} vonden je bericht leuk" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} hebben je bericht opnieuw geplaatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} hebben zich geregistreerd met je startpakket" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} volgde je" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} volgde je terug" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} vond je gepersonaliseerde feed leuk" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} vond je bericht leuk" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} heeft zijn/haar verificatie van je account verwijderd" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} heeft je bericht opnieuw geplaatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} registreerde zich met je startpakket" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} heeft jou geverifieerd" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} volgden je" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} vonden je gepersonaliseerde feed leuk" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} vonden je bericht leuk" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} hebben je bericht opnieuw geplaatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} hebben zich geregistreerd met je startpakket" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} volgde je" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} volgde je terug" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} vond je gepersonaliseerde feed leuk" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} vond je bericht leuk" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} heeft zijn/haar verificatie van je account verwijderd" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} heeft je bericht opnieuw geplaatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} heeft zich geregistreerd met je startpakket" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} heeft jou geverifieerd" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} volgend" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "{handle} kan geen privébericht ontvangen" @@ -392,7 +410,7 @@ msgstr "{joinedAllTimeCount, plural, one {}other {# gebruikers zijn}} lid geword msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "{minutes, plural, one {# minuut} other {# minuten}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# ongelezen item} other {# ongelezen items}}" @@ -432,12 +450,12 @@ msgstr "Verificaties van {userName}" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, en {2, plural, one {# ander} other {# anderen}} zijn inbegrepen in je startpakket" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, en {2, plural, one {# ander} other {# anderen}} zijn inbegrepen in je startpakket" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {volger} other {volgers}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {volgend} other {volgend}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} en<1> <2>{1} zijn inbegrepen in je startpakket" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} is inbegrepen in je startpakket" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} leden" @@ -466,11 +484,11 @@ msgstr "<0>{0} leden" msgid "<0>{date} at {time}" msgstr "<0>{date} om {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Experimenteel: u ontvangt alleen antwoord- en citaatmeldingen van gebruikers die u volgt wanneer deze voorkeur is ingeschakeld. We zullen hier meer besturingselementen aan toevoegen in de loop van de tijd." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Jij en<1> <2>{0} zijn inbegrepen in je startpakket" @@ -503,10 +521,14 @@ msgstr "een bericht" msgid "A new form of verification" msgstr "Een nieuwe vorm van verificatie" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Over" @@ -524,25 +546,25 @@ msgstr "Chatverzoek accepteren" msgid "Accept Request" msgstr "Verzoek accepteren" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Toegankelijkheid" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Toegankelijkheidsinstellingen" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Account gevolgd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Account genegeerd" msgid "Account Muted by List" msgstr "Account genegeerd door lijst" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Accountopties" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Account verwijderd uit snelle toegang" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Account ontvolgd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Account negeren opgeheven" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Accounts met een blauw vinkje <0><1/> kunnen anderen verifiëren. Deze vertrouwde verifieerders worden geselecteerd door Bluesky." +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Toevoegen" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Voeg er nog {0} toe om door te gaan" @@ -634,8 +666,8 @@ msgstr "Account toevoegen" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Alt-tekst toevoegen" msgid "Add alt text (optional)" msgstr "Optioneel alt-tekst toevoegen" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Nog een account toevoegen" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Nog een bericht toevoegen" @@ -670,8 +702,8 @@ msgstr "App-wachtwoord toevoegen" msgid "Add emoji reaction" msgstr "Emoji-reactie toevoegen" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Voeg meer informatie toe (optioneel)" @@ -683,7 +715,7 @@ msgstr "Negeerwoord toevoegen met gekozen instellingen" msgid "Add muted words and tags" msgstr "Genegeerde woorden en tags toevoegen" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Nieuw bericht toevoegen" @@ -704,7 +736,7 @@ msgstr "Reactie toevoegen" msgid "Add recommended feeds" msgstr "Aanbevolen feeds toevoegen" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Voeg wat feeds toe aan je startpakket!" @@ -725,10 +757,6 @@ msgstr "Deze feed toevoegen aan je feeds" msgid "Add to lists" msgstr "Toevoegen aan lijsten" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Toevoegen aan mijn feeds" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "Gebruiker toevoegen aan lijst" @@ -738,11 +766,11 @@ msgstr "Gebruiker toevoegen aan lijst" msgid "Added to list" msgstr "Toegevoegd aan lijst" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Toegevoegd aan mijn feeds" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Aanvullende informatie (maximaal 300 tekens)" @@ -750,18 +778,18 @@ msgstr "Aanvullende informatie (maximaal 300 tekens)" msgid "Adult" msgstr "Volwassene" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Inhoud voor volwassenen" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Inhoud voor volwassenen kan alleen worden ingeschakeld via het web op <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Inhoud voor volwassenen is uitgeschakeld." @@ -770,16 +798,32 @@ msgstr "Inhoud voor volwassenen is uitgeschakeld." msgid "Adult Content labels" msgstr "Labels voor inhoud voor volwassenen" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Geavanceerd" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "alice@voorbeeld.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Alle" @@ -793,7 +837,7 @@ msgstr "Je hebt alle accounts gevolgd!" msgid "All languages" msgstr "Alle talen" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Alle feeds die je hebt opgeslagen, bij elkaar op één plek." @@ -802,16 +846,21 @@ msgstr "Alle feeds die je hebt opgeslagen, bij elkaar op één plek." msgid "Allow access to your direct messages" msgstr "Geef toegang tot je privéberichten" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Nieuwe privéberichten accepteren van" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Citaatberichten toestaan" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Antwoorden toestaan van:" @@ -828,13 +877,13 @@ msgstr "Heb je al een code?" msgid "Already signed in as @{0}" msgstr "Al aangemeld als @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "Alt-tekst" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Alt-tekst" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Alt-tekst beschrijft afbeeldingen voor blinde en slechtziende gebruikers en biedt iedereen context." @@ -861,27 +910,19 @@ msgstr "Alternatieve tekst wordt ingekort. {MAX_ALT_TEXT, plural, one {}other {L msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Er is een e-mail verzonden naar {0}. Deze bevat een bevestigingscode die je hieronder kunt invullen." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "Er is een e-mailbericht naar je vorige adres {currentEmail} verzonden. Deze bevat een bevestigingscode die je hieronder kunt invullen." - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Er is een e-mail verzonden! Vul hieronder de bevestigingscode in die in de e-mail is opgenomen." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Er is een fout opgetreden" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Er is een fout opgetreden" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Er is een fout opgetreden tijdens het comprimeren van de video." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "Er is een fout opgetreden tijdens het ophalen van de feed." @@ -889,11 +930,11 @@ msgstr "Er is een fout opgetreden tijdens het ophalen van de feed." msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Er is een fout opgetreden bij het genereren van je startpakket. Wil je het opnieuw proberen?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Er is een fout opgetreden tijdens het laden van de video. Probeer het later opnieuw." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Er is een fout opgetreden tijdens het laden van de video. Probeer het opnieuw." @@ -910,7 +951,7 @@ msgstr "Er is een fout opgetreden bij het selecteren van de video" msgid "An error occurred while trying to follow all" msgstr "Er is een fout opgetreden tijdens het proberen om allen te volgen" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Er is een fout opgetreden bij het uploaden van de video." @@ -934,8 +975,8 @@ msgstr "Er is een probleem opgetreden bij het openen van de chat" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "er is een onbekende fout opgetreden" msgid "an unknown labeler" msgstr "een onbekende labeler" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "en" @@ -963,10 +1004,14 @@ msgstr "en" msgid "Animals" msgstr "Dieren" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "Geanimeerde GIF" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "Nieuw: verificatie op Bluesky" @@ -980,7 +1025,13 @@ msgstr "Asociaal gedrag" msgid "Anybody can interact" msgstr "Iedereen kan reageren" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "App-wachtwoordnamen mogen alleen letters, cijfers, spaties, streepjes en msgid "App password names must be at least 4 characters long" msgstr "App-wachtwoordnamen moeten minimaal 4 tekens lang zijn" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "App-wachtwoorden" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "App-wachtwoorden" @@ -1053,10 +1104,10 @@ msgstr "Bezwaar maken tegen schorsing" msgid "Appeal this decision" msgstr "Bezwaar maken tegen deze beslissing" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Weergave" @@ -1065,12 +1116,20 @@ msgstr "Weergave" msgid "Apply default recommended feeds" msgstr "Standaard aanbevolen feeds gebruiken" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Gearchiveerd van {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Gearchiveerd bericht" @@ -1078,7 +1137,7 @@ msgstr "Gearchiveerd bericht" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Weet je zeker dat je het app-wachtwoord \"{0}\" wilt verwijderen?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Weet je zeker dat je dit privébericht wilt verwijderen? Het privébericht wordt voor jou verwijderd, maar niet voor de andere deelnemer." @@ -1098,19 +1157,15 @@ msgstr "Weet je zeker dat je dit gesprek wilt verlaten?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Weet je zeker dat je dit gesprek wilt verlaten? Je privéberichten worden voor jou verwijderd, maar niet voor de andere deelnemer." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Weet je zeker dat je {0} uit jouw feeds wilt verwijderen?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Weet je zeker dat je dit uit jouw feeds wilt verwijderen?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Weet je zeker dat je dit concept wilt weggooien?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Weet je zeker dat je dit bericht wilt weggooien?" @@ -1131,29 +1186,26 @@ msgstr "Kunst" msgid "Artistic or non-erotic nudity." msgstr "Artistieke of niet-erotische naaktbeelden." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "Onderwerp voor algoritme toewijzen" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Minstens 3 tekens" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "De opties voor automatisch afspelen zijn verplaatst naar de <0>Instellingen voor inhoud en media." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Video's en GIF's automatisch afspelen" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Video's en GIF's automatisch afspelen" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Terug" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Terug naar chats" @@ -1195,28 +1247,44 @@ msgstr "Je moet eerst je e-mailadres bevestigen voordat je een startpakket maakt msgid "Before you can accept this chat request, you must first verify your email." msgstr "Je moet eerst je e-mailadres bevestigen voordat je dit chatverzoek kunt accepteren." +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "Je moet eerst je e-mailadres bevestigen voordat je een andere gebruiker een privébericht mag sturen." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Verjaardag" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Blokkeren" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Blokkeren" msgid "Block account" msgstr "Account blokkeren" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Account blokkeren?" @@ -1262,20 +1330,20 @@ msgstr "Gebruiker blokkeren" msgid "Block User" msgstr "Gebruiker blokkeren" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Geblokkeerd" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Geblokkeerde accounts" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Geblokkeerde accounts" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Geblokkeerde accounts kunnen niet reageren op jouw gesprekken, je niet vermelden en niet op een andere manier met je communiceren." @@ -1284,11 +1352,11 @@ msgstr "Geblokkeerde accounts kunnen niet reageren op jouw gesprekken, je niet v msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Geblokkeerde accounts kunnen niet reageren op jouw gesprekken, je niet vermelden en niet anderszins met je communiceren. Je ziet hun tekst niet en zij kunnen de jouwe niet zien." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Geblokkeerd bericht." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blokkeren voorkomt niet dat deze labeler labels op je account plaatst." @@ -1309,11 +1377,12 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kan de echtheid van de geclaimde datum niet bevestigen." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1347,6 +1416,14 @@ msgstr "Bluesky toont je profiel en berichten niet aan afgemelde gebruikers. And msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky verifieert proactief bekende en authentieke accounts." +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Afbeeldingen vervagen en niet in feeds tonen" msgid "Books" msgstr "Boeken" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Blader door meer accounts op de pagina Verkennen" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Blader door meer feeds op de pagina Verkennen" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Blader door meer suggesties" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Blader door meer suggesties op de pagina Verkennen" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Zakelijk" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Door {0}" @@ -1428,15 +1502,23 @@ msgstr "Door {0}" msgid "By <0>{0}" msgstr "Door <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Door een account aan te maken ga je akkoord met het <0>Privacybeleid." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Door een account aan te maken stem je in met de <0>Servicevoorwaarden en het <1>Privacybeleid." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Door een account aan te maken ga je akkoord met de <0>Servicevoorwaarden." @@ -1448,14 +1530,17 @@ msgstr "Door jou" msgid "Camera" msgstr "Camera" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Camera" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Annuleren" @@ -1500,11 +1582,7 @@ msgstr "Accountverwijdering annuleren" msgid "Cancel image crop" msgstr "Afbeelding bijsnijden annuleren" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Profielbewerking annuleren" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Citaatbericht annuleren" @@ -1516,14 +1594,10 @@ msgstr "Heractivering annuleren en afmelden" msgid "Cancel search" msgstr "Zoeken annuleren" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Openen van gelinkte website annuleren" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Kan geen interactie hebben met een geblokkeerde gebruiker" @@ -1553,17 +1627,12 @@ msgstr "App-pictogram wijzigen in ‘{0}’" msgid "Change app language" msgstr "App-taal wijzigen" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "E-mailadres wijzigen" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Handle wijzigen" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Moderatieservice wijzigen" @@ -1579,14 +1648,6 @@ msgstr "Berichttaal wijzigen in {suggestedLanguageName}" msgid "Change report reason" msgstr "Reden van melding wijzigen" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Je e-mailadres wijzigen" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Je e-mailadres wijzigen" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Wijzigt het app-pictogram" @@ -1596,10 +1657,15 @@ msgstr "Wijzigt het app-pictogram" msgid "Changes hosting provider" msgstr "Wijzigt de hostingprovider" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Chat" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Chat verwijderd" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Chat genegeerd" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Chatverzoeken" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Chatinstellingen" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Chatinstellingen" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat niet meer genegeerd" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Chats" @@ -1661,7 +1738,7 @@ msgstr "Controleer je inbox voor een e-mail met de bevestigingscode om hieronder msgid "Choose domain verification method" msgstr "Kies domeinverificatiemethode" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Feeds kiezen" @@ -1669,7 +1746,7 @@ msgstr "Feeds kiezen" msgid "Choose for me" msgstr "Voor mij kiezen" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Personen kiezen" @@ -1685,23 +1762,23 @@ msgstr "Deze kleur kiezen als je avatar" msgid "Choose your account provider" msgstr "Kies je accountprovider" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Kies je eigen tijdlijn! Feeds gemaakt door de gemeenschap helpen je om inhoud te vinden waar je van houdt." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Je wachtwoord kiezen" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Je gebruikershandle" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Alle opgeslagen gegevens wissen" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Alle opgeslagen gegevens wissen (start de app hierna opnieuw op)" @@ -1714,23 +1791,27 @@ msgstr "Afbeeldingencache wissen" msgid "Clear search query" msgstr "Zoekopdracht wissen" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "klik hier" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "Klik hier om het verificatieproces opnieuw te starten." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "Klik hier om je e-mailadres te wijzigen" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Klik om citaatberichten voor dit bericht te verbieden." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Klik om citaatberichten voor dit bericht toe te staan." @@ -1750,14 +1831,16 @@ msgstr "Klimaat" msgid "Clip 🐴 clop 🐴" msgstr "Klik 🐴 klak 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Klik 🐴 klak 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Sluiten" @@ -1789,13 +1876,15 @@ msgstr "Waarschuwing sluiten" msgid "Close bottom drawer" msgstr "Paneel onderaan sluiten" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Dialoogvenster sluiten" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Menu sluiten" @@ -1804,7 +1893,7 @@ msgstr "Menu sluiten" msgid "Close emoji picker" msgstr "Emoji-kiezer sluiten" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "GIF-dialoogvenster sluiten" @@ -1822,7 +1911,7 @@ msgstr "Afbeeldingsviewer sluiten" msgid "Close menu" msgstr "Menu sluiten" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Dit dialoogvenster sluiten" @@ -1830,7 +1919,7 @@ msgstr "Dit dialoogvenster sluiten" msgid "Closes password update alert" msgstr "Sluit waarschuwing voor bijwerken wachtwoord" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "" @@ -1843,16 +1932,16 @@ msgstr "Sluit de emoji-kiezer" msgid "Closes viewer for header image" msgstr "Sluit viewer voor headerafbeelding" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Gebruikerslijst inklappen" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Klapt de gebruikerslijst voor een bepaalde melding in" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Kleurmodus" @@ -1870,7 +1959,8 @@ msgstr "Komedie" msgid "Comics" msgstr "Strips" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Gemeenschapsrichtlijnen" @@ -1879,38 +1969,34 @@ msgstr "Gemeenschapsrichtlijnen" msgid "Complete onboarding and start using your account" msgstr "Voltooi de introductie en begin met het gebruiken van je account" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Voltooi de uitdaging" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Nieuw bericht opstellen" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Je kunt berichten opstellen met een lengte van maximaal {0, plural, other {# tekens}}" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Reactie opstellen" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Video comprimeren..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Configureer inhoudsfilterinstelling voor categorie: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Geconfigureerd in <0>moderatie-instellingen ." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Taalinstellingen van inhoud bevestigen" msgid "Confirm delete account" msgstr "Account verwijderen bevestigen" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Bevestig je leeftijd:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Bevestig je geboortedatum" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Bevestig je geboortedatum" msgid "Confirmation code" msgstr "Bevestigingscode" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Bevestigingscode" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Verbinden..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Contact opnemen met ondersteuning" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Inhoud & media" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Inhoud en media" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Inhoud en media" @@ -1977,7 +2069,8 @@ msgstr "Inhoud en media" msgid "Content Blocked" msgstr "Inhoud geblokkeerd" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Inhoudsfilters" @@ -2006,10 +2099,12 @@ msgstr "Inhoudswaarschuwing" msgid "Content warnings" msgstr "Inhoudswaarschuwingen" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Contextmenu-achtergrond, klik om het menu te sluiten." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Doorgaan" msgid "Continue as {0} (currently signed in)" msgstr "Doorgaan als {0} (momenteel aangemeld)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Verder lezen..." @@ -2029,6 +2129,10 @@ msgstr "Verder lezen..." msgid "Continue to next step" msgstr "Doorgaan naar volgende stap" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Gekopieerd" msgid "Copied build version to clipboard" msgstr "Buildversie gekopieerd naar klembord" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Kopieert buildversie naar klembord" msgid "Copy" msgstr "Kopiëren" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "Toch kopiëren" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "App-wachtwoord kopiëren" @@ -2087,8 +2187,8 @@ msgstr "App-wachtwoord kopiëren" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "" @@ -2120,10 +2220,10 @@ msgstr "Link kopiëren" msgid "Copy link to list" msgstr "Link naar lijst kopiëren" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Link naar bericht kopiëren" @@ -2136,18 +2236,18 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Tekst privébericht kopiëren" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Berichttekst kopiëren" @@ -2159,11 +2259,25 @@ msgstr "QR-code kopiëren" msgid "Copy TXT record value" msgstr "TXT-recordwaarde kopiëren" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Auteursrechtbeleid" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "Kan chat niet negeren" msgid "Could not process your video" msgstr "Kon je video niet verwerken" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Aanmaken" @@ -2195,7 +2317,7 @@ msgstr "Maak een QR-code voor een startpakket" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Maak een startpakket" @@ -2205,21 +2327,22 @@ msgstr "Maak een startpakket voor mij" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Registreren" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Account aanmaken" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Een account aanmaken" @@ -2241,7 +2364,7 @@ msgstr "Nog een aanmaken" msgid "Create new account" msgstr "Account aanmaken" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Melding maken voor {0}" @@ -2268,7 +2391,7 @@ msgstr "Gepersonaliseerd" msgid "Customization options" msgstr "Aanpassingsopties" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Pas aan wie kan reageren op dit bericht." @@ -2278,12 +2401,12 @@ msgstr "Past je Bluesky-ervaring aan" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Donker" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Donker" @@ -2292,21 +2415,21 @@ msgstr "Donker" msgid "Dark mode" msgstr "Donkere modus" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Donker thema" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Geboortedatum" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Account deactiveren" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Fouten opsporen in moderatie" @@ -2314,7 +2437,7 @@ msgstr "Fouten opsporen in moderatie" msgid "Debug panel" msgstr "Debugpaneel" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Standaard" @@ -2322,8 +2445,8 @@ msgstr "Standaard" msgid "Default icons" msgstr "Standaardpictogrammen" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Standaardpictogrammen" msgid "Delete" msgstr "Verwijderen" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Account verwijderen" @@ -2355,7 +2478,7 @@ msgstr "App-wachtwoord verwijderen?" msgid "Delete chat" msgstr "Chat verwijderen" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Chatdeclaratierecord verwijderen" @@ -2370,7 +2493,7 @@ msgstr "Gesprek verwijderen" msgid "Delete Conversation" msgstr "Gesprek verwijderen" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Voor mij verwijderen" @@ -2378,11 +2501,11 @@ msgstr "Voor mij verwijderen" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Privébericht verwijderen" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Privébericht voor mij verwijderen" @@ -2390,9 +2513,9 @@ msgstr "Privébericht voor mij verwijderen" msgid "Delete my account" msgstr "Mijn account verwijderen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Bericht verwijderen" @@ -2409,11 +2532,11 @@ msgstr "Startpakket verwijderen?" msgid "Delete this list?" msgstr "Deze lijst verwijderen?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Dit bericht verwijderen?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Verwijderd" @@ -2422,15 +2545,20 @@ msgstr "Verwijderd" msgid "Deleted Account" msgstr "Verwijderd account" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Bericht verwijderd." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Omschrijving" @@ -2447,12 +2575,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Beschrijvende alt-tekst" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Citaat loskoppelen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Citaatbericht loskoppelen?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Ontwikkelaarsmodus ingeschakeld" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Ontwikkelaarsopties" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Dialoog: aanpassen wie op dit bericht mag reageren" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Dimmen" @@ -2492,27 +2620,27 @@ msgstr "" msgid "Disable Email 2FA" msgstr "Uitschakelen e-mail 2FA" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Uitschakelen voelbare feedback" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Uitschakelen ondertiteling" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Uitgeschakeld" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Weggooien" @@ -2520,11 +2648,11 @@ msgstr "Weggooien" msgid "Discard changes?" msgstr "Wijzigingen weggooien?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Concept weggooien?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Bericht weggooien?" @@ -2542,7 +2670,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "Ontdek nieuwe gepersonaliseerde feeds" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Ontdek nieuwe feeds" @@ -2550,7 +2678,7 @@ msgstr "Ontdek nieuwe feeds" msgid "Dismiss" msgstr "Sluiten" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Fout negeren" @@ -2562,26 +2690,26 @@ msgstr "Starthandleiding afsluiten" msgid "Dismiss interests" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Deze sectie sluiten" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Grotere alt-tekstbadges tonen" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Weergavenaam" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Weergavenaam" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Weergavenaam is te lang" @@ -2603,15 +2731,11 @@ msgstr "Dit negeerwoord niet gebruiken voor gebruikers die je volgt" msgid "Does not include nudity." msgstr "Bevat geen bloot." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Begint en eindigt niet met een koppelteken" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Domein geverifieerd!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -2619,6 +2743,15 @@ msgstr "" msgid "Don't see an email? <0>Click here to resend." msgstr "" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "" msgid "Double tap to close the dialog" msgstr "Dubbeltik om het dialoogvenster te sluiten" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "" @@ -2673,7 +2806,7 @@ msgstr "Bluesky downloaden" msgid "Download CAR file" msgstr "CAR-bestand downloaden" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Laat vallen om afbeeldingen toe te voegen" @@ -2689,18 +2822,10 @@ msgstr "bijvoorbeeld alice" msgid "e.g. Alice Lastname" msgstr "bijvoorbeeld Alice Achternaam" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "Bijvoorbeeld Alice Roberts" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "bijvoorbeeld alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "Bijvoorbeeld kunstenaar, hondenliefhebber en fervent lezer." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Bijvoorbeeld artistieke naakten." @@ -2725,10 +2850,11 @@ msgstr "Bijvoorbeeld gebruikers die herhaaldelijk met advertenties reageren." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Elke code werkt één keer. Je ontvangt periodiek meer uitnodigingscodes." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Bewerken" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Bewerken" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Avatar bewerken" @@ -2749,12 +2875,12 @@ msgstr "Feeds bewerken" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Afbeelding bewerken" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Interactie-instellingen bewerken" @@ -2776,33 +2902,33 @@ msgstr "" msgid "Edit Moderation List" msgstr "Moderatielijst bewerken" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Mijn feeds bewerken" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Mijn profiel bewerken" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Personen bewerken" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Berichtinteractie-instellingen bewerken" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Profiel bewerken" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Profiel bewerken" @@ -2814,19 +2940,11 @@ msgstr "Startpakket bewerken" msgid "Edit User List" msgstr "Gebruikerslijst bewerken" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Bewerk wie kan reageren" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Je weergavenaam bewerken" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Je profielomschrijving bewerken" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Je startpakket bewerken" @@ -2839,8 +2957,8 @@ msgstr "Onderwijs" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "" -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "E-mail" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "E-mail 2FA uitgeschakeld" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "E-mail 2FA ingeschakeld" @@ -2865,10 +2983,6 @@ msgstr "E-mail opnieuw verzonden" msgid "Email sent!" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "" @@ -2883,8 +2997,8 @@ msgstr "HTML-code insluiten" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Bericht insluiten" @@ -2892,7 +3006,7 @@ msgstr "Bericht insluiten" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Sluit dit bericht in op je website. Kopieer simpelweg het volgende fragment en plak het in de HTML-code van je website." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Geïntegreerde videospeler" @@ -2906,7 +3020,7 @@ msgstr "Inschakelen" msgid "Enable {0} only" msgstr "Alleen {0} inschakelen" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Inhoud voor volwassenen inschakelen" @@ -2919,16 +3033,20 @@ msgstr "" msgid "Enable external media" msgstr "Externe media inschakelen" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Mediaspelers inschakelen voor" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Prioriteitsmeldingen inschakelen" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Ondertiteling inschakelen" @@ -2941,17 +3059,14 @@ msgstr "Alleen deze bron inschakelen" msgid "Enable trending topics" msgstr "" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "" - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Ingeschakeld" @@ -2963,7 +3078,7 @@ msgstr "Einde van feed" msgid "Ensure you have selected a language for each subtitle file." msgstr "Zorg ervoor dat je voor elk ondertitelbestand een taal selecteert." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Vul een wachtwoord in" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Vul een woord of tag in" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Vul code in" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Volledig scherm activeren" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Vul je geboortedatum in" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Vul je e-mailadres in" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Vul hieronder je nieuwe e-mailadres in" - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Vul je wachtwoord in" @@ -3022,7 +3129,7 @@ msgstr "Vul je wachtwoord in" msgid "Enter your username and password" msgstr "Vul je gebruikersnaam en wachtwoord in" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Opent volledig scherm" @@ -3030,16 +3137,28 @@ msgstr "Opent volledig scherm" msgid "Entertainment" msgstr "Entertainment" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Fout" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Er is een fout opgetreden bij het opslaan van het bestand" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Fout bij ontvangen van captcha-antwoord." @@ -3047,27 +3166,34 @@ msgstr "Fout bij ontvangen van captcha-antwoord." msgid "Error:" msgstr "Fout:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "Fout: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Iedereen" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Iedereen kan reageren" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Iedereen kan reageren op dit bericht." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Iedereen" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Gebruikers uitsluiten die je volgt" msgid "Excludes users you follow" msgstr "Gebruikers uitsluiten die je volgt" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Volledig scherm afsluiten" @@ -3106,24 +3232,28 @@ msgstr "Verlaat afbeeldingweergave" msgid "Expand alt text" msgstr "Alt-tekst uitklappen" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Gebruikerslijst uitklappen" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Uitklappen of inklappen van het volledige bericht waar je op reageert" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Klapt berichttekst uit of in" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "Verwacht werd dat uri omgezet kon worden naar een record" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Experimenteel" @@ -3153,15 +3283,15 @@ msgstr "Expliciete of mogelijk aanstootgevende media." msgid "Explicit sexual images." msgstr "Expliciete seksuele afbeeldingen." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "Verkennen" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Mijn gegevens exporteren" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Externe media" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Externe media kunnen websites toestaan om informatie over jou en jouw apparaat te verzamelen. Er wordt geen informatie verzonden of gevraagd totdat je drukt op de knop \"afspelen\"." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Externe mediavoorkeuren" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "Accepteren van chat mislukt" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "Toevoegen van emoji-reactie mislukt" @@ -3211,8 +3341,8 @@ msgstr "Kon app-wachtwoord niet aanmaken. Probeer het nog eens." msgid "Failed to create conversation" msgstr "Aanmaken van gesprek mislukt" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Het aanmaken van het startpakket is mislukt" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "Verwijderen van chat mislukt" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Privébericht kan niet worden verwijderd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Bericht verwijderen mislukt, probeer het opnieuw" @@ -3238,8 +3368,8 @@ msgstr "Bericht verwijderen mislukt, probeer het opnieuw" msgid "Failed to delete starter pack" msgstr "Het verwijderen van het startpakket is mislukt" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "" @@ -3250,14 +3380,32 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Het laden van feedvoorkeuren is mislukt" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Het laden van GIF's is mislukt" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Het laden van eerdere privéberichten is mislukt" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Het laden van voorgestelde feeds is mislukt" msgid "Failed to load suggested follows" msgstr "Het is niet gelukt om een lijst te laden met volgsuggesties" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Vastzetten van bericht is mislukt" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "" @@ -3291,15 +3439,11 @@ msgstr "Verwijderen van verificatie mislukt" msgid "Failed to save image: {0}" msgstr "Het opslaan van de afbeelding is mislukt: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Opslaan van meldingsvoorkeuren is mislukt, probeer het opnieuw" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "" @@ -3318,7 +3462,7 @@ msgstr "" msgid "Failed to submit appeal, please try again." msgstr "Het indienen van bezwaar is mislukt, probeer het opnieuw." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Het wisselen tussen wel/niet-negeren van het gesprek is mislukt, probeer het opnieuw" @@ -3335,7 +3479,11 @@ msgstr "" msgid "Failed to update feeds" msgstr "Het is niet gelukt om de feeds bij te werken" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Het is niet gelukt om de instellingen bij te werken" @@ -3354,15 +3502,23 @@ msgstr "" msgid "Failed to verify handle. Please try again." msgstr "Kon handle niet verifiëren. Probeer nog eens." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Feed" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Feed door {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Feedmenu" @@ -3371,35 +3527,39 @@ msgstr "Feedmenu" msgid "Feed toggle" msgstr "Feed wisselen" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Feedback" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Feedback verzonden!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Feeds" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Feeds zijn gepersonaliseerde algoritmen die gebruikers met een beetje programmeerkennis bouwen. <0/> voor meer informatie." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Feeds bijgewerkt!" @@ -3428,6 +3588,14 @@ msgstr "" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Afronding" @@ -3448,7 +3616,7 @@ msgstr "Mensen zoeken om te volgen" msgid "Find posts, users, and feeds on Bluesky" msgstr "Zoek berichten, gebruikers en feeds op Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Voltooien" @@ -3456,17 +3624,17 @@ msgstr "Voltooien" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Flexibel" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Volgen" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "{0} volgen" @@ -3518,7 +3686,7 @@ msgstr "Account volgen" msgid "Follow all" msgstr "Allen volgen" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Terugvolgen" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Terugvolgen" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Gevolgd door <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Gevolgd door <0>{0} en {1, plural, one {# ander} other {# anderen}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Gevolgd door <0>{0} en <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Gevolgd door <0>{0}, <1>{1}, en {2, plural, one {# ander} other {# anderen}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Volgers van @{0} die je kent" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Volgers die je kent" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Volgend" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Volgend" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Volgt {0}" @@ -3579,8 +3751,8 @@ msgstr "Je volgt {handle}" msgid "Following feed preferences" msgstr "Volgfeedvoorkeuren" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Volgfeedvoorkeuren" @@ -3592,11 +3764,11 @@ msgstr "Volgt jou" msgid "Follows You" msgstr "Volgt jou" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Lettertype" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Lettergrootte" @@ -3613,7 +3785,7 @@ msgstr "Om veiligheidsredenen moeten we een bevestigingscode naar je e-mailadres msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Om veiligheidsredenen kun je dit niet meer bekijken. Je moet een nieuw app-wachtwoord genereren als je dit app-wachtwoord kwijtraakt." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Voor de beste ervaring raden we je aan het themalettertype te gebruiken." @@ -3643,11 +3815,15 @@ msgstr "Vergeten?" msgid "Frequently Posts Unwanted Content" msgstr "Publiceert vaak ongewenste inhoud" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "Van @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "Van <0/>" @@ -3660,14 +3836,68 @@ msgstr "Galerij" msgid "Generate a starter pack" msgstr "Een startpakket genereren" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Hulp krijgen" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "Aan de slag" @@ -3688,14 +3918,16 @@ msgstr "Geef je profiel een gezicht" msgid "Glaring violations of law or terms of service" msgstr "Duidelijke overtredingen van de wet of servicevoorwaarden" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "Ga naar het profiel van {firstAuthorName}" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Naar gesprek met {0}" @@ -3779,8 +4017,8 @@ msgstr "Grafische media" msgid "Half way there!" msgstr "Halverwege!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Handle" @@ -3797,7 +4035,7 @@ msgstr "Handle gewijzigd!" msgid "Handle too long. Please try a shorter one." msgstr "Handle te lang. Probeer een kortere." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Haptische feedback" @@ -3806,7 +4044,7 @@ msgstr "Haptische feedback" msgid "Harassment, trolling, or intolerance" msgstr "Pesterijen, trolling of intolerantie" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Hashtag" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Hashtag {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "Heb je een code? <0>Klik hier." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Heb je problemen?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Hulp" @@ -3839,8 +4077,13 @@ msgstr "Laat mensen weten dat je geen bot bent door een foto te uploaden of een msgid "Here is your app password!" msgstr "Hier is uw app-wachtwoord!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Verborgen" @@ -3848,16 +4091,16 @@ msgstr "Verborgen" msgid "Hidden by your moderation settings." msgstr "Verborgen door je moderatie-instellingen." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Verborgen lijst" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Verborgen lijst" msgid "Hide" msgstr "Verbergen" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Verbergen" @@ -3875,18 +4118,18 @@ msgstr "Verbergen" msgid "Hide customization options" msgstr "Aanpassingsopties verbergen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Bericht voor mij verbergen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Reactie voor iedereen verbergen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Reactie voor mij verbergen" @@ -3894,12 +4137,12 @@ msgstr "Reactie voor mij verbergen" msgid "Hide this card" msgstr "Deze kaart verbergen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Dit bericht verbergen?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Deze reactie verbergen?" @@ -3913,11 +4156,11 @@ msgstr "Populaire onderwerpen verbergen" msgid "Hide trending topics?" msgstr "Populaire onderwerpen verbergen?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Populaire video’s verbergen?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Gebruikerslijst verbergen" @@ -3926,32 +4169,32 @@ msgstr "Gebruikerslijst verbergen" msgid "Hide verification badges" msgstr "Verificatiebadges verbergen" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Verbergt de inhoud" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm, er is een probleem opgetreden bij het verbinden met de feedserver. Stel de eigenaar van de feed op de hoogte van dit probleem." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm, de feedserver lijkt verkeerd geconfigureerd te zijn. Stel de eigenaar van de feed op de hoogte van dit probleem." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm, de feedserver lijkt offline te zijn. Stel de eigenaar van de feed op de hoogte van dit probleem." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm, de feedserver heeft een ongeldig antwoord teruggegeven. Stel de eigenaar van de feed op de hoogte van dit probleem." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, we hebben problemen met het vinden van deze feed. Deze is mogelijk verwijderd." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmm, het lijkt erop dat we problemen hebben met het laden van deze gegevens. Zie hieronder voor meer informatie. Neem contact met ons op als dit probleem zich blijft voordoen." @@ -3959,15 +4202,15 @@ msgstr "Hmm, het lijkt erop dat we problemen hebben met het laden van deze gegev msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmm, we kunnen die moderatieservice niet laden." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Wacht even! We geven geleidelijk toegang tot video en je staat nog steeds in de rij. Kom snel terug!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Startpagina" @@ -3984,10 +4227,10 @@ msgstr "Hostingprovider" msgid "Hot" msgstr "Populair" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Eerst warme antwoorden" @@ -3996,10 +4239,6 @@ msgstr "Eerst warme antwoorden" msgid "How should we open this link?" msgstr "Hoe moeten we deze link openen?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Ik begrijp het" msgid "If alt text is long, toggles alt text expanded state" msgstr "Als de alt-tekst lang is wordt de alt-tekst in- of uitgeklapt" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Als je volgens de wetten van je land nog geen volwassene bent moet jouw ouder of wettelijke voogd deze Voorwaarden namens jou lezen." @@ -4031,11 +4270,11 @@ msgstr "Als je deze lijst verwijdert kun je deze niet meer herstellen." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Als je een eigen domein hebt, kun je dat als handle gebruiken. Zo kun je je identiteit zelf verifiëren. <0>Klik hier voor meer informatie." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "<0>Klik hier als je je e-mailadres wilt wijzigen." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Als je dit bericht verwijdert kun je het niet meer herstellen." @@ -4047,6 +4286,10 @@ msgstr "Als je je e-mailadres wijzigt, wordt 2FA via e-mail uitgeschakeld." msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Als je jouw wachtwoord wilt wijzigen sturen we je een code om te verifiëren dat dit jouw account is." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "Als je een ontwikkelaar bent, kun je je eigen server hosten." @@ -4091,13 +4334,41 @@ msgstr "Nabootsing van identiteit of valse beweringen over identiteit of affilia msgid "Impersonation, misinformation, or false claims" msgstr "Nabootsing van identiteit, verkeerde informatie of valse beweringen" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Ongepaste privéberichten of expliciete links" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "" @@ -4105,7 +4376,7 @@ msgstr "" msgid "Incorrect username or password" msgstr "Ongeldige gebruikersnaam of wachtwoord" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Invoercode verzonden naar je e-mailadres voor het opnieuw instellen van je wachtwoord" @@ -4113,7 +4384,7 @@ msgstr "Invoercode verzonden naar je e-mailadres voor het opnieuw instellen van msgid "Input confirmation code for account deletion" msgstr "Voer de bevestigingscode in voor het verwijderen van het account" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Vul nieuw wachtwoord in" @@ -4129,10 +4400,14 @@ msgstr "Vul de code in die naar je is gemaild" msgid "Interaction limited" msgstr "Interactie beperkt" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Interactie-instellingen" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Ongeldige 2FA-bevestigingscode." msgid "Invalid handle. Please try a different one." msgstr "Ongeldige handle. Probeer een andere." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Ongeldig of niet-ondersteund berichtrecord" @@ -4158,7 +4433,7 @@ msgstr "Ongeldige verificatiecode" msgid "Invite a Friend" msgstr "Een vriend uitnodigen" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Uitnodigingscode" @@ -4186,15 +4461,15 @@ msgstr "Nodig je vrienden uit om je favoriete feeds en personen te volgen" msgid "Invites, but personal" msgstr "Uitnodigingen, maar dan persoonlijk" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Het klopt" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Jij bent nu nog de enige! Voeg meer personen toe aan je startpakket door hierboven te zoeken." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "Taak-ID: {0}" @@ -4220,11 +4495,27 @@ msgstr "Aan het gesprek deelnemen" msgid "Journalism" msgstr "Journalistiek" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Gelabeld door {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Gelabeld door de auteur." @@ -4237,7 +4528,7 @@ msgstr "Labels" msgid "Labels added" msgstr "Labels toegevoegd" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Labels zijn aantekeningen over gebruikers en inhoud. Ze kunnen worden gebruikt om het te verbergen, te waarschuwen en het netwerk te categoriseren." @@ -4253,22 +4544,30 @@ msgstr "Labels op je inhoud" msgid "Language selection" msgstr "Taalkeuze" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Taalinstellingen" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Talen" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Groter" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Nieuwste" @@ -4282,7 +4581,6 @@ msgstr "leer meer" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "" @@ -4290,6 +4588,10 @@ msgstr "" msgid "Learn More" msgstr "Leer meer" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Leer meer over Bluesky" @@ -4298,15 +4600,23 @@ msgstr "Leer meer over Bluesky" msgid "Learn more about self hosting your PDS." msgstr "Leer meer over het zelf hosten van je PDS." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "Meer informatie over de moderatie toegepast op deze inhoud" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Leer meer over de moderatie toegepast op deze inhoud." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Leer meer over deze waarschuwing" @@ -4316,12 +4626,16 @@ msgstr "Leer meer over deze waarschuwing" msgid "Learn more about verification on Bluesky" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Leer meer over wat openbaar is op Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Leer meer." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Gesprek verlaten" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Laat ze allemaal uitgeschakeld om elke taal te zien." +msgid "Leave them all unselected to see any language." +msgstr "" -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Je verlaat Bluesky" @@ -4370,7 +4685,7 @@ msgstr "Laten we gaan!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Licht" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Leuk" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Leuk ({0, plural, one {# vind-ik-leuk} other {# vind-ik-leuks}})" @@ -4397,6 +4712,10 @@ msgstr "Vind 10 berichten leuk" msgid "Like 10 posts to train the Discover feed" msgstr "Vind 10 berichten leuk om de Ontdekken-feed te trainen" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Vind deze feed leuk" @@ -4405,8 +4724,8 @@ msgstr "Vind deze feed leuk" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Leuk gevonden door" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Leuk gevonden door" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Leuk gevonden door {0, plural, one {# gebruiker} other {# gebruikers}}" @@ -4428,20 +4747,36 @@ msgstr "Leuk gevonden door {0, plural, one {# gebruiker} other {# gebruikers}}" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Leuk gevonden door {likeCount, plural, one {# gebruiker} other {# gebruikers}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Vind-ik-leuks" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Vind-ik-leuks op dit bericht" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Lineair" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Lijst" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Lijst geblokkeerd" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Lijst door {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Lijst niet-genegeerd" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Lijsten" @@ -4537,7 +4876,7 @@ msgstr "Meer laden" msgid "Load more suggested feeds" msgstr "Meer voorgestelde feeds laden" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Nieuwe meldingen laden" @@ -4552,11 +4891,11 @@ msgstr "Nieuwe berichten laden" msgid "Loading..." msgstr "Laden..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Logboek" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Afgemelde zichtbaarheid" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo door @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo door <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Logo door <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Hou ingedrukt om tagmenu te openen voor #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Ziet eruit als XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "" msgid "Make one for me" msgstr "Maak er een voor mij" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Zorg ervoor dat dit is waar je heen wilt!" @@ -4606,7 +4945,7 @@ msgstr "Zorg ervoor dat dit is waar je heen wilt!" msgid "Manage saved feeds" msgstr "Opgeslagen feeds beheren" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "" @@ -4614,9 +4953,9 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "Beheer je genegeerde woorden en tags" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "" @@ -4625,15 +4964,13 @@ msgstr "" msgid "Mark as read" msgstr "Markeren als gelezen" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "" @@ -4645,19 +4982,26 @@ msgstr "Media" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Media die voor bepaalde doelgroepen aanstootgevend of ongepast kunnen zijn." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "vermelde gebruikers" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Vermelde gebruikers" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Vermeldingen" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Menu" @@ -4665,7 +5009,7 @@ msgstr "Menu" msgid "Message {0}" msgstr "Privébericht verzenden naar {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Privébericht verwijderd" @@ -4674,11 +5018,11 @@ msgstr "Privébericht verwijderd" msgid "Message deleted" msgstr "Privébericht verwijderd" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Bericht van de server: {0}" @@ -4691,19 +5035,23 @@ msgstr "Privébericht invoerveld" msgid "Message is too long" msgstr "Privébericht is te lang" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "Berichtopties" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Privéberichten" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Misleidend account" msgid "Misleading Post" msgstr "Misleidend bericht" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderatie" @@ -4725,17 +5073,17 @@ msgstr "Moderatie" msgid "Moderation details" msgstr "Moderatiedetails" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Moderatielijst door {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Moderatielijst door <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Moderatielijst door jou" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Moderatielijst bijgewerkt" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Moderatielijsten" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Moderatielijsten" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "moderatie-instellingen" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Moderatietoestanden" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Moderatiehulpmiddelen" @@ -4775,7 +5123,7 @@ msgstr "Moderatiehulpmiddelen" msgid "Moderator has chosen to set a general warning on the content." msgstr "De moderator heeft ervoor gekozen om een algemene waarschuwing in te stellen voor de inhoud." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Meer" @@ -4790,13 +5138,13 @@ msgstr "Meer feeds" msgid "More options" msgstr "Meer opties" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Meest leuk gevonden eerst" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Meest leuk-gevonden antwoorden eerst" @@ -4808,8 +5156,8 @@ msgstr "Films" msgid "Music" msgstr "Muziek" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Negeren" @@ -4819,8 +5167,8 @@ msgstr "Negeren" msgid "Mute {tag}" msgstr "{tag} negeren" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Dit woord alleen in tags negeren" msgid "Mute this word until you unmute it" msgstr "Dit woord negeren totdat je het negeren opheft" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Gesprek negeren" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Woorden en tags negeren" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Genegeerde accounts" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Genegeerde accounts" @@ -4898,7 +5246,7 @@ msgstr "Van genegeerde accounts worden de berichten verwijderd uit je feed en ui msgid "Muted by \"{0}\"" msgstr "Genegeerd door \"{0}\"" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Genegeerde woorden en tags" @@ -4911,7 +5259,7 @@ msgstr "Negeren is privé. Genegeerde accounts kunnen met je communiceren, maar msgid "My Birthday" msgstr "Mijn verjaardag" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Mijn feeds" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Natuur" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Navigeren naar {0}" @@ -4958,11 +5306,11 @@ msgstr "Navigeert naar het volgende scherm" msgid "Navigates to your profile" msgstr "Navigeert naar je profiel" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Moet je het wijzigen?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Wil je een inbreuk op het auteursrecht melden?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Nieuw" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Nieuwe chat" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Nieuwe privéberichten" msgid "New Moderation List" msgstr "Nieuwe moderatielijst" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Nieuw wachtwoord" @@ -5029,7 +5396,7 @@ msgstr "Nieuw wachtwoord" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Nieuw bericht" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Nieuw bericht" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Nieuwe gebruiker informatiedialoog" @@ -5054,10 +5429,14 @@ msgstr "Nieuwe gebruiker informatiedialoog" msgid "New User List" msgstr "Nieuwe gebruikerslijst" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Nieuwste antwoorden eerst" @@ -5071,15 +5450,15 @@ msgstr "Nieuws" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "Geen DNS-paneel" msgid "No expiry set" msgstr "" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Geen aanbevolen GIF's gevonden. Er is mogelijk een probleem met Tenor." @@ -5119,32 +5498,35 @@ msgstr "" msgid "No likes yet" msgstr "Nog geen vind-ik-leuks" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Je volgt {0} niet meer" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Nog geen privéberichten" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Nog geen meldingen!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Niemand" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Alleen de auteur mag dit bericht citeren." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Nog geen berichten." @@ -5171,7 +5553,7 @@ msgstr "Geen resultaten" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Geen resultaten gevonden" @@ -5179,9 +5561,9 @@ msgstr "Geen resultaten gevonden" msgid "No results found for \"{query}\"" msgstr "Geen resultaten gevonden voor \"{query}\"" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Geen resultaten gevonden voor {query}" @@ -5189,7 +5571,7 @@ msgstr "Geen resultaten gevonden voor {query}" msgid "No results." msgstr "" -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Geen zoekresultaten gevonden voor \"{search}\"." @@ -5198,7 +5580,7 @@ msgstr "Geen zoekresultaten gevonden voor \"{search}\"." msgid "No thanks" msgstr "Nee, bedankt" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Niemand" @@ -5223,59 +5605,76 @@ msgstr "Niemand gevonden. Probeer iemand anders te zoeken." msgid "Non-sexual Nudity" msgstr "Niet-seksuele naaktbeelden" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Niet gevonden" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Opmerking over delen" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Opmerking: Bluesky is een open en openbaar netwerk. Deze instelling beperkt alleen de zichtbaarheid van je inhoud op de Bluesky-app en -website. Andere apps respecteren deze instelling mogelijk niet. Je inhoud kan nog steeds worden getoond aan afgemelde gebruikers door andere apps en websites." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Niets hier" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Meldingsfilters" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Meldinginstellingen" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Meldinginstellingen" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Meldingsgeluiden" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Meldingsgeluiden" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Meldingen" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "nu" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Bloot of inhoud voor volwassenen die niet als zodanig is gelabeld" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Uit" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "O nee!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "OK" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Oké" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Oudste antwoorden eerst" @@ -5331,19 +5736,19 @@ msgstr "Oudste antwoorden eerst" msgid "on<0><1/><2><3/>" msgstr "op<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Introductie opnieuw tonen" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "Alt-tekst ontbreekt bij een of meer GIF's." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Bij een of meer afbeeldingen ontbreekt de alt-tekst." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Alt-tekst ontbreekt bij een of meer video's." @@ -5351,13 +5756,15 @@ msgstr "Alt-tekst ontbreekt bij een of meer video's." msgid "Only .jpg and .png files are supported" msgstr "Alleen .jpg- en .png-bestanden worden ondersteund" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Alleen {0} kan reageren." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Bevat alleen letters, cijfers en koppeltekens" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Alleen afbeeldingsbestanden worden ondersteund" msgid "Only WebVTT (.vtt) files are supported" msgstr "Alleen WebVTT (.vtt)-bestanden worden ondersteund" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Oeps, er is iets misgegaan!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Oeps!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Menu openen" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Emoji-kiezer openen" @@ -5416,7 +5822,7 @@ msgstr "Menu Feedopties openen" msgid "Open full emoji list" msgstr "" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Link naar {niceUrl} openen" @@ -5424,11 +5830,11 @@ msgstr "Link naar {niceUrl} openen" msgid "Open message options" msgstr "Privéberichtopties openen" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Open moderatie debugpagina" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Genegeerde woorden en tags-instellingen openen" @@ -5453,16 +5859,16 @@ msgstr "" msgid "Open starter pack menu" msgstr "Startpakketmenu openen" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Verhalenboekpagina openen" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Systeemlogboek openen" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Opent {numItems} opties" @@ -5490,11 +5896,11 @@ msgstr "Opent camera op apparaat" msgid "Opens captions and alt text dialog" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Opent composer" @@ -5502,7 +5908,7 @@ msgstr "Opent composer" msgid "Opens device photo gallery" msgstr "Opent fotogalerij van apparaat" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Opent de emoji-kiezer" @@ -5520,15 +5926,19 @@ msgstr "Opent het proces om je aan te melden bij je bestaande Bluesky-account" msgid "Opens GIF select dialog" msgstr "Opent dialoogvenster voor GIF-selectie" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Opent de helpdesk in je browser" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Opent lijst met uitnodigingscodes" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "" @@ -5536,12 +5946,8 @@ msgstr "" msgid "Opens password reset form" msgstr "Opent formulier om het wachtwoord opnieuw in te stellen" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Opent de gelinkte website" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Opent dit profiel" @@ -5558,7 +5964,7 @@ msgstr "Vul optioneel hieronder aanvullende informatie in:" msgid "Options:" msgstr "Opties:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Of combineer deze opties:" @@ -5600,6 +6006,10 @@ msgstr "Ander account" msgid "Other..." msgstr "Anders..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "Ons moderatieteam heeft je melding ontvangen." @@ -5608,7 +6018,7 @@ msgstr "Ons moderatieteam heeft je melding ontvangen." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Onze moderators hebben de meldingen bekeken en besloten je toegang tot chats op Bluesky uit te schakelen." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Pagina niet gevonden" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Pagina niet gevonden" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Wachtwoord bijgewerkt" msgid "Password updated!" msgstr "Wachtwoord bijgewerkt!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Pauzeren" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Video pauzeren" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Personen" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Personen gevolgd door @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Personen die @{0} volgen" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "" @@ -5704,12 +6119,12 @@ msgstr "Vastzetten op startpagina" msgid "Pin to Home" msgstr "Vastzetten op startpagina" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Vastmaken aan je profiel" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Vastgezet" @@ -5718,7 +6133,7 @@ msgstr "Vastgezet" msgid "Pinned {0} to Home" msgstr "{0} vastgemaakt aan startpagina" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Vastgezette feeds" @@ -5726,38 +6141,38 @@ msgstr "Vastgezette feeds" msgid "Pinned to your feeds" msgstr "Vastgezet aan je feeds" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Afspelen" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "{0} afspelen" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Video afspelen" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Video afspelen" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Speelt of pauzeert de GIF" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Speelt de GIF af" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "" @@ -5765,12 +6180,16 @@ msgstr "" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Je handle kiezen." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Kies je wachtwoord." @@ -5782,7 +6201,8 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Vul de verificatie-captcha in." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "" @@ -5804,6 +6224,7 @@ msgstr "Voer een unieke naam in voor dit app-wachtwoord of gebruik ons willekeur msgid "Please enter a valid code." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "" @@ -5812,7 +6233,11 @@ msgstr "" msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Vul een geldig woord, tag of woordgroep in om te negeren" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "" #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Vul je e-mailadres in." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Vul je uitnodigingscode in." @@ -5853,6 +6278,19 @@ msgstr "Leg uit waarom je denkt dat dit label onjuist is toegepast door {0}" msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Leg uit waarom je denkt dat je chats ten onrechte zijn uitgeschakeld" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "" @@ -5870,9 +6308,9 @@ msgstr "Meld je aan als @{0}" msgid "Please verify your email" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Verifieer je e-mailadres" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Politiek" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Plaatsen" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Bericht" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Plaatsen" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Alles plaatsen" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Bericht door {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Bericht door @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Bericht verwijderd" @@ -5919,11 +6362,14 @@ msgstr "Bericht verwijderd" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Bericht kan niet worden geüpload. Controleer je internetverbinding en probeer het opnieuw." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Bericht verborgen" @@ -5937,11 +6383,11 @@ msgstr "Bericht verborgen door genegeerd woord" msgid "Post Hidden by You" msgstr "Bericht verborgen door jou" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Instellingen voor berichtinteractie" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "" @@ -5954,8 +6400,10 @@ msgstr "Taal van het bericht" msgid "Post Languages" msgstr "Talen van het bericht" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Bericht niet gevonden" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Bericht losgemaakt" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Berichten" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Berichten kunnen worden genegeerd op basis van tekst, tags of beide. We raden aan om veelvoorkomende woorden die in veel berichten voorkomen te vermijden omdat dit ertoe kan leiden dat geen berichten meer worden weergegeven." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Berichten verborgen" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Mogelijk misleidende link" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Voorkeur opgeslagen" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Druk om opnieuw verbinding te maken" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Druk om opnieuw te proberen" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Druk om de volgers van dit account te bekijken die je ook volgt" @@ -6015,40 +6469,46 @@ msgstr "Vorige afbeelding" msgid "Primary Language" msgstr "Primaire taal" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Prioriteit aan je volgers geven" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Prioriteitsmeldingen" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Privacy en beveiliging" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacy en beveiliging" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Privacybeleid" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Video verwerken..." @@ -6062,15 +6522,14 @@ msgstr "Verwerken..." msgid "profile" msgstr "profiel" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Profiel" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Profiel bijgewerkt" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "QR-code gekopieerd naar je klembord!" @@ -6119,44 +6594,52 @@ msgstr "QR-code is gedownload!" msgid "QR code saved to your camera roll!" msgstr "QR-code opgeslagen in je camerarol!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Citaatbericht" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "Citaatbericht is opnieuw toegevoegd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "Citaatbericht is succesvol losgekoppeld" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Citaatberichten uitgeschakeld" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Citaatinstellingen" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Citaten" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Citaten van dit bericht" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Willekeurig (ook bekend als \"Berichtenroulette\")" @@ -6164,8 +6647,8 @@ msgstr "Willekeurig (ook bekend als \"Berichtenroulette\")" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Snelheidslimiet overschreden - je hebt in korte tijd te vaak geprobeerd je handle te wijzigen. Wacht een minuut voordat je het opnieuw probeert." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Citaat opnieuw toevoegen" @@ -6177,30 +6660,42 @@ msgstr "" msgid "Reactivate your account" msgstr "Activeer je account opnieuw" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Lees de Bluesky-blog" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Lees het Bluesky-privacybeleid" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Lees de Bluesky-servicevoorwaarden" @@ -6213,6 +6708,14 @@ msgstr "" msgid "Reason:" msgstr "Reden:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Recente zoekopdrachten" @@ -6234,8 +6737,8 @@ msgstr "" msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Gesprekken opnieuw laden" @@ -6244,10 +6747,9 @@ msgstr "Gesprekken opnieuw laden" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Verwijderen" @@ -6259,17 +6761,17 @@ msgstr "{displayName} uit startpakket verwijderen" msgid "Remove {historyItem}" msgstr "" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Account verwijderen" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Bijlage verwijderen" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Avatar verwijderen" @@ -6284,24 +6786,22 @@ msgstr "Insluiting verwijderen" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Feed verwijderen" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Feed verwijderen?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Verwijderen uit mijn feeds" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Verwijderen uit snelle toegang?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "Verwijderen uit opgeslagen feeds" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Afbeelding verwijderen" @@ -6332,12 +6831,8 @@ msgstr "Verwijder een genegeerd woord uit je lijst" msgid "Remove profile" msgstr "Profiel verwijderen" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Citaat verwijderen" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Herplaatsing verwijderen" @@ -6345,7 +6840,7 @@ msgstr "Herplaatsing verwijderen" msgid "Remove subtitle file" msgstr "Ondertitelbestand verwijderen" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Verwijder deze feed uit je bewaarde feeds" @@ -6364,11 +6859,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Verwijderd door auteur" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Verwijderd door je" @@ -6377,10 +6872,6 @@ msgstr "Verwijderd door je" msgid "Removed from list" msgstr "Verwijderd uit lijst" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Verwijderd uit mijn feeds" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Verwijderd uit opgeslagen feeds" @@ -6395,34 +6886,36 @@ msgstr "Verwijderd uit je feeds" msgid "Removed verification" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Verwijdert citaatbericht" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Vervangen door Ontdekken" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Antwoorden" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Antwoorden uitgeschakeld" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Antwoorden op dit bericht zijn uitgeschakeld." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Reageren" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -6436,50 +6929,55 @@ msgstr "Reactie verborgen door auteur van gesprek" msgid "Reply Hidden by You" msgstr "Reactie verborgen door jou" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Reactie-instellingen" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "Reactie-instellingen worden gekozen door de auteur van het gesprek" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Reactie op <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Reageer op een geblokkeerd bericht" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Reageer op een bericht" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Reactie op jou" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Zichtbaarheid van reactie bijgewerkt" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Reactie is succesvol verborgen" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Feed melden" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Privébericht melden" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Bericht melden" @@ -6567,25 +7065,26 @@ msgstr "Dit startpakket melden" msgid "Report this user" msgstr "Deze gebruiker melden" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Herplaatsen" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Herplaatsen" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Bericht herplaatsen of citeren" @@ -6594,26 +7093,38 @@ msgstr "Bericht herplaatsen of citeren" msgid "Reposted By" msgstr "Herplaatst door" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Herplaatst door {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Herplaatst door <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Herplaatst door jou" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Herplaatsingen van dit bericht" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" msgstr "" #: src/view/com/modals/ChangePassword.tsx:253 @@ -6621,8 +7132,8 @@ msgstr "" msgid "Request Code" msgstr "Code aanvragen" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Alt-tekst vereisen voor het plaatsen" @@ -6630,7 +7141,7 @@ msgstr "Alt-tekst vereisen voor het plaatsen" msgid "Require an email code to sign in to your account." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Vereist voor deze provider" @@ -6642,10 +7153,6 @@ msgstr "Vereist in je regio" msgid "Resend" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "E-mail opnieuw verzenden" msgid "Resend Verification Email" msgstr "Verificatie-e-mail opnieuw verzenden" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Code opnieuw instellen" @@ -6667,8 +7180,8 @@ msgstr "Code opnieuw instellen" msgid "Reset Code" msgstr "Code opnieuw instellen" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Introductie-status opnieuw instellen" @@ -6687,21 +7200,23 @@ msgstr "Probeert de laatste mislukte actie opnieuw" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Opnieuw" @@ -6721,19 +7236,19 @@ msgstr "Terug naar de startpagina" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Terug naar de vorige pagina" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Opslaan" @@ -6762,15 +7276,13 @@ msgstr "Opslaan" msgid "Save birthday" msgstr "Verjaardag opslaan" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Wijzigingen opslaan" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Wijzigingen opslaan" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "QR-code opslaan" msgid "Save to my feeds" msgstr "In mijn feeds opslaan" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Opgeslagen feeds" @@ -6802,18 +7314,14 @@ msgstr "Opgeslagen feeds" msgid "Saved to your feeds" msgstr "Opgeslagen in je feeds" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Alle wijzigingen van je profiel opslaan" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Slaat instellingen voor bijsnijden van afbeeldingen op" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Zeg hallo!" @@ -6826,16 +7334,16 @@ msgstr "Wetenschap" msgid "Scroll to top" msgstr "Naar boven scrollen" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Zoeken" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -6861,7 +7369,7 @@ msgstr "Zoeken naar \"{query}\"" msgid "Search for \"{searchText}\"" msgstr "Zoeken naar \"{searchText}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Zoek naar feeds die je aan anderen wilt voorstellen." @@ -6877,10 +7385,14 @@ msgstr "" msgid "Search for posts, users, or feeds" msgstr "" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "GIF's zoeken" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "" @@ -6890,12 +7402,12 @@ msgstr "" msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Profielen zoeken" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Zoeken op Tenor" @@ -6903,7 +7415,7 @@ msgstr "Zoeken op Tenor" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "" @@ -6912,10 +7424,6 @@ msgstr "" msgid "Security step required" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Beveiligingsstap vereist" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "" @@ -6936,14 +7444,31 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Vacatures bij Bluesky bekijken" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Deze gids bekijken" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Zoekslider. Gebruik de pijltjestoetsen om vooruit en achteruit te zoeken en spatie om af te spelen/pauzeren" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Selecteer een kleur" @@ -6988,7 +7513,7 @@ msgstr "Selecteer uit een bestaand account" msgid "Select GIF" msgstr "GIF selecteren" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "GIF \"{0}\" selecteren" @@ -6996,6 +7521,11 @@ msgstr "GIF \"{0}\" selecteren" msgid "Select how long to mute this word for." msgstr "Selecteer hoe lang je dit woord wilt negeren." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Selecteer taal..." @@ -7004,7 +7534,7 @@ msgstr "Selecteer taal..." msgid "Select languages" msgstr "Selecteer talen" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "" @@ -7045,12 +7575,12 @@ msgstr "" msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Selecteer welke talen je wilt opnemen in je geabonneerde feeds. Alle talen worden weergegeven als er geen talen zijn geselecteerd." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Selecteer je geboortedatum" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Selecteer je interesses uit de onderstaande opties" @@ -7058,7 +7588,11 @@ msgstr "Selecteer je interesses uit de onderstaande opties" msgid "Select your preferred language for translations in your feed." msgstr "Selecteer de taal waarin je de vertalingen in je feed wilt weergeven." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "" @@ -7066,17 +7600,9 @@ msgstr "" msgid "Send a neat website!" msgstr "Stuur een mooie website!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Bevestigingsmail verzenden" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "E-mail verzenden" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "E-mail verzenden" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Feedback verzenden" @@ -7095,7 +7621,7 @@ msgstr "Feedback verzenden" msgid "Send message" msgstr "Privébericht verzenden" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "" @@ -7114,20 +7640,20 @@ msgstr "Melding verzenden" msgid "Send report to {0}" msgstr "Melding verzenden naar {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Verificatie-e-mail verzenden" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Verzenden als privébericht" @@ -7143,7 +7669,7 @@ msgstr "Serveradres" msgid "Set app icon to {0}" msgstr "" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Geboortedatum instellen" @@ -7159,13 +7685,57 @@ msgstr "Stel je account in" msgid "Sets email for password reset" msgstr "Stelt e-mail in voor het opnieuw instellen van wachtwoorden" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Instellingen" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "Een leuk verhaal delen!" msgid "Share a fun fact!" msgstr "Een leuk weetje delen!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Toch delen" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Link delen" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Link delen" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Dialoogvenster Link delen" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "at://-URI van bericht delen" @@ -7247,8 +7812,8 @@ msgstr "Dit startpakket delen" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Deel dit startpakket en help mensen lid te worden van je gemeenschap op Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "" msgid "Share your favorite feed!" msgstr "Je favoriete feed delen!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Gedeelde voorkeuren-tester" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Deelt de gelinkte website" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Tonen" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Toon alt-tekst" @@ -7303,8 +7864,8 @@ msgstr "" msgid "Show hidden replies" msgstr "Verborgen reacties tonen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Minder hiervan tonen" @@ -7312,55 +7873,63 @@ msgstr "Minder hiervan tonen" msgid "Show list anyway" msgstr "Lijst toch tonen" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Meer tonen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Meer hiervan tonen" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Genegeerde reacties tonen" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Citaatberichten tonen" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Antwoorden tonen" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Antwoorden van mensen die je volgt weergeven vóór alle andere antwoorden" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Reactie voor iedereen tonen" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Herplaatsingen tonen" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Voorbeelden van je opgeslagen feeds tonen in je Following-feed" @@ -7372,16 +7941,17 @@ msgstr "Waarschuwing tonen" msgid "Show warning and filter from feeds" msgstr "Waarschuwing en filter uit feeds tonen" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "" @@ -7390,14 +7960,15 @@ msgstr "" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "" msgid "Sign in to Bluesky or create a new account" msgstr "" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Afmelden" @@ -7444,8 +8020,8 @@ msgstr "Afmelden" msgid "Sign Out" msgstr "" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Afmelden?" @@ -7459,12 +8035,12 @@ msgstr "Aanmelden vereist" msgid "Signed in as @{0}" msgstr "Aangemeld als @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Vergelijkbare accounts" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Overslaan" @@ -7472,12 +8048,11 @@ msgstr "Overslaan" msgid "Skip this flow" msgstr "Deze flow overslaan" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Kleiner" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "" @@ -7490,11 +8065,11 @@ msgstr "Softwareontwikkelaar" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Enkele andere feeds die je wellicht leuk vindt" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Sommige personen kunnen reageren" @@ -7510,10 +8085,11 @@ msgstr "" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "" -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Er is iets misgegaan" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Er is iets fout gegaan, probeer het opnieuw" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Er is iets fout gegaan, probeer het opnieuw." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Er is iets fout gegaan!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "" @@ -7539,20 +8118,23 @@ msgstr "" msgid "Something wrong? Let us know." msgstr "" -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Antwoorden sorteren" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Antwoorden sorteren op" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Sorteer reacties op hetzelfde bericht op:" @@ -7579,7 +8161,7 @@ msgstr "Spam; overmatig veel vermeldingen of reacties" msgid "Sports" msgstr "Sport" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "" @@ -7601,9 +8183,9 @@ msgstr "" msgid "Start chat with {displayName}" msgstr "Chat starten met {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Startpakket" @@ -7611,12 +8193,12 @@ msgstr "Startpakket" msgid "Starter pack by {0}" msgstr "Startpakket door {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Startpakket door jou" @@ -7638,19 +8220,21 @@ msgstr "Met startpakketten kun je eenvoudig je favoriete feeds en personen delen msgid "Status Page" msgstr "Statuspagina" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Stap {0} van {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Opslag gewist, je moet de app nu opnieuw opstarten." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Verhalenboek" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "" @@ -7676,10 +8260,14 @@ msgstr "" msgid "Subscribe" msgstr "Abonneren" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Abonneer je op @{0} om deze labels te gebruiken:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Abonneren op labeler" @@ -7692,8 +8280,12 @@ msgstr "Abonneren op deze labeler" msgid "Subscribe to this list" msgstr "Abonneren op deze lijst" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Gelukt!" @@ -7705,7 +8297,7 @@ msgstr "" msgid "Suggested Accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Aanbevolen voor jou" @@ -7714,26 +8306,26 @@ msgstr "Aanbevolen voor jou" msgid "Suggestive" msgstr "Suggestief" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Ondersteuning" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Van account wisselen" @@ -7742,24 +8334,24 @@ msgstr "Van account wisselen" msgid "Switch Account" msgstr "Van account wisselen" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Systeem" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Systeemlogboek" @@ -7767,6 +8359,18 @@ msgstr "Systeemlogboek" msgid "Tags only" msgstr "Alleen tags" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Vertel ons iets meer" msgid "Terms" msgstr "Voorwaarden" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Servicevoorwaarden" @@ -7848,10 +8454,6 @@ msgstr "Tekstinvoerveld" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Bedankt! Je e-mailadres is succesvol geverifieerd." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Bedankt. Je melding is verzonden." @@ -7864,28 +8466,28 @@ msgstr "Bedankt, je hebt je e-mailadres succesvol geverifieerd. Je kunt dit dial msgid "That contains the following:" msgstr "Daarin staat het volgende:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Die handle is al in gebruik." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Dat startpakket kan niet worden gevonden." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Dat is alles, mensen!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "Het account kan met je communiceren na het deblokkeren." @@ -7900,7 +8502,7 @@ msgstr "" msgid "The author of this thread has hidden this reply." msgstr "De auteur van dit gesprek heeft deze reactie verborgen." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "De Bluesky-webapplicatie" @@ -7920,10 +8522,6 @@ msgstr "De Ontdekken-feed" msgid "The Discover feed now knows what you like" msgstr "De Ontdekken-feed weet nu wat je leuk vindt" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "" - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "De ervaring is beter in de app. Download Bluesky nu en we pakken het op waar je gebleven was." @@ -7944,8 +8542,16 @@ msgstr "De volgende labels zijn op je inhoud toegepast." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Het bericht is mogelijk verwijderd." @@ -7953,9 +8559,10 @@ msgstr "Het bericht is mogelijk verwijderd." msgid "The Privacy Policy has been moved to <0/>" msgstr "Het privacybeleid is verplaatst naar <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "De geselecteerde video is groter dan 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "" #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "De Servicevoorwaarden zijn verplaatst naar" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "De verificatiecode die je hebt opgegeven is ongeldig. Controleer of je de juiste verificatielink hebt gebruikt of vraag een nieuwe aan." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Thema" @@ -7990,14 +8597,14 @@ msgstr "Thema" msgid "There is no time limit for account deactivation, come back any time." msgstr "Er is geen tijdslimiet voor het deactiveren van het account; je kunt op elk moment terugkomen." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Er is een probleem opgetreden bij het verbinden met Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Er is een probleem opgetreden bij het verbinden met de server" @@ -8006,17 +8613,12 @@ msgstr "Er is een probleem opgetreden bij het verbinden met de server" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Er is een probleem opgetreden bij het verbinden met de server. Controleer je internetverbinding en probeer het opnieuw." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Er is een probleem opgetreden bij het verbinden met je server" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Er is een probleem opgetreden bij het ophalen van meldingen. Tik hier om het opnieuw te proberen." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Er is een probleem opgetreden bij het ophalen van berichten. Tik hier om het opnieuw te proberen." @@ -8037,7 +8639,7 @@ msgstr "Er is een probleem opgetreden bij het ophalen van je lijsten. Tik hier o msgid "There was an issue fetching your service info" msgstr "Er is een probleem opgetreden bij het ophalen van uw servicegegevens" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Er is een probleem opgetreden bij het verwijderen van deze feed. Controleer je internetverbinding en probeer het opnieuw." @@ -8052,9 +8654,9 @@ msgstr "Er is een probleem opgetreden bij het verzenden van je melding. Controle msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Er is een probleem opgetreden bij het bijwerken van je feeds. Controleer je internetverbinding en probeer het opnieuw." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Er is een probleem opgetreden bij het bijwerken van je feeds. Controleer msgid "There was an issue! {0}" msgstr "Er is een probleem opgetreden! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Er is een probleem opgetreden! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Er is een probleem opgetreden. Controleer je internetverbinding en probeer het opnieuw." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Er is een onverwacht probleem opgetreden in de applicatie. Laat het ons weten als dit bij jou is gebeurd!" @@ -8089,7 +8691,7 @@ msgstr "Er is een onverwacht probleem opgetreden in de applicatie. Laat het ons msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Er is een stormloop van nieuwe gebruikers naar Bluesky! We activeren je account zo snel mogelijk." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Deze instellingen zijn alleen van toepassing op de volgende feed." @@ -8146,7 +8748,7 @@ msgstr "Deze inhoud wordt gehost door {0}. Wil je externe media inschakelen?" msgid "This content is not available because one of the users involved has blocked the other." msgstr "Deze inhoud is niet beschikbaar omdat een van de betrokken gebruikers de andere heeft geblokkeerd." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Deze inhoud is niet zichtbaar zonder een Bluesky-account." @@ -8158,6 +8760,10 @@ msgstr "" msgid "This email is already associated with your account." msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Deze functie is in bèta. Je kunt meer lezen over repository-exporten in <0>dit blogbericht." @@ -8170,7 +8776,7 @@ msgstr "" msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Deze functie is niet beschikbaar bij gebruik van een app-wachtwoord. Meld je aan met je hoofdwachtwoord." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Deze feed ontvangt momenteel veel verkeer en is tijdelijk niet beschikbaar. Probeer het later opnieuw." @@ -8209,11 +8815,11 @@ msgstr "Dit label is aangebracht door de auteur." msgid "This label was applied by you." msgstr "Dit label is aangebracht door jou." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Deze labeler heeft niet aangegeven welke labels hij publiceert en is mogelijk niet actief." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Deze link brengt je naar de volgende website:" @@ -8233,29 +8839,28 @@ msgstr "" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Deze moderatieservice is niet beschikbaar. Zie hieronder voor meer details. Neem contact met ons op als dit probleem zich blijft voordoen." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Dit bericht beweert te zijn gemaakt op <0>{0}, maar werd voor het eerst gezien door Bluesky op <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Dit bericht is verwijderd." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Dit bericht wordt verborgen voor feeds en gesprekken. Dit kan niet ongedaan worden gemaakt." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "De auteur van dit bericht heeft het plaatsen van citaten uitgeschakeld." @@ -8263,11 +8868,11 @@ msgstr "De auteur van dit bericht heeft het plaatsen van citaten uitgeschakeld." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Deze reactie wordt gesorteerd in een verborgen sectie onderaan het gesprek en negeert meldingen voor volgende reacties - zowel voor jou als voor anderen." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Deze service heeft geen servicevoorwaarden of een privacybeleid." @@ -8275,6 +8880,10 @@ msgstr "Deze service heeft geen servicevoorwaarden of een privacybeleid." msgid "This should create a domain record at:" msgstr "Dit zou een domeinrecord moeten aanmaken op:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" @@ -8316,16 +8925,18 @@ msgstr "Deze gebruiker volgt niemand." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Hiermee wordt \"{0}\" uit je genegeerde woorden verwijderd. Je kunt het later altijd weer toevoegen." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Hiermee wordt @{0} verwijderd uit de snelle toegangslijst." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Hiermee wordt je bericht voor alle gebruikers uit het citaat verwijderd en vervangen door een plaatshouder." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "" @@ -8334,24 +8945,27 @@ msgstr "" msgid "Thread preferences" msgstr "Gespreksvoorkeuren" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Gespreksvoorkeuren" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Gespreksmodus" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Gespreksvoorkeuren" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "" @@ -8376,42 +8990,56 @@ msgstr "Aan wie wil je deze melding sturen?" msgid "Today" msgstr "Vandaag" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Menu tonen/verbergen" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Wissel om inhoud voor volwassenen in of uit te schakelen" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Populair" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Vertalen" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "" @@ -8428,14 +9056,10 @@ msgstr "Opnieuw proberen" msgid "TV" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Tweefactorauthenticatie (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Vul je gebruikershandle in." - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Typ hier je privébericht" @@ -8453,7 +9077,7 @@ msgstr "Kan geen verbinding maken. Controleer uw internetverbinding en probeer o #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Kan geen contact maken met je service. Controleer je internetverbinding. msgid "Unable to delete" msgstr "Kan niet verwijderen" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Deblokkeren" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Deblokkeren" @@ -8486,7 +9126,7 @@ msgstr "Deblokkeren" msgid "Unblock account" msgstr "Account deblokkeren" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Account deblokkeren?" @@ -8495,13 +9135,13 @@ msgstr "Account deblokkeren?" msgid "Unblock list" msgstr "" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Herplaatsen ongedaan maken" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Ontvolgen" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "{0} ontvolgen" @@ -8523,7 +9163,7 @@ msgstr "Account ontvolgen" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "" @@ -8555,8 +9195,8 @@ msgstr "Niet meer negeren" msgid "Unmute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Gesprek niet meer negeren" msgid "Unmute list" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Gesprek niet meer negeren" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Video niet meer negeren" @@ -8597,8 +9237,8 @@ msgstr "" msgid "Unpin from home" msgstr "Losmaken van startpagina" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Losmaken van profiel" @@ -8614,8 +9254,8 @@ msgstr "" msgid "Unpinned from your feeds" msgstr "Losgemaakt van je feeds" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "" @@ -8636,7 +9276,7 @@ msgstr "Afmelden voor deze labeler" msgid "Unsubscribed from list" msgstr "Uitgeschreven voor lijst" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Niet-ondersteund videotype" @@ -8662,8 +9302,8 @@ msgstr "<0>{displayName} bijwerken in lijsten" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "" @@ -8676,17 +9316,17 @@ msgstr "Bijwerken naar {domain}" msgid "Update your email" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Bijwerken van citaatbijlage is mislukt" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Bijwerken van zichtbaarheid van reactie is mislukt" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Bijwerken..." @@ -8698,20 +9338,20 @@ msgstr "In plaats daarvan een foto uploaden" msgid "Upload a text file to:" msgstr "Upload een tekstbestand naar:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Uploaden vanaf camera" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Uploaden vanuit bestanden" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Uploaden vanuit bibliotheek" msgid "Uploading images..." msgstr "Afbeeldingen uploaden..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Linkminiatuur uploaden..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Video uploaden..." @@ -8761,6 +9401,10 @@ msgstr "Aanbevolen gebruiken" msgid "Use this to sign in to the other app along with your handle." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Gebruikt door:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Gebruikerslijst bijgewerkt" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Gebruikersnaam of e-mailadres" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "gebruikers gevolgd door <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Gebruikers die ik volg" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Gebruikers in \"{0}”" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "" @@ -8846,11 +9502,11 @@ msgstr "Waarde:" msgid "Verification failed, please try again." msgstr "" -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "" @@ -8870,8 +9526,15 @@ msgstr "" msgid "Verify account" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "" @@ -8880,21 +9543,20 @@ msgstr "" msgid "Verify DNS Record" msgstr "DNS-record verifiëren" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Dialoogvenster E-mailadres verifiëren" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Tekstbestand verifiëren" msgid "Verify this account?" msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Je e-mailadres verifiëren" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Verifieer je e-mailadres" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Versie {appVersion}" +msgid "Version {0}" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "" @@ -8928,7 +9598,7 @@ msgstr "" msgid "Video failed to process" msgstr "Video kan niet worden verwerkt" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "" @@ -8942,15 +9612,15 @@ msgstr "" msgid "Video Games" msgstr "Videogames" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Video niet gevonden." @@ -8958,11 +9628,11 @@ msgstr "Video niet gevonden." msgid "Video settings" msgstr "Video-instellingen" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Video geüpload" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "" @@ -8979,11 +9649,11 @@ msgstr "" msgid "View {0}'s avatar" msgstr "Avatar van {0} bekijken" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Profiel van {0} bekijken" @@ -8991,7 +9661,7 @@ msgstr "Profiel van {0} bekijken" msgid "View {displayName}'s profile" msgstr "Profiel van {displayName} bekijken" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Profiel van geblokkeerde gebruiker bekijken" @@ -9009,7 +9679,6 @@ msgstr "Debug-item bekijken" msgid "View details" msgstr "Details bekijken" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Bekijk details voor melden van een auteursrechtschending" @@ -9022,23 +9691,23 @@ msgstr "Volledig gesprek bekijken" msgid "View information about these labels" msgstr "Informatie over deze labels bekijken" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Profiel bekijken" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Bekijk de avatar" @@ -9054,28 +9723,28 @@ msgstr "" msgid "View users who like this feed" msgstr "Bekijk gebruikers die deze feed leuk vinden" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Je geblokkeerde accounts bekijken" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Bekijk je feeds en ontdek meer" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Je moderatielijsten bekijken" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Je genegeerde accounts bekijken" @@ -9083,8 +9752,8 @@ msgstr "Je genegeerde accounts bekijken" msgid "View your verifications" msgstr "" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "" @@ -9092,16 +9761,20 @@ msgstr "" msgid "Views video in immersive mode" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "Website bezoeken" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Waarschuwen over inhoud en filteren uit feeds" msgid "Watch now" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "" + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "We kunnen geen resultaten vinden voor die hashtag." @@ -9128,7 +9809,7 @@ msgstr "We kunnen geen resultaten vinden voor die hashtag." msgid "We couldn't find any results for that topic." msgstr "" -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "We kunnen dit gesprek niet laden" @@ -9136,6 +9817,10 @@ msgstr "We kunnen dit gesprek niet laden" msgid "We estimate {estimatedTime} until your account is ready." msgstr "We schatten {estimatedTime} totdat je account klaar is." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "We hebben een nieuwe verificatie-e-mail verzonden naar <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "We hopen dat je een geweldige tijd hebt. Vergeet niet, Bluesky is:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "We hebben geen berichten meer van gevolgde accounts. Hier is het laatste nieuws van <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "We hebben niet kunnen bepalen of je video's mag uploaden. Probeer het opnieuw." @@ -9164,10 +9849,14 @@ msgstr "We hebben niet kunnen bepalen of je video's mag uploaden. Probeer het op msgid "We were unable to load your birth date preferences. Please try again." msgstr "We kunnen je geboortedatumvoorkeuren niet laden. Probeer het opnieuw." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "We kunnen je geconfigureerde labelers op dit moment niet laden." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "We kunnen geen verbinding maken. Probeer het opnieuw om door te gaan met het instellen van je account. Als het blijft mislukken kun je deze stappen overslaan." @@ -9176,7 +9865,7 @@ msgstr "We kunnen geen verbinding maken. Probeer het opnieuw om door te gaan met msgid "We will let you know when your account is ready." msgstr "We laten je weten wanneer je account klaar is." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -9184,6 +9873,22 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "We gebruiken deze informatie om je ervaring te personaliseren." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Er zijn netwerkproblemen, probeer het opnieuw." msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "We zijn zo blij dat je bij ons bent!" @@ -9205,15 +9910,15 @@ msgstr "Het spijt ons, maar we kunnen deze lijst niet ophalen. Neem contact op m msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Het spijt ons, maar we kunnen je genegeerde woorden op dit moment niet laden. Probeer het opnieuw." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Het spijt ons, maar je zoekopdracht kan niet worden voltooid. Probeer het over een paar minuten opnieuw." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Het spijt ons! Het bericht waarop je reageert is verwijderd." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Het spijt ons! We kunnen de pagina die je zocht niet vinden." @@ -9222,6 +9927,26 @@ msgstr "Het spijt ons! We kunnen de pagina die je zocht niet vinden." msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Het spijt ons! Je kunt je maar op twintig labelers abonneren en je hebt deze limiet bereikt." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Welkom terug!" @@ -9240,7 +9965,7 @@ msgstr "Hoe wil je jouw startpakket noemen?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Hoe gaat het?" @@ -9256,11 +9981,11 @@ msgstr "Welke talen worden in dit bericht gebruikt?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Welke talen wil je zien in je algoritmische feeds?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Wie kan reageren op dit bericht?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Wie kan reageren" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Oeps!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "" @@ -9322,12 +10047,12 @@ msgstr "Waarom moet deze gebruiker worden beoordeeld?" msgid "Write a message" msgstr "Schrijf een privébericht" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Bericht schrijven" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Schrijf je reactie" @@ -9358,11 +10083,11 @@ msgstr "Ja, deactiveren" msgid "Yes, delete this starter pack" msgstr "Ja, dit startpakket verwijderen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Ja, losmaken" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Ja, verbergen" @@ -9378,6 +10103,10 @@ msgstr "Gisteren" msgid "You" msgstr "Jij" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "" @@ -9386,6 +10115,10 @@ msgstr "" msgid "You are creating an account on" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Je staat in de rij." @@ -9403,7 +10136,7 @@ msgstr "" msgid "You are not allowed to go live" msgstr "" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Het is niet toegestaan om video's te uploaden." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "" @@ -9441,10 +10173,18 @@ msgstr "Je kunt ook nieuwe gepersonaliseerde feeds ontdekken om te volgen." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Je kunt je account in plaats daarvan ook tijdelijk deactiveren en op elk gewenst moment opnieuw activeren." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Je kunt lopende gesprekken voortzetten, ongeacht welke instelling je kiest." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Je kunt je nu aanmelden met je nieuwe wachtwoord." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Je kunt je account opnieuw activeren om door te kunnen gaan met aanmelden. Je profiel en berichten zijn dan zichtbaar voor andere gebruikers." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "" #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "" @@ -9472,7 +10212,7 @@ msgstr "Je hebt geen volgers." msgid "You don't follow any users who follow @{name}." msgstr "Je volgt geen gebruikers die @{name} volgen." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "" @@ -9480,15 +10220,15 @@ msgstr "" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Je hebt nog geen uitnodigingscodes! We sturen je er een paar als je wat langer op Bluesky bent." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Je hebt geen vastgezette feeds." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Je hebt geen opgeslagen feeds." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Je hebt de auteur geblokkeerd of je bent door de auteur geblokkeerd." @@ -9502,6 +10242,10 @@ msgstr "Je hebt deze gebruiker geblokkeerd" msgid "You have blocked this user. You cannot view their content." msgstr "Je hebt deze gebruiker geblokkeerd. Je kunt de inhoud niet bekijken." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Je hebt dit account genegeerd." msgid "You have muted this user" msgstr "Je negeert deze gebruiker" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Je hebt nog geen gesprekken. Begin er een!" @@ -9547,7 +10291,7 @@ msgstr "Je hebt nog geen accounts geblokkeerd. Om een account te blokkeren ga je msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Je negeert nog geen accounts. Om een account te negeren ga je naar het profiel en selecteer je \"Account negeren\" in het menu van het account." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Je hebt het einde bereikt" @@ -9572,6 +10316,10 @@ msgstr "Je negeert nog geen woorden of tags" msgid "You hid this reply." msgstr "Je hebt deze reactie verborgen." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Je kunt bezwaar maken tegen labels geplaatst door anderen als je vindt dat ze ten onrechte zijn geplaatst." @@ -9592,7 +10340,7 @@ msgstr "Je mag maximaal 3 feeds toevoegen" msgid "You may only select up to 4 images" msgstr "Je kunt maximaal 4 afbeeldingen selecteren" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "" @@ -9600,6 +10348,14 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Je moet ten minste 7 andere personen volgen om een startpakket te genereren." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Je moet toegang verlenen tot je fotobibliotheek om een QR-code op te slaan" @@ -9608,6 +10364,11 @@ msgstr "Je moet toegang verlenen tot je fotobibliotheek om een QR-code op te sla msgid "You must select at least one labeler for a report" msgstr "Je moet minimaal één labeler selecteren voor een melding" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "" @@ -9616,7 +10377,7 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "Je hebt @{0} eerder gedeactiveerd." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "" @@ -9628,16 +10389,20 @@ msgstr "" msgid "You reacted {0} to {1}" msgstr "" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Je wordt afgemeld bij al je accounts." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Je ontvangt geen meldingen meer voor dit gesprek" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Je ontvangt nu meldingen voor dit gesprek" @@ -9657,11 +10422,11 @@ msgstr "Jij: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Jij: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Je volgt de voorgestelde gebruikers en feeds zodra je klaar bent met het maken van je account!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Je volgt de voorgestelde gebruikers zodra je klaar bent met het aanmaken van je account!" @@ -9673,9 +10438,9 @@ msgstr "Je volgt deze personen en {0} anderen" msgid "You'll follow these people right away" msgstr "Je gaat deze personen meteen volgen" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Je ontvangt een e-mail op <0>{0} om te verifiëren dat jij het bent." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "Je hebt ervoor gekozen om een woord of tag in dit bericht te verbergen." msgid "You've found some people to follow" msgstr "" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Je hebt het einde van je feed bereikt! Zoek nog meer accounts om te volgen." @@ -9711,19 +10480,23 @@ msgstr "Je hebt het einde van je feed bereikt! Zoek nog meer accounts om te volg msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Je hebt je dagelijkse limiet voor video-uploads bereikt (te veel bytes)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Je hebt je daglimiet voor het uploaden van video's bereikt (te veel video's)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Je account" @@ -9735,7 +10508,7 @@ msgstr "Je account is verwijderd" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Je account is nog niet oud genoeg om video's te uploaden. Probeer het later nog eens." @@ -9751,11 +10524,11 @@ msgstr "" msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Je geboortedatum" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Je browser ondersteunt de video-indeling niet. Probeer een andere browser." @@ -9771,13 +10544,15 @@ msgstr "" msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Je e-mailadres lijkt ongeldig te zijn." @@ -9786,15 +10561,11 @@ msgstr "Je e-mailadres lijkt ongeldig te zijn." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Je e-mailadres is nog niet geverifieerd. Dit is een belangrijke beveiligingsstap die wij aanbevelen." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "Je eerste vind-ik-leuk!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "" @@ -9806,19 +10577,15 @@ msgstr "Je volgende feed is leeg! Volg meer gebruikers om te zien wat er gebeurt msgid "Your full handle will be <0>@{0}" msgstr "Je volledige handle wordt <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "" @@ -9835,15 +10602,15 @@ msgstr "Je genegeerde woorden" msgid "Your password has been changed successfully!" msgstr "Je wachtwoord is succesvol gewijzigd!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Je bericht is gepubliceerd" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Je berichten zijn gepubliceerd" @@ -9851,15 +10618,19 @@ msgstr "Je berichten zijn gepubliceerd" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Je berichten, vind-ik-leuks en blokkeringen zijn openbaar. Negeringen zijn privé." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Jouw profiel, berichten, feeds en lijsten zijn niet langer zichtbaar voor andere Bluesky-gebruikers. Je kunt je account op elk moment opnieuw activeren door aan te melden." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Je reactie is gepubliceerd." -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -9867,7 +10638,7 @@ msgstr "" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Je melding wordt verzonden naar de Bluesky-moderatieservice" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "" diff --git a/src/locale/locales/pl/messages.po b/src/locale/locales/pl/messages.po index 6828e6935d..632da22c95 100644 --- a/src/locale/locales/pl/messages.po +++ b/src/locale/locales/pl/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: pl\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: Polish\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" @@ -27,7 +27,7 @@ msgstr "(aktywne)" msgid "(contains embedded content)" msgstr "(zawiera załącznik)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(brak adresu email)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# repost} few {# reposty} other {# repostów}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# sekundę} few {# sekundy} other {# sekund}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -90,17 +90,18 @@ msgstr "" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {obserwujący} other {obserwujących}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {obserwowany} other {obserwowanych}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {polubienie} few {polubienia} other {polubień}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {polubienie} few {polubienia} other {polubień}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {wpis} few {wpisy} other {wpisów}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {cytat} few {cytaty} other {cytatów}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {repost} few {reposty} other {repostów}}" @@ -135,6 +138,10 @@ msgstr "{0} <0>w <1>tagach" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>w <1>tekście i tagach" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "" @@ -143,11 +150,15 @@ msgstr "" msgid "{0} is not a valid URL" msgstr "" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} osób dołączyło w tym tygodniu" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} z {1}" @@ -164,8 +175,16 @@ msgstr "" msgid "{0} reacted {1} to {2}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "Zdjęcie profilowe {0}" @@ -197,12 +216,12 @@ msgstr "{0} min." msgid "{0}s" msgstr "{0} sek." -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Pakiet startowy {displayName}" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {godzina} few {godziny} other {godzin}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuta} few {minuty} other {minut}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} inna osoba} few {{formattedAuthorsCount} inne osoby} other {{formattedAuthorsCount} innych osób}} zaczęli cię obserwować" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} inna osoba} few {{formattedAuthorsCount} inne osoby} other {{formattedAuthorsCount} innych osób}} polubili twój kanał" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} inna osoba} few {{formattedAuthorsCount} inne osoby} other {{formattedAuthorsCount} innych osób}} polubili twój wpis" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} inna osoba} few {{formattedAuthorsCount} inne osoby} other {{formattedAuthorsCount} innych osób}} repostowali twój wpis" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} inna osoba} few {{formattedAuthorsCount} inne osoby} other {{formattedAuthorsCount} innych osób}} zarejestrowali się z twoim pakietem startowym" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} obserwuje cię" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} również cię obserwuje" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} lubi twój kanał" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} lubi twój wpis" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} repostuje twój wpis" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} rejestruje się z twoim pakietem startowym" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} inna osoba} few {{formattedAuthorsCount} inne osoby} other {{formattedAuthorsCount} innych osób}} zaczęli cię obserwować" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} inna osoba} few {{formattedAuthorsCount} inne osoby} other {{formattedAuthorsCount} innych osób}} polubili twój kanał" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} inna osoba} few {{formattedAuthorsCount} inne osoby} other {{formattedAuthorsCount} innych osób}} polubili twój wpis" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} inna osoba} few {{formattedAuthorsCount} inne osoby} other {{formattedAuthorsCount} innych osób}} repostowali twój wpis" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} inna osoba} few {{formattedAuthorsCount} inne osoby} other {{formattedAuthorsCount} innych osób}} zarejestrowali się z twoim pakietem startowym" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} obserwuje cię" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} również cię obserwuje" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} lubi twój kanał" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} lubi twój wpis" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} repostuje twój wpis" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} rejestruje się z twoim pakietem startowym" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} obserwowanych" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "Nie możesz wysłać wiadomości do {handle}" @@ -392,7 +410,7 @@ msgstr "" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -432,12 +450,12 @@ msgstr "" msgid "+{computedTotal}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, i {2, plural, one {# inna osoba} few {# inne osoby} other {# innych osób}} są w twoim pakiecie startowym" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, i {2, plural, one {# inna osoba} few {# inne osoby} other {# innych osób}} są w twoim pakiecie startowym" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {obserwujący} other {obserwujących}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {obserwowany} other {obserwowanych}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} i<1> <2>{1} są w twoim pakiecie startowym" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} jest w twoim pakiecie startowym" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} osób" @@ -466,11 +484,11 @@ msgstr "<0>{0} osób" msgid "<0>{date} at {time}" msgstr "<0>{date} o {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Eksperymentalne: Kiedy ta opcja jest włączona, otrzymasz powiadomienia na temat komentarzy i repostów wyłącznie od osób, które obserwujesz. Z biegiem czasu dodamy tutaj więcej opcji." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Ty i<1> <2>{0} jesteście w twoim pakiecie startowym" @@ -503,10 +521,14 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Informacje" @@ -524,25 +546,25 @@ msgstr "" msgid "Accept Request" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Ułatwienia dostępu" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Ustawienia ułatwień dostępu" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Konto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Konto zostało zaobserwowane" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Konto zostało wyciszone" msgid "Account Muted by List" msgstr "Konto zostało wyciszone za pomocą listy" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Ustawienia konta" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Konto zostało usunięte z szybkiego dostępu" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Cofnięto obserwowanie konta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Cofnięto wyciszenie konta" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Dodaj" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Dodaj jeszcze {0, plural, one {# osobę} few {# osoby} other {# osób}}" @@ -634,8 +666,8 @@ msgstr "Dodaj konto" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Dodaj tekst alternatywny" msgid "Add alt text (optional)" msgstr "Dodaj tekst alternatywny (opcjonalne)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Dodaj inne konto" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Dodaj inny wpis" @@ -670,8 +702,8 @@ msgstr "Dodaj hasło aplikacji" msgid "Add emoji reaction" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "" @@ -683,7 +715,7 @@ msgstr "" msgid "Add muted words and tags" msgstr "Dodaj wyciszone słowa i tagi" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Dodaj nowy wpis" @@ -704,7 +736,7 @@ msgstr "" msgid "Add recommended feeds" msgstr "Dodaj polecane kanały" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Dodaj kilka kanałów do swojego pakietu startowego!" @@ -725,10 +757,6 @@ msgstr "Dodaj do swoich kanałów" msgid "Add to lists" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Dodaj do moich kanałów" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "" @@ -738,11 +766,11 @@ msgstr "" msgid "Added to list" msgstr "Dodano do listy" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Dodano do kanałów" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "" @@ -750,18 +778,18 @@ msgstr "" msgid "Adult" msgstr "Dla dorosłych" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Treści dla dorosłych" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Treści dla dorosłych można włączyć tylko przez Internet pod adresem - <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Treści dla dorosłych są wyłączone." @@ -770,16 +798,32 @@ msgstr "Treści dla dorosłych są wyłączone." msgid "Adult Content labels" msgstr "Ostrzeżenia o treści dla dorosłych" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Zaawansowane" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Wszystkie" @@ -793,7 +837,7 @@ msgstr "Wszystkie konta zaobserwowane!" msgid "All languages" msgstr "Wszystkie języki" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Wszystkie zapisane przez ciebie kanały są w tym miejscu." @@ -802,16 +846,21 @@ msgstr "Wszystkie zapisane przez ciebie kanały są w tym miejscu." msgid "Allow access to your direct messages" msgstr "Zezwalaj na dostęp do wiadomości bezpośrednich" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Zezwalaj na nowe wiadomości od" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Zezwalaj na cytowanie wpisów" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Zezwalaj na komentarze od:" @@ -828,13 +877,13 @@ msgstr "Masz już kod?" msgid "Already signed in as @{0}" msgstr "Już zalogowano jako @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "Tekst alternatywny" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Tekst alternatywny" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Tekst alternatywny opisuje zdjęcia dla użytkowników niewidomych i niedowidzących oraz pomaga określić kontekst." @@ -861,27 +910,19 @@ msgstr "" msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Email został wysłany do {0}. Zawiera on kod weryfikacyjny, który można wprowadzić poniżej." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Email został wysłany! Wprowadź poniżej kod weryfikacyjny z wiadomości." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Wystąpił błąd" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Wystąpił błąd" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Wystąpił błąd podczas kompresowania wideo." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "" @@ -889,11 +930,11 @@ msgstr "" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Wystąpił błąd podczas generowania pakietu startowego. Czy chcesz spróbować ponownie?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Wystąpił błąd podczas wczytywania wideo. Spróbuj ponownie później." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Wystąpił błąd podczas wczytywania wideo. Spróbuj ponownie." @@ -910,7 +951,7 @@ msgstr "Wystąpił błąd podczas wybierania wideo" msgid "An error occurred while trying to follow all" msgstr "Wystąpił błąd podczas próby zaobserwowania wszystkich" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Wystąpił błąd podczas przesyłania wideo." @@ -934,8 +975,8 @@ msgstr "Wystąpił błąd podczas otwierania czatu" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "wystąpił nieznany błąd" msgid "an unknown labeler" msgstr "nieznana moderacja" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "i" @@ -963,10 +1004,14 @@ msgstr "i" msgid "Animals" msgstr "Zwierzęta" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "Animowany GIF" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "" @@ -980,7 +1025,13 @@ msgstr "Zachowania antyspołeczne" msgid "Anybody can interact" msgstr "Każdy może wchodzić w interakcje" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "Nazwy haseł aplikacji mogą zawierać tylko litery, cyfry, spacje, myś msgid "App password names must be at least 4 characters long" msgstr "Nazwy haseł aplikacji muszą składać się z co najmniej 4 znaków" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Hasła aplikacji" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Hasła aplikacji" @@ -1053,10 +1104,10 @@ msgstr "Zawieszenie odwołania" msgid "Appeal this decision" msgstr "Odwołaj się od tej decyzji" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Wygląd" @@ -1065,12 +1116,20 @@ msgstr "Wygląd" msgid "Apply default recommended feeds" msgstr "Zastosuj domyślne kanały polecane" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Archiwum z dnia {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Wpis został zarchiwizowany" @@ -1078,7 +1137,7 @@ msgstr "Wpis został zarchiwizowany" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Czy na pewno chcesz usunąć hasło aplikacji \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Czy na pewno chcesz usunąć tę wiadomość? Wiadomość zostanie usunięta u ciebie, ale nie u odbiorcy." @@ -1098,19 +1157,15 @@ msgstr "" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Czy na pewno chcesz opuścić tę rozmowę? Twoje wiadomości zostaną usunięte u ciebie, ale nie u odbiorcy." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Czy na pewno chcesz usunąć {0} ze swoich kanałów?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Czy na pewno chcesz to usunąć ze swoich kanałów?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Czy na pewno chcesz odrzucić ten szkic?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Czy na pewno chcesz odrzucić ten wpis?" @@ -1131,29 +1186,26 @@ msgstr "Sztuka" msgid "Artistic or non-erotic nudity." msgstr "Nagość artystyczna lub nieerotyczna." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Co najmniej 3 znaki" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Opcje autoodtwarzania zostały przeniesione do ustawień <0>Treści i multimedia." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Autoodtwarzanie filmów i GIF-ów" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Autoodtwarzanie filmów i GIF-ów" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Powrót" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "" @@ -1195,28 +1247,44 @@ msgstr "Potwierdź swój adres email przed utworzeniem pakietu startowego." msgid "Before you can accept this chat request, you must first verify your email." msgstr "" +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Data urodzenia" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Blokuj" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Blokuj" msgid "Block account" msgstr "Blokuj konto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Zablokować konto?" @@ -1262,20 +1330,20 @@ msgstr "Zablokuj osobę" msgid "Block User" msgstr "Zablokuj osobę" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Zablokowane" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Zablokowane konta" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Zablokowane konta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Zablokowane konta nie mogą komentować twoich wpisów, wzmiankować cię ani w inny sposób wchodzić z tobą w interakcje." @@ -1284,11 +1352,11 @@ msgstr "Zablokowane konta nie mogą komentować twoich wpisów, wzmiankować ci msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Zablokowane konta nie mogą komentować twoich wpisów, wzmiankować cię ani w inny sposób wchodzić z tobą w interakcje. Nie będziesz widzieć ich treści, a oni nie będą widzieć twoich." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Zablokowany wpis." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blokowanie nie przeszkodzi moderacji w umieszczaniu ostrzeżeń na twoim koncie." @@ -1309,11 +1377,12 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky nie może potwierdzić autentyczności podanej daty." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1347,6 +1416,14 @@ msgstr "Bluesky nie pokaże twojego profilu i wpisów niezalogowanym użytkownik msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Rozmyj zdjęcia i odfiltruj je z kanałów" msgid "Books" msgstr "Książki" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Wyświetl więcej kont na stronie Eksploruj" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Wyświetl więcej kanałów na stronie Eksploruj" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Wyświetl więcej polecanych" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Wyświetl więcej rekomendacji na stronie Eksploruj" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Biznes" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Od {0}" @@ -1428,15 +1502,23 @@ msgstr "Od {0}" msgid "By <0>{0}" msgstr "Od <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Tworząc konto, akceptujesz <0>Politykę prywatności." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Tworząc konto, akceptujesz <0>Regulamin i <1>Politykę prywatności." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Tworząc konto, akceptujesz <0>Regulamin." @@ -1448,14 +1530,17 @@ msgstr "" msgid "Camera" msgstr "Aparat" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Aparat" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Anuluj" @@ -1500,11 +1582,7 @@ msgstr "Anuluj usuwanie konta" msgid "Cancel image crop" msgstr "Anuluj przycinanie zdjęcia" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Anuluj edytowanie profilu" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Anuluj cytowanie wpisu" @@ -1516,14 +1594,10 @@ msgstr "Anuluj reaktywację i wyloguj się" msgid "Cancel search" msgstr "Anuluj wyszukiwanie" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Anuluje otwieranie strony internetowej" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Nie można wchodzić w interakcje z zablokowaną osobą" @@ -1553,17 +1627,12 @@ msgstr "Zmień ikonę aplikacji na \"{0}\"" msgid "Change app language" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Zmień adres email" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Zmień nazwę" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "" @@ -1579,14 +1648,6 @@ msgstr "Zmień język wpisu na {suggestedLanguageName}" msgid "Change report reason" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Zmień swój adres email" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Zmień swój adres email" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Zmienia ikonę aplikacji" @@ -1596,10 +1657,15 @@ msgstr "Zmienia ikonę aplikacji" msgid "Changes hosting provider" msgstr "Zmienia dostawcę hostingu" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Czat" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Czat został wyciszony" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Ustawienia czatu" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Ustawienia czatu" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Cofnięto wyciszenie czatu" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "" @@ -1661,7 +1738,7 @@ msgstr "Sprawdź swoją skrzynkę odbiorczą i wprowadź poniżej kod logowania: msgid "Choose domain verification method" msgstr "Wybierz metodę weryfikacji domeny" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Wybierz kanały" @@ -1669,7 +1746,7 @@ msgstr "Wybierz kanały" msgid "Choose for me" msgstr "Wybierz dla mnie" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Wybierz osoby" @@ -1685,23 +1762,23 @@ msgstr "Wybierz ten kolor jako swoje zdjęcie profilowe" msgid "Choose your account provider" msgstr "Wybierz dostawcę usług dla konta" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Wybierz własną oś czasu! Kanały tworzone przez społeczność pomagają znaleźć ciekawe treści." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Ustaw hasło" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Twoja nazwa" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Wyczyść wszystkie dane" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Wyczyść wszystkie dane (i uruchom ponownie)" @@ -1714,23 +1791,27 @@ msgstr "" msgid "Clear search query" msgstr "Wyczyść wyszukiwanie" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "kliknij tutaj" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Kliknij, aby wyłączyć cytowanie tego wpisu." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Kliknij, aby włączyć cytowanie tego wpisu." @@ -1750,14 +1831,16 @@ msgstr "Klimat" msgid "Clip 🐴 clop 🐴" msgstr "Klip 🐴 klop 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Klip 🐴 klop 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Zamknij" @@ -1789,13 +1876,15 @@ msgstr "Zamknij ostrzeżenie" msgid "Close bottom drawer" msgstr "Zamknij dolną szufladę" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Zamknij to okno" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Zamknij menu" @@ -1804,7 +1893,7 @@ msgstr "Zamknij menu" msgid "Close emoji picker" msgstr "Zamknij selektor emoji" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Zamknij okno GIF" @@ -1822,7 +1911,7 @@ msgstr "Zamknij galerię zdjęć" msgid "Close menu" msgstr "" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Zamknij to okno" @@ -1830,7 +1919,7 @@ msgstr "Zamknij to okno" msgid "Closes password update alert" msgstr "Zamyka ostrzeżenie o aktualizacji hasła" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "" @@ -1843,16 +1932,16 @@ msgstr "Zamyka selektor emoji" msgid "Closes viewer for header image" msgstr "Zamyka galerię zdjęć" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Zwiń listę osób" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Zwija listę osób dla danego powiadomienia" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Motyw" @@ -1870,7 +1959,8 @@ msgstr "Komedia" msgid "Comics" msgstr "Komiksy" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Wytyczne dla społeczności" @@ -1879,38 +1969,34 @@ msgstr "Wytyczne dla społeczności" msgid "Complete onboarding and start using your account" msgstr "Ukończ wprowadzenie i zacznij korzystać ze swojego konta" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Ukończ wyzwanie" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Utwórz nowy wpis" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Skomentuj" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Kompresowanie wideo..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Skonfiguruj ustawienia filtrowania treści dla kategorii: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Skonfigurowane w <0>ustawieniach moderacji." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Potwierdź ustawienia języka treści" msgid "Confirm delete account" msgstr "Potwierdź usunięcie konta" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Potwierdź swój wiek:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Potwierdź swoją datę urodzenia" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Potwierdź swoją datę urodzenia" msgid "Confirmation code" msgstr "Kod weryfikacyjny" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Kod weryfikacyjny" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Łączenie..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Skontaktuj się z pomocą techniczną" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Treści i multimedia" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Treści i multimedia" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Treści i multimedia" @@ -1977,7 +2069,8 @@ msgstr "Treści i multimedia" msgid "Content Blocked" msgstr "Zawartość została zablokowana" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Filtrowanie" @@ -2006,10 +2099,12 @@ msgstr "Ostrzeżenie o zawartości" msgid "Content warnings" msgstr "Ostrzeżenia o zawartości" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Kliknij, aby zamknąć menu kontekstowe." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Kontynuuj" msgid "Continue as {0} (currently signed in)" msgstr "Kontynuuj jako {0} (obecnie zalogowano)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Kontynuuj wątek..." @@ -2029,6 +2129,10 @@ msgstr "Kontynuuj wątek..." msgid "Continue to next step" msgstr "Przejdź do następnego kroku" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Skopiowano" msgid "Copied build version to clipboard" msgstr "Numer wersji został skopiowany do schowka" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Kopiuje numer wersji do schowka" msgid "Copy" msgstr "Kopiuj" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Kopiuj hasło aplikacji" @@ -2087,8 +2187,8 @@ msgstr "Kopiuj hasło aplikacji" msgid "Copy at:// URI" msgstr "Skopiuj:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Skopiuj DID" @@ -2120,10 +2220,10 @@ msgstr "Kopiuj link" msgid "Copy link to list" msgstr "Kopiuj link do listy" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Kopiuj link do wpisu" @@ -2136,18 +2236,18 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Kopiuj tekst wiadomości" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Skopiuj wpis:// URI" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Kopiuj tekst wpisu" @@ -2159,11 +2259,25 @@ msgstr "Kopiuj kod QR" msgid "Copy TXT record value" msgstr "Kopiuj rekord TXT" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Polityka praw autorskich" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "Nie udało się wyciszyć czatu" msgid "Could not process your video" msgstr "Nie udało się przetworzyć wideo" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Utwórz" @@ -2195,7 +2317,7 @@ msgstr "Utwórz kod QR dla pakietu startowego" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Utwórz pakiet startowy" @@ -2205,21 +2327,22 @@ msgstr "Utwórz dla mnie pakiet startowy" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Zarejestruj się" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Utwórz konto" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Utwórz konto" @@ -2241,7 +2364,7 @@ msgstr "Utwórz inne" msgid "Create new account" msgstr "Utwórz nowe konto" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Zgłoś {0}" @@ -2268,7 +2391,7 @@ msgstr "Niestandardowe" msgid "Customization options" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Dostosuj, kto może wchodzić w interakcje z tym wpisem." @@ -2278,12 +2401,12 @@ msgstr "Dostosowuje twoje doświadczenie w Bluesky" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Ciemny" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Ciemny" @@ -2292,21 +2415,21 @@ msgstr "Ciemny" msgid "Dark mode" msgstr "Tryb ciemny" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Ciemny motyw" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Data urodzenia" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Dezaktywuj konto" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Debuguj moderację" @@ -2314,7 +2437,7 @@ msgstr "Debuguj moderację" msgid "Debug panel" msgstr "Panel debugowania" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Domyślny" @@ -2322,8 +2445,8 @@ msgstr "Domyślny" msgid "Default icons" msgstr "Domyślne ikony" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Domyślne ikony" msgid "Delete" msgstr "Usuń" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Usuń konto" @@ -2355,7 +2478,7 @@ msgstr "Usunąć hasło aplikacji?" msgid "Delete chat" msgstr "" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Usuń rekord deklaracji czatu" @@ -2370,7 +2493,7 @@ msgstr "Usuń rozmowę" msgid "Delete Conversation" msgstr "Usuń rozmowę" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Usuń dla mnie" @@ -2378,11 +2501,11 @@ msgstr "Usuń dla mnie" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Usuń wiadomość" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Usuń wiadomość dla mnie" @@ -2390,9 +2513,9 @@ msgstr "Usuń wiadomość dla mnie" msgid "Delete my account" msgstr "Usuń moje konto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Usuń wpis" @@ -2409,11 +2532,11 @@ msgstr "Usunąć pakiet startowy?" msgid "Delete this list?" msgstr "Usunąć tę listę?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Usunąć ten wpis?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Usunięto" @@ -2422,15 +2545,20 @@ msgstr "Usunięto" msgid "Deleted Account" msgstr "Usunięto konto" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Usunięto wpis." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Opis" @@ -2447,12 +2575,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Opisowy tekst alternatywny" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Odłącz cytat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Odłączyć cytat?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Tryb programisty włączony" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Ustawienia dla deweloperów" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Okno dialogowe: dostosuj, kto może wchodzić w interakcje z tym wpisem" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Przyciemniony" @@ -2492,27 +2620,27 @@ msgstr "" msgid "Disable Email 2FA" msgstr "Wyłącz uwierzytelnianie dwuskładnikowe przez email" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Wyłącz haptykę" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Wyłącz napisy" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Wyłączono" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Odrzuć" @@ -2520,11 +2648,11 @@ msgstr "Odrzuć" msgid "Discard changes?" msgstr "Odrzucić zmiany?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Odrzucić szkic?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Odrzucić wpis?" @@ -2542,7 +2670,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "Odkryj nowe kanały niestandardowe" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Odkryj nowe kanały" @@ -2550,7 +2678,7 @@ msgstr "Odkryj nowe kanały" msgid "Dismiss" msgstr "Pomiń" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Pomiń błąd" @@ -2562,26 +2690,26 @@ msgstr "Pomiń wprowadzenie" msgid "Dismiss interests" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Pomiń tę sekcję" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Wyświetlaj większe znaczniki tekstu alternatywnego" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Wyświetlana nazwa" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Wyświetlana nazwa" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Wyświetlana nazwa jest zbyt długa" @@ -2603,15 +2731,11 @@ msgstr "Nie wyciszaj tego słowa wśród obserwowanych osób" msgid "Does not include nudity." msgstr "Nie zawiera nagości." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Nie zaczyna się ani nie kończy myślnikiem" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Domena zweryfikowana!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -2619,6 +2743,15 @@ msgstr "" msgid "Don't see an email? <0>Click here to resend." msgstr "" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "" msgid "Double tap to close the dialog" msgstr "Kliknij dwukrotnie, aby zamknąć to okno" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Kliknij dwukrotnie, aby polubić" @@ -2673,7 +2806,7 @@ msgstr "Pobierz Bluesky" msgid "Download CAR file" msgstr "Pobierz plik CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Upuść, aby dodać zdjęcia" @@ -2689,18 +2822,10 @@ msgstr "np. alicja" msgid "e.g. Alice Lastname" msgstr "np. Alicja Nazwisko" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "np. Alicja Roberts" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "np. alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "np. Artystka, miłośniczka psów i pasjonatka książek." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Na przykład akty artystyczne." @@ -2725,10 +2850,11 @@ msgstr "np. Osoby, które notorycznie wysyłają reklamy." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Każdy kod działa tylko raz. Co jakiś czas będziesz otrzymywać kolejne zaproszenia." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Edytuj" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Edytuj" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Edytuj zdjęcie profilowe" @@ -2749,12 +2875,12 @@ msgstr "Edytuj kanały" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Edytuj obrazek" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Edytuj ustawienia interakcji" @@ -2776,33 +2902,33 @@ msgstr "" msgid "Edit Moderation List" msgstr "Edytuj listę moderacji" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Edytuj moje kanały" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Edytuj mój profil" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Edytuj osoby" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Edytuj ustawienia interakcji z wpisem" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Edytuj profil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Edytuj profil" @@ -2814,19 +2940,11 @@ msgstr "Edytuj pakiet startowy" msgid "Edit User List" msgstr "Edytuj listę osób" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Wybierz, kto może komentować" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Edytuj swoją wyświetlaną nazwę" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Edytuj opis swojego profilu" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Edytuj swój pakiet startowy" @@ -2839,8 +2957,8 @@ msgstr "Edukacja" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "Autor listy cię zablokował, lub został zablokowany przez ciebie." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "Email" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "2FA przez email wył." -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "2FA przez email wł." @@ -2865,10 +2983,6 @@ msgstr "Email został wysłany ponownie" msgid "Email sent!" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "" @@ -2883,8 +2997,8 @@ msgstr "Kod HTML do osadzenia" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Osadź wpis" @@ -2892,7 +3006,7 @@ msgstr "Osadź wpis" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Osadź ten wpis na swojej stronie internetowej. Po prostu skopiuj poniższy snippet i wklej go do kodu HTML swojej strony." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Wbudowany odtwarzacz wideo" @@ -2906,7 +3020,7 @@ msgstr "Włącz" msgid "Enable {0} only" msgstr "Włącz tylko {0}" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Pokazuj treści dla dorosłych" @@ -2919,16 +3033,20 @@ msgstr "" msgid "Enable external media" msgstr "Pokazuj multimedia spoza aplikacji" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Włącz odtwarzacze dla" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Włącz powiadomienia priorytetowe" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Włącz napisy" @@ -2941,17 +3059,14 @@ msgstr "Włącz tylko to źródło" msgid "Enable trending topics" msgstr "Włącz popularne" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Włącz popularne klipy wideo na kanale Discover" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Włącz popularne klipy wideo na kanale Discover." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Włączono" @@ -2963,7 +3078,7 @@ msgstr "Koniec kanału" msgid "Ensure you have selected a language for each subtitle file." msgstr "Upewnij się, że wybrano język dla każdego pliku napisów." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Wprowadź hasło" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Wprowadź słowo lub tag" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Wprowadź kod" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Włącz tryb pełnoekranowy" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Wprowadź swoją datę urodzenia" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Wprowadź swój adres email" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Wprowadź swój nowy adres email poniżej." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Wprowadź swoje hasło" @@ -3022,7 +3129,7 @@ msgstr "Wprowadź swoje hasło" msgid "Enter your username and password" msgstr "Wprowadź swoją nazwę i hasło" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Przechodzi do trybu pełnoekranowego" @@ -3030,16 +3137,28 @@ msgstr "Przechodzi do trybu pełnoekranowego" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Błąd" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Wystąpił błąd podczas zapisywania pliku" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Błąd podczas odbierania odpowiedzi captcha." @@ -3047,27 +3166,34 @@ msgstr "Błąd podczas odbierania odpowiedzi captcha." msgid "Error:" msgstr "Błąd:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Każdy" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Każdy może komentować" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Każdy może komentować ten wpis." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Każdy" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Wyklucz obserwowane osoby" msgid "Excludes users you follow" msgstr "Wyklucza obserwowane osoby" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Wyłącz pełny ekran" @@ -3106,24 +3232,28 @@ msgstr "Opuszcza podgląd zdjęcia" msgid "Expand alt text" msgstr "Rozwiń tekst alternatywny" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Rozwiń listę osób" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Rozwiń lub zwiń cały wpis, który komentujesz" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Rozwija lub zwija tekst wpisu" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "Adres uri powinien prowadzić do rekordu" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Eksperymentalne" @@ -3153,15 +3283,15 @@ msgstr "Nieodpowiednia lub niepokojąca treść." msgid "Explicit sexual images." msgstr "Obrazy o charakterze jednoznacznie seksualnym." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Eksportuj moje dane" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Multimedia spoza aplikacji" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Multimedia spoza aplikacji mogą umożliwiać witrynom gromadzenie informacji o tobie i twoim urządzeniu. Żadne informacje nie są wysyłane ani udostępniane do momentu naciśnięcia przycisku odtwarzania." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Preferencje multimediów spoza aplikacji" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "" @@ -3211,8 +3341,8 @@ msgstr "Nie udało się utworzyć hasła aplikacji. Spróbuj ponownie." msgid "Failed to create conversation" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Nie udało się utworzyć pakietu startowego" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Nie udało się usunąć wiadomości" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Nie udało się usunąć wpisu, spróbuj ponownie" @@ -3238,8 +3368,8 @@ msgstr "Nie udało się usunąć wpisu, spróbuj ponownie" msgid "Failed to delete starter pack" msgstr "Nie udało się usunąć pakietu startowego" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "" @@ -3250,14 +3380,32 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Nie udało się wczytać preferencji kanałów" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Nie udało się wczytać GIF-ów" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Nie udało się wczytać poprzednich wiadomości" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Nie udało się wczytać polecanych kanałów" msgid "Failed to load suggested follows" msgstr "Nie udało się wczytać polecanych osób" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Nie udało się przypiąć wpisu" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "" @@ -3291,15 +3439,11 @@ msgstr "" msgid "Failed to save image: {0}" msgstr "Nie udało się zapisać zdjęcia: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Nie udało się zapisać preferencji powiadomień, spróbuj ponownie" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "Nie udało się zapisać ustawień. Spróbuj ponownie." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "" @@ -3318,7 +3462,7 @@ msgstr "" msgid "Failed to submit appeal, please try again." msgstr "Nie udało się złożyć odwołania, spróbuj ponownie." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Nie udało się ustawić wyciszenia wątku, spróbuj ponownie" @@ -3335,7 +3479,11 @@ msgstr "" msgid "Failed to update feeds" msgstr "Nie udało się zaktualizować kanałów" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Nie udało się zaktualizować ustawień" @@ -3354,15 +3502,23 @@ msgstr "" msgid "Failed to verify handle. Please try again." msgstr "Nie udało się zweryfikować nazwy. Spróbuj ponownie." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Kanał" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Kanał od {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Menu kanału" @@ -3371,35 +3527,39 @@ msgstr "Menu kanału" msgid "Feed toggle" msgstr "Przełącznik kanału" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Opinie" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Opinia wysłana!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Kanały" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Kanały to niestandardowe algorytmy, które użytkownicy tworzą przy niewielkiej wiedzy na temat programowania. <0/>, aby dowiedzieć się więcej." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Kanały zostały zaktualizowane!" @@ -3428,6 +3588,14 @@ msgstr "Filtruj wyszukiwanie według języka" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtruj wyszukiwanie według języka (aktywny: {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Kończenie" @@ -3448,7 +3616,7 @@ msgstr "Znajdź osoby do obserwowania" msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Ukończ" @@ -3456,17 +3624,17 @@ msgstr "Ukończ" msgid "Fitness" msgstr "Aktywność fizyczna" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Uniwersalne" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Obserwuj" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Obserwuj {0}" @@ -3518,7 +3686,7 @@ msgstr "" msgid "Follow all" msgstr "Obserwuj wszystkich" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Również obserwuj" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Również obserwuj" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Obserwowane przez <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Obserwowane przez <0>{0} i {1, plural, one {# inną osobę} few {# inne osoby} other {# innych osób}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Obserwowane przez <0>{0} i <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Obserwowane przez <0>{0}, <1>{1} i {2, plural, one {# inną osobę} few {# inne osoby} other {# innych osób}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Obserwujący @{0}, których znasz" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Obserwujący, których znasz" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Obserwujesz" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Obserwujesz" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Obserwowani {0}" @@ -3579,8 +3751,8 @@ msgstr "Obserwujesz {handle}" msgid "Following feed preferences" msgstr "Preferencje kanału obserwowanych" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Preferencje kanału obserwowanych" @@ -3592,11 +3764,11 @@ msgstr "Obserwuje cię" msgid "Follows You" msgstr "Obserwuje cię" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Czcionka" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Rozmiar czcionki" @@ -3613,7 +3785,7 @@ msgstr "Ze względów bezpieczeństwa musimy wysłać kod weryfikacyjny na twój msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Ze względów bezpieczeństwa nie będzie można wyświetlić go ponownie. W przypadku utraty hasła do aplikacji konieczne będzie wygenerowanie nowego." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Aby uzyskać najlepsze wrażenia, zalecamy korzystanie z czcionki motywu." @@ -3643,11 +3815,15 @@ msgstr "Nie pamiętasz?" msgid "Frequently Posts Unwanted Content" msgstr "Często publikuje niechciane treści" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "Od @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "Od <0/>" @@ -3660,14 +3836,68 @@ msgstr "Galeria" msgid "Generate a starter pack" msgstr "Wygeneruj pakiet startowy" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Uzyskaj pomoc" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "" @@ -3688,14 +3918,16 @@ msgstr "Zmień wygląd swojego profilu" msgid "Glaring violations of law or terms of service" msgstr "Rażące naruszenie prawa lub warunków korzystania z serwisu" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Przejdź do rozmowy z {0}" @@ -3779,8 +4017,8 @@ msgstr "Niepokojąca treść" msgid "Half way there!" msgstr "Już połowa drogi!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Nazwa" @@ -3797,7 +4035,7 @@ msgstr "Nazwa zmieniona!" msgid "Handle too long. Please try a shorter one." msgstr "Nazwa jest zbyt długa. Spróbuj wybrać krótszą." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Haptyka" @@ -3806,7 +4044,7 @@ msgstr "Haptyka" msgid "Harassment, trolling, or intolerance" msgstr "Prześladowanie, trolling lub nietolerancja" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Hashtag" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Hashtag {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "" -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Masz problem?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Pomoc" @@ -3839,8 +4077,13 @@ msgstr "Daj znać innym, że nie jesteś botem, ustawiając zdjęcie profilowe." msgid "Here is your app password!" msgstr "Oto Twoje hasło aplikacji!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Ukryte" @@ -3848,16 +4091,16 @@ msgstr "Ukryte" msgid "Hidden by your moderation settings." msgstr "Ukryte ze względu na twoje ustawienia moderacji." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Ukryta lista" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Ukryta lista" msgid "Hide" msgstr "Ukryj" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Ukryj" @@ -3875,18 +4118,18 @@ msgstr "Ukryj" msgid "Hide customization options" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Ukryj wpis dla mnie" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Ukryj komentarz dla wszystkich" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Ukryj komentarz dla mnie" @@ -3894,12 +4137,12 @@ msgstr "Ukryj komentarz dla mnie" msgid "Hide this card" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Ukryć ten wpis?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Ukryć ten komentarz?" @@ -3913,11 +4156,11 @@ msgstr "Ukryj popularne" msgid "Hide trending topics?" msgstr "Ukryć popularne?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Ukryć popularne klipy wideo?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Ukryj listę osób" @@ -3926,32 +4169,32 @@ msgstr "Ukryj listę osób" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Ukrywa zawartość" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Wystąpił jakiś problem podczas kontaktowania się z serwerem kanału. Poinformuj właściciela kanału o tym problemie." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Wygląda na to, że serwer kanału jest źle skonfigurowany. Poinformuj właściciela kanału o tym problemie." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Wygląda na to, że serwer kanału jest offline. Poinformuj właściciela kanału o tym problemie." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Serwer kanału nie odpowiada. Poinformuj właściciela kanału o tym problemie." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Mamy problem ze znalezieniem tego kanału. Możliwe, że został usunięty." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Wygląda na to, że mamy problem z wczytaniem tych danych. Więcej informacji znajduje się poniżej. Jeśli problem się powtarza, prosimy o kontakt." @@ -3959,15 +4202,15 @@ msgstr "Wygląda na to, że mamy problem z wczytaniem tych danych. Więcej infor msgid "Hmmmm, we couldn't load that moderation service." msgstr "Nie mogliśmy wczytać tej usługi moderacji." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Poczekaj! Dostęp do materiałów wideo udostępniamy stopniowo, a ty wciąż czekasz na swoją kolej. Sprawdź ponownie za jakiś czas!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Główna" @@ -3984,10 +4227,10 @@ msgstr "Dostawca hostingu" msgid "Hot" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Najpierw najważniejsze komentarze" @@ -3996,10 +4239,6 @@ msgstr "Najpierw najważniejsze komentarze" msgid "How should we open this link?" msgstr "Jak powinniśmy otworzyć ten link?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Rozumiem" msgid "If alt text is long, toggles alt text expanded state" msgstr "Rozwija lub zwija długi tekst alternatywny" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Jeśli nie jesteś jeszcze pełnoletni zgodnie z prawem obowiązującym w twoim kraju, twój rodzic lub opiekun prawny musi zapoznać się z niniejszymi Warunkami w twoim imieniu." @@ -4031,11 +4270,11 @@ msgstr "Jeśli usuniesz tę listę, nie będziesz w stanie jej odzyskać." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Jeśli masz własną domenę, możesz jej użyć jako swojej nazwy. Pozwala to na samodzielną weryfikację tożsamości. <0>Dowiedz się więcej tutaj.." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Jeśli usuniesz ten wpis, nie będziesz w stanie go odzyskać." @@ -4047,6 +4286,10 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Jeśli chcesz zmienić hasło, wyślemy Ci kod, aby zweryfikować, że to Twoje konto." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "Jeśli jesteś deweloperem, możesz hostować własny serwer." @@ -4091,13 +4334,41 @@ msgstr "Podszywanie się lub fałszywe oświadczenia dotyczące tożsamości lub msgid "Impersonation, misinformation, or false claims" msgstr "Podszywanie się, dezinformacja lub nieprawdziwe treści" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Nieodpowiednie wiadomości lub nieprzyzwoite linki" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "" @@ -4105,7 +4376,7 @@ msgstr "" msgid "Incorrect username or password" msgstr "Nieprawidłowa nazwa lub hasło" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Wprowadź kod wysłany na twój adres email, aby zresetować hasło" @@ -4113,7 +4384,7 @@ msgstr "Wprowadź kod wysłany na twój adres email, aby zresetować hasło" msgid "Input confirmation code for account deletion" msgstr "Wprowadź kod weryfikacyjny, aby usunąć konto" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Wprowadź nowe hasło" @@ -4129,10 +4400,14 @@ msgstr "Wprowadź kod, który został wysłany na twój adres email" msgid "Interaction limited" msgstr "Interakcje są ograniczone" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Ustawienia interakcji" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Nieprawidłowy kod weryfikacyjny 2FA." msgid "Invalid handle. Please try a different one." msgstr "Nieprawidłowa nazwa. Spróbuj użyć innej." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Nieprawidłowy lub nieobsługiwany wpis" @@ -4158,7 +4433,7 @@ msgstr "Nieprawidłowy kod weryfikacyjny" msgid "Invite a Friend" msgstr "Zaproś znajomych" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Kod zaproszenia" @@ -4186,15 +4461,15 @@ msgstr "Zaproś znajomych do śledzenia twoich ulubionych kanałów i osób" msgid "Invites, but personal" msgstr "Zaproszenia, ale takie osobiste" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Jest poprawny" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "W tej chwili jesteś tylko ty! Dodaj więcej osób do swojego pakietu startowego, wyszukując powyżej." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "ID: {0}" @@ -4220,11 +4495,27 @@ msgstr "Dołącz do rozmowy" msgid "Journalism" msgstr "Dziennikarstwo" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Oznaczone przez {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Oznaczone przez autora." @@ -4237,7 +4528,7 @@ msgstr "Ostrzeżenia" msgid "Labels added" msgstr "Ostrzeżenia zostały dodane" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Ostrzeżenia to adnotacje dotyczące osób i treści. Mogą być używane do ukrywania, ostrzegania i kategoryzowania sieci." @@ -4253,22 +4544,30 @@ msgstr "Ostrzeżenia na twoich treściach" msgid "Language selection" msgstr "Wybierz język" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Ustawienia języka" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Języki" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Większy" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Najnowsze" @@ -4282,7 +4581,6 @@ msgstr "dowiedz się więcej" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "" @@ -4290,6 +4588,10 @@ msgstr "" msgid "Learn More" msgstr "Dowiedz się więcej" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Dowiedz się więcej o Bluesky" @@ -4298,15 +4600,23 @@ msgstr "Dowiedz się więcej o Bluesky" msgid "Learn more about self hosting your PDS." msgstr "Dowiedz się więcej o samodzielnym hostingu PDS." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "Dowiedz się więcej na temat ostrzeżenia nałożonego na tę zawartość" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Dowiedz się więcej o moderacji tej treści." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Dowiedz się więcej o tym ostrzeżeniu" @@ -4316,12 +4626,16 @@ msgstr "Dowiedz się więcej o tym ostrzeżeniu" msgid "Learn more about verification on Bluesky" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Dowiedz się więcej o tym, co jest publiczne na Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Dowiedz się więcej." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Opuść rozmowę" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Pozostaw je wszystkie niezaznaczone, aby zobaczyć każdy język." +msgid "Leave them all unselected to see any language." +msgstr "" -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Opuszczasz Bluesky" @@ -4370,7 +4685,7 @@ msgstr "Do dzieła!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Jasny" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Polub" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Polub ({0, plural, one {# polubienie} few {# polubienia} other {# polubień}})" @@ -4397,6 +4712,10 @@ msgstr "Polub 10 wpisów" msgid "Like 10 posts to train the Discover feed" msgstr "Polub 10 wpisów, aby dostosować kanał główny" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Polub ten kanał" @@ -4405,8 +4724,8 @@ msgstr "Polub ten kanał" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Polubione przez" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Polubione przez" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Polubione przez {0, plural, one {# osobę} few {# osoby} other {# osób}}" @@ -4428,20 +4747,36 @@ msgstr "Polubione przez {0, plural, one {# osobę} few {# osoby} other {# osób} msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Polubione przez {likeCount, plural, one {# osobę} few {# osoby} other {# osób}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Polubienia" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Polubienia tego wpisu" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "W linii" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Lista" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Lista zablokowana" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Lista od {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "Lista od <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Lista od ciebie" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Cofnięto wyciszenie listy" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Listy" @@ -4537,7 +4876,7 @@ msgstr "Wczytaj więcej" msgid "Load more suggested feeds" msgstr "Wczytaj więcej polecanych kanałów" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Wczytaj nowe powiadomienia" @@ -4552,11 +4891,11 @@ msgstr "Wczytaj nowe wpisy" msgid "Loading..." msgstr "Wczytywanie..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Dziennik" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Widoczność dla niezalogowanych" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo autorstwa @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo autorstwa <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Logo autorstwa <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Przytrzymanie otwiera menu tagów dla #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Wygląda tak: XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "" msgid "Make one for me" msgstr "Utwórz go dla mnie" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Upewnij się, że właśnie tam chcesz przejść!" @@ -4606,7 +4945,7 @@ msgstr "Upewnij się, że właśnie tam chcesz przejść!" msgid "Manage saved feeds" msgstr "Zarządzaj zapisanymi kanałami" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "" @@ -4614,9 +4953,9 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "Zarządzaj wyciszonymi słowami i tagami" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "" @@ -4625,15 +4964,13 @@ msgstr "" msgid "Mark as read" msgstr "Oznacz jako przeczytane" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "" @@ -4645,19 +4982,26 @@ msgstr "Multimedia" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Materiały, które mogą być niepokojące lub nieodpowiednie dla niektórych odbiorców." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "wzmianki" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Wzmianki" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Wzmianki" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Menu" @@ -4665,7 +5009,7 @@ msgstr "Menu" msgid "Message {0}" msgstr "Napisz do {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Wiadomość usunięta" @@ -4674,11 +5018,11 @@ msgstr "Wiadomość usunięta" msgid "Message deleted" msgstr "Wiadomość usunięta" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Wiadomość z serwera: {0}" @@ -4691,19 +5035,23 @@ msgstr "Pole wprowadzania wiadomości" msgid "Message is too long" msgstr "Wiadomość jest zbyt długa" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Wiadomości" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Konto wprowadzające w błąd" msgid "Misleading Post" msgstr "Wpis wprowadzający w błąd" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderacja" @@ -4725,17 +5073,17 @@ msgstr "Moderacja" msgid "Moderation details" msgstr "Szczegóły moderacji" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Lista moderacji od {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Lista moderacji od <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Twoja lista moderacji" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Zaktualizowano listę moderacji" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Listy moderacji" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Listy moderacji" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "ustawienia moderacji" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Status moderacji" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Narzędzia moderacji" @@ -4775,7 +5123,7 @@ msgstr "Narzędzia moderacji" msgid "Moderator has chosen to set a general warning on the content." msgstr "Moderator postanowił ustawić ogólne ostrzeżenie dotyczące zawartości." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Więcej" @@ -4790,13 +5138,13 @@ msgstr "Więcej kanałów" msgid "More options" msgstr "Więcej opcji" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Najpierw najbardziej lubiane" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Najpierw najbardziej lubiane" @@ -4808,8 +5156,8 @@ msgstr "Filmy" msgid "Music" msgstr "Muzyka" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Wycisz" @@ -4819,8 +5167,8 @@ msgstr "Wycisz" msgid "Mute {tag}" msgstr "Wycisz {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Wycisz to słowo tylko w tagach" msgid "Mute this word until you unmute it" msgstr "Wycisz to słowo na nieokreślony czas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Wycisz wątek" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Wycisz słowa i tagi" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Wyciszone konta" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Wyciszone konta" @@ -4898,7 +5246,7 @@ msgstr "Wyciszone konta są usuwane z twojego kanału i powiadomień. Wyciszenia msgid "Muted by \"{0}\"" msgstr "Wyciszone przez \"{0}\"" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Wyciszone słowa i tagi" @@ -4911,7 +5259,7 @@ msgstr "Wyciszenie jest prywatne. Wyciszone konta mogą wchodzić z tobą w inte msgid "My Birthday" msgstr "Moja data urodzenia" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Moje kanały" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Natura" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Przejdź do {0}" @@ -4958,11 +5306,11 @@ msgstr "Przejdź do następnego ekranu" msgid "Navigates to your profile" msgstr "Przejdź do swojego profilu" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Chcesz to zmienić?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Chcesz zgłosić naruszenie praw autorskich?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Nowa" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Nowy czat" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Nowe wiadomości" msgid "New Moderation List" msgstr "Nowa lista moderacji" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Nowe hasło" @@ -5029,7 +5396,7 @@ msgstr "Nowe hasło" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Nowy wpis" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Nowy wpis" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Okno z informacjami o nowej osobie" @@ -5054,10 +5429,14 @@ msgstr "Okno z informacjami o nowej osobie" msgid "New User List" msgstr "Nowa lista osób" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Najpierw najnowsze komentarze" @@ -5071,15 +5450,15 @@ msgstr "Aktualności" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "Brak panelu DNS" msgid "No expiry set" msgstr "" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Nie znaleziono polecanych GIF-ów. Może występować problem z aplikacją Tenor." @@ -5119,32 +5498,35 @@ msgstr "" msgid "No likes yet" msgstr "Brak polubień" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Już nie obserwujesz {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Brak wiadomości" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Brak powiadomień!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Nikt" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Nikt poza autorem nie może cytować tego wpisu." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Brak wpisów." @@ -5171,7 +5553,7 @@ msgstr "Brak wyników" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Nie znaleziono żadnych wyników" @@ -5179,9 +5561,9 @@ msgstr "Nie znaleziono żadnych wyników" msgid "No results found for \"{query}\"" msgstr "Nie znaleziono żadnych wyników dla \"{query}\"" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Nie znaleziono żadnych wyników dla {query}" @@ -5189,7 +5571,7 @@ msgstr "Nie znaleziono żadnych wyników dla {query}" msgid "No results." msgstr "" -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Nie znaleziono żadnych wyników dla \"{search}\"." @@ -5198,7 +5580,7 @@ msgstr "Nie znaleziono żadnych wyników dla \"{search}\"." msgid "No thanks" msgstr "Nie, dziękuję" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Nikt" @@ -5223,59 +5605,76 @@ msgstr "Nikt nie został odnaleziony. Spróbuj poszukać kogoś innego." msgid "Non-sexual Nudity" msgstr "Nieseksualna nagość" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Nie znaleziono" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Uwaga o udostępnianiu" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Uwaga: Bluesky jest otwartą i publiczną społecznością. To ustawienie ogranicza jedynie widoczność twoich treści w aplikacji i serwisie Bluesky, inne aplikacje mogą tego nie respektować. Twoje treści mogą być nadal wyświetlane niezalogowanym osobom przez inne aplikacje i strony internetowe." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Nic tu nie ma" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Filtry powiadomień" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Ustawienia powiadomień" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Ustawienia powiadomień" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Dźwięki powiadomień" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Dźwięki powiadomień" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Powiadomienia" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "teraz" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Nagość lub treści dla dorosłych nieoznaczone jako takie" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Wył." -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "O nie!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "OK" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Okej" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Najpierw najstarsze komentarze" @@ -5331,19 +5736,19 @@ msgstr "Najpierw najstarsze komentarze" msgid "on<0><1/><2><3/>" msgstr "na<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Rozpocznij od nowa" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "W co najmniej jednym pliku GIF brakuje tekstu alternatywnego." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "W co najmniej jednym zdjęciu brakuje tekstu alternatywnego." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "W co najmniej jednym wideo brakuje tekstu alternatywnego." @@ -5351,13 +5756,15 @@ msgstr "W co najmniej jednym wideo brakuje tekstu alternatywnego." msgid "Only .jpg and .png files are supported" msgstr "Obsługiwane są tylko pliki .jpg i .png" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Tylko {0} mogą komentować." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Może zawierać tylko litery, cyfry i myślniki" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Obsługiwane są tylko pliki obrazów" msgid "Only WebVTT (.vtt) files are supported" msgstr "Obsługiwane są tylko pliki WebVTT (.vtt)" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Ups, coś poszło nie tak!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Ups!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Otwórz menu" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Wybierz emoji" @@ -5416,7 +5822,7 @@ msgstr "Zmień ustawienia kanału" msgid "Open full emoji list" msgstr "" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Otwórz link do {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Otwórz link do {niceUrl}" msgid "Open message options" msgstr "Zmień ustawienia wiadomości" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Otwórz stronę debugowania moderacji" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Zmień ustawienia wyciszonych słów i tagów" @@ -5453,16 +5859,16 @@ msgstr "" msgid "Open starter pack menu" msgstr "Zmień ustawienia pakietu startowego" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Otwórz historię aktywności" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Otwórz dziennik systemowy" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Otwiera {numItems} opcji" @@ -5490,11 +5896,11 @@ msgstr "Otwiera aplikację aparatu" msgid "Opens captions and alt text dialog" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Otwiera okno zmiany nazwy" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Otwiera kompozytor wpisu" @@ -5502,7 +5908,7 @@ msgstr "Otwiera kompozytor wpisu" msgid "Opens device photo gallery" msgstr "Otwiera galerię zdjęć" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Otwiera selektor emoji" @@ -5520,15 +5926,19 @@ msgstr "Otwiera proces logowania do istniejącego konta Bluesky" msgid "Opens GIF select dialog" msgstr "Wybierz GIF" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Otwiera centrum pomocy w przeglądarce" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Otwiera listę kodów zaproszenia" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "" @@ -5536,12 +5946,8 @@ msgstr "" msgid "Opens password reset form" msgstr "Zmień hasło" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Otwiera link do strony internetowej" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Otwiera ten profil" @@ -5558,7 +5964,7 @@ msgstr "Opcjonalnie podaj dodatkowe informacje poniżej:" msgid "Options:" msgstr "Opcje:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Lub wybierz z tych opcji:" @@ -5600,6 +6006,10 @@ msgstr "Inne konto" msgid "Other..." msgstr "Inne..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "Nasz zespół moderatorów otrzymał twoje zgłoszenie." @@ -5608,7 +6018,7 @@ msgstr "Nasz zespół moderatorów otrzymał twoje zgłoszenie." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Nasi moderatorzy przeanalizowali zgłoszenia i zdecydowali o zablokowaniu dostępu do czatów na Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Strona nie została odnaleziona" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Strona nie została odnaleziona" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Hasło zostało zaktualizowane" msgid "Password updated!" msgstr "Hasło zostało zaktualizowane!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Zatrzymaj" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Zatrzymaj wideo" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Osoby" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Osoby obserwowane przez @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Osoby obserwujące @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "" @@ -5704,12 +6119,12 @@ msgstr "Przypnij do głównej" msgid "Pin to Home" msgstr "Przypnij do głównej" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Przypnij do swojego profilu" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Przypięte" @@ -5718,7 +6133,7 @@ msgstr "Przypięte" msgid "Pinned {0} to Home" msgstr "{0} przypięto do głównej" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Przypięte kanały" @@ -5726,38 +6141,38 @@ msgstr "Przypięte kanały" msgid "Pinned to your feeds" msgstr "Przypięto kanał" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Odtwórz" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Odtwórz {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Odtwórz filmik" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Odtwórz filmik" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Odtwarza lub wstrzymuje GIF" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Odtwarza lub wstrzymuje wideo" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Odtwarza GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Odtwarza wideo" @@ -5765,12 +6180,16 @@ msgstr "Odtwarza wideo" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Wybierz swoją nazwę." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Wybierz swoje hasło." @@ -5782,7 +6201,8 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Wypełnij formularz captcha." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "" @@ -5804,6 +6224,7 @@ msgstr "Wprowadź unikalną nazwę hasła aplikacji lub użyj losowo wygenerowan msgid "Please enter a valid code." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "" @@ -5812,7 +6233,11 @@ msgstr "" msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Wprowadź poprawnie słowo, tag lub frazę do wyciszenia" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "" #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Wprowadź swój adres email." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Wprowadź swój kod zaproszenia." @@ -5853,6 +6278,19 @@ msgstr "Wyjaśnij, dlaczego uważasz, że to ostrzeżenie zostało nieprawidłow msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Wyjaśnij, dlaczego uważasz, że czaty zostały wyłączone z niewłaściwych powodów." +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "" @@ -5870,9 +6308,9 @@ msgstr "Zaloguj się jako @{0}" msgid "Please verify your email" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Zweryfikuj swój adres email" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Polityka" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Opublikuj" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Opublikuj" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Opublikuj" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Opublikuj wszystko" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Wpis od {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Wpis od @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Wpis usunięty" @@ -5919,11 +6362,14 @@ msgstr "Wpis usunięty" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Nie udało się opublikować wpisu. Sprawdź swoje połączenie internetowe i spróbuj ponownie." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "Wpis został usunięty" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Wpis został ukryty" @@ -5937,11 +6383,11 @@ msgstr "Wpis został ukryty przez wyciszone słowo" msgid "Post Hidden by You" msgstr "Wpis został ukryty przez ciebie" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Ustawienia interakcji wpisu" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Ustawienia interakcji wpisu" @@ -5954,8 +6400,10 @@ msgstr "Język wpisu" msgid "Post Languages" msgstr "Języki wpisu" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Wpis nie został odnaleziony" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Wpis został odpięty" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Wpisy" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Wpisy mogą być wyciszane na podstawie zawartego w nich tekstu, tagów lub obu tych elementów. Nie zalecamy wyciszania popularnych słów, które pojawiają się w wielu wpisach, bo może to spowodować, że nie będą wyświetlane." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Wpisy zostały ukryte" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Link, który może wprowadzać w błąd" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Ustawienia zostały zapisane" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Kliknij, aby ponowić próbę połączenia" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Kliknij, aby spróbować ponownie" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Kliknij, aby wyświetlić obserwujących to konto, których również obserwujesz" @@ -6015,40 +6469,46 @@ msgstr "Poprzednie zdjęcie" msgid "Primary Language" msgstr "Główny język" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Priorytet dla obserwowanych" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Powiadomienia priorytetowe" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Prywatność" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Prywatność i bezpieczeństwo" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Prywatność i bezpieczeństwo" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Polityka prywatności" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Przetwarzanie wideo..." @@ -6062,15 +6522,14 @@ msgstr "Przetwarzanie..." msgid "profile" msgstr "profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Profil" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Profil został zaktualizowany" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Publiczne listy do wykorzystania w kanałach." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "Kod QR został skopiowany do schowka!" @@ -6119,44 +6594,52 @@ msgstr "Kod QR został pobrany!" msgid "QR code saved to your camera roll!" msgstr "Kod QR został zapisany w galerii zdjęć!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Cytuj" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "Cytowany wpis został ponownie dołączony" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "Cytowany wpis został odłączony pomyślnie" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Cytowanie wpisów zostało wyłączone" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Ustawienia cytowania" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Cytaty" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Cytowania tego wpisu" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Losowo (lub \"Autorska Ruletka\")" @@ -6164,8 +6647,8 @@ msgstr "Losowo (lub \"Autorska Ruletka\")" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Przekroczono limit – próbowano zmienić nazwę zbyt wiele razy w zbyt krótkim czasie. Odczekaj chwilę, zanim spróbujesz ponownie." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Dołącz cytat ponownie" @@ -6177,30 +6660,42 @@ msgstr "" msgid "Reactivate your account" msgstr "Ponownie aktywuj swoje konto" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Czytaj mniej" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Czytaj więcej" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Czytaj blog Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Zapoznaj się z Polityką prywatności Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Zapoznaj się z Regulaminem Bluesky" @@ -6213,6 +6708,14 @@ msgstr "Powód odwołania" msgid "Reason:" msgstr "Powód:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Ostatnie wyszukiwania" @@ -6234,8 +6737,8 @@ msgstr "" msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Odśwież rozmowy" @@ -6244,10 +6747,9 @@ msgstr "Odśwież rozmowy" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Usuń" @@ -6259,17 +6761,17 @@ msgstr "Usuń {displayName} z pakietu startowego" msgid "Remove {historyItem}" msgstr "" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Usuń konto" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Usuń załącznik" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Usuń zdjęcie profilowe" @@ -6284,24 +6786,22 @@ msgstr "Usuń osadzenie" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Usuń kanał" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Usunąć kanał?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Usuń z moich kanałów" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Usunąć z szybkiego dostępu?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "Usuń z zapisanych kanałów" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Usuń zdjęcie" @@ -6332,12 +6831,8 @@ msgstr "Usuń wyciszone słowo ze swojej listy" msgid "Remove profile" msgstr "Usuń profil" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Usuń cytat" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Usuń repost" @@ -6345,7 +6840,7 @@ msgstr "Usuń repost" msgid "Remove subtitle file" msgstr "Usuń plik napisów" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Usuń ten kanał z zapisanych" @@ -6364,11 +6859,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Usunięte przez autora" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Usunięte przez Ciebie" @@ -6377,10 +6872,6 @@ msgstr "Usunięte przez Ciebie" msgid "Removed from list" msgstr "Usunięto z listy" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Usunięto z moich kanałów" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Usunięto z zapisanych kanałów" @@ -6395,34 +6886,36 @@ msgstr "Usunięto z twoich kanałów" msgid "Removed verification" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Usuwa cytowany wpis" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Zamień na kanał główny" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Komentarze" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Komentarze zostały wyłączone" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Komentarze do tego wpisu są wyłączone." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Skomentuj" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Skomentuj ({0, plural, one {# komentarz} few {# komentarze} other {# komentarzy}})" @@ -6436,50 +6929,55 @@ msgstr "Komentarz został ukryty przez autora wątku" msgid "Reply Hidden by You" msgstr "Komentarz został ukryty przez ciebie" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Ustawienia komentowania" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "Ustawienia komentowania są wybierane przez autora wątku" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Sortowanie komentarzy" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Komentarz do <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Komentarz do zablokowanego wpisu" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Komentarz do wpisu" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Komentarz do ciebie" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Widoczność komentarzy została zaktualizowana" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Komentarz został ukryty pomyślnie" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Zgłoś kanał" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Zgłoś wiadomość" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Zgłoś wpis" @@ -6567,25 +7065,26 @@ msgstr "Zgłoś ten pakiet startowy" msgid "Report this user" msgstr "Zgłoś tę osobę" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Repostuj" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Repostuj" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Repostuj ({0, plural, one {# repost} few {# reposty} other {# repostów}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Repostuj lub zacytuj wpis" @@ -6594,26 +7093,38 @@ msgstr "Repostuj lub zacytuj wpis" msgid "Reposted By" msgstr "Repostowane przez" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Repostowane przez {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Repostowane przez <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Repostowane przez ciebie" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Reposty tego wpisu" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" msgstr "" #: src/view/com/modals/ChangePassword.tsx:253 @@ -6621,8 +7132,8 @@ msgstr "" msgid "Request Code" msgstr "Pobierz kod" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Wymagaj tekstu alternatywnego przed opublikowaniem" @@ -6630,7 +7141,7 @@ msgstr "Wymagaj tekstu alternatywnego przed opublikowaniem" msgid "Require an email code to sign in to your account." msgstr "Wymagaj kodu z wiadomości email, aby zalogować się na swoje konto." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Wymagane w przypadku tego dostawcy" @@ -6642,10 +7153,6 @@ msgstr "Wymagane w twoim regionie" msgid "Resend" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Wyślij wiadomość email ponownie" msgid "Resend Verification Email" msgstr "Wyślij email weryfikacyjny ponownie" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Zresetuj kod" @@ -6667,8 +7180,8 @@ msgstr "Zresetuj kod" msgid "Reset Code" msgstr "Zresetuj kod" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Zacznij od nowa" @@ -6687,21 +7200,23 @@ msgstr "Ponawia ostatnią akcję, która zakończyła się błędem" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Spróbuj ponownie" @@ -6721,19 +7236,19 @@ msgstr "Wraca do strony głównej" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Wraca do poprzedniej strony" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Powraca do poprzedniego kroku" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Powraca do poprzedniego kroku" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Zapisz" @@ -6762,15 +7276,13 @@ msgstr "Zapisz" msgid "Save birthday" msgstr "Zapisz datę urodzenia" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Zapisz zmiany" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Zapisz zmiany" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Zapisz kod QR" msgid "Save to my feeds" msgstr "Dodaj do moich kanałów" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Zapisane kanały" @@ -6802,18 +7314,14 @@ msgstr "Zapisane kanały" msgid "Saved to your feeds" msgstr "Dodano do twoich kanałów" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Zapisuje wszelkie zmiany w twoim profilu" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Zapisuje ustawienia kadrowania obrazka" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Przywitaj się!" @@ -6826,16 +7334,16 @@ msgstr "Nauka" msgid "Scroll to top" msgstr "Przewiń na górę" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Szukaj" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Szukaj wpisów od @{0}" @@ -6861,7 +7369,7 @@ msgstr "Szukaj \"{query}\"" msgid "Search for \"{searchText}\"" msgstr "Szukaj \"{searchText}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Szukaj kanałów, które chcesz polecać innym." @@ -6877,10 +7385,14 @@ msgstr "" msgid "Search for posts, users, or feeds" msgstr "Szukaj wpisów, osób lub kanałów" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Szukaj GIF-ów" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Szukaj w moich wpisach" @@ -6890,12 +7402,12 @@ msgstr "Szukaj w moich wpisach" msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Szukaj profili" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Szukaj w aplikacji Tenor" @@ -6903,7 +7415,7 @@ msgstr "Szukaj w aplikacji Tenor" msgid "Search..." msgstr "Szukaj..." -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Wyszukuje profile" @@ -6912,10 +7424,6 @@ msgstr "Wyszukuje profile" msgid "Security step required" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Wymagana weryfikacja bezpieczeństwa" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "Zobacz wpisy na temat {tag}" @@ -6936,14 +7444,31 @@ msgstr "Zobacz wpisy tej osoby o #{tag}" msgid "See jobs at Bluesky" msgstr "Zobacz oferty pracy w Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Zapoznaj się z tym poradnikiem" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Klawisze strzałek służą do wyszukiwania do przodu i do tyłu, a spacja do odtwarzania lub zatrzymywania" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Wybierz kolor" @@ -6988,7 +7513,7 @@ msgstr "Wybierz istniejące konto" msgid "Select GIF" msgstr "Wybierz GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Wybierz GIF \"{0}\"" @@ -6996,6 +7521,11 @@ msgstr "Wybierz GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "Wybierz czas wyciszenia tego słowa." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Wybierz język..." @@ -7004,7 +7534,7 @@ msgstr "Wybierz język..." msgid "Select languages" msgstr "Wybierz języki" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "" @@ -7045,12 +7575,12 @@ msgstr "" msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Wybierz, które języki mają być uwzględnione w subskrybowanych kanałach. Jeśli żaden nie zostanie wybrany, będą wyświetlane wszystkie języki." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Wprowadź swoją datę urodzenia" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Wybierz swoje zainteresowania z poniższych opcji" @@ -7058,7 +7588,11 @@ msgstr "Wybierz swoje zainteresowania z poniższych opcji" msgid "Select your preferred language for translations in your feed." msgstr "Wybierz preferowany język tłumaczeń." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "Wybiera opcję {0} z {numItems}" @@ -7066,17 +7600,9 @@ msgstr "Wybiera opcję {0} z {numItems}" msgid "Send a neat website!" msgstr "Wyślij fajną stronkę!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Wyślij email weryfikacyjny" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Wyślij email" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Wyślij email" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Wyślij opinię" @@ -7095,7 +7621,7 @@ msgstr "Wyślij opinię" msgid "Send message" msgstr "Wyślij wiadomość" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "" @@ -7114,20 +7640,20 @@ msgstr "Wyślij zgłoszenie" msgid "Send report to {0}" msgstr "Wyślij zgłoszenie do {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Wyślij email weryfikacyjny" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Wyślij bezpośrednio" @@ -7143,7 +7669,7 @@ msgstr "Adres serwera" msgid "Set app icon to {0}" msgstr "Zmień ikonę aplikacji na {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Ustaw datę urodzenia" @@ -7159,13 +7685,57 @@ msgstr "Skonfiguruj konto" msgid "Sets email for password reset" msgstr "Ustawia email do resetowania hasła" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Ustawienia" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "Podziel się ciekawą historią!" msgid "Share a fun fact!" msgstr "Podziel się intrygującym faktem!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Udostępnij mimo to" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Udostępnij link" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Udostępnij link" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Okno udostępniania linku" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "" @@ -7247,8 +7812,8 @@ msgstr "Udostępnij pakiet startowy" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Udostępnij ten pakiet startowy i pomóż innym dołączyć do twojej społeczności na Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "" msgid "Share your favorite feed!" msgstr "Udostępnij swój ulubiony kanał!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Tester współdzielonych preferencji" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Udostępnia stronę" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Pokaż" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Pokaż tekst alternatywny" @@ -7303,8 +7864,8 @@ msgstr "" msgid "Show hidden replies" msgstr "Pokaż ukryte komentarze" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Pokazuj mniej podobnych treści" @@ -7312,55 +7873,63 @@ msgstr "Pokazuj mniej podobnych treści" msgid "Show list anyway" msgstr "Pokaż listę mimo to" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Pokaż więcej" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Pokazuj więcej podobnych treści" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Pokaż wyciszone komentarze" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Pokaż cytowane wpisy" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Pokaż komentarze" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Pokaż komentarze jako" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Pokaż komentarze jako wątki" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Najpierw pokaż komentarze od obserwowanych osób, a potem wszystkie inne" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Pokaż komentarz każdemu" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Pokaż reposty" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Pokaż fragmenty z zapisanych kanałów na kanale obserwowanych" @@ -7372,16 +7941,17 @@ msgstr "Pokaż ostrzeżenie" msgid "Show warning and filter from feeds" msgstr "Pokaż ostrzeżenie i odfiltruj z kanałów" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Pokazuje informacje o momencie utworzenia tego wpisu" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "Pokazuje inne konta, na które możesz się przełączyć" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Pokazuje zawartość" @@ -7390,14 +7960,15 @@ msgstr "Pokazuje zawartość" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "Zaloguj się na konto, którego nie ma na liście" msgid "Sign in to Bluesky or create a new account" msgstr "Zaloguj się na Bluesky lub utwórz nowe konto" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Wyloguj się" @@ -7444,8 +8020,8 @@ msgstr "Wyloguj się" msgid "Sign Out" msgstr "Wyloguj się" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Wylogować się?" @@ -7459,12 +8035,12 @@ msgstr "Rejestracja wymagana" msgid "Signed in as @{0}" msgstr "Zalogowano jako @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Podobne konta" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Pomiń" @@ -7472,12 +8048,11 @@ msgstr "Pomiń" msgid "Skip this flow" msgstr "Pomiń to" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Mniejszy" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "" @@ -7490,11 +8065,11 @@ msgstr "Programowanie" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Inne kanały, które mogą ci się spodobać" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Niektórzy mogą komentować" @@ -7510,10 +8085,11 @@ msgstr "" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "" -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Coś poszło nie tak" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Coś poszło nie tak, spróbuj ponownie" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Coś poszło nie tak, spróbuj ponownie." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Coś poszło nie tak!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "" @@ -7539,20 +8118,23 @@ msgstr "" msgid "Something wrong? Let us know." msgstr "Coś poszło nie tak? Daj nam znać." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "Przepraszamy! Twoja sesja wygasła. Zaloguj się ponownie." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Sortuj komentarze" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Sortuj komentarze według" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Sortuj komentarze do tego samego wpisu według:" @@ -7579,7 +8161,7 @@ msgstr "Spam; nadmierna liczba wzmianek lub komentarzy" msgid "Sports" msgstr "Sport" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "" @@ -7601,9 +8183,9 @@ msgstr "Zacznij dodawać osoby!" msgid "Start chat with {displayName}" msgstr "Zacznij czat z {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Pakiet startowy" @@ -7611,12 +8193,12 @@ msgstr "Pakiet startowy" msgid "Starter pack by {0}" msgstr "Pakiet startowy {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Pakiet startowy <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Twój pakiet startowy" @@ -7638,19 +8220,21 @@ msgstr "Pakiety startowe umożliwiają łatwe udostępnianie ulubionych kanałó msgid "Status Page" msgstr "Status" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Krok {0} z {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Pamięć została wyczyszczona, uruchom aplikację ponownie." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Historia aktywności" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Złóż odwołanie" msgid "Submit Appeal" msgstr "Złóż odwołanie" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "" @@ -7676,10 +8260,14 @@ msgstr "" msgid "Subscribe" msgstr "Subskrybuj" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Subskrybuj @{0}, aby użyć tych ostrzeżeń:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Subskrybuj usługę" @@ -7692,8 +8280,12 @@ msgstr "Subskrybuj tę usługę moderacji" msgid "Subscribe to this list" msgstr "Subskrybuj tę listę" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Sukces!" @@ -7705,7 +8297,7 @@ msgstr "" msgid "Suggested Accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Proponowane dla ciebie" @@ -7714,26 +8306,26 @@ msgstr "Proponowane dla ciebie" msgid "Suggestive" msgstr "Sugestywne" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Pomoc" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Przełącz konto" @@ -7742,24 +8334,24 @@ msgstr "Przełącz konto" msgid "Switch Account" msgstr "Przełącz konto" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Przełącz konto" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "Przełącz na {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Systemowe" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Dziennik systemowy" @@ -7767,6 +8359,18 @@ msgstr "Dziennik systemowy" msgid "Tags only" msgstr "Tylko tagi" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Opowiedz nam coś więcej" msgid "Terms" msgstr "Regulamin" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Regulamin" @@ -7848,10 +8454,6 @@ msgstr "Pole wprowadzania tekstu" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Dzięki! Twój adres email został zweryfikowany pomyślnie." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Dzięki. Twoje zgłoszenie zostało wysłane." @@ -7864,28 +8466,28 @@ msgstr "Dzięki, Twój adres email został zweryfikowany pomyślnie. Możesz zam msgid "That contains the following:" msgstr "Powinno zawierać następujące:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Ta nazwa jest już zajęta." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Ten pakiet startowy nie został odnaleziony." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "To już wszystko!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "To wszystko!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "To konto będzie mogło wchodzić z tobą w interakcje po odblokowaniu." @@ -7900,7 +8502,7 @@ msgstr "Aplikacja zostanie uruchomiona ponownie" msgid "The author of this thread has hidden this reply." msgstr "Autor tego wątku ukrył ten komentarz." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Aplikacja internetowa Bluesky" @@ -7920,10 +8522,6 @@ msgstr "Kanał główny" msgid "The Discover feed now knows what you like" msgstr "Kanał główny już wie, co lubisz" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "" - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "Aplikacja zapewnia lepsze doświadczenia. Pobierz Bluesky teraz, dokończymy w tym samym miejscu." @@ -7944,8 +8542,16 @@ msgstr "Następujące ostrzeżenia zostały umieszczone na twoich treściach." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "Ustawienia te będą używane jako domyślne podczas tworzenia nowych wpisów. Możesz je zmienić dla konkretnego wpisu z poziomu kompozytora." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Wpis mógł zostać usunięty." @@ -7953,9 +8559,10 @@ msgstr "Wpis mógł zostać usunięty." msgid "The Privacy Policy has been moved to <0/>" msgstr "Polityka prywatności została przeniesiona do <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "Wybrane wideo jest większe niż 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "" #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "Regulamin został przeniesiony do" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "Podany kod weryfikacyjny jest nieprawidłowy. Sprawdź, czy został użyty prawidłowy link weryfikacyjny lub poproś o nowy." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Motyw" @@ -7990,14 +8597,14 @@ msgstr "Motyw" msgid "There is no time limit for account deactivation, come back any time." msgstr "Dezaktywacja konta nie jest ograniczona czasowo i można ją cofnąć w dowolnym momencie." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Wystąpił problem podczas łączenia z aplikacją Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Wystąpił problem podczas łączenia z serwerem" @@ -8006,17 +8613,12 @@ msgstr "Wystąpił problem podczas łączenia z serwerem" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Wystąpił problem podczas łączenia z serwerem, sprawdź połączenie internetowe i spróbuj ponownie." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Wystąpił problem podczas łączenia z serwerem" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Wystąpił problem podczas wczytywania powiadomień. Kliknij tutaj, aby spróbować ponownie." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Wystąpił problem podczas wczytywania wpisów. Kliknij tutaj, aby spróbować ponownie." @@ -8037,7 +8639,7 @@ msgstr "Wystąpił problem podczas wczytywania list. Kliknij tutaj, aby spróbow msgid "There was an issue fetching your service info" msgstr "Wystąpił problem podczas wczytywania informacji o usłudze" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Wystąpił problem podczas usuwania tego kanału. Sprawdź połączenie internetowe i spróbuj ponownie." @@ -8052,9 +8654,9 @@ msgstr "Wystąpił problem podczas przesyłania zgłoszenia. Sprawdź połączen msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Wystąpił problem podczas aktualizacji kanałów, sprawdź połączenie internetowe i spróbuj ponownie." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Wystąpił problem podczas aktualizacji kanałów, sprawdź połączenie msgid "There was an issue! {0}" msgstr "Wystąpił problem! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Wystąpił problem! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Wystąpił problem. Sprawdź połączenie internetowe i spróbuj ponownie." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Wystąpił nieoczekiwany błąd w aplikacji. Daj nam znać, jeśli tak się stało!" @@ -8089,7 +8691,7 @@ msgstr "Wystąpił nieoczekiwany błąd w aplikacji. Daj nam znać, jeśli tak s msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Do Bluesky dołączyło wiele nowych osób! Twoje konto zostanie aktywowane tak szybko, jak to możliwe." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Ustawienia te dotyczą tylko kanału obserwowanych." @@ -8146,7 +8748,7 @@ msgstr "Ta zawartość jest hostowana przez {0}. Czy chcesz włączyć multimedi msgid "This content is not available because one of the users involved has blocked the other." msgstr "Ta zawartość jest niedostępna, ponieważ jeden z jej uczestników zablokował drugiego." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Ta zawartość nie jest dostępna bez konta Bluesky." @@ -8158,6 +8760,10 @@ msgstr "Ta rozmowa dotyczy usuniętego lub dezaktywowanego konta. Kliknij, aby w msgid "This email is already associated with your account." msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Ta funkcja jest w wersji beta. Więcej informacji na temat eksportowania danych można znaleźć w <0>tym wpisie na blogu." @@ -8170,7 +8776,7 @@ msgstr "" msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Ta funkcja nie jest dostępna podczas korzystania z hasła aplikacji. Zaloguj się przy użyciu głównego hasła." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Ten kanał jest teraz bardzo obciążony i nie jest chwilowo dostępny. Spróbuj ponownie później." @@ -8209,11 +8815,11 @@ msgstr "Ostrzeżenie to zostało nadane przez autora." msgid "This label was applied by you." msgstr "Ostrzeżenie to zostało nadane przez ciebie." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Ta moderacja nie określiła, jakie ostrzeżenia publikuje i może nie być aktywna." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Ten link prowadzi do następującej strony:" @@ -8233,29 +8839,28 @@ msgstr "Ta lista jest pusta." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Ta usługa moderacji jest niedostępna. Więcej informacji znajduje się poniżej. Jeśli problem będzie się powtarzał, skontaktuj się z nami." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Ten wpis został utworzony <0>{0}, ale po raz pierwszy pojawił się na Bluesky <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Ten wpis ma nieznany typ wątków. Twoja aplikacja może być nieaktualna." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Ten wpis został usunięty." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Ten wpis jest widoczny tylko dla zalogowanych. Nie będzie widoczny dla osób niezalogowanych." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Ten wpis zostanie ukryty w kanałach i wątkach. Nie można tego cofnąć." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "Autor tego wpisu wyłączył możliwość cytowania." @@ -8263,11 +8868,11 @@ msgstr "Autor tego wpisu wyłączył możliwość cytowania." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Ten profil jest widoczny tylko dla zalogowanych. Nie będzie widoczny dla osób niezalogowanych." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Ten komentarz trafi do ukrytej sekcji na dole wątku. Spowoduje to wyciszenie powiadomień o kolejnych komentarzach – zarówno dla ciebie, jak i innych." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Usługa ta nie zawiera regulaminu ani polityki prywatności." @@ -8275,6 +8880,10 @@ msgstr "Usługa ta nie zawiera regulaminu ani polityki prywatności." msgid "This should create a domain record at:" msgstr "Powinno to spowodować utworzenie rekordu domeny pod adresem:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" @@ -8316,16 +8925,18 @@ msgstr "Ta osoba nikogo nie obserwuje." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Spowoduje to usunięcie \"{0}\" z wyciszonych słów. Zawsze możesz dodać je później." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Spowoduje to usunięcie @{0} z listy szybkiego dostępu." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Spowoduje to usunięcie twojego wpisu z tego cytatu dla wszystkich i zastąpi go placeholderem." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Ustawienia wątków" @@ -8334,24 +8945,27 @@ msgstr "Ustawienia wątków" msgid "Thread preferences" msgstr "Ustawienia wątków" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Ustawienia wątków" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Tryb wątkowy" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Tryb wątkowy" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Ustawienia wątków" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "" @@ -8376,42 +8990,56 @@ msgstr "Do kogo chcesz wysłać to zgłoszenie?" msgid "Today" msgstr "Dziś" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Zwiń lub rozwiń" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Włącz lub wyłącz treści dla dorosłych" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Włącza lub wyłącza dźwięk" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Najlepsze" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Temat" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Przetłumacz" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Popularne" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Popularne filmiki" @@ -8428,14 +9056,10 @@ msgstr "Spróbuj ponownie" msgid "TV" msgstr "TV" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Uwierzytelnianie dwuskładnikowe (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Wprowadź nazwę" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Wpisz tu swoją wiadomość" @@ -8453,7 +9077,7 @@ msgstr "Nie udało się nawiązać połączenia. Sprawdź połączenie interneto #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Nie udało się skontaktować z usługą. Sprawdź połączenie internet msgid "Unable to delete" msgstr "Nie udało się usunąć" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Odblokuj" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Odblokuj" @@ -8486,7 +9126,7 @@ msgstr "Odblokuj" msgid "Unblock account" msgstr "Odblokuj konto" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Odblokować konto?" @@ -8495,13 +9135,13 @@ msgstr "Odblokować konto?" msgid "Unblock list" msgstr "" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Cofnij repost" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Cofnij repost ({0, plural, one {# repost} few {# reposty} other {# repostów}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Nie obserwuj" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Nie obserwuj {0}" @@ -8523,7 +9163,7 @@ msgstr "" msgid "Unfollows the user" msgstr "Nie obserwuj" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "Nie lubię" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Nie lubię ({0, plural, one {# polubienie} few {# polubienia} other {# polubień}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "" @@ -8555,8 +9195,8 @@ msgstr "Anuluj wyciszenie" msgid "Unmute {tag}" msgstr "Anuluj wyciszenie {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Anuluj wyciszenie" msgid "Unmute list" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Anuluj wyciszenie" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Anuluj wyciszenie" @@ -8597,8 +9237,8 @@ msgstr "" msgid "Unpin from home" msgstr "Odepnij od głównej" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Odepnij od profilu" @@ -8614,8 +9254,8 @@ msgstr "{0} odpięto od głównej" msgid "Unpinned from your feeds" msgstr "Odpięto kanał" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "" @@ -8636,7 +9276,7 @@ msgstr "Nie subskrybuj tej moderacji" msgid "Unsubscribed from list" msgstr "Nie subskrybujesz już listy" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Nieobsługiwany typ wideo" @@ -8662,8 +9302,8 @@ msgstr "Zaktualizuj <0>{displayName} w listach" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "" @@ -8676,17 +9316,17 @@ msgstr "Zmień na {domain}" msgid "Update your email" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Nie udało się zaktualizować dołączonego cytatu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Nie udało się zaktualizować widoczności komentarzy" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Aktualizowanie..." @@ -8698,20 +9338,20 @@ msgstr "Zamiast tego prześlij zdjęcie" msgid "Upload a text file to:" msgstr "Prześlij plik tekstowy do:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Prześlij z aparatu" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Prześlij z plików" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Prześlij z biblioteki" msgid "Uploading images..." msgstr "Przesyłanie zdjęć..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Przesyłanie miniatury..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Przesyłanie wideo..." @@ -8761,6 +9401,10 @@ msgstr "Korzystaj z zalecanych" msgid "Use this to sign in to the other app along with your handle." msgstr "Użyj go razem ze swoją nazwą, aby zalogować się do innej aplikacji." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Wykorzystane przez:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Zaktualizowano listę" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Nazwa lub adres email" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "obserwowani przez <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "obserwujący <0>@{0}" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Obserwowani przeze mnie" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Osoby w \"{0}\"" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Obserwowani przez ciebie" @@ -8846,11 +9502,11 @@ msgstr "Wartość:" msgid "Verification failed, please try again." msgstr "" -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "" @@ -8870,8 +9526,15 @@ msgstr "" msgid "Verify account" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "" @@ -8880,21 +9543,20 @@ msgstr "" msgid "Verify DNS Record" msgstr "Zweryfikuj rekord DNS" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Zweryfikuj adres email" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Zweryfikuj plik tekstowy" msgid "Verify this account?" msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Zweryfikuj swój adres email" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Zweryfikuj swój adres email" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Wersja {appVersion}" +msgid "Version {0}" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Wideo" @@ -8928,7 +9598,7 @@ msgstr "Wideo" msgid "Video failed to process" msgstr "Przetwarzanie wideo nie powiodło się" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Kanał wideo" @@ -8942,15 +9612,15 @@ msgstr "Wideo od {0}: {text}" msgid "Video Games" msgstr "Gry" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Wideo jest wstrzymane" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Wideo jest odtwarzane" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Wideo nie zostało odnalezione." @@ -8958,11 +9628,11 @@ msgstr "Wideo nie zostało odnalezione." msgid "Video settings" msgstr "Ustawienia wideo" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Wideo zostało przesłane" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Wideo: {0}" @@ -8979,11 +9649,11 @@ msgstr "" msgid "View {0}'s avatar" msgstr "Wyświetl zdjęcie profilowe {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Wyświetl profil {0}" @@ -8991,7 +9661,7 @@ msgstr "Wyświetl profil {0}" msgid "View {displayName}'s profile" msgstr "Wyświetl profil {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Wyświetl profil zablokowanej osoby" @@ -9009,7 +9679,6 @@ msgstr "Wyświetl dziennik systemowy" msgid "View details" msgstr "Wyświetl szczegóły" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Wyświetl szczegóły dotyczące zgłaszania naruszenia praw autorskich" @@ -9022,23 +9691,23 @@ msgstr "Wyświetl cały wątek" msgid "View information about these labels" msgstr "Wyświetl informacje o tych ostrzeżeniach" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Pokaż więcej" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Wyświetl profil" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Wyświetl zdjęcie profilowe" @@ -9054,28 +9723,28 @@ msgstr "" msgid "View users who like this feed" msgstr "Wyświetl osoby, które lubią ten kanał" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Wyświetl filmik" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Wyświetl zablokowane konta" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "Wyświetl domyślne ustawienia interakcji z wpisami" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Wyświetl swoje kanały i odkryj więcej" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Wyświetl swoje listy moderacji" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Wyświetl wyciszone konta" @@ -9083,8 +9752,8 @@ msgstr "Wyświetl wyciszone konta" msgid "View your verifications" msgstr "" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Wyświetla całe zdjęcie" @@ -9092,16 +9761,20 @@ msgstr "Wyświetla całe zdjęcie" msgid "Views video in immersive mode" msgstr "Wyświetla wideo w trybie immersyjnym" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "Odwiedź" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Głośność" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Ostrzegaj o zawartości i odfiltruj z kanałów" msgid "Watch now" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "" + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "Nie znaleziono żadnych wyników dla tego hashtagu." @@ -9128,7 +9809,7 @@ msgstr "Nie znaleziono żadnych wyników dla tego hashtagu." msgid "We couldn't find any results for that topic." msgstr "Nie znaleziono żadnych wyników dla tego tematu." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Nie udało się wczytać tej rozmowy" @@ -9136,6 +9817,10 @@ msgstr "Nie udało się wczytać tej rozmowy" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Szacowany czas, zanim twoje konto będzie gotowe wynosi {estimatedTime}." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Kolejny email weryfikacyjny został wysłany do <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "Mamy nadzieję, że miło spędzisz czas. Pamiętaj, że Bluesky jest:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Nie ma już więcej wpisów od obserwowanych. Oto najnowsze od <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Nie udało nam się potwierdzić, czy możesz przesyłać wideo. Spróbuj ponownie." @@ -9164,10 +9849,14 @@ msgstr "Nie udało nam się potwierdzić, czy możesz przesyłać wideo. Spróbu msgid "We were unable to load your birth date preferences. Please try again." msgstr "Nie udało nam się wczytać twojej daty urodzenia. Spróbuj ponownie." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "Nie udało nam się wczytać twoich ostrzeżeń." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Nie udało nam się połączyć. Spróbuj ponownie, aby kontynuować konfigurację konta. Jeśli nadal nie będzie to możliwe, możesz pominąć ten proces." @@ -9176,7 +9865,7 @@ msgstr "Nie udało nam się połączyć. Spróbuj ponownie, aby kontynuować kon msgid "We will let you know when your account is ready." msgstr "Damy ci znać, gdy twoje konto będzie gotowe." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -9184,6 +9873,22 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "Wykorzystamy te informacje, aby spersonalizować twoje doświadczenia." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Mamy problemy z siecią, spróbuj ponownie" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Nie możemy się doczekać, aż do nas dołączysz!" @@ -9205,15 +9910,15 @@ msgstr "Przepraszamy, ale nie udało nam się wczytać tej listy. Jeśli problem msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Przepraszamy, ale w tej chwili nie mogliśmy wczytać wyciszonych przez ciebie słów. Spróbuj ponownie." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Przepraszamy, ale twoje wyszukiwanie się nie powiodło. Spróbuj ponownie za kilka minut." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Przepraszamy! Wpis, który komentujesz, został usunięty." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Przepraszamy! Nie możemy znaleźć strony, której szukasz." @@ -9222,6 +9927,26 @@ msgstr "Przepraszamy! Nie możemy znaleźć strony, której szukasz." msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Przepraszamy! Możesz subskrybować tylko dwadzieścia usług moderacji i właśnie osiągnięto ten limit." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Witaj z powrotem!" @@ -9240,7 +9965,7 @@ msgstr "Jak chcesz nazwać swój pakiet startowy?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Jak się masz?" @@ -9256,11 +9981,11 @@ msgstr "Które języki są używane w tym wpisie?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Które języki chcesz zobaczyć na swoich kanałach?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Kto może wchodzić w interakcje z tym wpisem?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Kto może komentować" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Ups!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "Ups! Nie udało się wczytać popularnych filmików." @@ -9322,12 +10047,12 @@ msgstr "Dlaczego ta osoba powinna zostać sprawdzona?" msgid "Write a message" msgstr "Napisz wiadomość" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Utwórz wpis" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Skomentuj" @@ -9358,11 +10083,11 @@ msgstr "Tak, dezaktywuj" msgid "Yes, delete this starter pack" msgstr "Tak, usuń ten pakiet startowy" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Tak, odłącz" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Tak, ukryj" @@ -9378,6 +10103,10 @@ msgstr "Wczoraj" msgid "You" msgstr "Ty" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "" @@ -9386,6 +10115,10 @@ msgstr "" msgid "You are creating an account on" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Jesteś w kolejce." @@ -9403,7 +10136,7 @@ msgstr "" msgid "You are not allowed to go live" msgstr "" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Nie możesz przesyłać filmików." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "" @@ -9441,10 +10173,18 @@ msgstr "Możesz również znaleźć nowe kanały niestandardowe do obserwowania. msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Możesz również tymczasowo dezaktywować swoje konto i aktywować je ponownie w dowolnym momencie." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Możesz kontynuować aktywne rozmowy niezależnie od wybranych opcji." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Możesz teraz logować się przy użyciu nowego hasła." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Możesz ponownie aktywować swoje konto, aby się zalogować. Twój profil i wpisy znów będą widoczne dla innych." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "Aby zmienić domyślne ustawienia interakcji, przejdź do <0>Ustawienia → Moderacja → Ustawienia interakcji." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Możesz to później zmienić w ustawieniach." @@ -9472,7 +10212,7 @@ msgstr "Nikt cię nie obserwuje." msgid "You don't follow any users who follow @{name}." msgstr "Nie obserwujesz nikogo, kto obserwuje @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "" @@ -9480,15 +10220,15 @@ msgstr "" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Nie masz jeszcze żadnych zaproszeń! Wyślemy ci je, gdy będziesz na Bluesky trochę dłużej." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Nie masz żadnych przypiętych kanałów." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Nie masz żadnych zapisanych kanałów." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Autor został zablokowany lub ty zostałeś zablokowany." @@ -9502,6 +10242,10 @@ msgstr "Ta osoba została zablokowana" msgid "You have blocked this user. You cannot view their content." msgstr "Ta osoba została zablokowana. Nie możesz wyświetlać jej treści." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "To konto zostało wyciszone." msgid "You have muted this user" msgstr "Ta osoba została wyciszona" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Nie prowadzisz jeszcze żadnych rozmów. Rozpocznij nową!" @@ -9547,7 +10291,7 @@ msgstr "Żadne konto nie zostało jeszcze zablokowane. Otwórz profil konta i wy msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Żadne konto nie zostało jeszcze wyciszone. Otwórz profil konta i wybierz opcję \"Wycisz konto\" z menu, aby to zrobić." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "To już koniec" @@ -9572,6 +10316,10 @@ msgstr "Nie wyciszono jeszcze żadnego słowa ani tagu" msgid "You hid this reply." msgstr "Ten komentarz został ukryty." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Możesz odwołać się od innych ostrzeżeń, jeśli uważasz, że zostały one dodane błędnie." @@ -9592,7 +10340,7 @@ msgstr "Możesz dodać maksymalnie 3 kanały" msgid "You may only select up to 4 images" msgstr "Możesz wybrać maksymalnie 4 zdjęcia" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "" @@ -9600,6 +10348,14 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Aby wygenerować pakiet startowy, musisz obserwować co najmniej siedem innych osób." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Aby zapisać kod QR, przyznaj dostęp do galerii zdjęć" @@ -9608,6 +10364,11 @@ msgstr "Aby zapisać kod QR, przyznaj dostęp do galerii zdjęć" msgid "You must select at least one labeler for a report" msgstr "Musisz wybrać co najmniej jedną usługę do zgłoszenia" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "" @@ -9616,7 +10377,7 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "Konto @{0} było poprzednio dezaktywowane." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "" @@ -9628,16 +10389,20 @@ msgstr "" msgid "You reacted {0} to {1}" msgstr "" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Nastąpi wylogowanie ze wszystkich kont." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Nie będziesz już otrzymywać powiadomień z tego wątku" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Będziesz teraz otrzymywać powiadomienia z tego wątku" @@ -9657,11 +10422,11 @@ msgstr "Ty: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Ty: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Po utworzeniu konta zaobserwujesz sugerowane osoby i kanały!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Po utworzeniu konta zaobserwujesz sugerowane osoby!" @@ -9673,9 +10438,9 @@ msgstr "Zaobserwujesz te osoby oraz {0} innych" msgid "You'll follow these people right away" msgstr "Od razu zaobserwujesz te osoby" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Otrzymasz wiadomość email na adres <0>{0} w celu weryfikacji." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "Słowo lub tag zostały wyciszone w tym wpisie." msgid "You've found some people to follow" msgstr "Znaleziono kilka osób do obserwowania" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "To już koniec! Znajdź więcej kont do obserwowania." @@ -9711,19 +10480,23 @@ msgstr "To już koniec! Znajdź więcej kont do obserwowania." msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Dzienny limit przesyłania wideo został osiągnięty (zbyt dużo danych)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Dzienny limit przesyłania wideo został osiągnięty (zbyt dużo plików)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Nie mamy już więcej filmików do oglądania. Może to dobry czas na przerwę?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Twoje konto" @@ -9735,7 +10508,7 @@ msgstr "Twoje konto zostało usunięte" msgid "Your account has been suspended" msgstr "Twoje konto zostało zawieszone" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Twoje konto jest jeszcze zbyt krótko aktywne, aby przesyłać filmiki. Spróbuj ponownie później." @@ -9751,11 +10524,11 @@ msgstr "Twoje konto zostało uznane za naruszające <0>Regulamin Bluesky Social< msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "Twoje odwołanie zostało złożone. Jeśli zakończy się pomyślnie, otrzymasz wiadomość email." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Twoja data urodzenia" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Twoja przeglądarka nie obsługuje tego formatu wideo. Spróbuj użyć innej." @@ -9771,13 +10544,15 @@ msgstr "" msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Twoja aktualna nazwa <0>{0} zostanie automatycznie dla ciebie zajęta. Możesz do niej wrócić w dowolnym momencie za pomocą tego konta." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Twój adres email jest nieprawidłowy." @@ -9786,15 +10561,11 @@ msgstr "Twój adres email jest nieprawidłowy." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Twój adres email nie został jeszcze zweryfikowany. Jest to ważny etap zabezpieczeń, który zalecamy wykonać." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "Twoje pierwsze polubienie!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "Twoi obserwujący" @@ -9806,19 +10577,15 @@ msgstr "Twój kanał obserwowanych jest pusty! Zaobserwuj więcej osób, aby zob msgid "Your full handle will be <0>@{0}" msgstr "Twoja nowa nazwa to <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "" @@ -9835,15 +10602,15 @@ msgstr "Wyciszone przez ciebie słowa" msgid "Your password has been changed successfully!" msgstr "Hasło zostało zmienione pomyślnie!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Twój wpis został opublikowany" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Twoje wpisy zostały opublikowane" @@ -9851,15 +10618,19 @@ msgstr "Twoje wpisy zostały opublikowane" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Twoje wpisy, polubienia i blokady są publiczne. Wyciszenia są prywatne." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Twój profil, wpisy, kanały i listy nie będą już widoczne dla innych na Bluesky. Możesz ponownie aktywować swoje konto w dowolnym momencie po zalogowaniu." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Twój komentarz został opublikowany" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -9867,7 +10638,7 @@ msgstr "" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Twoje zgłoszenie zostanie przesłane do moderacji Bluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "" diff --git a/src/locale/locales/pt-BR/messages.po b/src/locale/locales/pt-BR/messages.po index 5cc9bbffc3..3630cf07f2 100644 --- a/src/locale/locales/pt-BR/messages.po +++ b/src/locale/locales/pt-BR/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: pt\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 00:49\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,7 +27,7 @@ msgstr "(ativo)" msgid "(contains embedded content)" msgstr "(possui conteúdo incorporado)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(sem e-mail)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# repostagem} other {# repostagens}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# segundo} other {# segundos}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# item não lido} other {# itens não lidos}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {# item não lido} other {# itens não lidos}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {#me} other {#me}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {seguidor} other {seguidores}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {seguindo} other {seguindo}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {curtida} other {curtidas}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {curtida} other {curtidas}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {postagem} other {postagens}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {citação} other {citações}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {repostagem} other {repostagens}}" @@ -135,6 +138,10 @@ msgstr "{0} <0>em <1>tags" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>em <1>texto e tags" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} seguindo" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "{0} está ao vivo" @@ -143,11 +150,15 @@ msgstr "{0} está ao vivo" msgid "{0} is not a valid URL" msgstr "{0} não é uma URL válida" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "{0} não está disponível" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} juntou-se esta semana" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} de {1}" @@ -164,8 +175,16 @@ msgstr "{0} reagiu com {1}" msgid "{0} reacted {1} to {2}" msgstr "{0} reagiu com {1} a {2}" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0}, um feed por {1}, curtido por {2}" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0}, uma lista por {1}" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "Foto de perfil de {0}" @@ -197,12 +216,12 @@ msgstr "{0}min" msgid "{0}s" msgstr "{0}s" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# item não lido} other {# itens não lidos}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "O pacote inicial de {displayName}" @@ -214,174 +233,173 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {horas}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuto} other {minutos}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} te seguiram" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} curtiram seu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} curtiram sua postagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" +msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} curtiram sua repostagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} removeram suas verificações da sua conta" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} repostaram sua postagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} repostaram sua repostagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} juntaram-se ao seu pacote inicial" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} verificaram você" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} te seguiu" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} te seguiu de volta" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} curtiu seu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} curtiu sua postagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" -msgstr "" +msgstr "{firstAuthorLink} curtiu sua repostagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} removeu a verificação da sua conta" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} repostou sua postagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" -msgstr "" +msgstr "{firstAuthorLink} repostou sua repostagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} juntou-se ao seu pacote inicial" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} verificou você" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} te seguiram" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} curtiram seu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} curtiram sua postagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" +msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} curtiram sua repostagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} removeram suas verificações da sua conta" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} repostaram sua postagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} repostaram sua repostagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} juntaram-se ao seu pacote inicial" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} verificaram você" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} te seguiu" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} te seguiu de volta" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} curtiu seu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} curtiu sua postagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" -msgstr "" +msgstr "{firstAuthorName} curtiu sua repostagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} removeu a verificação da sua conta" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} repostou sua postagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" -msgstr "" +msgstr "{firstAuthorName} repostou sua repostagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} juntou-se ao seu pacote inicial" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} verificou você" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} seguindo" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "Não é possível enviar mensagens a {handle}" #: src/components/live/utils.ts:15 msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" -msgstr "" +msgstr "{hours, plural, one {# hora e {minutesString}} other {# horas e {minutesString}}}" #: src/components/live/utils.ts:19 msgid "{hours, plural, one {# hour} other {# hours}}" -msgstr "" +msgstr "{hours, plural, one {# hora} other {# horas}}" #. Number of users (always at least 50) who have joined Bluesky using a specific starter pack #: src/components/StarterPack/StarterPackCard.tsx:101 @@ -390,9 +408,9 @@ msgstr "{joinedAllTimeCount, plural, other {# usuários se juntaram}}!" #: src/components/live/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" -msgstr "" +msgstr "{minutes, plural, one {# minuto} other {# minutos}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# item não lido} other {# itens não lidos}}" @@ -432,12 +450,12 @@ msgstr "Verificações de {userName}" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, e {2, plural, one {# outro} other {outros #}} estão inclusos no seu pacote inicial" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, e {2, plural, one {# outro} other {outros #}} estão inclusos no seu pacote inicial" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {seguidor} other {seguidores}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {seguindo} other {seguindo}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} e<1> <2>{1} estão inclusos no seu pacote inicial" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} está incluso no seu pacote inicial" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} membros" @@ -466,11 +484,11 @@ msgstr "<0>{0} membros" msgid "<0>{date} at {time}" msgstr "<0>{date} às {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Experimental: Ao ativar esta opção, você receberá notificações de respostas e citações apenas de usuários que você segue. Adicionaremos mais opções de controle aqui no futuro." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<0>Entre<1> ou <2>crie uma conta<3> <4>para procurar notícias, esportes, política e tudo o mais que acontece no Bluesky." -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Você e<1> <2>{0} estão inclusos no seu pacote inicial" @@ -503,10 +521,14 @@ msgstr "uma mensagem" msgid "A new form of verification" msgstr "Uma nova forma de verificação" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "Uma captura de tela de uma página de perfil com um ícone de sino ao lado do botão de seguir, indicando o novo recurso de notificações de atividade." + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Sobre" @@ -524,25 +546,25 @@ msgstr "Aceitar pedido de conversa" msgid "Accept Request" msgstr "Aceitar solicitação" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Acessibilidade" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Acessibilidade" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Conta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Conta seguida" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Conta silenciada" msgid "Account Muted by List" msgstr "Conta silenciada pela lista" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Opções da conta" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Conta removida do acesso rápido" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Conta deixada de seguir" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Conta dessilenciada" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Contas com um ponto de verificação azul ondulado <0><1/> podem verificar outras contas. Esses verificadores confiáveis são selecionados pelo Bluesky." +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "Atividade de terceiros" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "Notificações de atividade" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Adicionar" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Adicione mais {0} para continuar" @@ -619,7 +651,7 @@ msgstr "Adicionar aviso de conteúdo" #: src/components/live/GoLiveDialog.tsx:101 msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event." -msgstr "" +msgstr "Adiciona um status ao vivo temporário ao seu perfil. Quando alguém clicar no seu avatar, verá informações sobre seu evento ao vivo." #: src/view/screens/ProfileList.tsx:924 #: src/view/screens/ProfileList.tsx:942 @@ -634,8 +666,8 @@ msgstr "Adicionar conta" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Adicionar texto alternativo" msgid "Add alt text (optional)" msgstr "Adicionar texto alternativo (opcional)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Adicionar outra conta" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Adicionar outra postagem" @@ -670,8 +702,8 @@ msgstr "Adicionar senha do app" msgid "Add emoji reaction" msgstr "Adicionar reação de emoji" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Adicionar mais detalhes (opcional)" @@ -683,7 +715,7 @@ msgstr "Adicionar palavra silenciada com as configurações escolhidas" msgid "Add muted words and tags" msgstr "Adicionar palavras/tags removidas" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Adicionar nova postagem" @@ -704,7 +736,7 @@ msgstr "Adicionar Reação" msgid "Add recommended feeds" msgstr "Utilizar feeds recomendados" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Adicione alguns feeds ao seu pacote inicial!" @@ -725,10 +757,6 @@ msgstr "Adicione este feed aos seus feeds" msgid "Add to lists" msgstr "Adicionar às listas" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Adicionar aos meus feeds" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "Adicionar usuário à lista" @@ -738,11 +766,11 @@ msgstr "Adicionar usuário à lista" msgid "Added to list" msgstr "Adicionado à lista" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Adicionado aos meus feeds" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "Detalhes adicionais (limite de 1000 caracteres)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Detalhes adicionais (limite de 300 caracteres)" @@ -750,18 +778,18 @@ msgstr "Detalhes adicionais (limite de 300 caracteres)" msgid "Adult" msgstr "Adulto" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Conteúdo adulto" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "O conteúdo adulto só pode ser ativo pelo site em <0>bsky.app" -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "O conteúdo adulto está desativado." @@ -770,16 +798,32 @@ msgstr "O conteúdo adulto está desativado." msgid "Adult Content labels" msgstr "Rótulos de conteúdo adulto" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Avançado" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "Verificação de Idade" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "Falha ao enviar a solicitação de verificação de idade, por favor tente novamente." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "A solicitação de verificação de idade foi submetida" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "A verificação de idade leva apenas alguns minutos" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "alice@exemplo.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Tudo" @@ -793,7 +837,7 @@ msgstr "Todas as contas foram seguidas!" msgid "All languages" msgstr "Todos os idiomas" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Todos os feeds que você salvou, em um único lugar." @@ -802,16 +846,21 @@ msgstr "Todos os feeds que você salvou, em um único lugar." msgid "Allow access to your direct messages" msgstr "Permitir acesso às minhas mensagens diretas" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Permitir novas mensagens de" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "Permitir que outros sejam notificados das suas postagens" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Permitir citações" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Permitir respostas de:" @@ -828,13 +877,13 @@ msgstr "Já tem um código?" msgid "Already signed in as @{0}" msgstr "Já registrado como @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "Texto alternativo" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Texto Alternativo" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "O texto alternativo descreve imagens para usuários cegos e com baixa visão, além de dar contexto a todos." @@ -861,27 +910,19 @@ msgstr "O texto alternativo será truncado. {MAX_ALT_TEXT, plural, other {Limite msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Um e-mail foi enviado para {0}. Nele possui um código de confirmação que você pode inserir abaixo." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "Um e-mail foi enviado para seu endereço de e-mail anterior, {currentEmail}. Ele possui um código de confirmação que você pode inserir abaixo." - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "E-mail enviado. Insira abaixo o código de confirmação incluso no e-mail." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Ocorreu um erro" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Ocorreu um erro" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Ocorreu um erro ao compactar o vídeo." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "Ocorreu um erro ao recuperar o feed." @@ -889,11 +930,11 @@ msgstr "Ocorreu um erro ao recuperar o feed." msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Ocorreu um erro ao gerar seu pacote inicial. Tentar novamente?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Ocorreu um erro ao carregar o vídeo. Tente novamente mais tarde." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Ocorreu um erro ao carregar o vídeo. Tente novamente." @@ -910,7 +951,7 @@ msgstr "Ocorreu um erro ao selecionar o vídeo" msgid "An error occurred while trying to follow all" msgstr "Ocorreu um erro ao tentar seguir todos" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Ocorreu um erro ao enviar o vídeo." @@ -934,8 +975,8 @@ msgstr "Ocorreu um problema ao tentar abrir a conversa" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "ocorreu um erro desconhecido" msgid "an unknown labeler" msgstr "um rotulador desconhecido" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "e" @@ -963,10 +1004,14 @@ msgstr "e" msgid "Animals" msgstr "Animais" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "GIF animado" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "Anúncio" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "Anunciando verificação no Bluesky" @@ -980,7 +1025,13 @@ msgstr "Comportamento Anti-social" msgid "Anybody can interact" msgstr "Qualquer um pode interagir" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "Qualquer um que me segue" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,15 +1063,15 @@ msgstr "A senha do app só pode conter letras, números, espaços, travessões e msgid "App password names must be at least 4 characters long" msgstr "A senha do app deve conter no mínimo 4 caracteres" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" -msgstr "Senhas do app" +msgstr "Senhas de aplicativo" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" -msgstr "Senhas do app" +msgstr "Senhas de Aplicativo" #: src/components/moderation/LabelsOnMeDialog.tsx:150 #: src/components/moderation/LabelsOnMeDialog.tsx:153 @@ -1053,10 +1104,10 @@ msgstr "Recorrer da suspensão" msgid "Appeal this decision" msgstr "Recorrer desta decisão" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Aparência" @@ -1065,12 +1116,20 @@ msgstr "Aparência" msgid "Apply default recommended feeds" msgstr "Utilizar feeds recomendados" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "Aplicar Pull Request" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Arquivado desde {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Postagem arquivada" @@ -1078,7 +1137,7 @@ msgstr "Postagem arquivada" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Deseja mesmo excluir a senha do app \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Deseja mesmo excluir esta mensagem? A mensagem será excluída apenas para você." @@ -1098,19 +1157,15 @@ msgstr "Tem certeza de que deseja sair desta conversa?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Deseja mesmo sair desta conversa? As mensagens serão excluídas apenas para você." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Deseja mesmo remover {0} dos seus feeds?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Deseja mesmo remover isso de seus feeds?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Deseja mesmo descartar este rascunho?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Tem certeza de que deseja descartar esta postagem?" @@ -1131,29 +1186,26 @@ msgstr "Arte" msgid "Artistic or non-erotic nudity." msgstr "Nudez artística ou não erótica." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" -msgstr "" +msgstr "Atribuir tópico ao algoritmo" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "No mínimo 3 caracteres" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Ajustes de reprodução automática foram movidas para <0>Ajustes de conteúdo e mídia." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Reproduzir vídeos e GIFs automaticamente" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "Disponível" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Reproduzir vídeos e GIFs automaticamente" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Voltar" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Voltar às Conversas" @@ -1184,7 +1236,7 @@ msgstr "Para criar uma lista, você precisa verificar seu email." #: src/lib/hooks/useOpenComposer.tsx:14 msgid "Before creating a post or replying, you must first verify your email." -msgstr "" +msgstr "Para criar ou responder uma postagem, você deve primeiro verificar o seu email." #: src/components/StarterPack/ProfileStarterPacks.tsx:235 #: src/components/StarterPack/ProfileStarterPacks.tsx:245 @@ -1193,30 +1245,46 @@ msgstr "Para criar um pacote inicial, você precisa verificar seu email." #: src/screens/Messages/components/RequestButtons.tsx:235 msgid "Before you can accept this chat request, you must first verify your email." -msgstr "" +msgstr "Para aceitar este pedido de conversa, você deve primeiro verificar o seu email." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "Para que possa receber notificações das postagens de {name}, você deve primeiro verificar seu email." #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." -msgstr "" +msgstr "Para enviar mensagens a outro usuário, você deve primeiro verificar o seu email." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "Começar" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "Começar o processo de verificação de idade" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "Comece o processo de verificação de idade preenchendo os campos abaixo." #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Aniversário" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Bloquear" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Bloquear" msgid "Block account" msgstr "Bloquear conta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Bloquear conta?" @@ -1262,20 +1330,20 @@ msgstr "Bloquear usuário" msgid "Block User" msgstr "Bloquear usuário" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Bloqueado" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Contas bloqueadas" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Contas bloqueadas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 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." @@ -1284,11 +1352,11 @@ msgstr "Contas bloqueadas não podem te responder, mencionar ou interagir." msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Contas bloqueadas não podem responder aos seus tópicos, te mencionar, ou interagir com você. Você não verá seus conteúdos e eles não conseguirão ver os seus." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Postagem bloqueada." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Bloquear o rotulador não impede que ele adicione rótulos a sua conta." @@ -1309,11 +1377,12 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "O Bluesky não pode confirmar que a data mostrada é legítima." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1347,6 +1416,14 @@ msgstr "O Bluesky não exibirá seu perfil e postagens a usuários desconectados msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "O Bluesky irá proativamente verificar contas notáveis e autênticas." +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "Diretrizes da Comunidade do Bluesky" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "Diretrizes Atualizadas da Comunidade do Bluesky" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Borrar imagens e filtrar dos feeds" msgid "Books" msgstr "Livros" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Navegue por mais contas na página Explorar" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Navegue por mais feeds na página Explorar" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Navegar por mais sugestões" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Navegue por mais sugestões na página Explorar" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Corporativo" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Por {0}" @@ -1428,15 +1502,23 @@ msgstr "Por {0}" msgid "By <0>{0}" msgstr "Por <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "Ao clicar em \"Continuar\" você reconhece que entende e aceita essas atualizações." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "Ao continuar, você concorda com os <0>Termos de Uso do KWS e reconhece que o KWS armazenará seu status verificado junto a um hash do seu endereço de email conforme a <1>Política de Privacidade do KWS. Isso significa que você não precisará verificar novamente na próxima vez que usar este email para outros aplicativos, jogos e serviços que utilizem os serviços KWS." + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Ao criar uma conta você concorda com a <0>Política de Privacidade." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Ao criar uma conta você concorda com os <0>Termos de Serviço e a <1>Política de Privacidade." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Ao criar uma conta você concorda com os <0>Termos de Serviço." @@ -1448,14 +1530,17 @@ msgstr "Por você" msgid "Camera" msgstr "Câmera" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Câmera" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Cancelar" @@ -1500,11 +1582,7 @@ msgstr "Cancelar exclusão da conta" msgid "Cancel image crop" msgstr "Cancelar corte da imagem" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Cancelar edição do perfil" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Cancelar citação" @@ -1516,14 +1594,10 @@ msgstr "Cancelar reativação e desconectar" msgid "Cancel search" msgstr "Cancelar pesquisa" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Cancela a abertura do link" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Não é possível interagir com um usuário bloqueado" @@ -1553,17 +1627,12 @@ msgstr "Alterar ícone do app para \"{0}\"" msgid "Change app language" msgstr "Mudar idioma do aplicativo" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Alterar endereço de e-mail" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Alterar nome de usuário" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Alterar serviço de moderação" @@ -1579,14 +1648,6 @@ msgstr "Alterar idioma da postagem para {suggestedLanguageName}" msgid "Change report reason" msgstr "Alterar motivo da denúncia" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Altere o seu e-mail" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Alterar o seu endereço de e-mail" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Altera o ícone do app" @@ -1596,10 +1657,15 @@ msgstr "Altera o ícone do app" msgid "Changes hosting provider" msgstr "Altera o provedor de hospedagem" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "Alterações salvas" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Conversas" @@ -1609,38 +1675,49 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Conversa excluída" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "Conversas — silêncio" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "Conversas — som" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Conversa silenciada" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "Caixa de entrada de pedidos de conversa" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Pedidos de conversa" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" -msgstr "Opções da conversa" +msgstr "Configurações de conversa" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" -msgstr "Opções da conversa" +msgstr "Configurações de Conversa" #: src/components/dms/ConvoMenu.tsx:178 msgctxt "toast" msgid "Chat unmuted" msgstr "Conversa dessilenciada" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Conversas" @@ -1661,7 +1738,7 @@ msgstr "Confira sua caixa de entrada por um e-mail com um código de confirmaç msgid "Choose domain verification method" msgstr "Selecionar método de verificação de domínio" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Escolher feeds" @@ -1669,7 +1746,7 @@ msgstr "Escolher feeds" msgid "Choose for me" msgstr "Escolha para mim" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Escolher pessoas" @@ -1685,23 +1762,23 @@ msgstr "Selecionar esta cor como sua foto de perfil" msgid "Choose your account provider" msgstr "Escolher o provedor da conta" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Escolha sua própria linha do tempo! Feeds feitos pela comunidade ajudam a encontrar o conteúdo que você ama." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Escolha sua senha" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Seu nome de usuário" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Limpar dados de armazenamento" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Limpar dados de armazenamento (e então reiniciar)" @@ -1714,23 +1791,27 @@ msgstr "Limpar memória temporária de imagens" msgid "Clear search query" msgstr "Limpar pesquisa" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "Clique para informações" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "clique aqui" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "Clique aqui para reiniciar o processo de verificação." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "Clique aqui para atualizar seu email" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Clique para desativar citações desta postagem." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Clique para ativar citações desta postagem." @@ -1750,14 +1831,16 @@ msgstr "Clima e tempo" msgid "Clip 🐴 clop 🐴" msgstr "Clip 🐴 clop 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Clip 🐴 clop 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Fechar" @@ -1789,13 +1876,15 @@ msgstr "Fechar alerta" msgid "Close bottom drawer" msgstr "Fechar parte inferior" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Fechar janela" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Fechar menu lateral" @@ -1804,7 +1893,7 @@ msgstr "Fechar menu lateral" msgid "Close emoji picker" msgstr "Fechar seletor de emoji" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Fechar janela de GIFs" @@ -1822,7 +1911,7 @@ msgstr "Fechar visualizador de imagens" msgid "Close menu" msgstr "Fechar menu" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Fechar esta janela" @@ -1830,7 +1919,7 @@ msgstr "Fechar esta janela" msgid "Closes password update alert" msgstr "Fecha o alerta de mudança de senha" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "Fecha a janela de nova postagem e descarta o rascunho" @@ -1843,16 +1932,16 @@ msgstr "Fecha o seletor de emoji" msgid "Closes viewer for header image" msgstr "Fecha o visualizador de banner" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Esconder lista de usuários" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Fecha a lista de usuários de uma notificação" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Esquema de cor" @@ -1870,7 +1959,8 @@ msgstr "Comédia" msgid "Comics" msgstr "Quadrinhos" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Diretrizes da Comunidade" @@ -1879,38 +1969,34 @@ msgstr "Diretrizes da Comunidade" msgid "Complete onboarding and start using your account" msgstr "Complete e comece a utilizar sua conta" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Complete o captcha" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Escrever nova postagem" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Escreva postagens de até {0, plural, other {# caracteres}}" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Escrever resposta" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Comprimindo vídeo..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Configure o filtro de conteúdo por categoria: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Configurável no <0>painel de moderação." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Confirmar ajustes de idioma de conteúdo" msgid "Confirm delete account" msgstr "Confirmar exclusão da conta" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Confirme sua idade:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Confirme sua data de nascimento" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Confirme sua data de nascimento" msgid "Confirmation code" msgstr "Código de confirmação" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Código de confirmação" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Conectando..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "Problema de conexão" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "Contate a nossa equipe de moderação" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Entrar em contato com o suporte" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "Fale conosco" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Conteúdo e mídia" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Conteúdo e mídia" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Conteúdo e mídia" @@ -1977,7 +2069,8 @@ msgstr "Conteúdo e mídia" msgid "Content Blocked" msgstr "Conteúdo bloqueado" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Filtros de conteúdo" @@ -2006,10 +2099,12 @@ msgstr "Aviso de conteúdo" msgid "Content warnings" msgstr "Avisos de conteúdo" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Fundo do menu, clique para fechá-lo." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Continuar" msgid "Continue as {0} (currently signed in)" msgstr "Continuar como {0} (já conectado)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "Continuar tópico" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Continuar tópico..." @@ -2029,6 +2129,10 @@ msgstr "Continuar tópico..." msgid "Continue to next step" msgstr "Continuar com o próximo passo" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "Conversa" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Copiado" msgid "Copied build version to clipboard" msgstr "Número de versão do app copiada" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Copia o número de versão para a área de transferência" msgid "Copy" msgstr "Copiar" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "Copiar mesmo assim" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Copiar senha do app" @@ -2087,8 +2187,8 @@ msgstr "Copiar senha do app" msgid "Copy at:// URI" msgstr "Copiar URI at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Copiar DID do autor" @@ -2120,10 +2220,10 @@ msgstr "Copiar link" msgid "Copy link to list" msgstr "Copiar link da lista" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Copiar link da postagem" @@ -2136,18 +2236,18 @@ msgstr "Copiar link para o perfil" msgid "Copy link to starter pack" msgstr "Copiar link para o pacote inicial" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Copiar texto da mensagem" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Copiar URI at:// da postagem" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Copiar texto da postagem" @@ -2159,11 +2259,25 @@ msgstr "Copiar QR code" msgid "Copy TXT record value" msgstr "Copiar valor do registro TXT" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Política de direitos autorais" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "Não foi possível conectar ao feed personalizado" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "Não foi possível conectar ao serviço do feed" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "Não foi possível encontrar o perfil" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "Não foi possível silenciar esta conversa" msgid "Could not process your video" msgstr "Não foi possível processar seu vídeo" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "Não foi possível salvar as alterações: {0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "Não foi possível atualizar as configurações de notificação" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Criar" @@ -2195,7 +2317,7 @@ msgstr "Criar um QR code para o pacote inicial" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Criar um pacote inicial" @@ -2205,21 +2327,22 @@ msgstr "Crie um pacote inicial para mim" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Criar conta" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Criar conta" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Criar uma conta" @@ -2241,7 +2364,7 @@ msgstr "Criar outro" msgid "Create new account" msgstr "Criar nova conta" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Criar denúncia para {0}" @@ -2268,7 +2391,7 @@ msgstr "Personalizado" msgid "Customization options" msgstr "Opções de personalização" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Personalize quem pode interagir com esta postagem." @@ -2278,12 +2401,12 @@ msgstr "Personaliza a sua experiência do Bluesky" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Escuro" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Escuro" @@ -2292,21 +2415,21 @@ msgstr "Escuro" msgid "Dark mode" msgstr "Modo escuro" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Tema escuro" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Data de nascimento" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Desativar conta" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Depurar moderação" @@ -2314,7 +2437,7 @@ msgstr "Depurar moderação" msgid "Debug panel" msgstr "Painel de depuração" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Padrão" @@ -2322,8 +2445,8 @@ msgstr "Padrão" msgid "Default icons" msgstr "Ícones padrão" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Ícones padrão" msgid "Delete" msgstr "Excluir" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Excluir conta" @@ -2355,7 +2478,7 @@ msgstr "Excluir senha do app?" msgid "Delete chat" msgstr "Excluir conversa" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Excluir registro da conversa" @@ -2370,7 +2493,7 @@ msgstr "Excluir conversa" msgid "Delete Conversation" msgstr "Excluir conversa" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Excluir para mim" @@ -2378,11 +2501,11 @@ msgstr "Excluir para mim" msgid "Delete list" msgstr "Excluir lista" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Excluir mensagem" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Excluir mensagem para mim" @@ -2390,9 +2513,9 @@ msgstr "Excluir mensagem para mim" msgid "Delete my account" msgstr "Excluir minha conta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Excluir postagem" @@ -2409,11 +2532,11 @@ msgstr "Excluir pacote inicial?" msgid "Delete this list?" msgstr "Excluir esta lista?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Excluir esta postagem?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Excluído" @@ -2422,15 +2545,20 @@ msgstr "Excluído" msgid "Deleted Account" msgstr "Conta excluída" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "Lista excluída" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Postagem excluída." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Descrição" @@ -2447,12 +2575,12 @@ msgstr "Descrição muito longa. {DESCRIPTION_MAX_GRAPHEMES, plural, other {O n msgid "Descriptive alt text" msgstr "Texto alternativo descritivo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Desanexar citação" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Desanexar citação?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Modo de desenvolvedor ativado" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Opções do desenvolvedor" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Ajuste quem pode interagir com esta postagem" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Menos escuro" @@ -2492,27 +2620,27 @@ msgstr "Desabilitar 2FA por e-mail" msgid "Disable Email 2FA" msgstr "Desativar 2FA por e-mail" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Desativar feedback tátil" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Desativar legendas" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Desativado" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Descartar" @@ -2520,11 +2648,11 @@ msgstr "Descartar" msgid "Discard changes?" msgstr "Descartar alterações?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Descartar rascunho?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Descartar postagem?" @@ -2542,7 +2670,7 @@ msgstr "Descobrir Feeds" msgid "Discover new custom feeds" msgstr "Descobrir novos feeds personalizados" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Descobrir novos feeds" @@ -2550,7 +2678,7 @@ msgstr "Descobrir novos feeds" msgid "Dismiss" msgstr "Dispensar" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Dispensar erro" @@ -2562,26 +2690,26 @@ msgstr "Ignorar guia de primeiros passos" msgid "Dismiss interests" msgstr "Dispensar interesses" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "Dispensar mensagem" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Dispensar esta seção" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" -msgstr "Exibir emblemas de texto alternativo maiores" +msgstr "Exibir ícones maiores de texto alternativo" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Nome de exibição" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Nome de exibição" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Nome de exibição muito longo" @@ -2603,21 +2731,26 @@ msgstr "Não aplicar palavra oculta para usuários que sigo" msgid "Does not include nudity." msgstr "Não inclui nudez." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Não começa ou termina com um hífen" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Domínio verificado!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." -msgstr "" +msgstr "Não tem um código ou precisa de um novo? <0>Clique aqui." #: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37 msgid "Don't see an email? <0>Click here to resend." -msgstr "" +msgstr "Não viu o email? <0>Clique aqui para reenviar." + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "Não mostrar novamente" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "Não se preocupe! Todas as mensagens e configurações existentes estão salvas e estarão disponíveis depois que você verificar que é um adulto." #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 @@ -2660,7 +2793,7 @@ msgstr "Toque duas vezes ou pressione longamente a mensagem para adicionar uma r msgid "Double tap to close the dialog" msgstr "Toque duas vezes para fechar diálogo" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Toque duas vezes para curtir" @@ -2673,7 +2806,7 @@ msgstr "Baixar o Bluesky" msgid "Download CAR file" msgstr "Baixar arquivo CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Solte para adicionar imagens" @@ -2689,18 +2822,10 @@ msgstr "p. e.x. Bruna" msgid "e.g. Alice Lastname" msgstr "p. e.x. Bruna [sobrenome]" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "p. e.x. Bruna Silva" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "ex. alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "p. e.x. Sou uma artista, amante de cachorros, e uma leitora ávida." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Ex. nudez artística." @@ -2725,10 +2850,11 @@ msgstr "p. e.x. Perfis que são irritantes" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Os convites só funcionam uma vez. Você receberá mais convites com o tempo." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Editar" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Editar" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Editar foto de perfil" @@ -2749,12 +2875,12 @@ msgstr "Editar feeds" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Editar imagem" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Editar opções de interação" @@ -2770,39 +2896,39 @@ msgstr "Editar detalhes da lista" #: src/view/com/profile/ProfileMenu.tsx:317 #: src/view/com/profile/ProfileMenu.tsx:323 msgid "Edit live status" -msgstr "" +msgstr "Editar status ao vivo" #: src/view/com/modals/CreateOrEditList.tsx:228 msgid "Edit Moderation List" msgstr "Editar lista de moderação" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Editar meus feeds" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Editar meu perfil" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "Editar notificações de {0}" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Editar Pessoas" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Editar opções de interação de postagens" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Editar perfil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Editar perfil" @@ -2814,19 +2940,11 @@ msgstr "Editar pacote inicial" msgid "Edit User List" msgstr "Editar lista de usuários" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Editar quem pode responder" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Editar nome de exibição" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Editar sua descrição" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Editar pacote inicial" @@ -2839,8 +2957,8 @@ msgstr "Educação" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "Você bloqueou o criador desta lista ou o criador desta lista bloqueou você." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "E-mail" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "2FA por e-mail desativada" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "Ativado 2FA por e-mail" @@ -2865,10 +2983,6 @@ msgstr "E-mail reenviado" msgid "Email sent!" msgstr "Email enviado!" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "E-mail Atualizado!" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "Verificação de email concluída!" @@ -2883,8 +2997,8 @@ msgstr "Código HTML para incorporação" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Incorporar postagem" @@ -2892,7 +3006,7 @@ msgstr "Incorporar postagem" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incorpore esta postagem no seu site. É só copiar o trecho seguinte e colar no código HTML do seu site." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Reprodutor interno de vídeo" @@ -2906,7 +3020,7 @@ msgstr "Ativar" msgid "Enable {0} only" msgstr "Ativar somente {0}" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Habilitar conteúdo adulto" @@ -2919,16 +3033,20 @@ msgstr "Habilitar 2FA por email" msgid "Enable external media" msgstr "Ativar mídia externa" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Ativar reprodutores de mídia para" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Ativar notificações prioritárias" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "Ative as notificações de uma conta ao visitar seu perfil e pressionar no <0>ícone de sino <1/>." -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "Ativar notificações no dispositivo" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Ativar legendas" @@ -2941,17 +3059,14 @@ msgstr "Ativar apenar para esta fonte" msgid "Enable trending topics" msgstr "Ativar assuntos em alta" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Ativar vídeos em alta no feed Descobrir" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Ativar vídeos em alta no feed Descobrir." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Ativado" @@ -2963,7 +3078,7 @@ msgstr "Fim do feed" msgid "Ensure you have selected a language for each subtitle file." msgstr "Certifique-se de ter selecionado um idioma para cada arquivo de legenda." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Insira uma senha" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Digite uma palavra ou tag" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "Inserir código" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Insira o código" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Entrar em tela cheia" @@ -2995,7 +3106,7 @@ msgstr "Insira o domínio que deseja usar" #: src/screens/Login/ForgotPasswordForm.tsx:113 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." -msgstr "Insira o e-mail usado para criar sua conta. Já enviamos um \"código de redefinição\" para poder definir uma nova senha." +msgstr "Insira o email usado para criar sua conta. Nós enviaremos um \"código de redefinição\" para poder definir uma nova senha." #: src/screens/Login/LoginForm.tsx:218 msgid "Enter the username or email address you used when you created your account" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Insira seu aniversário" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Insira seu endereço de e-mail" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Insira seu novo endereço de e-mail abaixo." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Insira sua senha" @@ -3022,7 +3129,7 @@ msgstr "Insira sua senha" msgid "Enter your username and password" msgstr "Insira seu nome de usuário e senha" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Entra em tela cheia" @@ -3030,16 +3137,28 @@ msgstr "Entra em tela cheia" msgid "Entertainment" msgstr "Entretenimento" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Erro" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "Erro ao carregar postagem" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "Erro ao carregar preferências" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "Mensagem de erro" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Não foi possível salvar o arquivo" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Não foi possível processar o captcha." @@ -3047,27 +3166,34 @@ msgstr "Não foi possível processar o captcha." msgid "Error:" msgstr "Erro:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "Erro: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Todos" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Todos podem responder" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Todos podem responder esta postagem." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Todos" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "Demais itens" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Excluir usuário que você segue" msgid "Excludes users you follow" msgstr "Exclui usuários que você segue" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Sair da tela cheia" @@ -3106,24 +3232,28 @@ msgstr "Sair do visualizador de imagem" msgid "Expand alt text" msgstr "Expandir texto alternativo" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Expandir lista de usuário" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Expandir ou esconder a postagem que você está respondendo" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "Expandir texto da postagem" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Expande ou esconde o texto da postagem" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "Era esperado que o URI fosse resolvido para um registro" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Experimental" @@ -3153,15 +3283,15 @@ msgstr "Mídia explícita ou pertubadora" msgid "Explicit sexual images." msgstr "Imagens sexualmente explícitas." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "Explorar" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Exportar meus dados" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Mídia externa" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 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:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Preferências de Mídia Externa" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "Falha ao aceitar conversa" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "Falha ao adicionar reação de emoji" @@ -3211,8 +3341,8 @@ msgstr "Não foi possível criar a senha de aplicativo. Por favor tente novament msgid "Failed to create conversation" msgstr "Falha ao criar conversa" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Falha ao criar o pacote inicial" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "Falha ao excluir conversa" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Não foi possível excluir esta mensagem" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Não foi possível excluir a postagem, por favor tente novamente." @@ -3238,8 +3368,8 @@ msgstr "Não foi possível excluir a postagem, por favor tente novamente." msgid "Failed to delete starter pack" msgstr "Falha ao excluir o pacote inicial" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "Falha ao carregar conversas" @@ -3250,14 +3380,32 @@ msgstr "Falha ao carregar conversas" msgid "Failed to load feeds preferences" msgstr "Falha ao carregar preferências de feeds" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Não foi possível carregar os GIFs" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "Falha ao carregar configurações de notificação." + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Não foi possível carregar mensagens antigas." +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "Falha ao carregar preferências." + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Falha ao carregar feeds sugeridos" msgid "Failed to load suggested follows" msgstr "Falha ao carregar sugestões a seguir" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "Falha ao marcar todos os pedidos como lidos" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Falha ao fixar postagem" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "Falha ao remover reação de emoji" @@ -3291,15 +3439,11 @@ msgstr "Falha ao remover a verificação" msgid "Failed to save image: {0}" msgstr "Não foi possível salvar a imagem: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Falha ao salvar as preferências de notificação, tente novamente" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "Falha ao salvar as opções. Tente novamente." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "Falha ao salvar seus interesses." @@ -3318,24 +3462,28 @@ msgstr "Falha ao enviar email, por favor tente novamente." msgid "Failed to submit appeal, please try again." msgstr "Falha ao enviar o recurso, tente novamente." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Falha ao alterar o silenciamento do tópico, tente novamente" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83 msgid "Failed to update email 2FA settings" -msgstr "" +msgstr "Falha ao atualizar configurações de 2FA por email" #: src/components/dialogs/EmailDialog/screens/Update.tsx:195 msgid "Failed to update email, please try again." -msgstr "" +msgstr "Falha ao atualizar o email, por favor tente novamente." #: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "Falha ao atualizar os feeds" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "Falha ao atualizar a declaração de notificação" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Falha ao atualizar as configurações" @@ -3348,21 +3496,29 @@ msgstr "Falha ao carregar o vídeo" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:168 msgid "Failed to verify email, please try again." -msgstr "" +msgstr "Falha ao verificar o email, por favor tente novamente." #: src/screens/Settings/components/ChangeHandleDialog.tsx:360 msgid "Failed to verify handle. Please try again." msgstr "Não foi possível verificar o nome de usuário. Por favor tente novamente." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Feed" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Feed por {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "Criador do feed" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "Identificador do feed" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Menu do feed" @@ -3371,35 +3527,39 @@ msgstr "Menu do feed" msgid "Feed toggle" msgstr "Alternar feed" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "Feed indisponível" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Comentários" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Comentário enviado!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Feeds" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." -msgstr "Feeds são algoritmos personalizados que usuários constroem se possuírem um conhecimento em programação. <0/>mais informações." +msgstr "Feeds são algoritmos personalizados que usuários constroem se possuírem um conhecimento em programação. <0/> para mais informações." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Feeds atualizados!" @@ -3428,6 +3588,14 @@ msgstr "Filtrar pesquisa por idioma" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtrar pesquisa por idioma (atual: {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "Filtre quem pode optar por receber notificações da sua atividade" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "Filtre de quem você receberá notificações" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Finalizando" @@ -3448,7 +3616,7 @@ msgstr "Encontre pessoas para seguir" msgid "Find posts, users, and feeds on Bluesky" msgstr "Encontre postagens, usuários e feeds no Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Finalizar" @@ -3456,17 +3624,17 @@ msgstr "Finalizar" msgid "Fitness" msgstr "Atividades físicas" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Preto Sólido" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Azul Sólido" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Branco Sólido" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Flexível" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Seguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Seguir {0}" @@ -3518,7 +3686,7 @@ msgstr "Seguir conta" msgid "Follow all" msgstr "Seguir todos" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Seguir de volta" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Seguir de volta" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Seguido por <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Seguido por <0>{0} e {1, plural, one {# outro} other {outros #}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Seguido por <0>{0} e <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Seguido por <0>{0}, <1>{1}, e {2, plural, one {# outro} other {outros #}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Seguidores de @{0} que você conhece" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Seguidores que você conhece" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Seguindo" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Seguindo" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Seguindo {0}" @@ -3579,8 +3751,8 @@ msgstr "Seguindo {handle}" msgid "Following feed preferences" msgstr "Preferências do feed principal" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Preferências do feed principal" @@ -3592,11 +3764,11 @@ msgstr "Segue você" msgid "Follows You" msgstr "Segue Você" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Fonte" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Tamanho da fonte" @@ -3613,7 +3785,7 @@ msgstr "Por motivos de segurança, precisamos enviar um código de confirmação msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Por motivos de segurança, você não poderá ver esta tela novamente. Se você perder esta senha de aplicativo, precisará criar uma nova." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Para a melhor experiência, nós recomendamos usar a fonte padrão." @@ -3643,11 +3815,15 @@ msgstr "Esqueceu?" msgid "Frequently Posts Unwanted Content" msgstr "Frequentemente Posta Conteúdo Indesejado" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "De" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "De @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "Por <0/>" @@ -3660,14 +3836,68 @@ msgstr "Galeria" msgid "Generate a starter pack" msgstr "Gere um pacote inicial" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Obter ajuda" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "Seja notificado quando pessoas começam a te seguir." + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "Seja notificado quando pessoas curtem suas repostagens." + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "Seja notificado quando pessoas curtem suas postagens." + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "Seja notificado quando pessoas te mencionarem." + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "Seja notificado quando pessoas citarem suas postagens." + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "Seja notificado quando pessoas responderem suas postagens." + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "Seja notificado quando pessoas repostam suas repostagens." + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "Seja notificado quando pessoas repostam suas postagens." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "Seja notificado sobre novas postagens" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Seja notificado sobre postagens e respostas das contas que você escolher." + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "Seja notificado de novas postagens de {name}" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "Seja notificado da atividade desta conta" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "Seja notificado quando {name} postar" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "Seja notificado quando alguém postar" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "Vamos começar" @@ -3688,14 +3918,16 @@ msgstr "Dê uma cara nova pro seu perfil" msgid "Glaring violations of law or terms of service" msgstr "Violações flagrantes da lei ou dos termos de serviço" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3744,12 +3976,18 @@ msgstr "Entrar Ao Vivo" #: src/components/live/GoLiveDialog.tsx:174 msgid "Go live for" -msgstr "" +msgstr "Entrar ao vivo por" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "Ir para perfil de {firstAuthorName}" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "Ir para as configurações da conta" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Ir para a conversa com {0}" @@ -3779,8 +4017,8 @@ msgstr "Conteúdo Gráfico" msgid "Half way there!" msgstr "Metade do caminho!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Nome de usuário" @@ -3797,7 +4035,7 @@ msgstr "Nome de usuário alterado!" msgid "Handle too long. Please try a shorter one." msgstr "Nome de usuário muito longo. Por favor tente um nome de usuário mais curto." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Feedback tátil" @@ -3806,7 +4044,7 @@ msgstr "Feedback tátil" msgid "Harassment, trolling, or intolerance" msgstr "Assédio, intolerância ou \"trollagem\"" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Hashtag" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Hashtag {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." -msgstr "" +msgstr "Tem um código? <0>Clique aqui." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Precisa de ajuda?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Ajuda" @@ -3839,8 +4077,13 @@ msgstr "As pessoas não vão achar que você é um bot se você criar um avatar msgid "Here is your app password!" msgstr "Aqui está a sua senha de aplicativo!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "Olá 👋" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Oculto" @@ -3848,16 +4091,16 @@ msgstr "Oculto" msgid "Hidden by your moderation settings." msgstr "Oculto por suas opções de moderação." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Lista oculta" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Lista oculta" msgid "Hide" msgstr "Ocultar" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Ocultar" @@ -3875,18 +4118,18 @@ msgstr "Ocultar" msgid "Hide customization options" msgstr "Ocultar opções de personalização" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Ocultar postagem para mim" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Ocultar resposta para todos" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Ocultar resposta para mim" @@ -3894,12 +4137,12 @@ msgstr "Ocultar resposta para mim" msgid "Hide this card" msgstr "Ocultar este cartão" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Ocultar esta postagem?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Ocultar esta resposta?" @@ -3913,11 +4156,11 @@ msgstr "Ocultar assuntos em alta" msgid "Hide trending topics?" msgstr "Ocultar assuntos em alta?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Ocultar vídeos em alta?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Ocultar lista de usuários" @@ -3926,32 +4169,32 @@ msgstr "Ocultar lista de usuários" msgid "Hide verification badges" msgstr "Ocultar insígnias de verificação" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Oculta o conteúdo" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm, ocorreu algum problema ao entrar em contato com o servidor deste feed. Por favor, avise o criador do feed sobre este problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm, o servidor do feed parece estar mal configurado. Por favor, avise o criador do feed sobre este problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm, o servidor do feed parece estar offline. Por favor, avise o criador do feed sobre este problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm, o servidor do feed teve algum problema. Por favor, avise o criador do feed sobre este problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, estamos com problemas para encontrar este feed. Ele pode ter sido excluído." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmmmm, parece que estamos com problemas pra carregar os dados. Veja mais detalhes abaixo. Se o problema continuar, por favor, entre em contato." @@ -3959,15 +4202,15 @@ msgstr "Hmmmm, parece que estamos com problemas pra carregar os dados. Veja mais msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, não foi possível carregar este serviço de moderação." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Espere! Estamos gradualmente dando acesso ao vídeo, e você ainda está esperando na fila. Volte em breve!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Página Inicial" @@ -3984,10 +4227,10 @@ msgstr "Provedor de hospedagem" msgid "Hot" msgstr "Em alta" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Respostas em alta primeiro" @@ -3996,10 +4239,6 @@ msgstr "Respostas em alta primeiro" msgid "How should we open this link?" msgstr "Como devemos abrir este link?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Entendi" msgid "If alt text is long, toggles alt text expanded state" msgstr "Se o texto alternativo é longo, expande a área do texto alternativo" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Se você ainda não é um adulto de acordo com as leis do seu país, seu responsável ou guardião legal deve ler estes Termos por você." @@ -4031,22 +4270,26 @@ msgstr "Se você deletar esta lista, você não poderá recuperá-la." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Se você tem um domínio próprio, você pode usá-lo como seu nome de usuário. Isso permite que você auto-verifique a sua identidade. <0>Saiba mais aqui." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." -msgstr "" +msgstr "Se precisar atualizar seu email, <0>clique aqui." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Se você remover esta postagem, você não poderá recuperá-la." #: src/components/dialogs/EmailDialog/screens/Update.tsx:208 msgid "If you update your email address, email 2FA will be disabled." -msgstr "" +msgstr "Se você atualizar seu endereço de email, o 2FA via email será desativado." #: src/view/com/modals/ChangePassword.tsx:160 msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Se você quiser alterar sua senha, enviaremos um código para verificar sua identidade." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "Se você deseja restringir quem pode receber notificações da atividade da sua conta, você pode alterar isto em <0>Configurações → Privacidade e Segurança." + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "Se você for um desenvolvedor, você pode hospedar seu próprio servidor." @@ -4079,7 +4322,7 @@ msgstr "Imagem salva" #: src/lib/media/save-image.ts:45 msgid "Images cannot be saved unless permission is granted to access your photo library." -msgstr "" +msgstr "Imagens não podem ser salvas a menos que seja concedida permissão para acessar sua galeria de fotos." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49 #: src/lib/moderation/useReportOptions.ts:49 @@ -4091,13 +4334,41 @@ msgstr "Falsificação de identidade ou alegações falsas sobre identidade ou f msgid "Impersonation, misinformation, or false claims" msgstr "Falsificação de identidade, desinformação ou alegações falsas" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "No app" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "Notificações no app" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "No app, Todos" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "No app, Pessoas que você segue" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "No app, No dispositivo" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "No app, No dispositivo, Todos" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "No app, No dispositivo, Pessoas que você segue" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Mensagens inapropriadas ou links explícitos" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "Caixa de entrada vazia!" @@ -4105,7 +4376,7 @@ msgstr "Caixa de entrada vazia!" msgid "Incorrect username or password" msgstr "Credenciais incorretas" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Insira o código enviado para o seu e-mail para redefinir sua senha" @@ -4113,7 +4384,7 @@ msgstr "Insira o código enviado para o seu e-mail para redefinir sua senha" msgid "Input confirmation code for account deletion" msgstr "Insira o código de confirmação para excluir sua conta" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Insira a nova senha" @@ -4129,10 +4400,14 @@ msgstr "Insira o código que você recebeu por e-mail" msgid "Interaction limited" msgstr "Interação limitada" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Ajustes de interação" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "Apresentando as notificações de atividade" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Código de confirmação da autenticação de dois fatores inválido." msgid "Invalid handle. Please try a different one." msgstr "Nome de usuário inválido. Por favor tente um diferente." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Postagem inválida" @@ -4158,7 +4433,7 @@ msgstr "Código de Verificação Inválido" msgid "Invite a Friend" msgstr "Convide um Amigo" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Convite" @@ -4186,15 +4461,15 @@ msgstr "Convide seus amigos para seguir seus feeds e pessoas favoritas" msgid "Invites, but personal" msgstr "Convites, mas pessoais" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Está correto" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "É só você por enquanto! Adicione mais pessoas ao seu pacote inicial pesquisando acima." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "ID da requisição: {0}" @@ -4213,18 +4488,34 @@ msgstr "Crie uma conta no Bluesky" #: src/components/StarterPack/QrCode.tsx:68 #: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" -msgstr "Participe da conversa" +msgstr "Participar da conversa" #: src/screens/Onboarding/index.tsx:21 #: src/screens/Onboarding/state.ts:104 msgid "Journalism" msgstr "Jornalismo" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "Mantenha-me informado" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "Política de privacidade do KWS" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "Termos de uso do KWS" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "Página web do KWS" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Rotulado por {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Rotulado pelo autor." @@ -4237,7 +4528,7 @@ msgstr "Rótulos" msgid "Labels added" msgstr "Rótulos adicionados" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Rótulos são identificações aplicadas sobre perfis e conteúdos. Eles são utilizados para esconder, avisar e categorizar o conteúdo da rede." @@ -4253,22 +4544,30 @@ msgstr "Rótulos sobre seu conteúdo" msgid "Language selection" msgstr "Seleção de idioma" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Configurações de Idiomas" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Idiomas" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Maior" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "Iniciado pela última vez {timeAgo} atrás" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "Iniciado pela última vez agora mesmo" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Mais recentes" @@ -4282,7 +4581,6 @@ msgstr "saiba mais" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "Saiba mais" @@ -4290,6 +4588,10 @@ msgstr "Saiba mais" msgid "Learn More" msgstr "Saiba Mais" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "Saiba mais sobre a verificação de idade" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Saiba mais sobre o Bluesky" @@ -4298,15 +4600,23 @@ msgstr "Saiba mais sobre o Bluesky" msgid "Learn more about self hosting your PDS." msgstr "Saiba mais sobre a auto-hospedagem do seu Servidor de Dados Pessoais." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "Saber mais sobre o aviso colocado no conteúdo" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Saiba mais sobre a decisão de moderação aplicada neste conteúdo." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "Saiba mais sobre essas mudanças e como compartilhar seus pensamentos conosco <0>lendo nosso post do blog." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Saiba mais sobre essas mudanças e como compartilhar suas ideias conosco lendo nossa postagem no blog." + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Saiba mais sobre este aviso" @@ -4316,12 +4626,16 @@ msgstr "Saiba mais sobre este aviso" msgid "Learn more about verification on Bluesky" msgstr "Saiba mais sobre verificação no Bluesky" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Saiba mais sobre o que é público no Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "Saiba mais nas suas <0>configurações da conta." + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Saiba mais." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Sair desta conversa" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." +msgid "Leave them all unselected to see any language." msgstr "Deixe todos desmarcados para ver qualquer idioma." -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Saindo do Bluesky" @@ -4370,7 +4685,7 @@ msgstr "Vamos lá!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Claro" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Curtir" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Curtidas ({0, plural, one {# curtida} other {# curtidas}})" @@ -4397,6 +4712,10 @@ msgstr "Curtir 10 postagens" msgid "Like 10 posts to train the Discover feed" msgstr "Curta 10 postagens para treinar o feed de Descobertas" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "Notificações de curtidas" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Curtir este feed" @@ -4405,8 +4724,8 @@ msgstr "Curtir este feed" msgid "Like this labeler" msgstr "Curtir este rotulador" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Curtido por" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Curtido Por" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Curtido por {0, plural, one {# usuário} other {# usuários}}" @@ -4428,20 +4747,36 @@ msgstr "Curtido por {0, plural, one {# usuário} other {# usuários}}" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Curtido por {likeCount, plural, one {# usuário} other {# usuários}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Curtidas" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "Curtidas das suas repostagens" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "Notificações de curtidas das suas repostagens" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Curtidas nesta postagem" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Linear" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Lista" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Lista bloqueada" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Lista por {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "Lista por <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Lista feita por você" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "Criador da lista" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Lista dessilenciada" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Listas" @@ -4526,7 +4865,7 @@ msgstr "O recurso ao vivo está em teste beta" #: src/components/live/GoLiveDialog.tsx:124 #: src/components/live/GoLiveDialog.tsx:128 msgid "Live link" -msgstr "" +msgstr "Link ao vivo" #: src/screens/Search/Explore.tsx:86 msgid "Load more" @@ -4537,7 +4876,7 @@ msgstr "Carregar mais" msgid "Load more suggested feeds" msgstr "Carregar mais sugestões de feeds" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Carregar novas notificações" @@ -4552,11 +4891,11 @@ msgstr "Carregar novas postagens" msgid "Loading..." msgstr "Carregando..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Registros" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Visibilidade do seu perfil" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo por @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo por <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Logo por <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Toque e segure para abrir o menu da tag #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Tem este formato: XXXXX-XXXXX" @@ -4591,13 +4930,13 @@ msgstr "Parece que está faltando um feed para seguir. <0>Clique aqui para adici #: src/components/dialogs/EmailDialog/index.tsx:41 msgid "Make adjustments to email settings for your account" -msgstr "" +msgstr "Faça ajustes nas configurações de email para sua conta" #: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Make one for me" msgstr "Faça um para mim" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Certifique-se de onde está indo!" @@ -4606,7 +4945,7 @@ msgstr "Certifique-se de onde está indo!" msgid "Manage saved feeds" msgstr "Gerenciar feeds salvos" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "Gerenciar configurações de verificação" @@ -4614,9 +4953,9 @@ msgstr "Gerenciar configurações de verificação" msgid "Manage your muted words and tags" msgstr "Gerencie suas palavras/tags silenciadas" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "Marcar todas como lidas" @@ -4625,15 +4964,13 @@ msgstr "Marcar todas como lidas" msgid "Mark as read" msgstr "Marcar como lida" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "Todas foram marcadas como lidas" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "Talvez mais tarde" @@ -4645,19 +4982,26 @@ msgstr "Mídia" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Mídia que pode ser perturbadora ou inapropriada para algumas pessoas." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "Notificações de menção" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "usuários mencionados" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Usuários mencionados" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Menções" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Menu" @@ -4665,7 +5009,7 @@ msgstr "Menu" msgid "Message {0}" msgstr "Mensagem {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Mensagem excluída" @@ -4674,11 +5018,11 @@ msgstr "Mensagem excluída" msgid "Message deleted" msgstr "Mensagem excluída" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "Mensagem de @{0}: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Mensagem do servidor: {0}" @@ -4691,19 +5035,23 @@ msgstr "Caixa de texto da mensagem" msgid "Message is too long" msgstr "Mensagem longa demais" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "Opções de mensagem" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Mensagens" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Meia-noite" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "Notificações diversas" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Conta Enganosa" msgid "Misleading Post" msgstr "Postagem Enganosa" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderação" @@ -4725,17 +5073,17 @@ msgstr "Moderação" msgid "Moderation details" msgstr "Detalhes da moderação" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Lista de moderação por {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Lista de moderação por <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Lista de moderação por você" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Lista de moderação atualizada" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Listas de moderação" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Listas de Moderação" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "configurações de Moderação" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Moderação" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Ferramentas de moderação" @@ -4775,7 +5123,7 @@ msgstr "Ferramentas de moderação" msgid "Moderator has chosen to set a general warning on the content." msgstr "O moderador escolheu aplicar um aviso geral neste conteúdo." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Mais" @@ -4790,13 +5138,13 @@ msgstr "Mais feeds" msgid "More options" msgstr "Mais opções" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Mais curtidos primeiro" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Respostas mais curtidas primeiro" @@ -4808,8 +5156,8 @@ msgstr "Filmes" msgid "Music" msgstr "Música" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Silenciar" @@ -4819,8 +5167,8 @@ msgstr "Silenciar" msgid "Mute {tag}" msgstr "Silenciar {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Silenciar esta palavra apenas nas tags de uma postagem" msgid "Mute this word until you unmute it" msgstr "Silenciar esta palavra até que você a reative" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Silenciar tópico" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Silenciar palavras/tags" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Contas silenciadas" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Contas Silenciadas" @@ -4898,7 +5246,7 @@ msgstr "Contas silenciadas não aparecem no seu feed ou nas suas notificações. msgid "Muted by \"{0}\"" msgstr "Silenciado por \"{0}\"" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Palavras/tags silenciadas" @@ -4911,7 +5259,7 @@ msgstr "Silenciar é privado. Contas silenciadas podem interagir com você, mas msgid "My Birthday" msgstr "Meu Aniversário" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Meus Feeds" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Natureza" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Navegar para {0}" @@ -4958,11 +5306,11 @@ msgstr "Navega para próxima tela" msgid "Navigates to your profile" msgstr "Navega para seu perfil" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Precisa mudar?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "Precisa relatar uma violação de direitos autorais, uma solicitação legal ou um problema de conformidade regulatória?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Precisa denunciar uma violação de direitos autorais?" @@ -4985,20 +5333,38 @@ msgctxt "action" msgid "New" msgstr "Novo" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "{postsCount, plural, one {Nova postagem} other {Novas postagens}} de {firstAuthorLink}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "{postsCount, plural, one {Nova postagem} other {Novas postagens}} de {firstAuthorName}" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Nova conversa" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "Novo endereço de e-mail" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" -msgstr "Nova Funcionalidade" +msgstr "Novo Recurso" + +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "Notificações de novo seguidor" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "Novos seguidores" #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 @@ -5019,6 +5385,7 @@ msgstr "Novas mensagens" msgid "New Moderation List" msgstr "Nova lista de moderação" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Nova senha" @@ -5029,7 +5396,7 @@ msgstr "Nova Senha" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Postar" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Postar" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Novas postagens de {firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Novas postagens de {firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}}" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Janela de informações do usuário novo" @@ -5054,10 +5429,14 @@ msgstr "Janela de informações do usuário novo" msgid "New User List" msgstr "Nova lista de usuários" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Respostas mais recentes primeiro" @@ -5071,15 +5450,15 @@ msgstr "Notícias" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5100,9 +5479,9 @@ msgstr "Não tenho painel de DNS" #: src/components/live/EditLiveDialog.tsx:140 msgid "No expiry set" -msgstr "" +msgstr "Sem expiração definida" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Nenhum GIF em destaque encontrado. Pode ser um problema com o Tenor." @@ -5119,32 +5498,35 @@ msgstr "Sem imagem" msgid "No likes yet" msgstr "Sem curtidas ainda" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Você não está mais seguindo {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "Não pode ter mais que {MAX_SERVICE_HANDLE_LENGTH, plural, other {# caracteres}}" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Nenhuma mensagem ainda" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Nenhuma notificação!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Ninguém" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Ninguém além do autor pode citar esta postagem." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "Não há postagens aqui" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Nenhuma postagem ainda." @@ -5171,7 +5553,7 @@ msgstr "Nenhum resultados" msgid "No results for \"{0}\"." msgstr "Sem resultados para \"{0}\"." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Nenhum resultado encontrado" @@ -5179,9 +5561,9 @@ msgstr "Nenhum resultado encontrado" msgid "No results found for \"{query}\"" msgstr "Nenhum resultado encontrado para \"{query}\"" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Nenhum resultado encontrado para {query}" @@ -5189,7 +5571,7 @@ msgstr "Nenhum resultado encontrado para {query}" msgid "No results." msgstr "Sem resultados." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Nenhum resultado encontrado para \"{search}\"." @@ -5198,7 +5580,7 @@ msgstr "Nenhum resultado encontrado para \"{search}\"." msgid "No thanks" msgstr "Não, obrigado" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Ninguém" @@ -5223,59 +5605,76 @@ msgstr "Ninguém foi encontrado. Tente procurar por outra pessoa." msgid "Non-sexual Nudity" msgstr "Nudez não-erótica" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "Nenhuma" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "Não seguido por ninguém que você segue" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Não encontrado" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Nota sobre compartilhamento" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: o Bluesky é uma rede aberta e pública. Esta configuração limita somente a visibilidade do seu conteúdo no site e aplicativo do Bluesky, e outros aplicativos podem não respeitar esta configuração. Seu conteúdo ainda poderá ser exibido para usuários não autenticados por outros aplicativos e sites." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "Nota: Esta postagem só é visível para usuários conectados." + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Não há nada aqui" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Filtros de notificação" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Configurações de notificação" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Configurações de notificação" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Sons de notificação" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Sons de Notificação" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Notificações" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "Notificações para outras coisas, como quando alguém se junta através de um dos seus pacotes iniciais." + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "agora" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Nudez ou conteúdo adulto sem rótulo aplicado" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Desligado" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Opa!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "OK" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Ok" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Respostas mais antigas primeiro" @@ -5331,19 +5736,19 @@ msgstr "Respostas mais antigas primeiro" msgid "on<0><1/><2><3/>" msgstr "no<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Resetar tutoriais" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "Um ou mais GIFs estão sem texto alternativo." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Uma ou mais imagens estão sem texto alternativo." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Um ou mais vídeos estão sem texto alternativo." @@ -5351,13 +5756,15 @@ msgstr "Um ou mais vídeos estão sem texto alternativo." msgid "Only .jpg and .png files are supported" msgstr "Apenas imagens .jpg ou .png são permitidas" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Apenas {0} pode responder." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Contém apenas letras, números e hífens" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "Apenas seguidores que eu sigo" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Apenas arquivos de imagem são suportados" msgid "Only WebVTT (.vtt) files are supported" msgstr "Somente arquivos WebVTT (.vtt) são suportados" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Opa, algo deu errado!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Opa!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Abrir menu" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Abrir seletor de emoji" @@ -5416,7 +5822,7 @@ msgstr "Abrir opções do feed" msgid "Open full emoji list" msgstr "Abrir lista completa de emojis" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Abrir link para {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Abrir link para {niceUrl}" msgid "Open message options" msgstr "Abrir opções de mensagem" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Abrir página de debug da moderação" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Abrir opções de palavras/tags silenciadas" @@ -5453,16 +5859,16 @@ msgstr "Abrir menu de compartilhamento" msgid "Open starter pack menu" msgstr "Abrir o menu do pacote inicial" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Abrir página do storybook" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Abrir registros do sistema" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Abre {numItems} opções" @@ -5490,11 +5896,11 @@ msgstr "Abre a câmera do dispositivo" msgid "Opens captions and alt text dialog" msgstr "Abrir janela de legendas e texto alternativo" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Abre a janela de alteração de usuário" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Abre o editor de postagem" @@ -5502,7 +5908,7 @@ msgstr "Abre o editor de postagem" msgid "Opens device photo gallery" msgstr "Abre a galeria de fotos do dispositivo" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Abre o seletor de emoji" @@ -5520,28 +5926,28 @@ msgstr "Abre a tela para entrar com uma conta Bluesky existente" msgid "Opens GIF select dialog" msgstr "Abre a janela de seleção de GIFs" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Abre a central de ajuda no navegador" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "Abrir link {0}" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Abre a lista de códigos de convite" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" -msgstr "" +msgstr "Abrir janela de status ao vivo" #: src/screens/Login/LoginForm.tsx:249 msgid "Opens password reset form" msgstr "Abre o formulário de redefinição de senha" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Abre o link" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Abre este perfil" @@ -5558,7 +5964,7 @@ msgstr "Se quiser adicionar mais informações, digite abaixo:" msgid "Options:" msgstr "Opções:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Ou combine estas opções:" @@ -5600,6 +6006,10 @@ msgstr "Outra conta" msgid "Other..." msgstr "Outro..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "Nossa postagem no blog" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "Nossa equipe de moderação recebeu sua denúncia." @@ -5608,7 +6018,7 @@ msgstr "Nossa equipe de moderação recebeu sua denúncia." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Nossos moderadores analisaram os relatórios e decidiram desabilitar seu acesso às conversas no Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Página não encontrada" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Página Não Encontrada" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,33 +6052,38 @@ msgstr "Senha atualizada" msgid "Password updated!" msgstr "Senha atualizada!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Pausar" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Pausar vídeo" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Pessoas" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Pessoas seguidas por @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Pessoas seguindo @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "Pessoas que eu sigo" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." -msgstr "" +msgstr "A permissão para acessar sua galeria de fotos foi negada. Por favor, habilite-a nas configurações do dispositivo." #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" @@ -5704,12 +6119,12 @@ msgstr "Fixar na tela inicial" msgid "Pin to Home" msgstr "Fixar na Tela Inicial" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Fixar no seu perfil" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Fixado" @@ -5718,7 +6133,7 @@ msgstr "Fixado" msgid "Pinned {0} to Home" msgstr "{0} fixado na Tela Inicial" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Feeds Fixados" @@ -5726,38 +6141,38 @@ msgstr "Feeds Fixados" msgid "Pinned to your feeds" msgstr "Fixado em seus feeds" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Tocar" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Reproduzir {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Reproduzir vídeo" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Reproduzir Vídeo" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Reproduz ou para o GIF" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Reproduz ou para o vídeo" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Reproduz o GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Reproduz o vídeo" @@ -5765,24 +6180,29 @@ msgstr "Reproduz o vídeo" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "Por favor, adicione os rótulos de aviso de conteúdo que sejam aplicáveis para a mídia que você está postando." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "Verifique sua caixa de entrada para mais instruções. Pode demorar um ou dois minutos para chegar." + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Por favor, escolha seu nome de usuário." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Por favor, escolha sua senha." #: src/components/dialogs/EmailDialog/screens/Update.tsx:290 msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." -msgstr "" +msgstr "Por favor, clique no link do email que acabamos de enviar para verificar seu novo endereço de email. Este é um passo importante para permitir que você continue desfrutando de todos os recursos do Bluesky." #: src/screens/Signup/state.ts:301 msgid "Please complete the verification captcha." msgstr "Por favor, complete o captcha de verificação." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Por favor, verifique se você digitou seu endereço de e-mail corretamente." @@ -5804,6 +6224,7 @@ msgstr "Por favor insira um nome único para esta senha de aplicativo ou use nos msgid "Please enter a valid code." msgstr "Por favor, insira um código válido." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "Por favor, insira um endereço de email válido." @@ -5812,26 +6233,30 @@ msgstr "Por favor, insira um endereço de email válido." msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Por favor, insira uma palavra, tag ou frase para silenciar" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "Por favor insira um endereço de email válido e não temporário. Você pode precisar acessar este email no futuro." + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." -msgstr "" +msgstr "Digite abaixo o código que enviamos para <0>{0}." #: src/components/dialogs/EmailDialog/screens/Update.tsx:247 msgid "Please enter the security code we sent to your previous email address." -msgstr "" +msgstr "Digite o código de segurança que enviamos para o seu endereço de email anterior." #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Por favor, digite o seu e-mail." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Por favor, insira seu código de convite." #: src/components/dialogs/EmailDialog/screens/Update.tsx:217 msgid "Please enter your new email address." -msgstr "" +msgstr "Por favor, insira seu novo endereço de email." #: src/screens/Login/LoginForm.tsx:99 msgid "Please enter your password" @@ -5853,6 +6278,19 @@ msgstr "Por favor, explique por que você acredita que este rótulo foi aplicado msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Por favor, explique por que você acha que suas conversas foram desativadas incorretamente" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "Por favor, volte ou ative este elemento para retornar ao início do conteúdo ativo." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "Forneça quaisquer dados adicionais que você acredita que os moderadores podem precisar para avaliar corretamente o seu status de verificação de idade." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "Por favor, selecione um idioma" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "Por favor, escolha um serviço de moderação" @@ -5868,11 +6306,11 @@ msgstr "Por favor entre como @{0}" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62 msgid "Please verify your email" -msgstr "" +msgstr "Por favor, verifique seu email" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Por favor, verifique seu e-mail" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "Escreva sua mensagem abaixo:" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Política" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Postar" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Postagem" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Postar" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Postar Tudo" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "Postagem bloqueada" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Postado por {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Postagem por @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Postagem excluída" @@ -5919,11 +6362,14 @@ msgstr "Postagem excluída" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Falha ao enviar a postagem. Por favor verifique sua conexão de internet e tente novamente." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "Postagem excluída" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Postagem oculta" @@ -5937,11 +6383,11 @@ msgstr "Postagem Escondida por Palavra Silenciada" msgid "Post Hidden by You" msgstr "Postagem Escondida por Você" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Configurações de interação de postagem" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Opções de interação em postagens" @@ -5954,8 +6400,10 @@ msgstr "Idioma da postagem" msgid "Post Languages" msgstr "Idiomas da Postagem" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Postagem não encontrada" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Postagem desafixada" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Postagens" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "As postagens podem ser silenciadas com base em seu texto, suas tags ou ambos. Recomendamos evitar palavras comuns que aparecem em muitas postagens, pois isso pode resultar em nenhuma postagem sendo exibida." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Postagens ocultadas" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Link Potencialmente Enganoso" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "Postagens, Respostas" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Preferências salvas" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "Link potencialmente enganoso" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "Aviso de link potencialmente enganoso" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Tentar reconexão" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Tentar novamente" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Toque para ver os seguidores desta conta que você também segue" @@ -6015,40 +6469,46 @@ msgstr "Imagem anterior" msgid "Primary Language" msgstr "Idioma Principal" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Priorizar quem você segue" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Notificações prioritárias" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Privacidade" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Privacidade e segurança" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacidade e Segurança" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "Configurações de Privacidade e Segurança" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Política de Privacidade" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Processando vídeo..." @@ -6062,15 +6522,14 @@ msgstr "Processando..." msgid "profile" msgstr "perfil" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Perfil" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Perfil atualizado" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Listas públicas e compartilháveis que podem ser usadas para gerar feeds." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "Publicar postagem" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "Publicar postagens" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "Publicar respostas" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "Publicar resposta" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "No dispositivo" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "Notificações no dispositivo" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "No dispositivo, Todos" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "No dispositivo, Pessoas que você segue" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "QR code copiado para sua área de transferência!" @@ -6119,44 +6594,52 @@ msgstr "QR code foi baixado!" msgid "QR code saved to your camera roll!" msgstr "QR code salvo no rolo da sua câmera!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "Notificações de citação" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Citar postagem" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "A postagem de citação foi anexada novamente" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "A postagem de citação foi desanexada com sucesso" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Citações desabilitadas" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Configurações de citações" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Citações" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Citações desta postagem" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Aleatório" @@ -6164,8 +6647,8 @@ msgstr "Aleatório" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Limite de operações excedido – você tentou mudar seu nome de usuário muitas vezes em um curto período. Espere um minuto antes de tentar novamente." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Reanexar citação" @@ -6177,30 +6660,42 @@ msgstr "Reagir com {emoji}" msgid "Reactivate your account" msgstr "Reative sua conta" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "Ler mais {0} {1, plural, one {resposta} other {respostas}}" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Ler postagem do blog (em inglês)" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Ver menos" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Ver mais" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "Ler mais respostas" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "Leia nosso post do blog" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Leia o blog do Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Leia a Política de Privacidade do Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Leia os Termos de Serviço do Bluesky" @@ -6213,6 +6708,14 @@ msgstr "Motivo do recurso" msgid "Reason:" msgstr "Motivo:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "Receber notificações no app" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "Receber notificações no dispositivo" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Pesquisas Recentes" @@ -6234,8 +6737,8 @@ msgstr "Negar" msgid "Reject chat request" msgstr "Recusar pedido de conversa" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Recarregar conversas" @@ -6244,10 +6747,9 @@ msgstr "Recarregar conversas" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Remover" @@ -6259,17 +6761,17 @@ msgstr "Remover {displayName} do pacote inicial" msgid "Remove {historyItem}" msgstr "Remover {historyItem}" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Remover conta" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Remover anexo" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Remover avatar" @@ -6284,24 +6786,22 @@ msgstr "Remover incorporação" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Remover feed" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Remover feed?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Remover dos meus feeds" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Remover do acesso rápido?" @@ -6311,18 +6811,17 @@ msgid "Remove from saved feeds" msgstr "Remover dos feeds salvos" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "Remover dos seus feeds?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Remover imagem" #: src/components/live/EditLiveDialog.tsx:240 #: src/components/live/EditLiveDialog.tsx:247 msgid "Remove live status" -msgstr "" +msgstr "Remover status ao vivo" #: src/components/dialogs/MutedWords.tsx:523 msgid "Remove mute word from your list" @@ -6332,12 +6831,8 @@ msgstr "Remover palavra silenciada da lista" msgid "Remove profile" msgstr "Remover perfil" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Remover citação" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Desfazer repostagem" @@ -6345,7 +6840,7 @@ msgstr "Desfazer repostagem" msgid "Remove subtitle file" msgstr "Remover arquivo de legenda" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Remover este feed dos feeds salvos" @@ -6364,11 +6859,11 @@ msgstr "Remover verificação" msgid "Remove your verification for this account?" msgstr "Remover a sua verificação para essa conta?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Removido pelo autor" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Removido por você" @@ -6377,10 +6872,6 @@ msgstr "Removido por você" msgid "Removed from list" msgstr "Removido da lista" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Removido dos meus feeds" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Removido dos feeds salvos" @@ -6395,34 +6886,36 @@ msgstr "Removido dos feeds salvos" msgid "Removed verification" msgstr "Verificação removida" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Remove a postagem citada" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Trocar pelo Discover" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Respostas" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Respostas desabilitadas" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Respostas para esta postagem estão desativadas." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Responder" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Responder ({0, plural, one {# resposta} other {# respostas}})" @@ -6436,50 +6929,55 @@ msgstr "Resposta Ocultada pelo Autor do Tópico" msgid "Reply Hidden by You" msgstr "Resposta ocultada por você" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "Notificações de resposta" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Configurações de resposta" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "Configurações de resposta são escolhidas pelo autor do tópico" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Ordenamento de respostas" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Resposta para <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Resposta para uma postagem bloqueada" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Resposta para uma postagem" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Resposta para você" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Visibilidade da resposta atualizada" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Resposta foi ocultada com sucesso" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Denunciar feed" msgid "Report list" msgstr "Denunciar lista" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Denunciar mensagem" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Denunciar postagem" @@ -6567,25 +7065,26 @@ msgstr "Denunciar este pacote inicial" msgid "Report this user" msgstr "Denunciar este usuário" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Repostar" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Repostar" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Repostar ({0, plural, one {# repostagem} other {# repostagens}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "Notificações de repostagem" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Repostar ou citar uma postagem" @@ -6594,35 +7093,47 @@ msgstr "Repostar ou citar uma postagem" msgid "Reposted By" msgstr "Repostado Por" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Repostado por {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Repostado por <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Repostado por você" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "Repostagens" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Repostagens" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "Solicitar alteração" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "Repostagens das suas repostagens" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "Notificações de repostagens das suas repostagens" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "Solicitar Código" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Exigir texto alternativo antes de postar" @@ -6630,7 +7141,7 @@ msgstr "Exigir texto alternativo antes de postar" msgid "Require an email code to sign in to your account." msgstr "Requer um código de e-mail para entrar em sua conta." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Obrigatório para este provedor" @@ -6640,12 +7151,8 @@ msgstr "Obrigatório na sua região" #: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40 msgid "Resend" -msgstr "" +msgstr "Reenviar" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Reenviar E-mail" msgid "Resend Verification Email" msgstr "Reenviar E-mail de Verificação" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "Redefinir lembrete de inscrição de atividade" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Código de redefinição" @@ -6667,8 +7180,8 @@ msgstr "Código de redefinição" msgid "Reset Code" msgstr "Código de Redefinição" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Redefinir tutoriais" @@ -6687,21 +7200,23 @@ msgstr "Tenta a última ação, que deu erro" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Tente novamente" @@ -6721,19 +7236,19 @@ msgstr "Voltar para a tela inicial" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Voltar para página anterior" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Retorna à etapa anterior" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Retorna à etapa anterior" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Salvar" @@ -6762,15 +7276,13 @@ msgstr "Salvar" msgid "Save birthday" msgstr "Salvar data de nascimento" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Salvar alterações" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Salvar Alterações" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Salvar QR code" msgid "Save to my feeds" msgstr "Salvar nos meus feeds" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Feeds Salvos" @@ -6802,18 +7314,14 @@ msgstr "Feeds Salvos" msgid "Saved to your feeds" msgstr "Adicionado aos seus feeds" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Salva todas as alterações" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Salva o corte da imagem" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Diga olá!" @@ -6826,16 +7334,16 @@ msgstr "Ciência" msgid "Scroll to top" msgstr "Ir para o topo" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Pesquisar" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Pesquisar postagens de @{0}" @@ -6861,7 +7369,7 @@ msgstr "Pesquisar por \"{query}\"" msgid "Search for \"{searchText}\"" msgstr "Pesquisar por \"{searchText}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Procure por feeds que você queira sugerir para outros." @@ -6875,12 +7383,16 @@ msgstr "Pesquisar por mais feeds" #: src/screens/Search/Shell.tsx:334 msgid "Search for posts, users, or feeds" -msgstr "Procurar postagens, usuários ou feeds" +msgstr "Buscar postagens, usuários e feeds" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Pesquisar por GIFs" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "A pesquisa está indisponível quando desconectado" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Pesquisar minhas postagens" @@ -6890,12 +7402,12 @@ msgstr "Pesquisar minhas postagens" msgid "Search posts" msgstr "Pesquisar postagens" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Pesquisar por usuários" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Pesquisar via Tenor" @@ -6903,18 +7415,14 @@ msgstr "Pesquisar via Tenor" msgid "Search..." msgstr "Pesquisar..." -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Pesquisa por perfis" #: src/components/dialogs/EmailDialog/screens/Update.tsx:243 msgid "Security step required" -msgstr "" - -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Etapa de Segurança Necessária" +msgstr "Etapa de segurança necessária" #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" @@ -6936,14 +7444,31 @@ msgstr "Ver postagens com #{tag} por usuário" msgid "See jobs at Bluesky" msgstr "Veja empregos na Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "Ver mais" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "Veja mais contas que você pode gostar" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "Ver mais perfis sugeridos na página Explorar" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Veja o guia" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Controle deslizante de busca. Use os botões de seta para avançar e retroceder, e espaço para pausar/continuar" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "Selecionar {0}" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Selecione uma cor" @@ -6954,7 +7479,7 @@ msgstr "Selecione uma conta" #: src/components/AppLanguageDropdown.tsx:60 msgid "Select an app language" -msgstr "" +msgstr "Selecionar um idioma para o app" #: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 msgid "Select an avatar" @@ -6966,11 +7491,11 @@ msgstr "Selecione um emoji" #: src/components/Select/index.tsx:204 msgid "Select an option" -msgstr "" +msgstr "Selecionar opção" #: src/screens/Settings/LanguageSettings.tsx:98 msgid "Select app language" -msgstr "" +msgstr "Selecionar idioma do app" #: src/screens/Settings/LanguageSettings.tsx:164 msgid "Select content languages" @@ -6978,7 +7503,7 @@ msgstr "Selecionar idiomas do conteúdo" #: src/components/live/GoLiveDialog.tsx:179 msgid "Select duration" -msgstr "" +msgstr "Selecionar duração" #: src/screens/Login/index.tsx:144 msgid "Select from an existing account" @@ -6988,7 +7513,7 @@ msgstr "Selecionar de uma conta existente" msgid "Select GIF" msgstr "Selecionar GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Selecionar GIF \"{0}\"" @@ -6996,6 +7521,11 @@ msgstr "Selecionar GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "Selecione por quanto tempo esta palavra deve ser silenciada." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "Selecione o idioma" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Selecione o idioma..." @@ -7004,7 +7534,7 @@ msgstr "Selecione o idioma..." msgid "Select languages" msgstr "Selecionar idiomas" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "Escolher serviço de moderação" @@ -7014,7 +7544,7 @@ msgstr "Selecionar moderador" #: src/screens/Settings/LanguageSettings.tsx:131 msgid "Select primary language" -msgstr "" +msgstr "Selecionar idioma principal" #: src/view/com/composer/videos/SubtitleFilePicker.tsx:59 #: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 @@ -7045,12 +7575,12 @@ msgstr "Selecione qual idioma usar para a interface do aplicativo." msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Selecione quais idiomas você deseja ver nos seus feeds. Se nenhum for selecionado, todos os idiomas serão exibidos." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Selecione sua data de nascimento" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Selecione seus interesses" @@ -7058,7 +7588,11 @@ msgstr "Selecione seus interesses" msgid "Select your preferred language for translations in your feed." msgstr "Selecione seu idioma preferido para as traduções no seu feed." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "Selecione seus canais preferidos de notificação" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "Seleciona a opção {0} de {numItems}" @@ -7066,17 +7600,9 @@ msgstr "Seleciona a opção {0} de {numItems}" msgid "Send a neat website!" msgstr "Envie um site bacana!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "Enviar confirmação" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Enviar email de confirmação" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Enviar e-mail" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Enviar E-mail" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Enviar comentários" @@ -7095,9 +7621,9 @@ msgstr "Enviar comentários" msgid "Send message" msgstr "Enviar mensagem" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" -msgstr "" +msgstr "Enviar postagem para {name}" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." @@ -7114,20 +7640,20 @@ msgstr "Denunciar" msgid "Send report to {0}" msgstr "Denunciar via {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "Enviar denúncia para {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Enviar e-mail de verificação" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Enviar por mensagem direta" @@ -7143,7 +7669,7 @@ msgstr "Endereço do servidor" msgid "Set app icon to {0}" msgstr "Definir ícone do aplicativo como {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Definir data de nascimento" @@ -7159,13 +7685,57 @@ msgstr "Configure sua conta" msgid "Sets email for password reset" msgstr "Configura o e-mail para recuperação de senha" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Configurações" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "Configurações para atividade de terceiros" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "Configurações para permitir que outros sejam notificados das suas postagens" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "Configurações para notificações de curtidas" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "Configurações para notificações de menções" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "Configurações para notificações de novo seguidor" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "Configurações para as demais notificações" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "Configurações para notificações de curtidas das suas repostagens" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "Configurações para notificações de repostagens das suas repostagens" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "Configurações para notificações de citação" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "Configurações para notificações de resposta" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "Configurações para notificações de repostagem" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,35 +7770,30 @@ msgstr "Compartilhe uma história legal!" msgid "Share a fun fact!" msgstr "Compartilhe um fato divertido!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Compartilhar mesmo assim" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" -msgstr "" +msgstr "Compartilhar DID do autor" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Compartilhar link" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Compartilhar Link" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Compartilhar Link de diálogo" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" -msgstr "" +msgstr "Compartilhar URI at:// da postagem" #: src/components/StarterPack/ShareDialog.tsx:115 #: src/components/StarterPack/ShareDialog.tsx:126 @@ -7247,34 +7812,30 @@ msgstr "Compartilhar este pacote inicial" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Compartilhe este pacote inicial e ajude as pessoas a se juntarem à sua comunidade no Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 #: src/view/com/profile/ProfileMenu.tsx:256 msgid "Share via..." -msgstr "" +msgstr "Compartilhar via..." #: src/components/dms/ChatEmptyPill.tsx:34 msgid "Share your favorite feed!" msgstr "Compartilhe seu feed favorito!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Testador de Preferências Compartilhadas" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Compartilha o link" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Mostrar" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Mostrar texto alternativo" @@ -7303,8 +7864,8 @@ msgstr "Mostrar opções de personalização" msgid "Show hidden replies" msgstr "Mostrar respostas ocultas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Mostrar menos disso" @@ -7312,55 +7873,63 @@ msgstr "Mostrar menos disso" msgid "Show list anyway" msgstr "Mostrar lista de qualquer maneira" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Mostrar Mais" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Mostrar mais disso" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "Mostrar mais respostas" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Mostrar respostas silenciadas" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "Mostrar respostas como árvore de tópicos" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Mostrar citações" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Mostrar respostas" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Mostrar respostas como" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Mostrar respostas como fios" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Mostrar respostas de pessoas que você segue antes das demais respostas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Mostrar resposta para todos" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Mostrar repostagens" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Mostrar conteúdo dos seus feeds salvos no feed Seguindo (Following)" @@ -7372,16 +7941,17 @@ msgstr "Mostrar aviso" msgid "Show warning and filter from feeds" msgstr "Mostrar aviso e filtrar dos feeds" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Mostra informações sobre quando esta postagem foi criada" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "Exibe suas outras contas que você pode acessar" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Exibe o conteúdo" @@ -7390,14 +7960,15 @@ msgstr "Exibe o conteúdo" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "Entrar em uma conta não listada" msgid "Sign in to Bluesky or create a new account" msgstr "Registre-se no Bluesky ou crie uma conta" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "Faça login para ver a postagem" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Sair" @@ -7444,8 +8020,8 @@ msgstr "Sair" msgid "Sign Out" msgstr "Sair" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Sair?" @@ -7459,12 +8035,12 @@ msgstr "É Necessário Fazer Login" msgid "Signed in as @{0}" msgstr "Autenticado como @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Contas semelhantes" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Pular" @@ -7472,12 +8048,11 @@ msgstr "Pular" msgid "Skip this flow" msgstr "Pular" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Menor" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "Adiar o lembrete" @@ -7490,11 +8065,11 @@ msgstr "Desenvolvimento de software" msgid "Some of your verifications are invalid." msgstr "Algumas de suas verificações são inválidas." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Alguns outros feeds que você pode gostar" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Algumas pessoas podem responder" @@ -7510,10 +8085,11 @@ msgstr "Alguém reagiu com {0} a {1}" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "Algo não estava certo com os dados que você está tentando relatar. Entre em contato com o suporte." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Algo deu errado" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Algo deu errado, tente novamente" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Algo deu errado. Por favor, tente novamente." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Algo deu errado!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "Algo deu errado. Por favor, tente novamente mais tarde." + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "Algo deu errado. Por favor, tente novamente." @@ -7539,20 +8118,23 @@ msgstr "Algo deu errado. Por favor, tente novamente." msgid "Something wrong? Let us know." msgstr "Algo de errado? Nos avise." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "Desculpe! Sua sessão expirou. Entre novamente." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Ordenar respostas" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Ordenar respostas por" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Classificar respostas de uma postagem por:" @@ -7579,9 +8161,9 @@ msgstr "Spam; menções ou respostas excessivas" msgid "Sports" msgstr "Esportes" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." -msgstr "" +msgstr "Inicie uma conversa e ela aparecerá aqui." #: src/components/dms/dialogs/NewChatDialog.tsx:74 msgid "Start a new chat" @@ -7601,9 +8183,9 @@ msgstr "Comece a adicionar pessoas!" msgid "Start chat with {displayName}" msgstr "Comece a conversar com {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Pacote Inicial" @@ -7611,12 +8193,12 @@ msgstr "Pacote Inicial" msgid "Starter pack by {0}" msgstr "Pacote inicial por {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Pacote inicial por <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Seu pacote inicial" @@ -7638,19 +8220,21 @@ msgstr "Pacotes iniciais permitem que você compartilhe facilmente seus feeds e msgid "Status Page" msgstr "Página de status" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Etapa {0} de {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Armazenamento limpo, você precisa reiniciar o aplicativo agora." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Storybook" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Enviar recurso" msgid "Submit Appeal" msgstr "Enviar Recurso" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "Enviar denúncia" @@ -7676,10 +8260,14 @@ msgstr "Enviar denúncia" msgid "Subscribe" msgstr "Inscrever-se" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Inscreva-se em @{0} para utilizar estes rótulos:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "Inscrever-se na atividade da conta" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Inscrever-se no rotulador" @@ -7692,8 +8280,12 @@ msgstr "Inscrever-se neste rotulador" msgid "Subscribe to this list" msgstr "Inscreva-se nesta lista" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "Sucesso" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Sucesso!" @@ -7705,7 +8297,7 @@ msgstr "Verificado com sucesso" msgid "Suggested Accounts" msgstr "Contas Sugeridas" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Sugeridos para você" @@ -7714,26 +8306,26 @@ msgstr "Sugeridos para você" msgid "Suggestive" msgstr "Sugestivo" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Alvorada" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Entardecer" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Suporte" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Alterar conta" @@ -7742,24 +8334,24 @@ msgstr "Alterar conta" msgid "Switch Account" msgstr "Alterar Conta" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Trocar de conta " -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "Alterar para {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Sistema" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Log do sistema" @@ -7767,6 +8359,18 @@ msgstr "Log do sistema" msgid "Tags only" msgstr "Apenas Tags" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "Toque para informações" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "Toque para mais informações" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "Toque para confirmar que você entende e concorda com essas atualizações e continuar usando o Bluesky" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Conte-nos um pouco mais" msgid "Terms" msgstr "Termos" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Termos de Serviço" @@ -7846,11 +8452,7 @@ msgstr "Campo de entrada de texto" #: src/view/com/posts/ShowLessFollowup.tsx:39 msgid "Thank you for your feedback! It has been sent to the feed operator." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Obrigado! Seu email foi verificado com sucesso." +msgstr "Obrigado por seu comentário! Ele foi enviado ao operador." #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." @@ -7864,28 +8466,28 @@ msgstr "Obrigado, você verificou seu endereço de e-mail com sucesso. Você pod msgid "That contains the following:" msgstr "Contém o seguinte:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Este nome de usuário já está sendo usado." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Este pacote inicial não pôde ser encontrado." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "Este nome de usuário já está em uso" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Isso é tudo, pessoal!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "Isso é tudo!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "A conta poderá interagir com você após o desbloqueio." @@ -7900,7 +8502,7 @@ msgstr "O aplicativo vai ser reiniciado" msgid "The author of this thread has hidden this reply." msgstr "O autor deste tópico ocultou esta resposta." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "A aplicação web Bluesky" @@ -7920,10 +8522,6 @@ msgstr "O feed de descoberta (Discover)" msgid "The Discover feed now knows what you like" msgstr "O feed Discover agora sabe o que você curte" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "O endereço de e-mail que você inseriu é o mesmo que o seu endereço de e-mail atual." - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "A experiência é melhor no aplicativo. Baixe o Bluesky agora e continuaremos de onde você parou." @@ -7944,8 +8542,16 @@ msgstr "Os seguintes rótulos foram aplicados sobre seu conteúdo." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "As opções a seguir serão utilizadas como padrão ao criar postagens novas. Você pode editar estas opções para um postagem específica no editor." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "As leis em sua localização exigem que você verifique que é um adulto antes de acessar certos recursos no Bluesky, como conteúdo adulto e mensagens diretas." + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "As leis em sua localização exigem que você verifique que é adulto para acessar certos recursos. Toque para saber mais." + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "A postagem pode ter sido excluída." @@ -7953,9 +8559,10 @@ msgstr "A postagem pode ter sido excluída." msgid "The Privacy Policy has been moved to <0/>" msgstr "A Política de Privacidade foi movida para <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "O vídeo selecionado é maior que 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "O vídeo selecionado é maior que 100 MB. Tente novamente com um arquivo menor." #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7968,7 +8575,7 @@ msgstr "O pacote inicial que você está tentando visualizar é inválido. Você #: src/components/ContextMenu/index.tsx:433 msgid "The subject of the context menu" -msgstr "" +msgstr "O assunto do menu de contexto" #: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." @@ -7982,7 +8589,7 @@ msgstr "Os Termos de Serviço foram movidos para" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "O código de verificação que você forneceu é inválido. Certifique-se de que você usou o link de verificação correto ou solicite novamente." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Tema" @@ -7990,14 +8597,14 @@ msgstr "Tema" msgid "There is no time limit for account deactivation, come back any time." msgstr "Não há limite de tempo para desativação da conta, volte quando quiser." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Tivemos um problema ao conectar com o Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Tivemos um problema ao contatar o servidor deste feed" @@ -8006,17 +8613,12 @@ msgstr "Tivemos um problema ao contatar o servidor deste feed" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Houve um problema ao comunicar com o servidor, por favor verifique sua conexão de internet e tente novamente." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Tivemos um problema ao contatar o servidor deste feed" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Tivemos um problema ao carregar notificações. Toque aqui para tentar de novo." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Tivemos um problema ao carregar as postagens. Toque aqui para tentar de novo." @@ -8037,7 +8639,7 @@ msgstr "Tivemos um problema ao carregar suas listas. Toque aqui para tentar de n msgid "There was an issue fetching your service info" msgstr "Houve um problema ao recuperar suas informações de serviço" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Houve um problema ao remover este feed. Por favor verifique sua conexão de internet e tente novamente." @@ -8052,9 +8654,9 @@ msgstr "Tivemos um problema ao enviar sua denúncia. Por favor, verifique sua co msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Houve um problema ao atualizar seus feeds, por favor verifique sua conexão de internet e tente novamente." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Houve um problema ao atualizar seus feeds, por favor verifique sua conex msgid "There was an issue! {0}" msgstr "Tivemos um problema! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Tivemos um problema! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Houve algum problema. Por favor verifique sua conexão com a internet e tente novamente." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Houve um problema inesperado no aplicativo. Por favor, deixe-nos saber se isso aconteceu com você!" @@ -8089,7 +8691,7 @@ msgstr "Houve um problema inesperado no aplicativo. Por favor, deixe-nos saber s msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Muitos usuários estão tentando acessar o Bluesky! Ativaremos sua conta assim que possível." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Estas configurações só se aplicam ao feed Seguindo (Following)." @@ -8146,7 +8748,7 @@ msgstr "Este conteúdo é hospedado por {0}. Deseja ativar a mídia externa?" msgid "This content is not available because one of the users involved has blocked the other." msgstr "Este conteúdo não está disponível porque um dos usuários envolvidos bloqueou o outro." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Este conteúdo não é visível sem uma conta do Bluesky." @@ -8156,21 +8758,25 @@ msgstr "Esta conversa é com uma conta desativada ou excluída. Pressione para v #: src/components/dialogs/EmailDialog/screens/Update.tsx:156 msgid "This email is already associated with your account." -msgstr "" +msgstr "Este email já está associado à sua conta." + +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "Esta função permite que usuários recebam notificações das suas postagens e respostas. Para quem você deseja ativar isto?" #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." -msgstr "Esta funcionalidade está em beta. Você pode ler mais sobre exportação de repositórios <0>nesta postagem do nosso blog." +msgstr "Este recurso está em beta. Você pode ler mais sobre exportação de repositórios <0>nesta postagem do nosso blog." #: src/lib/hooks/useCleanError.ts:49 msgid "This feature is not available while using an app password. Please sign in with your main password." -msgstr "" +msgstr "Esta função não está disponível ao usar uma senha de aplicativo. Por favor, conecte com a sua senha principal." #: src/lib/strings/errors.ts:21 msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Esta função não está disponível ao usar uma senha de aplicativo. Por favor conecte com a sua senha principal." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Este feed está recebendo muito tráfego e está temporariamente indisponível. Por favor, tente novamente mais tarde." @@ -8199,7 +8805,7 @@ msgstr "Esta informação não é compartilhada com outros usuários." #: src/components/live/EditLiveDialog.tsx:189 #: src/components/live/GoLiveDialog.tsx:160 msgid "This is not a valid link" -msgstr "" +msgstr "Este não é um link válido" #: src/components/moderation/ModerationDetailsDialog.tsx:168 msgid "This label was applied by the author." @@ -8209,11 +8815,11 @@ msgstr "Este rótulo foi aplicado pelo autor." msgid "This label was applied by you." msgstr "Este rótulo foi aplicado por você." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Este rotulador não declarou quais rótulos utiliza e pode não estar funcionando ainda." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Este link está levando você ao seguinte site:" @@ -8233,29 +8839,28 @@ msgstr "Esta lista está vazia." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Este serviço de moderação está indisponível. Veja mais detalhes abaixo. Se este problema persistir, entre em contato." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Esta postagem alega ter sido criada em <0>{0}, mas ela apareceu no Bluesky em <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Essa postagem possui uma configuração desconhecida de interações permitidas. O app talvez esteja desatualizado." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Esta postagem foi excluída." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Esta postagem é visível apenas para usuários registrados. Ela não será visível para usuários desconectados." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "Esta postagem só é visível para usuários conectados." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Esta postagem será ocultada dos feeds e tópicos. Isso não pode ser desfeito." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "O autor desta postagem desabilitou as postagens de citação." @@ -8263,11 +8868,11 @@ msgstr "O autor desta postagem desabilitou as postagens de citação." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Este perfil será visível apenas para usuários registrados. Ele não será visível para usuários desconectados." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Esta resposta será classificada em uma seção oculta na parte inferior do seu tópico e silenciará as notificações para respostas subsequentes, tanto para você quanto para outras pessoas." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Este serviço não proveu termos de serviço ou política de privacidade." @@ -8275,6 +8880,10 @@ msgstr "Este serviço não proveu termos de serviço ou política de privacidade msgid "This should create a domain record at:" msgstr "Isso deve criar um registro no domínio:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "Isto deve demorar apenas alguns minutos." + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Este usuário não possui um nome de exibição e por isso não pode ser verificado." @@ -8316,16 +8925,18 @@ msgstr "Este usuário não segue ninguém ainda." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Isso excluirá \"{0}\" das suas palavras silenciadas. Você sempre pode adicioná-lo novamente mais tarde." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Isso removerá @{0} da lista de acesso rápido." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Isso removerá sua postagem desta postagem de citação para todos os usuários e a substituirá por um espaço reservado." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Opções de tópicos" @@ -8334,24 +8945,27 @@ msgstr "Opções de tópicos" msgid "Thread preferences" msgstr "Preferências dos tópicos" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Preferências dos Tópicos" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Aninhado" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Visualização de tópicos" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Preferências dos Tópicos" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "Tempo restante: {0, plural, one {# segundo} other {# segundos}}" @@ -8362,7 +8976,7 @@ msgstr "Para desabilitar o 2FA via e-mail, por favor verifique seu acesso a este #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215 msgid "To disable your email 2FA method, please verify your access to <0>{0}" -msgstr "" +msgstr "Para desabilitar o 2FA via email, por favor verifique que você tem acesso a <0>{0}" #: src/components/dms/ReportConversationPrompt.tsx:19 msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." @@ -8376,42 +8990,56 @@ msgstr "Para quem você gostaria de enviar esta denúncia?" msgid "Today" msgstr "Hoje" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Alternar menu suspenso" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Ligar ou desligar conteúdo adulto" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Alterna o som" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Principais" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "Respostas populares primeiro" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Assunto" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Traduzir" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "Visualização em árvore" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Em alta" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Vídeos em alta" @@ -8428,14 +9056,10 @@ msgstr "Tentar novamente" msgid "TV" msgstr "TV" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Autenticação em duas etapas (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Insira o usuário" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Digite sua mensagem aqui" @@ -8453,7 +9077,7 @@ msgstr "Não foi possível conectar. Verifique a sua conexão de internet e tent #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Não foi possível entrar em contato com seu serviço. Por favor, verifi msgid "Unable to delete" msgstr "Não foi possível excluir" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "Remover Pull Request" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "Remover Pull Request {currentChannel}" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "Indisponível" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "Informação do feed indisponível" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Desbloquear" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Desbloquear" @@ -8486,7 +9126,7 @@ msgstr "Desbloquear" msgid "Unblock account" msgstr "Desbloquear Conta" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Desbloquear Conta?" @@ -8495,13 +9135,13 @@ msgstr "Desbloquear Conta?" msgid "Unblock list" msgstr "Desbloquear lista" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Desfazer repostagem" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Desfazer repostagem ({0, plural, one {# repostagem} other {# repostagens}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Deixar de seguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Deixar de seguir {0}" @@ -8523,7 +9163,7 @@ msgstr "Parar de seguir conta" msgid "Unfollows the user" msgstr "Para de seguir o usuário" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Infelizmente, nenhum dos rotuladores em que você se inscreveu suporta esse tipo de denúncia." @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "Descurtir" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Descurtir ({0, plural, one {# curtida} other {# curtidas}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Dessilenciar" @@ -8555,8 +9195,8 @@ msgstr "Dessilenciar" msgid "Unmute {tag}" msgstr "Dessilenciar {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Dessilenciar conversa" msgid "Unmute list" msgstr "Dessilenciar lista" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Dessilenciar tópico" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Ativar o áudio do vídeo" @@ -8597,8 +9237,8 @@ msgstr "Desafixar Feed" msgid "Unpin from home" msgstr "Desafixar da tela inicial" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Desafixar do seu perfil" @@ -8614,8 +9254,8 @@ msgstr "{0} desafixado da Tela Inicial" msgid "Unpinned from your feeds" msgstr "Desafixado dos seus feeds" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "Reativar lembretes de email" @@ -8636,7 +9276,7 @@ msgstr "Cancelar inscrição deste rotulador" msgid "Unsubscribed from list" msgstr "Cancelada inscrição na lista" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Formato de vídeo não suportado" @@ -8662,10 +9302,10 @@ msgstr "Atualizar <0>{displayName} nas Listas" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" -msgstr "" +msgstr "Atualizar email" #: src/screens/Settings/components/ChangeHandleDialog.tsx:526 #: src/screens/Settings/components/ChangeHandleDialog.tsx:547 @@ -8674,19 +9314,19 @@ msgstr "Alterar para {domain}" #: src/components/dialogs/EmailDialog/screens/Update.tsx:203 msgid "Update your email" -msgstr "" +msgstr "Atualizar seu email" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Falha na atualização da citação" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Falha na atualização da visibilidade da resposta" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Atualizando..." @@ -8698,20 +9338,20 @@ msgstr "Enviar uma foto" msgid "Upload a text file to:" msgstr "Carregar um arquivo de texto para:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Tirar uma foto" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Carregar um arquivo" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Carregar da galeria" msgid "Uploading images..." msgstr "Enviando imagens..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Enviando prévia de link..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Enviando vídeo..." @@ -8761,6 +9401,10 @@ msgstr "Usar recomendados" msgid "Use this to sign in to the other app along with your handle." msgstr "Use isso para registrar-se no outro app junto ao seu nome de usuário." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "Use o endereço de email da sua conta ou outro email que você tenha acesso para caso o KWS ou o Bluesky precisem entrar em contato." + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Usado por:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Lista de usuários atualizada" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "Nome de usuário não pode começar ou terminar com hífen" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "Nome de usuário deve conter apenas letras (a-z), números e hífens" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Nome de usuário ou endereço de e-mail" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "usuários seguidos por <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "usuários seguindo <0>@{0}" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Usuários que eu sigo" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Usuários em \"{0}\"" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Usuários que você segue" @@ -8846,11 +9502,11 @@ msgstr "Conteúdo:" msgid "Verification failed, please try again." msgstr "Falha na verificação, por favor tente novamente." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "Configurações de verificação" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "Configurações de Verificação" @@ -8870,31 +9526,37 @@ msgstr "Verificado por:" msgid "Verify account" msgstr "Verificar conta" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "Verificar novamente" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" -msgstr "" +msgstr "Verificar código" #: src/screens/Settings/components/ChangeHandleDialog.tsx:528 #: src/screens/Settings/components/ChangeHandleDialog.tsx:549 msgid "Verify DNS Record" msgstr "Verificar registro DNS" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "Verificar e-mail" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "Código para verificar o email" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Caixa de diálogo da verificação de e-mail" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "Verificar agora" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Verificar Arquivo" msgid "Verify this account?" msgstr "Verificar esta conta?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "Verificar sua idade" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Verificar seu email" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Verificar Seu E-mail" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "Verificando" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "Verificando o estado da sua validação de idade" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Versão {appVersion}" +msgid "Version {0}" +msgstr "Versão {0}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Vídeo" @@ -8928,7 +9598,7 @@ msgstr "Vídeo" msgid "Video failed to process" msgstr "Falha no processamento do vídeo" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Feed de vídeos" @@ -8942,15 +9612,15 @@ msgstr "Vídeo de {0}: {text}" msgid "Video Games" msgstr "Videogames" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "O vídeo está pausado" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "O vídeo está reproduzindo" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Vídeo não encontrado." @@ -8958,11 +9628,11 @@ msgstr "Vídeo não encontrado." msgid "Video settings" msgstr "Configurações de vídeo" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Vídeo enviado" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Vídeo: {0}" @@ -8979,11 +9649,11 @@ msgstr "Vídeos devem ter menos de 3 minutos de duração" msgid "View {0}'s avatar" msgstr "Ver o avatar de {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Ver perfil de {0}" @@ -8991,7 +9661,7 @@ msgstr "Ver perfil de {0}" msgid "View {displayName}'s profile" msgstr "Ver perfil de {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Ver perfil do usuário bloqueado" @@ -9009,7 +9679,6 @@ msgstr "Ver depuração" msgid "View details" msgstr "Ver detalhes" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Ver detalhes para denunciar uma violação de direitos autorais" @@ -9022,23 +9691,23 @@ msgstr "Ver tópico completo" msgid "View information about these labels" msgstr "Ver informações sobre estes rótulos" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Ver mais" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Ver perfil" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Ver o avatar" @@ -9054,28 +9723,28 @@ msgstr "Ver as verificações deste usuário" msgid "View users who like this feed" msgstr "Ver usuários que curtiram este feed" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Ver vídeo" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Veja suas contas bloqueadas" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "Ver suas opções padrão de interação em postagens" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Veja seus feeds e explore mais" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Veja suas listas de moderação" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Veja suas contas silenciadas" @@ -9083,8 +9752,8 @@ msgstr "Veja suas contas silenciadas" msgid "View your verifications" msgstr "Ver suas verificações" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Ver imagem completa" @@ -9092,16 +9761,20 @@ msgstr "Ver imagem completa" msgid "Views video in immersive mode" msgstr "Abre o vídeo no modo paisagem" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "Visitar Site" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "Visitar site" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "Acessar suas configurações de notificação" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Volume" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Avisar e filtrar dos feeds" msgid "Watch now" msgstr "Assistir agora" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "Não foi possível conectar ao serviço que fornece este feed personalizado. Ele pode estar com problemas temporários ou permanentemente indisponível." + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "Não conseguimos encontrar esta lista. Provavelmente ela foi excluída." + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "Não encontramos nenhuma postagem com esta hashtag." @@ -9128,7 +9809,7 @@ msgstr "Não encontramos nenhuma postagem com esta hashtag." msgid "We couldn't find any results for that topic." msgstr "Nós não encontramos nenhum resultado para este assunto." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Não foi possível carregar esta conversa" @@ -9136,6 +9817,10 @@ msgstr "Não foi possível carregar esta conversa" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Estimamos que sua conta estará pronta em mais ou menos {estimatedTime}." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "Temos uma parceria com o <0>KWS para verificar que você é um adulto. Quando você clicar em \"Começar\" abaixo, o KWS irá checar se você já verificou sua idade anteriormente usando este endereço de email para outros jogos/serviços que utilizam o KWS. Caso não tenha, o KWS enviará instruções para verificar sua idade. Quando terminar, você será trazido de volta para continuar usando o Bluesky." + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Enviamos outro e-mail de verificação para <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "Esperamos que você se divirta. Lembre-se, o Bluesky é:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Não temos mais postagens de quem você segue. Aqui estão os mais novos de <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "Recomendamos a escolha de pelo menos dois interesses." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." -msgstr "" +msgstr "Enviamos um email para <0>{0} contendo um link. Clique nele para concluir o processo de verificação de email." -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Não conseguimos determinar se você tem permissão para enviar vídeos. Tente novamente." @@ -9164,10 +9849,14 @@ msgstr "Não conseguimos determinar se você tem permissão para enviar vídeos. msgid "We were unable to load your birth date preferences. Please try again." msgstr "Não foi possível carregar sua data de nascimento. Por favor, tente novamente." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "Não foi possível carregar seus rotuladores." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "Não foi possível obter a verificação devido a problemas de conexão. A verificação pode chegar mais tarde. Se isso acontecer, sua conta será atualizada automaticamente." + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Não conseguimos conectar. Por favor, tente novamente para continuar configurando a sua conta. Se continuar falhando, você pode pular esta etapa." @@ -9176,14 +9865,30 @@ msgstr "Não conseguimos conectar. Por favor, tente novamente para continuar con msgid "We will let you know when your account is ready." msgstr "Avisaremos quando sua conta estiver pronta." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." -msgstr "" +msgstr "Enviaremos um email para <0>{0} contendo um link. Clique nele para concluir o processo de verificação de email." #: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "Usaremos isto para personalizar a sua experiência." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Também estamos atualizando nossas <0>Diretrizes da Comunidade e queremos sua opinião! Essas novas diretrizes entrarão em vigor em 15 de outubro de 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Também estamos atualizando nossas Diretrizes da Comunidade e queremos sua opinião! Essas novas diretrizes entrarão em vigor em 15 de outubro de 2025." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "Estamos confirmando a sua verificação de idade com os servidores. Isso deve levar apenas alguns segundos." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "Estamos com problemas para iniciar o processo de verificação de idade da sua conta. Por favor <0>entre em contato com o suporte para obter assistência." + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Estamos com problemas de rede, tente novamente" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Estamos introduzindo uma nova camada de verificação no Bluesky — uma marca de verificação fácil de ver." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Estamos muito felizes em receber você!" @@ -9205,15 +9910,15 @@ msgstr "Tivemos um problema ao exibir esta lista. Se continuar acontecendo, cont msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Não foi possível carregar sua lista de palavras silenciadas. Por favor, tente novamente." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Lamentamos, mas sua pesquisa não pôde ser concluída. Por favor, tente novamente em alguns minutos." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Sentimos muito! A postagem que você está respondendo foi excluída." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Sentimos muito! Não conseguimos encontrar a página que você estava procurando." @@ -9222,6 +9927,26 @@ msgstr "Sentimos muito! Não conseguimos encontrar a página que você estava pr msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Sentimos muito! Você só pode se inscrever em até vinte rotuladores, e você atingiu seu limite de vinte." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "Estamos atualizando nossos <0>Termos de Serviço, <1>Política de Privacidade e <2>Política de Direitos Autorais, com vigência a partir de 15 de setembro de 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "Estamos atualizando nossas políticas" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "Estamos atualizando nossos Termos de Serviço, Política de Privacidade e Política de Direitos Autorais, com vigência a partir de 15 de setembro de 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Estamos atualizando nossos Termos de Serviço, Política de Privacidade e Política de Direitos Autorais, com vigência a partir de 15 de setembro de 2025. Também estamos atualizando nossas Diretrizes da Comunidade e queremos sua opinião! Essas novas diretrizes entrarão em vigor em 15 de outubro de 2025. Saiba mais sobre essas mudanças e como compartilhar seus pensamentos conosco lendo nosso post do blog." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "Nós confirmamos a sua verificação de idade. Você pode fechar esta janela." + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Olá novamente!" @@ -9240,7 +9965,7 @@ msgstr "Como você quer chamar seu pacote inicial?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "E aí?" @@ -9256,11 +9981,11 @@ msgstr "Quais idiomas são usados nesta postagem?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Quais idiomas você gostaria de ver nos seus feeds?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Quem pode interagir com esta postagem?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Quem pode responder" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "Quem pode verificar?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Opa!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "Opa! Falha ao carregar os vídeos em alta." @@ -9322,12 +10047,12 @@ msgstr "Por que este usuário deve ser analisado?" msgid "Write a message" msgstr "Escreva uma mensagem" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Escrever postagem" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Escreva sua resposta" @@ -9343,7 +10068,7 @@ msgstr "DID incorreto recebido do servidor. Recebido: {0}" #: src/components/live/EditLiveDialog.tsx:153 #: src/components/live/GoLiveDialog.tsx:129 msgid "www.mylivestream.tv" -msgstr "" +msgstr "p. ex. www.minhalive.tv" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:87 msgid "Yes" @@ -9358,11 +10083,11 @@ msgstr "Sim, desativar" msgid "Yes, delete this starter pack" msgstr "Sim, excluir este pacote inicial" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Sim, desvincular" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Sim, ocultar" @@ -9378,6 +10103,10 @@ msgstr "Ontem" msgid "You" msgstr "Você" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "Você também concorda com as <0>Diretrizes da Comunidade do Bluesky. Uma <1>versão atualizada de nossas Diretrizes da Comunidade entrará em vigor em 15 de outubro." + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "Você é um verificador confiável" @@ -9386,6 +10115,10 @@ msgstr "Você é um verificador confiável" msgid "You are creating an account on" msgstr "Você está criando uma conta em" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "No momento você não pode acessar o fluxo de verificação de idade do Bluesky. Por favor <0>entre em contato com nossa equipe de moderação se você acredita que isto é um erro." + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Você está na fila." @@ -9403,7 +10136,7 @@ msgstr "Você não está mais ao vivo" msgid "You are not allowed to go live" msgstr "Você não tem permissão para entrar ao vivo" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Você não tem permissão para enviar vídeos." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "Você está verificado" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "Você foi verificado. Você perderá seu estado de verificação se mudar seu nome de exibição. <0>Saiba mais." @@ -9441,10 +10173,18 @@ msgstr "Você também pode descobrir novos feeds customizados para seguir." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Você também pode desativar temporariamente sua conta e reativá-la a qualquer momento." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "Você pode escolher se as notificações de conversa terão som nas configurações de conversa dentro do app" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Você pode continuar conversando, independentemente da configuração que escolher." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "Agora você pode escolher ser notificado quando pessoas específicas postarem. Se houver alguém de quem você queira atualizações regulares, vá até o perfil de interesse e encontre o novo ícone de sino próximo ao botão de seguir." + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Agora você pode entrar com a sua nova senha." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Você pode reativar sua conta para continuar fazendo login. Seu perfil e suas postagens ficarão visíveis para outros usuários." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "Você pode definir os Ajustes de interação padrão em <0>Configurações → Moderação → Ajustes de interação." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Você pode alterar esta opção depois nas suas configurações." @@ -9472,23 +10212,23 @@ msgstr "Ninguém segue você ainda." msgid "You don't follow any users who follow @{name}." msgstr "Você não segue nenhum usuário que segue @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." -msgstr "Você não tem nenhuma solicitação de conversa no momento." +msgstr "Você não tem nenhum pedido de conversa no momento." #: src/view/com/modals/InviteCodes.tsx:67 msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Você ainda não tem nenhum convite! Nós lhe enviaremos alguns quando você tiver mais tempo no Bluesky." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Você não tem feeds fixados." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Você não tem feeds salvos." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Você bloqueou esta conta ou foi bloqueado por ela." @@ -9502,6 +10242,10 @@ msgstr "Você bloqueou este usuário" msgid "You have blocked this user. You cannot view their content." msgstr "Você bloqueou este usuário. Você não pode ver este conteúdo." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "Você desativou completamente as notificações de resposta, citação e menção, por isso esta aba não será atualizada. Para mudar isso, vá até suas <0>configurações de notificação." + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Você silenciou esta conta." msgid "You have muted this user" msgstr "Você silenciou este usuário" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Você ainda não tem conversas. Comece uma!" @@ -9547,7 +10291,7 @@ msgstr "Você ainda não bloqueou nenhuma conta. Para bloquear uma conta, acesse msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Você ainda não silenciou nenhuma conta. Para silenciar uma conta, acesse um perfil e selecione \"Silenciar conta\" no menu." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Você chegou ao fim" @@ -9572,6 +10316,10 @@ msgstr "Você não silenciou nenhuma palavra ou tag ainda" msgid "You hid this reply." msgstr "Você ocultou esta resposta." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "Você iniciou este fluxo {0} atrás. Pode demorar até 5 minutos para que os emails cheguem à sua caixa de entrada. Por favor, considere aguardar alguns minutos antes de tentar novamente." + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Você pode contestar estes rótulos se você acha que estão errados." @@ -9592,7 +10340,7 @@ msgstr "Você pode adicionar no máximo 3 feeds" msgid "You may only select up to 4 images" msgstr "Você pode selecionar no máximo 4 imagens" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "Você deve ter 13 anos de idade ou mais para criar uma conta." @@ -9600,14 +10348,27 @@ msgstr "Você deve ter 13 anos de idade ou mais para criar uma conta." msgid "You must be following at least seven other people to generate a starter pack." msgstr "Você deve estar seguindo pelo menos sete outras pessoas para gerar um pacote inicial." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "Para acessar as configurações abaixo, você deve completar a verificação de idade." + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "Para acessar esta tela, você deve completar a verificação de idade." + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" -msgstr "Você deve conceder acesso à sua biblioteca de fotos para salvar o QR code." +msgstr "Você deve conceder acesso à sua galeria de fotos para salvar o QR code" #: src/components/ReportDialog/SubmitView.tsx:211 msgid "You must select at least one labeler for a report" msgstr "Você deve selecionar no mínimo um rotulador" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "Você precisa fazer login para visualizar esta postagem." + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "Você precisa verificar seu endereço de e-mail antes de poder habilitar 2FA via e-mail." @@ -9616,7 +10377,7 @@ msgstr "Você precisa verificar seu endereço de e-mail antes de poder habilitar msgid "You previously deactivated @{0}." msgstr "Você desativou @{0} anteriormente." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "Talvez você queira reiniciar o app agora." @@ -9628,16 +10389,20 @@ msgstr "Você reagiu com {0}" msgid "You reacted {0} to {1}" msgstr "Você reagiu com {0} a {1}" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Você será desconectado de todas as suas contas." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "Você não receberá mais notificações de {0}" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Você não vai mais receber notificações deste tópico" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Você vai receber notificações deste tópico" @@ -9657,11 +10422,11 @@ msgstr "Você: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Você: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Você seguirá os usuários e feeds sugeridos após terminar de criar sua conta!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Você seguirá os usuários sugeridos após terminar de criar sua conta!" @@ -9673,9 +10438,9 @@ msgstr "Você seguirá estas pessoas e mais {0} outras" msgid "You'll follow these people right away" msgstr "Você seguirá estas pessoas imediatamente" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Você vai receber um email em <0>{0} para verificar que é você." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "Você vai começar a receber notificações de {0}!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "Você escolheu esconder uma palavra ou tag desta postagem." msgid "You've found some people to follow" msgstr "Você encontrou algumas pessoas para seguir" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "Você chegou ao fim do conteúdo ativo." + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Você chegou ao fim do seu feed! Encontre novas contas para seguir." @@ -9711,19 +10480,23 @@ msgstr "Você chegou ao fim do seu feed! Encontre novas contas para seguir." msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Você atingiu o número máximo de solicitações permitidas. Tente novamente mais tarde." -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "Você chegou ao início do conteúdo ativo." + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Você atingiu seu limite diário de uploads de vídeo (muitos bytes)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Você atingiu seu limite diário de uploads de vídeos (muitos vídeos)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Você esgotou os vídeos disponíveis para assistir. Que tal descansar um pouco?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Sua conta" @@ -9735,7 +10508,7 @@ msgstr "Sua conta foi excluída" msgid "Your account has been suspended" msgstr "Sua conta foi suspensa" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Sua conta ainda não tem idade suficiente para enviar vídeos. Por favor, tente novamente mais tarde." @@ -9751,11 +10524,11 @@ msgstr "Sua conta violou os <0>Termos de Serviço do Bluesky Social. Foi env msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "Seu recurso foi enviado. Se o seu recurso for aceito, você receberá um e-mail." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Sua data de nascimento" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Seu navegador não suporta o formato de vídeo. Por favor, tente um navegador diferente." @@ -9771,13 +10544,15 @@ msgstr "Sua escolha será lembrada para links futuros. Você pode alterá-la a q msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Seu nome de usuário atual <0>{0} permanecerá automaticamente reservado para você. Você pode trocar de volta para ele a qualquer momento nesta conta." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "Seu e-mail foi atualizado mas não foi validado. Como próxima etapa, por favor verifique seu novo e-mail." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "Seu email" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Seu e-mail parece ser inválido." @@ -9786,15 +10561,11 @@ msgstr "Seu e-mail parece ser inválido." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "Seu email ainda não foi verificado. Por favor, verifique seu email para aproveitar todos os recursos do Bluesky." -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Seu e-mail ainda não foi verificado. Esta é uma etapa importante de segurança que recomendamos." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "Sua primeira curtida!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "Seus seguidores" @@ -9806,19 +10577,15 @@ msgstr "Seu feed inicial está vazio! Siga mais usuários para acompanhar o que msgid "Your full handle will be <0>@{0}" msgstr "Seu nome de usuário completo será <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "Seu nome de usuário completo será <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "Seus interesses" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "Seus interesses foram atualizados!" @@ -9835,31 +10602,35 @@ msgstr "Suas palavras silenciadas" msgid "Your password has been changed successfully!" msgstr "Sua senha foi alterada com sucesso!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "Sua senha deve ter no mínimo 8 caracteres." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Sua postagem foi publicada" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" -msgstr "Seus posts foram publicados" +msgstr "Suas postagens foram publicadas" #: src/screens/Onboarding/StepFinished.tsx:268 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Suas postagens, curtidas e bloqueios são públicos. Silenciamentos são privados." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "Seu idioma de preferência" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Seu perfil, postagens, feeds e listas não serão mais visíveis para outros usuários do Bluesky. Você pode reativar sua conta a qualquer momento fazendo login." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Sua resposta foi publicada" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "Sua denúncia será enviada para <0>{0}." @@ -9867,7 +10638,7 @@ msgstr "Sua denúncia será enviada para <0>{0}." msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Sua denúncia será enviada para o serviço de moderação do Bluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "Seus interesses escolhidos nos ajudam a entregar o conteúdo que interessa a você." diff --git a/src/locale/locales/pt-PT/messages.po b/src/locale/locales/pt-PT/messages.po index b1216040a7..0c2690b067 100644 --- a/src/locale/locales/pt-PT/messages.po +++ b/src/locale/locales/pt-PT/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: pt\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:52\n" +"PO-Revision-Date: 2025-08-12 01:46\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,7 +27,7 @@ msgstr "(ativo)" msgid "(contains embedded content)" msgstr "(contém conteúdo incorporado)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(sem e-mail)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# republicação} other {# republicações}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# segundo} other {# segundos}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# item não lido} other {# itens não lidos}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {# item não lido} other {# itens não lidos}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {#me} other {#me}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {seguidor} other {seguidores}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {a seguir} other {a seguir}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {gosto} other {gostos}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {gosto} other {gostos}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {publicação} other {publicações}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {citação} other {citações}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {republicação} other {republicações}}" @@ -135,6 +138,10 @@ msgstr "{0} <0>em <1>etiquetas" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>em <1>texto e etiquetas" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} a seguir" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "{0} está em direto" @@ -143,11 +150,15 @@ msgstr "{0} está em direto" msgid "{0} is not a valid URL" msgstr "{0} não é um URL válido" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "{0} não está disponível" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} aderiu esta semana" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} de {1}" @@ -164,8 +175,16 @@ msgstr "{0} reagiu com {1}" msgid "{0} reacted {1} to {2}" msgstr "{0} reagiu com {1} a {2}" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0}, um feed de {1}, gostado por {2}" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0}, uma lista de {1}" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "Foto de perfil de {0}" @@ -197,12 +216,12 @@ msgstr "{0}min" msgid "{0}s" msgstr "{0}seg" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# item não lido} other {# itens não lidos}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Pacote de iniciante de {displayName}" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {horas}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuto} other {minutos}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} seguiram-te" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} gostaram do seu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} gostaram da sua publicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} gostaram da sua republicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" -msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} removeram a sua verificação da sua conta" +msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} removeram as suas verificações da sua conta" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} repostaram a sua publicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} republicaram a sua republicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} registaram-se com o seu pacote de iniciante" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" -msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} verificaram-no" +msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} verificaram-te" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} seguiu-te" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} seguiu-te de volta" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} gostou do seu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} gostou da sua publicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} gostou da sua republicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} removeu a sua verificação da sua conta" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} republicou a sua publicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} republicou a sua republicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} registou-se com o seu pacote de iniciante" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} verificou-te" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" -msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} seguiram-no" +msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} seguiram-te" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} gostaram do seu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} gostaram da sua publicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} gostaram da sua republicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} removeram as suas verificações da sua conta" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} republicaram a sua publicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} republicaram a sua republicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} registaram-se com o seu pacote de iniciante" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" -msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} verificaram-no" +msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} verificaram-te" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} seguiu-te" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} seguiu-te de volta" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} gostou do seu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} gostou da sua publicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} gostou da sua republicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} removeu a sua verificação da sua conta" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} republicou a sua publicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} republicou a sua republicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} registou-se com o seu pacote de iniciante" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} verificou-te" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} a seguir" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "Não pode enviar mensagens a {handle}" @@ -392,7 +410,7 @@ msgstr "{joinedAllTimeCount, plural, other {# utilizadores aderiram}}!" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "{minutes, plural, one {# minuto} other {# minutos}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# item não lido} other {# itens não lidos}}" @@ -432,12 +450,12 @@ msgstr "Verificações de {userName}" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, {2, plural, one {# outro} other {# outros}} estão incluídos no seu pacote de iniciante" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, {2, plural, one {# outro} other {# outros}} estão incluídos no seu pacote de iniciante" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {seguidor} other {seguidores}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {a seguir} other {a seguir}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} e<1> <2>{1} estão incluídos no seu pacote de iniciante" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} está incluído no seu pacote de iniciante" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} membros" @@ -466,11 +484,11 @@ msgstr "<0>{0} membros" msgid "<0>{date} at {time}" msgstr "<0>{date} às {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Experimental: Quando esta preferência é habilitada, receberá apenas notificações de resposta e citação de utilizadores que segue. Iremos adicionar mais controlos aqui no futuro." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<0>Inicie sessão<1> ou <2>crie uma conta<3> <4>para procurar por notícias, desporto, política e tudo resto que acontece no Bluesky." -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Tu e<1> <2>{0} estão incluídos no seu pacote de iniciante" @@ -503,10 +521,14 @@ msgstr "uma mensagem" msgid "A new form of verification" msgstr "Uma nova forma de verificação" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "Uma captura de ecrã de uma página de perfil com um ícone de sino ao lado do botão seguir, indicando a nova funcionalidade de notificações de atividade." + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Sobre" @@ -524,25 +546,25 @@ msgstr "Aceitar pedido de conversa" msgid "Accept Request" msgstr "Aceitar Pedido" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Acessibilidade" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Definições de acessibilidade" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Conta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Conta seguida" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Conta silenciada" msgid "Account Muted by List" msgstr "Conta silenciada pela Lista" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Definições da conta" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Conta removida do acesso rápido" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Deixou de seguir conta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Removeu silenciamento da conta" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Contas com um selo de verificação azul recortado <0><1/> podem verificar outras. Estes verificadores confiáveis são selecionados pelo Bluesky." +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "Atividade de outros" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "Notificações de atividade" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Adicionar" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Adicione mais {0} para prosseguir" @@ -634,25 +666,25 @@ msgstr "Adicionar conta" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" -msgstr "Adicionar texto alt" +msgstr "Adicionar texto alternativo" #: src/view/com/composer/videos/SubtitleDialog.tsx:106 msgid "Add alt text (optional)" -msgstr "Adicionar texto alter. (Opcional)" +msgstr "Adicionar texto alternativo (opcional)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Adicionar outra conta" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Adicionar outra publicação" @@ -670,8 +702,8 @@ msgstr "Adicionar Palavra-passe da Aplicação" msgid "Add emoji reaction" msgstr "Adicionar reação de emoji" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Adicionar mais detalhes (opcional)" @@ -683,7 +715,7 @@ msgstr "Adicionar palavra silenciada com as definições escolhidas" msgid "Add muted words and tags" msgstr "Adicionar palavras/etiquetas bloqueadas" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Adicionar nova publicação" @@ -704,7 +736,7 @@ msgstr "Adicionar Reação" msgid "Add recommended feeds" msgstr "Adicionar feeds recomendados" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Adicione alguns feeds ao seu pacote de iniciante!" @@ -725,10 +757,6 @@ msgstr "Adicionar este feed aos seus feeds" msgid "Add to lists" msgstr "Adicionar a Listas" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Adicionar aos meus feeds" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "Adicionar utilizador à lista" @@ -738,11 +766,11 @@ msgstr "Adicionar utilizador à lista" msgid "Added to list" msgstr "Adicionado à lista" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Adicionado aos meus feeds" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "Detalhes adicionais (máximo de 1000 caracteres)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Detalhes adicionais (limite de 300 caracteres)" @@ -750,18 +778,18 @@ msgstr "Detalhes adicionais (limite de 300 caracteres)" msgid "Adult" msgstr "Adulto" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Conteúdo adulto" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." -msgstr "O conteúdo adulto só pode ser habilitado através da Web em <0>bsky.app." +msgstr "O conteúdo adulto só pode ser permitido através da Web em <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "O conteúdo adulto está desabilitado." @@ -770,16 +798,32 @@ msgstr "O conteúdo adulto está desabilitado." msgid "Adult Content labels" msgstr "Rótulos de Conteúdo Adulto" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Avançado" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "Verificação de Idade" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "Falha ao enviar o inquérito de verificação de idade. Por favor, tente novamente." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "O inquérito de verificação de idade foi enviado" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "A verificação de idade demora apenas alguns minutos" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "alice@exemplo.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Tudo" @@ -793,7 +837,7 @@ msgstr "Todas as contas foram seguidas!" msgid "All languages" msgstr "Todos os idiomas" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Todos os feeds que guardou, num único lugar." @@ -802,16 +846,21 @@ msgstr "Todos os feeds que guardou, num único lugar." msgid "Allow access to your direct messages" msgstr "Permitir acesso às suas mensagens diretas" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Permitir novas mensagens de" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "Permitir que outros sejam notificados sobre as suas publicações" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Permitir citações" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Permitir respostas de:" @@ -828,13 +877,13 @@ msgstr "Já tem um código?" msgid "Already signed in as @{0}" msgstr "Já iniciou sessão como @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "Texto alternativo" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Texto Alternativo" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "O texto alternativo descreve conteúdo multimédia para utilizadores de visão reduzida ou cegos, e ajuda a dar contexto para todos." @@ -861,27 +910,19 @@ msgstr "O texto alternativo será truncado. {MAX_ALT_TEXT, plural, one {}other { msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Um e-mail foi enviado para {0}. Ele inclui um código de confirmação que pode inserir abaixo." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "Um e-mail foi enviado para o seu endereço anterior, {currentEmail}. Ele inclui um código de confirmação que pode inserir abaixo." - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Um e-mail foi enviado! Insira o código de confirmação incluído no e-mail." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Ocorreu um erro" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Ocorreu um erro" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Ocorreu um erro ao comprimir o vídeo." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "Ocorreu um erro ao obter o feed." @@ -889,11 +930,11 @@ msgstr "Ocorreu um erro ao obter o feed." msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Ocorreu um erro enquanto gerava o seu pacote de iniciante. Deseja tentar novamente?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Ocorreu um erro enquanto carregava o vídeo. Tente novamente mais tarde." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Ocorreu um erro enquanto carregava o vídeo. Tente novamente." @@ -910,7 +951,7 @@ msgstr "Ocorreu um erro enquanto selecionava o vídeo" msgid "An error occurred while trying to follow all" msgstr "Ocorreu um erro enquanto tentava seguir todos" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Ocorreu um erro enquanto transferia o vídeo." @@ -934,8 +975,8 @@ msgstr "Ocorreu um problema ao tentar abrir a conversa" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "ocorreu um erro desconhecido" msgid "an unknown labeler" msgstr "um rotulador desconhecido" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "e" @@ -963,10 +1004,14 @@ msgstr "e" msgid "Animals" msgstr "Animais" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "GIF animado" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "Comunicado" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "Anunciando verificação no Bluesky" @@ -980,7 +1025,13 @@ msgstr "Comportamento antissocial" msgid "Anybody can interact" msgstr "Qualquer um pode interagir" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "Qualquer um que me segue" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "A palavra-passe da aplicação deve conter apenas letras, números, espa msgid "App password names must be at least 4 characters long" msgstr "A palavra-passe da aplicação deve conter pelo menos 4 caracteres" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Palavras-passe da Aplicação" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Palavras-passe da Aplicação" @@ -1029,7 +1080,7 @@ msgstr "Recorrer" #: src/components/moderation/LabelsOnMeDialog.tsx:268 msgid "Appeal \"{0}\" label" -msgstr "Recorrer de rótulo \"{0}\"" +msgstr "Recorrer do rótulo \"{0}\"" #: src/components/moderation/LabelsOnMeDialog.tsx:258 #: src/screens/Messages/components/ChatDisabled.tsx:91 @@ -1040,11 +1091,11 @@ msgstr "Recurso submetido" #: src/screens/Takendown.tsx:111 #: src/screens/Takendown.tsx:144 msgid "Appeal suspension" -msgstr "Recorrer de suspensão" +msgstr "Recorrer da suspensão" #: src/screens/Takendown.tsx:114 msgid "Appeal Suspension" -msgstr "Recorrer de Suspensão" +msgstr "Recorrer da Suspensão" #: src/screens/Messages/components/ChatDisabled.tsx:51 #: src/screens/Messages/components/ChatDisabled.tsx:53 @@ -1053,10 +1104,10 @@ msgstr "Recorrer de Suspensão" msgid "Appeal this decision" msgstr "Recorrer desta decisão" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Aparência" @@ -1065,12 +1116,20 @@ msgstr "Aparência" msgid "Apply default recommended feeds" msgstr "Utilizar feeds recomendados" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "Aplicar Pull Request" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Arquivado desde {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Publicação arquivada" @@ -1078,7 +1137,7 @@ msgstr "Publicação arquivada" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Tem a certeza que deseja eliminar a palavra-passe da aplicação \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Tem a certeza que deseja eliminar esta mensagem. Ela somente será eliminada para você." @@ -1098,19 +1157,15 @@ msgstr "Tem a certeza que deseja sair desta conversa?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Tem a certeza que deseja sair desta conversa? As suas mensagens serão eliminadas para si, mas não para o outro participante." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Tem a certeza que deseja eliminar {0} dos seus feeds?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Tem a certeza que deseja eliminar isto dos seus feeds?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Tem a certeza que deseja descartar este rascunho?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Tem a certeza que deseja descartar esta publicação?" @@ -1131,28 +1186,25 @@ msgstr "Arte" msgid "Artistic or non-erotic nudity." msgstr "Nudez artística ou não erótica." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "Atribuir tópico para o algoritmo" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "No mínimo 3 caracteres" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "As definições de reprodução automática foram movidas para as <0>Definições de Multimédia e Conteúdo." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" -msgstr "Automaticamente reproduzir vídeos e GIFs" +msgstr "Reproduzir vídeos e GIFs automaticamente" + +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "Disponível" #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 @@ -1163,17 +1215,17 @@ msgstr "Automaticamente reproduzir vídeos e GIFs" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Voltar" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Voltar às Conversas" @@ -1195,28 +1247,44 @@ msgstr "Antes de criar um pacote de iniciante, deve verificar o seu e-mail." msgid "Before you can accept this chat request, you must first verify your email." msgstr "Antes de poder aceitar este pedido de conversa, precisa de verificar o seu e-mail." +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "Antes de poder receber notificações de publicações de {name}, primeiro tem de confirmar o seu e-mail." + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "Antes de poder enviar mensagens a outro utilizador, precisa de verificar o seu e-mail." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "Começar" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "Começar processo de verificação de idade" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "Comece o processo de verificação de idade, preenchendo os campos abaixo." + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Aniversário" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Bloquear" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Bloquear" msgid "Block account" msgstr "Bloquear conta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Bloquear conta?" @@ -1262,20 +1330,20 @@ msgstr "Bloquear utilizador" msgid "Block User" msgstr "Bloquear Utilizador" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Bloqueado" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Contas bloqueadas" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Contas Bloqueadas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Contas bloqueadas não conseguem responder aos seus fios, mencionar ou interagir de qualquer outra forma consigo." @@ -1284,11 +1352,11 @@ msgstr "Contas bloqueadas não conseguem responder aos seus fios, mencionar ou i msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Contas bloqueadas não conseguem responder aos seus fios, mencionar ou interagir de qualquer outra forma consigo. Não irá ver o conteúdo delas e elas serão impedidas de verem o seu." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Publicação bloqueada." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Bloquear não impede o rotulador de aplicar rótulos na sua conta." @@ -1309,11 +1377,12 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "O Bluesky não pode confirmar a veracidade da data aplicada." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1347,6 +1416,14 @@ msgstr "O Bluesky não exibirá o seu perfil e publicações para utilizadores q msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "O Bluesky irá verificar proativamente contas notáveis e autênticas." +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "Diretrizes da Comunidade do Bluesky" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "Diretrizes da Comunidade do Bluesky Atualizadas" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,25 +1445,22 @@ msgstr "Desfocar imagens e filtrar dos feeds" msgid "Books" msgstr "Livros" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" -msgstr "Procure mais contas na página \"Explorar\"" +msgstr "Procure mais contas na página Explorar" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" -msgstr "Procure mais feeds na página \"Explorar\"" +msgstr "Procure mais feeds na página Explorar" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" -msgstr "Procurar por mais sugestões" +msgstr "Procurar mais sugestões" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" -msgstr "Busque mais sugestões na página de Exploração" +msgstr "Procure mais sugestões na página Explorar" #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Emprego" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Por {0}" @@ -1428,15 +1502,23 @@ msgstr "Por {0}" msgid "By <0>{0}" msgstr "Por <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "Ao clicar em \"Continuar\" confirma que entende e concorda com estas atualizações." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "Ao continuar, concorda com os <0>Termos de Uso da KWS e reconhece que a KWS irá armazenar o seu estado de verificação com uma \"hash\" do seu endereço de e-mail de acordo com a <1>Política de Privacidade da KWS. Isto significa que não precisará de verificar novamente na próxima vez que usar este e-mail para outras aplicações, jogos e serviços fornecidos pela tecnologia KWS." + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Ao criar uma conta, concorda com a <0>Política de Privacidade." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Ao criar uma conta, concorda com os <0>Termos de Aplicação e a <1>Política de privacidade." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Ao criar uma conta, concorda com os <0>Termos de Aplicação." @@ -1448,14 +1530,17 @@ msgstr "Por si" msgid "Camera" msgstr "Câmara" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Câmara" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Cancelar" @@ -1500,11 +1582,7 @@ msgstr "Cancelar eliminação da conta" msgid "Cancel image crop" msgstr "Cancelar edição de imagem" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Cancelar edição do perfil" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Cancelar citação" @@ -1516,14 +1594,10 @@ msgstr "Cancelar reativação e terminar sessão" msgid "Cancel search" msgstr "Cancelar pesquisa" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Cancela a abertura do link" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Não pode interagir com um utilizador bloqueado" @@ -1534,59 +1608,46 @@ msgstr "Legendas (.vtt)" #: src/view/com/composer/videos/SubtitleDialog.tsx:40 #: src/view/com/composer/videos/SubtitleDialog.tsx:55 msgid "Captions & alt text" -msgstr "Legendas e texto alt" +msgstr "Legendas e texto alternativo" #: src/screens/Settings/components/Email2FAToggle.tsx:31 msgid "Change" -msgstr "Mudar" +msgstr "Alterar" #: src/screens/Settings/AppIconSettings/index.tsx:39 msgid "Change app icon" -msgstr "Mudar ícone da aplicação" +msgstr "Alterar ícone da aplicação" #: src/screens/Settings/AppIconSettings/index.tsx:38 #: src/screens/Settings/AppIconSettings/index.tsx:221 msgid "Change app icon to \"{0}\"" -msgstr "Mudar ícone da aplicação para \"{0}\"" +msgstr "Alterar ícone da aplicação para \"{0}\"" #: src/components/AppLanguageDropdown.tsx:40 msgid "Change app language" msgstr "Alterar idioma da aplicação" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Mudar endereço de e-mail" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" -msgstr "Mudar Nome de Utilizador" +msgstr "Alterar Nome de Utilizador" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Alterar serviço de moderação" #: src/view/com/modals/ChangePassword.tsx:153 msgid "Change Password" -msgstr "Mudar Palavra-passe" +msgstr "Alterar Palavra-passe" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:85 msgid "Change post language to {suggestedLanguageName}" -msgstr "Mudar idioma da publicação para {suggestedLanguageName}" +msgstr "Alterar idioma da publicação para {suggestedLanguageName}" #: src/components/moderation/ReportDialog/index.tsx:244 msgid "Change report reason" msgstr "Alterar motivo da denúncia" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Mudar o Seu E-mail" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Mudar o seu endereço de e-mail" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Muda o ícone da aplicação" @@ -1596,10 +1657,15 @@ msgstr "Muda o ícone da aplicação" msgid "Changes hosting provider" msgstr "Muda o fornecedor de hospedagem" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "Alterações guardadas" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Conversa" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Conversa eliminada" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "Mensagens de conversas - silencioso" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "Mensagens de conversas - com som" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Conversa silenciada" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "Caixa de pedidos de conversa" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Pedidos de conversa" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Definições da conversa" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Definições da Conversa" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Removeu o silenciamento da conversa" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Conversas" @@ -1661,7 +1738,7 @@ msgstr "Procure na sua caixa de entrada por um e-mail com o código de confirma msgid "Choose domain verification method" msgstr "Escolher método de verificação de domínio" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Escolher feeds" @@ -1669,7 +1746,7 @@ msgstr "Escolher feeds" msgid "Choose for me" msgstr "Escolha por mim" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Escolher pessoas" @@ -1685,23 +1762,23 @@ msgstr "Escolher esta cor como a sua foto de perfil" msgid "Choose your account provider" msgstr "Escolher o provedor da conta" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Escolha a sua própria cronologia! Feeds construídos pela comunidade permitem-lhe encontrar o conteúdo que tanto ama." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Escolha a sua palavra-passe" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Escolha o seu nome de utilizador" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Limpar todos os dados armazenados" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Limpar todos os dados armazenados (e reiniciar)" @@ -1714,23 +1791,27 @@ msgstr "Limpar cache de imagem" msgid "Clear search query" msgstr "Limpar pesquisa" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "Clique para mais informação" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "clique aqui" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "Clique aqui para reiniciar o processo de verificação." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "Clique aqui para atualizar o seu e-mail" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Clique para desativar citações para esta publicação." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Clique para ativar citações para esta publicação." @@ -1750,14 +1831,16 @@ msgstr "Clima" msgid "Clip 🐴 clop 🐴" msgstr "Clip 🐴 clop 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Clip 🐴 clop 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Fechar" @@ -1789,13 +1876,15 @@ msgstr "Fechar aviso" msgid "Close bottom drawer" msgstr "Fechar parte inferior" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Fechar janela de diálogo" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Fechar menu lateral" @@ -1804,7 +1893,7 @@ msgstr "Fechar menu lateral" msgid "Close emoji picker" msgstr "Fechar selecionador de emojis" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Fechar janela de diálogo de GIFs" @@ -1822,7 +1911,7 @@ msgstr "Fechar visualizador de imagens" msgid "Close menu" msgstr "Fechar menu" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Fechar esta janela de diálogo" @@ -1830,7 +1919,7 @@ msgstr "Fechar esta janela de diálogo" msgid "Closes password update alert" msgstr "Fecha o aviso de atualização de palavra-passe" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "Fechar compositor de publicação e descartar rascunho de publicação" @@ -1843,16 +1932,16 @@ msgstr "Fecha o selecionador de emojis" msgid "Closes viewer for header image" msgstr "Fecha o visualizador de imagem de fundo" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Colapsar lista de utilizadores" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Colapsa lista de utilizadores para uma notificação" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Modo de cor" @@ -1870,7 +1959,8 @@ msgstr "Comédia" msgid "Comics" msgstr "Banda Desenhada" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Diretrizes da Comunidade" @@ -1879,38 +1969,34 @@ msgstr "Diretrizes da Comunidade" msgid "Complete onboarding and start using your account" msgstr "Complete e comece a utilizar a sua conta" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Conclua o desafio" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Escrever nova publicação" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" -msgstr "Compor publicações com até {0, plural, one {}other {# caracteres}} de comprimento" +msgstr "Compor publicações com até {0, plural, other {# caracteres}} de comprimento" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Escrever resposta" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "A comprimir vídeo..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Configurar definição de filtragem de conteúdo para a categoria: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Configurado nas <0>definições de moderação." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Confirmar definições de idioma do conteúdo" msgid "Confirm delete account" msgstr "Confirmar eliminação de conta" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Confirme a sua idade:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Confirme a sua data de nascimento" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Confirme a sua data de nascimento" msgid "Confirmation code" msgstr "Código de confirmação" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Código de confirmação" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "A conectar..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "Problema de conexão" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "Contacte a nossa equipa de moderação" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Contactar suporte" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "Contacte-nos" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Conteúdo e Multimédia" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Conteúdo e multimédia" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Conteúdo e Multimédia" @@ -1977,7 +2069,8 @@ msgstr "Conteúdo e Multimédia" msgid "Content Blocked" msgstr "Conteúdo Bloqueado" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Filtros de conteúdo" @@ -2006,10 +2099,12 @@ msgstr "Alerta de Conteúdo" msgid "Content warnings" msgstr "Alertas de conteúdo" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Backdrop do menu de contexto, toque para fechar o ecrã." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Continuar" msgid "Continue as {0} (currently signed in)" msgstr "Continuar como {0} (já tem sessão iniciada)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "Continuar fio" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Continuar fio..." @@ -2029,6 +2129,10 @@ msgstr "Continuar fio..." msgid "Continue to next step" msgstr "Continuar para o próximo passo" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "Conversa" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Copiado" msgid "Copied build version to clipboard" msgstr "Versão de compilação copiada para a área de transferência" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Copia a versão de compilação para a área de transferência" msgid "Copy" msgstr "Copiar" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "Copiar mesmo assim" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Copiar Palavra-passe da Aplicação" @@ -2087,8 +2187,8 @@ msgstr "Copiar Palavra-passe da Aplicação" msgid "Copy at:// URI" msgstr "Copiar at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Copiar DID do autor" @@ -2120,10 +2220,10 @@ msgstr "Copiar Link" msgid "Copy link to list" msgstr "Copiar Link para a Lista" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Copiar Link para a Publicação" @@ -2136,18 +2236,18 @@ msgstr "Copiar link para o perfil" msgid "Copy link to starter pack" msgstr "Copiar link para pacote de iniciante" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Copiar texto da mensagem" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Copiar at:// URI da publicação" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Copiar texto da publicação" @@ -2159,11 +2259,25 @@ msgstr "Copiar código QR" msgid "Copy TXT record value" msgstr "Copiar valor de registo TXT" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Política de Direitos de Autor" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "Não foi possível conectar com o feed personalizado" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "Não foi possível conectar com o serviço do feed" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "Não foi possível encontrar o perfil" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "Não foi possível silenciar a conversa" msgid "Could not process your video" msgstr "Não foi possível processar o seu vídeo" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "Não foi possível guardar as alterações: {0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "Não foi possível atualizar as definições de notificações" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Criar" @@ -2195,7 +2317,7 @@ msgstr "Criar um código QR para um pacote de iniciante" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Criar um pacote de iniciante" @@ -2205,21 +2327,22 @@ msgstr "Criar um pacote de iniciante para mim" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Criar conta" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Criar Conta" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Criar uma conta" @@ -2241,7 +2364,7 @@ msgstr "Criar outra" msgid "Create new account" msgstr "Criar conta nova" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Criar um relatório para {0}" @@ -2268,7 +2391,7 @@ msgstr "Personalizado" msgid "Customization options" msgstr "Definições de personalização" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Personalize quem pode interagir com esta publicação." @@ -2278,12 +2401,12 @@ msgstr "Personaliza a sua experiência Bluesky" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Escuro" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Escuro" @@ -2292,21 +2415,21 @@ msgstr "Escuro" msgid "Dark mode" msgstr "Modo escuro" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Tema escuro" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Data de nascimento" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Desativar conta" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Debug de Moderação" @@ -2314,7 +2437,7 @@ msgstr "Debug de Moderação" msgid "Debug panel" msgstr "Painel de debug" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Padrão" @@ -2322,8 +2445,8 @@ msgstr "Padrão" msgid "Default icons" msgstr "Ícones padrões" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Ícones padrões" msgid "Delete" msgstr "Eliminar" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Eliminar conta" @@ -2355,7 +2478,7 @@ msgstr "Eliminar palavra-passe da aplicação?" msgid "Delete chat" msgstr "Eliminar conversa" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Eliminar registo da conversa" @@ -2370,7 +2493,7 @@ msgstr "Eliminar conversa" msgid "Delete Conversation" msgstr "Eliminar Conversa" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Eliminar para mim" @@ -2378,11 +2501,11 @@ msgstr "Eliminar para mim" msgid "Delete list" msgstr "Eliminar lista" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Eliminar mensagem" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Eliminar mensagem para mim" @@ -2390,9 +2513,9 @@ msgstr "Eliminar mensagem para mim" msgid "Delete my account" msgstr "Eliminar a minha conta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Eliminar publicação" @@ -2409,11 +2532,11 @@ msgstr "Eliminar pacote de iniciante?" msgid "Delete this list?" msgstr "Eliminar esta lista?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Eliminar esta publicação?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Eliminado" @@ -2422,15 +2545,20 @@ msgstr "Eliminado" msgid "Deleted Account" msgstr "Conta Eliminada" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "Lista apagada" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Publicação eliminada." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Descrição" @@ -2440,19 +2568,19 @@ msgstr "Descrição demasiado longa" #: src/screens/Profile/Header/EditProfileDialog.tsx:390 msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" -msgstr "Descrição demasiado longa {DESCRIPTION_MAX_GRAPHEMES, plural, one {}other {O número máximo de caracteres é #.}}" +msgstr "Descrição demasiado longa. {DESCRIPTION_MAX_GRAPHEMES, plural, other {O número máximo de caracteres é #.}}" #: src/view/com/composer/GifAltText.tsx:150 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" -msgstr "Texto alt descritivo" +msgstr "Texto alternativo descritivo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Desvincular citação" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Desvincular citação?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Modo programador habilitado" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Definições de programador" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Janela de diálogo: ajustar quem pode interagir com esta publicação" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Escuro" @@ -2492,27 +2620,27 @@ msgstr "Desativar 2FA por e-mail" msgid "Disable Email 2FA" msgstr "Desativar 2FA por e-mail" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Desativar feedback tátil" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Desativar legendas" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Desativado" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Descartar" @@ -2520,11 +2648,11 @@ msgstr "Descartar" msgid "Discard changes?" msgstr "Descartar alterações?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Descartar rascunho?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Descartar publicação?" @@ -2542,7 +2670,7 @@ msgstr "Descobrir Feeds" msgid "Discover new custom feeds" msgstr "Descobrir novos feeds personalizados" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Descobrir Feeds Novos" @@ -2550,7 +2678,7 @@ msgstr "Descobrir Feeds Novos" msgid "Dismiss" msgstr "Ignorar" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Ignorar falha" @@ -2562,26 +2690,26 @@ msgstr "Ignorar guia de introdução" msgid "Dismiss interests" msgstr "Descartar interesses" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "Ignorar mensagem" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Ignorar esta secção" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" -msgstr "Exibir insígnias de texto alt maiores" +msgstr "Exibir insígnias de texto alternativo maiores" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Nome de exibição" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Nome de Exibição" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "O nome exibido é demasiado longo" @@ -2603,15 +2731,11 @@ msgstr "Não aplicar esta palavra silenciada a utilizadores que segue" msgid "Does not include nudity." msgstr "Não inclui nudez." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Não começa ou acaba com um hífen" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Domínio verificado!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Não tem um código ou precisa de um novo? <0>Clique aqui." @@ -2619,6 +2743,15 @@ msgstr "Não tem um código ou precisa de um novo? <0>Clique aqui." msgid "Don't see an email? <0>Click here to resend." msgstr "Não vê um e-mail? <0>Clique aqui para reenviar." +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "Não mostrar novamente" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "Não se preocupe! Todas as mensagens e configurações existentes serão guardadas e estarão disponíveis assim que verificar ser um adulto." + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "Toque duplo ou toque prolongadamente a mensagem para adicionar uma reaç msgid "Double tap to close the dialog" msgstr "Toque duplo para fechar janela de diálogo" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Toque duplo para dar um gosto" @@ -2673,7 +2806,7 @@ msgstr "Transferir Bluesky" msgid "Download CAR file" msgstr "Transferir ficheiro CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Solte para adicionar imagens" @@ -2689,18 +2822,10 @@ msgstr "p. e.x. Alice" msgid "e.g. Alice Lastname" msgstr "p. e.x. Alice **Sobrenome**" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "p. e.x. Alice Roberts" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "p. e.x. alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "p. e.x. Artista, amante de cães, e uma leitora ávida." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "p. e.x. nudez artística." @@ -2719,16 +2844,17 @@ msgstr "p. e.x. Os autores que nunca falham." #: src/view/com/modals/CreateOrEditList.tsx:291 msgid "e.g. Users that repeatedly reply with ads." -msgstr "p. e.x. Utilizadores que repetidamente respondem com anúncios." +msgstr "p. e.x. Utilizadores que respondem com anúncios repetidamente." #: src/view/com/modals/InviteCodes.tsx:97 msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Cada código funciona uma única vez. Receberá mais convites periodicamente." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Editar" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Editar" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Editar foto de perfil" @@ -2749,12 +2875,12 @@ msgstr "Editar feeds" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Editar imagem" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Editar definições de interação" @@ -2776,33 +2902,33 @@ msgstr "Editar estado \"em direto\"" msgid "Edit Moderation List" msgstr "Editar lista de Moderação" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Editar os Meus Feeds" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Editar o meu Perfil" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "Editar notificações de {0}" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Editar Pessoas" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Editar definições de interação da publicação" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Editar perfil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Editar Perfil" @@ -2814,19 +2940,11 @@ msgstr "Editar pacote de iniciante" msgid "Edit User List" msgstr "Editar Lista de Utilizadores" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Editar quem pode responder" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Editar o seu nome de exibição" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Editar a descrição do perfil" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Editar o seu pacote de iniciante" @@ -2839,8 +2957,8 @@ msgstr "Educação" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "Ou foi bloqueado pelo criador desta lista ou bloqueou o criador." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "E-mail" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "2FA por e-mail desativada" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "2FA por e-mail ativada" @@ -2865,10 +2983,6 @@ msgstr "E-mail reenviado" msgid "Email sent!" msgstr "E-mail enviado!" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "E-mail Atualizado!" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "Verificação de e-mail concluída!" @@ -2883,8 +2997,8 @@ msgstr "Código HTML incorporado" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Incorporar publicação" @@ -2892,7 +3006,7 @@ msgstr "Incorporar publicação" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incorpore esta publicação no seu site. Simplesmente copie o seguinte excerto e cole-o no código HTML do seu site." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Reprodutor de vídeos incorporado" @@ -2900,15 +3014,15 @@ msgstr "Reprodutor de vídeos incorporado" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111 #: src/screens/Settings/components/Email2FAToggle.tsx:31 msgid "Enable" -msgstr "Habilitar" +msgstr "Ativar" #: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" msgstr "Habilitar {0} apenas" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" -msgstr "Habilitar conteúdo adulto" +msgstr "Permitir conteúdo adulto" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92 msgid "Enable email 2FA" @@ -2917,20 +3031,24 @@ msgstr "Ativar 2FA por e-mail" #: src/components/dialogs/EmbedConsent.tsx:81 #: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" -msgstr "Habilitar conteúdo multimédia externo" +msgstr "Permitir conteúdo multimédia externo" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" -msgstr "Habilitar reprodutores de multimédia para" +msgstr "Permitir reprodutores de multimédia para" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Habilitar notificações prioritárias" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "Ative as notificações de uma conta visitando o perfil desta e pressionando o <0>ícone de sino <1/>." -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "Ativar notificações push" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" -msgstr "Habilitar legendas" +msgstr "Ativar legendas" #: src/components/dialogs/EmbedConsent.tsx:93 msgid "Enable this source only" @@ -2939,21 +3057,18 @@ msgstr "Habilitar apenas para esta fonte" #: src/screens/Settings/ContentAndMediaSettings.tsx:132 #: src/screens/Settings/ContentAndMediaSettings.tsx:146 msgid "Enable trending topics" -msgstr "Habilitar assuntos do momento" - -#: src/screens/Settings/ContentAndMediaSettings.tsx:167 -msgid "Enable trending videos in your Discover feed" -msgstr "Habilitar vídeos do momento no seu feed \"Descobrir\"" +msgstr "Ativar assuntos do momento" #: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Habilitar vídeos do momento no seu feed de \"Descobrir\"." +#: src/screens/Settings/ContentAndMediaSettings.tsx:167 +msgid "Enable trending videos in your Discover feed" +msgstr "Permitir vídeos do momento no seu feed Descobrir" -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" -msgstr "Habilitado" +msgstr "Permitido" #: src/screens/Profile/Sections/Feed.tsx:113 msgid "End of feed" @@ -2963,7 +3078,7 @@ msgstr "Fim do feed" msgid "Ensure you have selected a language for each subtitle file." msgstr "Certifique-se de que selecionou um idioma para cada ficheiro de legendas." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Insira uma palavra-passe" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Insira uma palavra ou tag" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "Insira o código" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Inserir Código" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Entrar em ecrã cheio" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Insira a sua data de nascimento" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Insira o seu e-mail" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Insira o novo e-mail abaixo." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Insira a sua palavra-passe" @@ -3022,7 +3129,7 @@ msgstr "Insira a sua palavra-passe" msgid "Enter your username and password" msgstr "Insira o seu nome de utilizador e palavra-passe" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Entra em ecrã cheio" @@ -3030,16 +3137,28 @@ msgstr "Entra em ecrã cheio" msgid "Entertainment" msgstr "Entretenimento" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Erro" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "Erro ao carregar publicação" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "Erro ao carregar preferência" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "Mensagem de erro" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Ocorreu um erro ao guardar o ficheiro" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Ocorreu um erro ao obter a resposta do captcha." @@ -3047,27 +3166,34 @@ msgstr "Ocorreu um erro ao obter a resposta do captcha." msgid "Error:" msgstr "Erro:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "Erro: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Todos" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Todos podem responder" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Todos podem responder a esta publicação." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Todos" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "Tudo o resto" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Excluir utilizadores que eu sigo" msgid "Excludes users you follow" msgstr "Exclui utilizadores que sigo" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Sair do ecrã cheio" @@ -3104,26 +3230,30 @@ msgstr "Sai da visualização da imagem" #: src/view/com/lightbox/Lightbox.web.tsx:184 msgid "Expand alt text" -msgstr "Expandir texto alt" +msgstr "Expandir texto alternativo" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Expandir lista de utilizadores" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Expandir ou colapsar a publicação completa a que está a responder" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "Expandir texto da publicação" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Expande ou colapsa o texto da publicação" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "Era esperado que o URI fosse resolvido para um registo" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Experimental" @@ -3153,15 +3283,15 @@ msgstr "Conteúdo multimédia explícito ou perturbador." msgid "Explicit sexual images." msgstr "Imagens sexuais explícitas." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "Explorar" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Exportar os meus dados" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Conteúdo Multimédia Externo" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "O conteúdo multimédia externo pode permitir que sites recolham informações sobre si ou o seu dispositivo. Nenhuma informação é enviada ou solicitada até pressionar o botão \"Reproduzir\"." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Preferências de Conteúdo Multimédia Externo" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "Falha ao aceitar solicitação de conversa" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "Falhou ao adicionar reação emoji" @@ -3211,8 +3341,8 @@ msgstr "Falha ao criar uma palavra-passe da aplicação. Tente novamente." msgid "Failed to create conversation" msgstr "Falha ao criar conversa" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Falha ao criar o pacote de iniciante" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "Falha ao eliminar conversa" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Falha ao eliminar mensagem" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Falha ao eliminar a publicação, tente novamente" @@ -3238,8 +3368,8 @@ msgstr "Falha ao eliminar a publicação, tente novamente" msgid "Failed to delete starter pack" msgstr "Falha ao eliminar o pacote de iniciante" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "Falha ao carregar as conversas" @@ -3250,14 +3380,32 @@ msgstr "Falha ao carregar as conversas" msgid "Failed to load feeds preferences" msgstr "Falha ao carregar preferências de feeds" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Falha ao carregar GIFs" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "Falha ao carregar definições de notificações." + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Falhou ao carregar mensagens antigas" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "Falha ao carregar preferência." + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Falhou ao carregar feeds sugeridos" msgid "Failed to load suggested follows" msgstr "Falhou ao carregar contas sugeridas" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "Falha ao marcar todas as solicitações como lidas" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Falhou ao afixar a publicação" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "Falhou ao remover reação emoji" @@ -3291,15 +3439,11 @@ msgstr "Falhou ao remover verificação" msgid "Failed to save image: {0}" msgstr "Falhou ao guardar a imagem: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Falhou ao guardar preferências de notificação. Por favor, tente novamente" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "Falhou ao guardar as definições. Por favor, tente novamente." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "Falhou ao guardar os seus interesses." @@ -3318,7 +3462,7 @@ msgstr "Falha ao enviar o e-mail. Por favor, tente novamente." msgid "Failed to submit appeal, please try again." msgstr "Falhou ao submeter recurso. Por favor, tente novamente." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Falha ao alterar o estado de silenciamento do fio de discussão, por favor tente novamente" @@ -3335,7 +3479,11 @@ msgstr "Falha ao atualizar o e-mail. Por favor, tente novamente." msgid "Failed to update feeds" msgstr "Falhou ao atualizar feeds" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "Falha ao atualizar declaração de notificação" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Falhou ao atualizar definições" @@ -3354,15 +3502,23 @@ msgstr "Falha ao verificar o e-mail. Por favor, tente novamente." msgid "Failed to verify handle. Please try again." msgstr "Falhou ao tentar alterar o nome de utilizador. Por favor, tente novamente." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Feed" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Feed por {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "Criador do feed" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "Identificador do feed" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Menu de feed" @@ -3371,35 +3527,39 @@ msgstr "Menu de feed" msgid "Feed toggle" msgstr "Alternar feed" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "Feed indisponível" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Feedback" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Feedback enviado!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Feeds" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Feeds são algoritmos personalizados que utilizadores constroem com pouca experiência em programação. <0/> para mais informação." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Feeds atualizados!" @@ -3428,6 +3588,14 @@ msgstr "Filtrar pesquisa por idioma" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtrar pesquisa por idioma (atualmente: {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "Filtrar quem pode optar por receber notificações da sua atividade" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "Filtrar de quem você recebe notificações" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "A finalizar" @@ -3448,7 +3616,7 @@ msgstr "Encontrar pessoas para seguir" msgid "Find posts, users, and feeds on Bluesky" msgstr "Procure publicações, utilizadores, e feeds no Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Terminar" @@ -3456,17 +3624,17 @@ msgstr "Terminar" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Preto sólido" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Azul sólido" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Branco sólido" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Flexível" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Seguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Seguir {0}" @@ -3518,7 +3686,7 @@ msgstr "Seguir conta" msgid "Follow all" msgstr "Seguir todos" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Seguir de volta" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Seguir de volta" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Seguido por <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Seguido por <0>{0} e {1, plural, one {# outro} other {# outros}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Seguido por <0>{0} e <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Seguido por <0>{0}, <1>{1} e {2, plural, one {# outro} other {# outros}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Seguidores de @{0} que conhece" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Seguidores que conhece" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "A seguir" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "A seguir" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "A seguir {0}" @@ -3579,8 +3751,8 @@ msgstr "A seguir {handle}" msgid "Following feed preferences" msgstr "Preferências do feed A seguir" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Preferências do feed A seguir" @@ -3592,11 +3764,11 @@ msgstr "Segue-te" msgid "Follows You" msgstr "Segue-te" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Tipo de letra" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Tamanho de letra" @@ -3613,7 +3785,7 @@ msgstr "Por motivos de segurança, precisamos de enviar um código de confirmaç msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Por motivos de segurança, não poderá ver isto novamente. Se você perder esta palavra-passe da aplicação, precisará de gerar uma nova." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Para a melhor experiência, recomendamos o uso do tipo de letra do tema." @@ -3643,11 +3815,15 @@ msgstr "Esqueceu?" msgid "Frequently Posts Unwanted Content" msgstr "Publica frequentemente conteúdo indesejado" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "De" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "De @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "De <0/>" @@ -3660,14 +3836,68 @@ msgstr "Galeria" msgid "Generate a starter pack" msgstr "Gerar um pacote de iniciante" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Obter ajuda" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "Receber notificações quando pessoas te seguirem." + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "Receber notificações quando pessoas gostarem de publicações que tenha republicado." + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "Receber notificações quando pessoas gostarem das suas publicações." + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "Receber notificações quando pessoas te mencionarem." + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "Receber notificações quando pessoas citarem suas publicações." + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "Receber notificações quando pessoas responderem às suas publicações." + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "Receber notificações quando pessoas republicarem publicações que tenha republicado." + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "Receber notificações quando pessoas republicarem as suas publicações." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "Receber notificações de novas publicações" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Receber notificações de publicações e respostas de contas que escolher." + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "Receber notificações de novas publicações de {name}" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "Receber notificações da atividade desta conta" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "Receber notificações quando {name} fizer uma publicação" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "Receber notificações quando alguém fizer uma publicação" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "Vamos começar" @@ -3688,14 +3918,16 @@ msgstr "Dê um rosto ao seu perfil" msgid "Glaring violations of law or terms of service" msgstr "Violações flagrantes das leis ou termos de serviço" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "Entrar em direto" msgid "Go live for" msgstr "Entrar em direto por" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "Ir para o perfil de {firstAuthorName}" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "Ir para as definições da conta" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Ir para a conversa com {0}" @@ -3779,8 +4017,8 @@ msgstr "Conteúdo Multimédia Gráfico" msgid "Half way there!" msgstr "Metade já está!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Nome de utilizador" @@ -3797,7 +4035,7 @@ msgstr "Nome de utilizador alterado!" msgid "Handle too long. Please try a shorter one." msgstr "Nome de utilizador demasiado longo. Por favor, tente um mais curto." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Vibração" @@ -3806,7 +4044,7 @@ msgstr "Vibração" msgid "Harassment, trolling, or intolerance" msgstr "Assédio, \"trolling\" ou intolerância" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Hashtag" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Hashtag {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "Tem um código? <0>Clique aqui." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Está com problemas?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Ajuda" @@ -3839,8 +4077,13 @@ msgstr "Carregue uma foto de perfil para ajudar as pessoas a saber que não é u msgid "Here is your app password!" msgstr "Aqui está a sua palavra-passe de aplicação!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "Olá 👋" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Oculto" @@ -3848,16 +4091,16 @@ msgstr "Oculto" msgid "Hidden by your moderation settings." msgstr "Oculto pelas suas definições de moderação." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Lista oculta" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Lista oculta" msgid "Hide" msgstr "Ocultar" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Ocultar" @@ -3875,18 +4118,18 @@ msgstr "Ocultar" msgid "Hide customization options" msgstr "Ocultar definições de personalização" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Ocultar publicação para mim" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Ocultar resposta para todos" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Ocultar resposta para mim" @@ -3894,12 +4137,12 @@ msgstr "Ocultar resposta para mim" msgid "Hide this card" msgstr "Ocultar este cartão" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Ocultar esta publicação?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Ocultar essa resposta?" @@ -3913,11 +4156,11 @@ msgstr "Ocultar tendências" msgid "Hide trending topics?" msgstr "Ocultar tendências?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Ocultar vídeos em tendência?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Ocultar lista de utilizadores" @@ -3926,32 +4169,32 @@ msgstr "Ocultar lista de utilizadores" msgid "Hide verification badges" msgstr "Ocultar selos de verificação" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Oculta o conteúdo" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm, ocorreu algum tipo de problema ao contactar com o servidor do feed. Por favor, avise o proprietário do feed acerca deste problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm, o servidor de feed parece estar mal configurado. Por favor, informe o proprietário do feed acerca deste problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm, o servidor de feed parece estar offline. Por favor, informe o proprietário do feed acerca deste problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm, o servidor de feed forneceu uma resposta incorreta. Por favor, informe o proprietário do feed acerca deste problema." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, estamos com dificuldade em encontrar este feed. Ele pode ter sido eliminado." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmmmm, parece que estamos com dificuldade em carregar estes dados. Veja abaixo para mais detalhes. Se este problema persistir, por favor, entre em contacto connosco." @@ -3959,15 +4202,15 @@ msgstr "Hmmmm, parece que estamos com dificuldade em carregar estes dados. Veja msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, não foi possível carregar esse serviço de moderação." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Aguarde! Estamos a dar acesso a vídeo gradualmente e ainda está em fila de espera. Volte mais tarde!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Início" @@ -3984,10 +4227,10 @@ msgstr "Fornecedor de hosting" msgid "Hot" msgstr "Popular" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Respostas em destaque primeiro" @@ -3996,10 +4239,6 @@ msgstr "Respostas em destaque primeiro" msgid "How should we open this link?" msgstr "Como devemos abrir este link?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4017,9 +4256,9 @@ msgstr "Entendo" #: src/view/com/lightbox/Lightbox.web.tsx:186 msgid "If alt text is long, toggles alt text expanded state" -msgstr "Se o texto alt for longo, alterna o estado de texto alt expandido" +msgstr "Se o texto alternativo for longo, alterna para o estado de texto alternativo expandido" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Se ainda não é considerado um adulto pelas leis do seu país, um parente ou responsável legal deve ler estes Termos em seu nome." @@ -4031,11 +4270,11 @@ msgstr "Se eliminar esta lista, não será capaz de a recuperar." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Se tiver o seu próprio domínio, pode usá-lo como nome de utilizador. Isso permite-lhe auto-verificar a sua identidade. <0>Saiba mais aqui." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "Se precisa de atualizar o seu e-mail, <0>clique aqui." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Se remover esta publicação, não será capaz de a recuperar." @@ -4045,7 +4284,11 @@ msgstr "Se atualizar o seu endereço de e-mail, a 2FA por e-mail será desativad #: src/view/com/modals/ChangePassword.tsx:160 msgid "If you want to change your password, we will send you a code to verify that this is your account." -msgstr "Se pretende alterar a sua palavra-passe, enviaremos-lhe um código para verificar que esta é a sua conta." +msgstr "Se pretende alterar a sua palavra-passe, vamos enviar-lhe um código para verificar que esta é a sua conta." + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "Se quer restringir quem pode receber notificações da atividade da sua conta, pode alterar isso em <0>Definições → Privacidade e Segurança." #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." @@ -4053,7 +4296,7 @@ msgstr "Se é programador, pode hospedar o seu próprio servidor." #: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 msgid "If you're trying to change your handle or email, do so before you deactivate." -msgstr "Se está a tentar mudar o seu nome de utilizador ou e-mail, faça-o antes de desativar." +msgstr "Se está a tentar alterar o seu nome de utilizador ou e-mail, faça-o antes de desativar." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:38 #: src/lib/moderation/useReportOptions.ts:38 @@ -4091,13 +4334,41 @@ msgstr "Identidade falsa ou falsas afirmações sobre identidade ou afiliação" msgid "Impersonation, misinformation, or false claims" msgstr "Identidade falsa, desinformação ou afirmações falsas" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "Na aplicação" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "Notificações na aplicação" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "Na aplicação, Todos" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "Na aplicação, Pessoas que segue" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "Na aplicação, Push" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "Na aplicação, Push, Todos" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "Na aplicação, Push, Pessoas que segue" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Mensagens inapropriadas ou links explícitos" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "Caixa de entrada vazia!" @@ -4105,7 +4376,7 @@ msgstr "Caixa de entrada vazia!" msgid "Incorrect username or password" msgstr "Nome de utilizador ou palavra-passe incorretos" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Introduza o código enviado para o seu e-mail para redefinir palavra-passe" @@ -4113,7 +4384,7 @@ msgstr "Introduza o código enviado para o seu e-mail para redefinir palavra-pas msgid "Input confirmation code for account deletion" msgstr "Introduza o código de confirmação para eliminar a conta" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Introduza a nova palavra-passe" @@ -4129,10 +4400,14 @@ msgstr "Introduza o código que lhe foi enviado por e-mail" msgid "Interaction limited" msgstr "Interação limitada" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Definições de interação" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "Introduzindo notificações de atividade" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Código de confirmação de 2FA inválido." msgid "Invalid handle. Please try a different one." msgstr "Nome de utilizador inválido. Por favor, tente um diferente." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Registo de publicação inválido ou não suportado" @@ -4158,7 +4433,7 @@ msgstr "Código de Verificação Inválido" msgid "Invite a Friend" msgstr "Convidar um amigo" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Código de convite" @@ -4186,15 +4461,15 @@ msgstr "Convide os seus amigos para seguirem os seus feeds e pessoas favoritas" msgid "Invites, but personal" msgstr "Convites, mas pessoais" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Está correto" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "De momento é só você! Adicione mais pessoas ao seu pacote de iniciante pesquisando acima." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "ID do trabalho: {0}" @@ -4220,11 +4495,27 @@ msgstr "Junte-se à conversa" msgid "Journalism" msgstr "Jornalismo" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "Mantenha-me informado" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "Política de Privacidade da KWS" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "Termos de Uso da KWS" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "Website da KWS" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Rotulado por {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Rotulado pelo autor." @@ -4237,7 +4528,7 @@ msgstr "Rótulos" msgid "Labels added" msgstr "Rótulos adicionados" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Rótulos são anotações em utilizadores e conteúdo. Eles podem ser usados para ocultar, avisar e categorizar a rede." @@ -4253,22 +4544,30 @@ msgstr "Rótulos no seu conteúdo" msgid "Language selection" msgstr "Seleção de idioma" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Definições de Idioma" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Idiomas" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Maior" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "Iniciado pela última vez há {timeAgo}" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "Iniciado pela última vez agora mesmo" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Mais recentes" @@ -4282,7 +4581,6 @@ msgstr "saber mais" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "Saber mais" @@ -4290,6 +4588,10 @@ msgstr "Saber mais" msgid "Learn More" msgstr "Saber mais" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "Saiba mais sobre a verificação de idade" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Saiba mais sobre o Bluesky" @@ -4298,15 +4600,23 @@ msgstr "Saiba mais sobre o Bluesky" msgid "Learn more about self hosting your PDS." msgstr "Saiba mais sobre como hospedar o seu PDS." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "Saiba mais sobre a moderação aplicada a este conteúdo" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Saiba mais sobre a moderação aplicada a este conteúdo." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "Saiba mais sobre estas alterações e como partilhar as suas ideias connosco, <0>lendo a nossa publicação no blog." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Saiba mais sobre estas alterações e como partilhar as suas ideias connosco, lendo a nossa publicação no blog." + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Saiba mais sobre este aviso" @@ -4316,12 +4626,16 @@ msgstr "Saiba mais sobre este aviso" msgid "Learn more about verification on Bluesky" msgstr "Saiba mais sobre a verificação no Bluesky (em inglês)" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Saiba mais sobre o que é público no Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "Saiba mais nas suas <0>definições de conta." + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Saber mais." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Sair da conversa" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Deixe todos desmarcados para ver qualquer idioma." +msgid "Leave them all unselected to see any language." +msgstr "Deixe todos por selecionar para ver qualquer idioma." -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Sair do Bluesky" @@ -4370,7 +4685,7 @@ msgstr "Vamos lá!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Claro" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Gostar" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Gosto ({0, plural, one {# gosto} other {# gostos}})" @@ -4397,6 +4712,10 @@ msgstr "Deixe um \"gosto\" em 10 publicações" msgid "Like 10 posts to train the Discover feed" msgstr "Deixe um \"gosto\" em 10 publicações para ajudar a treinar o seu feed \"Descobrir\"" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "Notificações de gostos" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Gostar deste feed" @@ -4405,8 +4724,8 @@ msgstr "Gostar deste feed" msgid "Like this labeler" msgstr "Gostar deste rotulador" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Gostado por" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Gostado por" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Gostado por {0, plural, one {# utilizador} other {# utilizadores}}" @@ -4428,20 +4747,36 @@ msgstr "Gostado por {0, plural, one {# utilizador} other {# utilizadores}}" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Gostado por {likeCount, plural, one {# utilizador} other {# utilizadores}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Gostos" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "Gostos das suas republicações" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "Notificações de gostos nas suas republicações" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Gostos nesta publicação" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Linear" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Lista" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Lista bloqueada" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Lista por {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "Lista por <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Lista por si" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "Criador da lista" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Silenciamento da lista removido " -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Listas" @@ -4537,7 +4876,7 @@ msgstr "Carregar mais" msgid "Load more suggested feeds" msgstr "Carregar mais feeds sugeridos" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Carregar novas notificações" @@ -4552,11 +4891,11 @@ msgstr "Carregar novas publicações" msgid "Loading..." msgstr "A carregar..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Registo" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Visibilidade do perfil" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logótipo por @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logótipo por <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Logótipo por <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Mantenha premido para abrir o menu da tag para #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Tem o seguinte formato: XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "Ajustar as definições de e-mail para a sua conta" msgid "Make one for me" msgstr "Faça um para mim" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Certifique-se de que é para aqui que pretende ir!" @@ -4606,7 +4945,7 @@ msgstr "Certifique-se de que é para aqui que pretende ir!" msgid "Manage saved feeds" msgstr "Gerir feeds guardados" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "Gerir definições de verificação" @@ -4614,9 +4953,9 @@ msgstr "Gerir definições de verificação" msgid "Manage your muted words and tags" msgstr "Gerir as suas palavras silenciadas e tags" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "Marcar tudo como lido" @@ -4625,15 +4964,13 @@ msgstr "Marcar tudo como lido" msgid "Mark as read" msgstr "Marcar como lido" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "Tudo marcado como lido" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "Talvez mais tarde" @@ -4645,19 +4982,26 @@ msgstr "Multimédia" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Conteúdo multimédia que pode ser perturbador ou inapropriado para algumas audiências." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "Notificações de menções" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "utilizadores mencionados" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Utilizadores mencionados" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Menções" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Menu" @@ -4665,7 +5009,7 @@ msgstr "Menu" msgid "Message {0}" msgstr "Mensagem {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Mensagem eliminada" @@ -4674,11 +5018,11 @@ msgstr "Mensagem eliminada" msgid "Message deleted" msgstr "Mensagem apagada" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "Mensagem de @{0}: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Mensagem do servidor: {0}" @@ -4691,19 +5035,23 @@ msgstr "Campo de entrada de mensagem" msgid "Message is too long" msgstr "A mensagem é demasiado longa" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "Opções de mensagem" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Mensagens" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Meia-noite" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "Notificações diversas" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Conta enganadora" msgid "Misleading Post" msgstr "Publicação enganadora" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderação" @@ -4725,17 +5073,17 @@ msgstr "Moderação" msgid "Moderation details" msgstr "Detalhes de moderação" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Lista de moderação por {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Lista de moderação por <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Lista de moderação por si" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Lista de moderação atualizada" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Listas de moderação" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Listas de Moderação" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "definições de moderação" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Estados de moderação" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Ferramentas de moderação" @@ -4775,7 +5123,7 @@ msgstr "Ferramentas de moderação" msgid "Moderator has chosen to set a general warning on the content." msgstr "O moderador optou por definir um aviso geral sobre o conteúdo." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Mais" @@ -4790,13 +5138,13 @@ msgstr "Mais feeds" msgid "More options" msgstr "Mais opções" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Mais gostados primeiro" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Respostas mais gostadas primeiro" @@ -4808,8 +5156,8 @@ msgstr "Filmes" msgid "Music" msgstr "Música" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Silenciar" @@ -4819,8 +5167,8 @@ msgstr "Silenciar" msgid "Mute {tag}" msgstr "Silenciar {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4869,23 +5217,23 @@ msgstr "Silenciar esta palavra em tags apenas" #: src/components/dialogs/MutedWords.tsx:170 msgid "Mute this word until you unmute it" -msgstr "Silenciar esta palavra até a voltar a habilitar" +msgstr "Silenciar esta palavra até que a deixe de silenciar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Silenciar fio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Silenciar palavras e tags" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Contas silenciadas" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Contas Silenciadas" @@ -4898,7 +5246,7 @@ msgstr "Contas silenciadas têm as suas publicações removidas do seu feed e da msgid "Muted by \"{0}\"" msgstr "Silenciado por \"{0}\"" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Palavras e tags silenciadas" @@ -4911,7 +5259,7 @@ msgstr "Silenciar é privado. Contas silenciadas podem interagir consigo, mas n msgid "My Birthday" msgstr "O meu aniversário" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Os Meus Feeds" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Natureza" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Navegar para {0}" @@ -4958,11 +5306,11 @@ msgstr "Navega para o próximo ecrã" msgid "Navigates to your profile" msgstr "Navega para o seu perfil" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Precisa de o alterar?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "Precisa de denunciar uma violação de direitos de autor, uma solicitação legal ou um problema de conformidade regulatória?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Precisa de denunciar uma violação de direitos de autor?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Novo" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "{postsCount, plural, one {Nova publicação} other {Novas publicações}} de {firstAuthorLink}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "{postsCount, plural, one {Nova publicação} other {Novas publicações}} de {firstAuthorName}" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Nova conversa" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "Novo endereço de e-mail" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "Nova Funcionalidade" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "Notificações de novo seguidor" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "Novos seguidores" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Novas mensagens" msgid "New Moderation List" msgstr "Nova Lista de moderação" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Nova palavra-passe" @@ -5029,7 +5396,7 @@ msgstr "Nova Palavra-Passe" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Nova publicação" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Nova Publicação" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Novas publicações de {firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Novas publicações de {firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}}" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Janela de diálogo de informação para novo utilizador" @@ -5054,10 +5429,14 @@ msgstr "Janela de diálogo de informação para novo utilizador" msgid "New User List" msgstr "Nova Lista de Utilizadores" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Respostas mais recentes primeiro" @@ -5071,15 +5450,15 @@ msgstr "Notícias" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "Sem Painel DNS" msgid "No expiry set" msgstr "Sem expiração definida" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Não foram encontrados GIFs. Talvez haja um problema com o Tenor." @@ -5119,32 +5498,35 @@ msgstr "Sem imagem" msgid "No likes yet" msgstr "Sem gostos ainda" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Já não segue {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "Não mais do que {MAX_SERVICE_HANDLE_LENGTH, plural, other {# caracteres}}" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Sem mensagens ainda" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Sem notificações ainda!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Ninguém" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Ninguém, para além do autor, pode citar esta publicação." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "Sem publicações aqui" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Sem publicações ainda." @@ -5171,7 +5553,7 @@ msgstr "Sem resultados" msgid "No results for \"{0}\"." msgstr "Sem resultados para \"{0}\"." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Nenhum resultado encontrado" @@ -5179,9 +5561,9 @@ msgstr "Nenhum resultado encontrado" msgid "No results found for \"{query}\"" msgstr "Não foram encontrados resultados para \"{query}\"" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Não foram encontrados resultados para {query}" @@ -5189,7 +5571,7 @@ msgstr "Não foram encontrados resultados para {query}" msgid "No results." msgstr "Sem resultados." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Não foram encontrados resultados para \"{search}\"." @@ -5198,7 +5580,7 @@ msgstr "Não foram encontrados resultados para \"{search}\"." msgid "No thanks" msgstr "Não, obrigado" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Ninguém" @@ -5223,59 +5605,76 @@ msgstr "Ninguém foi encontrado. Tente pesquisar por outra pessoa." msgid "Non-sexual Nudity" msgstr "Nudez não sexual" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "Nenhuma" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "Não é seguido por ninguém que está a seguir" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Não Encontrado" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Nota sobre partilhar" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: o Bluesky é uma rede aberta e pública. Esta definição limita somente a visibilidade do seu conteúdo no site e aplicação do Bluesky, e outras aplicações podem não respeitar essa definição. O seu conteúdo pode ainda ser exibido para utilizadores sem sessão iniciada através de outras aplicações e sites." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "Nota: Esta publicação é apenas visível para utilizadores com sessão iniciada." + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Nada por aqui" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Filtros de notificações" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Definições de notificações" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Definições de Notificações" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Sons de notificações" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Sons de Notificações" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Notificações" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "Notificações de tudo o resto, como quando alguém adere através de um dos seus pacotes de iniciante." + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "agora" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Nudez ou conteúdo adulto não rotulado como tal" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Desligado" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Oh não!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "OK" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "OK" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Respostas mais antigas primeiro" @@ -5331,19 +5736,19 @@ msgstr "Respostas mais antigas primeiro" msgid "on<0><1/><2><3/>" msgstr "em<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Reiniciar a introdução" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "Um ou mais GIFs sem texto alternativo." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Uma ou mais imagens sem texto alternativo." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Um ou mais vídeos sem texto alternativo." @@ -5351,13 +5756,15 @@ msgstr "Um ou mais vídeos sem texto alternativo." msgid "Only .jpg and .png files are supported" msgstr "Apenas ficheiros .jpg e .png são suportados" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Apenas {0} pode responder." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Apenas contém letras, números e hífenes" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "Apenas seguidores que eu sigo" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Apenas ficheiros de imagem são suportados" msgid "Only WebVTT (.vtt) files are supported" msgstr "Apenas ficheiros WebVTT (.vtt) são suportados" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Ups! Algo de errado aconteceu!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Ups!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Abrir menu lateral" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Abrir selecionador de emojis" @@ -5416,7 +5822,7 @@ msgstr "Abrir menu de opções de feed" msgid "Open full emoji list" msgstr "Abrir lista completa de emojis" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Abrir link para {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Abrir link para {niceUrl}" msgid "Open message options" msgstr "Abrir opções de mensagem" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Abrir página de debug da moderação" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Abrir definições de palavras e tags silenciadas" @@ -5453,16 +5859,16 @@ msgstr "Abrir menu de partilha" msgid "Open starter pack menu" msgstr "Abrir menu de pacote de iniciante" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Abrir página do storybook" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Abrir registo do sistema" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Abre {numItems} opções" @@ -5480,7 +5886,7 @@ msgstr "Abre detalhes adicionais para uma entrada de debug" #: src/view/com/composer/videos/SubtitleDialog.tsx:44 msgid "Opens alt text dialog" -msgstr "Abre janela de diálogo de texto alt" +msgstr "Abre janela de diálogo de texto alternativo" #: src/view/com/composer/photos/OpenCameraBtn.tsx:71 msgid "Opens camera on device" @@ -5488,13 +5894,13 @@ msgstr "Abre câmara no dispositivo" #: src/view/com/composer/videos/SubtitleDialog.tsx:43 msgid "Opens captions and alt text dialog" -msgstr "Abre janela de diálogo para legendas e texto alt" +msgstr "Abre janela de diálogo para legendas e texto alternativo" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Abre janela de diálogo para alteração de nome de utilizador" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Abre o compositor" @@ -5502,7 +5908,7 @@ msgstr "Abre o compositor" msgid "Opens device photo gallery" msgstr "Abre galeria de fotos do dispositivo" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Abre selecionador de emojis" @@ -5520,15 +5926,19 @@ msgstr "Abre o processo para iniciar sessão com a sua conta Bluesky existente" msgid "Opens GIF select dialog" msgstr "Abre janela de diálogo para seleção de GIF" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Abre central de suporte no navegador" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "Abre link {0}" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Abre lista de códigos de convite" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "Abre janela de diálogo do estado \"em direto\"" @@ -5536,12 +5946,8 @@ msgstr "Abre janela de diálogo do estado \"em direto\"" msgid "Opens password reset form" msgstr "Abre formulário de redefinição de palavra-passe" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Abre o link" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Abre este perfil" @@ -5558,7 +5964,7 @@ msgstr "Opcionalmente, forneça informações adicionais abaixo:" msgid "Options:" msgstr "Opções:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Ou combine estas opções:" @@ -5600,6 +6006,10 @@ msgstr "Outra conta" msgid "Other..." msgstr "Outro..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "A nossa publicação no blog" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "A nossa equipa de moderação recebeu a sua denúncia." @@ -5608,7 +6018,7 @@ msgstr "A nossa equipa de moderação recebeu a sua denúncia." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Os nossos moderadores analisaram as denúncias e decidiram desativar o seu acesso a conversas no Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Página não encontrada" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Página Não Encontrada" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Palavra-passe atualizada" msgid "Password updated!" msgstr "Palavra-passe atualizada!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Pausa" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Pausar vídeo" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Pessoas" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Pessoas seguidas por @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Pessoas a seguir @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "Pessoas que eu sigo" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "A permissão para aceder à sua galeria de fotos foi negada. Por favor, ative-a nas suas definições de sistema." @@ -5704,12 +6119,12 @@ msgstr "Afixar a início" msgid "Pin to Home" msgstr "Afixar a Início" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Afixar ao seu perfil" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Afixado" @@ -5718,7 +6133,7 @@ msgstr "Afixado" msgid "Pinned {0} to Home" msgstr "{0} afixado a Início" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Feeds Afixados" @@ -5726,38 +6141,38 @@ msgstr "Feeds Afixados" msgid "Pinned to your feeds" msgstr "Afixado aos seus feeds" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Reproduzir" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Reproduzir {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Reproduzir vídeo" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Reproduzir Vídeo" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Reproduz ou pausa o GIF" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Reproduz ou pausa o vídeo" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Reproduz o GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Reproduz o vídeo" @@ -5765,12 +6180,16 @@ msgstr "Reproduz o vídeo" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "Por favor, adicione qualquer rótulo de aviso de conteúdo que seja aplicável ao conteúdo multimédia que está a publicar." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "Por favor, consulte a caixa de entrada do seu e-mail para mais instruções. Pode demorar um ou dois minutos a chegar." + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Por favor, escolha o seu nome de utilizador." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Por favor, escolha a sua palavra-passe." @@ -5782,7 +6201,8 @@ msgstr "Por favor, clique no link contido no e-mail que lhe acabamos de enviar p msgid "Please complete the verification captcha." msgstr "Por favor complete o captcha de verificação." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Por favor, verifique se introduziu o seu endereço de e-mail corretamente." @@ -5804,6 +6224,7 @@ msgstr "Por favor, insira um nome único para esta palavra-passe de aplicação msgid "Please enter a valid code." msgstr "Por favor, introduza um código válido." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "Por favor, introduza um endereço de e-mail válido." @@ -5812,7 +6233,11 @@ msgstr "Por favor, introduza um endereço de e-mail válido." msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Por favor, insira uma palavra, tag ou frase válida para silenciar" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "Por favor, insira um endereço de e-mail válido e não temporário. Pode precisar de aceder a este e-mail no futuro." + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "Por favor, introduza o código que enviámos para <0>{0} abaixo." @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "Por favor, introduza o código de segurança que enviámos para o seu endereço de e-mail anterior." #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Por favor, introduza o seu e-mail." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Por favor, introduza o seu código de convite." @@ -5853,6 +6278,19 @@ msgstr "Por favor, explique por que pensa que este rótulo foi aplicado incorret msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Por favor, explique por que pensa que as suas conversas foram incorretamente desativadas" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "Por favor, retroceda ou ative este elemento para voltar ao início do conteúdo ativo." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "Por favor, forneça quaisquer detalhes adicionais que julgue serem necessários para os moderadores avaliarem corretamente o seu estado de Verificação de Idade." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "Por favor, selecione um idioma" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "Por favor, selecione um serviço de moderação" @@ -5870,9 +6308,9 @@ msgstr "Por favor, inicie sessão como @{0}" msgid "Please verify your email" msgstr "Por favor, verifique o seu e-mail" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Por favor, verifique o seu e-mail" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "Por favor, escreva a sua mensagem abaixo:" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Política" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Publicação" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Publicação" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Publicação" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Publicar tudo" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "Publicação bloqueada" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Publicação por {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Publicação por @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Publicação eliminada" @@ -5919,11 +6362,14 @@ msgstr "Publicação eliminada" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Falha no carregamento da publicação. Por favor, verifique a sua conexão à internet e tente novamente." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "A publicação foi apagada" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Publicação oculta" @@ -5937,11 +6383,11 @@ msgstr "Publicação ocultada por palavra silenciada" msgid "Post Hidden by You" msgstr "Publicação ocultada por si" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Definições de interação com publicação" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Definições de Interação com Publicação" @@ -5954,8 +6400,10 @@ msgstr "Idioma da publicação" msgid "Post Languages" msgstr "Idiomas de Publicação" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Publicação não encontrada" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Publicação desafixada" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Publicações" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "As publicações podem ser silenciadas com base no seu texto, nas suas tags ou ambos. Recomendamos que palavras comuns que aparecem em muitas publicações sejam evitadas, visto que tal pode levar a que nenhuma publicação seja mostrada." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Publicações ocultas" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "Publicações, Respostas" + +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" msgstr "Link potencialmente enganador" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Preferência guardada" +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "Aviso de link potencialmente enganador" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Pressione para tentar reconectar-se" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Pressione para tentar novamente" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Pressione para ver os seguidores desta conta que também segue" @@ -6015,40 +6469,46 @@ msgstr "Imagem anterior" msgid "Primary Language" msgstr "Idioma Principal" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Dar prioridade aos seus seguidores" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Notificações prioritárias" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Privacidade" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Privacidade e segurança" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacidade e Segurança" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "Definições de privacidade e segurança" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Política de Privacidade" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "A processar o vídeo..." @@ -6062,15 +6522,14 @@ msgstr "A processar..." msgid "profile" msgstr "perfil" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Perfil" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Perfil atualizado" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Listas públicas e partilháveis de utilizadores que podem ser usadas para gerar feeds." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "Publicar publicação" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "Publicar publicações" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "Publicar respostas" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "Publicar resposta" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "Push" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "Notificações Push" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "Push, Todos" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "Push, Pessoas que segue" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "Código QR copiado para a sua área de transferência!" @@ -6119,44 +6594,52 @@ msgstr "O código QR foi transferido!" msgid "QR code saved to your camera roll!" msgstr "O código QR foi guardado no rolo da sua câmara!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "Notificações de citação" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Citar publicação" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "A citação foi novamente vinculada" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "A citação foi desvinculada com sucesso" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Citações desativadas" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Definições de citações" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Citações" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Citações desta publicação" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Aleatório" @@ -6164,8 +6647,8 @@ msgstr "Aleatório" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Limite excedido — tentou alterar o seu nome de utilizador muitas vezes num curto espaço de tempo. Por favor, aguarde um minuto antes de tentar novamente." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Vincular citação de novo" @@ -6177,30 +6660,42 @@ msgstr "Reagir com {emoji}" msgid "Reactivate your account" msgstr "Reative a sua conta" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "Ler mais {0} {1, plural, one {resposta} other {respostas}}" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Ler a publicação do blog (em inglês)" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Ler menos" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Ler mais" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "Ler mais respostas" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "Ler a nossa publicação no blog" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Leia o blogue do Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Leia a Política de Privacidade do Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Leia os Termos de Serviço do Bluesky" @@ -6213,6 +6708,14 @@ msgstr "Motivo do recurso" msgid "Reason:" msgstr "Motivo:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "Receber notificações na aplicação" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "Receber notificações push" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Pesquisas Recentes" @@ -6234,8 +6737,8 @@ msgstr "Rejeitar" msgid "Reject chat request" msgstr "Rejeitar solicitação de conversa" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Recarregar conversas" @@ -6244,10 +6747,9 @@ msgstr "Recarregar conversas" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Remover" @@ -6259,17 +6761,17 @@ msgstr "Remover {displayName} do pacote de iniciante" msgid "Remove {historyItem}" msgstr "Remover {historyItem}" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Remover conta" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Remover anexo" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Remover foto de perfil" @@ -6284,24 +6786,22 @@ msgstr "Remover incorporação" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Remover feed" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Remover feed?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Remover dos meus feeds" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Remover de acesso rápido?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "Remover dos feeds guardados" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "Remover dos seus feeds?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Remover imagem" @@ -6332,12 +6831,8 @@ msgstr "Remover palavra silenciada da sua lista" msgid "Remove profile" msgstr "Remover perfil" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Remover citação" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Remover republicação" @@ -6345,7 +6840,7 @@ msgstr "Remover republicação" msgid "Remove subtitle file" msgstr "Remover ficheiro de legenda" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Remover este feed dos seus feeds guardados" @@ -6364,11 +6859,11 @@ msgstr "Remover verificação" msgid "Remove your verification for this account?" msgstr "Remover a sua verificação para esta conta?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Removido pelo autor" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Removido por si" @@ -6377,10 +6872,6 @@ msgstr "Removido por si" msgid "Removed from list" msgstr "Removido da lista" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Removido dos meus feeds" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Removido dos feeds guardados" @@ -6395,34 +6886,36 @@ msgstr "Removido dos seus feeds" msgid "Removed verification" msgstr "Verificação removida" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Remove a publicação citada" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Substituir pelo \"Descobrir\"" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Respostas" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Respostas desativadas" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "As respostas a esta publicação estão desativadas." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Responder" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Responder ({0, plural, one {# resposta} other {# respostas}})" @@ -6436,50 +6929,55 @@ msgstr "Resposta ocultada pelo autor do fio" msgid "Reply Hidden by You" msgstr "Resposta ocultada por você" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "Notificações de respostas" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Definições de resposta" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "As definições de resposta são escolhidas pelo autor do fio" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Ordenação de respostas" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Responder a <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Responder a uma publicação bloqueada" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Responder a uma publicação" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Responder a si" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Visibilidade da resposta atualizada" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "A resposta foi ocultada com sucesso" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Denunciar feed" msgid "Report list" msgstr "Denunciar lista" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Denunciar mensagem" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Denunciar publicação" @@ -6567,25 +7065,26 @@ msgstr "Denunciar este pacote de iniciante" msgid "Report this user" msgstr "Denunciar este utilizador" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Republicar" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Republicar" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Republicar ({0, plural, one {# republicação} other {# republicações}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "Notificações de republicações" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Republicar ou citar publicação" @@ -6594,35 +7093,47 @@ msgstr "Republicar ou citar publicação" msgid "Reposted By" msgstr "Republicado por" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Republicado por {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Republicado por <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Republicado por si" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "Republicações" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Republicações desta publicação" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "Solicitar alteração" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "Republicações das suas republicações" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "Notificações de republicações das suas republicações" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "Solicitar Código" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Exigir texto alternativo antes de publicar" @@ -6630,7 +7141,7 @@ msgstr "Exigir texto alternativo antes de publicar" msgid "Require an email code to sign in to your account." msgstr "Requerer um código de e-mail para iniciar sessão com a sua conta." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Obrigatório para este fornecedor" @@ -6642,10 +7153,6 @@ msgstr "Obrigatório na sua região" msgid "Resend" msgstr "Reenviar" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Reenviar Email" msgid "Resend Verification Email" msgstr "Reenviar Email de Verificação" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "Repor toque de subscrição de atividade" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Código de redefinição" @@ -6667,8 +7180,8 @@ msgstr "Código de redefinição" msgid "Reset Code" msgstr "Código de Redefinição" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Redefinir estado da introdução" @@ -6687,21 +7200,23 @@ msgstr "Repete a última ação, que resultou em erro" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Tentar novamente" @@ -6721,19 +7236,19 @@ msgstr "Voltar à página de início" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Volta à página anterior" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Regressa ao passo anterior" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Regressa ao passo anterior" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Guardar" @@ -6762,15 +7276,13 @@ msgstr "Guardar" msgid "Save birthday" msgstr "Guardar aniversário" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Guardar alterações" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Guardar Alterações" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Guardar código QR" msgid "Save to my feeds" msgstr "Guardar nos meus feeds" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Feeds Guardados" @@ -6802,18 +7314,14 @@ msgstr "Feeds Guardados" msgid "Saved to your feeds" msgstr "Guardado nos seus feeds" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Guarda qualquer alteração ao seu perfil" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Guarda definições de recorte de imagem" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Diga olá!" @@ -6826,16 +7334,16 @@ msgstr "Ciência" msgid "Scroll to top" msgstr "Voltar ao topo" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Procurar" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Pesquisar nas publicações de @{0}" @@ -6861,7 +7369,7 @@ msgstr "Pesquisar por \"{query}\"" msgid "Search for \"{searchText}\"" msgstr "Procurar por \"{searchText}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Procurar por feeds que deseja sugerir para outros." @@ -6877,10 +7385,14 @@ msgstr "Procurar mais feeds" msgid "Search for posts, users, or feeds" msgstr "Procurar publicações, utilizadores, ou feeds" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Procurar GIFs" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "A pesquisa está indisponível quando não tiver sessão iniciada" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Procurar nas minhas publicações" @@ -6890,12 +7402,12 @@ msgstr "Procurar nas minhas publicações" msgid "Search posts" msgstr "Procurar publicações" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Procurar perfis" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Procurar no Tenor" @@ -6903,7 +7415,7 @@ msgstr "Procurar no Tenor" msgid "Search..." msgstr "Procurar..." -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Procura por perfis" @@ -6912,10 +7424,6 @@ msgstr "Procura por perfis" msgid "Security step required" msgstr "Passo de segurança necessário" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Passo de Segurança Obrigatório" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "Ver publicações em {tag}" @@ -6936,14 +7444,31 @@ msgstr "Ver publicações em #{tag} por utilizador" msgid "See jobs at Bluesky" msgstr "Ver empregos no Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "Ver mais" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "Ver mais contas que talvez goste" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "Ver mais perfis sugeridos na página Explorar" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Consulte este guia" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Controlo deslizante. Use as setas do teclado para avançar ou retroceder e a barra de espaço para reproduzir/colocar em pausa" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "Selecionar {0}" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Selecionar uma cor" @@ -6988,7 +7513,7 @@ msgstr "Selecionar de uma conta existente" msgid "Select GIF" msgstr "Selecionar GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Selecionar GIF \"{0}\"" @@ -6996,6 +7521,11 @@ msgstr "Selecionar GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "Selecione a duração do silenciamento desta palavra." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "Selecionar idioma" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Selecionar idioma..." @@ -7004,7 +7534,7 @@ msgstr "Selecionar idioma..." msgid "Select languages" msgstr "Selecionar idiomas" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "Selecionar um serviço de moderação" @@ -7045,12 +7575,12 @@ msgstr "Selecione que idioma usar para a interface da aplicação." msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Selecione quais idiomas deseja que os feeds que subscreve incluam. Se nenhum for selecionado, todos os idiomas serão mostrados." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Selecione a sua data de nascimento" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Selecione os seus interesses entre as opções abaixo" @@ -7058,7 +7588,11 @@ msgstr "Selecione os seus interesses entre as opções abaixo" msgid "Select your preferred language for translations in your feed." msgstr "Selecione o seu idioma preferido para traduções no seu feed." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "Selecione os seus canais de notificação preferidos" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "Seleciona a opção {0} de {numItems}" @@ -7066,17 +7600,9 @@ msgstr "Seleciona a opção {0} de {numItems}" msgid "Send a neat website!" msgstr "Envia um website interessante!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "Enviar confirmação" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Enviar e-mail de confirmação" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Enviar e-mail" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Enviar E-mail" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Enviar feedback" @@ -7095,7 +7621,7 @@ msgstr "Enviar feedback" msgid "Send message" msgstr "Enviar mensagem" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "Enviar publicação para {name}" @@ -7114,20 +7640,20 @@ msgstr "Enviar denúncia" msgid "Send report to {0}" msgstr "Enviar denúncia para {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "Enviar denúncia para {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Enviar e-mail de verificação" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Enviar através de mensagem direta" @@ -7143,7 +7669,7 @@ msgstr "Endereço do servidor" msgid "Set app icon to {0}" msgstr "Definir ícone da aplicação para {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Definir data de nascimento" @@ -7159,13 +7685,57 @@ msgstr "Configure a sua conta" msgid "Sets email for password reset" msgstr "Define o e-mail para recuperação de senha" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Definições" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "Definições de atividade de outros" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "Definições para permitir que outros sejam notificados sobre as suas publicações" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "Definições para notificações de gostos" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "Definições para notificações de menções" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "Definições para notificações de novo seguidor" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "Definições para notificações de tudo o resto" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "Definições para notificações de gostos nas suas republicações" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "Definições para notificações de republicações das suas republicações" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "Definições para notificações de citações" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "Definições para notificações de respostas" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "Definições para notificações de republicações" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "Partilhe uma história interessante!" msgid "Share a fun fact!" msgstr "Partilhe um facto divertido!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Partilhar mesmo assim" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "Partilhar DID do autor" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Partilhar link" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Partilhar Link" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Janela de diálogo para partilha de link" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "Partilhar publicação em:// URI" @@ -7247,8 +7812,8 @@ msgstr "Partilhar este pacote de iniciante" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Partilhe este pacote de iniciante e ajude pessoas a juntarem-se à sua comunidade no Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,23 +7825,19 @@ msgstr "Partilhar via..." msgid "Share your favorite feed!" msgstr "Partilhe o seu feed favorito!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Testador de Preferências Partilhadas" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Partilha o link" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Mostrar" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" -msgstr "Mostrar texto alt" +msgstr "Mostrar texto alternativo" #: src/components/moderation/ScreenHider.tsx:172 #: src/components/moderation/ScreenHider.tsx:175 @@ -7303,8 +7864,8 @@ msgstr "Exibir definições de personalização" msgid "Show hidden replies" msgstr "Mostrar respostas ocultas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Mostrar menos como esta" @@ -7312,55 +7873,63 @@ msgstr "Mostrar menos como esta" msgid "Show list anyway" msgstr "Mostrar lista mesmo assim" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Mostrar Mais" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Mostrar mais como esta" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "Mostrar mais respostas" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Mostrar respostas silenciadas" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "Mostrar respostas a uma publicação em vista de árvore" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Mostrar citações" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Mostrar respostas" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Mostrar respostas como" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Mostrar respostas como fios" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Mostrar respostas de pessoas que segue antes de todas as outras respostas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Mostrar resposta para todos" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Mostrar republicações" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Mostrar amostras dos seus feeds guardados no seu feed \"A seguir\"" @@ -7372,16 +7941,17 @@ msgstr "Mostrar aviso" msgid "Show warning and filter from feeds" msgstr "Mostrar aviso e filtrar de feeds" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Mostra informação sobre quando esta publicação foi criada" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "Mostra outras contas para as quais pode mudar" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Mostra o conteúdo" @@ -7390,14 +7960,15 @@ msgstr "Mostra o conteúdo" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "Iniciar sessão com uma conta que não está na lista" msgid "Sign in to Bluesky or create a new account" msgstr "Inicie sessão no Bluesky ou crie uma conta nova" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "Inicie sessão para ver esta publicação" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Terminar sessão" @@ -7444,8 +8020,8 @@ msgstr "Terminar sessão" msgid "Sign Out" msgstr "Terminar Sessão" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Terminar sessão?" @@ -7459,12 +8035,12 @@ msgstr "Requer início de sessão" msgid "Signed in as @{0}" msgstr "Sessão iniciada como {0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Contas semelhantes" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Saltar" @@ -7472,12 +8048,11 @@ msgstr "Saltar" msgid "Skip this flow" msgstr "Saltar este processo" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Menor" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "Adia o lembrete" @@ -7490,11 +8065,11 @@ msgstr "Programador" msgid "Some of your verifications are invalid." msgstr "Algumas das suas verificações são inválidas." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Outros feeds que talvez possa gostar" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Algumas pessoas podem responder" @@ -7510,10 +8085,11 @@ msgstr "Alguém reagiu {0} a {1}" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "Houve um problema com os dados que tentou denunciar. Por favor, contacte o suporte." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Aconteceu algo de errado" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Aconteceu algo de errado, por favor tente novamente" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Aconteceu algo de errado, por favor tente novamente." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Aconteceu algo de errado!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "Aconteceu algo de errado. Por favor, tente novamente dentro de um momento." + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "Aconteceu algo de errado. Por favor, tente novamente." @@ -7539,20 +8118,23 @@ msgstr "Aconteceu algo de errado. Por favor, tente novamente." msgid "Something wrong? Let us know." msgstr "Aconteceu algo de errado? Informe-nos." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "Desculpe! A sua sessão expirou. Por favor, inicie sessão novamente." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Ordenar respostas" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Ordenar respostas por" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Ordenar respostas à mesma publicação por:" @@ -7579,7 +8161,7 @@ msgstr "Spam; menções ou respostas excessivas" msgid "Sports" msgstr "Desportos" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "Inicie uma conversa, e ela aparecerá aqui." @@ -7601,9 +8183,9 @@ msgstr "Comece a adicionar pessoas!" msgid "Start chat with {displayName}" msgstr "Iniciar conversa com {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Pacote de Iniciante" @@ -7611,12 +8193,12 @@ msgstr "Pacote de Iniciante" msgid "Starter pack by {0}" msgstr "Pacote de iniciante por {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Pacote de iniciante por <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Pacote de iniciante por si" @@ -7638,19 +8220,21 @@ msgstr "Pacotes de iniciante permitem-lhe compartilhar facilmente os seus feeds msgid "Status Page" msgstr "Página de estado" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Passo {0} de {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Armazenamento limpo, precisa de reiniciar a aplicação agora." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Storybook" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Submeter recurso" msgid "Submit Appeal" msgstr "Submeter Recurso" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "Submeter denúncia" @@ -7676,10 +8260,14 @@ msgstr "Submeter denúncia" msgid "Subscribe" msgstr "Subscrever" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Subscrever @{0} para usar estes rótulos:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "Subscrever a atividade de conta" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Subscrever Rotulador" @@ -7692,8 +8280,12 @@ msgstr "Subscrever este rotulador" msgid "Subscribe to this list" msgstr "Subscrever esta lista" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "Sucesso" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Sucesso!" @@ -7705,7 +8297,7 @@ msgstr "Verificado com sucesso" msgid "Suggested Accounts" msgstr "Contas Sugeridas" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Sugerido para si" @@ -7714,26 +8306,26 @@ msgstr "Sugerido para si" msgid "Suggestive" msgstr "Sugestivo" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Nascer do sol" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Pôr do sol" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Suporte" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Mudar de conta" @@ -7742,24 +8334,24 @@ msgstr "Mudar de conta" msgid "Switch Account" msgstr "Mudar de Conta" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Trocar de conta" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "Trocar para {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Sistema" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Registo do sistema" @@ -7767,6 +8359,18 @@ msgstr "Registo do sistema" msgid "Tags only" msgstr "Apenas tags" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "Toque para mais informação" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "Toque para mais informação" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "Toque para confirmar que entende e concorda com estas atualizações e continue a usar o Bluesky" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Conte-nos um pouco mais" msgid "Terms" msgstr "Termos" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Termos de Serviço" @@ -7848,10 +8454,6 @@ msgstr "Campo de introdução de texto" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "Obrigado pelo seu feedback! Ele foi enviado para o operador do feed." -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Obrigado! O seu e-mail foi verificado com sucesso." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Obrigado. A sua denúncia foi enviada." @@ -7862,30 +8464,30 @@ msgstr "Obrigado, verificou o seu endereço de e-mail com sucesso. Pode fechar e #: src/screens/Settings/components/ChangeHandleDialog.tsx:487 msgid "That contains the following:" -msgstr "Isso contém o seguinte:" - -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Esse nome de utilizador já está ocupado." +msgstr "Que contém o seguinte:" #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Não foi possível encontrar esse pacote de iniciante." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "Este nome de utilizador já está em uso" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "É tudo!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "É tudo!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "A conta poderá interagir consigo após a desbloquear." @@ -7900,7 +8502,7 @@ msgstr "A aplicação será reiniciada" msgid "The author of this thread has hidden this reply." msgstr "O autor deste fio ocultou a sua resposta." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "A aplicação web do Bluesky" @@ -7920,10 +8522,6 @@ msgstr "O feed \"Descobrir\"" msgid "The Discover feed now knows what you like" msgstr "O feed \"Descobrir\" sabe o que gosta" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "O endereço de e-mail que introduziu é o mesmo que o seu endereço de e-mail atual." - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "A experiência é melhor na aplicação. Faça download do Bluesky agora e retomaremos onde parou." @@ -7944,8 +8542,16 @@ msgstr "Os seguintes rótulos foram aplicados ao seu conteúdo." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "As seguintes definições serão usadas como definições padrão ao criar novas publicações. Pode editar estas para uma publicação específica a partir do compositor." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "As leis na sua localização exigem que verifique ser um adulto antes de aceder a certos recursos no Bluesky, como conteúdo adulto e mensagens diretas." + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "As leis na sua localização exigem que verifique ser um adulto para aceder a certas funcionalidades. Toque para saber mais." + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "A publicação pode ter sido apagada." @@ -7953,9 +8559,10 @@ msgstr "A publicação pode ter sido apagada." msgid "The Privacy Policy has been moved to <0/>" msgstr "A Política de Privacidade foi movida para <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "O vídeo selecionado tem mais de 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "O vídeo selecionado tem mais de 100 MB. Por favor, tente novamente com um ficheiro menor." #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "Os Termos de Serviço foram movidos para" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "O código de verificação que forneceu é inválido. Certifique-se de que usou o link de verificação correto ou solicite um novo." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Tema" @@ -7990,14 +8597,14 @@ msgstr "Tema" msgid "There is no time limit for account deactivation, come back any time." msgstr "Não há limite de tempo para a desativação da conta, volte a qualquer momento." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Houve um problema ao conectar com o Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Ocorreu um problema ao contactar o servidor" @@ -8006,17 +8613,12 @@ msgstr "Ocorreu um problema ao contactar o servidor" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Ocorreu um problema ao contactar o servidor. Por favor, verifique a sua conexão de internet e tente novamente." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Ocorreu um problema ao contactar o seu servidor" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Houve um problema ao obter as notificações. Toque aqui para tentar novamente." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Houve um problema ao obter as publicações. Toque aqui para tentar novamente." @@ -8037,7 +8639,7 @@ msgstr "Houve um problema ao obter as suas listas. Toque aqui para tentar novame msgid "There was an issue fetching your service info" msgstr "Houve um problema ao obter a sua informação de serviço" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Ocorreu um problema ao remover este feed. Por favor, verifique a sua conexão de internet e tente novamente." @@ -8052,9 +8654,9 @@ msgstr "Ocorreu um problema ao enviar a sua denúncia. Por favor, verifique a su msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Ocorreu um problema ao atualizar os seus feeds. Por favor, verifique a sua conexão de internet e tente novamente." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Ocorreu um problema ao atualizar os seus feeds. Por favor, verifique a s msgid "There was an issue! {0}" msgstr "Ocorreu um problema! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Ocorreu um problema! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Ocorreu um problema. Por favor, verifique a sua conexão de internet e tente novamente." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Houve um problema inesperado com a aplicação. Por favor, informe-nos se isto se passou consigo!" @@ -8089,7 +8691,7 @@ msgstr "Houve um problema inesperado com a aplicação. Por favor, informe-nos s msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Houve um largo influxo de novos utilizadores para o Bluesky! Iremos ativar a sua conta assim que possível." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Estas definições só se aplicam ao feed \"A seguir\"." @@ -8146,7 +8748,7 @@ msgstr "Este conteúdo é hospedado por {0}. Deseja ativar conteúdo multimédia msgid "This content is not available because one of the users involved has blocked the other." msgstr "Este conteúdo não está disponível porque um dos utilizadores envolvidos bloqueou o outro." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Este conteúdo não pode ser visualizado sem uma conta Bluesky." @@ -8158,6 +8760,10 @@ msgstr "Esta conversa é com uma conta eliminada ou desativada. Pressione para o msgid "This email is already associated with your account." msgstr "Este e-mail já está associado à sua conta." +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "Esta funcionalidade permite que utilizadores recebam notificações das suas novas publicações e respostas. Para quem deseja habilitar isto?" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Esta funcionalidade está em beta. Pode ler mais sobre exportações de repositórios <0>neste post." @@ -8170,7 +8776,7 @@ msgstr "Esta funcionalidade não está disponível enquanto estiver a usar uma p msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Esta funcionalidade não está disponível quando uma palavra-passe de aplicação está a ser usada. Por favor, inicie sessão com a sua palavra-passe principal." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Este feed está com tráfego elevado e está temporariamente indisponível. Por favor, tente novamente mais tarde." @@ -8209,11 +8815,11 @@ msgstr "Este rótulo foi aplicado pelo autor." msgid "This label was applied by you." msgstr "Este rótulo foi aplicado por si." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Este rotulador não declarou que rótulos utiliza e pode não estar ativo." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Esse link está a levá-lo para o seguinte site:" @@ -8233,29 +8839,28 @@ msgstr "Esta lista está vazia." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Este serviço de moderação não está disponível. Veja mais detalhes abaixo. Se este problema persistir, entre em contacto connosco." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Este post afirma ter sido criado em <0>{0}, mas foi primeiro visto por Bluesky em <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Esta publicação tem um tipo de \"threadgate\" desconhecido. É possível que a sua aplicação esteja desatualizada." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Esta publicação foi apagada." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Esta publicação é apenas visível para utilizadores com sessão iniciada. Não será visível para quem não tenha sessão iniciada." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "Esta publicação é apenas visível para utilizadores com sessão iniciada." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Esta publicação será ocultada de feeds e fios. Isto não pode ser revertido." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "O autor desta publicação desativou as citações." @@ -8263,11 +8868,11 @@ msgstr "O autor desta publicação desativou as citações." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Este perfil é apenas visível para utilizadores com sessão iniciada. Não será visível para quem não tenha sessão iniciada." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Esta resposta será colocada numa secção oculta no final do seu fio de discussão e silenciará notificações de futuras respostas - tanto para si como para outros." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Este serviço não forneceu termos de serviço ou uma política de privacidade." @@ -8275,6 +8880,10 @@ msgstr "Este serviço não forneceu termos de serviço ou uma política de priva msgid "This should create a domain record at:" msgstr "Isto deve criar um registo de domínio em:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "Isto deve demorar apenas alguns minutos." + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Este utilizador não possui um nome de exibição, e como tal não pode ser verificado." @@ -8316,16 +8925,18 @@ msgstr "Este utilizador não segue ninguém." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Isto irá apagar \"{0}\" das suas palavras silenciadas. Pode sempre adicioná-la de volta mais tarde." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Isto irá remover @{0} da lista de acesso rápido." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Isto irá remover a sua publicação desta citação para todos os utilizadores e substituí-la por um espaço reservado." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Opções de fio" @@ -8334,24 +8945,27 @@ msgstr "Opções de fio" msgid "Thread preferences" msgstr "Preferências de resposta" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Preferências de Resposta" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Em fio" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Modo em fio" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Preferências de Fios" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "Tempo restante: {0, plural, one {# segundo} other {# segundos}}" @@ -8376,42 +8990,56 @@ msgstr "A quem deseja enviar esta denúncia?" msgid "Today" msgstr "Hoje" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Ativa/Desativa dropdown" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Alternar para ativar ou desativar conteúdo adulto" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Ativa/desativa o som" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Melhor" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "Respostas principais primeiro" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Tópico" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Traduzir" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "Vista em árvore" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Tendências" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Vídeos do Momento" @@ -8428,14 +9056,10 @@ msgstr "Tente novamente" msgid "TV" msgstr "Televisão" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Autenticação de dois fatores (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Digite o nome de utilizador desejado" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Digite a sua mensagem aqui" @@ -8453,7 +9077,7 @@ msgstr "Não foi possível conectar. Verifique a sua conexão à internet e tent #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Não foi possível contactar o seu serviço. Verifique a sua conexão à msgid "Unable to delete" msgstr "Não é possível eliminar" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "Retirar Pull Request" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "Retirar Pull Request {currentChannel}" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "Indisponível" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "Informação do feed indisponível" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Desbloquear" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Desbloquear" @@ -8486,7 +9126,7 @@ msgstr "Desbloquear" msgid "Unblock account" msgstr "Desbloquear conta" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Desbloquear conta?" @@ -8495,13 +9135,13 @@ msgstr "Desbloquear conta?" msgid "Unblock list" msgstr "Desbloquear lista" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Reverter republicação" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Reverter ({0, plural, one {# republicação} other {# republicações}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Deixar de seguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Deixar de seguir {0}" @@ -8523,7 +9163,7 @@ msgstr "Deixar de seguir conta" msgid "Unfollows the user" msgstr "Deixa de seguir o utilizador" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Infelizmente, nenhum dos rotuladores que subscreve suportam este tipo de denúncia." @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "Remover gosto" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Remover gosto ({0, plural, one {# gosto} other {# gostos}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Remover silenciamento" @@ -8555,8 +9195,8 @@ msgstr "Remover silenciamento" msgid "Unmute {tag}" msgstr "Remover silenciamento de {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Remover silenciamento da conversa" msgid "Unmute list" msgstr "Remover silenciamento da lista" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Deixar de silenciar fio" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Remover silenciamento do vídeo" @@ -8597,8 +9237,8 @@ msgstr "Desafixar Feed" msgid "Unpin from home" msgstr "Desafixar de início" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Desafixar do perfil" @@ -8614,8 +9254,8 @@ msgstr "{0} desafixado de início" msgid "Unpinned from your feeds" msgstr "Desafixado dos seus feeds" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "Deixar de adiar lembrete de e-mail" @@ -8636,7 +9276,7 @@ msgstr "Deixar de subscrever este rotulador" msgid "Unsubscribed from list" msgstr "Removeu subscrição da lista" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Tipo de vídeo não suportado" @@ -8662,8 +9302,8 @@ msgstr "Atualizar <0>{displayName} nas Listas" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "Atualizar e-mail" @@ -8676,17 +9316,17 @@ msgstr "Atualizar para {domain}" msgid "Update your email" msgstr "Atualize o seu e-mail" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Falhou ao atualizar o anexo de citação" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Falhou ao atualizar a visibilidade da resposta" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "A atualizar..." @@ -8698,20 +9338,20 @@ msgstr "Carregar uma foto em vez disso" msgid "Upload a text file to:" msgstr "Carregue um ficheiro de texto para:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Carregar da Câmara" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Carregar de Ficheiros" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Carregar da Biblioteca" msgid "Uploading images..." msgstr "A carregar imagens..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "A carregar miniatura do link..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "A carregar vídeo..." @@ -8761,6 +9401,10 @@ msgstr "Usar recomendado" msgid "Use this to sign in to the other app along with your handle." msgstr "Use isto para iniciar sessão na outra aplicação em conjunto com o seu nome de utilizador." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "Use o seu endereço de e-mail ou outro endereço de e-mail real que controle, caso a KWS ou o Bluesky precisem de entrar em contacto consigo." + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Usado por:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Lista de utilizador atualizado" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "O nome de utilizador não pode ter mais que {MAX_SERVICE_HANDLE_LENGTH, plural, other {# caracteres}}" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "O nome de utilizador não pode começar ou terminar com um hífen" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "O nome de utilizador deve conter apenas letras (a-z), números e hífenes" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Nome de utilizador ou endereço de e-mail" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "utilizadores seguidos por <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "utilizadores que seguem <0>@{0}" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Utilizadores que eu sigo" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Utilizadores em \"{0}\"" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Utilizadores que segue" @@ -8846,11 +9502,11 @@ msgstr "Valor:" msgid "Verification failed, please try again." msgstr "Falha na verificação. Por favor, tente novamente." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "Definições de verificação" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "Definições de Verificação" @@ -8870,8 +9526,15 @@ msgstr "Verificado por:" msgid "Verify account" msgstr "Verificar conta" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "Verificar novamente" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "Verificar código" @@ -8880,21 +9543,20 @@ msgstr "Verificar código" msgid "Verify DNS Record" msgstr "Verificar Registo DNS" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "Verificar e-mail" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "Verificar o código de e-mail" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Janela de diálogo para verificação de e-mail" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "Verificar agora" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Verificar Ficheiro de Texto" msgid "Verify this account?" msgstr "Verificar esta conta?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "Verifique a sua idade" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Verifique o seu e-mail" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Verifique o seu e-mail" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "A verificar" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "A verificar o seu estado de verificação de idade" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Versão {appVersion}" +msgid "Version {0}" +msgstr "Versão {0}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Vídeo" @@ -8928,7 +9598,7 @@ msgstr "Vídeo" msgid "Video failed to process" msgstr "Falha ao processar o vídeo" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Feed de Vídeo" @@ -8942,15 +9612,15 @@ msgstr "Vídeo de {0}: {text}" msgid "Video Games" msgstr "Videojogos" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Vídeo em pausa" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Vídeo em reprodução" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Vídeo não encontrado." @@ -8958,11 +9628,11 @@ msgstr "Vídeo não encontrado." msgid "Video settings" msgstr "Definições de vídeo" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Vídeo carregado" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Vídeo: {0}" @@ -8979,11 +9649,11 @@ msgstr "Os vídeos devem ter menos de 3 minutos" msgid "View {0}'s avatar" msgstr "Ver foto de perfil de {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Ver perfil de {0}" @@ -8991,7 +9661,7 @@ msgstr "Ver perfil de {0}" msgid "View {displayName}'s profile" msgstr "Ver perfil de {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Ver perfil de utilizador bloqueado" @@ -9009,7 +9679,6 @@ msgstr "Ver entrada de debug" msgid "View details" msgstr "Ver detalhes" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Ver detalhes sobre como denunciar uma violação de direitos de autor" @@ -9022,23 +9691,23 @@ msgstr "Ver fio completo" msgid "View information about these labels" msgstr "Ver informação acerca destes rótulos" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Ver mais" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Ver perfil" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Ver a foto de perfil" @@ -9054,28 +9723,28 @@ msgstr "Ver as verificações deste utilizador" msgid "View users who like this feed" msgstr "Ver utilizadores que gostaram deste feed" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Ver vídeo" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Ver as contas que bloqueou" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "Veja as suas definições padrão de interação" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Veja os seus feeds e explore mais" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Ver as suas listas de moderação" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Ver as contas que silenciou" @@ -9083,8 +9752,8 @@ msgstr "Ver as contas que silenciou" msgid "View your verifications" msgstr "Ver as suas verificações" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Mostra a imagem em tamanho completo" @@ -9092,16 +9761,20 @@ msgstr "Mostra a imagem em tamanho completo" msgid "Views video in immersive mode" msgstr "Visualiza vídeo no modo imersivo" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "Visitar Site" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "Visitar site" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "Visitar as suas definições de notificações" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Volume" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Avisar em conteúdo e filtrar dos feeds" msgid "Watch now" msgstr "Ver agora" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "Não foi possível conectar com serviço que fornece este feed personalizado. Ele pode estar temporariamente indisponível e com problemas, ou permanentemente indisponível." + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "Não conseguimos encontrar esta lista. Provavelmente foi eliminada." + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "Não encontramos nenhum resultado para essa hashtag." @@ -9128,7 +9809,7 @@ msgstr "Não encontramos nenhum resultado para essa hashtag." msgid "We couldn't find any results for that topic." msgstr "Não conseguimos encontrar nenhum resultado para esse tópico." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Não conseguimos carregar esta conversa" @@ -9136,6 +9817,10 @@ msgstr "Não conseguimos carregar esta conversa" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Estimamos que a sua conta estará pronta em aproximadamente {estimatedTime}." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "Fizemos uma parceria com a <0>KWS para verificar se você é um adulto. Quando clicar em \"Começar\" abaixo, a KWS vai ver se já verificou anteriormente a sua idade usando este endereço de e-mail para outros jogos/serviços que utilizam a tecnologia da KWS. Se não, a KWS vai-lhe enviar um e-mail com instruções para verificar a sua idade. Quando terminar, será trazido de volta para continuar a utilizar o Bluesky." + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Enviámos outro e-mail de verificação para <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "Esperamos que tenha uma experiência maravilhosa. Lembre-se, o Bluesky msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Esgotamos as publicações de utilizadores que segue. Aqui está o mais recente de <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "Recomendamos a seleção de pelo menos dois interesses." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Enviámos um e-mail com um link para <0>{0}. Clique nele para concluir o processo de verificação de e-mail." -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Não conseguimos determinar se tem permissão para carregar vídeos. Por favor, tente novamente." @@ -9164,10 +9849,14 @@ msgstr "Não conseguimos determinar se tem permissão para carregar vídeos. Por msgid "We were unable to load your birth date preferences. Please try again." msgstr "Não conseguimos carregar as suas preferências de data de nascimento. Por favor, tente novamente." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "Não conseguimos carregar os seus rotuladores configurados neste momento." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "Não conseguimos receber a verificação devido a um problema de conexão. Poderá chegar mais tarde. Se isso acontecer, a sua conta será atualizada automaticamente." + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Não conseguimos nos conectar. Por favor, tente novamente para continuar a configuração da sua conta. Se continuar a falhar, pode saltar esta etapa." @@ -9176,7 +9865,7 @@ msgstr "Não conseguimos nos conectar. Por favor, tente novamente para continuar msgid "We will let you know when your account is ready." msgstr "Iremos avisá-lo quando a sua conta estiver pronta." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Iremos enviar um e-mail com um link para <0>{0}. Clique nele para concluir o processo de verificação de e-mail." @@ -9184,6 +9873,22 @@ msgstr "Iremos enviar um e-mail com um link para <0>{0}. Clique nele para co msgid "We'll use this to help customize your experience." msgstr "Vamos usar isto para ajudar a personalizar a sua experiência." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Também estamos a atualizar as nossas <0>Diretrizes da Comunidade e queremos a sua opinião! Estas novas diretrizes entrarão em vigor a 15 de outubro de 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Também estamos a atualizar as nossas Diretrizes da Comunidade, e queremos a sua opinião! Estas novas diretrizes entrarão em vigor a 15 de outubro de 2025." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "Estamos a confirmar o seu estado de verificação de idade com os nossos servidores. Isto deve demorar apenas alguns segundos." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "Estamos a ter problemas ao iniciar o processo de verificação de idade para a sua conta. Por favor, <0>contacte o suporte para receber assistência." + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Estamos com problemas de rede, tente novamente" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Estamos a introduzir uma nova camada de verificação no Bluesky — um selo de verificação fácil de ver." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Estamos muito contentes por tê-lo aqui!" @@ -9205,15 +9910,15 @@ msgstr "Lamentamos, mas não conseguimos resolver esta lista. Se isto persistir, msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Pedimos desculpa, mas não conseguimos carregar as suas palavras silenciadas neste momento. Por favor, tente novamente." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Lamentamos, mas não foi possível concluir a sua pesquisa. Por favor, tente novamente em alguns minutos." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Pedimos desculpa! A publicação à qual está a responder foi eliminada." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Pedimos desculpa! Não conseguimos encontrar a página que procurava." @@ -9222,6 +9927,26 @@ msgstr "Pedimos desculpa! Não conseguimos encontrar a página que procurava." msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Pedimos desculpa! Apenas pode subscrever a vinte rotuladores, e atingiu o seu limite de vinte." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "Estamos a atualizar os nossos <0>Termos de Serviço, <1>Política de Privacidade e <2>Política de Direitos de Autor, em vigor a partir de dia 15 de setembro de 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "Estamos a atualizar as nossas políticas" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "Estamos a atualizar os nossos Termos de Serviço, Política de Privacidade e Política de Direitos de Autor, em vigor a partir de dia 15 de setembro de 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Estamos a atualizar os nossos Termos de Serviço, Política de Privacidade e Política de Direitos de Autor, em vigor a partir de dia 15 de setembro de 2025. Também estamos a atualizar as nossas Diretrizes da Comunidade, e queremos a sua opinião! Estas novas diretrizes entrarão em vigor a 15 de outubro de 2025. Saiba mais sobre estas alterações e como partilhar as suas ideias connosco lendo a nossa publicação no blog." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "Confirmámos o seu estado de verificação de idade. Pode agora fechar esta caixa de diálogo." + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Bem-vindo(a) de volta!" @@ -9240,7 +9965,7 @@ msgstr "Que nome quer dar ao seu pacote de iniciante?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Como está?" @@ -9256,11 +9981,11 @@ msgstr "Que idiomas são usados nesta publicação?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Que idiomas gostaria de ver nos seus feeds algorítmicos?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Quem pode interagir com esta publicação?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Quem pode responder" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "Quem pode verificar?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Ups!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "Ups! Falha ao carregar Vídeos do momento." @@ -9322,12 +10047,12 @@ msgstr "Por que motivo deve este utilizador ser revisto?" msgid "Write a message" msgstr "Escreva uma mensagem" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Escrever publicação" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Escreva a sua resposta" @@ -9358,11 +10083,11 @@ msgstr "Sim, desativar" msgid "Yes, delete this starter pack" msgstr "Sim, eliminar este pacote de iniciante" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Sim, desvincular" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Sim, ocultar" @@ -9378,6 +10103,10 @@ msgstr "Ontem" msgid "You" msgstr "Você" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "Concorda também com as <0>Diretrizes da Comunidade do Bluesky. Uma <1>versão atualizada das nossas Diretrizes da Comunidade entrará em vigor no dia 15 de outubro." + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "Você é um verificador confiável" @@ -9386,6 +10115,10 @@ msgstr "Você é um verificador confiável" msgid "You are creating an account on" msgstr "Está a criar uma conta em" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "De momento não pode aceder ao processo de verificação de idade do Bluesky. Por favor, <0>contacte a nossa equipa de moderação se acredita que isto é um erro." + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Está na fila." @@ -9403,7 +10136,7 @@ msgstr "Já não está em direto" msgid "You are not allowed to go live" msgstr "Não tem permissão para entrar em direto" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Não tem permissão para carregar vídeos." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "É verificado" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "É verificado. Irá perder a sua verificação se alterar o seu nome de exibição. <0>Saiba mais." @@ -9441,10 +10173,18 @@ msgstr "Pode também descobrir novos Feeds Personalizados para seguir." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Pode também desativar temporariamente a sua conta e reativá-la a qualquer momento." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "Pode escolher se as notificações de conversas têm som ou não nas definições de conversas na aplicação" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Pode continuar com as conversas que tem em curso, independentemente da definição que escolher." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "Agora pode optar por ser notificado quando pessoas específicas fizerem uma publicação. Se houver alguém de quem queira atualizações oportunas, vá até o perfil desta e encontre o novo ícone de sino junto ao botão seguir." + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Agora pode iniciar sessão com a sua nova palavra-passe." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Pode reativar a sua conta para continuar o início de sessão. As suas publicações ficarão visíveis para outros utilizadores." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "Pode ajustar as definições de interação padrão em <0>Definições → Moderação → Definições de interação." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Pode atualizar isso mais tarde a partir das suas definições." @@ -9472,7 +10212,7 @@ msgstr "Não tem seguidores." msgid "You don't follow any users who follow @{name}." msgstr "Não segue nenhum utilizador que siga @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "Não tem nenhuma solicitação de conversa no momento." @@ -9480,15 +10220,15 @@ msgstr "Não tem nenhuma solicitação de conversa no momento." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Ainda não tem nenhum código de convite! Iremos enviar-lhe alguns quando já tiver mais algum tempo de Bluesky." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Não tem nenhum feed afixado." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Não tem nenhum feed salvo." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Bloqueou o autor ou foi bloqueado pelo autor." @@ -9502,6 +10242,10 @@ msgstr "Bloqueou este utilizador" msgid "You have blocked this user. You cannot view their content." msgstr "Bloqueou este utilizador. Não pode ver o seu conteúdo." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "Desativou por completo notificações de respostas, citações e menções, portanto este separador não será mais atualizado. Para ajustar isto, visite as suas <0>definições de notificações." + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Silenciou esta conta." msgid "You have muted this user" msgstr "Silenciou este utilizador" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Ainda não tem nenhuma conversa. Inicie uma!" @@ -9547,7 +10291,7 @@ msgstr "Ainda não bloqueou nenhuma conta. Para bloquear uma conta, veja o perfi msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Ainda não silenciou nenhuma conta. Para silenciar uma conta, veja o perfil e selecione \"Silenciar conta\" no menu dessa conta." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Chegou ao fim" @@ -9572,6 +10316,10 @@ msgstr "Ainda não silenciou nenhuma palavra ou tag" msgid "You hid this reply." msgstr "Ocultou esta resposta." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "Já iniciou este processo há {0}. Pode demorar até 5 minutos para que os e-mails cheguem à sua caixa de entrada. Por favor, considere esperar alguns minutos antes de tentar novamente." + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Pode recorrer de rótulos não próprios se pensa que estes foram aplicados por engano." @@ -9592,7 +10340,7 @@ msgstr "Pode adicionar um máximo de 3 feeds" msgid "You may only select up to 4 images" msgstr "Pode selecionar um máximo de 4 imagens" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "Deve ter pelo menos 13 anos para criar uma conta." @@ -9600,6 +10348,14 @@ msgstr "Deve ter pelo menos 13 anos para criar uma conta." msgid "You must be following at least seven other people to generate a starter pack." msgstr "Deve seguir pelo menos sete outras pessoas para gerar um pacote de iniciante." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "Deve concluir a verificação de idade para aceder às definições abaixo." + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "Deve concluir a verificação de idade para aceder a este ecrã." + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Precisa de conceder acesso à sua biblioteca de fotos para guardar um código QR" @@ -9608,15 +10364,20 @@ msgstr "Precisa de conceder acesso à sua biblioteca de fotos para guardar um c msgid "You must select at least one labeler for a report" msgstr "Deve selecionar pelo menos um rotulador para uma denúncia" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "Tem de ter sessão iniciada para ver esta publicação." + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." -msgstr "Precisa de verificar o seu endereço de e-mail antes de poder habilitar a 2FA por e-mail." +msgstr "Precisa de verificar o seu endereço de e-mail antes de poder ativar a 2FA por e-mail." #: src/screens/Deactivated.tsx:128 msgid "You previously deactivated @{0}." msgstr "Desativou @{0} anteriormente." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "Provavelmente quer reiniciar a aplicação agora." @@ -9628,16 +10389,20 @@ msgstr "Reagiu {0}" msgid "You reacted {0} to {1}" msgstr "Reagiu {0} a {1}" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "A sua sessão será terminada em todas as suas contas." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "Deixará de receber notificações de {0}" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Deixará de receber notificações deste fio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Passará a receber notificações deste fio" @@ -9657,11 +10422,11 @@ msgstr "Você: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Você: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Seguirá os utilizadores sugeridos e feeds assim que terminar a criação da sua conta!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Seguirá os utilizadores sugeridos assim que terminar a criação da sua conta!" @@ -9673,9 +10438,9 @@ msgstr "Seguirá estas pessoas e mais outras {0}" msgid "You'll follow these people right away" msgstr "Seguirá estas pessoas imediatamente" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Irá receber um e-mail em <0>{0} para verificar que é você." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "Irá começar a receber notificações de {0}!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "Escolheu ocultar uma palavra ou tag contida nesta publicação." msgid "You've found some people to follow" msgstr "Encontrou algumas pessoas para seguir" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "Chegou ao fim do conteúdo ativo." + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Chegou ao fim do seu feed! Encontre mais algumas contas para seguir." @@ -9711,19 +10480,23 @@ msgstr "Chegou ao fim do seu feed! Encontre mais algumas contas para seguir." msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Atingiu o número máximo de solicitações permitidas. Tente novamente mais tarde." -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "Chegou ao início do conteúdo ativo." + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Atingiu o seu limite diário de carregamento de vídeos (demasiados bytes)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Atingiu o seu limite diário de carregamento de vídeos (demasiados vídeos)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Esgotou os vídeos disponíveis para assistir. Que tal uma pausa?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "A sua conta" @@ -9735,7 +10508,7 @@ msgstr "A sua conta foi eliminada" msgid "Your account has been suspended" msgstr "A sua conta foi suspensa" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "A sua conta não tem antiguidade suficiente para carregar vídeos. Por favor, tente novamente mais tarde." @@ -9751,11 +10524,11 @@ msgstr "A sua conta foi identificada como estando em violação dos <0>Termos So msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "O seu recurso foi enviado. Se o seu recurso for bem-sucedido, receberá um e-mail." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "A sua data de nascimento" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "O seu navegador não suporta o formato de vídeo. Por favor, tente um navegador diferente." @@ -9771,13 +10544,15 @@ msgstr "A sua escolha será lembrada para links futuros. Pode alterá-la a qualq msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "O seu nome de utilizador atual <0>{0} será automaticamente reservado para si. Pode voltar a usá-lo a qualquer momento a partir desta conta." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "O seu endereço de e-mail foi atualizado, mas ainda não é verificado. Como próximo passo, por favor verifique o seu novo e-mail." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "O seu e-mail" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "O seu e-mail parece ser inválido." @@ -9786,15 +10561,11 @@ msgstr "O seu e-mail parece ser inválido." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "O seu email ainda não foi verificado. Por favor, verifique o seu email para poder usufruir de todas as funcionalidades do Bluesky." -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "O seu e-mail ainda não foi verificado. Esta é uma etapa importante de segurança que recomendamos." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "O seu primeiro \"gosto\"!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "Os seus seguidores" @@ -9806,19 +10577,15 @@ msgstr "O seu feed \"A seguir\" está vazio! Siga mais utilizadores para ver o q msgid "Your full handle will be <0>@{0}" msgstr "O seu nome de utilizador completo será <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "O seu nome de utilizador completo será <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "Os seus interesses" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "Os seus interesses foram atualizados!" @@ -9835,15 +10602,15 @@ msgstr "As suas palavras silenciadas" msgid "Your password has been changed successfully!" msgstr "A sua palavra-passe foi alterada com sucesso!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "A sua palavra-passe deve ter pelo menos 8 caracteres." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "A sua publicação foi publicada" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "As suas publicações foram publicadas" @@ -9851,15 +10618,19 @@ msgstr "As suas publicações foram publicadas" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "As suas publicações, gostos e lista de contas bloqueadas são públicos. A lista de contas silenciadas é privada." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "O seu idioma preferido" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "O seu perfil, publicações, feeds e listas não serão mais visíveis para outros utilizadores do Bluesky. Pode reativar a sua conta a qualquer momento ao fazer login novamente." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "A sua resposta foi publicada" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "A sua denúncia será enviada para <0>{0}." @@ -9867,7 +10638,7 @@ msgstr "A sua denúncia será enviada para <0>{0}." msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "A sua denúncia será enviada para o Serviço de Moderação do Bluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "Os seus interesses selecionados ajudam-nos a servir-lhe conteúdo com o qual se importa." diff --git a/src/locale/locales/ro/messages.po b/src/locale/locales/ro/messages.po index 364c8c1396..97d1da5b6d 100644 --- a/src/locale/locales/ro/messages.po +++ b/src/locale/locales/ro/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ro\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 01:46\n" "Last-Translator: \n" "Language-Team: Romanian\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" @@ -27,9 +27,9 @@ msgstr "(activ)" msgid "(contains embedded content)" msgstr "(conține conținut încorporat)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" -msgstr "(fără e-mail)" +msgstr "(niciun e-mail)" #: src/lib/hooks/useTimeAgo.ts:169 msgid "{0, plural, one {# day} other {# days}}" @@ -41,7 +41,7 @@ msgstr "{0, plural, one {un urmăritor} few {# urmăritori} other {# de urmărit #: src/screens/Profile/ProfileFollows.tsx:40 msgid "{0, plural, one {# following} other {# following}}" -msgstr "{0, plural, one {urmărești un utilizator} few {urmărești # utilizatori} other {urmărești # de utilizatori}}" +msgstr "{0, plural, one {urmăriți un utilizator} few {urmăriți # utilizatori} other {urmăriți # de utilizatori}}" #: src/lib/hooks/useTimeAgo.ts:159 msgid "{0, plural, one {# hour} other {# hours}}" @@ -73,57 +73,60 @@ msgstr "{0, plural, one {un citat} few {# citate} other {# de citate}}" #: src/screens/Post/PostRepostedBy.tsx:41 msgid "{0, plural, one {# repost} other {# reposts}}" -msgstr "{0, plural, one {o redistribuire} few {# redistribuiri} other {# de redistribuiri}}" +msgstr "{0, plural, one {o repostare} few {# repostări} other {# de repostări}}" #: src/lib/hooks/useTimeAgo.ts:139 msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {o secundă} few {# secunde} other {# de secunde}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" -msgstr "" +msgstr "{0, plural, one {Un element necitit} few {# elemente necitite} other {# de elemente necitite}}" #. How many months have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:182 msgid "{0, plural, one {#mo} other {#mo}}" -msgstr "" +msgstr "{0, plural, one {o lună} few {# luni} other {# de luni}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {urmăritor} few {urmăritori} other {de urmăritori}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" -msgstr "{0, plural, one {urmărit} few {urmăriți} other {urmăriți}}" +msgstr "{0, plural, one {urmărit} few {urmăriți} other {de urmăriți}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {apreciere} few {aprecieri} other {de aprecieri}}" #: src/screens/Profile/Header/Metrics.tsx:58 msgid "{0, plural, one {post} other {posts}}" -msgstr "{0, plural, one {postare} few {postări} other {postări}}" +msgstr "{0, plural, one {postare} few {postări} other {de postări}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" -msgstr "{0, plural, one {citat} few {citări} other {de citări}}" +msgstr "{0, plural, one {citat} few {citate} other {de citate}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" -msgstr "{0, plural, one {redistribuire} few {redistribuiri} other {de redistribuiri}}" +msgstr "{0, plural, one {repostare} few {repostări} other {de repostări}}" #: src/screens/Search/modules/ExploreTrendingTopics.tsx:82 msgid "{0, plural, other {{1} posts}}" -msgstr "" +msgstr "{0, plural, one {} few {{1} postări}other {{1} de postări}}" #. Number of users (always at least 25) who have joined Bluesky using a specific starter pack #: src/screens/StarterPack/StarterPackScreen.tsx:490 msgid "{0, plural, other {# people have}} used this starter pack!" -msgstr "" +msgstr "{0, plural, one {O persoană a} few {# persoane au}other {# de persoane au}} folosit acest pachet de pornire!" #. Pattern: {wordValue} in tags #: src/components/dialogs/MutedWords.tsx:475 @@ -133,49 +136,65 @@ msgstr "{0} <0>în <1>etichete" #. Pattern: {wordValue} in text, tags #: src/components/dialogs/MutedWords.tsx:465 msgid "{0} <0>in <1>text & tags" -msgstr "{0} <0>în <1>text și etichete" +msgstr "{0} <0>în <1>text & etichete" + +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} urmăriți" #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" -msgstr "" +msgstr "{0} este în direct" #: src/components/live/queries.ts:39 msgid "{0} is not a valid URL" -msgstr "" +msgstr "{0} nu este un URL valid" + +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "{0} nu este disponibil" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} s-a alăturat săptămâna aceasta" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} din {1}" #. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field #: src/screens/StarterPack/Wizard/StepDetails.tsx:55 msgid "{0} out of 50" -msgstr "" +msgstr "{0} din 50" #: src/components/dms/MessageItem.tsx:143 msgid "{0} reacted {1}" -msgstr "" +msgstr "{0} a reacționat {1}" #: src/screens/Messages/components/ChatListItem.tsx:231 msgid "{0} reacted {1} to {2}" -msgstr "" +msgstr "{0} a reacționat {1} la {2}" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0}, un flux de {1}, apreciat de {2}" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0}, o listă de {1}" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "Avatarul folosit de {0}" #: src/screens/StarterPack/Wizard/StepDetails.tsx:74 msgid "{0}'s favorite feeds and people - join me!" -msgstr "Fluxurile și persoanele preferate ale {0} - alătură-te!" +msgstr "Fluxurile și persoanele preferate ale lui {0} - alăturați-vă!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:46 msgid "{0}'s starter pack" -msgstr "Pachetul de început al {0}" +msgstr "Pachetul de pornire al lui {0}" #. How many days have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:171 @@ -197,14 +216,14 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}s" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" -msgstr "" +msgstr "{count, plural, one {Un element necitit} few {# elemente necitite} other {# de elemente necitite}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" -msgstr "Pachetul de început al {displayName}" +msgstr "Pachetul de pornire al lui {displayName}" #: src/screens/SignupQueued.tsx:216 msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" @@ -214,251 +233,250 @@ msgstr "{estimatedTimeHrs, plural, one {oră} few {ore} other {de ore}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minut} few {minute} other {de minute}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" -msgstr "{firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} te-au urmărit" +msgstr "{firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au urmărit" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" -msgstr "Lui {firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {unui alt utilizator} few {altor {formattedAuthorsCount} utilizatori} other {altor {formattedAuthorsCount} de utilizatori}} le place fluxul tău personalizat" +msgstr "{firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au apreciat fluxul personalizat" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" -msgstr "Lui {firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {unui alt utilizator} few {altor {formattedAuthorsCount} utilizatori} other {altor {formattedAuthorsCount} de utilizatori}} le place postarea ta" +msgstr "{firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au apreciat postarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" +msgstr "{firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au apreciat repostarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" -msgstr "" +msgstr "{firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} și-au eliminat verificările din contul dvs." -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" -msgstr "{firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} au redistribuit postarea ta" +msgstr "{firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au repostat postarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "{firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au repostat repostarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} s-au înscris folosind pachetul tău de început" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 -msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" -msgstr "" - -#: src/view/com/notifications/NotificationFeedItem.tsx:347 -msgid "{firstAuthorLink} followed you" -msgstr "{firstAuthorLink} te-a urmărit" - -#: src/view/com/notifications/NotificationFeedItem.tsx:324 -msgid "{firstAuthorLink} followed you back" -msgstr "{firstAuthorLink} te-a urmărit înapoi" - -#: src/view/com/notifications/NotificationFeedItem.tsx:373 -msgid "{firstAuthorLink} liked your custom feed" -msgstr "Lui {firstAuthorLink} îi place fluxul tău personalizat" - -#: src/view/com/notifications/NotificationFeedItem.tsx:266 -msgid "{firstAuthorLink} liked your post" -msgstr "{firstAuthorLink} a apreciat postarea ta" - -#: src/view/com/notifications/NotificationFeedItem.tsx:478 -msgid "{firstAuthorLink} liked your repost" -msgstr "" - -#: src/view/com/notifications/NotificationFeedItem.tsx:451 -msgid "{firstAuthorLink} removed their verification from your account" -msgstr "" - -#: src/view/com/notifications/NotificationFeedItem.tsx:290 -msgid "{firstAuthorLink} reposted your post" -msgstr "{firstAuthorLink} a redistribuit postarea ta" - -#: src/view/com/notifications/NotificationFeedItem.tsx:502 -msgid "{firstAuthorLink} reposted your repost" -msgstr "" - -#: src/view/com/notifications/NotificationFeedItem.tsx:397 -msgid "{firstAuthorLink} signed up with your starter pack" -msgstr "{firstAuthorLink} s-a înscris folosind pachetul tău de început" - -#: src/view/com/notifications/NotificationFeedItem.tsx:426 -msgid "{firstAuthorLink} verified you" -msgstr "" - -#: src/view/com/notifications/NotificationFeedItem.tsx:328 -msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" -msgstr "{firstAuthorName} și {additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} te-au urmărit" - -#: src/view/com/notifications/NotificationFeedItem.tsx:354 -msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" -msgstr "Lui {firstAuthorName} și {additionalAuthorsCount, plural, one {unui alt utilizator} few {altor {formattedAuthorsCount} utilizatori} other {altor {formattedAuthorsCount} de utilizatori}} le place fluxul tău personalizat" - -#: src/view/com/notifications/NotificationFeedItem.tsx:247 -msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" -msgstr "Lui {firstAuthorName} și {additionalAuthorsCount, plural, one {unui alt utilizator} few {altor {formattedAuthorsCount} utilizatori} other {altor {formattedAuthorsCount} de utilizatori}} le place postarea ta" - -#: src/view/com/notifications/NotificationFeedItem.tsx:459 -msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" - #: src/view/com/notifications/NotificationFeedItem.tsx:432 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "{firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au verificat" + +#: src/view/com/notifications/NotificationFeedItem.tsx:365 +msgid "{firstAuthorLink} followed you" +msgstr "{firstAuthorLink} v-a urmărit" + +#: src/view/com/notifications/NotificationFeedItem.tsx:342 +msgid "{firstAuthorLink} followed you back" +msgstr "{firstAuthorLink} v-a urmărit înapoi" + +#: src/view/com/notifications/NotificationFeedItem.tsx:391 +msgid "{firstAuthorLink} liked your custom feed" +msgstr "{firstAuthorLink} v-a apreciat fluxul personalizat" + +#: src/view/com/notifications/NotificationFeedItem.tsx:284 +msgid "{firstAuthorLink} liked your post" +msgstr "{firstAuthorLink} v-a apreciat postarea" + +#: src/view/com/notifications/NotificationFeedItem.tsx:496 +msgid "{firstAuthorLink} liked your repost" +msgstr "{firstAuthorLink} v-a apreciat repostarea" + +#: src/view/com/notifications/NotificationFeedItem.tsx:469 +msgid "{firstAuthorLink} removed their verification from your account" +msgstr "{firstAuthorLink} și-a eliminat verificarea din contul dvs." + +#: src/view/com/notifications/NotificationFeedItem.tsx:308 +msgid "{firstAuthorLink} reposted your post" +msgstr "{firstAuthorLink} v-a repostat postarea" + +#: src/view/com/notifications/NotificationFeedItem.tsx:520 +msgid "{firstAuthorLink} reposted your repost" +msgstr "{firstAuthorLink} v-a repostat repostarea" + +#: src/view/com/notifications/NotificationFeedItem.tsx:415 +msgid "{firstAuthorLink} signed up with your starter pack" +msgstr "{firstAuthorLink} s-a înregistrat cu pachetul dvs. de pornire" + +#: src/view/com/notifications/NotificationFeedItem.tsx:444 +msgid "{firstAuthorLink} verified you" +msgstr "{firstAuthorLink} v-a verificat" + +#: src/view/com/notifications/NotificationFeedItem.tsx:346 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "{firstAuthorName} și {additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au urmărit" + +#: src/view/com/notifications/NotificationFeedItem.tsx:372 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "{firstAuthorName} și {additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au apreciat fluxul personalizat" + +#: src/view/com/notifications/NotificationFeedItem.tsx:265 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "{firstAuthorName} și {additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au apreciat postarea" + +#: src/view/com/notifications/NotificationFeedItem.tsx:477 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "{firstAuthorName} și {additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au apreciat repostarea" + +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" -msgstr "" +msgstr "{firstAuthorName} și {additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} și-au eliminat verificările din contul dvs." -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" -msgstr "{firstAuthorName} și {additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} au redistribuit postarea ta" +msgstr "{firstAuthorName} și {additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au repostat postarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "{firstAuthorName} și {additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au repostat repostarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" -msgstr "{firstAuthorName} și {additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} s-au înscris folosind pachetul tău de început" +msgstr "{firstAuthorName} și {additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} s-au înregistrat cu pachetul dvs. de pornire" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" -msgstr "" +msgstr "{firstAuthorName} și {additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au verificat" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" -msgstr "{firstAuthorName} te-a urmărit" +msgstr "{firstAuthorName} v-a urmărit" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" -msgstr "{firstAuthorName} te-a urmărit înapoi" +msgstr "{firstAuthorName} v-a urmărit înapoi" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" -msgstr "Lui {firstAuthorName} îi place flux tău personalizat" +msgstr "{firstAuthorName} v-a apreciat fluxul personalizat" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" -msgstr "Lui {firstAuthorName} îi place postarea ta" +msgstr "{firstAuthorName} v-a apreciat postarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" -msgstr "" +msgstr "{firstAuthorName} v-a apreciat repostarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" -msgstr "" +msgstr "{firstAuthorName} și-a eliminat verificarea din contul dvs." -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" -msgstr "{firstAuthorName} a redistribuit postarea ta" +msgstr "{firstAuthorName} v-a repostat postarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" -msgstr "" +msgstr "{firstAuthorName} v-a repostat repostarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" -msgstr "{firstAuthorName} s-a înscris folosind pachetul tău de început" +msgstr "{firstAuthorName} s-a înregistrat cu pachetul dvs. de pornire" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" -msgstr "" +msgstr "{firstAuthorName} v-a verificat" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" -msgstr "{following} urmărește" +msgstr "{following} urmăriți" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" -msgstr "Nu poți trimite mesaje către {handle}" +msgstr "Lui {handle} nu i se pot trimite mesaje" #: src/components/live/utils.ts:15 msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" -msgstr "" +msgstr "{hours, plural, one {# oră {minutesString}} few {# ore {minutesString}} other {# de ore {minutesString}}}" #: src/components/live/utils.ts:19 msgid "{hours, plural, one {# hour} other {# hours}}" -msgstr "" +msgstr "{hours, plural, one {# oră } few {# ore} other {# de ore}}" #. Number of users (always at least 50) who have joined Bluesky using a specific starter pack #: src/components/StarterPack/StarterPackCard.tsx:101 msgid "{joinedAllTimeCount, plural, other {# users have}} joined!" -msgstr "" +msgstr "{joinedAllTimeCount, plural, one {Un utilizator s-a} few {# utilizatori s-au}other {# de utilizatori s-au}} alăturat!" #: src/components/live/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" -msgstr "" +msgstr "{minutes, plural, one {# minut} few {# minute} other {# de minute}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" -msgstr "" +msgstr "{notificationCount, plural, one {Un element necitit} few {# elemente necitite} other {# de elemente necitite}}" #: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" -msgstr "{profileName} s-a alăturat Bluesky acum {0}" +msgstr "{profileName} s-a alăturat la Bluesky cu {0} în urmă" #: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" -msgstr "{profileName} s-a alăturat Bluesky folosind un pachet de început acum {0}" +msgstr "{profileName} s-a alăturat la Bluesky folosind un pachet de pornire cu {0} în urmă" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" #: src/screens/Search/modules/ExploreTrendingTopics.tsx:111 msgid "{rank}." -msgstr "" +msgstr "{rank}." #. trending topic time spent trending. should be as short as possible to fit in a pill #: src/screens/Search/modules/ExploreTrendingTopics.tsx:206 msgid "{type}h ago" -msgstr "" +msgstr "acum {type}h" #: src/components/verification/VerifierDialog.tsx:60 msgid "{userName} is a trusted verifier" -msgstr "" +msgstr "{userName} este un verificator de încredere" #: src/components/verification/VerificationsDialog.tsx:67 msgid "{userName} is verified" -msgstr "" +msgstr "{userName} este verificat" #. Possessive, meaning "the verifications of {userName}" #: src/components/verification/VerificationsDialog.tsx:69 msgid "{userName}'s verifications" -msgstr "" +msgstr "Verificările utilizatorului {userName}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 #: src/screens/Search/components/StarterPackCard.tsx:249 msgid "+{computedTotal}" -msgstr "" +msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" -msgstr "<0>{0}, <1>{1}, și {2, plural, one {un altul} few {altele #} other {altele #}} sunt incluse în pachetul tău de început" +msgstr "<0>{0}, <1>{1}, și {2, plural, one {un alt utilizator} few {alți # utilizatori} other {alți # de utilizatori}} sunt incluși în pachetul dvs. de pornire" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" -msgstr "<0>{0}, <1>{1}, și {2, plural, one {un altul} few {altele #} other {altele #}} sunt incluse în pachetul tău de început" +msgstr "<0>{0}, <1>{1}, și {2, plural, one {un alt utilizator} few {alți # utilizatori} other {alți # de utilizatori}} sunt incluși în pachetul dvs. de pornire" #: src/view/shell/Drawer.tsx:116 msgid "<0>{0} {1, plural, one {follower} other {followers}}" -msgstr "<0>{0} {1, plural, one {urmăritor} other {urmăritori} other {de urmăritori}}" +msgstr "<0>{0} {1, plural, one {urmăritor} few {urmăritori} other {de urmăritori}}" #: src/view/shell/Drawer.tsx:127 msgid "<0>{0} {1, plural, one {following} other {following}}" -msgstr "<0>{0} {1, plural, one {urmărește} few {urmăresc} other {urmăresc}}" +msgstr "<0>{0} {1, plural, one {urmărit} few {urmăriți} other {de urmăriți}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" -msgstr "<0>{0} și<1> <2>{1} sunt incluși în pachetul tău de început" +msgstr "<0>{0} și<1> <2>{1} sunt incluși în pachetul dvs. de pornire" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" -msgstr "<0>{0} este inclus în pachetul tău de început" +msgstr "<0>{0} este inclus în pachetul dvs. de pornire" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} membri" @@ -466,17 +484,17 @@ msgstr "<0>{0} membri" msgid "<0>{date} at {time}" msgstr "<0>{date} la {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Experimental: Când această preferință este activată, vei primi notificări de răspunsuri și citări doar de la utilizatorii pe care îi urmărești. Vom continua să adăugăm mai multe controale în timp." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<0>Conectați-vă<1> sau <2>creați un cont<3> <4>pentru a căuta știri, sport, politică și tot ce se întâmplă pe Bluesky." -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" -msgstr "<0>Tu și<1> <2>{0} sunteți incluși în pachetul tău de început" +msgstr "<0>Tu și<1> <2>{0} sunteți incluși în pachetul dvs. de pornire" #: src/screens/Profile/Header/Handle.tsx:53 msgid "⚠Invalid Handle" -msgstr "⚠Nume de utilizator invalid" +msgstr "⚠Identificator Invalid" #: src/components/dialogs/MutedWords.tsx:193 msgid "24 hours" @@ -497,52 +515,56 @@ msgstr "7 zile" #. If last message does not contain text, fall back to "{user} reacted to {a message}" #: src/screens/Messages/components/ChatListItem.tsx:210 msgid "a message" -msgstr "" +msgstr "un mesaj" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91 msgid "A new form of verification" -msgstr "" +msgstr "O nouă formă de verificare" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "O captură de ecran a unei pagini de profil cu o pictogramă clopoțel, lângă butonul „Urmărire”, indicând noua caracteristică pentru notificările de activitate." + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Despre" #. Accept a chat request #: src/screens/Messages/components/RequestButtons.tsx:259 msgid "Accept" -msgstr "" +msgstr "Acceptare" #: src/screens/Messages/components/RequestButtons.tsx:249 msgid "Accept chat request" -msgstr "" +msgstr "Acceptare cerere de conversație" #. Accept a chat request #: src/screens/Messages/components/RequestListItem.tsx:42 msgid "Accept Request" -msgstr "" +msgstr "Acceptare Cerere" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Accesibilitate" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" -msgstr "Setări de accesibilitate" +msgstr "Setări de Accesibilitate" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Cont" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,26 +576,26 @@ msgctxt "toast" msgid "Account followed" msgstr "Cont urmărit" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" -msgstr "Cont pus pe mut" +msgstr "Cont amuțit" #: src/components/moderation/ModerationDetailsDialog.tsx:103 #: src/lib/moderation/useModerationCauseDescription.ts:98 msgid "Account Muted" -msgstr "Cont pus pe mut" +msgstr "Cont Amuțit" #: src/components/moderation/ModerationDetailsDialog.tsx:89 msgid "Account Muted by List" -msgstr "Cont pus pe mut de către listă" +msgstr "Cont Amuțit de Listă" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Opțiuni cont" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Cont eliminat din acces rapid" @@ -586,9 +608,9 @@ msgstr "Cont deblocat" #: src/view/com/profile/ProfileMenu.tsx:183 msgctxt "toast" msgid "Account unfollowed" -msgstr "Cont neurmărit" +msgstr "Nu mai urmăriți acest cont" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -596,190 +618,212 @@ msgstr "Cont scos de pe mut" #: src/components/verification/VerifierDialog.tsx:96 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." -msgstr "" +msgstr "Conturile cu bifa albastră în formă de feston <0><1/> pot verifica alte persoane. Acești verificatori de încredere sunt selectați de Bluesky." + +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "Activitate de la alții" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "Notificări de activitate" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" -msgstr "Adaugă" +msgstr "Adăugare" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" -msgstr "Adaugă încă {0} pentru a continua" +msgstr "Adăugați încă {0} pentru a continua" #: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" -msgstr "Adaugă {displayName} la pachetul de început" +msgstr "Adăugați {displayName} la pachetul de pornire" #: src/view/com/composer/labels/LabelsBtn.tsx:107 #: src/view/com/composer/labels/LabelsBtn.tsx:112 msgid "Add a content warning" -msgstr "Adaugă un avertisment de conținut" +msgstr "Adăugați un avertisment de conținut" #: src/components/live/GoLiveDialog.tsx:101 msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event." -msgstr "" +msgstr "Adăugați o stare temporară de în direct profilului dvs. Când cineva face clic pe avatarul dvs., va vedea informații despre evenimentul dvs. în direct." #: src/view/screens/ProfileList.tsx:924 #: src/view/screens/ProfileList.tsx:942 msgid "Add a user to this list" -msgstr "Adaugă un utilizator la această listă" +msgstr "Adăugați un utilizator la această listă" #: src/components/dialogs/SwitchAccount.tsx:55 #: src/screens/Deactivated.tsx:192 msgid "Add account" -msgstr "Adaugă cont" +msgstr "Adăugați un cont" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" -msgstr "Adaugă text alternativ" +msgstr "Adăugați text alternativ" #: src/view/com/composer/videos/SubtitleDialog.tsx:106 msgid "Add alt text (optional)" -msgstr "Adaugă text alternativ (opțional)" +msgstr "Adăugați text alternativ (opțional)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" -msgstr "Adaugă un alt cont" +msgstr "Adăugați un alt cont" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" -msgstr "Adaugă o altă postare" +msgstr "Adăugați o altă postare" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 msgid "Add app password" -msgstr "Adaugă o parolă pentru aplicație" +msgstr "Adăugare parolă de aplicație" #: src/screens/Settings/AppPasswords.tsx:75 #: src/screens/Settings/AppPasswords.tsx:83 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:111 msgid "Add App Password" -msgstr "Adaugă parolă pentru aplicație" +msgstr "Adăugare Parolă de Aplicație" #: src/components/dms/EmojiReactionPicker.web.tsx:35 msgid "Add emoji reaction" -msgstr "" +msgstr "Adăugați reacție emoji" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" -msgstr "" +msgstr "Adăugați mai multe detalii (opțional)" #: src/components/dialogs/MutedWords.tsx:321 msgid "Add mute word with chosen settings" -msgstr "" +msgstr "Adăugați un cuvânt amuțit cu setările alese" #: src/components/dialogs/MutedWords.tsx:112 msgid "Add muted words and tags" -msgstr "Pune pe mut cuvinte și etichete" +msgstr "Adăugați cuvinte și etichete pentru amuțire" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" -msgstr "Adaugă o postare nouă" +msgstr "Adăugați o postare nouă" #: src/view/screens/ProfileList.tsx:932 #: src/view/screens/ProfileList.tsx:950 msgid "Add people" -msgstr "Adaugă persoane" +msgstr "Adăugare persoane" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79 msgid "Add people to list" -msgstr "" +msgstr "Adăugați persoane la listă" #: src/components/dms/EmojiPopup.android.tsx:55 msgid "Add Reaction" -msgstr "" +msgstr "Adăugare Reacție" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" -msgstr "Adaugă fluxuri recomandate" +msgstr "Adăugați fluxuri recomandate" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" -msgstr "Adaugă câteva fluxuri în pachetul tău de început!" +msgstr "Adăugați niște fluxuri la pachetul de pornire!" #: src/screens/Feeds/NoFollowingFeed.tsx:41 msgid "Add the default feed of only people you follow" -msgstr "Adaugă fluxul implicit doar cu persoanele pe care le urmărești" +msgstr "Adăugați fluxul implicit doar pentru persoanele pe care le urmăriți" #: src/screens/Settings/components/ChangeHandleDialog.tsx:406 msgid "Add the following DNS record to your domain:" -msgstr "Adaugă următorul registru DNS la adresa ta web:" +msgstr "Adăugați următoarea înregistrare DNS la domeniul dvs:" #: src/components/FeedCard.tsx:305 msgid "Add this feed to your feeds" -msgstr "Adaugă acest flux la fluxurile tale" +msgstr "Adăugați acest flux la fluxurile dvs." #: src/view/com/profile/ProfileMenu.tsx:305 #: src/view/com/profile/ProfileMenu.tsx:308 msgid "Add to lists" -msgstr "" - -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Adaugă la fluxurile mele" +msgstr "Adăugare la liste" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" -msgstr "" +msgstr "Adăugare utilizator la listă" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109 #: src/view/com/modals/UserAddRemoveLists.tsx:162 msgid "Added to list" msgstr "Adăugat la listă" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Adăugat la fluxurile mele" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "Detalii suplimentare (limită de 1000 de caractere)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" -msgstr "" +msgstr "Detalii suplimentare (limită de 300 de caractere)" #: src/view/com/composer/labels/LabelsBtn.tsx:159 msgid "Adult" msgstr "Adulți" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" -msgstr "Conținut pentru adulți" +msgstr "Conținut pentru Adulți" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Conținutul pentru adulți poate fi activat doar pe Web la <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Conținutul pentru adulți este dezactivat." #: src/view/com/composer/labels/LabelsBtn.tsx:138 #: src/view/com/composer/labels/LabelsBtn.tsx:196 msgid "Adult Content labels" -msgstr "Etichete pentru conținut pentru adulți" +msgstr "Etichete Conținut pentru Adulți" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Avansat" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "Verificarea Vârstei" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "Trimiterea cererii de verificare a vârstei a eșuat. Vă rugăm încercați din nou." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "Cererea de verificare a vârstei a fost înregistrată" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "Verificarea vârstei durează doar câteva minute" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" -msgstr "" +msgstr "andreea@exemplu.ro" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Toate" @@ -793,48 +837,53 @@ msgstr "Toate conturile au fost urmărite!" msgid "All languages" msgstr "Toate limbile" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." -msgstr "Toate fluxurile salvate sunt acum într-un singur loc." +msgstr "Toate fluxurile pe care le-ați salvat, într-un singur loc." #: src/screens/Settings/components/AddAppPasswordDialog.tsx:146 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:153 msgid "Allow access to your direct messages" -msgstr "Permite accesul la mesajele tale directe" +msgstr "Permiteți accesul la mesajele dvs. directe" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" -msgstr "Permite mesaje noi de la" +msgstr "Permiteți mesaje noi de la" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "Permiteți celorlalți să fie notificați despre postările dvs." + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" -msgstr "Permite citare postări" +msgstr "Permiteți postări citat" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" -msgstr "Permite răspunsuri de la:" +msgstr "Permiteți răspunsuri de la:" #: src/screens/Settings/AppPasswords.tsx:200 msgid "Allows access to direct messages" -msgstr "Permite accesul la mesajele directe" +msgstr "Permiteți accesul la mesajele directe" #: src/screens/Login/ForgotPasswordForm.tsx:171 #: src/view/com/modals/ChangePassword.tsx:182 msgid "Already have a code?" -msgstr "Ai deja un cod?" +msgstr "Aveți deja un cod?" #: src/screens/Login/ChooseAccountForm.tsx:43 msgid "Already signed in as @{0}" -msgstr "Ești deja conectat ca @{0}" +msgstr "Deja conectat ca @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,58 +893,50 @@ msgstr "ALT" msgid "Alt text" msgstr "Text alternativ" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" -msgstr "Text alternativ" +msgstr "Text Alternativ" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Textul alternativ descrie imaginile pentru utilizatorii cu deficiențe de vedere și oferă context pentru toată lumea." #: src/view/com/composer/GifAltText.tsx:179 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}" -msgstr "" +msgstr "Textul alternativ va fi trunchiat. {MAX_ALT_TEXT, plural, other {Limită: {0} caractere.}}" #: src/screens/Settings/components/DisableEmail2FADialog.tsx:93 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." -msgstr "Un e-mail a fost trimis către {0}. Acesta conține un cod de confirmare pe care îl poți introduce mai jos." +msgstr "Un e-mail a fost trimis la {0}. Acesta include un cod de confirmare pe care îl puteți introduce mai jos." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Un e-mail a fost trimis! Te rog introdu codul de confirmare inclus în e-mail mai jos." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "A apărut o eroare" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "A apărut o eroare" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." -msgstr "A apărut o eroare în timpul compresiei videoclipului." +msgstr "A apărut o eroare la comprimarea videoclipului." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." -msgstr "" +msgstr "A apărut o eroare în timpul preluării fluxului." #: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "An error occurred while generating your starter pack. Want to try again?" -msgstr "A apărut o eroare la generarea pachetului tău de început. Vrei să încerci din nou?" +msgstr "A apărut o eroare la generarea pachetului de pornire. Doriți să încercați din nou?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." -msgstr "A apărut o eroare la încărcarea videoclipului. Te rugăm să încerci mai târziu." +msgstr "A apărut o eroare la încărcarea videoclipului. Vă rugăm să încercați din nou mai târziu." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." -msgstr "A apărut o eroare la încărcarea videoclipului. Te rugăm să încerci din nou." +msgstr "A apărut o eroare la încărcarea videoclipului. Vă rugăm să încercați din nou." #: src/components/StarterPack/QrCodeDialog.tsx:72 msgid "An error occurred while saving the QR code!" @@ -908,16 +949,16 @@ msgstr "A apărut o eroare la selectarea videoclipului" #: src/screens/StarterPack/StarterPackScreen.tsx:352 #: src/screens/StarterPack/StarterPackScreen.tsx:374 msgid "An error occurred while trying to follow all" -msgstr "A apărut o eroare în timp ce încercai să urmărești pe toată lumea" +msgstr "A apărut o eroare în timp ce se încerca urmărirea tuturor" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "A apărut o eroare la încărcarea videoclipului." #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84 #: src/components/verification/VerifierDialog.tsx:86 msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts." -msgstr "" +msgstr "O ilustrație care arată că Bluesky selectează verificatori de încredere, iar verificatorii de încredere verifică la rândul lor conturile de utilizator individuale." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28 #: src/lib/moderation/useReportOptions.ts:28 @@ -926,24 +967,24 @@ msgstr "O problemă care nu este inclusă în aceste opțiuni" #: src/components/dms/dialogs/NewChatDialog.tsx:38 msgid "An issue occurred starting the chat" -msgstr "A apărut o problemă la inițierea conversației" +msgstr "A apărut o problemă la începerea conversației" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 msgid "An issue occurred while trying to open the chat" -msgstr "A apărut o problemă în timp ce încercai să deschizi conversația" +msgstr "A apărut o problemă în timp ce se încerca deschiderea conversației" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." -msgstr "A apărut o problemă, te rugăm să încerci din nou." +msgstr "A apărut o problemă, vă rugăm să încercați din nou." #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118 msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name." -msgstr "" +msgstr "O machetă a unui iPhone care arată aplicația Bluesky deschisă la profilul unui utilizator verificat cu o bifă albastră lângă numele afișat." #: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" @@ -954,7 +995,7 @@ msgstr "a apărut o eroare necunoscută" msgid "an unknown labeler" msgstr "un etichetator necunoscut" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "și" @@ -963,37 +1004,47 @@ msgstr "și" msgid "Animals" msgstr "Animale" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "GIF animat" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "Anunț" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" -msgstr "" +msgstr "Anunțăm verificarea pe Bluesky" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33 #: src/lib/moderation/useReportOptions.ts:33 msgid "Anti-Social Behavior" -msgstr "Comportament antisocial" +msgstr "Comportament Anti-Social" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 msgid "Anybody can interact" msgstr "Oricine poate interacționa" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "Oricine mă urmărește" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 msgid "App Icon" -msgstr "Pictograma aplicației" +msgstr "Pictogramă aplicație" #: src/screens/Settings/LanguageSettings.tsx:87 msgid "App Language" -msgstr "Limba aplicației" +msgstr "Limba Aplicației" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:122 msgid "App Password" -msgstr "Parola de aplicație" +msgstr "Parolă Aplicație" #: src/screens/Settings/AppPasswords.tsx:147 msgctxt "toast" @@ -1002,125 +1053,129 @@ msgstr "Parola de aplicație a fost ștearsă" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:84 msgid "App password name must be unique" -msgstr "Numele parolei aplicației trebuie să fie unic" +msgstr "Numele parolei de aplicație trebuie să fie unic" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 msgid "App password names can only contain letters, numbers, spaces, dashes, and underscores" -msgstr "Numele parolelor aplicației pot conține doar litere, cifre, spații, cratime și liniuțe jos" +msgstr "Numele parolelor de aplicație pot conține numai litere, cifre, spații, liniuțe și litere de subliniere" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 msgid "App password names must be at least 4 characters long" -msgstr "Numele parolelor aplicației trebuie să aibă cel puțin 4 caractere" +msgstr "Numele parolelor de aplicație trebuie să aibă cel puțin 4 caractere" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" -msgstr "Parolele aplicație" +msgstr "Parole de aplicații" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" -msgstr "Parolele aplicației" +msgstr "Parole de Aplicație" #: src/components/moderation/LabelsOnMeDialog.tsx:150 #: src/components/moderation/LabelsOnMeDialog.tsx:153 msgid "Appeal" -msgstr "Contestă" +msgstr "Contestație" #: src/components/moderation/LabelsOnMeDialog.tsx:268 msgid "Appeal \"{0}\" label" -msgstr "Contestă eticheta „{0}”" +msgstr "Contestați eticheta „{0}”" #: src/components/moderation/LabelsOnMeDialog.tsx:258 #: src/screens/Messages/components/ChatDisabled.tsx:91 msgctxt "toast" msgid "Appeal submitted" -msgstr "Contestația a fost trimisă" +msgstr "Contestație depusă" #: src/screens/Takendown.tsx:111 #: src/screens/Takendown.tsx:144 msgid "Appeal suspension" -msgstr "" +msgstr "Contestare suspendare" #: src/screens/Takendown.tsx:114 msgid "Appeal Suspension" -msgstr "" +msgstr "Contestare Suspendare" #: src/screens/Messages/components/ChatDisabled.tsx:51 #: src/screens/Messages/components/ChatDisabled.tsx:53 #: src/screens/Messages/components/ChatDisabled.tsx:99 #: src/screens/Messages/components/ChatDisabled.tsx:101 msgid "Appeal this decision" -msgstr "Contestă această decizie" +msgstr "Contestați această decizie" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" -msgstr "Aspect" +msgstr "Aspect Vizual" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 #: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" -msgstr "Aplică fluxurile recomandate implicit" +msgstr "Aplicați fluxurile recomandate implicit" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "Aplicați solicitarea de tragere" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Arhivat de la {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Postare arhivată" #: src/screens/Settings/AppPasswords.tsx:209 msgid "Are you sure you want to delete the app password \"{0}\"?" -msgstr "Sigur ștergi parola pentru aplicația \"{0}\"?" +msgstr "Sigur doriți să ștergeți parola de aplicație „{0}”?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." -msgstr "Ești sigur că vrei să ștergi acest mesaj? Mesajul va fi șters doar pentru tine, dar nu și pentru celălalt participant." +msgstr "Sunteți sigur că doriți să ștergeți acest mesaj? Mesajul va fi șters pentru dvs., dar nu și pentru celălalt participant." #: src/screens/StarterPack/StarterPackScreen.tsx:657 msgid "Are you sure you want to delete this starter pack?" -msgstr "Ești sigur că vrei să ștergi acest pachet de început?" +msgstr "Sunteți sigur că doriți să ștergeți acest pachet de pornire?" #: src/screens/Profile/Header/EditProfileDialog.tsx:86 msgid "Are you sure you want to discard your changes?" -msgstr "Ești sigur că vrei să renunți la modificări?" +msgstr "Sunteți sigur că doriți să renunțați la modificările dvs.?" #: src/components/dms/LeaveConvoPrompt.tsx:46 msgid "Are you sure you want to leave this conversation?" -msgstr "" +msgstr "Sunteți sigur că doriți să părăsiți această conversație?" #: src/components/dms/LeaveConvoPrompt.tsx:45 msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Ești sigur că vrei să părăsești această conversație? Mesajele tale vor fi șterse doar pentru tine, dar nu și pentru celălalt participant." - -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Sigur că vrei să elimini {0} din fluxurile tale?" +msgstr "Sunteți sigur că doriți să părăsiți această conversație? Mesajele dvs. vor fii șterse pentru dvs. dar nu și pentru celălalt participant." #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" -msgstr "Sigur vrei să elimini asta din fluxurile tale?" +msgstr "Sunteți sigur că doriți să eliminați asta din fluxurile dvs.?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" -msgstr "Sigur renunți la acestă schiță?" +msgstr "Sunteți sigur că doriți să renunțați la această schiță?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" -msgstr "Sigur vrei să renunți la această postare?" +msgstr "Sunteți sigur că doriți să renunțați la această postare?" #: src/components/dialogs/MutedWords.tsx:433 msgid "Are you sure?" -msgstr "Ești sigur?" +msgstr "Sunteți sigur?" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:74 msgid "Are you writing in <0>{suggestedLanguageName}?" -msgstr "Scrii în <0>{suggestedLanguageName}?" +msgstr "Scrieți în <0>{suggestedLanguageName}?" #: src/screens/Onboarding/index.tsx:23 #: src/screens/Onboarding/state.ts:95 @@ -1131,28 +1186,25 @@ msgstr "Artă" msgid "Artistic or non-erotic nudity." msgstr "Nuditate artistică sau non-erotică." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" -msgstr "" +msgstr "Atribuiți subiectul pentru algoritm" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Cel puțin 3 caractere" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" -msgstr "" - -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Opțiunile de redare automată au fost mutate la <0>Setări de conținut și media." +msgstr "Aurora" #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" -msgstr "Redare automată pentru videoclipuri și GIF-uri" +msgstr "Redare automată videoclipuri și GIF-uri" + +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "Disponibil" #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 @@ -1163,19 +1215,19 @@ msgstr "Redare automată pentru videoclipuri și GIF-uri" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Înapoi" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" -msgstr "" +msgstr "Înapoi la Conversații" #: src/view/screens/Lists.tsx:53 #: src/view/screens/ModerationModlists.tsx:53 @@ -1184,121 +1236,137 @@ msgstr "Înainte de a crea o listă, trebuie să-ți verifici adresa de e-mail." #: src/lib/hooks/useOpenComposer.tsx:14 msgid "Before creating a post or replying, you must first verify your email." -msgstr "" +msgstr "Înainte de a crea o postare sau un răspuns, trebuie să vă verificați mai întâi e-mailul." #: src/components/StarterPack/ProfileStarterPacks.tsx:235 #: src/components/StarterPack/ProfileStarterPacks.tsx:245 msgid "Before creating a starter pack, you must first verify your email." -msgstr "Înainte de a crea un pachet de început, trebuie să-ți verifici adresa de e-mail." +msgstr "Înainte de a crea un pachet de pornire, trebuie să vă verificați mai întâi e-mailul." #: src/screens/Messages/components/RequestButtons.tsx:235 msgid "Before you can accept this chat request, you must first verify your email." -msgstr "" +msgstr "Înainte de a putea accepta această cerere de conversație, trebuie mai întâi să vă verificați adresa de e-mail." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "Înainte de a primi notificări despre postările noi de la {name}, trebuie mai întâi să vă verificați e-mailul." #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." -msgstr "" +msgstr "Înainte de a putea trimite mesaje unui alt utilizator, trebuie mai întâi să vă verificați adresa de e-mail." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "Începeți" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "Începeți procesul de verificare a vârstei" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "Începeți procesul de verificare a vârstei completând câmpurile de mai jos." #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Zi de naștere" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" -msgstr "Blochează" +msgstr "Blocare" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Block account" -msgstr "Blochează contul" +msgstr "Blocare cont" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" -msgstr "Blochezi contul?" +msgstr "Blocați Contul?" #: src/view/screens/ProfileList.tsx:669 msgid "Block accounts" -msgstr "Blochează conturi" +msgstr "Blocare conturi" #: src/components/dms/ReportDialog.tsx:317 msgid "Block and Delete" -msgstr "Blochează și șterge" +msgstr "Blocare și Ștergere" #: src/components/dms/ReportDialog.tsx:352 msgid "Block and/or delete this conversation" -msgstr "Blochează și/sau șterge această conversație" +msgstr "Blocați și/sau ștergeți această conversație" #: src/view/screens/ProfileList.tsx:789 msgid "Block list" -msgstr "Blochează lista" +msgstr "Listă de blocări" #: src/screens/Messages/components/ChatStatusInfo.tsx:46 msgid "Block or report" -msgstr "" +msgstr "Blocare sau raportare" #: src/view/screens/ProfileList.tsx:784 msgid "Block these accounts?" -msgstr "Blochezi aceste conturi?" +msgstr "Blocați aceste conturi?" #: src/components/dms/ReportDialog.tsx:356 #: src/components/dms/ReportDialog.tsx:359 msgid "Block user" -msgstr "Blochează utilizatorul" +msgstr "Blocare utilizator" #: src/components/dms/ReportDialog.tsx:323 msgid "Block User" -msgstr "Blochează utilizatorul" +msgstr "Blocare Utilizator" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Blocat" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Conturi blocate" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" -msgstr "Conturi blocate" +msgstr "Conturi Blocate" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." -msgstr "Conturile blocate nu pot răspunde în conversațiile tale, nu te pot menționa și nu pot interacționa cu tine." +msgstr "Conturile blocate nu pot răspunde în firele dvs., să vă menționeze, sau să interacționeze într-un fel cu dvs." #: src/view/screens/ModerationBlockedAccounts.tsx:190 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." -msgstr "Conturile blocate nu pot răspunde în conversațiile tale, să te menționeze sau să interacționeze cu tine. Nu vei vedea conținutul lor și li se va restricționa accesul la conținutul tău." +msgstr "Conturile blocate nu pot răspunde în firele dvs., să vă menționeze, sau să interacționeze într-un fel cu dvs. Nu le veți putea vedea conținutul și ei nu vor putea să-l vadă pe al dvs." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Postare blocată." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." -msgstr "Blocarea nu împiedică acest etichetator să plaseze etichete pe contul tău." +msgstr "Blocarea nu împiedică acest etichetator să plaseze etichete pe contul dvs." #: src/view/screens/ProfileList.tsx:786 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." -msgstr "Blocarea este publică. Conturile blocate nu pot răspunde în conversațiile tale, să te menționeze sau să interacționeze cu tine." +msgstr "Blocarea este publică. Conturile blocate nu pot răspunde în firele dvs., să vă menționeze, sau să interacționeze într-un fel cu dvs." #: src/view/com/profile/ProfileMenu.tsx:465 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." -msgstr "Blocarea nu va împiedica plasarea etichetelor pe contul tău, dar va opri acest cont din a răspunde în conversațiile tale sau din a interacționa cu tine." +msgstr "Blocarea nu va împiedica aplicarea etichetelor pe contul dvs., dar va împiedica acest cont să răspundă în firele dvs. sau să interacționeze cu dvs." #: src/view/com/auth/SplashScreen.web.tsx:175 msgid "Blog" @@ -1309,22 +1377,23 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky nu poate confirma autenticitatea datei revendicate." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" -msgstr "" +msgstr "Bluesky Classic™" #: src/view/com/auth/server-input/index.tsx:212 msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." -msgstr "Bluesky este o rețea deschisă unde poți alege furnizorul de găzduire. Dacă ești dezvoltator, îți poți găzdui propriul server." +msgstr "Bluesky este o rețea deschisă unde vă puteți alege furnizorul de găzduire. Dacă sunteți un dezvoltator, puteți să vă găzduiți propriul dvs. server." #: src/view/com/auth/server-input/index.tsx:149 msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." -msgstr "Bluesky este o rețea deschisă în care îți poți alege propriul furnizor. Dacă ești pentru prima dată aici, îți recomandăm să rămâi cu opțiunea Bluesky Social implicită." +msgstr "Bluesky este o rețea deschisă în care vă puteți alege propriul furnizor. Dacă sunteți nou aici, vă recomandăm să rămâneți cu opțiunea Bluesky Social implicită." #: src/components/ProgressGuide/List.tsx:53 #: src/components/ProgressGuide/List.tsx:70 @@ -1333,19 +1402,27 @@ msgstr "Bluesky este mai bun cu prietenii!" #: src/screens/Takendown.tsx:217 msgid "Bluesky Social Terms of Service" -msgstr "Termeni de utilizare Bluesky Social" +msgstr "Termenii de Serviciu a Bluesky Social" #: src/components/StarterPack/ProfileStarterPacks.tsx:310 msgid "Bluesky will choose a set of recommended accounts from people in your network." -msgstr "Bluesky va alege un set de conturi recomandate de la persoane din rețeaua ta." +msgstr "Bluesky va alege un set de conturi recomandate de la persoanele din rețeaua dvs." #: src/screens/Settings/components/PwiOptOut.tsx:99 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." -msgstr "Bluesky nu va afișa profilul și postările tale utilizatorilor neautentificați. Alte aplicații s-ar putea să nu respecte această solicitare. Acest lucru nu face contul tău privat." +msgstr "Bluesky nu va afișa profilul și postările dvs. pentru utilizatorii deconectați. Este posibil ca alte aplicații să nu onoreze această cerere. Acest lucru nu face contul dvs. privat." #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132 msgid "Bluesky will proactively verify notable and authentic accounts." -msgstr "" +msgstr "Bluesky va verifica proactiv conturile notabile și autentice." + +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "Regulile Comunității Bluesky" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "Regulile Comunității Actualizate ale Bluesky" #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" @@ -1357,70 +1434,67 @@ msgstr "Pictograme Bluesky+" #: src/lib/moderation/useLabelBehaviorDescription.ts:53 msgid "Blur images" -msgstr "Estompare imagine" +msgstr "Estompare imagini" #: src/lib/moderation/useLabelBehaviorDescription.ts:51 msgid "Blur images and filter from feeds" -msgstr "Estompează imaginea și filtrează-o din fluxuri" +msgstr "Estompați imaginile și filtrați din fluxuri" #: src/screens/Onboarding/index.tsx:30 #: src/screens/Onboarding/state.ts:96 msgid "Books" msgstr "Cărți" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" -msgstr "Caută mai multe conturi pe pagina Explorează" +msgstr "Răsfoiți mai multe conturi pe pagina Explorare" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" -msgstr "Caută mai multe fluxuri pe pagina Explorează" +msgstr "Răsfoiți mai multe fluxuri pe pagina Explorare" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" -msgstr "Vezi mai multe sugestii" +msgstr "Răsfoiți mai multe sugestii" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" -msgstr "Vezi mai multe sugestii pe pagina Explorează" +msgstr "Răsfoiți mai multe sugestii pe pagina Explorare" #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" -msgstr "Caută alte fluxuri" +msgstr "Răsfoiți alte fluxuri" #: src/components/TrendingTopics.tsx:178 msgid "Browse posts about {displayName}" -msgstr "Răsfoiește postări despre {displayName}" +msgstr "Răsfoiți postări despre {displayName}" #: src/components/TrendingTopics.tsx:186 msgid "Browse posts tagged with {displayName}" -msgstr "Răsfoiește postările etichetate cu {displayName}" +msgstr "Răsfoiți postări etichetate cu {displayName}" #: src/components/TrendingTopics.tsx:195 msgid "Browse starter pack {displayName}" -msgstr "" +msgstr "Răsfoiți pachetul de pornire {displayName}" #: src/screens/Search/modules/ExploreTrendingTopics.tsx:93 msgid "Browse topic {0}" -msgstr "" +msgstr "Răsfoiți subiectul {0}" #: src/components/TrendingTopics.tsx:232 msgid "Browse topic {displayName}" -msgstr "Răsfoiește subiectul {displayName}" +msgstr "Răsfoiți subiectul {displayName}" #: src/view/com/auth/SplashScreen.web.tsx:170 msgid "Business" msgstr "Afaceri" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "De {0}" @@ -1428,34 +1502,45 @@ msgstr "De {0}" msgid "By <0>{0}" msgstr "de <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "Făcând clic pe „Continuare”, confirmați că ați înțeles și sunteți de acord cu aceste actualizări." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "Prin continuare, sunteți de acord cu <0>Termenii și Condițiile KWS și confirmați că KWS vă va stoca starea verificată împreună cu adresa de e-mail codificată prin hash, în conformitate cu <1>Politica de Confidențialitate KWS. Asta înseamnă că nu va trebui să o verificați din nou data viitoare când veți utiliza această adresă de e-mail pentru alte aplicații, jocuri și servicii bazate pe tehnologia KWS." + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." -msgstr "Prin crearea unui cont ești de acord cu <0>Politica de Confidențialitate." +msgstr "Prin crearea unui cont sunteți de acord cu <0>Politica de Confidențialitate." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." -msgstr "Prin crearea unui cont ești de acord cu <0>Termenii Serviciului și <1>Politica de Confidențialitate." +msgstr "Prin crearea unui cont sunteți de acord cu <0>Termenii de Serviciu și <1>Politica de Confidențialitate." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." -msgstr "Prin crearea unui cont ești de acord cu <0>Termenii Serviciului." +msgstr "Prin crearea unui cont sunteți de acord cu <0>Termenii de Serviciu." #: src/screens/Search/components/StarterPackCard.tsx:105 msgid "By you" -msgstr "" +msgstr "De dvs." #: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Camera" msgstr "Cameră" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,66 +1551,55 @@ msgstr "Cameră" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" -msgstr "Anulează" +msgstr "Anulare" #: src/view/com/modals/CreateOrEditList.tsx:338 #: src/view/com/modals/DeleteAccount.tsx:170 #: src/view/com/modals/DeleteAccount.tsx:278 msgctxt "action" msgid "Cancel" -msgstr "Anulează" +msgstr "Anulare" #: src/view/com/modals/DeleteAccount.tsx:166 #: src/view/com/modals/DeleteAccount.tsx:274 msgid "Cancel account deletion" -msgstr "Anulează ștergerea contului" +msgstr "Anulați ștergerea contului" #: src/view/com/modals/CropImage.web.tsx:94 msgid "Cancel image crop" -msgstr "Anulează decuparea imaginii" +msgstr "Anulare decupare imagine" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Anulează editarea profilului" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" -msgstr "Anulează citarea postării" +msgstr "Anulare citat postare" #: src/screens/Deactivated.tsx:152 msgid "Cancel reactivation and sign out" -msgstr "" +msgstr "Anulați reactivarea și deconectați-vă" #: src/screens/Search/Shell.tsx:341 msgid "Cancel search" -msgstr "Anulează căutarea" - -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Anulează deschiderea site-ului web asociat" +msgstr "Anulare căutare" #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" -msgstr "Nu poți interacționa cu un utilizator blocat" +msgstr "Nu se poate interacționa cu un utilizator blocat" #: src/view/com/composer/videos/SubtitleDialog.tsx:132 msgid "Captions (.vtt)" @@ -1538,68 +1612,60 @@ msgstr "Subtitrări și text alternativ" #: src/screens/Settings/components/Email2FAToggle.tsx:31 msgid "Change" -msgstr "Schimbă" +msgstr "Modificare" #: src/screens/Settings/AppIconSettings/index.tsx:39 msgid "Change app icon" -msgstr "Schimbă pictograma aplicației" +msgstr "Schimbați pictograma aplicației" #: src/screens/Settings/AppIconSettings/index.tsx:38 #: src/screens/Settings/AppIconSettings/index.tsx:221 msgid "Change app icon to \"{0}\"" -msgstr "Schimbă pictogama aplicației cu \"{0}\"" +msgstr "Schimbați pictograma aplicației în „{0}”" #: src/components/AppLanguageDropdown.tsx:40 msgid "Change app language" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Schimbă adresa de e-mail" +msgstr "Schimbați limba aplicației" #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" -msgstr "Schimbă numele de utilizator" +msgstr "Modificare Identificator" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" -msgstr "" +msgstr "Schimbați serviciul de moderare" #: src/view/com/modals/ChangePassword.tsx:153 msgid "Change Password" -msgstr "Schimbă parola" +msgstr "Modificare Parolă" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:85 msgid "Change post language to {suggestedLanguageName}" -msgstr "Schimbă limba postării în {suggestedLanguageName}" +msgstr "Modificați limba postării în {suggestedLanguageName}" #: src/components/moderation/ReportDialog/index.tsx:244 msgid "Change report reason" -msgstr "" - -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Schimbă-ți e-mailul" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Schimbă-ți adresa de e-mail" +msgstr "Modificați motivul raportului" #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" -msgstr "" +msgstr "Schimbați pictograma aplicației" #: src/components/forms/HostingProvider.tsx:49 #: src/components/forms/HostingProvider.tsx:69 msgid "Changes hosting provider" -msgstr "" +msgstr "Schimbați furnizorul de găzduire" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "Modificări salvate" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Conversații" @@ -1607,140 +1673,155 @@ msgstr "Conversații" #: src/screens/Messages/components/RequestButtons.tsx:304 msgctxt "toast" msgid "Chat deleted" -msgstr "" +msgstr "Conversație ștearsă" + +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "Conversații - silențios" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "Conversații - sunet" #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" -msgstr "Conversație pusă pe mut" +msgstr "Conversație amuțită" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" -msgstr "" +msgstr "Inbox cerere de conversație" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" -msgstr "" +msgstr "Cereri de conversație" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Setări conversație" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" -msgstr "Setări conversație" +msgstr "Setări Conversație" #: src/components/dms/ConvoMenu.tsx:178 msgctxt "toast" msgid "Chat unmuted" -msgstr "Conversație scoasă de pe mut" +msgstr "Conversație dezamuțită" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" -msgstr "" +msgstr "Conversații" #: src/screens/SignupQueued.tsx:78 #: src/screens/SignupQueued.tsx:82 msgid "Check my status" -msgstr "Verifică-mi statutul" +msgstr "Verificați-mi statusul" #: src/screens/Login/LoginForm.tsx:301 msgid "Check your email for a sign in code and enter it here." -msgstr "" +msgstr "Verificați-vă adresa de e-mail pentru un cod de conectare și introduceți-l aici." #: src/view/com/modals/DeleteAccount.tsx:213 msgid "Check your inbox for an email with the confirmation code to enter below:" -msgstr "Verifică-ți căsuța poștală pentru un e-mail cu codul de confirmare, pe care să-l introduci mai jos:" +msgstr "Verificați-vă inbox-ul pentru un e-mail cu codul de confirmare pentru a-l introduce mai jos:" #: src/screens/Settings/components/ChangeHandleDialog.tsx:389 msgid "Choose domain verification method" -msgstr "Alege metoda de verificare a adresei web" +msgstr "Alegeți metoda de verificare a domeniului" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" -msgstr "Alege fluxurile" +msgstr "Alegeți Fluxuri" #: src/components/StarterPack/ProfileStarterPacks.tsx:318 msgid "Choose for me" -msgstr "Alege pentru mine" +msgstr "Alegeți pentru mine" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" -msgstr "Alege persoane" +msgstr "Alegeți Persoane" #: src/screens/Onboarding/StepFinished.tsx:298 msgid "Choose the algorithms that power your custom feeds." -msgstr "Alege algoritmii care îți alimentează fluxurile personalizate." +msgstr "Alegeți algoritmii care alimentează fluxurile dvs. personalizate." #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 msgid "Choose this color as your avatar" -msgstr "Alege această culoare pentru avatarul tău" +msgstr "Alegeți această culoare ca avatar" #: src/view/com/auth/server-input/index.tsx:130 msgid "Choose your account provider" -msgstr "Alege furnizorul contului tău" +msgstr "Alegeți furnizorul de cont" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." -msgstr "Alege propria ta cronologie! Fluxurile create de comunitate te ajută să găsești conținutul care îți place." +msgstr "Alegeți propria cronologie! Fluxurile create de comunitate vă ajută să găsiți conținutul care vă place." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" -msgstr "Alege-ți parola" +msgstr "Alegeți-vă parola" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" -msgstr "Alege numele de utilizator" +msgstr "Alegeți-vă numele de utilizator" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" -msgstr "Șterge toate datele stocate" +msgstr "Ștergeți toate datele de stocare" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" -msgstr "Șterge toate datele stocate (repornește după aceasta)" +msgstr "Ștergeți toate datele de stocare (reporniți după aceasta)" #: src/screens/Settings/AboutSettings.tsx:116 #: src/screens/Settings/AboutSettings.tsx:120 msgid "Clear image cache" -msgstr "" +msgstr "Golire cache imagini" #: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" -msgstr "Șterge căutarea" +msgstr "Ștergeți interogarea de căutare" + +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "Clic pentru informații" #: src/view/screens/Support.tsx:41 msgid "click here" -msgstr "apasă aici" +msgstr "faceți clic aici" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." -msgstr "" +msgstr "Faceți clic aici pentru a reporni procesul de verificare." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" -msgstr "" +msgstr "Faceți clic aici pentru a vă actualiza e-mailul" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." -msgstr "Apasă pentru a dezactiva citările pentru această postare." +msgstr "Faceți clic pentru a dezactiva postările citate ale acestei postări." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." -msgstr "Apasă pentru a activa citările pentru această postare." +msgstr "Faceți clic pentru a activa postările citate ale acestei postări." #: src/components/RichTextTag.tsx:54 msgid "Click to open tag menu for {tag}" -msgstr "Apasă pentru a deschide meniul pentru {tag}" +msgstr "Faceți clic pentru a deschide meniul de etichete pentru {tag}" #: src/components/dms/MessageItem.tsx:317 msgid "Click to retry failed message" -msgstr "Apasă pentru a reîncerca mesajul eșuat" +msgstr "Faceți clic pentru a reîncerca mesajul eșuat" #: src/screens/Onboarding/index.tsx:32 msgid "Climate" @@ -1750,14 +1831,16 @@ msgstr "Climă" msgid "Clip 🐴 clop 🐴" msgstr "Clip 🐴 clop 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,100 +1848,106 @@ msgstr "Clip 🐴 clop 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" -msgstr "Închide" +msgstr "Închidere" #: src/components/Dialog/index.web.tsx:111 #: src/components/Dialog/index.web.tsx:259 msgid "Close active dialog" -msgstr "Închide fereastra activă" +msgstr "Închideți dialogul activ" #: src/screens/Login/PasswordUpdatedForm.tsx:31 msgid "Close alert" -msgstr "Închide alerta" +msgstr "Închideți alerta" #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" -msgstr "Închide sertarul de jos" +msgstr "Închideți sertarul de jos" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" -msgstr "Închide fereastra" +msgstr "Închideți dialogul" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" -msgstr "" +msgstr "Închideți meniul sertar" #: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136 #: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172 msgid "Close emoji picker" -msgstr "Închide selectorul de emoji" +msgstr "Închideți selectorul de emoji" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" -msgstr "Închide fereastra GIF-uri" +msgstr "Închideți dialogul GIF" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:31 msgid "Close image" -msgstr "Închide imaginea" +msgstr "Închideți imaginea" #: src/view/com/lightbox/Lightbox.web.tsx:109 msgid "Close image viewer" -msgstr "Închide galeria" +msgstr "Închideți vizualizatorul de imagini" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 msgid "Close menu" -msgstr "" +msgstr "Închideți meniul" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" -msgstr "Închide această fereastră" +msgstr "Închideți acest dialog" #: src/screens/Login/PasswordUpdatedForm.tsx:32 msgid "Closes password update alert" -msgstr "Închide alerta de actualizare a parolei" +msgstr "Închideți alerta pentru actualizarea parolei" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" -msgstr "" +msgstr "Închide compozitorul de postări și elimină ciorna" #: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137 #: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173 msgid "Closes the emoji picker" -msgstr "" +msgstr "Închideți selectorul de emoji" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:32 msgid "Closes viewer for header image" -msgstr "Închide galeria pentru imaginea de copertă" +msgstr "Închide vizualizatorul pentru imaginea antentului" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" -msgstr "Restrânge lista utilizatorilor" +msgstr "Restrângeți lista de utilizatori" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" -msgstr "Restrânge lista utilizatorilor pentru o notificare anume" +msgstr "Restrânge lista de utilizatori pentru o anumită notificare" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" -msgstr "Modul de culoare" +msgstr "Mod culoare" #: src/components/dialogs/Embed.tsx:151 msgid "Color theme" -msgstr "" +msgstr "Temă de culoare" #: src/screens/Onboarding/index.tsx:38 #: src/screens/Onboarding/state.ts:97 @@ -1868,76 +1957,70 @@ msgstr "Comedie" #: src/screens/Onboarding/index.tsx:24 #: src/screens/Onboarding/state.ts:98 msgid "Comics" -msgstr "Benzi desenate" +msgstr "Benzi Desenate" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" -msgstr "Regulile comunității" +msgstr "Regulile Comunității" #: src/screens/Onboarding/StepFinished.tsx:311 msgid "Complete onboarding and start using your account" -msgstr "Finalizează înscrierea și începe să folosești contul" +msgstr "Finalizați înregistrarea și începeți să vă folosiți contul" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" -msgstr "Finalizează provocarea" +msgstr "Finalizați provocarea" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" -msgstr "Creează o postare nouă" +msgstr "Compuneți o nouă postare" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" -msgstr "" +msgstr "Compuneți postări de până la {0, plural, one {} few {# caractere}other {# de caractere}} lungime" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" -msgstr "Creează un răspuns" +msgstr "Compunere răspuns" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." -msgstr "Compresie videoclip..." +msgstr "Se comprimă videoclipul..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" -msgstr "Configurează setările de filtrare a conținutului pentru categoria: {name}" +msgstr "Configurare setare filtrare conținut pentru categorie: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Configurat în <0>setările de moderare." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:188 msgid "Confirm" -msgstr "Confirmă" +msgstr "Confirmare" #: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34 msgid "Confirm content language settings" -msgstr "Confirmă setările limbii pentru conținut" +msgstr "Confirmați setările de limbă de conținut" #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Confirm delete account" -msgstr "Confirmă ștergerea contului" +msgstr "Confirmare ștergere cont" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" -msgstr "Confirmă-ți vârsta:" +msgstr "Confirmați-vă vârsta:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" -msgstr "Confirmă-ți data nașterii" +msgstr "Confirmați-vă data nașterii" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,98 +2029,119 @@ msgstr "Confirmă-ți data nașterii" msgid "Confirmation code" msgstr "Cod de confirmare" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Cod de confirmare" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Se conectează..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "Problemă de conexiune" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "Contactați echipa noastră de moderare" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" -msgstr "Contactează suportul" +msgstr "Contactați asistență" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "Contactați-ne" #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" -msgstr "Conținut și media" +msgstr "Conținut & Media" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Conținut și media" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" -msgstr "Conținut și media" +msgstr "Conținut și Media" #: src/lib/moderation/useGlobalLabelStrings.ts:18 msgid "Content Blocked" -msgstr "Conținut blocat" +msgstr "Conținut Blocat" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Filtre de conținut" #: src/screens/Search/modules/ExploreRecommendations.tsx:59 msgid "Content from across the network we think you might like." -msgstr "Conținut din întreaga rețea care credem că ți-ar plăcea." +msgstr "Conținut din întreaga rețea care credem că v-ar plăcea." #: src/screens/Settings/LanguageSettings.tsx:153 #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76 msgid "Content Languages" -msgstr "Limbi pentru conținut" +msgstr "Limbi Conținut" #: src/components/moderation/ModerationDetailsDialog.tsx:82 #: src/lib/moderation/useModerationCauseDescription.ts:82 msgid "Content Not Available" -msgstr "Conținutul nu este disponibil" +msgstr "Conținut Indisponibil" #: src/components/moderation/ModerationDetailsDialog.tsx:50 #: src/components/moderation/ScreenHider.tsx:93 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:45 msgid "Content Warning" -msgstr "Avertisment de conținut" +msgstr "Avertisment Privind Conținutul" #: src/view/com/composer/labels/LabelsBtn.tsx:60 msgid "Content warnings" -msgstr "Avertismente de conținut" +msgstr "Avertismente privind conținutul" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." -msgstr "Fundalul meniului contextual, apasă pentru a închide meniul." +msgstr "Fundal meniu contextual, faceți clic pentru a închide meniul." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" -msgstr "Continuă" +msgstr "Continuare" #: src/components/AccountList.tsx:128 msgid "Continue as {0} (currently signed in)" -msgstr "Continuă ca {0} (autentificat în prezent)" +msgstr "Continuare ca {0} (în prezent conectat)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "Continuați firul" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." -msgstr "Continuă discuția..." +msgstr "Continuați firul..." #: src/screens/Onboarding/StepInterests/index.tsx:241 #: src/screens/Onboarding/StepProfile/index.tsx:273 #: src/screens/Signup/BackNextButtons.tsx:60 msgid "Continue to next step" -msgstr "Continuă la pasul următor" +msgstr "Continuați la pasul următor" + +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "Conversație" #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" msgid "Conversation deleted" -msgstr "Conversația a fost ștearsă" +msgstr "Conversație ștearsă" #: src/screens/Messages/components/ChatListItem.tsx:196 msgid "Conversation deleted" -msgstr "Conversația a fost ștearsă" +msgstr "Conversație ștearsă" #: src/screens/Onboarding/index.tsx:41 msgid "Cooking" @@ -2051,10 +2155,10 @@ msgstr "Copiat" msgid "Copied build version to clipboard" msgstr "Versiunea de compilare a fost copiată în clipboard" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2068,101 +2172,111 @@ msgstr "Copiat!" #: src/screens/Settings/AboutSettings.tsx:127 msgid "Copies build version to clipboard" -msgstr "" +msgstr "Copiază versiunea de compilare în clipboard" #: src/components/StarterPack/QrCodeDialog.tsx:182 msgid "Copy" -msgstr "Copiază" - -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "" +msgstr "Copiere" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" -msgstr "Copiază parola de aplicație" +msgstr "Copiere Parolă de Aplicație" #: src/view/com/profile/ProfileMenu.tsx:421 #: src/view/com/profile/ProfileMenu.tsx:424 msgid "Copy at:// URI" -msgstr "" +msgstr "Copiere at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" -msgstr "" +msgstr "Copiere DID autor" #: src/components/dialogs/Embed.tsx:189 #: src/components/dialogs/Embed.tsx:206 msgid "Copy code" -msgstr "Copiază codul" +msgstr "Copiere cod" #: src/screens/Settings/components/ChangeHandleDialog.tsx:491 #: src/view/com/profile/ProfileMenu.tsx:430 #: src/view/com/profile/ProfileMenu.tsx:433 msgid "Copy DID" -msgstr "Copiază DID" +msgstr "Copiere DID" #: src/screens/Settings/components/ChangeHandleDialog.tsx:424 msgid "Copy host" -msgstr "Copiază gazda" +msgstr "Copiere gazdă" #: src/components/StarterPack/ShareDialog.tsx:104 #: src/screens/StarterPack/StarterPackScreen.tsx:617 msgid "Copy link" -msgstr "Copiază link-ul" +msgstr "Copiere link" #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Copy Link" -msgstr "Copiază Link-ul" +msgstr "Copiere Link" #: src/view/screens/ProfileList.tsx:513 msgid "Copy link to list" -msgstr "Copiază link-ul listei" +msgstr "Copiere link listă" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" -msgstr "Copiază link-ul postării" +msgstr "Copiere link postare" #: src/view/com/profile/ProfileMenu.tsx:243 #: src/view/com/profile/ProfileMenu.tsx:254 msgid "Copy link to profile" -msgstr "" +msgstr "Copiere link profil" #: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Copy link to starter pack" -msgstr "" +msgstr "Copiere link pachet de pornire" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" -msgstr "Copiază textul mesajului" +msgstr "Copiere mesaj text" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" -msgstr "" +msgstr "Copiere at:// URI postare" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" -msgstr "Copiază textul postării" +msgstr "Copiere text postare" #: src/components/StarterPack/QrCodeDialog.tsx:176 msgid "Copy QR code" -msgstr "Copiază codul QR" +msgstr "Copiere cod QR" #: src/screens/Settings/components/ChangeHandleDialog.tsx:445 msgid "Copy TXT record value" -msgstr "Copiază valoarea înregistrării TXT" +msgstr "Copiați valoarea înregistrării TXT" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" -msgstr "Politica drepturilor de autor" +msgstr "Politica Privind Drepturile de Autor" + +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "Nu ne-am putut conecta la fluxul personalizat" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "Nu ne-am putut conecta la serviciul de fluxuri" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "Nu s-a putut găsi profilul" #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 @@ -2179,80 +2293,89 @@ msgstr "Nu s-a putut încărca lista" #: src/components/dms/ConvoMenu.tsx:182 msgid "Could not mute chat" -msgstr "Conversația nu a putut fi pusă pe mut" +msgstr "Nu s-a putut amuții conversația" #: src/view/com/composer/videos/VideoPreview.web.tsx:66 msgid "Could not process your video" -msgstr "Nu s-a putut procesa videoclipul" +msgstr "Videoclipul nu a putut fi procesat" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "Nu s-au putut salva modificările: {0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "Nu s-au putut actualiza setările de notificare" #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" -msgstr "Creează" +msgstr "Creare" #: src/components/StarterPack/QrCodeDialog.tsx:160 msgid "Create a QR code for a starter pack" -msgstr "Creează un cod QR pentru un pachet de început" +msgstr "Creați un cod QR pentru un pachet de pornire" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" -msgstr "Creează un pachet de început" +msgstr "Creați un pachet de pornire" #: src/components/StarterPack/ProfileStarterPacks.tsx:274 msgid "Create a starter pack for me" -msgstr "Creează un pachet de început pentru mine" +msgstr "Creați un pachet de pornire pentru mine" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" -msgstr "Înscrie-te" +msgstr "Creare cont" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" -msgstr "Creează Cont" +msgstr "Creare Cont" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" -msgstr "Creează un cont" +msgstr "Creați un cont" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:310 msgid "Create an account without using this starter pack" -msgstr "" +msgstr "Creați un cont fără a utiliza acest pachet de pornire" #: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Create an avatar instead" -msgstr "Creează un avatar în schimb" +msgstr "Creați un avatar în schimb" #: src/components/StarterPack/ProfileStarterPacks.tsx:185 msgid "Create another" -msgstr "Creează altul" +msgstr "Creați altul" #: src/view/com/auth/SplashScreen.tsx:47 #: src/view/com/auth/SplashScreen.web.tsx:109 msgid "Create new account" -msgstr "Creează un cont nou" +msgstr "Creare cont nou" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" -msgstr "Creează un raport pentru {0}" +msgstr "Creați un raport pentru {0}" #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" -msgstr "Creat la {0}" +msgstr "Creat {0}" #: src/screens/List/ListHiddenScreen.tsx:127 msgid "Creator has been blocked" -msgstr "" +msgstr "Creatorul a fost blocat" #: src/screens/Onboarding/index.tsx:26 #: src/screens/Onboarding/state.ts:99 @@ -2262,68 +2385,68 @@ msgstr "Cultură" #: src/view/com/auth/server-input/index.tsx:142 #: src/view/com/auth/server-input/index.tsx:143 msgid "Custom" -msgstr "Personalizat" +msgstr "Particularizat" #: src/components/dialogs/Embed.tsx:144 msgid "Customization options" -msgstr "" +msgstr "Opțiuni de personalizare" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." -msgstr "Personalizează cine poate interacționa cu această postare." +msgstr "Personalizați cine poate interacționa cu această postare." #: src/screens/Onboarding/Layout.tsx:56 msgid "Customizes your Bluesky experience" -msgstr "" +msgstr "Personalizați-vă experiența Bluesky" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" -msgstr "Întunecat" +msgstr "Întunecată" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" -msgstr "Întunecat" +msgstr "Întunecată" #: src/view/screens/Debug.tsx:69 msgid "Dark mode" msgstr "Mod întunecat" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Temă întunecată" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Data nașterii" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" -msgstr "Dezactivează contul" +msgstr "Dezactivare cont" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" -msgstr "Depanare moderare" +msgstr "Depanare Moderare" #: src/view/screens/Debug.tsx:89 msgid "Debug panel" msgstr "Panou de depanare" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Implicit" #: src/screens/Settings/AppIconSettings/index.tsx:75 msgid "Default icons" -msgstr "Pictograma implicită" +msgstr "Pictograme implicite" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2331,106 +2454,111 @@ msgstr "Pictograma implicită" #: src/screens/StarterPack/StarterPackScreen.tsx:760 #: src/view/screens/ProfileList.tsx:768 msgid "Delete" -msgstr "Șterge" +msgstr "Ștergere" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" -msgstr "Șterge contul" +msgstr "Ștergere cont" #: src/view/com/modals/DeleteAccount.tsx:101 msgid "Delete Account <0>\"<1>{0}<2>\"" -msgstr "Șterge Contul <0>\"<1>{0}<2>\"" +msgstr "Ștergeți contul <0>„<1>{0}<2>”" #: src/screens/Settings/AppPasswords.tsx:187 msgid "Delete app password" -msgstr "Șterge parola de aplicație" +msgstr "Ștergere parolă de aplicație" #: src/screens/Settings/AppPasswords.tsx:207 msgid "Delete app password?" -msgstr "Ștergi parola de aplicație?" +msgstr "Ștergeți parola de aplicație?" #: src/screens/Messages/components/RequestButtons.tsx:316 #: src/screens/Messages/components/RequestButtons.tsx:323 msgid "Delete chat" -msgstr "" +msgstr "Ștergere conversație" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" -msgstr "Șterge înregistrarea declarației conversației" +msgstr "Ștergeți înregistrarea declarației de conversație" #: src/components/dms/ReportDialog.tsx:362 #: src/components/dms/ReportDialog.tsx:365 #: src/screens/Messages/components/RequestButtons.tsx:136 #: src/screens/Messages/components/RequestButtons.tsx:139 msgid "Delete conversation" -msgstr "Șterge conversația" +msgstr "Ștergere conversație" #: src/components/dms/ReportDialog.tsx:320 msgid "Delete Conversation" -msgstr "Șterge conversația" +msgstr "Ștergere Conversație" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" -msgstr "Șterge pentru mine" +msgstr "Ștergeți pentru mine" #: src/view/screens/ProfileList.tsx:556 msgid "Delete list" -msgstr "" +msgstr "Ștergere listă" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" -msgstr "Șterge mesajul" +msgstr "Ștergere mesaj" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" -msgstr "Șterge mesajul pentru mine" +msgstr "Ștergere mesaj pentru mine" #: src/view/com/modals/DeleteAccount.tsx:267 msgid "Delete my account" msgstr "Șterge-mi contul" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" -msgstr "Șterge postarea" +msgstr "Ștergere postare" #: src/screens/StarterPack/StarterPackScreen.tsx:593 #: src/screens/StarterPack/StarterPackScreen.tsx:751 msgid "Delete starter pack" -msgstr "Șterge pachetul de început" +msgstr "Ștergere pachet de pornire" #: src/screens/StarterPack/StarterPackScreen.tsx:654 msgid "Delete starter pack?" -msgstr "Șterge pachetul de început?" +msgstr "Ștergeți pachetul de pornire?" #: src/view/screens/ProfileList.tsx:763 msgid "Delete this list?" -msgstr "Șterge această listă?" +msgstr "Ștergeți această listă?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" -msgstr "Șterge această postare?" +msgstr "Ștergeți această postare?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Șters" #: src/components/dms/MessagesListHeader.tsx:160 #: src/screens/Messages/components/ChatListItem.tsx:128 msgid "Deleted Account" -msgstr "Cont șters" +msgstr "Cont Șters" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "Listă ștearsă" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Postare ștearsă." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Descriere" @@ -2440,21 +2568,21 @@ msgstr "Descrierea este prea lungă" #: src/screens/Profile/Header/EditProfileDialog.tsx:390 msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" -msgstr "" +msgstr "Descrierea este prea lungă. {DESCRIPTION_MAX_GRAPHEMES, plural, one {Numărul maxim de caractere este #.} few {Numărul maxim de caractere este #.}other {Numărul maxim de caractere este #.}}" #: src/view/com/composer/GifAltText.tsx:150 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "Text alternativ descriptiv" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" -msgstr "Detașează citarea" +msgstr "Detașare citat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" -msgstr "Detașezi citarea postării?" +msgstr "Detașați postarea citat?" #: src/screens/Settings/AboutSettings.tsx:140 msgctxt "toast" @@ -2466,129 +2594,129 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Mod dezvoltator activat" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" -msgstr "Opțiuni pentru dezvoltatori" +msgstr "Opțiuni dezvoltator" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" -msgstr "Fereastră: ajustează cine poate interacționa cu această postare" +msgstr "Dialog: ajustați cine poate interacționa cu această postare" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" -msgstr "Mod luminozitate scăzută" +msgstr "Luminozitate Redusă" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242 msgid "Disable 2FA" -msgstr "" +msgstr "Dezactivați A2F" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157 msgid "Disable email 2FA" -msgstr "" +msgstr "Dezactivați e-mailul A2F" #: src/screens/Settings/components/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" -msgstr "Dezactivează 2FA prin e-mail" +msgstr "Dezactivare A2F prin E-mail" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" -msgstr "Dezactivează feedback-ul haptic" +msgstr "Dezactivați feedback-ul haptic" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" -msgstr "Dezactivează subtitrările" +msgstr "Dezactivare subtitrări" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Dezactivat" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" -msgstr "Renunț" +msgstr "Renunțare" #: src/screens/Profile/Header/EditProfileDialog.tsx:85 msgid "Discard changes?" -msgstr "Anulezi modificările?" +msgstr "Renunțați la modificări?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" -msgstr "Anulezi schița?" +msgstr "Renunțați la schiță?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" -msgstr "Anulezi postarea?" +msgstr "Renunțați la postare?" #: src/screens/Settings/components/PwiOptOut.tsx:87 #: src/screens/Settings/components/PwiOptOut.tsx:91 msgid "Discourage apps from showing my account to logged-out users" -msgstr "Descurajează aplicațiile să afișeze contul meu utilizatorilor neautentificați" +msgstr "Descurajați aplicațiile să-mi arate contul utilizatorilor deconectați" #: src/screens/Search/Explore.tsx:434 msgid "Discover Feeds" -msgstr "" +msgstr "Descoperiți Fluxuri" #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" -msgstr "Descoperă noi fluxuri personalizate" +msgstr "Descoperiți fluxuri personalizate noi" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" -msgstr "Descoperă noi fluxuri" +msgstr "Descoperiți Fluxuri Noi" #: src/components/Dialog/index.tsx:321 msgid "Dismiss" -msgstr "Respinge" +msgstr "Închidere" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" -msgstr "Respinge eroarea" +msgstr "Închidere eroare" #: src/components/ProgressGuide/List.tsx:42 msgid "Dismiss getting started guide" -msgstr "Respinge ghidul de început" +msgstr "Închideți ghidul introductiv" #: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "Dismiss interests" -msgstr "" +msgstr "Îndepărtați interesele" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "Respingere mesaj" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" -msgstr "" +msgstr "Închideți această secțiune" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" -msgstr "Afișează insignele text alternative mai mari" +msgstr "Afișați mai mare insignele de text alternativ" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Nume afișat" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Nume afișat" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Numele afișat este prea lung" #: src/screens/Profile/Header/EditProfileDialog.tsx:340 msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" -msgstr "" +msgstr "Numele afișat este prea lung. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {Numărul maxim de caractere este #.}}" #: src/screens/Settings/components/ChangeHandleDialog.tsx:392 #: src/screens/Settings/components/ChangeHandleDialog.tsx:394 @@ -2597,27 +2725,32 @@ msgstr "Panou DNS" #: src/components/dialogs/MutedWords.tsx:302 msgid "Do not apply this mute word to users you follow" -msgstr "Nu aplica acest cuvânt pus pe mut utilizatorilor urmăriți" +msgstr "Nu aplicați acest cuvânt amuțit utilizatorilor pe care îi urmăriți" #: src/lib/moderation/useGlobalLabelStrings.ts:39 msgid "Does not include nudity." msgstr "Nu include nuditate." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Nu începe și nu se termină cu o cratimă" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" -msgstr "Adresă web verificată!" +msgstr "Domeniu verificat!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." -msgstr "" +msgstr "Nu aveți un cod sau aveți nevoie de unul nou? <0>Faceți clic aici." #: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37 msgid "Don't see an email? <0>Click here to resend." -msgstr "" +msgstr "Nu vezi un e-mail? <0>Faceți clic aici pentru a-l retrimite." + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "Nu mai afișa" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "Nu vă faceți griji! Toate mesajele existente și setările sunt salvate și vor fi disponibile după ce verificați că sunteți adult." #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 @@ -2640,66 +2773,58 @@ msgstr "" #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 msgid "Done" -msgstr "Gata" +msgstr "Finalizare" #: src/view/com/modals/UserAddRemoveLists.tsx:113 #: src/view/com/modals/UserAddRemoveLists.tsx:116 msgctxt "action" msgid "Done" -msgstr "Gata" +msgstr "Finalizare" #: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:42 msgid "Done{extraText}" -msgstr "Gata{extraText}" +msgstr "Finalizat{extraText}" #: src/components/dms/MessageItem.tsx:161 msgid "Double tap or long press the message to add a reaction" -msgstr "" +msgstr "Atingeți de două ori sau apăsați lung mesajul pentru a adăuga o reacție" #: src/components/Dialog/index.tsx:322 msgid "Double tap to close the dialog" -msgstr "Apasă de două ori pentru a închide fereastra" +msgstr "Atingeți de două ori pentru a închide dialogul" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" -msgstr "Atinge de două ori pentru a aprecia" +msgstr "Atingeți de două ori pentru a aprecia" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 msgid "Download Bluesky" -msgstr "Descarcă Bluesky" +msgstr "Descărcați Bluesky" #: src/screens/Settings/components/ExportCarDialog.tsx:79 #: src/screens/Settings/components/ExportCarDialog.tsx:84 msgid "Download CAR file" -msgstr "Descarcă fișierul CAR" +msgstr "Descărcare fișier CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" -msgstr "Trage imagini aici pentru a le adăuga" +msgstr "Plasați pentru a adăuga imagini" #: src/components/dialogs/MutedWords.tsx:153 msgid "Duration:" -msgstr "Durata:" +msgstr "Durată:" #: src/screens/Settings/components/ChangeHandleDialog.tsx:230 msgid "e.g. alice" -msgstr "ex: alice" +msgstr "de ex. andreea" #: src/screens/Profile/Header/EditProfileDialog.tsx:327 msgid "e.g. Alice Lastname" msgstr "ex: Alice Numedefamilie" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "ex: Alice Roberts" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" -msgstr "ex: alice.com" - -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "ex: Artist, iubitor de câini și cititor pasionat." +msgstr "de ex. andreea.com" #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." @@ -2707,128 +2832,121 @@ msgstr "ex: nuduri artistice." #: src/view/com/modals/CreateOrEditList.tsx:261 msgid "e.g. Great Posters" -msgstr "ex: Postere grozave" +msgstr "de ex. Creatori De Top" #: src/view/com/modals/CreateOrEditList.tsx:262 msgid "e.g. Spammers" -msgstr "ex: Spammeri" +msgstr "de ex: Spammeri" #: src/view/com/modals/CreateOrEditList.tsx:290 msgid "e.g. The posters who never miss." -msgstr "ex: Posterele care nu ratează niciodată." +msgstr "de ex. Cei mai buni creatori." #: src/view/com/modals/CreateOrEditList.tsx:291 msgid "e.g. Users that repeatedly reply with ads." -msgstr "ex: Utilizatori care răspund repetat cu reclame." +msgstr "de ex. Utilizatori care răspund în mod repetat cu reclame." #: src/view/com/modals/InviteCodes.tsx:97 msgid "Each code works once. You'll receive more invite codes periodically." -msgstr "Fiecare cod funcționează o singură dată. Vei primi mai multe coduri de invitație periodic." +msgstr "Fiecare cod funcționează o dată. Veți primi mai multe coduri de invitație periodic." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" -msgstr "Editează" +msgstr "Editare" #: src/view/com/lists/ListMembers.tsx:180 #: src/view/com/lists/ListMembers.tsx:186 msgctxt "action" msgid "Edit" -msgstr "Editează" +msgstr "Editare" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" -msgstr "Editează avatarul" +msgstr "Editare avatar" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 msgid "Edit Feeds" -msgstr "Editează fluxurile" +msgstr "Editare Fluxuri" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" -msgstr "Editează imaginea" +msgstr "Editare imagine" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" -msgstr "Editează setările de interacțiune" +msgstr "Editare setări de interacțiune" #: src/screens/Search/modules/ExploreInterestsCard.tsx:98 #: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Edit interests" -msgstr "" +msgstr "Editare interese" #: src/view/screens/ProfileList.tsx:544 msgid "Edit list details" -msgstr "Editează detaliile listei" +msgstr "Editare detalii listă" #: src/view/com/profile/ProfileMenu.tsx:317 #: src/view/com/profile/ProfileMenu.tsx:323 msgid "Edit live status" -msgstr "" +msgstr "Editare stare în direct" #: src/view/com/modals/CreateOrEditList.tsx:228 msgid "Edit Moderation List" -msgstr "Editează lista de moderare" +msgstr "Editare Listă de Moderare" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" -msgstr "Editează fluxurile mele" +msgstr "Editați Fluxurile Mele" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Editează profilul meu" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "Editați notificările de la {0}" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" -msgstr "Editează persoane" +msgstr "Editare Persoane" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" -msgstr "Editează setările de interacțiune ale postării" +msgstr "Editați setările de interacțiune ale postărilor" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" -msgstr "Editează profilul" +msgstr "Editare profil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" -msgstr "Editează Profilul" +msgstr "Editare Profil" #: src/screens/StarterPack/StarterPackScreen.tsx:580 msgid "Edit starter pack" -msgstr "Editează pachetul de început" +msgstr "Editare pachet de pornire" #: src/view/com/modals/CreateOrEditList.tsx:223 msgid "Edit User List" -msgstr "Editează lista de utilizatori" +msgstr "Editare Listă de Utilizatori" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" -msgstr "Editează cine poate răspunde" +msgstr "Editați cine poate răspunde" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Editează numele tău de afișare" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Editează descrierea profilului tău" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" -msgstr "Editează-ți pachetul de început" +msgstr "Editați-vă pachetul de pornire" #: src/screens/Onboarding/index.tsx:31 #: src/screens/Onboarding/state.ts:101 @@ -2837,21 +2955,21 @@ msgstr "Educație" #: src/screens/List/ListHiddenScreen.tsx:141 msgid "Either the creator of this list has blocked you or you have blocked the creator." -msgstr "" +msgstr "Fie creatorul acestei liste v-a blocat sau dvs. ați blocat creatorul." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "E-mail" #: src/screens/Settings/components/DisableEmail2FADialog.tsx:64 msgctxt "toast" msgid "Email 2FA disabled" -msgstr "2FA prin e-mail dezactivat" +msgstr "A2F prin e-mail dezactivată" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" -msgstr "2FA prin e-mail activat" +msgstr "A2F prin e-mail activată" #: src/screens/Login/ForgotPasswordForm.tsx:93 msgid "Email address" @@ -2859,99 +2977,96 @@ msgstr "Adresă de e-mail" #: src/components/intents/VerifyEmailIntentDialog.tsx:104 msgid "Email Resent" -msgstr "E-mail retrimis" +msgstr "E-mailul a fost retrimis" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:208 msgid "Email sent!" -msgstr "" - -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "" +msgstr "E-mailul a fost trimis!" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" -msgstr "" +msgstr "Verificarea e-mailului este finalizată!" #: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" -msgstr "E-mail verificat" +msgstr "E-mail Verificat" #: src/components/dialogs/Embed.tsx:181 msgid "Embed HTML code" -msgstr "Încorporează cod HTML" +msgstr "Încorporare cod HTML" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" -msgstr "Încorporează postarea" +msgstr "Încorporare postare" #: src/components/dialogs/Embed.tsx:112 msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." -msgstr "Încorporează această postare pe site-ul tău. Copiază pur și simplu următorul fragment și inserează-l în codul HTML al site-ului." +msgstr "Încorporați această postare în website-ul dvs. Pur și simplu copiați următorul fragment și lipiți-l în codul HTML al website-ului dvs." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" -msgstr "Player video încorporat" +msgstr "Cititor video încorporat" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111 #: src/screens/Settings/components/Email2FAToggle.tsx:31 msgid "Enable" -msgstr "Activează" +msgstr "Activare" #: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" -msgstr "Activează doar {0}" +msgstr "Activare doar {0}" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" -msgstr "Activează conținutul pentru adulți" +msgstr "Activare conținut pentru adulți" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92 msgid "Enable email 2FA" -msgstr "" +msgstr "Activare A2F prin e-mail" #: src/components/dialogs/EmbedConsent.tsx:81 #: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" -msgstr "Activează media externe" +msgstr "Activare conținut media extern" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" -msgstr "Activează playerele media pentru" +msgstr "Activare cititor media pentru" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Activează notificările prioritare" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "Activați notificările pentru un cont accesând profilul acestuia și apăsând pe <0>pictograma clopoțel <1/>." -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "Activare notificări push" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" -msgstr "Activează subtitrările" +msgstr "Activare subtitrări" #: src/components/dialogs/EmbedConsent.tsx:93 msgid "Enable this source only" -msgstr "Activează doar această sursă" +msgstr "Activați doar această sursă" #: src/screens/Settings/ContentAndMediaSettings.tsx:132 #: src/screens/Settings/ContentAndMediaSettings.tsx:146 msgid "Enable trending topics" -msgstr "" - -#: src/screens/Settings/ContentAndMediaSettings.tsx:167 -msgid "Enable trending videos in your Discover feed" -msgstr "" +msgstr "Activare subiecte în tendințe" #: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "" +#: src/screens/Settings/ContentAndMediaSettings.tsx:167 +msgid "Enable trending videos in your Discover feed" +msgstr "Activare videoclipuri în tendințe în fluxul dvs. Descoperă" -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Activat" @@ -2961,85 +3076,89 @@ msgstr "Sfârșitul fluxului" #: src/view/com/composer/videos/SubtitleDialog.tsx:158 msgid "Ensure you have selected a language for each subtitle file." -msgstr "Asigură-te că ai selectat o limbă pentru fiecare fișier de subtitrare." +msgstr "Asigurați-vă că ați selectat o limbă pentru fiecare fișier de subtitrare." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" -msgstr "Introduce o parolă" +msgstr "Introduceți o parolă" #: src/components/dialogs/MutedWords.tsx:127 #: src/components/dialogs/MutedWords.tsx:128 msgid "Enter a word or tag" -msgstr "Introdu un cuvânt sau o etichetă" +msgstr "Introduceți un cuvânt sau o etichetă" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" -msgstr "" +msgstr "Introduceți codul" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Introduce codul" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" -msgstr "Folosește întregul ecran" +msgstr "Intrați în modul Ecran complet" #: src/view/com/modals/ChangePassword.tsx:165 msgid "Enter the code you received to change your password." -msgstr "Introdu codul pe care l-ai primit pentru a-ți schimba parola." +msgstr "Introduceți codul pe care l-ați primit pentru a vă modifica parola." #: src/screens/Settings/components/ChangeHandleDialog.tsx:370 msgid "Enter the domain you want to use" -msgstr "Introdu adresa web pe care vrei să o folosești" +msgstr "Introduceți domeniul pe care doriți să-l utilizați" #: src/screens/Login/ForgotPasswordForm.tsx:113 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." -msgstr "Introdu adresa de e-mail pe care ai folosit-o pentru a-ți crea contul. Îți vom trimite un \"cod de resetare\" pentru a-ți seta o parolă nouă." +msgstr "Introduceți e-mailul pe care l-ați folosit pentru a vă crea contul. Vă vom trimite un „cod de resetare” pentru a putea seta o parolă nouă." #: src/screens/Login/LoginForm.tsx:218 msgid "Enter the username or email address you used when you created your account" -msgstr "" +msgstr "Introduceți numele de utilizator sau adresa de e-mail pe care le-ați folosit când ați creat contul" #: src/components/dialogs/BirthDateSettings.tsx:104 msgid "Enter your birth date" -msgstr "Introdu data nașterii" +msgstr "Introduceți-vă data nașterii" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" -msgstr "Introdu adresa de e-mail" - -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Introdu mai jos noul e-mail" +msgstr "Introduceți-vă adresa de e-mail" #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" -msgstr "Introdu-ți parola" +msgstr "Introduceți-vă parola" #: src/screens/Login/index.tsx:123 msgid "Enter your username and password" -msgstr "Introdu numele de user și parola" +msgstr "Introduceți-vă numele de utilizator și parola" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" -msgstr "" +msgstr "Intrați în modul Ecran complet" #: src/screens/Search/modules/ExploreTrendingTopics.tsx:239 msgid "Entertainment" -msgstr "" +msgstr "Divertisment" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Eroare" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "Eroare la încărcarea postării" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "Eroare la încărcarea preferinței" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "Mesaj de eroare" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "A apărut o eroare la salvarea fișierului" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Eroare la primirea răspunsului captcha." @@ -3047,27 +3166,34 @@ msgstr "Eroare la primirea răspunsului captcha." msgid "Error:" msgstr "Eroare:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" -msgstr "" +msgstr "Eroare: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Toată lumea" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Toată lumea poate răspunde" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Toată lumea poate răspunde la această postare." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Toți" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "Toate celelalte" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3080,50 +3206,54 @@ msgstr "Mesaje excesive sau nedorite" #: src/components/dialogs/MutedWords.tsx:311 msgid "Exclude users you follow" -msgstr "Exclude utilizatorii pe care îi urmărești" +msgstr "Excludeți utilizatorii pe care îi urmăriți" #: src/components/dialogs/MutedWords.tsx:514 msgid "Excludes users you follow" -msgstr "Va exclude utilizatorii pe care îi urmărești" +msgstr "Exclude utilizatorii pe care îi urmăriți" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" -msgstr "Părăsește din modul ecran complet" +msgstr "Ieșire ecran complet" #: src/view/com/modals/DeleteAccount.tsx:275 msgid "Exits account deletion process" -msgstr "Părăsește procesul de ștergere a contului" +msgstr "Părăsește procesul de ștergere al contului" #: src/view/com/modals/CropImage.web.tsx:95 msgid "Exits image cropping process" -msgstr "Părăsește din procesul de decupare a imaginii" +msgstr "Părăsește procesul de decupare a imaginilor" #: src/view/com/lightbox/Lightbox.web.tsx:110 msgid "Exits image view" -msgstr "Părăsește din galerie" +msgstr "Iese din vizualizarea imaginii" #: src/view/com/lightbox/Lightbox.web.tsx:184 msgid "Expand alt text" -msgstr "Extinde textul alternativ" +msgstr "Extindere text alternativ" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" -msgstr "Extinde lista de utilizatori" +msgstr "Extindeți lista de utilizatori" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" -msgstr "Extinde sau restrânge postarea completă la care răspunzi" +msgstr "Extindeți sau restrângeți postarea completă la care răspundeți" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "Extindeți textul postării" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" -msgstr "" +msgstr "Extinde sau restrânge text postare" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" -msgstr "Se așteaptă ca URI-ul să rezolve într-un înregistrare" +msgstr "Se așteaptă de la uri pentru a rezolva la o înregistrare" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Experimental" @@ -3138,110 +3268,110 @@ msgstr "Expiră {0}" #: src/components/moderation/LabelsOnMeDialog.tsx:199 #: src/components/moderation/ModerationDetailsDialog.tsx:208 msgid "Expires in {0}" -msgstr "" +msgstr "Expiră în {0}" #: src/components/live/EditLiveDialog.tsx:131 msgid "Expires in {0} at {1}" -msgstr "" +msgstr "Expiră în {0} la {1}" #: src/lib/moderation/useGlobalLabelStrings.ts:47 #: src/lib/moderation/useGlobalLabelStrings.ts:51 msgid "Explicit or potentially disturbing media." -msgstr "Media explicită sau potențial deranjantă." +msgstr "Conținut media explicit sau potențial deranjant." #: src/lib/moderation/useGlobalLabelStrings.ts:35 msgid "Explicit sexual images." msgstr "Imagini sexuale explicite." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" -msgstr "" +msgstr "Explorare" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" -msgstr "Exportă datele mele" +msgstr "Exportați datele mele" #: src/screens/Settings/components/ExportCarDialog.tsx:62 msgid "Export My Data" -msgstr "Exportă datele mele" +msgstr "Exportați Datele Mele" #: src/screens/Settings/ContentAndMediaSettings.tsx:84 #: src/screens/Settings/ContentAndMediaSettings.tsx:87 msgid "External media" -msgstr "Media externă" +msgstr "Conținut Media Extern" #: src/components/dialogs/EmbedConsent.tsx:54 #: src/components/dialogs/EmbedConsent.tsx:58 msgid "External Media" -msgstr "Media externă" +msgstr "Conținut Media Extern" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 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 externă poate permite site-urilor să colecteze informații despre tine și dispozitivul tău. Nicio informație nu este trimisă sau solicitată până când nu apeși pe butonul \"play\"." +msgstr "Conținut media extern poate permite website-urilor să colecteze informații despre dvs. și dispozitivul dvs. Nicio informație nu este trimisă sau solicitată până nu apăsați butonul „redare”." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" -msgstr "Preferințe media externe" +msgstr "Preferințe Conținut Media Extern" #: src/screens/Messages/components/RequestButtons.tsx:220 msgctxt "toast" msgid "Failed to accept chat" -msgstr "" +msgstr "Acceptarea conversației a eșuat" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" -msgstr "" +msgstr "Adăugarea reacției emoji a eșuat" #: src/screens/Settings/components/ChangeHandleDialog.tsx:587 msgid "Failed to change handle. Please try again." -msgstr "Schimbarea numelui de utilizator a eșuat. Te rugăm să încerci din nou." +msgstr "Nu s-a putut modifica identificatorul. Vă rugăm să încercați din nou." #: src/screens/Settings/components/AddAppPasswordDialog.tsx:173 msgid "Failed to create app password. Please try again." -msgstr "Crearea parolei aplicației a eșuat. Te rugăm să încerci din nou." +msgstr "Nu s-a reușit crearea parolei de aplicație. Încercați din nou." #: src/components/dms/MessageProfileButton.tsx:36 msgid "Failed to create conversation" -msgstr "" +msgstr "Crearea conversației a eșuat" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" -msgstr "Crearea pachetului de început a eșuat" +msgstr "Creare pachetului de pornire a eșuat" #: src/view/com/modals/CreateOrEditList.tsx:184 msgid "Failed to create the list. Check your internet connection and try again." -msgstr "Crearea listei a eșuat. Verifică conexiunea la internet și încearcă din nou." +msgstr "Nu s-a reușit crearea listei. Verificați-vă conexiunea la internet și încercați din nou." #: src/screens/Messages/components/RequestButtons.tsx:64 #: src/screens/Messages/components/RequestButtons.tsx:291 msgctxt "toast" msgid "Failed to delete chat" -msgstr "" +msgstr "Ștergerea conversației a eșuat" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Ștergerea mesajului a eșuat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" -msgstr "Ștergerea postării a eșuat, te rugăm să încerci din nou" +msgstr "Ștergerea postării a eșuat, vă rugăm să încercați din nou" #: src/screens/StarterPack/StarterPackScreen.tsx:722 msgid "Failed to delete starter pack" -msgstr "Ștergerea pachetului de început a eșuat" +msgstr "Ștergerea pachetului de pornire a eșuat" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" -msgstr "" +msgstr "Încărcarea conversațiilor a eșuat" #: src/screens/Search/Explore.tsx:470 #: src/screens/Search/Explore.tsx:522 @@ -3250,14 +3380,32 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Încărcarea preferințelor fluxurilor a eșuat" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Încărcarea GIF-urilor a eșuat" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "Setările de notificare nu au putut fi încărcate." + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Încărcarea mesajelor anterioare a eșuat" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "Nu s-a putut încărca preferința." + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,385 +3417,413 @@ msgstr "Încărcarea fluxurilor sugerate a eșuat" msgid "Failed to load suggested follows" msgstr "Încărcarea sugestiilor de urmărire a eșuat" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" -msgstr "" +msgstr "Nu s-a reușit marcarea tuturor cererilor ca fiind citite" #: src/state/queries/pinned-post.ts:75 msgid "Failed to pin post" -msgstr "Încercarea de a fixa postarea a eșuat" +msgstr "Nu s-a reușit fixarea postării" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" -msgstr "" +msgstr "Ștergerea reacției emoji a eșuat" #: src/components/verification/VerificationRemovePrompt.tsx:34 msgid "Failed to remove verification" -msgstr "" +msgstr "Eliminarea verificării a eșuat" #: src/lib/media/save-image.ts:28 msgid "Failed to save image: {0}" msgstr "Salvarea imaginii a eșuat: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Salvarea preferințelor de notificare a eșuat, te rugăm să încerci din nou" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." -msgstr "" +msgstr "Salvarea setărilor a eșuat. Vă rugăm să încercați din nou." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." -msgstr "" +msgstr "Salvarea intereselor a eșuat." #: src/components/dms/MessageItem.tsx:310 msgid "Failed to send" -msgstr "Trimiterea a eșuat" +msgstr "Nu s-a putut trimite" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122 #: src/components/dialogs/EmailDialog/screens/Verify.tsx:136 msgid "Failed to send email, please try again." -msgstr "" +msgstr "Trimiterea e-mailului a eșuat, încercați din nou." #: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." -msgstr "Apelul a eșuat, încearcă din nou." +msgstr "Nu s-a putut trimite contestația, vă rugăm să încercați din nou." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" -msgstr "Nu s-a putut pune sau scoate de pe mut discuția, încearcă din nou." +msgstr "Nu s-a putut comuta amuțirea firului, vă rugăm încercați din nou" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83 msgid "Failed to update email 2FA settings" -msgstr "" +msgstr "Nu s-au actualizat setările de e-mail A2F" #: src/components/dialogs/EmailDialog/screens/Update.tsx:195 msgid "Failed to update email, please try again." -msgstr "" +msgstr "E-mailul nu a fost actualizat, vă rugăm să încercați din nou." #: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" -msgstr "Nu s-au putut actualiza fluxurile." +msgstr "Actualizarea fluxurilor a eșuat" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "Nu s-a putut actualiza declarația de notificare" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" -msgstr "Nu s-au putut actualiza setările." +msgstr "Nu s-a reușit actualizarea setărilor" #: src/lib/media/video/upload.ts:72 #: src/lib/media/video/upload.web.ts:74 #: src/lib/media/video/upload.web.ts:78 #: src/lib/media/video/upload.web.ts:88 msgid "Failed to upload video" -msgstr "Nu s-a putut încărca videoclipul." +msgstr "Încărcarea videoclipului a eșuat" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:168 msgid "Failed to verify email, please try again." -msgstr "" +msgstr "E-mailul nu a fost verificat, vă rugăm să încercați din nou." #: src/screens/Settings/components/ChangeHandleDialog.tsx:360 msgid "Failed to verify handle. Please try again." -msgstr "Nu s-a putut verifica numele de utilizator. Te rugăm să încerci din nou." +msgstr "Nu s-a putut verifica identificatorul. Vă rugăm să încercați din nou." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Flux" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Flux creat de {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "Creator flux" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "Identificator flux" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Meniu flux" #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" -msgstr "Comutator flux" +msgstr "Comutare flux" + +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "Flux indisponibil" #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" -msgstr "Impresii" +msgstr "Feedback" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Feedback trimis!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Fluxuri" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." -msgstr "Fluxurile sunt algoritmi personalizați creați de utilizatori cu puțină expertiză în programare. <0/> pentru mai multe informații." +msgstr "Fluxurile sunt algoritmi personalizați creați de utilizatori cu puțină experiență în programare. <0/> pentru mai multe informații." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" -msgstr "Fluxurile au fost actualizate!" +msgstr "Fluxuri actualizate!" #: src/screens/Search/modules/ExploreRecommendations.tsx:65 msgid "Feeds we think you might like." -msgstr "Fluxuri care credem că ți-ar place." +msgstr "Fluxuri care credem că v-ar putea plăcea." #: src/screens/Settings/components/OTAInfo.tsx:58 msgid "Fetch update" -msgstr "" +msgstr "Preluare actualizare" #: src/screens/Settings/components/ExportCarDialog.tsx:43 msgid "File saved successfully!" -msgstr "Fișierul a fost salvat cu succes!" +msgstr "Fișier salvat cu succes!" #: src/lib/moderation/useLabelBehaviorDescription.ts:66 msgid "Filter from feeds" -msgstr "Filtrează din fluxuri" +msgstr "Filtrare din fluxuri" #: src/screens/Search/components/SearchLanguageDropdown.tsx:97 msgid "Filter search by language" -msgstr "Filtrează căutarea după limbă" +msgstr "Filtrați căutarea după limbă" #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" -msgstr "Filtrează căutarea după limbă (actuală: {currentLanguageLabel})" +msgstr "Filtrați căutarea după limbă (în prezent: {currentLanguageLabel})" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "Filtrați cine poate opta să primească notificări pentru activitatea dvs." + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "Filtrați de la cine primiți notificări" #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" -msgstr "Finalizare" +msgstr "Se Finalizează" #: src/view/com/posts/CustomFeedEmptyState.tsx:48 #: src/view/com/posts/FollowingEmptyState.tsx:53 #: src/view/com/posts/FollowingEndOfFeed.tsx:54 msgid "Find accounts to follow" -msgstr "Găsește conturi de urmărit" +msgstr "Găsiți conturi de urmărit" #: src/components/ProgressGuide/FollowDialog.tsx:77 #: src/components/ProgressGuide/FollowDialog.tsx:87 #: src/components/ProgressGuide/FollowDialog.tsx:374 msgid "Find people to follow" -msgstr "Găsește persoane de urmărit" +msgstr "Găsiți persoane pe care să le urmăriți" #: src/screens/Search/Shell.tsx:476 msgid "Find posts, users, and feeds on Bluesky" -msgstr "" +msgstr "Găsiți postări, utilizatori și fluxuri pe Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" -msgstr "Finalizează" +msgstr "Finalizare" #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" -msgstr "" +msgstr "Negru Plat" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" -msgstr "" +msgstr "Albastru Plat" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" -msgstr "" +msgstr "Alb Plat" #: src/screens/Onboarding/StepFinished.tsx:294 msgid "Flexible" msgstr "Flexibil" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" -msgstr "Urmărește" +msgstr "Urmărire" #: src/view/com/profile/FollowButton.tsx:72 msgctxt "action" msgid "Follow" -msgstr "Urmărește" +msgstr "Urmărire" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" -msgstr "Urmărește {0}" +msgstr "Urmăriți pe {0}" #: src/screens/VideoFeed/index.tsx:827 msgid "Follow {handle}" -msgstr "Urmărește {handle}" +msgstr "Urmăriți pe {handle}" #: src/components/ProgressGuide/List.tsx:52 #: src/state/shell/progress-guide.tsx:229 msgid "Follow 10 accounts" -msgstr "Urmărește 10 conturi" +msgstr "Urmăriți 10 conturi" #: src/components/ProgressGuide/List.tsx:69 msgid "Follow 7 accounts" -msgstr "Urmărește 7 conturi" +msgstr "Urmăriți 7 conturi" #: src/view/com/profile/ProfileMenu.tsx:284 #: src/view/com/profile/ProfileMenu.tsx:295 msgid "Follow account" -msgstr "" +msgstr "Urmăriți contul" #: src/screens/StarterPack/StarterPackScreen.tsx:438 #: src/screens/StarterPack/StarterPackScreen.tsx:446 msgid "Follow all" -msgstr "Urmărește pe toți" +msgstr "Urmăriții pe toți" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" -msgstr "Urmărește înapoi" +msgstr "Urmăriți Înapoi" #: src/view/com/profile/FollowButton.tsx:81 msgctxt "action" msgid "Follow Back" -msgstr "Urmărește înapoi" +msgstr "Urmăriți Înapoi" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Urmărit de <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Urmărit de <0>{0} și de {1, plural, one {un alt utilizator} few {alți # utilizatori} other {alți # de utilizatori}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Urmărit de <0>{0} și <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" -msgstr "Urmărit de <0>{0}, <1>{1} și de {2, plural, one {un alt utilizator} few {alți # utilizatori} other {alți # utilizatori}}" +msgstr "Urmărit de <0>{0}, <1>{1} și de {2, plural, one {un alt utilizator} few {alți # utilizatori} other {alți # de utilizatori}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" -msgstr "Urmăritorii lui @{0} pe care îi cunoști" +msgstr "Urmăritori ai lui @{0} pe care îi știți" #: src/screens/Profile/KnownFollowers.tsx:104 #: src/screens/Profile/KnownFollowers.tsx:121 msgid "Followers you know" -msgstr "Urmăritori pe care îi cunoști" +msgstr "Urmăritori pe care îi știți" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" -msgstr "Urmărește" +msgstr "Urmăriți" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Urmăriți" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" -msgstr "Urmărind {0}" +msgstr "Urmăriți pe {0}" #: src/screens/VideoFeed/index.tsx:826 msgid "Following {handle}" -msgstr "Urmărind pe {handle}" +msgstr "Urmăriți pe {handle}" #: src/screens/Settings/ContentAndMediaSettings.tsx:76 #: src/screens/Settings/ContentAndMediaSettings.tsx:79 msgid "Following feed preferences" -msgstr "Preferințe pentru fluxul de urmărire" +msgstr "Preferințe flux Urmăriți" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" -msgstr "Preferințe pentru fluxul urmărit" +msgstr "Preferințe Flux Urmăriți" #: src/screens/Profile/Header/Handle.tsx:32 msgid "Follows you" -msgstr "Te urmărește" +msgstr "Vă urmărește" #: src/components/Pills.tsx:175 msgid "Follows You" -msgstr "Te Urmărește" +msgstr "Vă Urmărește" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Font" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" -msgstr "Dimensiunea fontului" +msgstr "Dimensiune font" #: src/screens/Onboarding/index.tsx:40 #: src/screens/Onboarding/state.ts:102 msgid "Food" -msgstr "Mâncare" +msgstr "Gastronomie" #: src/view/com/modals/DeleteAccount.tsx:125 msgid "For security reasons, we'll need to send a confirmation code to your email address." -msgstr "Din motive de securitate, va trebui să trimitem un cod de confirmare pe adresa ta de e-mail." +msgstr "Din motive de securitate, va trebui să trimitem un cod de confirmare la adresa dvs. de e-mail." #: src/screens/Settings/components/AddAppPasswordDialog.tsx:209 msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." -msgstr "Din motive de securitate, nu vei putea vizualiza din nou această parolă. Dacă o pierzi, va trebui să generezi una nouă." +msgstr "Din motive de securitate, nu veți mai putea vizualiza acest lucru din nou. Dacă pierdeți această parolă de aplicație, va trebui să generați una nouă." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." -msgstr "Pentru cea mai bună experiență, îți recomandăm să folosești fontul temei." +msgstr "Pentru cea mai bună experiență, vă recomandăm să utilizați fontul temă." #: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94 msgid "For You" -msgstr "" +msgstr "Pentru Dvs." #: src/components/dialogs/MutedWords.tsx:178 msgid "Forever" -msgstr "Pentru totdeauna" +msgstr "Permanent" #: src/screens/Login/index.tsx:153 #: src/screens/Login/index.tsx:168 msgid "Forgot Password" -msgstr "Ai uitat parola" +msgstr "Am Uitat Parola" #: src/screens/Login/LoginForm.tsx:248 msgid "Forgot password?" -msgstr "Ai uitat parola?" +msgstr "Ați uitat parola?" #: src/screens/Login/LoginForm.tsx:259 msgid "Forgot?" -msgstr "Ai uitat?" +msgstr "Ați Uitat?" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:54 #: src/lib/moderation/useReportOptions.ts:54 msgid "Frequently Posts Unwanted Content" -msgstr "Publică frecvent conținut nedorit" +msgstr "Postează Frecvent Conținut Nedorit" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "De la" #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "De la @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "De la <0/>" @@ -3658,22 +3834,76 @@ msgstr "Galerie" #: src/components/StarterPack/ProfileStarterPacks.tsx:307 msgid "Generate a starter pack" -msgstr "Generează un pachet de început" +msgstr "Generați un pachet de pornire" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" -msgstr "Obține ajutor" +msgstr "Obțineți ajutor" + +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "Primiți notificări când oamenii vă urmăresc." + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "Primiți notificări când oamenii apreciază postările pe care le-ați repostat." + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "Primiți notificări când oamenii apreciază postările dvs." + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "Primiți notificări când oamenii vă menționează." + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "Primiți notificări când oamenii citează postările dvs." + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "Primiți notificări când oamenii răspund la postările dvs." + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "Primiți notificări când oamenii repostează postările pe care le-ați repostat." + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "Primiți notificări când oamenii repostează postările dvs." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "Primiți notificări despre postări noi" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Primiți notificări despre postările și răspunsurile de la conturile pe care le alegeți." + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "Primiți notificări despre postările noi de la {name}" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "Primiți notificări despre activitatea acestui cont" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "Primește notificări când {name} postează" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "Primiți notificări când cineva postează" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" -msgstr "" +msgstr "Începeți" #: src/components/ProgressGuide/List.tsx:35 msgid "Getting started" -msgstr "Începe" +msgstr "Introducere" #: src/components/MediaPreview.tsx:116 msgid "GIF" @@ -3681,26 +3911,28 @@ msgstr "GIF" #: src/screens/Onboarding/StepProfile/index.tsx:232 msgid "Give your profile a face" -msgstr "Oferă profilului tău o față" +msgstr "Oferiți profilului dvs. o față" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39 #: src/lib/moderation/useReportOptions.ts:39 msgid "Glaring violations of law or terms of service" -msgstr "Încălcări evidente ale legii sau ale termenilor de utilizare" +msgstr "Încălcări flagrante ale legii sau ale termenilor de serviciu" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 msgid "Go back" -msgstr "Întoarce-te" +msgstr "Mergeți înapoi" #: src/components/Error.tsx:78 #: src/screens/List/ListHiddenScreen.tsx:224 @@ -3711,7 +3943,7 @@ msgstr "Întoarce-te" #: src/view/screens/NotFound.tsx:56 #: src/view/screens/ProfileList.tsx:1043 msgid "Go Back" -msgstr "Întoarce-te" +msgstr "Mergeți Înapoi" #: src/components/dms/ReportDialog.tsx:192 #: src/components/ReportDialog/SelectReportOptionView.tsx:78 @@ -3720,254 +3952,265 @@ msgstr "Întoarce-te" #: src/screens/Onboarding/Layout.tsx:188 #: src/screens/Signup/BackNextButtons.tsx:35 msgid "Go back to previous step" -msgstr "Întoarce-te la pasul anterior" +msgstr "Reveniți la pasul anterior" #: src/view/screens/NotFound.tsx:57 msgid "Go home" -msgstr "Mergi acasă" +msgstr "Mergeți la acasă" #: src/view/screens/NotFound.tsx:56 msgid "Go Home" -msgstr "Mergi acasă" +msgstr "Mergeți la Acasă" #: src/view/com/profile/ProfileMenu.tsx:318 #: src/view/com/profile/ProfileMenu.tsx:325 msgid "Go live" -msgstr "" +msgstr "Intrați în direct" #: src/components/live/GoLiveDialog.tsx:93 #: src/components/live/GoLiveDialog.tsx:98 #: src/components/live/GoLiveDialog.tsx:232 #: src/components/live/GoLiveDialog.tsx:241 msgid "Go Live" -msgstr "" +msgstr "Intrați în Direct" #: src/components/live/GoLiveDialog.tsx:174 msgid "Go live for" -msgstr "" +msgstr "Intrați în direct pentru" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" -msgstr "" +msgstr "Mergeți la profilul lui {firstAuthorName}" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "Mergeți la setările contului" #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" -msgstr "Mergi la conversația cu {0}" +msgstr "Mergeți la conversația cu {0}" #: src/screens/Login/ForgotPasswordForm.tsx:165 #: src/view/com/modals/ChangePassword.tsx:179 msgid "Go to next" -msgstr "Mergi la următorul" +msgstr "Mergeți la următorul" #: src/components/dms/ConvoMenu.tsx:227 msgid "Go to profile" -msgstr "Mergi la profil" +msgstr "Mergeți la profil" #: src/components/dms/ConvoMenu.tsx:224 msgid "Go to user's profile" -msgstr "Mergi la profilul utilizatorului" +msgstr "Mergeți la profilul utilizatorului" #: src/lib/moderation/useGlobalLabelStrings.ts:46 #: src/lib/moderation/useGlobalLabelStrings.ts:50 #: src/view/com/composer/labels/LabelsBtn.tsx:201 #: src/view/com/composer/labels/LabelsBtn.tsx:204 msgid "Graphic Media" -msgstr "Media grafică" +msgstr "Conținut Media Grafic" #: src/state/shell/progress-guide.tsx:218 #: src/state/shell/progress-guide.tsx:228 msgid "Half way there!" -msgstr "La jumătatea drumului!" +msgstr "Sunteți la jumătatea drumului!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" -msgstr "Nume de utilizator" +msgstr "Identificator" #: src/screens/Settings/components/ChangeHandleDialog.tsx:591 msgid "Handle already taken. Please try a different one." -msgstr "Numele de utilizator este deja folosit. Te rugăm să încerci altul." +msgstr "Identificator deja luat. Vă rugăm să încercați unul diferit." #: src/screens/Settings/components/ChangeHandleDialog.tsx:195 #: src/screens/Settings/components/ChangeHandleDialog.tsx:344 msgid "Handle changed!" -msgstr "Nume de utilizator schimbat!" +msgstr "Identificator modificat!" #: src/screens/Settings/components/ChangeHandleDialog.tsx:595 msgid "Handle too long. Please try a shorter one." -msgstr "Nume de utilizator prea lung. Te rugăm să încerci unul mai scurt." +msgstr "Identificator prea lung. Vă rugăm să încercați unul mai scurt." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" -msgstr "Haptica" +msgstr "Vibrații" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:34 #: src/lib/moderation/useReportOptions.ts:34 msgid "Harassment, trolling, or intolerance" msgstr "Hărțuire, trolling sau intoleranță" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" -msgstr "Etichetă" +msgstr "Hashtag" #: src/components/RichTextTag.tsx:51 msgid "Hashtag {tag}" -msgstr "" +msgstr "Hashtag {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." -msgstr "" +msgstr "Aveți un cod? <0>Faceți clic aici." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" -msgstr "Ai probleme?" +msgstr "Aveți dificultăți?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Ajutor" #: src/screens/Onboarding/StepProfile/index.tsx:235 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." -msgstr "Ajută-i pe oameni să știe că nu ești un bot încărcând o poză sau creând un avatar." +msgstr "Ajutați oamenii să știe că nu sunteți un robot încărcând o imagine sau creând un avatar." #: src/screens/Settings/components/AddAppPasswordDialog.tsx:187 msgid "Here is your app password!" -msgstr "Iată parola ta de aplicație!" +msgstr "Iată parola dvs. de aplicație!" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "Salut 👋" #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Ascuns" #: src/screens/VideoFeed/index.tsx:625 msgid "Hidden by your moderation settings." -msgstr "Ascuns de setările tale de moderare." +msgstr "Ascuns de setările dvs. de moderare." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Listă ascunsă" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:110 msgid "Hide" -msgstr "Ascunde" +msgstr "Ascundere" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" -msgstr "Ascunde" +msgstr "Ascundere" #: src/components/dialogs/Embed.tsx:128 msgid "Hide customization options" -msgstr "" - -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 -msgid "Hide post for me" -msgstr "Ascunde postarea pentru mine" +msgstr "Ascundere opțiuni de personalizare" +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 -msgid "Hide reply for everyone" -msgstr "Ascunde răspunsul pentru toți" +msgid "Hide post for me" +msgstr "Ascundere postare pentru mine" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 +msgid "Hide reply for everyone" +msgstr "Ascundere răspuns pentru toată lumea" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" -msgstr "Ascunde răspunsul pentru mine" +msgstr "Ascundere răspuns pentru mine" #: src/screens/Search/modules/ExploreInterestsCard.tsx:110 msgid "Hide this card" -msgstr "" +msgstr "Ascundeți acest card" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" -msgstr "Ascunzi această postare?" +msgstr "Ascundeți această postare?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" -msgstr "Ascunzi acest răspuns?" +msgstr "Ascundeți acest răspuns?" #: src/components/interstitials/Trending.tsx:113 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:62 msgid "Hide trending topics" -msgstr "" +msgstr "Ascundeți subiectele în tendințe" #: src/components/interstitials/Trending.tsx:129 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:108 msgid "Hide trending topics?" -msgstr "" +msgstr "Ascundeți subiectele în tendințe?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" -msgstr "" +msgstr "Ascundeți videoclipurile în tendințe?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" -msgstr "Ascunde lista utilizatorilor" +msgstr "Ascundere listă de utilizatori" #: src/screens/Moderation/VerificationSettings.tsx:85 #: src/screens/Moderation/VerificationSettings.tsx:94 msgid "Hide verification badges" -msgstr "" +msgstr "Ascundere insigne de verificare" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" -msgstr "" +msgstr "Ascundere conținut" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." -msgstr "Hm, a apărut o problemă atunci când am contactat serverul fluxului. Informează deținătorul fluxului despre această problemă." +msgstr "Hmm, a apărut o problemă la contactarea serverul fluxului. Informați proprietarul fluxului despre această problemă." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." -msgstr "Hm, serverul fluxului pare a fi configurat greșit. Informează deținătorul fluxului despre această problemă." +msgstr "Hmm, serverul de flux pare să fie configurat greșit. Informați proprietarul fluxului despre această problemă." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." -msgstr "Hm, serverul fluxului pare să fie deconectat. Informează deținătorul fluxului despre această problemă." +msgstr "Hmm, serverul fluxului pare să fie offline. Vă rugăm să comunicați proprietarului fluxului să știe despre această problemă." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." -msgstr "Hm, serverul fluxului a oferit un răspuns greșit. Informează deținătorul fluxului despre această problemă." +msgstr "Hmm, serverul fluxului a dat un răspuns rău. Vă rugăm să comunicați proprietarului fluxului să știe despre această problemă." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." -msgstr "Hm, avem dificultăți în găsirea acestui flux. Ar putea fi șters." +msgstr "Hmm, avem probleme cu găsirea acestui flux. S-ar putea să fi fost șters." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." -msgstr "Hm, se pare că avem probleme la încărcarea acestor date. Vezi mai jos pentru mai multe detalii. Dacă problema persistă, te rugăm să ne contactezi." +msgstr "Hmmmm, se pare că avem probleme la încărcarea acestor date. Vedeți mai jos pentru mai multe detalii. Dacă această problemă persistă, vă rugăm să ne contactați." #: src/screens/Profile/ErrorState.tsx:31 msgid "Hmmmm, we couldn't load that moderation service." -msgstr "Hm, nu am putut încărca acel serviciu de moderare." +msgstr "Hmmmm, nu am putut încărca acest serviciu de moderare." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" -msgstr "Așteaptă! Oferim acces treptat la video, și tu ești încă în așteptare. Revino în curând!" +msgstr "Stați așa! Oferim acces la videoclipuri treptat și încă sunteți pe lista de așteptare. Verificați din nou în curând!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Acasă" @@ -3982,24 +4225,20 @@ msgstr "Furnizor de găzduire" #: src/screens/Search/modules/ExploreTrendingTopics.tsx:194 msgid "Hot" -msgstr "" +msgstr "Fierbinți" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" -msgstr "Răspunsuri populare prima dată!" +msgstr "Răspunsurile populare prima dată" #: src/components/dialogs/InAppBrowserConsent.tsx:62 #: src/components/dialogs/InAppBrowserConsent.tsx:66 msgid "How should we open this link?" msgstr "Cum ar trebui să deschidem acest link?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4008,57 +4247,61 @@ msgstr "Am un cod" #: src/screens/Settings/components/ChangeHandleDialog.tsx:280 #: src/screens/Settings/components/ChangeHandleDialog.tsx:286 msgid "I have my own domain" -msgstr "Am propria mea adresă web" +msgstr "Am propriul meu domeniu" #: src/components/dms/BlockedByListDialog.tsx:57 #: src/components/dms/ReportConversationPrompt.tsx:21 msgid "I understand" -msgstr "Înțeleg" +msgstr "Am înțeles" #: src/view/com/lightbox/Lightbox.web.tsx:186 msgid "If alt text is long, toggles alt text expanded state" -msgstr "Dacă textul alternativ este lung, comută starea extinsă a textului alternativ" +msgstr "Dacă textul alternativ este lung, comutați starea extinsă a textului alternativ" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." -msgstr "Dacă nu ești încă adult conform legilor țării tale, părintele sau tutorele tău legal trebuie să citească acești Termeni în numele tău." +msgstr "Dacă nu sunteți încă adult în conformitate cu legile țării dvs., părintele sau tutorele legal trebuie să citească acești Termeni în numele dvs." #: src/view/screens/ProfileList.tsx:765 msgid "If you delete this list, you won't be able to recover it." -msgstr "Dacă ștergi această listă, nu o vei mai putea recupera." +msgstr "Dacă ștergeți această listă, nu o veți putea recupera." #: src/screens/Settings/components/ChangeHandleDialog.tsx:267 msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." -msgstr "Dacă ai propriul domeniu, îl poți folosi ca nume de utilizator. Acest lucru îți permite să-ți verifici identitatea. <0>Află mai multe aici." +msgstr "Dacă aveți propriul domeniu, îl puteți folosi ca identificator. Acest lucru vă permite să vă verificați identitatea automat. <0>Aflați mai multe aici." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." -msgstr "" +msgstr "Dacă trebuie să vă actualizați adresa de e-mail, <0>faceți clic aici." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." -msgstr "Dacă elimini această postare, nu o vei mai putea recupera." +msgstr "Dacă eliminați această postare, nu o veți putea recupera." #: src/components/dialogs/EmailDialog/screens/Update.tsx:208 msgid "If you update your email address, email 2FA will be disabled." -msgstr "" +msgstr "Dacă vă actualizați adresa de e-mail, e-mailul A2F va fi dezactivat." #: src/view/com/modals/ChangePassword.tsx:160 msgid "If you want to change your password, we will send you a code to verify that this is your account." -msgstr "Dacă vrei să îți schimbi parola, îți vom trimite un cod pentru a verifica că acesta este contul tău." +msgstr "Dacă doriți să vă modificați parola, vă vom trimite un cod pentru a verifica dacă acesta este contul dvs." + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "Dacă doriți să restricționați cine poate primi notificări pentru activitatea contului dvs., puteți modifica acest lucru în <0>Setări → Confidențialitate și Securitate." #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." -msgstr "Dacă ești un dezvoltator, îți poți găzdui propriul server." +msgstr "Dacă sunteți dezvoltator, vă puteți găzdui propriul server." #: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 msgid "If you're trying to change your handle or email, do so before you deactivate." -msgstr "Dacă încerci să îți schimbi identificatorul sau adresa de e-mail, fă-o înainte de a dezactiva contul." +msgstr "Dacă încercați să vă modificați identificatorul sau adresa de e-mail, faceți acest lucru înainte de a dezactiva." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:38 #: src/lib/moderation/useReportOptions.ts:38 msgid "Illegal and Urgent" -msgstr "Ilegal și urgent" +msgstr "Ilegal și Urgent" #: src/view/com/util/images/Gallery.tsx:71 msgid "Image" @@ -4066,20 +4309,20 @@ msgstr "Imagine" #: src/screens/Settings/AboutSettings.tsx:64 msgid "Image cache cleared" -msgstr "" +msgstr "Cache-ul imaginilor a fost golit" #. Android-only toast message which includes amount of space freed using localized number formatting #: src/screens/Settings/AboutSettings.tsx:50 msgid "Image cache cleared, freed {0}" -msgstr "" +msgstr "Cache-ul imaginilor a fost golit, s-au eliberat {0}" #: src/lib/media/save-image.ts:26 msgid "Image saved" -msgstr "" +msgstr "Imagine salvată" #: src/lib/media/save-image.ts:45 msgid "Images cannot be saved unless permission is granted to access your photo library." -msgstr "" +msgstr "Imaginile nu pot fi salvate decât dacă se acordă permisiunea de a accesa biblioteca dvs. de fotografii." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49 #: src/lib/moderation/useReportOptions.ts:49 @@ -4091,80 +4334,112 @@ msgstr "Impersonare sau afirmații false despre identitate sau afiliere" msgid "Impersonation, misinformation, or false claims" msgstr "Impersonare, dezinformare sau afirmații false" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "În aplicație" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "Notificări în aplicație" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "În aplicație, Toată lumea" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "În aplicație, Persoane pe care le urmăriți" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "În aplicație, Push" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "În aplicație, Push, Toată lumea" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "În aplicație, Push, Persoane pe care le urmăriți" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" -msgstr "Mesaje inadecvate sau linkuri explicite" +msgstr "Mesaje neadecvate sau link-uri explicite" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" -msgstr "" +msgstr "Inbox zero!" #: src/screens/Login/LoginForm.tsx:164 msgid "Incorrect username or password" -msgstr "Nume de utilizator sau parolă invalidă" +msgstr "Nume de utilizator sau parolă incorecte" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" -msgstr "Introduce codul trimis pe e-mail pentru resetarea parolei" +msgstr "Introduceți codul trimis pe e-mail pentru resetarea parolei" #: src/view/com/modals/DeleteAccount.tsx:228 msgid "Input confirmation code for account deletion" -msgstr "Introduce codul de confirmare pentru ștergerea contului" +msgstr "Introduceți codul de confirmare pentru ștergerea contului" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" -msgstr "Introdu parola nouă" +msgstr "Introduceți parola nouă" #: src/view/com/modals/DeleteAccount.tsx:247 msgid "Input password for account deletion" -msgstr "Introdu parola pentru ștergerea contului" +msgstr "Introduceți parola pentru ștergerea contului" #: src/screens/Login/LoginForm.tsx:289 msgid "Input the code which has been emailed to you" -msgstr "Introduce codul care ți-a fost trimis pe e-mail" +msgstr "Introduceți codul care v-a fost trimis prin e-mail" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 msgid "Interaction limited" msgstr "Interacțiune limitată" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" -msgstr "" +msgstr "Setări de interacțiune" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "Vă prezentăm notificări de activitate" #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." -msgstr "Cod de confirmare 2FA invalid." +msgstr "Cod de confirmare A2F invalid." #: src/screens/Settings/components/ChangeHandleDialog.tsx:597 msgid "Invalid handle. Please try a different one." -msgstr "Nume de utilizator invalid. Te rugăm să încerci unul diferit." +msgstr "Identificator nevalid. Vă rugăm să încercați unul diferit." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" -msgstr "Înregistrare postare invalidă sau nesuportată" +msgstr "Înregistrare postare nevalidă sau neacceptată" #: src/components/moderation/ReportDialog/index.tsx:73 msgid "Invalid report subject" -msgstr "" +msgstr "Subiect raport nevalid" #: src/components/intents/VerifyEmailIntentDialog.tsx:91 msgid "Invalid Verification Code" -msgstr "Cod de verificare invalid" +msgstr "Cod de Verificare Nevalid" #: src/view/com/modals/InviteCodes.tsx:94 msgid "Invite a Friend" -msgstr "Invită un prieten" +msgstr "Invitați un Prieten" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Cod de invitație" #: src/screens/Signup/state.ts:339 msgid "Invite code not accepted. Check that you input it correctly and try again." -msgstr "Codul de invitație nu a fost acceptat. Verifică dacă l-ai introdus corect și încearcă din nou." +msgstr "Codul de invitație nu este acceptat. Verificați dacă l-ați introdus corect și încercați din nou." #: src/view/com/modals/InviteCodes.tsx:171 msgid "Invite codes: {0} available" @@ -4176,55 +4451,71 @@ msgstr "Coduri de invitație: 1 disponibil" #: src/components/StarterPack/ShareDialog.tsx:77 msgid "Invite people to this starter pack!" -msgstr "Invită oameni la acest pachet de început!" +msgstr "Invitați persoane la acest pachet de pornire!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:34 msgid "Invite your friends to follow your favorite feeds and people" -msgstr "Invită-ți prietenii să urmărească fluxurile și persoanele tale preferate" +msgstr "Invitați-vă prietenii să vă urmărească fluxurile și persoanele preferate" #: src/screens/StarterPack/Wizard/StepDetails.tsx:31 msgid "Invites, but personal" msgstr "Invitații, dar personale" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Este corect" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." -msgstr "Ești doar tu acum! Adaugă mai multe persoane la pachetul tău de început căutând mai sus." +msgstr "Sunteți doar dvs. acum! Adăugați mai multe persoane la pachetul dvs. de pornire căutând mai sus." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" -msgstr "ID job: {0}" +msgstr "ID loc de muncă: {0}" #. Link to a page with job openings at Bluesky #: src/view/com/auth/SplashScreen.web.tsx:180 msgid "Jobs" -msgstr "Joburi" +msgstr "Locuri de Muncă" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:205 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:211 #: src/screens/StarterPack/StarterPackScreen.tsx:466 #: src/screens/StarterPack/StarterPackScreen.tsx:477 msgid "Join Bluesky" -msgstr "Alătură-te Bluesky" +msgstr "Alăturați-vă la Bluesky" #: src/components/StarterPack/QrCode.tsx:68 #: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" -msgstr "Alătură-te conversației" +msgstr "Alăturați-vă conversației" #: src/screens/Onboarding/index.tsx:21 #: src/screens/Onboarding/state.ts:104 msgid "Journalism" msgstr "Jurnalism" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "Ține-mă la curent" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "Politica de Confidențialitate KWS" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "Termenii și Condițiile KWS" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "Website-ul KWS" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Etichetat de {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Etichetat de autor." @@ -4237,58 +4528,69 @@ msgstr "Etichete" msgid "Labels added" msgstr "Etichete adăugate" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Etichetele sunt adnotări pentru utilizatori și conținut. Ele pot fi utilizate pentru a ascunde, avertiza și categoriza rețeaua." #: src/components/moderation/LabelsOnMeDialog.tsx:72 msgid "Labels on your account" -msgstr "Etichete pe contul tău" +msgstr "Etichete de pe contul dvs." #: src/components/moderation/LabelsOnMeDialog.tsx:74 msgid "Labels on your content" -msgstr "Etichete pe conținutul tău" +msgstr "Etichete pe conținutul dvs." #: src/view/com/composer/select-language/SelectLangBtn.tsx:107 msgid "Language selection" -msgstr "Selectarea limbii" +msgstr "Selectare limbă" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" -msgstr "Setări limbă" +msgstr "Setări Limbă" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Limbi" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Mai mare" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "Ultima inițiere acum {timeAgo}" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "Ultima inițiere chiar acum" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" -msgstr "Ultimele" +msgstr "Cele mai recente" #: src/screens/Settings/components/ChangeHandleDialog.tsx:271 msgid "learn more" -msgstr "află mai multe" +msgstr "aflați mai multe" #: src/components/verification/VerificationsDialog.tsx:165 #: src/components/verification/VerifierDialog.tsx:132 #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" -msgstr "" +msgstr "Aflați mai multe" #: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" -msgstr "Află mai multe" +msgstr "Aflați mai multe" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "Aflați mai multe despre verificarea vârstei" #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" @@ -4296,44 +4598,56 @@ msgstr "Află mai multe despre Bluesky" #: src/view/com/auth/server-input/index.tsx:218 msgid "Learn more about self hosting your PDS." -msgstr "Află mai multe despre găzduirea propriului PDS." +msgstr "Aflați mai multe despre găzduirea automată a SDP-ului dvs." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" -msgstr "" +msgstr "Aflați mai multe despre moderarea aplicată acestui conținut" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." -msgstr "Află mai multe despre moderarea aplicată acestui conținut." +msgstr "Aflați mai multe despre moderarea aplicată acestui conținut." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "Aflați mai multe despre aceste modificări și cum să vă împărtășiți gândurile cu noi până la <0>citind postarea noastră pe blog." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Aflați mai multe despre aceste modificări și cum să vă împărtășiți gândurile cu noi citind postarea noastră pe blog." + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" -msgstr "Află mai multe despre acest avertisment" +msgstr "Aflați mai multe despre acest avertisment" #: src/components/verification/VerificationsDialog.tsx:150 #: src/components/verification/VerifierDialog.tsx:117 msgid "Learn more about verification on Bluesky" -msgstr "" +msgstr "Aflați mai multe despre verificarea pe Bluesky" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." -msgstr "Află mai multe despre ce este public pe Bluesky." +msgstr "Aflați mai multe despre ce este public pe Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "Aflați mai multe în <0>setările contului." + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." -msgstr "Află mai multe." +msgstr "Aflați mai multe." #: src/components/dms/LeaveConvoPrompt.tsx:48 msgid "Leave" -msgstr "Părăsește" +msgstr "Părăsire" #: src/components/dms/MessagesListBlockedFooter.tsx:74 #: src/components/dms/MessagesListBlockedFooter.tsx:81 msgid "Leave chat" -msgstr "Ieși din conversație" +msgstr "Părăsiți conversația" #: src/components/dms/ConvoMenu.tsx:203 #: src/components/dms/ConvoMenu.tsx:206 @@ -4341,72 +4655,77 @@ msgstr "Ieși din conversație" #: src/components/dms/ConvoMenu.tsx:269 #: src/components/dms/LeaveConvoPrompt.tsx:42 msgid "Leave conversation" -msgstr "Ieși din conversație" +msgstr "Părăsire conversație" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Lasă-le pe toate neselectate pentru a vedea orice limbă." +msgid "Leave them all unselected to see any language." +msgstr "Lăsați-le pe toate neselectate pentru a vedea orice limbă." -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" -msgstr "Părăsind Bluesky" +msgstr "Părăsiți Bluesky" #: src/screens/SignupQueued.tsx:155 msgid "left to go." -msgstr "rămas de parcurs." +msgstr "rămas de făcut." #: src/components/StarterPack/ProfileStarterPacks.tsx:323 msgid "Let me choose" -msgstr "Permite-mi să aleg" +msgstr "Doresc să aleg" #: src/screens/Login/index.tsx:154 #: src/screens/Login/index.tsx:169 msgid "Let's get your password reset!" -msgstr "Haide să-ți resetezi parola!" +msgstr "Să vă resetăm parola!" #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Let's go!" -msgstr "Să mergem!" +msgstr "Să începem!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" -msgstr "Lumină" +msgstr "Luminoasă" #: src/screens/Settings/AppIconSettings/useAppIconSets.ts:14 msgctxt "Name of app icon variant" msgid "Light" -msgstr "Lumină" +msgstr "Luminoasă" #: src/screens/Profile/components/ProfileFeedHeader.tsx:518 msgid "Like" -msgstr "Îmi place" +msgstr "Apreciere" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" -msgstr "Apreciez ({0, plural, one {# apreciere} few {# aprecieri} other {# de aprecieri}})" +msgstr "Apreciere ({0, plural, one {# apreciere} few {# aprecieri} other {# de aprecieri}})" #: src/components/ProgressGuide/List.tsx:63 msgid "Like 10 posts" -msgstr "Apreciază 10 postări" +msgstr "Apreciați 10 postări" #: src/state/shell/progress-guide.tsx:214 #: src/state/shell/progress-guide.tsx:219 msgid "Like 10 posts to train the Discover feed" -msgstr "Apasă Like la 10 postări pentru a antrena fluxul Discover" +msgstr "Apreciați 10 postări pentru a instrui fluxul Descoperă" + +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "Notificări pentru aprecieri" #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" -msgstr "Apreciază acest flux" +msgstr "Apreciați acest flux" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272 msgid "Like this labeler" -msgstr "" +msgstr "Apreciați acest etichetator" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Apreciat de" @@ -4414,10 +4733,10 @@ msgstr "Apreciat de" #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 #: src/view/screens/ProfileFeedLikedBy.tsx:30 msgid "Liked By" -msgstr "Apreciat de" +msgstr "Apreciat De" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Apreciat de {0, plural, one {un utilizator} few {# utilizatori} other {# de utilizatori}}" @@ -4428,20 +4747,36 @@ msgstr "Apreciat de {0, plural, one {un utilizator} few {# utilizatori} other {# msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Apreciat de {likeCount, plural, one {un utilizator} few {# utilizatori} other {# de utilizatori}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" -msgstr "Like-uri" +msgstr "Aprecieri" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "Aprecieri pentru repostările dvs." + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "Notificări privind aprecierile postărilor dvs." + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" -msgstr "Like-uri pe această postare" +msgstr "Aprecieri la această postare" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" -msgstr "" +msgstr "Liniar" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Listă" @@ -4454,18 +4789,22 @@ msgctxt "toast" msgid "List blocked" msgstr "Listă blocată" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Listă de {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" -msgstr "" +msgstr "Listă de <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" -msgstr "Listat de tine" +msgstr "Listă de dvs." + +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "Creator listă" #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" @@ -4478,16 +4817,16 @@ msgstr "Lista a fost ascunsă" #: src/view/screens/ProfileList.tsx:176 msgid "List Hidden" -msgstr "Listă ascunsă" +msgstr "Listă Ascunsă" #: src/view/screens/ProfileList.tsx:402 msgctxt "toast" msgid "List muted" -msgstr "Listă pusă pe mut" +msgstr "Listă amuțită" #: src/view/com/modals/CreateOrEditList.tsx:253 msgid "List Name" -msgstr "Numele listei" +msgstr "Numele Listei" #: src/view/screens/ProfileList.tsx:456 msgctxt "toast" @@ -4497,14 +4836,14 @@ msgstr "Listă deblocată" #: src/view/screens/ProfileList.tsx:420 msgctxt "toast" msgid "List unmuted" -msgstr "Listă scoasă de pe mut" +msgstr "Listă dezamuțită" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Liste" @@ -4515,157 +4854,162 @@ msgstr "Liste care blochează acest utilizator:" #. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters #: src/components/live/LiveIndicator.tsx:46 msgid "LIVE" -msgstr "" +msgstr "ÎN DIRECT" #: src/components/live/LiveStatusDialog.tsx:215 msgid "Live feature is in beta testing" -msgstr "" +msgstr "Caracteristica în direct este în testare beta" #: src/components/live/EditLiveDialog.tsx:148 #: src/components/live/EditLiveDialog.tsx:152 #: src/components/live/GoLiveDialog.tsx:124 #: src/components/live/GoLiveDialog.tsx:128 msgid "Live link" -msgstr "" +msgstr "Link transmisiune în direct" #: src/screens/Search/Explore.tsx:86 msgid "Load more" -msgstr "Încarcă mai multe" +msgstr "Încărcați mai multe" #: src/screens/Search/Explore.tsx:504 #: src/screens/Search/Explore.tsx:581 msgid "Load more suggested feeds" -msgstr "Încarcă mai multe fluxuri sugerate" +msgstr "Încărcați mai multe fluxuri sugerate" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" -msgstr "Încarcă notificări noi" +msgstr "Încărcați notificări noi" #: src/screens/Profile/ProfileFeed/index.tsx:224 #: src/screens/Profile/Sections/Feed.tsx:98 #: src/view/com/feeds/FeedPage.tsx:155 #: src/view/screens/ProfileList.tsx:878 msgid "Load new posts" -msgstr "Încarcă postări noi" +msgstr "Încărcați postări noi" #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61 msgid "Loading..." -msgstr "Se încarcă..." +msgstr "Se Încarcă..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Jurnal" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" -msgstr "Vizibilitate pentru utilizatorii neautentificați" +msgstr "Vizibilitate pentru utilizatorii deconectați" #: src/view/shell/desktop/RightNav.tsx:130 msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo de @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" -msgstr "Logo creat de <0>@sawaratsuki.bsky.social" +msgstr "Logo de <0>@sawaratsuki.bsky.social" #: src/components/RichTextTag.tsx:53 msgid "Long press to open tag menu for #{tag}" -msgstr "Apasă lung pentru a deschide meniul pentru #{tag}" +msgstr "Apăsați lung pentru a deschide meniul de etichete pentru #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Arată ca XXXXX-XXXXX" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39 msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." -msgstr "Se pare că nu ai salvat niciun flux! Folosește recomandările noastre sau explorează mai jos." +msgstr "Se pare că nu ați salvat niciun flux! Folosiți recomandările noastre sau căutați mai multe de mai jos." #: src/screens/Home/NoFeedsPinned.tsx:83 msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" -msgstr "Se pare că ai desfăcut toate fluxurile. Dar nu-ți face griji, poți adăuga altele mai jos 😄" +msgstr "Se pare că ați anulat fixarea tuturor fluxurilor. Dar nu vă faceți griji, puteți adăuga câteva mai jos 😄" #: src/screens/Feeds/NoFollowingFeed.tsx:37 msgid "Looks like you're missing a following feed. <0>Click here to add one." -msgstr "Se pare că îți lipsește un flux de urmărit. <0>Apasă aici pentru a adăuga unul." +msgstr "Se pare că vă lipsește un flux urmărit. <0>Faceți clic aici pentru a adăuga unul." #: src/components/dialogs/EmailDialog/index.tsx:41 msgid "Make adjustments to email settings for your account" -msgstr "" +msgstr "Ajustați setările de e-mail pentru contul dvs." #: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Make one for me" -msgstr "Fă unul pentru mine" +msgstr "Faceți unul pentru mine" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" -msgstr "Asigură-te că asta este destinația unde vrei să ajungi!" +msgstr "Asigurați-vă că aici intenționați să mergeți!" #: src/screens/Settings/ContentAndMediaSettings.tsx:60 #: src/screens/Settings/ContentAndMediaSettings.tsx:63 msgid "Manage saved feeds" -msgstr "Gestionează fluxurile salvate" +msgstr "Gestionați fluxurile salvate" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" -msgstr "" +msgstr "Gestionați setările de verificare" #: src/components/dialogs/MutedWords.tsx:108 msgid "Manage your muted words and tags" -msgstr "Gestionează cuvintele și etichetele puse pe mut" +msgstr "Gestionați-vă cuvintele și etichetele amuțite" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" -msgstr "" +msgstr "Marcați toate ca citite" #: src/components/dms/ConvoMenu.tsx:215 #: src/components/dms/ConvoMenu.tsx:218 msgid "Mark as read" -msgstr "Marchează ca citit" +msgstr "Marcare ca citit" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" -msgstr "" +msgstr "Marcate toate ca citite" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" -msgstr "" +msgstr "Poate mai târziu" #: src/view/screens/Profile.tsx:227 msgid "Media" -msgstr "Media" +msgstr "Conținut Media" #: src/view/com/composer/labels/LabelsBtn.tsx:210 msgid "Media that may be disturbing or inappropriate for some audiences." -msgstr "Conținut media care poate fi deranjant sau nepotrivit pentru anumite audiențe." +msgstr "Conținut media care poate fi deranjant sau neadecvat pentru anumite audiențe." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "Notificări pentru mențiuni" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "utilizatori menționați" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Utilizatori menționați" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Mențiuni" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Meniu" #: src/components/dms/MessageProfileButton.tsx:96 msgid "Message {0}" -msgstr "Trimite mesaj către {0}" +msgstr "Trimiteți mesaj lui {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Mesaj șters" @@ -4674,35 +5018,39 @@ msgstr "Mesaj șters" msgid "Message deleted" msgstr "Mesaj șters" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" -msgstr "" +msgstr "Mesaj de la @{0}: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Mesaj de la server: {0}" #: src/screens/Messages/components/MessageInput.tsx:152 msgid "Message input field" -msgstr "Câmp pentru introducerea mesajului" +msgstr "Câmp introducere mesaj" #: src/screens/Messages/components/MessageInput.tsx:79 #: src/screens/Messages/components/MessageInput.web.tsx:60 msgid "Message is too long" msgstr "Mesajul este prea lung" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" -msgstr "" +msgstr "Opțiuni mesaj" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Mesaje" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" -msgstr "" +msgstr "Miezul nopții" + +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "Notificări diverse" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 @@ -4714,30 +5062,30 @@ msgstr "Cont înșelător" msgid "Misleading Post" msgstr "Postare înșelătoare" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderare" #: src/components/moderation/ModerationDetailsDialog.tsx:138 msgid "Moderation details" -msgstr "Detalii despre moderare" +msgstr "Detalii moderare" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Listă de moderare creată de {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Listă de moderare creată de <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" -msgstr "Listă de moderare creată de tine" +msgstr "Listă de moderare creată de dvs." #: src/view/com/modals/CreateOrEditList.tsx:175 msgctxt "toast" @@ -4749,33 +5097,33 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Listă de moderare actualizată" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Liste de moderare" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" -msgstr "Liste de moderare" +msgstr "Liste de Moderare" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "setări de moderare" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" -msgstr "Stări de moderare" +msgstr "Stări moderare" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Instrumente de moderare" #: src/components/moderation/ModerationDetailsDialog.tsx:52 #: src/lib/moderation/useModerationCauseDescription.ts:47 msgid "Moderator has chosen to set a general warning on the content." -msgstr "Moderatorul a decis să seteze un avertisment general pentru conținut." +msgstr "Moderatorul a decis să seteze un avertisment general asupra acestui conținutului." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Mai multe" @@ -4790,13 +5138,13 @@ msgstr "Mai multe fluxuri" msgid "More options" msgstr "Mai multe opțiuni" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Cele mai apreciate primele" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Răspunsurile cele mai apreciate primele" @@ -4808,112 +5156,112 @@ msgstr "Filme" msgid "Music" msgstr "Muzică" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" -msgstr "Dezactivează sunetul" +msgstr "Dezactivare sunet" #: src/components/RichTextTag.tsx:140 #: src/components/RichTextTag.tsx:153 msgid "Mute {tag}" -msgstr "" +msgstr "Amuțiți {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" -msgstr "" +msgstr "Amuțire cont" #: src/view/screens/ProfileList.tsx:657 msgid "Mute accounts" -msgstr "Pune pe mut conturi" +msgstr "Amuțire conturi" #: src/components/dms/ConvoMenu.tsx:232 #: src/components/dms/ConvoMenu.tsx:238 msgid "Mute conversation" -msgstr "Pune pe mut conversația" +msgstr "Amuțire conversație" #: src/components/dialogs/MutedWords.tsx:253 msgid "Mute in:" -msgstr "Pune pe mut în:" +msgstr "Amuțire în:" #: src/view/screens/ProfileList.tsx:779 msgid "Mute list" -msgstr "Pune pe mut lista" +msgstr "Amuțire listă" #: src/view/screens/ProfileList.tsx:774 msgid "Mute these accounts?" -msgstr "Pui pe mut aceste conturi?" +msgstr "Amuțiți aceste conturi?" #: src/components/dialogs/MutedWords.tsx:185 msgid "Mute this word for 24 hours" -msgstr "Pune pe mut acest cuvânt pentru 24 de ore" +msgstr "Amuțiți acest cuvânt timp de 24 de ore" #: src/components/dialogs/MutedWords.tsx:224 msgid "Mute this word for 30 days" -msgstr "Pune pe mut acest cuvânt pentru 30 de zile" +msgstr "Amuțiți acest cuvânt timp de 30 de zile" #: src/components/dialogs/MutedWords.tsx:209 msgid "Mute this word for 7 days" -msgstr "Pune pe mut acest cuvânt pentru 7 zile" +msgstr "Amuțiți acest cuvânt timp de 7 zile" #: src/components/dialogs/MutedWords.tsx:258 msgid "Mute this word in post text and tags" -msgstr "Pune pe mut acest cuvânt în textul postării și etichete" +msgstr "Amuțiți acest cuvânt în textul postărilor și etichetelor" #: src/components/dialogs/MutedWords.tsx:274 msgid "Mute this word in tags only" -msgstr "Pune pe mut acest cuvânt doar în etichete" +msgstr "Amuțiți acest cuvânt doar în etichete" #: src/components/dialogs/MutedWords.tsx:170 msgid "Mute this word until you unmute it" -msgstr "Pune pe mut acest cuvânt până îl reactivezi" +msgstr "Amuțiți acest cuvânt până îl dezamuțiți" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" -msgstr "Pune pe mut discuția" +msgstr "Amuțire fir" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" -msgstr "Pune pe mut cuvinte și etichete" +msgstr "Amuțire cuvinte & etichete" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" -msgstr "Conturi puse pe mut" +msgstr "Conturi amuțite" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" -msgstr "Conturi puse pe mut" +msgstr "Conturi Amuțite" #: src/view/screens/ModerationMutedAccounts.tsx:204 msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." -msgstr "Conturile puse pe mut nu mai apar în fluxul tău sau în notificări. Lucrurile puse pe mut sunt complet private." +msgstr "Conturile amuțite au postările lor eliminate din fluxul dvs. și din notificări. Amuțirile sunt complet private." #: src/lib/moderation/useModerationCauseDescription.ts:92 msgid "Muted by \"{0}\"" -msgstr "Pus pe mut de \"{0}\"" +msgstr "Amuțit de „{0}”" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" -msgstr "Cuvinte și etichete puse pe mut" +msgstr "Cuvinte & etichete amuțite" #: src/view/screens/ProfileList.tsx:776 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." -msgstr "Lucrurile puse pe mut sunt private. Conturile puse pe mut pot interacționa cu tine, dar nu vei vedea postările lor și nu vei primi notificări de la acestea." +msgstr "Amuțirea este privată. Conturile amuțite pot interacționa cu dvs., dar nu veți vedea postările lor și nu veți primi notificări de la ele." #: src/components/dialogs/BirthDateSettings.tsx:35 #: src/components/dialogs/BirthDateSettings.tsx:38 msgid "My Birthday" msgstr "Ziua mea de naștere" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" -msgstr "Fluxurile mele" +msgstr "Fluxurile Mele" #: src/view/com/modals/CreateOrEditList.tsx:268 msgid "Name" @@ -4932,7 +5280,7 @@ msgstr "Numele este obligatoriu" #: src/lib/moderation/useReportOptions.ts:106 #: src/lib/moderation/useReportOptions.ts:114 msgid "Name or Description Violates Community Standards" -msgstr "Numele sau descrierea încalcă standardele comunității" +msgstr "Numele sau Descrierea Încalcă Standardele Comunități" #: src/screens/Onboarding/index.tsx:22 #: src/screens/Onboarding/state.ts:107 @@ -4940,36 +5288,36 @@ msgid "Nature" msgstr "Natură" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" -msgstr "Navighează la {0}" +msgstr "Navigare la {0}" #: src/components/StarterPack/StarterPackCard.tsx:131 msgid "Navigate to starter pack" -msgstr "" +msgstr "Navigați la pachetul de pornire" #: src/screens/Login/ForgotPasswordForm.tsx:166 #: src/screens/Login/LoginForm.tsx:344 #: src/view/com/modals/ChangePassword.tsx:180 msgid "Navigates to the next screen" -msgstr "Navighează la ecranul următor" +msgstr "Navighează la următorul ecran" #: src/view/shell/Drawer.tsx:77 msgid "Navigates to your profile" -msgstr "Navighează la profilul tău" - -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Trebuie să-l schimbi?" +msgstr "Navighează la profilul dvs." +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "Doriți să raportați o încălcare a drepturilor de autor, o solicitare legală sau o problemă de conformitate cu reglementările?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" -msgstr "Raportezi o încălcare a drepturilor de autor?" +msgstr "Doriți să raportați o încălcare a drepturilor de autor?" #: src/screens/Onboarding/StepFinished.tsx:282 msgid "Never lose access to your followers or data." -msgstr "Nu pierde niciodată accesul la urmăritorii sau datele tale." +msgstr "Nu pierdeți niciodată accesul la urmăritori sau datele dvs." #: src/screens/Settings/components/ChangeHandleDialog.tsx:567 msgid "Nevermind, create a handle for me" @@ -4977,34 +5325,52 @@ msgstr "Nu contează, creează-mi un nume de utilizator" #: src/screens/Search/modules/ExploreTrendingTopics.tsx:199 msgid "New" -msgstr "Nouă" +msgstr "Noi" #: src/view/screens/Lists.tsx:77 #: src/view/screens/ModerationModlists.tsx:77 msgctxt "action" msgid "New" -msgstr "Nouă" +msgstr "Nou" + +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "{postsCount, plural, one {Postare nouă} few {Postări noi} other {Postări noi}} de la {firstAuthorLink}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "{postsCount, plural, one {Postare nouă} few {Postări noi} other {Postări noi}} de la {firstAuthorName}" #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Conversație nouă" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" -msgstr "" +msgstr "Adresă e-mail nouă" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" -msgstr "" +msgstr "Caracteristică Nouă" + +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "Notificări pentru urmăritori nou" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "Urmăritori noi" #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 msgid "New handle" -msgstr "Nume de utilizator nou" +msgstr "Identificator nou" #: src/view/screens/Lists.tsx:69 #: src/view/screens/ModerationModlists.tsx:69 @@ -5017,8 +5383,9 @@ msgstr "Mesaje noi" #: src/view/com/modals/CreateOrEditList.tsx:230 msgid "New Moderation List" -msgstr "Listă de moderare nouă" +msgstr "Listă de Moderare Nouă" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Parolă nouă" @@ -5029,7 +5396,7 @@ msgstr "Parolă Nouă" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,23 +5408,35 @@ msgctxt "action" msgid "New post" msgstr "Postare nouă" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" -msgstr "Postare nouă" +msgstr "Postare Nouă" + +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Postare nouă de la {firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} un alt utilizator} few {{formattedAuthorsCount} alți utilizatori} other {{formattedAuthorsCount} alți utilizatori}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Postare nouă de la {firstAuthorName} și {additionalAuthorsCount, plural, one {{formattedAuthorsCount} un alt utilizator} few {{formattedAuthorsCount} alți utilizatori} other {{formattedAuthorsCount} alți utilizatori}}" #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" -msgstr "Fereastră informații utilizator nou" +msgstr "Dialog cu informații despre utilizatorul nou" #: src/view/com/modals/CreateOrEditList.tsx:225 msgid "New User List" -msgstr "Listă nouă de utilizatori" +msgstr "Listă de Utilizatori Nouă" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Cele mai noi răspunsuri primele" @@ -5071,19 +5450,19 @@ msgstr "Știri" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" -msgstr "Următor" +msgstr "Următorul" #: src/view/com/lightbox/Lightbox.web.tsx:169 msgid "Next image" @@ -5091,59 +5470,62 @@ msgstr "Imaginea următoare" #: src/screens/Settings/AppPasswords.tsx:108 msgid "No app passwords yet" -msgstr "Nu există încă parole pentru aplicații" +msgstr "Încă nu există parole de aplicație" #: src/screens/Settings/components/ChangeHandleDialog.tsx:397 #: src/screens/Settings/components/ChangeHandleDialog.tsx:399 msgid "No DNS Panel" -msgstr "Fără panou DNS" +msgstr "Niciun Panou DNS" #: src/components/live/EditLiveDialog.tsx:140 msgid "No expiry set" -msgstr "" +msgstr "Fără expirare setată" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." -msgstr "Nu s-au găsit GIF-uri recomandate. Poate exista o problemă cu Tenor." +msgstr "Nu s-au găsit GIF-uri recomandate. Este posibil să existe o problemă cu Tenor." #: src/screens/StarterPack/Wizard/StepFeeds.tsx:119 msgid "No feeds found. Try searching for something else." -msgstr "Nu s-au găsit fluxuri. Încearcă să cauți altceva." +msgstr "Nu s-au găsit fluxuri. Încercați să căutați altceva." #: src/components/live/LinkPreview.tsx:63 msgid "No image" -msgstr "" +msgstr "Nici o imagine" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 msgid "No likes yet" msgstr "Încă nu există aprecieri" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" -msgstr "Nu mai urmărești pe {0}" - -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "" +msgstr "Nu mai urmăriți pe {0}" #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" -msgstr "Încă nu există mesaje" +msgstr "Niciun mesaj încă" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" -msgstr "Încă nu există notificări!" +msgstr "Nu există notificări încă!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Nimeni" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." -msgstr "Nimeni altcineva decât autorul nu poate cita această postare." +msgstr "Nimeni în afară de autor nu poate cita această postare." + +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "Nici o postare aici" #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." @@ -5151,7 +5533,7 @@ msgstr "Încă nu există postări." #: src/view/com/post-thread/PostQuotes.tsx:105 msgid "No quotes yet" -msgstr "Încă nu există ciări" +msgstr "Încă nu există citate" #: src/view/com/post-thread/PostRepostedBy.tsx:90 msgid "No reposts yet" @@ -5169,113 +5551,130 @@ msgstr "Niciun rezultat" #: src/screens/Search/Explore.tsx:786 msgid "No results for \"{0}\"." -msgstr "" +msgstr "Niciun rezultat pentru „{0}”." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Nu s-au găsit rezultate" #: src/view/screens/Feeds.tsx:473 msgid "No results found for \"{query}\"" -msgstr "Nu s-au găsit rezultate pentru „{query}”" +msgstr "Niciun rezultat găsit pentru „{query}”" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" -msgstr "Nu s-au găsit rezultate pentru {query}" +msgstr "Niciun rezultat găsit pentru „{query}”" #: src/screens/Search/Explore.tsx:790 msgid "No results." -msgstr "" +msgstr "Niciun rezultat." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." -msgstr "Nu s-au găsit rezultate de căutare pentru \"{search}\"." +msgstr "Niciun rezultat găsit pentru „{search}”." #: src/components/dialogs/EmbedConsent.tsx:104 #: src/components/dialogs/EmbedConsent.tsx:111 msgid "No thanks" msgstr "Nu, mulțumesc" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Nimeni" #: src/components/LikedByList.tsx:86 #: src/view/com/post-thread/PostLikedBy.tsx:86 msgid "Nobody has liked this yet. Maybe you should be the first!" -msgstr "Nimeni nu a apreciat asta încă. Poate ar trebui să fii primul!" +msgstr "Nimeni nu a apreciat asta încă. Poate ar trebui să fiți primul!" #: src/view/com/post-thread/PostQuotes.tsx:107 msgid "Nobody has quoted this yet. Maybe you should be the first!" -msgstr "Nimeni nu a citat asta încă. Poate ar trebui să fii primul!" +msgstr "Nimeni nu a citat asta încă. Poate ar trebui să fiți primul!" #: src/view/com/post-thread/PostRepostedBy.tsx:92 msgid "Nobody has reposted this yet. Maybe you should be the first!" -msgstr "Nimeni nu a redistribuit asta încă. Poate ar trebui să fii primul!" +msgstr "Nimeni nu a redistribuit asta încă. Poate ar trebui să fiți primul!" #: src/screens/StarterPack/Wizard/StepProfiles.tsx:104 msgid "Nobody was found. Try searching for someone else." -msgstr "Nu s-a găsit nimeni. Încearcă să cauți pe altcineva." +msgstr "Nimeni nu a fost găsit. Încercați să căutați pe altcineva." #: src/lib/moderation/useGlobalLabelStrings.ts:42 msgid "Non-sexual Nudity" msgstr "Nuditate non-sexuală" -#: src/components/KnownFollowers.tsx:255 -msgid "Not followed by anyone you're following" -msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "Nimic" -#: src/Navigation.tsx:139 +#: src/components/KnownFollowers.tsx:259 +msgid "Not followed by anyone you're following" +msgstr "Nu este urmărit de nimeni pe care îi urmăriți" + +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" -msgstr "Nu a fost găsit" +msgstr "Nu a Fost Găsit" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Notă despre partajare" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." -msgstr "Notă: Bluesky este o rețea deschisă și publică. Această setare limitează doar vizibilitatea conținutului pe aplicația și site-ul Bluesky, iar alte aplicații s-ar putea să nu respecte această setare. Conținutul tău poate fi afișat utilizatorilor neautentificați de alte aplicații și site-uri web." +msgstr "Notă: Bluesky este o rețea deschisă și publică. Această setare limitează doar vizibilitatea conținutului dvs. pe aplicația și pe site-ul Bluesky, iar alte aplicații ar putea să nu respecte această setare. Conținutul dvs. poate fi afișat în continuare utilizatorilor deconectați de alte aplicații și site-uri web." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "Notă: Această postare este vizibilă numai pentru utilizatorii conectați." + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Nimic aici" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Filtre pentru notificări" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Setări pentru notificări" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Setări pentru notificări" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" -msgstr "Sunete pentru notificări" +msgstr "Sunete notificare" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" -msgstr "Sunete de notificare" +msgstr "Sunete Notificare" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Notificări" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "Notificări pentru orice altceva, cum ar fi atunci când cineva se alătură prin intermediul unuia dintre pachetele dvs. de început." + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "acum" @@ -5292,20 +5691,21 @@ msgstr "Nuditate" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:78 #: src/lib/moderation/useReportOptions.ts:78 msgid "Nudity or adult content not labeled as such" -msgstr "Nuditate sau conținut pentru adulți fără etichetă corespunzătoare" +msgstr "Nuditate sau conținut pentru adulți care nu este etichetat ca atare" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" -msgstr "Oprit" +msgstr "Dezactivat" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Oh, nu!" #: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." -msgstr "Oh, nu! Ceva a mers prost." +msgstr "Oh nu! Ceva nu a mers bine." #. Confirm button text. #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349 @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "OK" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" -msgstr "Bine" +msgstr "Okay" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Cele mai vechi răspunsuri primele" @@ -5331,156 +5736,157 @@ msgstr "Cele mai vechi răspunsuri primele" msgid "on<0><1/><2><3/>" msgstr "pe<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" -msgstr "Resetare înscriere" +msgstr "Resetare înregistrare" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." -msgstr "Unul sau mai multe GIF-uri nu au text alternativ." +msgstr "Unei sau mai multor GIF-uri le lipsește textul alternativ." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." -msgstr "Una sau mai multe imagini nu au text alternativ." +msgstr "Unei sau mai multor imagini le lipsește textul alternativ." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." -msgstr "Unul sau mai multe videoclipuri nu au text alternativ." +msgstr "Unei sau mai multor videoclipuri le lipsește textul alternativ." #: src/screens/Onboarding/StepProfile/index.tsx:115 msgid "Only .jpg and .png files are supported" msgstr "Doar fișierele .jpg și .png sunt acceptate" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Doar {0} poate răspunde." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Conține doar litere, cifre și cratime" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "Doar urmăritorii pe care îi urmăresc" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" -msgstr "Sunt acceptate doar fișierele imagine" +msgstr "Doar fișierele imagine sunt acceptate" #: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 msgid "Only WebVTT (.vtt) files are supported" -msgstr "Sunt acceptate doar fișierele WebVTT (.vtt)" +msgstr "Doar fișierele WebVTT (.vtt) sunt acceptate" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" -msgstr "Ups, ceva a mers prost!" +msgstr "Hopa, ceva nu a mers bine!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" -msgstr "Ups!" +msgstr "Hopa!" #: src/screens/Onboarding/StepFinished.tsx:278 msgid "Open" -msgstr "Deschide" +msgstr "Deschidere" #: src/screens/Onboarding/StepProfile/index.tsx:284 msgid "Open avatar creator" -msgstr "Deschide creatorul de avatare" +msgstr "Deschideți creatorul de avatar" #: src/screens/Messages/components/ChatListItem.tsx:368 #: src/screens/Messages/components/ChatListItem.tsx:369 msgid "Open conversation options" -msgstr "Deschide opțiunile conversației" +msgstr "Deschideți opțiunile conversației" #: src/components/Layout/Header/index.tsx:159 msgid "Open drawer menu" -msgstr "" +msgstr "Deschideți meniul sertar" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" -msgstr "Deschide selectorul de emoji" +msgstr "Deschideți selectorul de emoji" #: src/screens/Profile/components/ProfileFeedHeader.tsx:191 msgid "Open feed info screen" -msgstr "Deschide ecranul cu informații despre flux" +msgstr "Deschideți ecranul cu informații despre flux" #: src/screens/Profile/components/ProfileFeedHeader.tsx:291 #: src/screens/Profile/components/ProfileFeedHeader.tsx:296 msgid "Open feed options menu" -msgstr "Deschide meniul cu opțiuni pentru flux" +msgstr "Deschideți meniul de opțiuni flux" #: src/components/dms/EmojiPopup.android.tsx:27 msgid "Open full emoji list" -msgstr "" +msgstr "Deschideți lista completă de emoji-uri" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" -msgstr "Deschide link-ul către {niceUrl}" +msgstr "Deschideți link-ul către {niceUrl}" #: src/components/dms/ActionsWrapper.tsx:35 msgid "Open message options" -msgstr "Deschide opțiunile mesajului" +msgstr "Deschideți opțiunile pentru mesaje" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" -msgstr "Deschide pagina de depanare pentru moderare" +msgstr "Deschideți pagina de depanare pentru moderare" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" -msgstr "Deschide setările pentru cuvinte și etichete puse pe mut" +msgstr "Deschideți cuvinte amuțite și setări etichete" #: src/screens/Search/components/StarterPackCard.tsx:119 msgid "Open pack" -msgstr "" +msgstr "Deschidere pachet" #: src/components/PostControls/PostMenu/index.tsx:62 msgid "Open post options menu" -msgstr "Deschide meniul de opțiuni pentru postare" +msgstr "Deschideți meniul de opțiuni de postare" #: src/components/live/LiveStatusDialog.tsx:189 #: src/components/live/LiveStatusDialog.tsx:203 msgid "Open profile" -msgstr "" +msgstr "Deschidere profil" #: src/components/PostControls/ShareMenu/index.tsx:87 msgid "Open share menu" -msgstr "" +msgstr "Deschidere meniu distribuire" #: src/screens/StarterPack/StarterPackScreen.tsx:566 msgid "Open starter pack menu" -msgstr "Deschide meniul pentru pachetul de început" +msgstr "Deschideți meniul pachetului de pornire" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" -msgstr "Deschide pagina storybook" +msgstr "Deschideți pagina storybook" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" -msgstr "Deschide jurnalul de sistem" +msgstr "Deschideți jurnalul sistemului" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" -msgstr "Deschide {numItems} opțiuni" +msgstr "Deschideți {numItems} opțiuni" #: src/view/com/composer/labels/LabelsBtn.tsx:62 msgid "Opens a dialog to add a content warning to your post" -msgstr "Deschide o fereastră pentru a adăuga un avertisment de conținut postării tale" +msgstr "Deschide un dialog pentru a adăuga un avertisment de conținut postării dvs." #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:61 msgid "Opens a dialog to choose who can reply to this thread" -msgstr "Deschide o fereastră pentru a alege cine poate răspunde la această discuție" +msgstr "Deschide un dialog pentru a alege cine poate răspunde la acest fir" #: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" -msgstr "Arată detalii suplimentare pentru o înregistrare de depanare" +msgstr "Deschide detalii suplimentare pentru o intrare de depanare" #: src/view/com/composer/videos/SubtitleDialog.tsx:44 msgid "Opens alt text dialog" -msgstr "" +msgstr "Deschide dialogul de text alternativ" #: src/view/com/composer/photos/OpenCameraBtn.tsx:71 msgid "Opens camera on device" @@ -5488,60 +5894,60 @@ msgstr "Deschide camera pe dispozitiv" #: src/view/com/composer/videos/SubtitleDialog.tsx:43 msgid "Opens captions and alt text dialog" -msgstr "" +msgstr "Deschide dialogul pentru subtitrări și text alternativ" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" -msgstr "" +msgstr "Deschideți dialogul de modificare a identificatorului" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" -msgstr "Deschide editorul" +msgstr "Deschide compozitorul" #: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 msgid "Opens device photo gallery" msgstr "Deschide galeria foto a dispozitivului" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" -msgstr "" +msgstr "Deschide selectorul de emoji" #: src/view/com/auth/SplashScreen.tsx:49 #: src/view/com/auth/SplashScreen.web.tsx:111 msgid "Opens flow to create a new Bluesky account" -msgstr "Deschide procesul pentru crearea unui cont Bluesky nou" +msgstr "Deschide interfața pentru a crea un nou cont Bluesky" #: src/view/com/auth/SplashScreen.tsx:63 #: src/view/com/auth/SplashScreen.web.tsx:125 msgid "Opens flow to sign in to your existing Bluesky account" -msgstr "" +msgstr "Deschide procesul pentru a vă conecta la contul dvs. Bluesky existent" #: src/view/com/composer/photos/SelectGifBtn.tsx:36 msgid "Opens GIF select dialog" -msgstr "Deschide fereastra de selecție GIF" +msgstr "Deschide dialogul de selectare GIF" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" -msgstr "" +msgstr "Deschide serviciul de asistență în browser" + +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "Deschidere link {0}" #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" -msgstr "Deschide lista cu coduri de invitație" +msgstr "Deschide lista codurilor de invitație" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" -msgstr "" +msgstr "Deschide dialogul de stare în direct" #: src/screens/Login/LoginForm.tsx:249 msgid "Opens password reset form" -msgstr "Dechide formularul de resetare a parolei" +msgstr "Deschide formularul de resetare a parolei" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Vizitează site-ul" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Deschide acest profil" @@ -5552,39 +5958,39 @@ msgstr "Deschide selectorul de videoclipuri" #: src/components/dms/ReportDialog.tsx:221 #: src/components/ReportDialog/SubmitView.tsx:168 msgid "Optionally provide additional information below:" -msgstr "Opțional, poți să oferi informații suplimentare mai jos:" +msgstr "Furnizați informații opționale suplimentare mai jos:" #: src/components/dialogs/MutedWords.tsx:299 msgid "Options:" msgstr "Opțiuni:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" -msgstr "Sau combină aceste opțiuni:" +msgstr "Sau combinați aceste opțiuni:" #: src/screens/Deactivated.tsx:200 msgid "Or, continue with another account." -msgstr "Sau continuă cu un alt cont." +msgstr "Sau, continuați cu un alt cont." #: src/screens/Deactivated.tsx:187 msgid "Or, sign in to one of your other accounts." -msgstr "" +msgstr "Sau, conectați-vă la unul dintre celelalte conturi ale dvs." #: src/screens/Settings/components/OTAInfo.tsx:52 msgid "OTA status: ..." -msgstr "" +msgstr "Status OTA: ..." #: src/screens/Settings/components/OTAInfo.tsx:48 msgid "OTA status: Available!" -msgstr "" +msgstr "Status OTA: Disponibil!" #: src/screens/Settings/components/OTAInfo.tsx:50 msgid "OTA status: Error fetching update" -msgstr "" +msgstr "Status OTA: Eroare la preluarea actualizării" #: src/screens/Settings/components/OTAInfo.tsx:54 msgid "OTA status: None available" -msgstr "" +msgstr "Status OTA: Nimic disponibil" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27 #: src/lib/moderation/useReportOptions.ts:27 @@ -5598,29 +6004,33 @@ msgstr "Alt cont" #: src/view/com/composer/select-language/SelectLangBtn.tsx:93 msgid "Other..." -msgstr "Alta..." +msgstr "Altul..." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "Postarea noastră de pe blog" #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." -msgstr "Echipa noastră de moderare a primit raportul tău." +msgstr "Echipa noastră de moderație a primit raportul dvs." #: src/screens/Messages/components/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." -msgstr "Moderatorii noștri au analizat rapoartele și au decis să îți dezactiveze accesul la conversații pe Bluesky." +msgstr "Moderatorii noștri au analizat rapoartele și au decis să dezactiveze accesul dvs. la conversații pe Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Pagina nu a fost găsită" #: src/view/screens/NotFound.tsx:44 msgid "Page Not Found" -msgstr "Pagina nu a fost găsită" +msgstr "Pagina N-a Fost Găsită" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5628,51 +6038,56 @@ msgstr "Parolă" #: src/view/com/modals/ChangePassword.tsx:154 msgid "Password Changed" -msgstr "Parola a fost schimbată" +msgstr "Parolă Modificată" #: src/view/com/modals/ChangePassword.tsx:99 msgid "Password must be at least 8 characters long." -msgstr "" +msgstr "Parola trebuie să aibă cel puțin 8 caractere." #: src/screens/Login/index.tsx:181 msgid "Password updated" -msgstr "Parola a fost actualizată" +msgstr "Parolă actualizată" #: src/screens/Login/PasswordUpdatedForm.tsx:23 msgid "Password updated!" -msgstr "Parola a fost actualizată!" +msgstr "Parolă actualizată!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Pauză" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" -msgstr "Pune videoclipul pe pauză" +msgstr "Pauză videoclip" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Persoane" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Persoane urmărite de @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Persoane care urmăresc @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "Persoane pe care le urmăriți" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." -msgstr "" +msgstr "Permisiunea de a vă accesa biblioteca de fotografii a fost refuzată. Vă rugăm să o activați în setările sistemului." #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" -msgstr "Comutator persoană" +msgstr "Comutare persoană" #: src/screens/Onboarding/index.tsx:28 #: src/screens/Onboarding/state.ts:109 @@ -5685,194 +6100,217 @@ msgstr "Fotografie" #: src/view/com/composer/labels/LabelsBtn.tsx:169 msgid "Pictures meant for adults." -msgstr "Imagini pentru adulți." +msgstr "Imagini destinate adulților." #: src/screens/Profile/components/ProfileFeedHeader.tsx:523 #: src/screens/Profile/components/ProfileFeedHeader.tsx:530 msgid "Pin feed" -msgstr "" +msgstr "Fixați fluxul" #: src/components/FeedCard.tsx:329 msgid "Pin Feed" -msgstr "" +msgstr "Fixați Fluxul" #: src/view/screens/ProfileList.tsx:714 msgid "Pin to home" -msgstr "Fixează pe pagină" +msgstr "Fixare la acasă" #: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" -msgstr "Fixează pe pagină" +msgstr "Fixare la Acasă" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" -msgstr "Fixează pe profilul tău" +msgstr "Fixați la profilul dvs." -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Fixat" #: src/screens/Profile/components/ProfileFeedHeader.tsx:160 #: src/screens/Profile/components/ProfileFeedHeader.tsx:174 msgid "Pinned {0} to Home" -msgstr "" +msgstr "Fixat {0} la Acasă" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" -msgstr "Fluxuri fixate" +msgstr "Fluxuri Fixate" #: src/view/screens/ProfileList.tsx:361 msgid "Pinned to your feeds" -msgstr "Fixat pe fluxurile tale" +msgstr "Fixat la fluxurile dvs." -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" -msgstr "Redă" +msgstr "Redare" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" -msgstr "Redă {0}" +msgstr "Redați {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" -msgstr "Redă videoclipul" +msgstr "Redați videoclipul" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" -msgstr "Redă videoclipul" +msgstr "Redați Videoclipul" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" -msgstr "Redă sau pune pe pauză GIF-ul" +msgstr "Redă sau întrerupe GIF-ul" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" -msgstr "Redă sau pune pe pauză videoul" +msgstr "Redă sau întrerupe videoclipul" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Redă GIF-ul" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" -msgstr "Redă videoul" +msgstr "Redă videoclipul" #: src/view/com/composer/labels/LabelsBtn.tsx:115 msgid "Please add any content warning labels that are applicable for the media you are posting." -msgstr "" +msgstr "Vă rugăm să adăugați orice etichete de avertizare de conținut care sunt aplicabile pentru conținutul media pe care îl postați." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "Vă rugăm să verificați inbox-ul de e-mail pentru instrucțiuni suplimentare. Este posibil să dureze un minut sau două până ajunge." #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." -msgstr "Te rog să îți alegi un nume de utilizator." +msgstr "Vă rugăm să vă alegeți identificatorul." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." -msgstr "Te rog să îți alegi o parolă." +msgstr "Vă rugăm să vă alegeți parola." #: src/components/dialogs/EmailDialog/screens/Update.tsx:290 msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." -msgstr "" +msgstr "Vă rugăm faceți clic pe linkul din e-mailul pe care tocmai vi l-am trimis pentru a vă verifica noua adresă de e-mail. Acesta este un pas important pentru a vă permite să vă bucurați în continuare de toate caracteristicile Bluesky." #: src/screens/Signup/state.ts:301 msgid "Please complete the verification captcha." -msgstr "Te rog să completezi captcha de verificare." +msgstr "Vă rugăm să completați verificarea captcha." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." -msgstr "" +msgstr "Vă rugăm să verificați din nou dacă ați introdus corect adresa de e-mail." #: src/screens/Login/SetNewPasswordForm.tsx:58 msgid "Please enter a password." -msgstr "Te rugăm introdu o parolă." +msgstr "Vă rugăm să introduceți o parolă." #: src/view/com/modals/ChangePassword.tsx:94 msgid "Please enter a password. It must be at least 8 characters long." -msgstr "" +msgstr "Vă rugăm să introduceți o parolă. Trebuie să aibă cel puțin 8 caractere." #: src/screens/Settings/components/AddAppPasswordDialog.tsx:114 msgid "Please enter a unique name for this app password or use our randomly generated one." -msgstr "Te rog să introduci un nume unic pentru această parolă de aplicație sau să folosești unul generat automat." +msgstr "Vă rugăm să introduceți un nume unic pentru această parolă de aplicație sau să utilizați unul generat la întâmplare." #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131 #: src/components/dialogs/EmailDialog/screens/Update.tsx:135 #: src/components/dialogs/EmailDialog/screens/Verify.tsx:145 msgid "Please enter a valid code." -msgstr "" +msgstr "Vă rugăm să introduceți un cod valid." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." -msgstr "" +msgstr "Vă rugăm să introduceți o adresă de e-mail validă." #: src/components/dialogs/MutedWords.tsx:86 msgid "Please enter a valid word, tag, or phrase to mute" -msgstr "Te rog să introduci un cuvânt, tag sau expresie validă pentru a le pune pe mut." +msgstr "Vă rugăm să introduceți un cuvânt, o etichetă sau o expresie validă pe care să o amuțiți" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "Vă rugăm să introduceți o adresă de e-mail validă, ne-temporară. Este posibil să fie nevoie să accesați această adresă de e-mail în viitor." + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." -msgstr "" +msgstr "Vă rugăm să introduceți mai jos codul pe care l-am trimis către <0>{0}." #: src/components/dialogs/EmailDialog/screens/Update.tsx:247 msgid "Please enter the security code we sent to your previous email address." -msgstr "" +msgstr "Vă rugăm să introduceți codul de securitate pe care l-am trimis la adresa dvs. de e-mail anterioară." #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." -msgstr "Te rog să introduci adresa de e-mail." +msgstr "Vă rugăm să introduceți adresa dvs. de e-mail." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." -msgstr "Te rog să introduci codul tău de invitație." +msgstr "Vă rugăm să introduceți codul de invitație." #: src/components/dialogs/EmailDialog/screens/Update.tsx:217 msgid "Please enter your new email address." -msgstr "" +msgstr "Vă rugăm să introduceți noua adresă de e-mail." #: src/screens/Login/LoginForm.tsx:99 msgid "Please enter your password" -msgstr "Te rugăm să-ți introduci parola" +msgstr "Vă rugăm să vă introduceți parola" #: src/view/com/modals/DeleteAccount.tsx:235 msgid "Please enter your password as well:" -msgstr "Te rog să introduci și parola ta:" +msgstr "Vă rugăm să introduceți și parola dvs.:" #: src/screens/Login/LoginForm.tsx:94 msgid "Please enter your username" -msgstr "Te rugăm să-ți introduci numele de utilizator" +msgstr "Vă rugăm să vă introduceți numele de utilizator" #: src/components/moderation/LabelsOnMeDialog.tsx:290 msgid "Please explain why you think this label was incorrectly applied by {0}" -msgstr "Te rog să explici de ce crezi că această etichetă a fost aplicată greșit de {0}." +msgstr "Vă rugăm să explicați de ce credeți că această etichetă a fost aplicată incorect de {0}" #: src/screens/Messages/components/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" -msgstr "Te rog să explici de ce crezi că conversațiile tale au fost dezactivate greșit." +msgstr "Vă rugăm să explicați de ce credeți că conversațiile dvs. au fost dezactivate incorect" + +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "Vă rugăm să reveniți, sau să activați acest element pentru a reveni la începutul conținutului activ." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "Vă rugăm să furnizați orice detalii suplimentare de care considerați că moderatorii ar putea avea nevoie pentru a evalua corect statutul dvs. în cadrul programului de Verificare a Vârstei." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "Vă rugăm să selectați o limbă" #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" -msgstr "" +msgstr "Vă rugăm să selectați un serviciu de moderare" #: src/components/moderation/ReportDialog/action.ts:28 msgid "Please select a reason for this report" -msgstr "" +msgstr "Vă rugăm să selectați un motiv pentru acest raport" #: src/lib/hooks/useAccountSwitcher.ts:45 #: src/lib/hooks/useAccountSwitcher.ts:55 msgid "Please sign in as @{0}" -msgstr "Te rog să te conectezi ca @{0}." +msgstr "Vă rugăm conectați-vă ca @{0}" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62 msgid "Please verify your email" -msgstr "" +msgstr "Vă rugăm să vă verificați adresa de e-mail" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Te rog să îți verifici adresa de e-mail." +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "Vă rugăm să vă scrieți mesajul mai jos:" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,78 +6322,88 @@ msgstr "Politică" msgid "Porn" msgstr "Pornografie" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Postează" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" -msgstr "Postează" +msgstr "Postare" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Postare" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" -msgstr "Posetază tot" +msgstr "Postați-le pe toate" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "Postare blocată" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" -msgstr "Postare de la {0}" +msgstr "Postare de {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" -msgstr "Postare de la @{0}" +msgstr "Postare de @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" -msgstr "Postarea a fost ștearsă" +msgstr "Postare ștearsă" #: src/lib/api/index.ts:186 msgid "Post failed to upload. Please check your Internet connection and try again." -msgstr "Postarea nu a fost încărcată. Verifică conexiunea la internet și încearcă din nou." +msgstr "Postarea nu a putut fi încărcată. Vă rugăm să vă verificați conexiunea la internet și să încercați din nou." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "Postarea a fost ștearsă" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" -msgstr "Postarea este ascunsă" +msgstr "Postare ascunsă" #: src/components/moderation/ModerationDetailsDialog.tsx:107 #: src/lib/moderation/useModerationCauseDescription.ts:106 msgid "Post Hidden by Muted Word" -msgstr "Postare ascunsă de un cuvânt pus pe mut" +msgstr "Postare Ascunsă de un Cuvânt Amuțit" #: src/components/moderation/ModerationDetailsDialog.tsx:110 #: src/lib/moderation/useModerationCauseDescription.ts:115 msgid "Post Hidden by You" -msgstr "Postare ascunsă de tine" +msgstr "Postare Ascunsă de Dvs." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" -msgstr "Setări pentru interacțiunea cu postarea" +msgstr "Setări interacțiune postare" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" -msgstr "" +msgstr "Setări de Interacțiune Postare" #: src/view/com/composer/select-language/SelectLangBtn.tsx:89 msgid "Post language" -msgstr "Limba postării" +msgstr "Limbă postare" #: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:77 msgid "Post Languages" -msgstr "Limbi ale postărilor" +msgstr "Limbi Postare" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Postarea nu a fost găsită" @@ -5967,8 +6415,11 @@ msgstr "Postare fixată" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" -msgstr "Postare desfăcută de la fixare" +msgstr "Fixarea postării a fost anulată" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5977,35 +6428,38 @@ msgstr "Postări" #: src/components/dialogs/MutedWords.tsx:115 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." -msgstr "Postările pot fi puse pe mut pe baza textului, etichetelor sau amândurora. Îți recomandăm să eviți cuvintele comune care apar în multe postări, deoarece poate rezulta în ascunderea tuturor postărilor." +msgstr "Postările pot fi amuțite în funcție de text, etichete sau ambele. Vă recomandăm să evitați cuvintele obișnuite care apar în multe postări, deoarece acest lucru poate face să nu se afișeze nicio postare." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Postări ascunse" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "Postări, Răspunsuri" + +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" msgstr "Link potențial înșelător" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Preferință salvată" +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "Avertisment link potențial înșelător" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" -msgstr "Apasă pentru a încerca reconectarea" +msgstr "Apăsați pentru a încerca reconectarea" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" -msgstr "Apasă pentru a reîncerca" +msgstr "Apăsați pentru a reîncerca" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" -msgstr "Apasă pentru a vedea urmăritorii acestui cont pe care îi urmărești și tu" +msgstr "Apăsați pentru a vedea urmăritorii acestui cont pe care îi urmăriți și dvs." #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" @@ -6013,42 +6467,48 @@ msgstr "Imaginea anterioară" #: src/screens/Settings/LanguageSettings.tsx:120 msgid "Primary Language" -msgstr "Limba principală" +msgstr "Limba Principală" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" -msgstr "Prioritizează urmăririle tale" - -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Notificări prioritare" +msgstr "Prioritizați Urmăririle dvs." #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Confidențialitate" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Confidențialitate și securitate" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Confidențialitate și Securitate" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "Setări de Confidențialitate și Securitate" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" -msgstr "Politica de confidențialitate" +msgstr "Politica de Confidențialitate" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Se procesează videoclipul..." @@ -6062,15 +6522,14 @@ msgstr "Se procesează..." msgid "profile" msgstr "profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Profil" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Profil actualizat" @@ -6081,35 +6540,51 @@ msgstr "Public" #: src/view/com/lists/MyLists.tsx:77 msgid "Public, sharable lists of users to mute or block in bulk." -msgstr "" +msgstr "Liste publice, care pot fi partajate, cu utilizatori de amuțit sau blocat în bloc." #: src/view/com/lists/MyLists.tsx:72 msgid "Public, sharable lists which can be used to drive feeds." -msgstr "" +msgstr "Liste publice, care pot fi folosite pentru a dirija fluxuri." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" -msgstr "" +msgstr "Publicați postarea" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" -msgstr "" +msgstr "Publicați postările" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" -msgstr "" +msgstr "Publicați răspunsurile" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" -msgstr "" +msgstr "Publicați răspunsul" + +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "Push" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "Notificări push" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "Push, Toată lumea" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "Push, Persoane pe care le urmăriți" #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" -msgstr "Codul QR a fost copiat în clipboard!" +msgstr "Cod QR copiat în clipboard!" #: src/components/StarterPack/QrCodeDialog.tsx:112 msgid "QR code has been downloaded!" @@ -6117,105 +6592,133 @@ msgstr "Codul QR a fost descărcat!" #: src/components/StarterPack/QrCodeDialog.tsx:113 msgid "QR code saved to your camera roll!" -msgstr "Codul QR a fost salvat în galeria ta foto!" +msgstr "Cod QR salvat în galeria dvs!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 -msgid "Quote post" -msgstr "Citează postarea" +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "Notificări pentru citate" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -msgid "Quote post was re-attached" -msgstr "Citarea postării a fost reatașată" - -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 -msgid "Quote post was successfully detached" -msgstr "Citarea postării a fost detașată cu succes" - -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 #: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 +msgid "Quote post" +msgstr "Citați postarea" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 +msgid "Quote post was re-attached" +msgstr "Postarea citat a fost reatașată" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 +msgid "Quote post was successfully detached" +msgstr "Postarea citat a fost detașată cu succes" + +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" -msgstr "Postările citate sunt dezactivate" +msgstr "Postări citat dezactivate" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" -msgstr "Setări pentru citări" +msgstr "Setări citat" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" -msgstr "Citări" +msgstr "Citate" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" -msgstr "Citărie acestei postări" +msgstr "Citatele acestei postări" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" -msgstr "Aleatoriu (adică „Ruleta postărilor”)" +msgstr "Aleatoriu (adică „Ruleta Postărilor”)" #: src/screens/Settings/components/ChangeHandleDialog.tsx:600 msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." -msgstr "Limită de rată depășită – ai încercat să-ți schimbi numele de utilizator de prea multe ori într-o perioadă scurtă. Te rog să aștepți un minut înainte de a încerca din nou." +msgstr "Limita ratei a fost depășită – ați încercat să vă modificați identificatorul de prea multe ori într-o perioadă scurtă. Vă rugăm să așteptați un minut înainte de a încerca din nou." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" -msgstr "Reatașează citarea" +msgstr "Reatașați citatul" #: src/components/dms/EmojiReactionPicker.tsx:85 msgid "React with {emoji}" -msgstr "" +msgstr "Reacționează cu {emoji}" #: src/screens/Deactivated.tsx:141 msgid "Reactivate your account" -msgstr "Reactivează-ți contul" +msgstr "Reactivați-vă contul" + +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "Citiți încă {0} {1, plural, one {răspuns} few {răspunsuri} other {de răspunsuri}}" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" -msgstr "" +msgstr "Citiți postarea de pe blog" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" -msgstr "" +msgstr "Citiți mai puțin" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" -msgstr "Citește mai mult" +msgstr "Citiți mai multe" + +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "Citiți mai multe răspunsuri" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "Citiți postarea noastră de pe blog" #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" -msgstr "Citește blogul Bluesky" +msgstr "Citiți blogul Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" -msgstr "Citește Politica de Confidențialitate a Bluesky" +msgstr "Citiți Politica de Confidențialitate Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" -msgstr "Citește Termenii și Condițiile de Utilizare ale Bluesky" +msgstr "Citiți Termenii de Serviciu Bluesky" #: src/screens/Takendown.tsx:162 #: src/screens/Takendown.tsx:170 msgid "Reason for appeal" -msgstr "" +msgstr "Motivul contestației" #: src/components/dms/ReportDialog.tsx:212 msgid "Reason:" msgstr "Motiv:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "Primiți notificări în aplicație" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "Primiți notificări push" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" -msgstr "Căutări recente" +msgstr "Căutări Recente" #: src/screens/Search/modules/ExploreRecommendations.tsx:54 msgid "Recommended" @@ -6223,164 +6726,152 @@ msgstr "Recomandat" #: src/screens/Messages/components/MessageListError.tsx:20 msgid "Reconnect" -msgstr "Reconectează-te" +msgstr "Reconectare" #. Reject a chat request, this opens a menu with options #: src/screens/Messages/components/RequestButtons.tsx:124 msgid "Reject" -msgstr "" +msgstr "Respingere" #: src/screens/Messages/components/RequestButtons.tsx:112 msgid "Reject chat request" -msgstr "" +msgstr "Respingere cerere de conversație" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" -msgstr "Reîncarcă conversațiile" +msgstr "Reîncărcați conversațiile" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 #: src/components/dialogs/MutedWords.tsx:438 #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" -msgstr "Elimină" +msgstr "Eliminare" #: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" -msgstr "Elimină {displayName} din pachetul de început" +msgstr "Eliminați pe {displayName} din pachetul de pornire" #: src/screens/Search/components/SearchHistory.tsx:94 msgid "Remove {historyItem}" -msgstr "" +msgstr "Eliminați {historyItem}" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" -msgstr "Elimină contul" +msgstr "Eliminare cont" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" -msgstr "Elimină atașamentul" +msgstr "Eliminare atașament" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" -msgstr "Elimină Avatarul" +msgstr "Eliminare Avatar" #: src/view/com/util/UserBanner.tsx:186 #: src/view/com/util/UserBanner.tsx:189 msgid "Remove Banner" -msgstr "Elimină Bannerul" +msgstr "Eliminare Banner" #: src/screens/Messages/components/MessageInputEmbed.tsx:209 msgid "Remove embed" -msgstr "Elimină încorporarea" +msgstr "Eliminare încorporarea" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" -msgstr "Elimină fluxul" +msgstr "Eliminați fluxul" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" -msgstr "Elimină fluxul?" +msgstr "Eliminați fluxul?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" -msgstr "Elimină din fluxurile mele" +msgstr "Eliminați din fluxurile mele" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" -msgstr "Elimină din acces rapid?" +msgstr "Eliminați din acces rapid?" #: src/screens/List/ListHiddenScreen.tsx:170 #: src/screens/List/ListHiddenScreen.tsx:174 msgid "Remove from saved feeds" -msgstr "Elimină din fluxurile salvate" +msgstr "Eliminați din fluxurile salvate" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" -msgstr "" +msgstr "Eliminați din fluxurile dvs.?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" -msgstr "Elimină imaginea" +msgstr "Eliminare imagine" #: src/components/live/EditLiveDialog.tsx:240 #: src/components/live/EditLiveDialog.tsx:247 msgid "Remove live status" -msgstr "" +msgstr "Eliminare stare în direct" #: src/components/dialogs/MutedWords.tsx:523 msgid "Remove mute word from your list" -msgstr "Elimină cuvântul pus pe mut din lista ta" +msgstr "Eliminați cuvântul amuțit din listele dvs." #: src/screens/Search/components/SearchHistory.tsx:167 msgid "Remove profile" -msgstr "Elimină profilul" +msgstr "Eliminați profilul" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Elimină citarea" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" -msgstr "Elimină redistribuirea" +msgstr "Eliminare repostare" #: src/view/com/composer/videos/SubtitleDialog.tsx:261 msgid "Remove subtitle file" -msgstr "Elimină fișierul cu subtitrări" +msgstr "Eliminare fișier subtitrare" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" -msgstr "Elimină acest flux din fluxurile tale salvate" +msgstr "Eliminați acest flux din fluxurile dvs. salvate" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157 msgid "Remove user from list" -msgstr "" +msgstr "Eliminați utilizatorul din listă" #: src/components/verification/VerificationRemovePrompt.tsx:46 #: src/components/verification/VerificationsDialog.tsx:247 #: src/view/com/profile/ProfileMenu.tsx:336 #: src/view/com/profile/ProfileMenu.tsx:339 msgid "Remove verification" -msgstr "" +msgstr "Eliminați verificarea" #: src/components/verification/VerificationRemovePrompt.tsx:44 msgid "Remove your verification for this account?" -msgstr "" +msgstr "Eliminați verificarea dvs. pentru acest cont?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Eliminat de autor" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" -msgstr "Eliminat de tine" +msgstr "Eliminat de dvs." #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117 #: src/view/com/modals/UserAddRemoveLists.tsx:170 msgid "Removed from list" msgstr "Eliminat din listă" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Eliminat din fluxurile mele" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Eliminat din fluxurile salvate" @@ -6389,106 +6880,113 @@ msgstr "Eliminat din fluxurile salvate" #: src/view/com/posts/FeedShutdownMsg.tsx:44 #: src/view/screens/ProfileList.tsx:392 msgid "Removed from your feeds" -msgstr "Eliminat din fluxurile tale" +msgstr "Eliminat din fluxurile dvs." #: src/components/verification/VerificationRemovePrompt.tsx:32 msgid "Removed verification" -msgstr "" - -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Elimină citarea postării" +msgstr "Verificare eliminată" #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" -msgstr "Înlocuiește cu Descoperă" +msgstr "Înlocuiți cu Descoperă" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Răspunsuri" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" -msgstr "Răspunsurile sunt dezactivate" +msgstr "Răspunsuri dezactivate" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Răspunsurile la această postare sunt dezactivate." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" -msgstr "Răspunde" +msgstr "Răspundeți" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" -msgstr "" +msgstr "Răspundeți ({0, plural, one {# răspuns} few {# răspunsuri} other {# de răspunsuri}})" #: src/components/moderation/ModerationDetailsDialog.tsx:116 #: src/lib/moderation/useModerationCauseDescription.ts:125 msgid "Reply Hidden by Thread Author" -msgstr "Răspuns ascuns de autorul discuției" +msgstr "Răspuns Ascuns de Autorul Firului" #: src/components/moderation/ModerationDetailsDialog.tsx:115 #: src/lib/moderation/useModerationCauseDescription.ts:124 msgid "Reply Hidden by You" -msgstr "Răspuns ascuns de tine" +msgstr "Răspuns Ascuns de Dvs." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "Notificări pentru răspunsuri" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Setări pentru răspunsuri" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" -msgstr "Setările pentru răspunsuri sunt alese de autorul discuției" +msgstr "Setările pentru răspunsuri sunt alese de autorul firului" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" -msgstr "Ordine răspunsuri" +msgstr "Sortare răspunsuri" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 -msgctxt "description" -msgid "Reply to <0><1/>" -msgstr "Răspuns către <0><1/>" - -#: src/view/com/posts/PostFeedItem.tsx:596 -msgctxt "description" -msgid "Reply to a blocked post" -msgstr "Răspuns la o discuție blocată" - -#: src/view/com/posts/PostFeedItem.tsx:598 -msgctxt "description" -msgid "Reply to a post" -msgstr "Răspuns la o discuție" - -#: src/view/com/post/Post.tsx:203 +#: src/view/com/post/Post.tsx:204 #: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" -msgid "Reply to you" -msgstr "Răspuns ție" +msgid "Reply to <0><1/>" +msgstr "Răspuns la <0><1/>" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/view/com/posts/PostFeedItem.tsx:593 +msgctxt "description" +msgid "Reply to a blocked post" +msgstr "Răspuns la o postare blocată" + +#: src/view/com/posts/PostFeedItem.tsx:595 +msgctxt "description" +msgid "Reply to a post" +msgstr "Răspuns la o postare" + +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 +msgctxt "description" +msgid "Reply to you" +msgstr "Răspuns la dvs." + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" -msgstr "Vizibilitatea răspunsului a fost actualizată" +msgstr "Vizibilitatea răspunsului actualizată" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Răspunsul a fost ascuns cu succes" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" -msgstr "Raportează" +msgstr "Raportare" #: src/view/com/profile/ProfileMenu.tsx:403 #: src/view/com/profile/ProfileMenu.tsx:406 msgid "Report account" -msgstr "" +msgstr "Raportare cont" #: src/components/dms/ConvoMenu.tsx:255 #: src/components/dms/ConvoMenu.tsx:258 @@ -6496,36 +6994,36 @@ msgstr "" #: src/screens/Messages/components/RequestButtons.tsx:155 #: src/screens/Messages/components/RequestButtons.tsx:158 msgid "Report conversation" -msgstr "Raportează conversația" +msgstr "Raportați conversația" #: src/components/moderation/ReportDialog/index.tsx:71 #: src/components/moderation/ReportDialog/index.tsx:198 #: src/components/ReportDialog/index.tsx:44 msgid "Report dialog" -msgstr "Raportează fereastra" +msgstr "Dialog raportare" #: src/screens/Profile/components/ProfileFeedHeader.tsx:546 #: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Report feed" -msgstr "Raportează fluxul" +msgstr "Raportați fluxul" #: src/view/screens/ProfileList.tsx:570 msgid "Report list" -msgstr "" +msgstr "Raportare listă" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" -msgstr "Raportează mesajul" +msgstr "Raportare mesaj" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" -msgstr "Raportează postarea" +msgstr "Raportare postare" #: src/screens/StarterPack/StarterPackScreen.tsx:630 #: src/screens/StarterPack/StarterPackScreen.tsx:633 msgid "Report starter pack" -msgstr "Raportează pachetul de început" +msgstr "Raportare pachet de pornire" #: src/components/dms/ReportDialog.tsx:345 msgid "Report submitted" @@ -6533,152 +7031,167 @@ msgstr "Raport trimis" #: src/components/ReportDialog/SelectReportOptionView.tsx:41 msgid "Report this content" -msgstr "Raportează acest conținut" +msgstr "Raportați acest conținut" #: src/components/moderation/ReportDialog/copy.ts:31 #: src/components/ReportDialog/SelectReportOptionView.tsx:54 msgid "Report this feed" -msgstr "Raportează acest flux" +msgstr "Raportați acest flux" #: src/components/moderation/ReportDialog/copy.ts:25 #: src/components/ReportDialog/SelectReportOptionView.tsx:51 msgid "Report this list" -msgstr "Raportează această listă" +msgstr "Raportați această listă" #: src/components/dms/ReportDialog.tsx:59 #: src/components/dms/ReportDialog.tsx:180 #: src/components/moderation/ReportDialog/copy.ts:43 #: src/components/ReportDialog/SelectReportOptionView.tsx:60 msgid "Report this message" -msgstr "Raportează acest mesaj" +msgstr "Raportați acest mesaj" #: src/components/moderation/ReportDialog/copy.ts:19 #: src/components/ReportDialog/SelectReportOptionView.tsx:48 msgid "Report this post" -msgstr "Raportează această postare" +msgstr "Raportați această postare" #: src/components/moderation/ReportDialog/copy.ts:37 #: src/components/ReportDialog/SelectReportOptionView.tsx:57 msgid "Report this starter pack" -msgstr "Raportează acest pachet de început" +msgstr "Raportați acest pachet de pornire" #: src/components/moderation/ReportDialog/copy.ts:13 #: src/components/ReportDialog/SelectReportOptionView.tsx:45 msgid "Report this user" -msgstr "Raportează acest utilizator" +msgstr "Raportați acest utilizator" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" -msgstr "Repostează" - -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Repostează" +msgstr "Repostare" #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" -msgstr "Re-postează ({0, plural, one {# re-postare} few {# re-postări} other {# de re-postări}})" +msgstr "Repostare ({0, plural, one {O repostare} few {# repostări} other {# de repostări}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "Notificări pentru repostări" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" -msgstr "Repostează sau citează postarea" +msgstr "Repostați sau citați postarea" #: src/screens/Post/PostRepostedBy.tsx:38 msgid "Reposted By" -msgstr "Redistribuit de" +msgstr "Repostat De" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" -msgstr "Redistribuit de {0}" +msgstr "Repostat de {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" -msgstr "Redistribuit de <0><1/>" +msgstr "Repostat de <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" -msgstr "Redistribuit de tine" +msgstr "Repostat de dvs." -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "Repostări" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Repostări ale acestei postări" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "Repostări ale repostărilor dvs." + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "Notificări pentru repostări ale repostărilor dvs." #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" -msgstr "Solicită cod" +msgstr "Solicitare Cod" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" -msgstr "Cere text alternativ înainte de a posta" +msgstr "Solicitați text alternativ înainte de a posta" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96 msgid "Require an email code to sign in to your account." -msgstr "Cere un cod pe e-mail pentru a te conecta în contul tău." +msgstr "Solicitați un cod de e-mail pentru a vă conecta la contul dvs." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Necesar pentru acest furnizor" #: src/components/LabelingServiceCard/index.tsx:80 msgid "Required in your region" -msgstr "Necesar în regiunea ta" +msgstr "Necesar în regiunea dvs." #: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40 msgid "Resend" -msgstr "" +msgstr "Retrimitere" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" -msgstr "Retrimite e-mailul" +msgstr "Retrimitere e-mail" #: src/components/intents/VerifyEmailIntentDialog.tsx:130 msgid "Resend Email" -msgstr "Retrimite e-mail" +msgstr "Retrimite E-Mail" #: src/components/intents/VerifyEmailIntentDialog.tsx:122 msgid "Resend Verification Email" -msgstr "Retrimite e-mailul de verificare" +msgstr "Retrimiteți E-Mailul de Verificare" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "Resetați abonamentul de activitate" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" -msgstr "Resetează codul" +msgstr "Resetare Cod" #: src/view/com/modals/ChangePassword.tsx:204 msgid "Reset Code" -msgstr "Resetează Codul" +msgstr "Resetare Cod" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" -msgstr "Resetează starea înscrierii" +msgstr "Resetare stare înregistrare" #: src/screens/Login/ForgotPasswordForm.tsx:80 msgid "Reset password" -msgstr "Resetează parola" +msgstr "Resetați parola" #: src/screens/Login/LoginForm.tsx:324 msgid "Retries signing in" -msgstr "" +msgstr "Reîncearcă conectarea" #: src/view/com/util/error/ErrorMessage.tsx:62 #: src/view/com/util/error/ErrorScreen.tsx:99 @@ -6687,53 +7200,55 @@ msgstr "Reîncearcă ultima acțiune, care a eșuat" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" -msgstr "Reîncearcă" +msgstr "Încercați din nou" #: src/components/moderation/ReportDialog/index.tsx:226 msgid "Retry loading report options" -msgstr "" +msgstr "Reîncercați să încărcați opțiunile de raport" #: src/components/Error.tsx:73 #: src/screens/List/ListHiddenScreen.tsx:219 #: src/screens/StarterPack/StarterPackScreen.tsx:767 msgid "Return to previous page" -msgstr "Înapoi la pagina anterioară" +msgstr "Reveniți la pagina anterioară" #: src/view/screens/NotFound.tsx:61 msgid "Returns to home page" -msgstr "Înapoi la pagina principală" +msgstr "Revine la acasă" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" -msgstr "Înapoi la pagina anterioară" +msgstr "Revine la pagina anterioară" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" -msgstr "Întoarce-te la pasul anterior" +msgstr "Revine la pasul anterior" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,75 +7262,68 @@ msgstr "Întoarce-te la pasul anterior" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" -msgstr "Salvează" +msgstr "Salvare" #: src/view/com/lightbox/ImageViewing/index.tsx:610 #: src/view/com/modals/CreateOrEditList.tsx:323 msgctxt "action" msgid "Save" -msgstr "Salvează" +msgstr "Salvare" #: src/components/dialogs/BirthDateSettings.tsx:115 msgid "Save birthday" -msgstr "Salvează ziua de naștere" +msgstr "Salvați ziua de naștere" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" -msgstr "Salvează modificările" - -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Salvează modificările" +msgstr "Salvare modificări" #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" -msgstr "Salvează imaginea" +msgstr "Salvați imaginea" #: src/view/com/modals/CropImage.web.tsx:104 msgid "Save image crop" -msgstr "Salvează decuparea imaginii" +msgstr "Salvați decuparea imaginii" #: src/screens/Settings/components/ChangeHandleDialog.tsx:248 msgid "Save new handle" -msgstr "Salvează noul nume" +msgstr "Salvați noul identificator" #: src/components/StarterPack/QrCodeDialog.tsx:186 msgid "Save QR code" -msgstr "Salvează codul QR" +msgstr "Salvați codul QR" #: src/screens/Profile/components/ProfileFeedHeader.tsx:320 #: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" -msgstr "Salvează în fluxurile mele" +msgstr "Salvare în fluxurile mele" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" -msgstr "Fluxuri salvate" +msgstr "Fluxuri Salvate" #: src/screens/Profile/components/ProfileFeedHeader.tsx:132 #: src/view/screens/ProfileList.tsx:372 msgid "Saved to your feeds" -msgstr "Salvat în fluxurile tale" - -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Salvează toate modificările profilului tău" +msgstr "Salvat în fluxurile dvs." #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" -msgstr "Salvează setările pentru decuparea imaginii" +msgstr "Salvează setările de decupare a imaginilor" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" -msgstr "Spune salut!" +msgstr "Spuneți salut!" #: src/screens/Onboarding/index.tsx:33 #: src/screens/Onboarding/state.ts:112 @@ -6824,348 +7332,410 @@ msgstr "Știință" #: src/view/screens/ProfileList.tsx:996 msgid "Scroll to top" -msgstr "Derulează în sus" +msgstr "Derulați până sus" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Căutare" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" -msgstr "Caută în postările de la @{0}" +msgstr "Căutați în postările lui @{0}" #: src/components/ProgressGuide/FollowDialog.tsx:683 msgid "Search by name or interest" -msgstr "" +msgstr "Căutare după nume sau interes" #: src/view/screens/Feeds.tsx:444 msgid "Search feeds" -msgstr "" +msgstr "Căutare fluxuri" #: src/components/ProgressGuide/FollowDialog.tsx:524 #: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135 msgid "Search for \"{interestsDisplayName}\"{activeText}" -msgstr "" +msgstr "Căutați „{interestsDisplayName}”{activeText}" #: src/view/shell/desktop/Search.tsx:131 msgid "Search for \"{query}\"" -msgstr "Caută \"{query}\"" +msgstr "Căutați „{query}”" #: src/screens/Search/components/AutocompleteResults.tsx:45 msgid "Search for \"{searchText}\"" -msgstr "Caută \"{searchText}\"" +msgstr "Căutați „{searchText}”" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." -msgstr "Caută fluxuri pe care vrei să le sugerezi altora." +msgstr "Căutați fluxuri pe care doriți să le sugerați altora." #: src/screens/Search/Explore.tsx:360 msgid "Search for more accounts" -msgstr "" +msgstr "Căutați mai multe conturi" #: src/screens/Search/Explore.tsx:437 msgid "Search for more feeds" -msgstr "" +msgstr "Căutați mai multe fluxuri" #: src/screens/Search/Shell.tsx:334 msgid "Search for posts, users, or feeds" -msgstr "Caută postări, utilizatori sau fluxuri" +msgstr "Căutați postări, utilizatori sau fluxuri" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" -msgstr "Caută GIF-uri" +msgstr "Căutați GIF-uri" + +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "Căutarea nu este disponibilă în prezent când sunteți deconectat" #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" -msgstr "Caută în postările mele" +msgstr "Căutați în postările mele" #: src/view/com/profile/ProfileMenu.tsx:263 #: src/view/com/profile/ProfileMenu.tsx:266 msgid "Search posts" -msgstr "" +msgstr "Căutare postări" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" -msgstr "Caută profiluri" +msgstr "Căutați profile" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" -msgstr "Caută pe Tenor" +msgstr "Căutați pe Tenor" #: src/screens/Profile/ProfileSearch.tsx:38 msgid "Search..." -msgstr "Caută..." +msgstr "Căutare..." -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" -msgstr "Căutări pentru profiluri" +msgstr "Cautați profiluri" #: src/components/dialogs/EmailDialog/screens/Update.tsx:243 msgid "Security step required" -msgstr "" - -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" msgstr "Pas de securitate necesar" #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" -msgstr "Vezi postările cu {tag}" +msgstr "Vedeți postările {tag}" #: src/components/RichTextTag.tsx:124 msgid "See {tag} posts by user" -msgstr "" +msgstr "Vedeți postările {tag} de la utilizator" #: src/components/RichTextTag.tsx:118 msgid "See #{tag} posts" -msgstr "Vezi postările cu #{tag}" +msgstr "Vedeți postările #{tag}" #: src/components/RichTextTag.tsx:132 msgid "See #{tag} posts by user" -msgstr "" +msgstr "Vedeți postările #{tag} de la utilizator" #: src/view/com/auth/SplashScreen.web.tsx:178 msgid "See jobs at Bluesky" -msgstr "Vezi joburile la Bluesky" +msgstr "Vedeți locuri de muncă la Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "Vedeți mai multe" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "Vedeți mai multe conturi care v-ar plăcea" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "Vedeți mai multe profiluri sugerate pe pagina Explorare" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" -msgstr "Vezi acest ghid" +msgstr "Vedeți acest ghid" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" -msgstr "Cursor de căutare. Folosește săgețile pentru a căuta în față sau spate, și spațiu pentru a reda/întrerupe" +msgstr "Glisor căutare. Folosiți tastele săgeți pentru a căuta înainte și înapoi și spațiu pentru redare/pauză" + +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "Selectare {0}" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" -msgstr "Selectează o culoare" +msgstr "Selectați o culoare" #: src/screens/Login/ChooseAccountForm.tsx:77 msgid "Select account" -msgstr "Selectează un cont" +msgstr "Selectare cont" #: src/components/AppLanguageDropdown.tsx:60 msgid "Select an app language" -msgstr "" +msgstr "Selectați o limbă pentru aplicație" #: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 msgid "Select an avatar" -msgstr "Selectează un avatar" +msgstr "Selectați un avatar" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" -msgstr "Selectează un emoji" +msgstr "Selectați un emoji" #: src/components/Select/index.tsx:204 msgid "Select an option" -msgstr "" +msgstr "Selectați o opțiune" #: src/screens/Settings/LanguageSettings.tsx:98 msgid "Select app language" -msgstr "" +msgstr "Selectați limba aplicației" #: src/screens/Settings/LanguageSettings.tsx:164 msgid "Select content languages" -msgstr "Selectează limbile pentru conținut" +msgstr "Selectați limbile conținutului" #: src/components/live/GoLiveDialog.tsx:179 msgid "Select duration" -msgstr "" +msgstr "Selectare durată" #: src/screens/Login/index.tsx:144 msgid "Select from an existing account" -msgstr "Selectează dintr-un cont existent" +msgstr "Selectați dintr-un cont existent" #: src/view/com/composer/photos/SelectGifBtn.tsx:35 msgid "Select GIF" -msgstr "Selectează GIF" +msgstr "Selectare GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" -msgstr "Selectează GIF „{0}”" +msgstr "Selectare GIF „{0}”" #: src/components/dialogs/MutedWords.tsx:142 msgid "Select how long to mute this word for." -msgstr "Selectează cât timp să fie pus pe mut acest cuvânt." +msgstr "Selectați pentru cât timp amuțiți acest cuvânt." + +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "Selectați limba" #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." -msgstr "Selectează limba..." +msgstr "Selectare limbă..." #: src/screens/Settings/LanguageSettings.tsx:178 msgid "Select languages" -msgstr "Selectează limbile" +msgstr "Selectați limbile" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" -msgstr "" +msgstr "Selectați serviciul de moderare" #: src/components/ReportDialog/SelectLabelerView.tsx:28 msgid "Select moderator" -msgstr "Selectează un moderator" +msgstr "Selectare moderator" #: src/screens/Settings/LanguageSettings.tsx:131 msgid "Select primary language" -msgstr "" +msgstr "Selectați limba principală" #: src/view/com/composer/videos/SubtitleFilePicker.tsx:59 #: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 msgid "Select subtitle file (.vtt)" -msgstr "Selectează fișierul de subtitrări (.vtt)" +msgstr "Selectați fișierul subtitrare (.vtt)" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83 msgid "Select the {emojiName} emoji as your avatar" -msgstr "Selectează emoji-ul {emojiName} ca avatar" +msgstr "Selectați emoji-ul {emojiName} ca avatar" #: src/components/ReportDialog/SubmitView.tsx:141 msgid "Select the moderation service(s) to report to" -msgstr "Selectează serviciul(e) de moderare către care să raportezi" +msgstr "Selectați serviciul (serviciile) de moderare la care să vă raportați" #: src/view/com/composer/videos/SelectVideoBtn.tsx:74 msgid "Select video" -msgstr "Selectează videoclipul" +msgstr "Selectare videoclip" #: src/components/dialogs/MutedWords.tsx:242 msgid "Select what content this mute word should apply to." -msgstr "Selectează pentru ce conținut să se aplice acest cuvânt pus pe mut." +msgstr "Selectați la ce conținut ar trebui să se aplice acest cuvânt amuțit." #: src/screens/Settings/LanguageSettings.tsx:91 msgid "Select which language to use for the app's user interface." -msgstr "" +msgstr "Selectați ce limbă să utilizați pentru interfața de utilizator a aplicației." #: src/screens/Settings/LanguageSettings.tsx:157 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." -msgstr "Selectează limbile pe care vrei să le includă fluxurile tale abonate. Dacă nu sunt selectate limbi, toate limbile vor fi afișate." +msgstr "Selectați limbile pe care doriți ca fluxurile dvs. abonate să le includă. Dacă nu selectați nimic, toate limbile vor fi afișate." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" -msgstr "Selectează data nașterii tale" +msgstr "Selectați-vă data de naștere" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" -msgstr "Selectează-ți interesele din opțiunile de mai jos" +msgstr "Selectați interesele dvs. din opțiunile de mai jos" #: src/screens/Settings/LanguageSettings.tsx:124 msgid "Select your preferred language for translations in your feed." -msgstr "Selectează limba preferată pentru traduceri în fluxul tău." +msgstr "Selectați limba preferată pentru traduceri în flux." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "Selectați canalele de notificare preferate" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" -msgstr "" +msgstr "Selectează opțiunea {0} din {numItems}" #: src/components/dms/ChatEmptyPill.tsx:38 msgid "Send a neat website!" -msgstr "Trimite un site tare!" - -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Trimite e-mailul de confirmare" +msgstr "Trimite un web site frumos!" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" -msgstr "Trimite e-mailul" +msgstr "Trimitere e-mail" #: src/view/com/modals/DeleteAccount.tsx:158 msgctxt "action" msgid "Send Email" -msgstr "Trimite e-mail" +msgstr "Trimitere E-Mail" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" -msgstr "Trimite feedback" +msgstr "Trimiteți feedback" #: src/screens/Messages/components/MessageInput.tsx:192 #: src/screens/Messages/components/MessageInput.web.tsx:235 msgid "Send message" -msgstr "Trimite mesajul" +msgstr "Trimitere mesaj" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" -msgstr "" +msgstr "Trimitere postare către {name}" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." -msgstr "Trimite postarea către..." +msgstr "Trimitere postare către..." #: src/components/dms/ReportDialog.tsx:271 #: src/components/dms/ReportDialog.tsx:274 #: src/components/ReportDialog/SubmitView.tsx:221 #: src/components/ReportDialog/SubmitView.tsx:225 msgid "Send report" -msgstr "Trimite raportul" +msgstr "Trimitere raport" #: src/components/ReportDialog/SelectLabelerView.tsx:42 msgid "Send report to {0}" -msgstr "Trimite raportul către {0}" +msgstr "Trimitere raport către {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" -msgstr "" +msgstr "Trimitere raport către {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" -msgstr "Trimite e-mailul de verificare" +msgstr "Trimitere e-mail de verificare" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" -msgstr "Trimite prin mesaj direct" +msgstr "Trimitere prin mesaj direct" #: src/view/com/modals/DeleteAccount.tsx:147 msgid "Sends email with confirmation code for account deletion" -msgstr "Trimite un e-mail cu codul de confirmare pentru ștergerea contului" +msgstr "Trimite e-mail cu codul de confirmare pentru ștergerea contului" #: src/view/com/auth/server-input/index.tsx:167 msgid "Server address" -msgstr "Adresa serverului" +msgstr "Adresă server" #: src/screens/Settings/AppIconSettings/index.tsx:178 msgid "Set app icon to {0}" -msgstr "Setează pictograma aplicației la {0}" +msgstr "Setați pictograma aplicației la {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" -msgstr "Setează data nașterii" +msgstr "Setați data nașterii" #: src/screens/Login/SetNewPasswordForm.tsx:106 msgid "Set new password" -msgstr "Setează o parolă nouă" +msgstr "Setați parola nouă" #: src/screens/Onboarding/Layout.tsx:47 msgid "Set up your account" -msgstr "Configurează-ți contul" +msgstr "Configurați-vă contul" #: src/screens/Login/ForgotPasswordForm.tsx:107 msgid "Sets email for password reset" msgstr "Setează e-mailul pentru resetarea parolei" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Setări" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "Setări pentru activitate de la alții" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "Setări pentru a permite celorlalți să fie notificați despre postările dvs." + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "Setări pentru notificări de aprecieri" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "Setări pentru notificări de mențiuni" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "Setări pentru notificări de urmăritor nou" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "Setări pentru notificări pentru orice altceva" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "Setări pentru notificări de aprecieri ale repostărilor dvs." + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "Setări pentru notificări de repostări ale repostărilor dvs." + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "Setări pentru notificări de citate" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "Setări pentru notificări de răspuns" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "Setări pentru notificări de repostare" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7177,7 +7747,7 @@ msgstr "Activitate sexuală sau nuditate erotică." #: src/lib/moderation/useGlobalLabelStrings.ts:38 msgid "Sexually Suggestive" -msgstr "Sugestiv sexual" +msgstr "Sugestiv Sexual" #: src/components/StarterPack/QrCodeDialog.tsx:182 #: src/screens/Hashtag.tsx:126 @@ -7185,98 +7755,89 @@ msgstr "Sugestiv sexual" #: src/screens/Topic.tsx:102 #: src/view/screens/ProfileList.tsx:513 msgid "Share" -msgstr "Distribuie" +msgstr "Distribuiți" #: src/view/com/lightbox/ImageViewing/index.tsx:619 msgctxt "action" msgid "Share" -msgstr "Distribuie" +msgstr "Distribuiți" #: src/components/dms/ChatEmptyPill.tsx:37 msgid "Share a cool story!" -msgstr "Împărtășește o poveste tare!" +msgstr "Împărtășiți o poveste grozavă!" #: src/components/dms/ChatEmptyPill.tsx:36 msgid "Share a fun fact!" -msgstr "Împărtășește un fapt interesant!" +msgstr "Împărtășiți un fapt distractiv!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" -msgstr "Împărtășește oricum" +msgstr "Distribuiți oricum" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" -msgstr "" +msgstr "Partajare DID autor" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" -msgstr "Împărtășește linkul" - -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Împărtășește Linkul" +msgstr "Distribuiți link-ul" #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" -msgstr "Fereastră pentru împărtășirea linkului" +msgstr "Dialogul de distribuire link" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" -msgstr "" +msgstr "Distribuiți postarea at:// URI" #: src/components/StarterPack/ShareDialog.tsx:115 #: src/components/StarterPack/ShareDialog.tsx:126 msgid "Share QR code" -msgstr "Împărtășește codul QR" +msgstr "Distribuiți codul QR" #: src/screens/Profile/components/ProfileFeedHeader.tsx:474 msgid "Share this feed" -msgstr "Partajează acest flux" +msgstr "Distribuiți acest flux" #: src/screens/StarterPack/StarterPackScreen.tsx:426 msgid "Share this starter pack" -msgstr "Împărtășește acest pachet de început" +msgstr "Distribuiți acest pachet de pornire" #: src/components/StarterPack/ShareDialog.tsx:80 msgid "Share this starter pack and help people join your community on Bluesky." -msgstr "Împărtășește acest pachet de început și ajută oamenii să se alăture comunității tale pe Bluesky." +msgstr "Distribuiți acest pachet de pornire și ajutați oamenii să se alăture comunității dvs. pe Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 #: src/view/com/profile/ProfileMenu.tsx:256 msgid "Share via..." -msgstr "" +msgstr "Partajare via..." #: src/components/dms/ChatEmptyPill.tsx:34 msgid "Share your favorite feed!" -msgstr "Împărtășește fluxul tău preferat!" +msgstr "Partajați-vă fluxurile favorite!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" -msgstr "Tester pentru Preferințe Partajate" +msgstr "Tester Preferințe Partajate" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Împărtășește site-ul linkat" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" -msgstr "Arată" +msgstr "Afișare" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" -msgstr "Arată textul alternativ" +msgstr "Afișare text alternativ" #: src/components/moderation/ScreenHider.tsx:172 #: src/components/moderation/ScreenHider.tsx:175 @@ -7284,202 +7845,216 @@ msgstr "Arată textul alternativ" #: src/screens/VideoFeed/index.tsx:628 #: src/screens/VideoFeed/index.tsx:634 msgid "Show anyway" -msgstr "Arată oricum" +msgstr "Afișați oricum" #: src/lib/moderation/useLabelBehaviorDescription.ts:27 #: src/lib/moderation/useLabelBehaviorDescription.ts:63 msgid "Show badge" -msgstr "Arată insigna" +msgstr "Afișare insignă" #: src/lib/moderation/useLabelBehaviorDescription.ts:61 msgid "Show badge and filter from feeds" -msgstr "Arată insigna și filtrează din fluxuri" +msgstr "Afișează insigna și filtrează din fluxuri" #: src/components/dialogs/Embed.tsx:129 msgid "Show customization options" -msgstr "" +msgstr "Afișare opțiuni de personalizare" #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show hidden replies" -msgstr "Arată răspunsurile ascunse" +msgstr "Afișați răspunsurile ascunse" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" -msgstr "Arată mai puține de acest tip" +msgstr "Afișați mai puține asemănătoare" #: src/screens/List/ListHiddenScreen.tsx:186 msgid "Show list anyway" -msgstr "Arată lista oricum" +msgstr "Afișați lista oricum" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" -msgstr "Arată mai mult" +msgstr "Afișați mai multe" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" -msgstr "Arată mai multe de acest tip" +msgstr "Afișați mai multe asemănătoare" + +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "Afișați mai multe răspunsuri" #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" -msgstr "Arată răspunsurile puse pe mut" +msgstr "Afișați răspunsurile amuțite" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "Afișați răspunsurile postării într-o vizualizare de tip arbore cu fire" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" -msgstr "Arată citările postării" +msgstr "Afișați postări citat" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" -msgstr "Arată răspunsurile" +msgstr "Afișați răspunsurile" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" -msgstr "Arată răspunsurile ca" +msgstr "Afișați răspunsurile ca" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" -msgstr "" +msgstr "Afișați răspunsurile ca fire" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" -msgstr "Arată răspunsurile de la persoanele pe care le urmărești înaintea celorlalte răspunsuri" +msgstr "Afișați răspunsurile persoanelor pe care le urmăriți înaintea tuturor celorlalte răspunsuri" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" -msgstr "Arată răspunsul pentru toată lumea" +msgstr "Afișați răspunsul pentru toată lumea" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" -msgstr "Arată repostările" +msgstr "Afișați repostările" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" -msgstr "Arată mostre din fluxurile tale salvate în fluxul Urmărit" +msgstr "Afișați mostre din fluxurile dvs. salvate în fluxul Urmăriți" #: src/lib/moderation/useLabelBehaviorDescription.ts:58 msgid "Show warning" -msgstr "Arată avertizarea" +msgstr "Afișare avertisment" #: src/lib/moderation/useLabelBehaviorDescription.ts:56 msgid "Show warning and filter from feeds" -msgstr "Arată avertizarea și filtrează din fluxuri" +msgstr "Afișează avertismente și filtrează din fluxuri" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" -msgstr "" +msgstr "Afișează informații despre când a fost creată această postare" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" -msgstr "" +msgstr "Afișează alte conturi la care vă puteți comuta" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" -msgstr "Arată conținutul" +msgstr "Afișează conținutul" #: src/components/dialogs/Signin.tsx:97 #: src/components/dialogs/Signin.tsx:99 #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" -msgstr "Conectează-te" +msgstr "Conectați-vă" #: src/components/AccountList.tsx:129 msgid "Sign in as {0}" -msgstr "Conectează-te ca {0}" +msgstr "Conectați-vă ca {0}" #: src/screens/Login/ChooseAccountForm.tsx:80 msgid "Sign in as..." -msgstr "Conectează-te ca..." +msgstr "Conectați-vă ca..." #: src/screens/Deactivated.tsx:203 #: src/screens/Deactivated.tsx:209 msgid "Sign in or create an account" -msgstr "" +msgstr "Conectați-vă sau creați un cont" #: src/components/dialogs/Signin.tsx:75 msgid "Sign in or create your account to join the conversation!" -msgstr "Conectează-te sau creează-ți un cont pentru a te alătura conversației!" +msgstr "Conectați-vă sau creați-vă un cont pentru a vă alătura conversației!" #: src/components/AccountList.tsx:68 msgid "Sign in to account that is not listed" -msgstr "" +msgstr "Conectați-vă la un cont care nu este listat" #: src/components/dialogs/Signin.tsx:46 msgid "Sign in to Bluesky or create a new account" -msgstr "Conectează-te pe Bluesky sau creează un cont nou" +msgstr "Conectați-vă la Bluesky sau creați un cont nou" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "Conectați-vă pentru a vizualiza postarea" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" -msgstr "Deconectează-te" +msgstr "Deconectare" #: src/screens/Takendown.tsx:88 msgid "Sign Out" msgstr "Deconectare" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" -msgstr "Deconectează-te?" +msgstr "Deconectare?" #: src/components/moderation/ScreenHider.tsx:91 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" -msgstr "Autentificare necesară" +msgstr "Conectare Necesară" #: src/lib/hooks/useAccountSwitcher.ts:41 #: src/screens/Login/ChooseAccountForm.tsx:53 msgid "Signed in as @{0}" -msgstr "Autentificat ca @{0}" +msgstr "Conectat ca @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Conturi similare" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" -msgstr "Omite" +msgstr "Omitere" #: src/screens/Onboarding/StepInterests/index.tsx:228 msgid "Skip this flow" -msgstr "Omite acest proces" +msgstr "Omiteți acest proces" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Mai mic" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" -msgstr "" +msgstr "Amânare memento" #: src/screens/Onboarding/index.tsx:37 #: src/screens/Onboarding/state.ts:100 @@ -7488,78 +8063,85 @@ msgstr "Dezvoltare Software" #: src/components/verification/VerificationsDialog.tsx:120 msgid "Some of your verifications are invalid." -msgstr "" +msgstr "Unele dintre verificările dvs. sunt invalide." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" -msgstr "Alte fluxuri care ți-ar putea plăcea" +msgstr "Alte fluxuri care v-ar putea plăcea" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" -msgstr "Doar anumite persoane pot răspunde" +msgstr "Unele persoane pot răspunde" #: src/components/dms/MessageItem.tsx:148 msgid "Someone reacted {0}" -msgstr "" +msgstr "Cineva a reacționat cu {0}" #: src/screens/Messages/components/ChatListItem.tsx:241 msgid "Someone reacted {0} to {1}" -msgstr "" +msgstr "Cineva a reacționat cu {0} la {1}" #: src/components/moderation/ReportDialog/index.tsx:76 msgid "Something wasn't quite right with the data you're trying to report. Please contact support." -msgstr "" +msgstr "Ceva nu a fost în regulă cu datele pe care încercați să le raportați. Vă rugăm să contactați asistența." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Ceva nu a mers bine" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 msgid "Something went wrong, please try again" -msgstr "Ceva nu a mers bine, te rog încearcă din nou" +msgstr "Ceva n-a mers bine, vă rugăm să încercați din nou" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." -msgstr "Ceva nu a mers bine, te rog încearcă din nou." +msgstr "Ceva nu a mers bine, vă rugăm să încercați din nou." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Ceva nu a mers bine!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "Ceva nu a mers bine, vă rugăm încercați din nou." + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." -msgstr "" +msgstr "Ceva n-a mers bine. Vă rugăm să încercați din nou." #: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Something wrong? Let us know." -msgstr "E ceva în neregulă? Anunță-ne." +msgstr "E ceva în neregulă? Anunțați-ne." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." -msgstr "Ne pare rău! Sesiunea ta a expirat. Te rog să te conectezi din nou." +msgstr "Ne pare rău! Sesiunea dvs. a expirat. Vă rugăm să vă conectați din nou." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" -msgstr "Sortează răspunsurile" +msgstr "Sortare răspunsuri" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" -msgstr "Sortează răspunsurile după" +msgstr "Sortare răspunsuri după" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" -msgstr "Sortează răspunsurile la aceeași postare după:" +msgstr "Sortați răspunsurile la aceeași postare după:" #: src/components/moderation/LabelsOnMeDialog.tsx:178 #: src/components/moderation/ModerationDetailsDialog.tsx:186 msgid "Source: <0>{sourceName}" -msgstr "Sursă: <0>{sourceName}" +msgstr "Sursa: <0>{sourceName}" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:72 #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:85 @@ -7579,215 +8161,237 @@ msgstr "Spam; mențiuni sau răspunsuri excesive" msgid "Sports" msgstr "Sport" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." -msgstr "" +msgstr "Începeți o conversație și ea va apărea aici." #: src/components/dms/dialogs/NewChatDialog.tsx:74 msgid "Start a new chat" -msgstr "Începe o nouă conversație" +msgstr "Începeți o conversație nouă" #: src/view/screens/ProfileList.tsx:846 #: src/view/screens/ProfileList.tsx:967 msgid "Start adding people" -msgstr "Începe să adaugi persoane" +msgstr "Începeți să adaugați persoane" #: src/view/screens/ProfileList.tsx:853 #: src/view/screens/ProfileList.tsx:974 msgid "Start adding people!" -msgstr "Începe să adaugi persoane!" +msgstr "Începeți să adaugați persoane!" #: src/components/dialogs/SearchablePeopleList.tsx:382 msgid "Start chat with {displayName}" -msgstr "Începe o conversație cu {displayName}" +msgstr "Începeți conversația cu {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" -msgstr "Pachet de început" +msgstr "Pachet de Pornire" #: src/components/StarterPack/StarterPackCard.tsx:90 msgid "Starter pack by {0}" -msgstr "Pachet de început de la {0}" +msgstr "Pachet de pornire de {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" -msgstr "Pachet de început de la <0/>" +msgstr "Pachet de pornire de <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" -msgstr "Pachet de început de la tine" +msgstr "Pachet de pornire de dvs." #: src/screens/StarterPack/StarterPackScreen.tsx:731 msgid "Starter pack is invalid" -msgstr "Pachetul de început este invalid" +msgstr "Pachetul de pornire nu este valid" #: src/screens/Search/Explore.tsx:628 #: src/view/screens/Profile.tsx:231 msgid "Starter Packs" -msgstr "Pachete de început" +msgstr "Pachete de Pornire" #: src/components/StarterPack/ProfileStarterPacks.tsx:266 msgid "Starter packs let you easily share your favorite feeds and people with your friends." -msgstr "Pachetele de început îți permit să îți împărtășești ușor fluxurile și persoanele preferate cu prietenii tăi." +msgstr "Pachetele de pornire vă permit să partajați cu ușurință fluxurile și persoanele preferate cu prietenii dvs." #: src/screens/Settings/AboutSettings.tsx:100 #: src/screens/Settings/AboutSettings.tsx:103 msgid "Status Page" -msgstr "Pagină de Status" +msgstr "Pagina de Stare" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Pasul {0} din {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." -msgstr "Stocarea a fost curățată, trebuie să repornești aplicația acum." +msgstr "Spațiu de stocare curățat, trebuie să reporniți aplicația acum." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Povestiri" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 #: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Submit" -msgstr "Trimite" +msgstr "Trimitere" #: src/screens/Takendown.tsx:70 msgid "Submit appeal" -msgstr "" +msgstr "Depuneți contestație" #: src/screens/Takendown.tsx:76 msgid "Submit Appeal" -msgstr "" +msgstr "Depuneți Contestație" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" -msgstr "" +msgstr "Trimiteți raportul" #: src/view/screens/ProfileList.tsx:741 msgid "Subscribe" -msgstr "Abonează-te" +msgstr "Abonare" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" -msgstr "Abonează-te la @{0} pentru a folosi aceste etichete:" +msgstr "Abonați-vă la @{0} pentru a utiliza aceste etichete:" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "Abonați-vă la activitatea contului" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" -msgstr "Abonează-te la etichetator" +msgstr "Abonați-vă la Etichetator" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201 msgid "Subscribe to this labeler" -msgstr "Abonează-te la acest etichetator" +msgstr "Abonează-vă la acest etichetator" #: src/view/screens/ProfileList.tsx:737 msgid "Subscribe to this list" -msgstr "Abonează-te la această listă" +msgstr "Abonați-vă la această listă" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "Succes" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Succes!" #: src/components/verification/VerificationCreatePrompt.tsx:36 msgid "Successfully verified" -msgstr "" +msgstr "Verificat cu succes" #: src/screens/Search/Explore.tsx:357 msgid "Suggested Accounts" -msgstr "" +msgstr "Conturi Sugerate" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" -msgstr "Sugerat pentru tine" +msgstr "Sugerat pentru dvs." #: src/view/com/composer/labels/LabelsBtn.tsx:144 #: src/view/com/composer/labels/LabelsBtn.tsx:147 msgid "Suggestive" msgstr "Sugestiv" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" -msgstr "" +msgstr "Răsărit" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" -msgstr "" +msgstr "Apus de soare" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Suport" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" -msgstr "Schimbă contul" +msgstr "Comutare cont" #: src/components/dialogs/SwitchAccount.tsx:46 #: src/components/dialogs/SwitchAccount.tsx:49 msgid "Switch Account" -msgstr "Schimbă Contul" +msgstr "Comutare Cont" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" -msgstr "" +msgstr "Comutare conturi" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" -msgstr "" +msgstr "Comutați la {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Sistem" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" -msgstr "Jurnal sistem" +msgstr "Jurnal de sistem" #: src/components/dialogs/MutedWords.tsx:282 msgid "Tags only" msgstr "Doar etichete" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "Atingeți pentru informații" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "Atingeți pentru mai multe informații" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "Atingeți pentru a confirma că înțelegeți și sunteți de acord cu aceste actualizări și pentru a continua să utilizați Bluesky" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 msgid "Tap to close context menu" -msgstr "" +msgstr "Atingeți pentru a închide meniul contextual" #: src/components/ProgressGuide/Toast.tsx:156 msgid "Tap to dismiss" -msgstr "Atinge pentru a închide" +msgstr "Atingeți pentru a închide" #: src/state/shell/progress-guide.tsx:233 msgid "Task complete - 10 follows!" -msgstr "Sarcină completă – 10 urmăriri!" +msgstr "Sarcină completă - 10 urmăriri!" #: src/state/shell/progress-guide.tsx:223 msgid "Task complete - 10 likes!" -msgstr "Sarcina completă - 10 aprecieri!" +msgstr "Sarcină completă - 10 aprecieri!" #: src/components/ProgressGuide/List.tsx:64 msgid "Teach our algorithm what you like" -msgstr "Învață algoritmul nostru ce îți place" +msgstr "Învățați algoritmul ce vă place" #: src/screens/Onboarding/index.tsx:36 #: src/screens/Onboarding/state.ts:114 @@ -7796,29 +8400,31 @@ msgstr "Tehnologie" #: src/components/dms/ChatEmptyPill.tsx:35 msgid "Tell a joke!" -msgstr "Spune o glumă!" +msgstr "Spuneți o glumă!" #: src/screens/Profile/Header/EditProfileDialog.tsx:377 msgid "Tell us a bit about yourself" -msgstr "Spune-ne puțin despre tine" +msgstr "Spuneți-ne un pic despre dvs." #: src/screens/StarterPack/Wizard/StepDetails.tsx:69 msgid "Tell us a little more" -msgstr "Spune-ne mai multe" +msgstr "Spuneți-ne un pic mai mult" #: src/view/shell/desktop/RightNav.tsx:116 #: src/view/shell/desktop/RightNav.tsx:117 msgid "Terms" msgstr "Termeni" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" -msgstr "Termeni de utilizare" +msgstr "Termenii de Serviciu" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:60 #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:99 @@ -7833,7 +8439,7 @@ msgstr "Termenii folosiți încalcă standardele comunității" #: src/components/dialogs/MutedWords.tsx:266 msgid "Text & tags" -msgstr "Text și etichete" +msgstr "Text & etichete" #: src/components/dms/ReportDialog.tsx:229 msgid "Text field" @@ -7842,53 +8448,49 @@ msgstr "Câmp text" #: src/components/moderation/LabelsOnMeDialog.tsx:288 #: src/screens/Messages/components/ChatDisabled.tsx:108 msgid "Text input field" -msgstr "Câmp de introducere text" +msgstr "Câmp introducere text" #: src/view/com/posts/ShowLessFollowup.tsx:39 msgid "Thank you for your feedback! It has been sent to the feed operator." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Mulțumim! E-mailul tău a fost verificat cu succes." +msgstr "Vă mulțumim pentru feedback! Acesta a fost trimis operatorului fluxului." #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." -msgstr "Mulțumim. Raportul tău a fost trimis." +msgstr "Vă mulțumim. Raportul dvs. a fost trimis." #: src/components/intents/VerifyEmailIntentDialog.tsx:82 msgid "Thanks, you have successfully verified your email address. You can close this dialog." -msgstr "Mulțumim, ți-ai verificat cu succes adresa de e-mail. Poți închide această fereastră." +msgstr "Vă mulțumim, v-ați verificat cu succes adresa de e-mail. Puteți închide această fereastră." #: src/screens/Settings/components/ChangeHandleDialog.tsx:487 msgid "That contains the following:" msgstr "Acesta conține următoarele:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Acest nume de utilizator este deja folosit." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." -msgstr "Acest pachet de început nu a putut fi găsit." +msgstr "Acest pachet de pornire nu a putut fi găsit." + +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "Acel nume de utilizator este deja luat" #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" -msgstr "Asta-i tot, prieteni!" +msgstr "Asta-i tot, oameni buni!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" -msgstr "Asta-i tot!" +msgstr "Asta e tot!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." -msgstr "Contul va putea interacționa cu tine după deblocare." +msgstr "Contul va putea interacționa cu dvs. după deblocare." #: src/screens/Settings/AppIconSettings/index.tsx:41 #: src/screens/Settings/AppIconSettings/index.tsx:222 @@ -7898,19 +8500,19 @@ msgstr "Aplicația va fi repornită" #: src/components/moderation/ModerationDetailsDialog.tsx:119 #: src/lib/moderation/useModerationCauseDescription.ts:128 msgid "The author of this thread has hidden this reply." -msgstr "Autorul acestei discuții a ascuns acest răspuns." +msgstr "Autorul acestui fir a ascuns acest răspuns." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Aplicația web Bluesky" #: src/view/screens/CommunityGuidelines.tsx:38 msgid "The Community Guidelines have been moved to <0/>" -msgstr "Regulile comunității au fost mutate la <0/>" +msgstr "Regulile Comunității au fost mutate la <0/>" #: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" -msgstr "Politica de drepturi de autor a fost mutată la <0/>" +msgstr "Politica Privind Drepturile de Autor a fost mutată la <0/>" #: src/view/com/posts/FeedShutdownMsg.tsx:102 msgid "The Discover feed" @@ -7918,15 +8520,11 @@ msgstr "Fluxul Descoperă" #: src/state/shell/progress-guide.tsx:224 msgid "The Discover feed now knows what you like" -msgstr "Fluxul Descoperă știe acum ce îți place" - -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "" +msgstr "Fluxul Descoperă știe acum ce vă place" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." -msgstr "Experiența este mai bună în aplicație. Descarcă Bluesky acum și vom continua de unde ai rămas." +msgstr "Experiența este mai bună în aplicație. Descărcați Bluesky acum și vom continua de unde ați rămas." #: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." @@ -7934,127 +8532,131 @@ msgstr "Fluxul a fost înlocuit cu Descoperă." #: src/components/moderation/LabelsOnMeDialog.tsx:59 msgid "The following labels were applied to your account." -msgstr "Următoarele etichete au fost aplicate contului tău." +msgstr "Următoarele etichete au fost aplicate contului dvs." #: src/components/moderation/LabelsOnMeDialog.tsx:60 msgid "The following labels were applied to your content." -msgstr "Următoarele etichete au fost aplicate conținutului tău." +msgstr "Următoarele etichete au fost aplicate conținutului dvs." #: src/screens/ModerationInteractionSettings/index.tsx:42 msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." -msgstr "" +msgstr "Următoarele setări vor fi utilizate ca valori implicite atunci când creați postări noi. Le puteți edita pentru o anumită postare de la compozitor." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "Legislația din regiunea dvs. necesită verificarea vârstei pentru a accesa anumite caracteristici Bluesky, cum ar fi conținutul pentru adulți sau conversațiile." + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "Legislația din regiunea dvs. necesită verificarea vârstei pentru a accesa unele caracteristici. Atingeți pentru a afla mai multe." + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." -msgstr "Postarea poate că a fost ștearsă." +msgstr "Este posibil ca postarea să fi fost ștearsă." #: src/view/screens/PrivacyPolicy.tsx:35 msgid "The Privacy Policy has been moved to <0/>" msgstr "Politica de Confidențialitate a fost mutată la <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "Videoclipul selectat este mai mare de 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "Videoclipul selectat este mai mare de 100 MB. Vă rugăm să încercați din nou cu un fișier mai mic." #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 msgid "The server appears to be experiencing issues. Please try again in a few moments." -msgstr "Se pare că serverul întâmpină probleme. Te rog încearcă din nou în câteva momente." +msgstr "Serverul pare să întâmpine probleme. Vă rugăm să încercați din nou în câteva momente." #: src/screens/StarterPack/StarterPackScreen.tsx:741 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." -msgstr "Pachetul de început pe care încerci să îl vizualizezi este invalid. Poți șterge acest pachet de start." +msgstr "Pachetul de pornire pe care încercați să îl vizualizați este nevalid. În schimb, puteți șterge acest pachet de pornire." #: src/components/ContextMenu/index.tsx:433 msgid "The subject of the context menu" -msgstr "" +msgstr "Subiectul meniului contextul" #: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." -msgstr "Formularul de suport a fost mutat. Dacă ai nevoie de ajutor, te rugăm <0/> sau vizitează {HELP_DESK_URL} pentru a lua legătura cu noi." +msgstr "Formularul de suport a fost mutat. Dacă aveți nevoie de ajutor, vă rugăm să <0/> sau vizitați {HELP_DESK_URL} pentru a lua legătura cu noi." #: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" -msgstr "Termenii de utilizare au fost mutați la" +msgstr "Termenii de Serviciului au fost mutați la" #: src/components/intents/VerifyEmailIntentDialog.tsx:94 msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." -msgstr "Codul de verificare furnizat este invalid. Te rog să te asiguri că ai folosit linkul corect de verificare sau solicită unul nou." +msgstr "Codul de verificare pe care l-ați furnizat este nevalid. Asigurați-vă că ați folosit linkul de verificare corect sau solicitați unul nou." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Temă" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 msgid "There is no time limit for account deactivation, come back any time." -msgstr "Nu există un termen limită pentru dezactivarea contului, te poți întoarce oricând." +msgstr "Nu există limită de timp pentru dezactivarea contului, puteți revenii oricând." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "A apărut o problemă la conectarea la Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" -msgstr "A apărut o problemă la contactarea serverului." +msgstr "A apărut o problemă la contactarea serverului" #: src/screens/Profile/components/ProfileFeedHeader.tsx:418 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 msgid "There was an issue contacting the server, please check your internet connection and try again." -msgstr "A apărut o problemă la contactarea serverului, verifică conexiunea la internet și încearcă din nou." +msgstr "A apărut o problemă la contactarea serverului, vă rugăm să vă verificați conexiunea la internet și încercați din nou." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "A apărut o problemă la contactarea serverului tău." - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." -msgstr "A apărut o problemă la preluarea notificărilor. Apăsați aici pentru a încerca din nou." +msgstr "A apărut o problemă la preluarea notificărilor. Atingeți aici pentru a încerca din nou." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." -msgstr "A apărut o problemă la preluarea postărilor. Apăsați aici pentru a încerca din nou." +msgstr "A apărut o problemă la preluarea postărilor. Atingeți aici pentru a încerca din nou." #: src/view/com/lists/ListMembers.tsx:151 msgid "There was an issue fetching the list. Tap here to try again." -msgstr "A apărut o problemă la preluarea listei. Apăsați aici pentru a încerca din nou." +msgstr "A apărut o problemă la preluarea listei. Atingeți aici pentru a încerca din nou." #: src/screens/Settings/AppPasswords.tsx:60 msgid "There was an issue fetching your app passwords" -msgstr "A apărut o problemă la preluarea parolelor pentru aplicații." +msgstr "A apărut o problemă la preluarea parolelor aplicației dvs." #: src/view/com/feeds/ProfileFeedgens.tsx:151 #: src/view/com/lists/ProfileLists.tsx:150 msgid "There was an issue fetching your lists. Tap here to try again." -msgstr "A apărut o problemă la preluarea listelor tale. Apasă aici pentru a încerca din nou." +msgstr "A apărut o problemă la preluarea listelor dvs. Atingeți aici pentru a încerca din nou." #: src/screens/Settings/components/ChangeHandleDialog.tsx:107 msgid "There was an issue fetching your service info" -msgstr "A apărut o problemă la preluarea informațiilor despre serviciul tău." +msgstr "A apărut o problemă la preluarea informațiilor dvs. de serviciu" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." -msgstr "A apărut o problemă la eliminarea acestui flux. Verifică conexiunea la internet și încearcă din nou." +msgstr "A apărut o problemă la eliminarea acestui flux. Vă rugăm să vă verificați conexiunea la internet și să încercați din nou." #: src/components/dms/ReportDialog.tsx:259 #: src/components/ReportDialog/SubmitView.tsx:88 msgid "There was an issue sending your report. Please check your internet connection." -msgstr "A apărut o problemă la trimiterea raportului. Verifică conexiunea la internet." +msgstr "A apărut o problemă la trimiterea raportului dvs. Vă rugăm să vă verificați conexiunea la internet." #: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:71 msgid "There was an issue updating your feeds, please check your internet connection and try again." -msgstr "A apărut o problemă la actualizarea fluxurilor tale, verifică conexiunea la internet și încearcă din nou." +msgstr "A apărut o problemă la actualizarea fluxurilor dvs., vă rugăm să vă verificați conexiunea la internet și să încercați din nou." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "A apărut o problemă la actualizarea fluxurilor tale, verifică conexiu msgid "There was an issue! {0}" msgstr "A apărut o problemă! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8078,52 +8680,52 @@ msgstr "A apărut o problemă! {0}" #: src/view/screens/ProfileList.tsx:447 #: src/view/screens/ProfileList.tsx:465 msgid "There was an issue. Please check your internet connection and try again." -msgstr "A apărut o problemă. Te rog verifică conexiunea la internet și încearcă din nou." +msgstr "A apărut o problemă. Vă rugăm să vă verificați conexiunea la internet și să încercați din nou." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" -msgstr "A apărut o problemă neașteptată în aplicație. Te rugăm să ne informezi dacă ți s-a întâmplat acest lucru!" +msgstr "A apărut o problemă neașteptată în aplicație. Vă rugăm să ne spuneți dacă vi s-a întâmplat acest lucru!" #: src/screens/SignupQueued.tsx:130 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." -msgstr "A fost o creștere a numărului de utilizatori noi pe Bluesky! Îți vom activa contul cât de curând posibil." +msgstr "Au fost o grămadă de utilizatori noi pe Bluesky! Vă vom activa contul cât mai curând posibil." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." -msgstr "Aceste setări se aplică doar fluxului „Following”." +msgstr "Aceste setări se aplică numai fluxului Urmăriți." #: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" -msgstr "Acest {screenDescription} a fost semnalat:" +msgstr "Acest {screenDescription} a fost etichetat:" #: src/components/verification/VerificationsDialog.tsx:87 msgid "This account has a checkmark because it's been verified by trusted sources." -msgstr "" +msgstr "Acest cont are o bifă deoarece a fost verificat de surse de încredere." #: src/components/verification/VerificationsDialog.tsx:92 msgid "This account has one or more attempted verifications, but it is not currently verified." -msgstr "" +msgstr "Acest cont are una sau mai multe verificări, dar nu este verificat în prezent." #: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." -msgstr "Acest cont a solicitat ca utilizatorii să se autentifice pentru a vedea profilul." +msgstr "Acest cont a solicitat ca utilizatorii să se conecteze pentru a vizualiza profilul lor." #: src/components/dms/BlockedByListDialog.tsx:34 msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." -msgstr "Acest cont este blocat de una sau mai multe liste de moderare ale tale. Pentru a debloca, vizitează direct listele și elimină acest utilizator." +msgstr "Acest cont este blocat de una sau mai multe dintre listele dvs. de moderare. Pentru a debloca, vizitați direct listele și eliminați acest utilizator." #: src/components/verification/VerificationCreatePrompt.tsx:55 msgid "This action can be undone at any time." -msgstr "" +msgstr "Această acțiune poate fi anulată în orice moment." #: src/components/moderation/LabelsOnMeDialog.tsx:271 msgid "This appeal will be sent to <0>{sourceName}." -msgstr "Această contestație va fi trimisă către <0>{sourceName}." +msgstr "Această contestație va fi trimisă la <0>{sourceName}." #: src/screens/Messages/components/ChatDisabled.tsx:104 msgid "This appeal will be sent to Bluesky's moderation service." -msgstr "Această contestație va fi trimisă către serviciul de moderare al Bluesky." +msgstr "Această contestație va fi trimisă la serviciul de moderare al companiei Bluesky." #: src/screens/Messages/components/MessageListError.tsx:18 msgid "This chat was disconnected" @@ -8135,48 +8737,52 @@ msgstr "Acest conținut a fost ascuns de moderatori." #: src/lib/moderation/useGlobalLabelStrings.ts:24 msgid "This content has received a general warning from moderators." -msgstr "Acest conținut a primit un avertisment general din partea moderatorilor." +msgstr "Acest conținut a primit o avertizare generală de la moderatori." #: src/components/dialogs/EmbedConsent.tsx:63 msgid "This content is hosted by {0}. Do you want to enable external media?" -msgstr "Acest conținut este găzduit de {0}. Doriți să activați media externă?" +msgstr "Acest conținut este găzduit de {0}. Doriți să activați conținutul media extern?" #: src/components/moderation/ModerationDetailsDialog.tsx:84 #: src/lib/moderation/useModerationCauseDescription.ts:84 msgid "This content is not available because one of the users involved has blocked the other." msgstr "Acest conținut nu este disponibil deoarece unul dintre utilizatorii implicați l-a blocat pe celălalt." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Acest conținut nu poate fi vizualizat fără un cont Bluesky." #: src/screens/Messages/components/ChatListItem.tsx:362 msgid "This conversation is with a deleted or a deactivated account. Press for options" -msgstr "Această conversație este cu un cont șters sau dezactivat. Apasă pentru opțiuni" +msgstr "Această conversație este cu un cont șters sau dezactivat. Apăsați pentru opțiuni" #: src/components/dialogs/EmailDialog/screens/Update.tsx:156 msgid "This email is already associated with your account." -msgstr "" +msgstr "Acest e-mail este deja asociat contului dvs." + +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "Această caracteristică permite utilizatorilor să primească notificări pentru noile dvs. postări și răspunsuri. Pentru cine doriți să activați această caracteristică?" #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." -msgstr "Această funcționalitate este în beta. Poți citi mai multe despre exporturile de depozite în <0>acest articol de blog." +msgstr "Această caracteristică este în versiunea beta. Puteți citi mai multe despre exporturile de repozitoriu în <0>această postare de pe blog." #: src/lib/hooks/useCleanError.ts:49 msgid "This feature is not available while using an app password. Please sign in with your main password." -msgstr "" +msgstr "Această caracteristică nu este disponibilă când utilizați o parolă de aplicație. Vă rugăm să vă conectați cu parola principală." #: src/lib/strings/errors.ts:21 msgid "This feature is not available while using an App Password. Please sign in with your main password." -msgstr "Această funcționalitate nu este disponibilă în timp ce utilizezi o parolă de aplicație. Autentifică-te cu parola principală." +msgstr "Această caracteristică nu este disponibilă când utilizați o Parolă de Aplicație. Vă rugăm să vă conectați cu parola principală." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." -msgstr "Acest flux are în prezent un trafic mare și este temporar indisponibil. Încearcă mai târziu." +msgstr "Acest flux primește în prezent trafic ridicat și este temporar indisponibil. Vă rugăm să încercați din nou mai târziu." #: src/view/com/posts/CustomFeedEmptyState.tsx:38 msgid "This feed is empty! You may need to follow more users or tune your language settings." -msgstr "Acest flux este gol! Poate fi nevoie să urmărești mai mulți utilizatori sau să ajustezi setările de limbă." +msgstr "Acest flux este gol! S-ar putea să fie nevoie să urmăriți mai mulți utilizatori sau să ajustați setările de limbă." #: src/components/StarterPack/Main/PostsList.tsx:36 #: src/screens/Profile/ProfileFeed/index.tsx:192 @@ -8186,11 +8792,11 @@ msgstr "Acest flux este gol." #: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." -msgstr "Acest flux nu mai este online. Îți arătăm <0>Descoperă în schimb." +msgstr "Acest flux nu mai este online. În schimb, afișăm <0>Descoperă." #: src/screens/Settings/components/ChangeHandleDialog.tsx:593 msgid "This handle is reserved. Please try a different one." -msgstr "Acest nume de utilizator este rezervat. Te rog încearcă unul diferit." +msgstr "Acest identificator este rezervat. Vă rugăm să încercați unul diferit." #: src/components/dialogs/BirthDateSettings.tsx:41 msgid "This information is not shared with other users." @@ -8199,7 +8805,7 @@ msgstr "Aceste informații nu sunt partajate cu alți utilizatori." #: src/components/live/EditLiveDialog.tsx:189 #: src/components/live/GoLiveDialog.tsx:160 msgid "This is not a valid link" -msgstr "" +msgstr "Acesta nu este un link valid" #: src/components/moderation/ModerationDetailsDialog.tsx:168 msgid "This label was applied by the author." @@ -8207,23 +8813,23 @@ msgstr "Această etichetă a fost aplicată de autor." #: src/components/moderation/LabelsOnMeDialog.tsx:165 msgid "This label was applied by you." -msgstr "Această etichetă a fost aplicată de tine." +msgstr "Această etichetă a fost aplicată de dvs." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." -msgstr "Acest etichetator nu a declarat ce etichete publică și este posibil să nu fie activ." +msgstr "Acest etichetator nu a declarat etichetele pe care le publică și s-ar putea să nu fie activ." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" -msgstr "Acest link te duce pe următorul site web:" +msgstr "Acest link vă va duce la următorul website:" #: src/screens/List/ListHiddenScreen.tsx:151 msgid "This list – created by <0>{0} – contains possible violations of Bluesky's community guidelines in its name or description." -msgstr "" +msgstr "Această listă - creată de <0>{0} - conține posibile încălcări ale regulilor comunității Bluesky în numele sau descrierea ei." #: src/screens/List/ListHiddenScreen.tsx:146 msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description." -msgstr "" +msgstr "Această listă - creată de dvs. - conține posibile încălcări ale regulilor comunității Bluesky în numele sau descrierea ei." #: src/view/screens/ProfileList.tsx:962 msgid "This list is empty." @@ -8233,51 +8839,54 @@ msgstr "Această listă este goală." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Acest serviciu de moderare nu este disponibil. Consultați mai jos pentru mai multe detalii. Dacă problema persistă, contactați-ne." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." -msgstr "Această postare pretinde că a fost creată la <0>{0}, dar a fost văzută prima dată pe Bluesky la <1>{1}." +msgstr "Această postare pretinde că a fost creată pe <0>{0}, dar a fost văzută prima dată de Bluesky pe <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." -msgstr "" +msgstr "Această postare are un tip necunoscut de threadgate. Este posibil ca aplicația dvs. să nu fie actualizată la zi." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Această postare a fost ștearsă." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Această postare este vizibilă doar utilizatorilor conectați. Nu va fi vizibilă pentru persoanele care nu sunt conectate." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "Această postare este vizibilă numai pentru utilizatorii conectați." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." -msgstr "Această postare va fi ascunsă din fluxuri și discuții. Acest lucru nu poate fi anulat." +msgstr "Această postare va fi ascunsă de fluxuri și fire. Acest lucru nu poate fi anulat." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." -msgstr "Autorul acestei postări a dezactivat citările." +msgstr "Autorul acestei postări a dezactivat postările citate." #: src/view/com/profile/ProfileMenu.tsx:482 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Acest profil este vizibil numai pentru utilizatorii conectați. Nu va fi vizibil pentru persoanele care nu sunt conectate." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." -msgstr "Acest răspuns va fi sortat într-o secțiune ascunsă în partea de jos a discuției tale și va pune pe mut notificările pentru răspunsurile ulterioare - atât pentru tine, cât și pentru ceilalți." +msgstr "Acest răspuns va fi sortat într-o secțiune ascunsă în partea de jos a firului dvs. și va amuții notificările pentru răspunsurile ulterioare - atât pentru dvs., cât și pentru ceilalți." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." -msgstr "Acest serviciu nu a furnizat termeni de utilizare sau o politică de confidențialitate." +msgstr "Acest serviciu nu a furnizat termeni de serviciu sau o politică de confidențialitate." #: src/screens/Settings/components/ChangeHandleDialog.tsx:456 msgid "This should create a domain record at:" msgstr "Acest lucru ar trebui să creeze un registru la:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "Acest lucru ar trebui să dureze doar câteva minute." + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." -msgstr "" +msgstr "Acest utilizator nu are un nume afișat, și prin urmare, nu poate fi verificat." #: src/view/com/profile/ProfileFollowers.tsx:95 msgid "This user doesn't have any followers." @@ -8290,23 +8899,23 @@ msgstr "Acest utilizator v-a blocat." #: src/components/moderation/ModerationDetailsDialog.tsx:79 #: src/lib/moderation/useModerationCauseDescription.ts:75 msgid "This user has blocked you. You cannot view their content." -msgstr "Acest utilizator v-a blocat. Nu poți vizualiza conținutul său." +msgstr "Acest utilizator v-a blocat. Nu puteți vizualiza conținutul acestuia." #: src/lib/moderation/useGlobalLabelStrings.ts:30 msgid "This user has requested that their content only be shown to signed-in users." -msgstr "Acest utilizator a solicitat ca conținutul său să fie afișat doar utilizatorilor autentificați." +msgstr "Acest utilizator a solicitat ca conținutul său să fie afișat numai utilizatorilor conectați." #: src/components/moderation/ModerationDetailsDialog.tsx:59 msgid "This user is included in the <0>{0} list which you have blocked." -msgstr "Acest utilizator este inclus în lista <0>{0} pe care ai blocat-o." +msgstr "Acest utilizator este inclus în lista <0>{0} pe care ați blocat-o." #: src/components/moderation/ModerationDetailsDialog.tsx:91 msgid "This user is included in the <0>{0} list which you have muted." -msgstr "Acest utilizator este inclus în lista <0>{0} pe care ai pus-o pe mut." +msgstr "Acest utilizator este inclus în lista <0>{0} pe care ați amuțit-o." #: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." -msgstr "Acest utilizator este nou aici. Apăsați pentru mai multe informații despre momentul când s-au alăturat." +msgstr "Acest utilizator este nou aici. Apăsați pentru mai multe informații despre momentul când s-a alăturat." #: src/view/com/profile/ProfileFollows.tsx:95 msgid "This user isn't following anyone." @@ -8314,131 +8923,146 @@ msgstr "Acest utilizator nu urmărește pe nimeni." #: src/components/dialogs/MutedWords.tsx:435 msgid "This will delete \"{0}\" from your muted words. You can always add it back later." -msgstr "Aceasta va șterge \"{0}\" din cuvintele tale puse pe mut. Îl poți adăuga înapoi oricând." +msgstr "Aceasta va șterge „{0}” din cuvintele dvs. amuțite. Îl puteți adăuga oricând înapoi mai târziu." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Aceasta va elimina @{0} din lista de acces rapid." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." -msgstr "Aceasta va elimina postarea ta din acestă citare pentru toți utilizatorii și o va înlocui cu un substitut." +msgstr "Aceasta va elimina postarea dvs. din această postare citat pentru toți utilizatorii și o va înlocui cu un substituent." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" -msgstr "Opțiuni discuție" +msgstr "Opțiuni fire" #: src/screens/Settings/ContentAndMediaSettings.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:71 msgid "Thread preferences" -msgstr "Preferințele discuție" +msgstr "Preferințe fir" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" -msgstr "Preferințele discuției" +msgstr "Preferințe Fir" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" -msgstr "" +msgstr "Fire" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" -msgstr "Mod discuție structurată" +msgstr "Mod fire" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" -msgstr "Preferințe pentru discuții" +msgstr "Preferințe fire" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" -msgstr "" +msgstr "Timp rămas: {0, plural, one {O secundă} few {# secunde} other {# secunde}}" #: src/screens/Settings/components/DisableEmail2FADialog.tsx:99 msgid "To disable the email 2FA method, please verify your access to the email address." -msgstr "Pentru a dezactiva metoda 2FA prin e-mail, verifică accesul la adresa de e-mail." +msgstr "Pentru a dezactiva metoda A2F prin e-mail, vă rugăm să verificați accesul la adresa de e-mail." #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215 msgid "To disable your email 2FA method, please verify your access to <0>{0}" -msgstr "" +msgstr "Pentru a dezactiva metoda A2F prin e-mail, verificați accesul la <0>{0}" #: src/components/dms/ReportConversationPrompt.tsx:19 msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." -msgstr "Pentru a raporta o conversație, raportează unul dintre mesajele acesteia prin ecranul de conversație. Aceasta permite moderatorilor noștri să înțeleagă contextul problemei tale." +msgstr "Pentru a raporta o conversație, vă rugăm să raportați unul dintre mesajele acesteia prin intermediul ecranului de conversație. Acest lucru le permite moderatorilor noștri să înțeleagă contextul problemei dvs." #: src/components/ReportDialog/SelectLabelerView.tsx:31 msgid "To whom would you like to send this report?" -msgstr "Cui dorești să trimiți acest raport?" +msgstr "Cui ați dori să trimiteți acest raport?" #: src/components/dms/DateDivider.tsx:44 msgid "Today" msgstr "Astăzi" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" -msgstr "Comută meniul derulant" +msgstr "Comutați lista verticală" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" -msgstr "Comută pentru a activa sau dezactiva conținutul pentru adulți" +msgstr "Comutați pentru a activa sau dezactiva conținutul pentru adulți" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Comută sunetul" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Sus" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "Răspunsurile de top primele" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Subiect" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" -msgstr "Tradu" +msgstr "Traducere" + +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "Vizualizare arbore" #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" -msgstr "Tendințe" +msgstr "În tendințe" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" -msgstr "" +msgstr "Videoclipuri în tendințe" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." -msgstr "" +msgstr "Încrederea rezultă din relații, comunități și context comun, așa că activăm și <0>verificatori de încredere: organizații care pot emite în mod direct verificări." #: src/view/com/util/error/ErrorScreen.tsx:103 msgctxt "action" msgid "Try again" -msgstr "Încearcă încă o dată" +msgstr "Încercați din nou" #: src/screens/Onboarding/state.ts:115 msgid "TV" msgstr "TV" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" -msgstr "Autentificare în doi pași (2FA)" - -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Introdu numele de utilizator dorit" +msgstr "Autentificare cu doi factori (A2F)" #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" -msgstr "Scrie mesajul aici" +msgstr "Tastați aici mesajul dvs." #: src/screens/Settings/components/ChangeHandleDialog.tsx:432 msgid "Type:" @@ -8447,319 +9071,339 @@ msgstr "Tip:" #: src/lib/hooks/useCleanError.ts:27 #: src/lib/strings/errors.ts:11 msgid "Unable to connect. Please check your internet connection and try again." -msgstr "Conexiune imposibilă. Verifică conexiunea la internet și încearcă din nou." +msgstr "Nu se poate conecta. Vă rugăm să vă verificați conexiunea la internet și să încercați din nou." #: src/screens/Login/ForgotPasswordForm.tsx:68 #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." -msgstr "Nu s-a putut contacta serviciul tău. Verifică conexiunea la internet." +msgstr "Serviciul dvs. nu poate fi contactat. Vă rugăm să vă verificați conexiunea la internet." #: src/screens/StarterPack/StarterPackScreen.tsx:673 msgid "Unable to delete" msgstr "Imposibil de șters" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "Anulați aplicarea solicitării de extragere" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "Anulați aplicarea solicitării de extragere {currentChannel}" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "Indisponibil" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "Informații flux indisponibile" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" -msgstr "Deblochează" +msgstr "Deblocare" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" -msgstr "Deblochează" +msgstr "Deblocare" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 #: src/view/com/profile/ProfileMenu.tsx:383 #: src/view/com/profile/ProfileMenu.tsx:389 msgid "Unblock account" -msgstr "Deblochează contul" +msgstr "Deblocare cont" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" -msgstr "Deblochezi contul?" +msgstr "Deblocare Cont?" #: src/view/screens/ProfileList.tsx:620 msgid "Unblock list" -msgstr "" +msgstr "Deblocare listă" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" -msgstr "Anulează redistribuirea" +msgstr "Anulare repostare" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" -msgstr "" +msgstr "Refacere repostare ({0, plural, one {# repostare} few {# repostări} other {# de repostări}})" #: src/view/com/profile/FollowButton.tsx:63 msgctxt "action" msgid "Unfollow" -msgstr "Nu mai urmări" +msgstr "Nu mai urmăriți" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" -msgstr "Nu mai urmări pe {0}" +msgstr "Nu mai urmăriți pe {0}" #: src/view/com/profile/ProfileMenu.tsx:283 #: src/view/com/profile/ProfileMenu.tsx:293 msgid "Unfollow account" -msgstr "" +msgstr "Nu mai urmăriți contul" #: src/screens/VideoFeed/index.tsx:831 msgid "Unfollows the user" -msgstr "" +msgstr "Anulează urmărirea utilizatorului" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." -msgstr "" +msgstr "Din păcate, niciunul dintre etichetatorii la care sunteți abonat nu acceptă acest tip de raport." #: src/components/verification/VerificationsDialog.tsx:206 msgid "Unknown verifier" -msgstr "" +msgstr "Verificator necunoscut" #: src/screens/Profile/components/ProfileFeedHeader.tsx:518 msgid "Unlike" -msgstr "Nu-mi place" +msgstr "Nu mai apreciați" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" -msgstr "Nu apreciez ({0, plural, one {# apreciere} few {# aprecieri} other {# de aprecieri}})" +msgstr "Nu mai apreciați ({0, plural, one {# apreciere} few {# aprecieri} other {# de aprecieri}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" -msgstr "" +msgstr "Dezamuțire" #: src/view/screens/ProfileList.tsx:730 msgid "Unmute" -msgstr "Scoate de pe mut" +msgstr "Dezamuțire" #: src/components/RichTextTag.tsx:140 #: src/components/RichTextTag.tsx:153 msgid "Unmute {tag}" -msgstr "" +msgstr "Dezamuțiți {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" -msgstr "" +msgstr "Dezamuțire cont" #: src/components/dms/ConvoMenu.tsx:236 msgid "Unmute conversation" -msgstr "Scoate de pe mut conversația" +msgstr "Dezamuțire conversație" #: src/view/screens/ProfileList.tsx:605 msgid "Unmute list" -msgstr "" +msgstr "Dezamuțire listă" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" -msgstr "Scoate de pe mut discuția" +msgstr "Dezamuțire fir" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" -msgstr "Scoate de pe mut video" +msgstr "Activați sunetul videoclipului" #: src/view/screens/ProfileList.tsx:714 msgid "Unpin" -msgstr "Desprinde" +msgstr "Anulați fixarea" #: src/screens/Profile/components/ProfileFeedHeader.tsx:523 #: src/screens/Profile/components/ProfileFeedHeader.tsx:530 msgid "Unpin feed" -msgstr "" +msgstr "Anulați fixarea fluxului" #: src/components/FeedCard.tsx:320 msgid "Unpin Feed" -msgstr "" +msgstr "Anulați Fixarea Fluxului" #: src/screens/Profile/components/ProfileFeedHeader.tsx:310 #: src/screens/Profile/components/ProfileFeedHeader.tsx:312 msgid "Unpin from home" -msgstr "Desprinde de pe pagina principală" +msgstr "Anulați fixarea de la acasă" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" -msgstr "Desprinde de pe profil" +msgstr "Anulați fixarea de la profil" #: src/view/screens/ProfileList.tsx:585 msgid "Unpin moderation list" -msgstr "Desprinde lista de moderare" +msgstr "Anulați fixarea listei de moderare" #: src/screens/Profile/components/ProfileFeedHeader.tsx:163 msgid "Unpinned {0} from Home" -msgstr "" +msgstr "Fixarea {0} anulată de la Acasă" #: src/view/screens/ProfileList.tsx:362 msgid "Unpinned from your feeds" -msgstr "Desprins din feedurile tale" +msgstr "Fixare anulată de la fluxurile dvs." -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" -msgstr "" +msgstr "Anulați amânarea mementoului prin e-mail" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233 msgid "Unsubscribe" -msgstr "Dezabonează-te" +msgstr "Dezabonare" #: src/screens/List/ListHiddenScreen.tsx:198 #: src/screens/List/ListHiddenScreen.tsx:208 msgid "Unsubscribe from list" -msgstr "Dezabonează-te de la listă" +msgstr "Dezabonare de la listă" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200 msgid "Unsubscribe from this labeler" -msgstr "Dezabonează-te de la acest etichetator" +msgstr "Dezabonare de la acest etichetator" #: src/screens/List/ListHiddenScreen.tsx:86 msgid "Unsubscribed from list" msgstr "Dezabonat de la listă" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" -msgstr "Format de videoclip neacceptat" +msgstr "Tip videoclip neacceptat" #: src/view/com/composer/videos/SelectVideoBtn.tsx:48 msgid "Unsupported video type: {0}" -msgstr "Format de videoclip neacceptat: {0}" +msgstr "Tip videoclip neacceptat: {0}" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:77 #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:90 #: src/lib/moderation/useReportOptions.ts:77 #: src/lib/moderation/useReportOptions.ts:90 msgid "Unwanted Sexual Content" -msgstr "Conținut sexual nedorit" +msgstr "Conținut Sexual Nedorit" #: src/screens/Settings/components/OTAInfo.tsx:58 #: src/screens/Settings/components/OTAInfo.tsx:74 msgid "Update" -msgstr "" +msgstr "Actualizare" #: src/view/com/modals/UserAddRemoveLists.tsx:82 msgid "Update <0>{displayName} in Lists" -msgstr "Actualizează <0>{displayName} în liste" +msgstr "Actualizați <0>{displayName} în Liste" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" -msgstr "" +msgstr "Actualizare e-mail" #: src/screens/Settings/components/ChangeHandleDialog.tsx:526 #: src/screens/Settings/components/ChangeHandleDialog.tsx:547 msgid "Update to {domain}" -msgstr "Actualizează la {domain}" +msgstr "Actualizare la {domain}" #: src/components/dialogs/EmailDialog/screens/Update.tsx:203 msgid "Update your email" -msgstr "" +msgstr "Actualizați-vă e-mailul" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" -msgstr "Actualizarea atașamentului citării a eșuat" +msgstr "Actualizarea atașamentului din citat a eșuat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Actualizarea vizibilității răspunsului a eșuat" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." -msgstr "Actualizare..." +msgstr "Se actualizează..." #: src/screens/Onboarding/StepProfile/index.tsx:288 msgid "Upload a photo instead" -msgstr "Încarcă o fotografie în schimb" +msgstr "Încărcați o fotografie în schimb" #: src/screens/Settings/components/ChangeHandleDialog.tsx:472 msgid "Upload a text file to:" -msgstr "Încarcă un fișier text la:" +msgstr "Încărcați un fișier text la:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" -msgstr "Încarcă din cameră" +msgstr "Încărcați din Cameră" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" -msgstr "Încarcă din fișiere" +msgstr "Încărcați din Fișiere" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" -msgstr "Încarcă din bibliotecă" +msgstr "Încărcați din Bibliotecă" #: src/lib/api/index.ts:302 msgid "Uploading images..." -msgstr "Se încarcă imagini..." +msgstr "Se încarcă imaginile..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." -msgstr "Se încarcă miniatura linkului..." +msgstr "Se încarcă miniatura link-ului..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Se încarcă videoclipul..." #: src/screens/Settings/AppPasswords.tsx:67 msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password." -msgstr "Folosește parolele aplicației pentru a te conecta la alte aplicații Bluesky fără a oferi acces complet la contul sau parola ta." +msgstr "Utilizați parolele de aplicație pentru a vă conecta la alți clienți Bluesky fără a acorda acces deplin la contul sau parola dvs." #: src/screens/Settings/components/ChangeHandleDialog.tsx:558 msgid "Use default provider" -msgstr "Folosește furnizorul implicit" +msgstr "Utilizați furnizorul implicit" #: src/components/dialogs/InAppBrowserConsent.tsx:77 #: src/components/dialogs/InAppBrowserConsent.tsx:83 msgid "Use in-app browser" -msgstr "Folosește browser-ul din aplicație" +msgstr "Utilizați browser-ul din aplicație" #: src/screens/Settings/ContentAndMediaSettings.tsx:102 #: src/screens/Settings/ContentAndMediaSettings.tsx:108 msgid "Use in-app browser to open links" -msgstr "Folosește browser-ul din aplicație pentru a deschide linkuri" +msgstr "Utilizați browser-ul din aplicație pentru a deschide link-uri" #: src/components/dialogs/InAppBrowserConsent.tsx:87 #: src/components/dialogs/InAppBrowserConsent.tsx:93 msgid "Use my default browser" -msgstr "Folosește browser-ul meu implicit" +msgstr "Utilizați browser-ul meu implicit" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:53 msgid "Use recommended" -msgstr "Folosește recomandările" +msgstr "Folosiți-l pe cel recomandat" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:190 msgid "Use this to sign in to the other app along with your handle." -msgstr "" +msgstr "Utilizați asta pentru a vă conecta la cealaltă aplicație împreună cu identificatorul dvs." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "Utilizați adresa dvs. de e-mail sau o altă adresă reală de e-mail pe care o controlați în cazul în care KWS sau Bluesky trebuie să vă contacteze." #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" @@ -8768,16 +9412,16 @@ msgstr "Utilizat de:" #: src/components/dms/ReportDialog.tsx:324 msgctxt "toast" msgid "User blocked" -msgstr "" +msgstr "Utilizator blocat" #: src/components/moderation/ModerationDetailsDialog.tsx:71 #: src/lib/moderation/useModerationCauseDescription.ts:63 msgid "User Blocked" -msgstr "Utilizator blocat" +msgstr "Utilizator Blocat" #: src/lib/moderation/useModerationCauseDescription.ts:55 msgid "User Blocked by \"{0}\"" -msgstr "Utilizator blocat de \"{0}\"" +msgstr "Utilizator Blocat de „{0}”" #: src/components/dms/BlockedByListDialog.tsx:27 msgid "User blocked by list" @@ -8785,15 +9429,15 @@ msgstr "Utilizator blocat de listă" #: src/components/moderation/ModerationDetailsDialog.tsx:57 msgid "User Blocked by List" -msgstr "Utilizator blocat de listă" +msgstr "Utilizator Blocat de Listă" #: src/lib/moderation/useModerationCauseDescription.ts:73 msgid "User Blocking You" -msgstr "Utilizator care te blochează" +msgstr "Utilizator Care Vă Blochează" #: src/components/moderation/ModerationDetailsDialog.tsx:77 msgid "User Blocks You" -msgstr "Utilizator te blochează" +msgstr "Utilizatorul Vă Blochează" #: src/view/com/modals/UserAddRemoveLists.tsx:214 msgid "User list by {0}" @@ -8801,7 +9445,7 @@ msgstr "Listă de utilizatori creată de {0}" #: src/view/com/modals/UserAddRemoveLists.tsx:212 msgid "User list by you" -msgstr "Listă de utilizatori creată de tine" +msgstr "Listă de utilizatori creată de dvs." #: src/view/com/modals/CreateOrEditList.tsx:174 msgctxt "toast" @@ -8813,30 +9457,42 @@ msgctxt "toast" msgid "User list updated" msgstr "Listă de utilizatori actualizată" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "Numele de utilizator nu poate fi mai lung decât {MAX_SERVICE_HANDLE_LENGTH, plural, one {} few {# caractere}other {# de caractere}}" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "Numele de utilizator nu poate începe sau termina cu o cratimă" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "Numele de utilizator trebuie să conțină doar litere (a-z), cifre și cratime" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" -msgstr "Nume de utilizator sau adresă de e-mail" +msgstr "Numele de utilizator sau adresa de e-mail" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "utilizatori urmăriți de <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" -msgstr "" +msgstr "utilizatorii care urmăresc pe <0>@{0}" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" -msgstr "Utilizatori pe care îi urmăresc" +msgstr "Utilizatori pe care îi urmăriți" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" -msgstr "Utilizatori din \"{0}\"" +msgstr "Utilizatori din „{0}”" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" -msgstr "Utilizatori pe care îi urmărești" +msgstr "Utilizatori pe care îi urmăresc" #: src/screens/Settings/components/ChangeHandleDialog.tsx:438 msgid "Value:" @@ -8844,358 +9500,407 @@ msgstr "Valoare:" #: src/components/verification/VerificationCreatePrompt.tsx:39 msgid "Verification failed, please try again." -msgstr "" +msgstr "Verificare eșuată, încercați din nou." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" -msgstr "" +msgstr "Setări de verificare" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" -msgstr "" +msgstr "Setări de Verificare" #: src/screens/Moderation/VerificationSettings.tsx:41 msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here." -msgstr "" +msgstr "Verificările pe Bluesky funcționează diferit față de alte platforme. <0>Aflați mai multe aici." #: src/components/verification/VerificationsDialog.tsx:103 msgid "Verified by:" -msgstr "" +msgstr "Verificat de:" #: src/components/verification/VerificationCreatePrompt.tsx:84 #: src/components/verification/VerificationCreatePrompt.tsx:86 #: src/view/com/profile/ProfileMenu.tsx:346 #: src/view/com/profile/ProfileMenu.tsx:349 msgid "Verify account" -msgstr "" +msgstr "Verificare cont" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "Verificați din nou" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" -msgstr "" +msgstr "Verificați codul" #: src/screens/Settings/components/ChangeHandleDialog.tsx:528 #: src/screens/Settings/components/ChangeHandleDialog.tsx:549 msgid "Verify DNS Record" msgstr "Verificați înregistrarea DNS" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" -msgstr "" +msgstr "Verificați codul de e-mail" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" -msgstr "Fereastră pentru verificarea e-mailului" +msgstr "Dialog verificare e-mail" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "Verificați acum" #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" -msgstr "Verificați fișierul text" +msgstr "Verificare Fișier Text" #: src/components/verification/VerificationCreatePrompt.tsx:51 msgid "Verify this account?" -msgstr "" +msgstr "Verificați acest cont?" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "Verificați-vă vârsta" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Verifică-ți e-mailul" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Verifică-ți e-mailul" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "Se verifică" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "Se verifică statutul dvs. de verificare a vârstei" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Versiune {appVersion}" +msgid "Version {0}" +msgstr "Versiune {0}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" -msgstr "Video" +msgstr "Videoclip" #: src/view/com/composer/state/video.ts:358 msgid "Video failed to process" msgstr "Procesarea videoclipului a eșuat" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Flux video" #: src/components/VideoPostCard.tsx:122 msgid "Video from {0}: {text}" -msgstr "Video de la {0}: {text}" +msgstr "Videoclip de la {0}: {text}" #: src/screens/Onboarding/index.tsx:39 #: src/screens/Onboarding/state.ts:103 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:237 msgid "Video Games" -msgstr "Jocuri video" +msgstr "Jocuri Video" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" -msgstr "Video-ul este oprit" +msgstr "Redarea videoclipului este întreruptă" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" -msgstr "Videoul se redă" +msgstr "Videoclipul se redă" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Videoclipul nu a fost găsit." #: src/view/com/composer/videos/SubtitleDialog.tsx:98 msgid "Video settings" -msgstr "Setări video" +msgstr "Setări videoclip" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Videoclip încărcat" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Videoclip: {0}" #: src/view/screens/Profile.tsx:228 msgid "Videos" -msgstr "Videouri" +msgstr "Videoclipuri" #: src/view/com/composer/videos/SelectVideoBtn.tsx:42 #: src/view/com/composer/videos/SelectVideoBtn.tsx:55 msgid "Videos must be less than 3 minutes long" -msgstr "" +msgstr "Videoclipurile trebuie să aibă o lungime de mai puțin de 3 minute" #: src/screens/Profile/Header/Shell.tsx:211 msgid "View {0}'s avatar" -msgstr "Vezi avatarul folosit de {0}" +msgstr "Vizualizați avatarul lui {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" -msgstr "Vezi profilul utilizatorului {0}" +msgstr "Vizualizați profilul lui {0}" #: src/components/dms/MessagesListHeader.tsx:181 msgid "View {displayName}'s profile" -msgstr "Vezi profilul utilizatorului {displayName}" +msgstr "Vizualizați profilul lui {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" -msgstr "Vezi profilul utilizatorului blocat" +msgstr "Vizualizați profilul utilizatorului blocat" #: src/screens/Settings/components/ExportCarDialog.tsx:100 msgid "View blogpost for more details" -msgstr "Vezi articolul pentru mai multe detalii" +msgstr "Vizualizați postarea pe blog pentru mai multe detalii" #: src/view/screens/Log.tsx:57 msgid "View debug entry" -msgstr "Vezi intrarea de depanare" +msgstr "Vizualizați intrarea de depanare" #: src/components/ReportDialog/SelectReportOptionView.tsx:137 #: src/screens/VideoFeed/index.tsx:656 #: src/screens/VideoFeed/index.tsx:674 msgid "View details" -msgstr "Vezi detalii" +msgstr "Vizualizare detalii" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" -msgstr "Vezi detaliile unui raport privind încălcarea drepturilor de autor" +msgstr "Vizualizați detaliile pentru raportarea încălcării drepturilor de autor" #: src/view/com/posts/ViewFullThread.tsx:59 msgid "View full thread" -msgstr "Vezi toată discuția" +msgstr "Vizualizați întregul fir" #: src/components/moderation/LabelsOnMe.tsx:46 msgid "View information about these labels" -msgstr "Vezi informații despre aceste etichete" +msgstr "Vizualizați informații despre aceste etichete" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" -msgstr "Vezi mai mult" +msgstr "Vedeți mai multe" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" -msgstr "Vezi profilul" +msgstr "Vizualizați profilul" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" -msgstr "Vezi avatarul" +msgstr "Vizualizați avatarul" #: src/components/LabelingServiceCard/index.tsx:164 msgid "View the labeling service provided by @{0}" -msgstr "Vezi serviciul de etichetare furnizat de @{0}" +msgstr "Vizualizați serviciul de etichetare furnizat de @{0}" #: src/components/verification/VerificationCheckButton.tsx:99 msgid "View this user's verifications" -msgstr "" +msgstr "Vizualizați verificările acestui utilizator" #: src/screens/Profile/components/ProfileFeedHeader.tsx:489 msgid "View users who like this feed" -msgstr "Vezi utilizatorii care apreciază acest flux" +msgstr "Vizualizați utilizatorii care apreciază acest flux" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" -msgstr "Vezi video" +msgstr "Vizualizare videoclip" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" -msgstr "Vezi conturile blocate" +msgstr "Vizualizați conturile dvs. blocate" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" -msgstr "" +msgstr "Vedeți setările implicite de interacțiune cu postări" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" -msgstr "Vezi fluxurile și explorează mai mult" +msgstr "Vizualizați-vă fluxurile și explorați mai multe" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" -msgstr "Vezi listele tale de moderare" +msgstr "Vizualizați listele dvs. de moderare" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" -msgstr "Vezi conturile puse pe mut" +msgstr "Vizualizați conturile dvs. amuțite" #: src/components/verification/VerificationCheckButton.tsx:98 msgid "View your verifications" -msgstr "" +msgstr "Vizualizați-vă verificările" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" -msgstr "" +msgstr "Vizualizează imaginea completă" #: src/components/VideoPostCard.tsx:121 msgid "Views video in immersive mode" -msgstr "" +msgstr "Vizualizează videoclipul în modul imersiv" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "Vezi site-ul web" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "Vizitați site-ul" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "Vizitați setările de notificare" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Volum" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" -msgstr "Avertizează" +msgstr "Avertizare" #: src/lib/moderation/useLabelBehaviorDescription.ts:48 msgid "Warn content" -msgstr "Avertizează conținutul" +msgstr "Avertizare conținut" #: src/lib/moderation/useLabelBehaviorDescription.ts:46 msgid "Warn content and filter from feeds" -msgstr "Avertizează conținutul și filtrează din fluxuri" +msgstr "Avertizați conținutul și filtrați din fluxuri" #: src/components/live/LiveStatusDialog.tsx:156 #: src/components/live/LiveStatusDialog.tsx:169 msgid "Watch now" -msgstr "" +msgstr "Vizionați acum" + +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "Nu ne-am putut conecta la serviciul care oferă acest flux personalizat. Este posibil să fie temporar indisponibil și să întâmpine probleme sau să fie permanent indisponibil." + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "Nu am putut găsi această listă. Probabil că a fost ștearsă." #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." -msgstr "Nu am găsit rezultate pentru acea etichetă." +msgstr "Nu am putut găsi niciun rezultat pentru acel hashtag." #: src/screens/Topic.tsx:178 msgid "We couldn't find any results for that topic." msgstr "Nu am putut găsi niciun rezultat pentru acest subiect." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Nu am putut încărca această conversație" #: src/screens/SignupQueued.tsx:160 msgid "We estimate {estimatedTime} until your account is ready." -msgstr "Estimăm {estimatedTime} până când contul tău va fi gata." +msgstr "Estimăm {estimatedTime} până când contul dvs. este gata." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "Am încheiat un parteneriat cu <0>KWS pentru a verifica dacă sunteți adult. Când faceți clic pe „Începeți” mai jos, KWS va verifica dacă v-ați verificat anterior vârsta folosind această adresă de e-mail pentru alte jocuri/servicii susținute de tehnologia KWS. Dacă nu, KWS vă va trimite prin e-mail instrucțiuni pentru verificarea vârstei. Când ați terminat, veți fi redirecționat pentru a continua să utilizați Bluesky." #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." -msgstr "Am trimis un alt e-mail de verificare către <0>{0}." +msgstr "Am trimis un alt e-mail de verificare la <0>{0}." #: src/screens/Onboarding/StepFinished.tsx:256 msgid "We hope you have a wonderful time. Remember, Bluesky is:" -msgstr "Sperăm să ai un timp minunat. Amintește-ți, Bluesky este:" +msgstr "Sperăm să aveți un timp minunat. Amintiți-vă, Bluesky este:" #: src/view/com/posts/DiscoverFallbackHeader.tsx:29 msgid "We ran out of posts from your follows. Here's the latest from <0/>." -msgstr "Am epuizat postările din urmăririle tale. Iată cele mai recente de la <0/>." +msgstr "Am rămas fără postări de la urmăritorii dvs. Iată cele mai recente de la <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." -msgstr "" +msgstr "Vă recomandăm să selectați cel puțin două interese." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." -msgstr "" +msgstr "Am trimis un e-mail la <0>{0} care conține un link. Faceți clic pe el pentru a finaliza procesul de verificare a e-mailului." -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." -msgstr "Nu am putut determina dacă ai permisiunea de a încărca videoclipuri. Încearcă din nou." +msgstr "Nu am reușit să determinăm dacă aveți permisiunea de a încărca videoclipuri. Vă rugăm să încercați din nou." #: src/components/dialogs/BirthDateSettings.tsx:52 msgid "We were unable to load your birth date preferences. Please try again." -msgstr "Nu am putut încărca preferințele tale pentru data nașterii. Te rugăm să încerci din nou." +msgstr "Nu am putut încărca preferințele dvs. privind data nașterii. Vă rugăm să încercați din nou." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." -msgstr "Nu am putut încărca configurările etichetatorilor tăi în acest moment." +msgstr "Nu am putut încărca etichetatorii dvs. configurați în acest moment." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "Nu am putut primi verificarea din cauza unei probleme de conexiune. Este posibil să sosească mai târziu. Dacă se întâmplă acest lucru, contul dvs. se va actualiza automat." #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." -msgstr "Nu am reușit să ne conectăm. Încearcă din nou pentru a continua configurarea contului. Dacă problema persistă, poți sări peste acest pas." +msgstr "Nu ne-am putut conecta. Vă rugăm să încercați din nou să continuați configurarea contului. Dacă continuă să eșueze, puteți sări peste acest proces." #: src/screens/SignupQueued.tsx:164 msgid "We will let you know when your account is ready." -msgstr "Te vom anunța când contul tău este gata." +msgstr "Vă vom anunța când contul dvs. este gata." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." -msgstr "" +msgstr "Vom trimite un e-mail la <0>{0} care conține un link. Faceți clic pe el pentru a finaliza procesul de verificare a e-mailului." #: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." -msgstr "Vom folosi aceste informații pentru a personaliza experiența ta." +msgstr "Vom folosi acest lucru pentru a ajuta să vă personalizați experiența." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "De asemenea, actualizăm <0>Regulile Comunității, și dorim să vă auzim părerea! Aceste reguli noi vor intra în vigoare pe 15 Octombrie 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "De asemenea, actualizăm Regulile Comunității, și dorim să vă auzim părerea! Aceste reguli noi vor intra în vigoare pe 15 Octombrie 2025." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "Confirmăm starea dvs. cu serverele noastre. Acest lucru ar trebui să dureze câteva secunde." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "Întâmpinăm probleme la inițializarea procesului de verificare a vârstei pentru contul dumneavoastră. Vă rugăm să <0>contactați suportul pentru asistență." #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" -msgstr "Avem probleme de rețea, încearcă din nou" +msgstr "Avem probleme cu rețeaua, încercați din nou" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." -msgstr "" +msgstr "Introducem un nou nivel de verificare pe Bluesky - o bifă ușor de văzut." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" -msgstr "Suntem foarte entuziasmați că ni te alături!" +msgstr "Suntem atât de încântați să vă avem alături de noi!" #: src/view/screens/ProfileList.tsx:117 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." @@ -9203,50 +9908,70 @@ msgstr "Ne pare rău, dar nu am reușit să rezolvăm această listă. Dacă pro #: src/components/dialogs/MutedWords.tsx:378 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." -msgstr "Ne pare rău, dar nu am putut încărca cuvintele puse pe mut în acest moment. Încearcă din nou." +msgstr "Ne pare rău, dar nu am putut încărca cuvintele dvs. amuțite în acest moment. Vă rugăm să încercați din nou." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." -msgstr "Ne pare rău, dar căutarea ta nu a putut fi finalizată. Te rugăm să încerci din nou peste câteva minute." +msgstr "Ne pare rău, dar căutarea dvs. nu a putut fi finalizată. Vă rugăm să încercați din nou în câteva minute." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." -msgstr "Ne pare rău! Postarea la care răspunzi a fost ștearsă." +msgstr "Ne pare rău! Postare la care răspundeți a fost șters." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." -msgstr "Ne pare rău! Nu putem găsi pagina pe care o cauți." +msgstr "Ne pare rău! Nu găsim pagina pe care o căutați." #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." -msgstr "Ne pare rău! Poți să te abonezi la maximum douăzeci de etichetatori, iar limita de douăzeci a fost atinsă." +msgstr "Ne pare rău! Vă puteți abona doar la douăzeci de etichete și ați atins limita de douăzeci." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "Actualizăm <0>Termenii de Serviciu, <1>Politica de Confidențialitate și <2>Politica Privind Drepturile de Autor, care intră în vigoare pe 15 Septembrie 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "Ne actualizăm politicile" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "Actualizăm Termenii de Serviciu, Politica de Confidențialitate și Politica Privind Drepturile de Autor, care intră în vigoare pe 15 Septembrie 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Actualizăm Termenii de Serviciu, Politica de Confidențialitate și Politica Privind Drepturile de Autor, care intră în vigoare pe 15 Septembrie 2025. De asemenea, actualizăm Regulile Comunității, și dorim să vă auzim părerea! Aceste reguli noi vor intra în vigoare pe 15 Octombrie 2025. Aflați mai multe despre aceste modificări și cum să vă împărtășiți gândurile cu noi citind postarea noastră pe blog." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "Am confirmat starea dvs. de verificare a vârstei. Acum puteți închide acest dialog." #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" -msgstr "Bine ai revenit!" +msgstr "Bine ați revenit!" #: src/components/NewskieDialog.tsx:103 msgid "Welcome, friend!" -msgstr "Bun venit, prietene!" +msgstr "Bine ai venit, prietene!" #: src/screens/Onboarding/StepInterests/index.tsx:126 msgid "What are your interests?" -msgstr "Ce te interesează?" +msgstr "Care sunt interesele dvs.?" #: src/screens/StarterPack/Wizard/StepDetails.tsx:41 msgid "What do you want to call your starter pack?" -msgstr "Cum doriți să numiți pachetul de început?" +msgstr "Cum doriți să vă numiți pachetul de pornire?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" -msgstr "Ce faci?" +msgstr "Care-i treaba?" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146 msgid "When you tap on a check, you’ll see which organizations have granted verification." -msgstr "" +msgstr "Când atingeți o bifă, veți vedea ce organizații au acordat verificarea." #: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80 msgid "Which languages are used in this post?" @@ -9254,34 +9979,34 @@ msgstr "Ce limbi sunt utilizate în această postare?" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:79 msgid "Which languages would you like to see in your algorithmic feeds?" -msgstr "Ce limbi dorești să vezi în fluxurile tale algoritmice?" +msgstr "Ce limbi ați dori să vedeți în fluxurile dvs. algoritmice?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Cine poate interacționa cu această postare?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Cine poate răspunde" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127 msgid "Who can verify?" -msgstr "" +msgstr "Cine poate verifica?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" -msgstr "Ups!" +msgstr "Hopa!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." -msgstr "" +msgstr "Hopa! Nu s-au încărcat videoclipurile în tendințe." #: src/screens/Takendown.tsx:173 msgid "Why are you appealing?" -msgstr "" +msgstr "De ce faceți contestație?" #: src/components/ReportDialog/SelectReportOptionView.tsx:42 msgid "Why should this content be reviewed?" @@ -9310,7 +10035,7 @@ msgstr "De ce ar trebui revizuită această postare?" #: src/components/moderation/ReportDialog/copy.ts:38 #: src/components/ReportDialog/SelectReportOptionView.tsx:58 msgid "Why should this starter pack be reviewed?" -msgstr "De ce ar trebui revizuit acest pachet de început?" +msgstr "De ce ar trebui revizuit acest pachet de pornire?" #: src/components/moderation/ReportDialog/copy.ts:14 #: src/components/ReportDialog/SelectReportOptionView.tsx:46 @@ -9320,30 +10045,30 @@ msgstr "De ce ar trebui revizuit acest utilizator?" #: src/screens/Messages/components/MessageInput.tsx:154 #: src/screens/Messages/components/MessageInput.web.tsx:214 msgid "Write a message" -msgstr "Scrie un mesaj" +msgstr "Scrieți un mesaj" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" -msgstr "Scrie o postare" +msgstr "Scrieți o postare" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" -msgstr "Răspunsul tău" +msgstr "Scrieți-vă răspunsul" #: src/screens/Onboarding/index.tsx:25 #: src/screens/Onboarding/state.ts:116 msgid "Writers" -msgstr "Autori" +msgstr "Scriitori" #: src/screens/Settings/components/ChangeHandleDialog.tsx:356 msgid "Wrong DID returned from server. Received: {0}" -msgstr "DID-ul greșit a fost returnat de server. Primit: {0}" +msgstr "DID greșit returnat de la server. Primit: {0}" #: src/components/live/EditLiveDialog.tsx:153 #: src/components/live/GoLiveDialog.tsx:129 msgid "www.mylivestream.tv" -msgstr "" +msgstr "www.transmisiuneameaîndirect.tv" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:87 msgid "Yes" @@ -9352,23 +10077,23 @@ msgstr "Da" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 msgid "Yes, deactivate" -msgstr "Da, dezactivează" +msgstr "Da, dezactivare" #: src/screens/StarterPack/StarterPackScreen.tsx:685 msgid "Yes, delete this starter pack" -msgstr "Da, șterge acest pachet de început" +msgstr "Da, ștergeți acest pachet de pornire" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" -msgstr "Da, detașează" +msgstr "Da, detașare" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" -msgstr "Da, ascunde" +msgstr "Da, ascundere" #: src/screens/Deactivated.tsx:147 msgid "Yes, reactivate my account" -msgstr "Da, reactivează-mi contul" +msgstr "Da, reactivați-mi contul" #: src/components/dms/DateDivider.tsx:46 msgid "Yesterday" @@ -9376,501 +10101,547 @@ msgstr "Ieri" #: src/components/NewskieDialog.tsx:43 msgid "You" -msgstr "Tu" +msgstr "Dvs." + +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "De asemenea, sunteți de acord cu <0>Regulile Comunității Bluesky. O <1>versiune actualizată a Regulilor Comunității va intra în vigoare pe 15 Octombrie." #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" -msgstr "" +msgstr "Sunteți un verificator de încredere" #: src/components/forms/HostingProvider.tsx:45 msgid "You are creating an account on" -msgstr "" +msgstr "Vă creați un cont pe" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "Momentan nu puteți accesa procesul de verificare a vârstei pe Bluesky. Vă rugăm să <0>contactați echipa noastră de moderare dacă considerați că aceasta este o eroare." #: src/screens/SignupQueued.tsx:157 msgid "You are in line." -msgstr "Ești la coadă." +msgstr "Sunteți la coadă." #: src/components/live/EditLiveDialog.tsx:119 #: src/components/live/EditLiveDialog.tsx:124 msgid "You are Live" -msgstr "" +msgstr "Sunteți în direct" #: src/components/live/queries.ts:211 msgid "You are no longer live" -msgstr "" +msgstr "Nu mai sunteți în direct" #: src/components/live/queries.ts:35 msgid "You are not allowed to go live" -msgstr "" +msgstr "Nu aveți permisiunea să intrați în direct" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." -msgstr "Nu ai permisiunea de a încărca videoclipuri." +msgstr "Nu aveți voie să încărcați videoclipuri." #: src/view/com/profile/ProfileFollows.tsx:94 msgid "You are not following anyone." -msgstr "Nu urmărești pe nimeni" +msgstr "Nu urmăriți pe nimeni." #: src/components/live/queries.ts:156 msgid "You are now live!" -msgstr "" +msgstr "Acum sunteți în direct!" #: src/components/verification/VerificationsDialog.tsx:64 msgid "You are verified" -msgstr "" +msgstr "Sunteți verificat" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." -msgstr "" +msgstr "Sunteți verificat. Veți pierde starea de verificare dacă vă schimbați numele afișat. <0>Aflați mai multe." #: src/screens/Settings/components/ChangeHandleDialog.tsx:208 msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." -msgstr "" +msgstr "Sunteți verificat. Veți pierde starea de verificare dacă vă schimbați identificatorul. <0>Aflați mai multe." #: src/screens/Search/modules/ExploreInterestsCard.tsx:45 msgid "You can adjust your interests at any time from \"Content and media\" settings." -msgstr "" +msgstr "Vă puteți ajusta interesele în orice moment din setările „Conținut și media”." #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." -msgstr "De asemenea, poți descoperi fluxuri personalizate noi de urmat." +msgstr "De asemenea, puteți să vă dezactivați temporar contul și să-l reactivați în orice moment." #: src/view/com/modals/DeleteAccount.tsx:198 msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." -msgstr "De asemenea, poți dezactiva temporar contul și să-l reactivezi oricând." +msgstr "De asemenea, puteți să vă dezactivați temporar contul și să-l reactivați în orice moment." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "Puteți alege dacă notificările de conversații să aibă sunet în setările de conversație în cadrul aplicației" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." -msgstr "Poți continua conversațiile în curs, indiferent de setarea pe care o alegi." +msgstr "Puteți continua conversațiile în curs, indiferent de setarea pe care o alegeți." + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "Acum puteți alege să fiți notificat când anumite persoane postează. Dacă există cineva de la care doriți actualizări la timp, accesați-le profilul și găsiși noua pictogramă clopoțel lângă butonul „Urmărire”." #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." -msgstr "Acum te poți conecta cu noua parolă." +msgstr "Acum vă puteți conecta cu noua parolă." #: src/screens/Deactivated.tsx:133 msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." -msgstr "Poți reactiva contul pentru a continua autentificarea. Profilul și postările tale vor fi vizibile pentru ceilalți utilizatori." +msgstr "Puteți să vă reactivați contul pentru a continua să vă conectați. Profilul și postările dvs. vor fi vizibile pentru alți utilizatori." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." -msgstr "" +msgstr "Puteți seta setările implicite de interacțiune în <0>Setări → Moderare → Setări de interacțiune." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." -msgstr "Poți actualiza acest lucru mai târziu din setările tale." +msgstr "Puteți actualiza acest lucru mai târziu în setări." #: src/view/com/profile/ProfileFollowers.tsx:94 msgid "You do not have any followers." -msgstr "Nu ai urmăritori." +msgstr "Nu aveți niciun urmăritor." #: src/screens/Profile/KnownFollowers.tsx:109 msgid "You don't follow any users who follow @{name}." -msgstr "Nu urmăriți niciun utilizator care îl urmărește pe @{name}." +msgstr "Nu urmăriți niciun utilizator care-l urmărește pe @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." -msgstr "" +msgstr "Nu aveți nicio cerere de conversație în acest moment." #: src/view/com/modals/InviteCodes.tsx:67 msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." -msgstr "Nu ai încă coduri de invitație! Îți vom trimite câteva după ce vei fi fost pe Bluesky pentru o perioadă mai lungă." +msgstr "Nu aveți încă coduri de invitație! Vă vom trimite câteva când mai sunteți puțin pe Bluesky." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." -msgstr "Nu ai fluxuri fixate." +msgstr "Nu aveți fluxuri fixate." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." -msgstr "Nu ai fluxuri salvate." +msgstr "Nu aveți fluxuri salvate." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." -msgstr "Ai blocat autorul sau ai fost blocat de autor." +msgstr "Ați blocat autorul sau ați fost blocat de autor." #: src/components/dms/MessagesListBlockedFooter.tsx:66 msgid "You have blocked this user" -msgstr "Ai blocat acest utilizator" +msgstr "Ați blocat acest utilizator" #: src/components/moderation/ModerationDetailsDialog.tsx:73 #: src/lib/moderation/useModerationCauseDescription.ts:57 #: src/lib/moderation/useModerationCauseDescription.ts:65 msgid "You have blocked this user. You cannot view their content." -msgstr "Ai blocat acest utilizator. Nu poți vedea conținutul lui." +msgstr "Ați blocat acest utilizator. Nu puteți vizualiza conținutul acestuia." + +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "Ați dezactivat complet notificările pentru răspunsuri, citate, și mențiuni, astfel această filă nu se va mai actualiza. Pentru a ajusta asta, vizitați <0>setări pentru notificări." #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 #: src/view/com/modals/ChangePassword.tsx:133 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." -msgstr "Ai introdus un cod invalid. Ar trebui să arate astfel: XXXXX-XXXXX." +msgstr "Ați introdus un cod nevalid. Ar trebui să arate ca XXXXX-XXXXX." #: src/lib/moderation/useModerationCauseDescription.ts:116 msgid "You have hidden this post" -msgstr "Ai ascuns această postare" +msgstr "Ați ascuns această postare" #: src/components/moderation/ModerationDetailsDialog.tsx:111 msgid "You have hidden this post." -msgstr "Ai ascuns această postare." +msgstr "Ați ascuns această postare." #: src/components/moderation/ModerationDetailsDialog.tsx:104 #: src/lib/moderation/useModerationCauseDescription.ts:99 msgid "You have muted this account." -msgstr "Ai pus pe mut acest cont." +msgstr "Ați amuțit acest cont." #: src/lib/moderation/useModerationCauseDescription.ts:93 msgid "You have muted this user" -msgstr "Ai pus pe mut acest utilizator." +msgstr "Ați amuțit acest utilizator" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" -msgstr "Nu ai conversații încă. Începe una!" +msgstr "Încă nu aveți conversații. Începeți una!" #: src/view/com/feeds/ProfileFeedgens.tsx:139 msgid "You have no feeds." -msgstr "Nu ai fluxuri." +msgstr "Nu aveți fluxuri." #: src/view/com/lists/MyLists.tsx:81 #: src/view/com/lists/ProfileLists.tsx:135 msgid "You have no lists." -msgstr "Nu ai liste." +msgstr "Nu aveți liste." #: src/view/screens/ModerationBlockedAccounts.tsx:164 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." -msgstr "Nu ai blocat încă niciun cont. Pentru a bloca un cont, accesează profilul acestuia și selectează \"Blochează contul\" din meniul contului." +msgstr "Încă nu ați blocat niciun cont. Pentru a bloca un cont, accesați profilul său și selectați „Blocare cont” din meniul de pe contul lor." #: src/view/screens/ModerationMutedAccounts.tsx:179 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." -msgstr "Nu ai pus pe mut încă niciun cont. Pentru a pune pe mut un cont, accesează profilul acestuia și selectează \"Pune contul pe mut\" din meniul contului." +msgstr "Nu ați amuțit încă niciun cont. Pentru a amuții un cont, accesați profilul său și selectați „Amuțire cont” din meniul de pe contul său." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" -msgstr "Ai ajuns la sfârșit" +msgstr "Ați ajuns la sfârșit" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:187 msgid "You have successfully verified your email address. You can close this dialog." -msgstr "" +msgstr "Ați verificat cu succes adresa dvs. de e-mail. Puteți închide acest dialog." #: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." -msgstr "Ai atins temporar limita pentru încărcarea videoclipurilor. Încearcă din nou mai târziu." +msgstr "Ați atins temporar limita pentru încărcări de videoclipuri. Vă rugăm să încercați din nou mai târziu." #: src/components/StarterPack/ProfileStarterPacks.tsx:263 msgid "You haven't created a starter pack yet!" -msgstr "Nu ai creat încă un pachet de început!" +msgstr "Încă nu ați creat un pachet de pornire!" #: src/components/dialogs/MutedWords.tsx:398 msgid "You haven't muted any words or tags yet" -msgstr "Încă nu ai pus pe mut niciun cuvânt sau etichetă" +msgstr "Nu ați amuțit încă niciun cuvânt sau etichetă" #: src/components/moderation/ModerationDetailsDialog.tsx:118 #: src/lib/moderation/useModerationCauseDescription.ts:127 msgid "You hid this reply." -msgstr "Ai ascuns acest răspuns." +msgstr "Ați ascuns acest răspuns." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "Ați inițiat deja acest proces acum {0}. Este posibil să dureze până la 5 minute până primiți e-mail-urile. Vă rugăm să așteptați câteva minute înainte de a încerca din nou." #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." -msgstr "Poți contesta etichetele care nu îți aparțin dacă consideri că au fost atribuite din greșeală." +msgstr "Puteți contesta etichetele non-automate dacă credeți că au fost plasate în mod greșit." #: src/components/moderation/LabelsOnMeDialog.tsx:84 msgid "You may appeal these labels if you feel they were placed in error." -msgstr "Poți contesta aceste etichete dacă consideri că au fost atribuite din greșeală." +msgstr "Puteți contesta aceste etichete dacă considerați că au fost plasate în mod greșit." #: src/screens/StarterPack/Wizard/State.tsx:76 msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}" -msgstr "" +msgstr "Puteți adăuga până la {STARTER_PACK_MAX_SIZE, plural, one {} few {{STARTER_PACK_MAX_SIZE} profiluri}other {{STARTER_PACK_MAX_SIZE} de profiluri}}" #: src/screens/StarterPack/Wizard/State.tsx:95 msgid "You may only add up to 3 feeds" -msgstr "Poți adăuga doar până la 3 fluxuri" +msgstr "Puteți adăuga până la 3 fluxuri" #: src/lib/media/picker.shared.ts:25 msgid "You may only select up to 4 images" -msgstr "Poți selecta doar până la 4 imagini" +msgstr "Puteți selecta până la 4 imagini" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." -msgstr "" +msgstr "Trebuie să aveți 13 ani sau mai mult pentru a crea un cont." #: src/components/StarterPack/ProfileStarterPacks.tsx:334 msgid "You must be following at least seven other people to generate a starter pack." -msgstr "Trebuie să urmărești cel puțin șapte persoane pentru a genera un pachet de început." +msgstr "Trebuie să urmăriți cel puțin alte șapte persoane pentru a genera un pachet de pornire." + +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "Trebuie să completați verificarea vârstei pentru a accesa setările de mai jos." + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "Trebuie să completați verificarea vârstei pentru a accesa acest ecran." #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" -msgstr "Trebuie să acorzi acces la biblioteca foto pentru a salva un cod QR." +msgstr "Trebuie să permiteți accesul la biblioteca foto pentru a salva un cod QR" #: src/components/ReportDialog/SubmitView.tsx:211 msgid "You must select at least one labeler for a report" -msgstr "Trebuie să selectezi cel puțin un etichetator pentru un raport." +msgstr "Trebuie să selectați cel puțin un etichetator pentru un raport" + +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "Trebuie să vă conectați pentru a vizualiza această postare." #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." -msgstr "" +msgstr "Trebuie să vă verificați adresa de e-mail înainte de a putea activa A2F." #: src/screens/Deactivated.tsx:128 msgid "You previously deactivated @{0}." -msgstr "Ai dezactivat anterior contul @{0}." +msgstr "Ați dezactivat anterior @{0}." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." -msgstr "" +msgstr "Probabil doriți să reporniți aplicația acum." #: src/components/dms/MessageItem.tsx:135 msgid "You reacted {0}" -msgstr "" +msgstr "Ați reacționat cu {0}" #: src/screens/Messages/components/ChatListItem.tsx:218 msgid "You reacted {0} to {1}" -msgstr "" +msgstr "Ați reacționat cu {0} la {1}" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." -msgstr "Vei fi deconectat din toate conturile tale." +msgstr "Veți fi deconectat de la toate conturile dvs." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "Nu veți mai primi notificări pentru {0}" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" -msgstr "Nu vei mai primi notificări pentru acestă discuție." +msgstr "Nu veți mai primi notificări pentru acest fir" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" -msgstr "Acum vei notificări pentru acestă discuție." +msgstr "Acum veți primi notificări pentru acest fir" #: src/screens/Login/SetNewPasswordForm.tsx:108 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." -msgstr "Vei primi un e-mail cu un „cod de resetare”. Introdu acel cod aici, apoi introdu noua parolă." +msgstr "Veți primi un e-mail cu un „cod de resetare”. Introduceți codul aici, apoi introduceți noua parolă." #: src/screens/Messages/components/ChatListItem.tsx:154 msgid "You: {0}" -msgstr "Tu: {0}" +msgstr "Dvs.: {0}" #: src/screens/Messages/components/ChatListItem.tsx:183 msgid "You: {defaultEmbeddedContentMessage}" -msgstr "Tu: {defaultEmbeddedContentMessage}" +msgstr "Dvs.: {defaultEmbeddedContentMessage}" #: src/screens/Messages/components/ChatListItem.tsx:176 msgid "You: {short}" -msgstr "Tu: {short}" +msgstr "Dvs.: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" -msgstr "Vei urmări utilizatorii și fluxurile sugerate odată ce ai terminat de creat contul!" +msgstr "Veți urmări utilizatorii și fluxurile sugerate după ce ați terminat de creat contul!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" -msgstr "Vei urmări utilizatorii sugerați odată ce ai terminat de creat contul!" +msgstr "Veți urmări utilizatorii sugerați după ce veți finaliza crearea contului!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:236 msgid "You'll follow these people and {0} others" -msgstr "Vei urmări aceste persoane și altele {0}." +msgstr "Veți urmări aceste persoane și alți {0}" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 msgid "You'll follow these people right away" -msgstr "Vei urmări aceste persoane imediat." +msgstr "Îi veți urmări pe acești oameni imediat" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Vei primi un e-mail la <0>{0} pentru a-ți verifica identitatea." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "Veți începe să primiți notificări pentru {0}!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" -msgstr "Vei rămâne la curent cu aceste fluxuri." +msgstr "Veți rămâne la zi cu aceste fluxuri" #: src/screens/SignupQueued.tsx:127 msgid "You're in line" -msgstr "Ești la rând." +msgstr "Sunteți la coadă" #: src/screens/Onboarding/StepFinished.tsx:253 msgid "You're ready to go!" -msgstr "Ești gata de pornire!" +msgstr "Sunteți gata de pornire!" #: src/screens/Deactivated.tsx:89 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account." -msgstr "" +msgstr "V-ați conectat cu o Parolă pentru Aplicație. Vă rugăm să vă conectați cu parola principală pentru a continua să vă dezactivați contul." #: src/components/moderation/ModerationDetailsDialog.tsx:108 #: src/lib/moderation/useModerationCauseDescription.ts:108 msgid "You've chosen to hide a word or tag within this post." -msgstr "Ai ales să ascunzi un cuvânt sau o etichetă în cadrul acestei postări." +msgstr "Ați ales să ascundeți un cuvânt sau o etichetă în cadrul acestei postări." #: src/state/shell/progress-guide.tsx:234 msgid "You've found some people to follow" -msgstr "Ai găsit persoane pe care să le urmărești" +msgstr "Ați găsit niște persoane pe care să le urmăriți" + +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "Ați ajuns la sfârșitul conținutului activ." #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." -msgstr "Ai ajuns la sfârșitul fluxului! Caută mai multe conturi de urmărit." +msgstr "Ați ajuns la sfârșitul fluxului dvs.! Găsiți mai multe conturi de urmărit." #: src/lib/hooks/useCleanError.ts:58 msgid "You've reached the maximum number of requests allowed. Please try again later." -msgstr "" +msgstr "Ați atins numărul maxim de solicitări permise. Vă rugăm să încercați din nou mai târziu." -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "Ați ajuns la începutul conținutului activ." + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" -msgstr "Ai atins limita zilnică pentru încărcarea videoclipurilor (prea mulți octeți)." +msgstr "Ați atins limita zilnică pentru încărcări de videoclipuri (prea mulți octeți)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" -msgstr "Ai atins limita zilnică pentru încărcarea videoclipurilor (prea multe videoclipuri)." +msgstr "Ați atins limita zilnică pentru încărcări de videoclipuri (prea multe videoclipuri)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" -msgstr "Ai rămas fără videouri de vizionat. Poate e un moment bun pentru a face o pauză?" +msgstr "Ați rămas fără videoclipuri de vizionat. Poate e un moment bun pentru a face o pauză?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" -msgstr "Contul tău." +msgstr "Contul dvs." #: src/view/com/modals/DeleteAccount.tsx:84 msgid "Your account has been deleted" -msgstr "Contul tău a fost șters." +msgstr "Contul dvs. a fost șters" #: src/screens/Takendown.tsx:146 msgid "Your account has been suspended" -msgstr "Contul tău a fost suspendat" +msgstr "Contul dumneavoastră a fost suspendat" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." -msgstr "Contul tău nu este suficient de vechi pentru a încărca videoclipuri. Încearcă mai târziu." +msgstr "Contul dvs. nu este încă suficient de vechi pentru a încărca videoclipuri. Vă rugăm să încercați din nou mai târziu." #: src/screens/Settings/components/ExportCarDialog.tsx:67 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." -msgstr "Depozitul contului tău, care conține toate înregistrările de date publice, poate fi descărcat ca fișier \"CAR\". Acest fișier nu include încorporări media, cum ar fi imagini, sau datele tale private, care trebuie obținute separat." +msgstr "Repozitoriul contului dvs., care conține toate înregistrările de date publice, poate fi descărcat ca fișier „CAR”. Acest fișier nu include încorporările media, cum ar fi imaginile sau datele dvs. private, care trebuiesc preluate separat." #: src/screens/Takendown.tsx:214 msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error." -msgstr "" +msgstr "Contul dvs. a fost găsit încălcând <0>Termenii de Serviciu a Bluesky Social. Vi s-a trimis un e-mail în care se indică perioada de încălcare specifică și de suspendare, dacă este cazul. Puteți contesta această decizie dacă credeți că a fost luată din greșeală." #: src/screens/Takendown.tsx:154 msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." -msgstr "Apelul tău a fost trimis. Dacă apelul reușește, vei primi un e-mail." +msgstr "Contestația dvs. a fost trimisă. Dacă contestația dvs. este acceptată, veți primi un e-mail." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" -msgstr "Data ta de naștere." +msgstr "Data nașterii" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." -msgstr "Browserul tău nu acceptă formatul video. Încearcă un alt browser." +msgstr "Browserul dvs. nu acceptă formatul video. Vă rugăm să încercați un alt browser." #: src/screens/Messages/components/ChatDisabled.tsx:25 msgid "Your chats have been disabled" -msgstr "Conversațiile tale au fost dezactivate." +msgstr "Conversațiile dvs. au fost dezactivate" #: src/components/dialogs/InAppBrowserConsent.tsx:69 msgid "Your choice will be remembered for future links. You can change it at any time in settings." -msgstr "" +msgstr "Alegerea dvs. va fi memorată pentru link-urile viitoare. Puteți să o schimbați oricând în setări." #: src/screens/Settings/components/ChangeHandleDialog.tsx:513 msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." -msgstr "Numele tău actual de utilizator <0>{0} va rămâne automat rezervat pentru tine. Poți reveni la el oricând din acest cont." +msgstr "Identificatorul dvs. actual <0>{0} va rămâne automat rezervat pentru dvs. Puteți reveni oricând la acesta din acest cont." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "E-mailul dvs." #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." -msgstr "E-mailul tău pare a fi invalid." +msgstr "E-mailul dvs. pare a fi nevalid." #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65 msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "E-mailul tău nu a fost încă verificat. Acesta este un pas important de securitate pe care îl recomandăm." +msgstr "E-mailul dvs. nu a fost încă verificat. Vă rugăm să vă verificați adresa de e-mail pentru a vă bucura de toate caracteristicile Bluesky." #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" -msgstr "Primul tău like!" +msgstr "Prima dvs. apreciere!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" -msgstr "Urmăritorii tăi" +msgstr "Urmăritorii dvs." #: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." -msgstr "Fluxul tău de urmărire este gol! Urmărește mai mulți utilizatori pentru a vedea ce se întâmplă." +msgstr "Fluxul urmărit este gol! Urmăriți mai mulți utilizatori pentru a vedea ce se întâmplă." #: src/screens/Settings/components/ChangeHandleDialog.tsx:240 msgid "Your full handle will be <0>@{0}" -msgstr "Numele de utilizator al tău complet va fi <0>@{0}." +msgstr "Identificatorul dvs. complet va fi <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" -msgstr "" +msgstr "Interesele dvs." -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" -msgstr "" +msgstr "Interesele dvs. au fost actualizate!" #: src/screens/Search/modules/ExploreInterestsCard.tsx:94 msgid "Your interests help us find what you like!" -msgstr "" +msgstr "Interesele dvs. ne ajută să găsim ceea ce vă place!" #: src/components/dialogs/MutedWords.tsx:369 msgid "Your muted words" -msgstr "Cuvintele tale puse pe mut" +msgstr "Cuvintele dvs. amuțite" #: src/view/com/modals/ChangePassword.tsx:169 msgid "Your password has been changed successfully!" -msgstr "Parola ta a fost schimbată cu succes!" +msgstr "Parola dvs. a fost modificată cu succes!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." -msgstr "" +msgstr "Parola dvs. trebuie să aibă cel puțin 8 caractere." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" -msgstr "Postarea ta a fost publicată." +msgstr "Postarea dvs. a fost publicată" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" -msgstr "Postările tale au fost publicate." +msgstr "Postările dvs. au fost publicate" #: src/screens/Onboarding/StepFinished.tsx:268 msgid "Your posts, likes, and blocks are public. Mutes are private." -msgstr "Postările, aprecierile și blocările tale sunt publice. Lucrurile puse pe mut sunt private." +msgstr "Postările, aprecierile și blocările dvs. sunt publice. Amuțirile sunt private." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "Limba dvs. preferată" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." -msgstr "Profilul, postările, fluxurile și listele tale nu vor mai fi vizibile altor utilizatori Bluesky. Îți poți reactiva contul oricând, autentificându-te." +msgstr "Profilul, postările, fluxurile și listele dvs. nu vor mai fi vizibile pentru alți utilizatori Bluesky. Vă puteți reactiva contul în orice moment, conectându-vă." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" -msgstr "Răspunsul tău a fost publicat." +msgstr "Răspunsul dvs. a fost publicat" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." -msgstr "" +msgstr "Raportul dvs. va fi trimis la <0>{0}." #: src/components/dms/ReportDialog.tsx:200 msgid "Your report will be sent to the Bluesky Moderation Service" -msgstr "Raportul tău va fi trimis către Serviciul de Moderare Bluesky." +msgstr "Raportul dvs. va fi trimis la Serviciul de Moderare Bluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." -msgstr "" +msgstr "Interesele dvs. selectate ne ajută să vă oferim conținut care vă interesează." #: src/components/verification/VerificationsDialog.tsx:65 msgid "Your verifications" -msgstr "" +msgstr "Verificările dvs." diff --git a/src/locale/locales/ru/messages.po b/src/locale/locales/ru/messages.po index 88cef00860..4dc7021ed8 100644 --- a/src/locale/locales/ru/messages.po +++ b/src/locale/locales/ru/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ru\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:41\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: Russian\n" "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" @@ -27,7 +27,7 @@ msgstr "(активные)" msgid "(contains embedded content)" msgstr "(содержит встроенный контент)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(нет электронной почты)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# репост} few {# репоста} other {# реп msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# секунду} few {# секунды} other {# секунд}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# непрочитанный элемент} other {# непрочитанных элементов}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {# непрочитанный элемент} other {# msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {# месяц} few {# месяца} other {# месяцев}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {подписчик} few {подписчика} other {подписчиков}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {подписка} few {подписки} other {подписок}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {лайк} few {лайка} other {лайков}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {лайк} few {лайка} other {лайков}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {пост} few {поста} other {постов}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {цитирование} few {цитирования} other {цитирований}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {репост} few {репоста} other {репостов}}" @@ -135,19 +138,27 @@ msgstr "{0} <0>в <1>тегах" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>в <1>тексте и тегах" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" -msgstr "" +msgstr "{0} сейчас в эфире" #: src/components/live/queries.ts:39 msgid "{0} is not a valid URL" +msgstr "{0} не является допустимым URL" + +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} присоединился на этой неделе" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} из {1}" @@ -164,8 +175,16 @@ msgstr "{0} отреагировал {1}" msgid "{0} reacted {1} to {2}" msgstr "{0} отреагировал {1} на {2}" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "Аватар {0}" @@ -197,12 +216,12 @@ msgstr "{0}м" msgid "{0}s" msgstr "{0}с" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# непрочитанный элемент} other {# непрочитанных элементов}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Стартовый набор {displayName}" @@ -214,174 +233,173 @@ msgstr "{estimatedTimeHrs, plural, one {час} few {часа} other {часов msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {минута} few {минуты} other {минут}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} и <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} подписались на вас" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} и <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} другому} other {{formattedAuthorsCount} другим}} понравилась ваша лента" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} и <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} другому} other {{formattedAuthorsCount} другим}} понравился ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" -msgstr "" +msgstr "{firstAuthorLink} и <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} сняли верификацию с вашей учётной записи" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} и <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} репостнули ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} и <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} зарегистрировались с вашим стартовым набором" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" -msgstr "" +msgstr "{firstAuthorLink} и <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} верифицировали вас" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} подписался на вас" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} подписался на вас в ответ" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} понравилась ваша лента" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} понравился ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" -msgstr "" +msgstr "{firstAuthorLink} понравился ваш репост" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" -msgstr "" +msgstr "{firstAuthorLink} снял верификацию с вашей учётной записи" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} репостнул ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" -msgstr "" +msgstr "{firstAuthorLink} репостнул ваш репост" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} зарегистрировался с вашим стартовым набором" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" -msgstr "" +msgstr "{firstAuthorLink} верифицировал вас" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} и {additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} подписались на вас" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} и {additionalAuthorsCount, plural, one {{formattedAuthorsCount} другому} other {{formattedAuthorsCount} другим}} понравилась ваша лента" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} и {additionalAuthorsCount, plural, one {{formattedAuthorsCount} другому} other {{formattedAuthorsCount} другим}} понравился ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" -msgstr "" +msgstr "{firstAuthorName} и {additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} сняли верификацию с вашей учётной записи" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} и {additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} репостнули ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} и {additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} зарегистрировались с вашим стартовым набором" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" -msgstr "" +msgstr "{firstAuthorName} и {additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} верифицировали вас" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} подписался на вас" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} подписался на вас в ответ" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} понравилась ваша лента" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} понравился ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" -msgstr "" +msgstr "{firstAuthorName} снял верификацию с вашей учётной записи" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} репостнул ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} зарегистрировался с вашим стартовым набором" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" -msgstr "" +msgstr "{firstAuthorName} верифицировал вас" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} подписок" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "{handle} не может получать сообщения" #: src/components/live/utils.ts:15 msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" -msgstr "" +msgstr "{hours, plural, one {# час {minutesString}} few {# часа {minutesString}} other {# часов {minutesString}}}" #: src/components/live/utils.ts:19 msgid "{hours, plural, one {# hour} other {# hours}}" -msgstr "" +msgstr "{hours, plural, one {# час} few {# часа} other {# часов}}" #. Number of users (always at least 50) who have joined Bluesky using a specific starter pack #: src/components/StarterPack/StarterPackCard.tsx:101 @@ -390,9 +408,9 @@ msgstr "{joinedAllTimeCount, plural, one {# пользователь присо #: src/components/live/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" -msgstr "" +msgstr "{minutes, plural, one {# минуту} few {# минуты} other {# минут}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# непрочитанный элемент} other {# непрочитанных элементов}}" @@ -416,28 +434,28 @@ msgstr "{type}ч. назад" #: src/components/verification/VerifierDialog.tsx:60 msgid "{userName} is a trusted verifier" -msgstr "" +msgstr "{userName} — доверенный верификатор" #: src/components/verification/VerificationsDialog.tsx:67 msgid "{userName} is verified" -msgstr "" +msgstr "{userName} верифицирован" #. Possessive, meaning "the verifications of {userName}" #: src/components/verification/VerificationsDialog.tsx:69 msgid "{userName}'s verifications" -msgstr "" +msgstr "Верификации {userName}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 #: src/screens/Search/components/StarterPackCard.tsx:249 msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, и {2, plural, one {# другой} other {# других}} включены в ваш стартовый набор" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, и {2, plural, one {# другой} other {# других}} включены в ваш стартовый набор" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {подписчик} few {подписчик msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {подписка} few {подписки} other {подписок}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} и<1> <2>{1} входят в ваш стартовый набор" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} входит в ваш стартовый набор" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} участников" @@ -466,11 +484,11 @@ msgstr "<0>{0} участников" msgid "<0>{date} at {time}" msgstr "<0>{date} в {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0> Экспериментально: Когда эта настройка включена, вы будете получать уведомления об ответах и цитатах только от тех пользователей, на которых вы подписаны. Со временем мы продолжим добавлять сюда дополнительные настройки." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Вы и<1> <2>{0} включены в ваш стартовый набор" @@ -501,12 +519,16 @@ msgstr "сообщение" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91 msgid "A new form of verification" -msgstr "" +msgstr "Новая форма верификации" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "Скриншот страницы профиля со значком колокольчика рядом с кнопкой \"Подписаться\", указывающей на новую функцию уведомлений об активности." + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Описание" @@ -524,25 +546,25 @@ msgstr "Принять запрос на беседу" msgid "Accept Request" msgstr "Принять запрос" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Доступность" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Настройки Доступности" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Учётная запись" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Вы подписались на учётную запись" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Учётная запись игнорируется" msgid "Account Muted by List" msgstr "Учётная запись игнорируется списком" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Параметры учётной записи" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Учётная запись удалена из быстрого доступа" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Вы отписались от учётной записи" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -596,6 +618,16 @@ msgstr "Учётная запись больше не игнорируется" #: src/components/verification/VerifierDialog.tsx:96 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." +msgstr "Учётные записи с фигурной синей галочкой <0><1/> могут верифицировать другие учётные записи. Эти доверенные верификаторы выбраны Bluesky." + +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" msgstr "" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 @@ -604,7 +636,7 @@ msgstr "" msgid "Add" msgstr "Добавить" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Добавьте ещё {0}, чтобы продолжить" @@ -619,7 +651,7 @@ msgstr "Добавить предупреждение о содержимом" #: src/components/live/GoLiveDialog.tsx:101 msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event." -msgstr "" +msgstr "Добавьте временный статус прямого эфира в ваш профиль. При нажатии на ваш аватар пользователь увидит информацию о вашем эфире." #: src/view/screens/ProfileList.tsx:924 #: src/view/screens/ProfileList.tsx:942 @@ -634,8 +666,8 @@ msgstr "Добавить учётную запись" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Добавить альтернативный текст" msgid "Add alt text (optional)" msgstr "Добавьте альтернативный текст (необязательно)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Добавить другую учётную запись" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Добавить другой пост" @@ -670,8 +702,8 @@ msgstr "Добавить пароль приложения" msgid "Add emoji reaction" msgstr "Добавить эмодзи-реакцию" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Добавить подробности (опционально)" @@ -683,7 +715,7 @@ msgstr "Добавить игнорирование слова с выбранн msgid "Add muted words and tags" msgstr "Добавить игнорируемые слова и теги" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Добавить новый пост" @@ -704,7 +736,7 @@ msgstr "Добавить реакцию" msgid "Add recommended feeds" msgstr "Добавить рекомендуемые ленты" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Добавьте ленты в свой стартовый набор!" @@ -725,10 +757,6 @@ msgstr "Добавьте эту ленту в свои ленты" msgid "Add to lists" msgstr "Добавить в списки" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Добавить в мои ленты" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "Добавить пользователя в список" @@ -738,11 +766,11 @@ msgstr "Добавить пользователя в список" msgid "Added to list" msgstr "Добавлено в список" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Добавлено в мои ленты" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Дополнительные сведения (до 300 символов)" @@ -750,18 +778,18 @@ msgstr "Дополнительные сведения (до 300 символов msgid "Adult" msgstr "Для взрослых" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Содержимое для взрослых" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Содержимое для взрослых можно включить только через веб-сайт <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Содержимое для взрослых отключено." @@ -770,16 +798,32 @@ msgstr "Содержимое для взрослых отключено." msgid "Adult Content labels" msgstr "Метки содержимого для взрослых" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Расширенные" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 -msgid "alice@example.com" +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" msgstr "" -#: src/view/screens/Notifications.tsx:86 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +msgid "alice@example.com" +msgstr "alice@example.com" + +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Все" @@ -793,7 +837,7 @@ msgstr "Все учётные записи отслеживаются!" msgid "All languages" msgstr "Все языки" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Все сохранённые ленты в одном месте." @@ -802,16 +846,21 @@ msgstr "Все сохранённые ленты в одном месте." msgid "Allow access to your direct messages" msgstr "Разрешите доступ к своим личным сообщениям" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Разрешить новые сообщения от" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Разрешить цитировать посты" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Разрешить ответы от:" @@ -828,13 +877,13 @@ msgstr "Уже есть код?" msgid "Already signed in as @{0}" msgstr "Уже вошли как @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "АЛЬТ" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "АЛЬТ" msgid "Alt text" msgstr "Альтернативный текст" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Альтернативный текст" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Альтернативный текст описывает изображение для незрячих и слабовидящих пользователей и предоставляет дополнительный контекст для всех." @@ -861,39 +910,31 @@ msgstr "Альтернативный текст будет обрезан. {MAX_ msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Было отправлено письмо на адрес {0}. Оно содержит код подтверждения, который можно ввести ниже." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Было отправлено письмо! Пожалуйста, введите код подтверждения, указанный в письме ниже." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Возникла ошибка" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Возникла ошибка" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Возникла ошибка при сжатии видео." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." -msgstr "" +msgstr "При обновлении ленты произошла ошибка." #: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "При создании вашего стартового набора возникла ошибка. Хотите попробовать ещё раз?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "При загрузке видео возникла ошибка. Пожалуйста, повторите попытку позже." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "При загрузке видео возникла ошибка. Пожалуйста, попробуйте ещё раз." @@ -910,14 +951,14 @@ msgstr "При выборе видео возникла ошибка" msgid "An error occurred while trying to follow all" msgstr "Возникла ошибка при попытке подписаться на всех" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "При загрузке видео возникла ошибка." #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84 #: src/components/verification/VerifierDialog.tsx:86 msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts." -msgstr "" +msgstr "Иллюстрация, показывающая, что Bluesky выбирает доверенных верификаторов, а те, в свою очередь, верифицируют учётные записи индивидуальных пользователей." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28 #: src/lib/moderation/useReportOptions.ts:28 @@ -934,8 +975,8 @@ msgstr "При попытке открыть чат возникла пробл #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -943,7 +984,7 @@ msgstr "Возникла проблема, пожалуйста, попробу #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118 msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name." -msgstr "" +msgstr "Макет iPhone с интерфейсом Bluesky на экране, в приложении открыт профиль пользователя, рядом с его именем стоит синяя галочка." #: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" @@ -954,7 +995,7 @@ msgstr "возникла неизвестная ошибка" msgid "an unknown labeler" msgstr "неизвестный маркировщик" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "и" @@ -963,13 +1004,17 @@ msgstr "и" msgid "Animals" msgstr "Животные" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "Анимированные GIF" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" -msgstr "" +msgstr "Представляем верификацию на Bluesky" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33 #: src/lib/moderation/useReportOptions.ts:33 @@ -980,7 +1025,13 @@ msgstr "Антисоциальное поведение" msgid "Anybody can interact" msgstr "Любой может взаимодействовать" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "Имена паролей приложений могут содержа msgid "App password names must be at least 4 characters long" msgstr "Имена паролей приложений должны состоять не менее чем из 4 символов" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Пароли приложений" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Пароли приложений" @@ -1053,10 +1104,10 @@ msgstr "Обжаловать приостановку" msgid "Appeal this decision" msgstr "Обжаловать это решение" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Оформление" @@ -1065,12 +1116,20 @@ msgstr "Оформление" msgid "Apply default recommended feeds" msgstr "Применить рекомендуемые по умолчанию ленты" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Архивный пост от {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Архивный пост" @@ -1078,7 +1137,7 @@ msgstr "Архивный пост" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Вы уверены, что хотите удалить пароль приложения \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Вы уверены, что хотите удалить это сообщение? Сообщение будет удалено для вас, но не для другого участника." @@ -1098,19 +1157,15 @@ msgstr "Вы уверены, что хотите выйти из беседы?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Вы уверены, что хотите покинуть эту беседу? Ваши сообщения будут удалены для вас, но не для других участников." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Вы уверены, что хотите удалить {0} из своих лент?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Вы уверены, что хотите удалить это из своих лент?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Вы действительно хотите удалить этот черновик?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Вы действительно хотите удалить этот пост?" @@ -1131,29 +1186,26 @@ msgstr "Искусство" msgid "Artistic or non-erotic nudity." msgstr "Художественная или неэротическая обнаженность." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" -msgstr "" +msgstr "Назначьте тему для алгоритма" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Не менее 3-х символов" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" -msgstr "" - -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Опции автовоспроизведения перемещены в <0>Содержимое и медиа." +msgstr "Аврора" #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Автовоспроизведение видео и GIF-файлов" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Автовоспроизведение видео и GIF-файлов" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Назад" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Вернуться к чатам" @@ -1184,7 +1236,7 @@ msgstr "Чтобы создать список, необходимо снача #: src/lib/hooks/useOpenComposer.tsx:14 msgid "Before creating a post or replying, you must first verify your email." -msgstr "" +msgstr "Чтобы создать пост или ответить, необходимо сначала подтвердить свою электронную почту." #: src/components/StarterPack/ProfileStarterPacks.tsx:235 #: src/components/StarterPack/ProfileStarterPacks.tsx:245 @@ -1193,30 +1245,46 @@ msgstr "Чтобы создать стартовый набор, необход #: src/screens/Messages/components/RequestButtons.tsx:235 msgid "Before you can accept this chat request, you must first verify your email." +msgstr "Чтобы принять этот запрос на чат, необходимо сначала подтвердить свою электронную почту." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." +msgstr "Чтобы написать другому пользователю, необходимо сначала подтвердить свою электронную почту." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Дата рождения" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Заблокировать" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Заблокировать" msgid "Block account" msgstr "Заблокировать" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Заблокировать учётную запись?" @@ -1262,20 +1330,20 @@ msgstr "Заблокировать пользователя" msgid "Block User" msgstr "Заблокировать пользователя" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Заблокировано" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Заблокированные учётные записи" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Заблокированные учётные записи" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Заблокированные учётные записи не могут вам отвечать, упоминать вас в своих постах, и взаимодействовать с вами каким-либо другим образом." @@ -1284,11 +1352,11 @@ msgstr "Заблокированные учётные записи не могу msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Заблокированные учётные записи не могут вам отвечать, упоминать вас в своих постах, и взаимодействовать с вами каким-либо другим образом. Вы не будете видеть их посты и они не будут видеть ваши." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Заблокирован пост." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Блокировка не мешает этому маркировщику добавлять метку на вашу учётную запись." @@ -1309,11 +1377,12 @@ msgstr "Блог" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky не может подтвердить подлинность заявленной даты." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1347,6 +1416,14 @@ msgstr "Bluesky не будет показывать ваш профиль и п msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky будет активно подтверждать известные и подлинные учетные записи." +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Размыть изображения и отфильтровать их msgid "Books" msgstr "Книги" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Просмотреть другие учётные записи на странице Explore" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Просмотреть другие ленты на странице Explore" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Просмотреть другие предложения" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Просмотрите другие предложения на странице Explore" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Бизнес" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "От {0}" @@ -1428,15 +1502,23 @@ msgstr "От {0}" msgid "By <0>{0}" msgstr "От <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Создавая учётную запись, вы соглашаетесь с <0>Политикой конфиденциальности." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Создавая учётную запись, вы соглашаетесь с <0>Условиями предоставления услуг и <1>Политикой конфиденциальности." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Создавая учётную запись, вы соглашаетесь с <0>Условиями предоставления услуг." @@ -1448,14 +1530,17 @@ msgstr "Сделан вами" msgid "Camera" msgstr "Камера" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Камера" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Отменить" @@ -1500,11 +1582,7 @@ msgstr "Отменить удаление учётной записи" msgid "Cancel image crop" msgstr "Отменить обрезку изображения" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Отменить изменения профиля" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Отменить цитирование поста" @@ -1516,14 +1594,10 @@ msgstr "Отменить реактивацию и выйти из систем msgid "Cancel search" msgstr "Отменить поиск" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Отменяет открытие ссылки" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Невозможно взаимодействовать с заблокированным пользователем" @@ -1551,21 +1625,16 @@ msgstr "Изменить иконку приложения на \"{0}\"" #: src/components/AppLanguageDropdown.tsx:40 msgid "Change app language" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Изменить адрес электронной почты" +msgstr "Изменить язык приложения" #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Изменить псевдоним" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" -msgstr "" +msgstr "Изменить службу модерации" #: src/view/com/modals/ChangePassword.tsx:153 msgid "Change Password" @@ -1579,14 +1648,6 @@ msgstr "Изменить язык поста на {suggestedLanguageName}" msgid "Change report reason" msgstr "Причина изменения жалобы" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Изменить адрес электронной почты" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Измените свой адрес электронной почты" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Изменяет иконку приложения" @@ -1596,10 +1657,15 @@ msgstr "Изменяет иконку приложения" msgid "Changes hosting provider" msgstr "Изменяет хостинг-провайдера" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Чат" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Чат удалён" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Чат без звука" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "Почтовый ящик запросов на чат" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Запросы на чат" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Настройки чата" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Настройки чата" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Чат со звуком" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Чаты" @@ -1661,7 +1738,7 @@ msgstr "Проверьте свой почтовый ящик на наличи msgid "Choose domain verification method" msgstr "Выберите метод подтверждения домена" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Выберите ленты" @@ -1669,7 +1746,7 @@ msgstr "Выберите ленты" msgid "Choose for me" msgstr "Выберите за меня" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Выберите людей" @@ -1685,52 +1762,56 @@ msgstr "Выберите этот цвет в качестве своего ав msgid "Choose your account provider" msgstr "Выберите провайдера вашей учётной записи" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Выберите свою собственную временную шкалу! Ленты, созданные сообществом, помогут вам найти контент, который вы любите." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Укажите пароль" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Выберите свой псевдоним" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Очистите все данные хранилища" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Очистите все данные хранилища (после этого перезагрузитесь)" #: src/screens/Settings/AboutSettings.tsx:116 #: src/screens/Settings/AboutSettings.tsx:120 msgid "Clear image cache" -msgstr "" +msgstr "Очистить кэш изображений" #: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" msgstr "Очистить поисковый запрос" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "нажмите здесь" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." -msgstr "" +msgstr "Нажмите здесь, чтобы перезапустить процесс верификации." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" -msgstr "" +msgstr "Нажмите здесь, чтобы обновить свою электронную почту" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Нажмите, чтобы отключить цитирование этого поста." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Нажмите, чтобы включить цитирование этого поста." @@ -1750,14 +1831,16 @@ msgstr "Климат" msgid "Clip 🐴 clop 🐴" msgstr "Клип 🐴 клоп 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Клип 🐴 клоп 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Закрыть" @@ -1789,13 +1876,15 @@ msgstr "Закрыть уведомления" msgid "Close bottom drawer" msgstr "Закрыть нижнее меню" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Закрыть диалог" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Закрывает выдвижное меню" @@ -1804,7 +1893,7 @@ msgstr "Закрывает выдвижное меню" msgid "Close emoji picker" msgstr "Закрыть подборщик эмодзи" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Закройте окно GIF" @@ -1820,9 +1909,9 @@ msgstr "Закрыть просмотр изображения" #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 msgid "Close menu" -msgstr "" +msgstr "Закрыть меню" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Закрыть диалоговое окно" @@ -1830,7 +1919,7 @@ msgstr "Закрыть диалоговое окно" msgid "Closes password update alert" msgstr "Закрывает уведомление об изменении пароля" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "Закрывает редактор и удаляет черновик" @@ -1843,22 +1932,22 @@ msgstr "Закрывает подборщик эмодзи" msgid "Closes viewer for header image" msgstr "Закрывает просмотр изображения" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Свернуть список пользователей" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Сворачивает список пользователей для данного уведомления" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Цветовой режим" #: src/components/dialogs/Embed.tsx:151 msgid "Color theme" -msgstr "" +msgstr "Цветовая схема" #: src/screens/Onboarding/index.tsx:38 #: src/screens/Onboarding/state.ts:97 @@ -1870,7 +1959,8 @@ msgstr "Комедия" msgid "Comics" msgstr "Комиксы" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Правила сообщества" @@ -1879,38 +1969,34 @@ msgstr "Правила сообщества" msgid "Complete onboarding and start using your account" msgstr "Завершите ознакомление и начните пользоваться вашей учётной записью" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Выполните задание" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Составить новый пост" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" -msgstr "" +msgstr "Пишите посты длиной до {0, plural, one {# символа} other {# символов}}" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Составить ответ" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Сжатие видео..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Настроить фильтрацию содержимого для категории: {имя}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Настраивается в <0>настройках модерации." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Подтвердить настройку языка содержимо msgid "Confirm delete account" msgstr "Подтвердить удаление учётной записи" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Подтвердите ваш возраст:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Подтвердите вашу дату рождения" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Подтвердите вашу дату рождения" msgid "Confirmation code" msgstr "Код подтверждения" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Код подтверждения" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Соединение..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Служба поддержки" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Содержание и медиа" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Содержимое и медиа" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Содержимое и медиа" @@ -1977,7 +2069,8 @@ msgstr "Содержимое и медиа" msgid "Content Blocked" msgstr "Заблокированное содержимое" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Фильтры содержимого" @@ -2006,10 +2099,12 @@ msgstr "Предупреждение о содержимом" msgid "Content warnings" msgstr "Предупреждение о содержимом" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Фон контекстного меню, нажмите, чтобы закрыть меню." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Далее" msgid "Continue as {0} (currently signed in)" msgstr "Продолжить как {0} (текущий пользователь)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Продолжить ветку..." @@ -2029,6 +2129,10 @@ msgstr "Продолжить ветку..." msgid "Continue to next step" msgstr "Перейти к следующему шагу" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Скопировано" msgid "Copied build version to clipboard" msgstr "Версия сборки скопирована в буфер обмена" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Копирует версию сборки в буфер обмена" msgid "Copy" msgstr "Копировать" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Копировать пароль приложения" @@ -2087,8 +2187,8 @@ msgstr "Копировать пароль приложения" msgid "Copy at:// URI" msgstr "Копировать at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Копировать DID автора" @@ -2120,34 +2220,34 @@ msgstr "Копировать ссылку" msgid "Copy link to list" msgstr "Копировать ссылку на список" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Копировать ссылку на пост" #: src/view/com/profile/ProfileMenu.tsx:243 #: src/view/com/profile/ProfileMenu.tsx:254 msgid "Copy link to profile" -msgstr "" +msgstr "Копировать ссылку на профиль" #: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Copy link to starter pack" -msgstr "" +msgstr "Копировать ссылку на стартовый набор" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Копировать текст сообщения" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Копировать at:// URI поста" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Копировать текст поста" @@ -2159,11 +2259,25 @@ msgstr "Копировать QR-код" msgid "Copy TXT record value" msgstr "Копировать значение TXT-записи" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Политика защиты авторского права" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "Не удалось заглушить чат" msgid "Could not process your video" msgstr "Не удалось обработать ваше видео" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Создать" @@ -2195,7 +2317,7 @@ msgstr "Создать QR-код для стартового набора" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Создать стартовый набор" @@ -2205,21 +2327,22 @@ msgstr "Создать для меня стартовый набор" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Регистрация" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Создать учётную запись" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Создать учётную запись" @@ -2241,7 +2364,7 @@ msgstr "Создать ещё один" msgid "Create new account" msgstr "Создать новую учётную запись" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Создать отчёт для {0}" @@ -2268,7 +2391,7 @@ msgstr "Пользовательский" msgid "Customization options" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Настройте, кто может взаимодействовать с этим постом." @@ -2278,12 +2401,12 @@ msgstr "Настройте свой опыт работы с Bluesky" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Тёмная" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Тёмная" @@ -2292,21 +2415,21 @@ msgstr "Тёмная" msgid "Dark mode" msgstr "Тёмный режим" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Тёмная тема" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Дата рождения" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Деактивировать учётную запись" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Настройка модерации" @@ -2314,7 +2437,7 @@ msgstr "Настройка модерации" msgid "Debug panel" msgstr "Панель отладки" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "По умолчанию" @@ -2322,8 +2445,8 @@ msgstr "По умолчанию" msgid "Default icons" msgstr "Иконки по умолчанию" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Иконки по умолчанию" msgid "Delete" msgstr "Удалить" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Удалить учётную запись" @@ -2355,7 +2478,7 @@ msgstr "Удалить пароль для приложения?" msgid "Delete chat" msgstr "Удалить чат" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Удалить запись объявления чата" @@ -2370,7 +2493,7 @@ msgstr "Удалить беседу" msgid "Delete Conversation" msgstr "Удалить беседу" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Удалить для меня" @@ -2378,11 +2501,11 @@ msgstr "Удалить для меня" msgid "Delete list" msgstr "Удалить список" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Удалить сообщение" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Удалите сообщение для меня" @@ -2390,9 +2513,9 @@ msgstr "Удалите сообщение для меня" msgid "Delete my account" msgstr "Удалить мою учётную запись" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Удалить пост" @@ -2409,11 +2532,11 @@ msgstr "Удалить стартовый набор?" msgid "Delete this list?" msgstr "Удалить этот список?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Удалить этот пост?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Удалено" @@ -2422,15 +2545,20 @@ msgstr "Удалено" msgid "Deleted Account" msgstr "Удалённая учётная запись" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Удалённый пост." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Описание" @@ -2440,19 +2568,19 @@ msgstr "Описание слишком длинное" #: src/screens/Profile/Header/EditProfileDialog.tsx:390 msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" -msgstr "" +msgstr "Описание слишком длинное. {DESCRIPTION_MAX_GRAPHEMES, plural, other {Максимальное количество символов равно #.}}" #: src/view/com/composer/GifAltText.tsx:150 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "Описательный альтернативный текст" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Отделить цитату" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Отделить цитату от поста?" @@ -2466,53 +2594,53 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Режим разработчика включен" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Опции разработчика" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Диалог: настройте, кто может взаимодействовать с этим постом" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Тусклая" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242 msgid "Disable 2FA" -msgstr "" +msgstr "Отключить 2FA" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157 msgid "Disable email 2FA" -msgstr "" +msgstr "Отключить 2FA по электронной почте" #: src/screens/Settings/components/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "Отключить 2FA по электронной почте" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Отключить тактильную обратную связь" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Отключить субтитры" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Отключено" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Удалить" @@ -2520,11 +2648,11 @@ msgstr "Удалить" msgid "Discard changes?" msgstr "Удалить изменения?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Удалить черновик?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Удалить пост?" @@ -2542,7 +2670,7 @@ msgstr "Откройте для себя новые ленты" msgid "Discover new custom feeds" msgstr "Откройте для себя новые пользовательские ленты" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Откройте для себя новые ленты" @@ -2550,7 +2678,7 @@ msgstr "Откройте для себя новые ленты" msgid "Dismiss" msgstr "Пропустить" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Пропустить ошибку" @@ -2560,35 +2688,35 @@ msgstr "Пропустить руководство по началу работ #: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "Dismiss interests" +msgstr "Отклонить интересы" + +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:92 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Пропустить этот раздел" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Отображение больших значков альтернативного текста" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Имя" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Имя" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Имя слишком длинное" #: src/screens/Profile/Header/EditProfileDialog.tsx:340 msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" -msgstr "" +msgstr "Отображаемое имя слишком длинное. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {Максимальное количество символов #.}}" #: src/screens/Settings/components/ChangeHandleDialog.tsx:392 #: src/screens/Settings/components/ChangeHandleDialog.tsx:394 @@ -2603,20 +2731,25 @@ msgstr "Не применять это игнорируемое слово к п msgid "Does not include nudity." msgstr "Не содержит обнаженности." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Не начинается или заканчивается дефисом" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Домен проверен!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." -msgstr "" +msgstr "Нет кода или нужен новый? <0>Нажмите здесь." #: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37 msgid "Don't see an email? <0>Click here to resend." +msgstr "Не видите письма? <0>Нажмите здесь, чтобы отправить заново." + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:115 @@ -2660,7 +2793,7 @@ msgstr "Дважды нажмите или зажмите сообщение, ч msgid "Double tap to close the dialog" msgstr "Дважды нажмите, чтобы закрыть диалог" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Дважды нажмите, чтобы поставить лайк" @@ -2673,7 +2806,7 @@ msgstr "Скачать Bluesky" msgid "Download CAR file" msgstr "Скачать CAR файл" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Перетащите и отпустите, чтобы добавить изображение" @@ -2689,18 +2822,10 @@ msgstr "например, alice" msgid "e.g. Alice Lastname" msgstr "например, Алиса Фамилия" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "например, Алиса Робертс" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "например, alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "например, художница, собачница и заядлая читательница." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Например, художественная обнаженность." @@ -2725,10 +2850,11 @@ msgstr "например, Пользователи, неоднократно о msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Каждый код приглашения работает только один раз. Время от времени вы будете получать новые коды." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Редактировать" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Редактировать" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Изменить фото профиля" @@ -2749,19 +2875,19 @@ msgstr "Редактировать ленты" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Редактировать изображение" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Редактировать настройки взаимодействия" #: src/screens/Search/modules/ExploreInterestsCard.tsx:98 #: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Edit interests" -msgstr "" +msgstr "Изменить интересы" #: src/view/screens/ProfileList.tsx:544 msgid "Edit list details" @@ -2770,39 +2896,39 @@ msgstr "Редактировать описание списка" #: src/view/com/profile/ProfileMenu.tsx:317 #: src/view/com/profile/ProfileMenu.tsx:323 msgid "Edit live status" -msgstr "" +msgstr "Изменить статус прямого эфира" #: src/view/com/modals/CreateOrEditList.tsx:228 msgid "Edit Moderation List" msgstr "Редактирование списка" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Редактировать мои ленты" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Редактировать мой профиль" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Редактировать людей" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Редактировать настройки взаимодействия с постом" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Редактировать профиль" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Редактировать профиль" @@ -2814,19 +2940,11 @@ msgstr "Редактировать стартовый набор" msgid "Edit User List" msgstr "Редактировать список пользователей" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Редактировать, кто может отвечать" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Редактировать ваше имя" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Редактировать описание вашего профиля" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Редактировать ваш стартовый набор" @@ -2839,8 +2957,8 @@ msgstr "Образование" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "Либо создатель этого списка заблокировал вас, либо вы заблокировали создателя." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "Электронная почта" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "2FA по электронной почте отключена" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "2FA по электронной почте включена" @@ -2863,15 +2981,11 @@ msgstr "Подтверждение отправлено повторно" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:208 msgid "Email sent!" -msgstr "" - -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "Электронная почта изменена!" +msgstr "Письмо отправлено!" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" -msgstr "" +msgstr "Подтверждение электронной почты завершено!" #: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" @@ -2883,8 +2997,8 @@ msgstr "Встроить HTML-код" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Встроить пост" @@ -2892,7 +3006,7 @@ msgstr "Встроить пост" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Встройте этот пост в Ваш сайт. Просто скопируйте этот скрипт и вставьте его в HTML код вашего сайта." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Встроенный видеоплеер" @@ -2906,29 +3020,33 @@ msgstr "Включено" msgid "Enable {0} only" msgstr "Включить только {0}" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Разрешить содержимое для взрослых" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92 msgid "Enable email 2FA" -msgstr "" +msgstr "Включить 2FA по электронной почте" #: src/components/dialogs/EmbedConsent.tsx:81 #: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "Включить внешние медиа" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Включить медиапроигрыватели для" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Включить приоритетные уведомления" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "Включите уведомления для учётной записи, посетив её профиль и нажав <0>значок колокольчика <1/>." -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "Включить push-уведомления" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Включить субтитры" @@ -2941,17 +3059,14 @@ msgstr "Включить только этот источник" msgid "Enable trending topics" msgstr "Включить актуальные темы" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Включить актуальные видео в ленте Discover" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Включить актуальные видео в ленте Discover." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Включено" @@ -2963,7 +3078,7 @@ msgstr "Конец ленты" msgid "Ensure you have selected a language for each subtitle file." msgstr "Убедитесь, что вы выбрали язык для каждого файла субтитров." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Введите пароль" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Введите слово или тег" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" msgstr "Введите код" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Перейти в полноэкранный режим" @@ -2999,21 +3110,17 @@ msgstr "Введите адрес электронной почты, котор #: src/screens/Login/LoginForm.tsx:218 msgid "Enter the username or email address you used when you created your account" -msgstr "" +msgstr "Введите псевдоним или адрес электронной почты, с которым вы создавали учётную запись" #: src/components/dialogs/BirthDateSettings.tsx:104 msgid "Enter your birth date" msgstr "Введите вашу дату рождения" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Введите адрес электронной почты" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Введите новый адрес электронной почты." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Введите ваш пароль" @@ -3022,7 +3129,7 @@ msgstr "Введите ваш пароль" msgid "Enter your username and password" msgstr "Введите псевдоним и пароль" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Переходит в полноэкранный режим" @@ -3030,16 +3137,28 @@ msgstr "Переходит в полноэкранный режим" msgid "Entertainment" msgstr "Развлечения" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Ошибка" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Произошла ошибка при сохранении файла" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Ошибка получения ответа Captcha." @@ -3047,27 +3166,34 @@ msgstr "Ошибка получения ответа Captcha." msgid "Error:" msgstr "Ошибка:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "Ошибка: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Всех" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Каждый может ответить" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Все могут ответить на этот пост." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Все" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Исключить пользователей, на которых вы msgid "Excludes users you follow" msgstr "Исключает пользователей, на которых вы подписаны" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Выйти из полноэкранного режима" @@ -3106,24 +3232,28 @@ msgstr "Выходит из режима просмотра" msgid "Expand alt text" msgstr "Развернуть альтернативный текст" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Развернуть список пользователей" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Развернуть или свернуть весь пост, на который вы отвечаете" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Разворачивает или сворачивает текст поста" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "Ожидалось, что uri разрешиться в запись" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Экспериментально" @@ -3142,7 +3272,7 @@ msgstr "Истекает через {0}" #: src/components/live/EditLiveDialog.tsx:131 msgid "Expires in {0} at {1}" -msgstr "" +msgstr "Истекает через {0} в {1}" #: src/lib/moderation/useGlobalLabelStrings.ts:47 #: src/lib/moderation/useGlobalLabelStrings.ts:51 @@ -3153,15 +3283,15 @@ msgstr "Откровенный или потенциально проблемн msgid "Explicit sexual images." msgstr "Откровенные сексуальные изображения." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" -msgstr "" +msgstr "Обзор" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Экспорт моих данных" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Внешние медиа" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 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:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Настройка внешних медиа" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "Не удалось принять чат" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "Не удалось добавить эмодзи-реакцию" @@ -3211,8 +3341,8 @@ msgstr "Не удалось изменить пароль приложения. msgid "Failed to create conversation" msgstr "Не удалось создать беседу" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Не удалось создать стартовый набор" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "Не удалось удалить чат" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Не удалось удалить сообщение" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Не удалось удалить пост, попробуйте ещё раз" @@ -3238,8 +3368,8 @@ msgstr "Не удалось удалить пост, попробуйте ещё msgid "Failed to delete starter pack" msgstr "Не удалось удалить стартовый набор" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "Не удалось загрузить беседы" @@ -3250,14 +3380,32 @@ msgstr "Не удалось загрузить беседы" msgid "Failed to load feeds preferences" msgstr "Не удалось загрузить настройки ленты" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Не удалось загрузить GIF-файлы" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "Не удалось загрузить настройки уведомлений." + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Не удалось загрузить предыдущие сообщения" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Не удалось загрузить предложенные лент msgid "Failed to load suggested follows" msgstr "Не удалось загрузить предложенные подписки" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "Не удалось пометить все запросы как прочитанные" @@ -3279,30 +3427,26 @@ msgid "Failed to pin post" msgstr "Не удалось закрепить пост" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "Не удалось удалить эмодзи-реакцию" #: src/components/verification/VerificationRemovePrompt.tsx:34 msgid "Failed to remove verification" -msgstr "" +msgstr "Не удалось снять верификацию" #: src/lib/media/save-image.ts:28 msgid "Failed to save image: {0}" msgstr "Не удалось сохранить изображение: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Не удалось сохранить настройки уведомлений, попробуйте ещё раз" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "Не удалось сохранить настройки. Пожалуйста, попробуйте еще раз." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." -msgstr "" +msgstr "Не удалось сохранить ваши интересы." #: src/components/dms/MessageItem.tsx:310 msgid "Failed to send" @@ -3311,31 +3455,35 @@ msgstr "Не удалось отправить" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122 #: src/components/dialogs/EmailDialog/screens/Verify.tsx:136 msgid "Failed to send email, please try again." -msgstr "" +msgstr "Не удалось отправить письмо на электронную почту, попробуйте ещё раз." #: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "Не удалось подать апелляцию, попробуйте ещё раз." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Не удалось переключить игнорирование ветки, попробуйте ещё раз" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83 msgid "Failed to update email 2FA settings" -msgstr "" +msgstr "Не удалось обновить настройки 2FA электронной почты" #: src/components/dialogs/EmailDialog/screens/Update.tsx:195 msgid "Failed to update email, please try again." -msgstr "" +msgstr "Не удалось обновить электронную почту, попробуйте ещё раз." #: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "Не удалось изменить ленты" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Не удалось изменить настройки" @@ -3348,21 +3496,29 @@ msgstr "Не удалось загрузить видео" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:168 msgid "Failed to verify email, please try again." -msgstr "" +msgstr "Не удалось подтвердить электронную почту, попробуйте ещё раз." #: src/screens/Settings/components/ChangeHandleDialog.tsx:360 msgid "Failed to verify handle. Please try again." msgstr "Не удалось проверить псевдоним. Попробуйте ещё раз." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Лента" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Лента от {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Меню ленты" @@ -3371,35 +3527,39 @@ msgstr "Меню ленты" msgid "Feed toggle" msgstr "Переключатель ленты" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Обратная связь" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Обратная связь отправлена!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Ленты" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Ленты - это алгоритмы, созданные пользователями с некоторым опытом программирования. <0/> для дополнительной информации." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Ленты изменены!" @@ -3428,6 +3588,14 @@ msgstr "Фильтр поиска по языку" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Фильтр поиска по языку (текущий: {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Завершение" @@ -3448,7 +3616,7 @@ msgstr "Найти людей, чтобы подписаться" msgid "Find posts, users, and feeds on Bluesky" msgstr "Найти посты, пользователей и ленты в Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Финиш" @@ -3456,30 +3624,30 @@ msgstr "Финиш" msgid "Fitness" msgstr "Фитнес" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" -msgstr "" +msgstr "Плоский черный" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" -msgstr "" +msgstr "Плоский синий" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" -msgstr "" +msgstr "Плоский белый" #: src/screens/Onboarding/StepFinished.tsx:294 msgid "Flexible" msgstr "Гибкий" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Подписаться" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Подписаться на {0}" @@ -3518,7 +3686,7 @@ msgstr "Подписаться на учётную запись" msgid "Follow all" msgstr "Подписаться на всех" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Подписаться в ответ" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Подписаться в ответ" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Подписаны <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Подписаны <0>{0} и {1, plural, one {# другой} other {# других}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Подписаны <0>{0} и <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Подписаны <0>{0}, <1>{1} и {2, plural, one {# другой} other {# других}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Подписчики @{0}, которых вы знаете" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Подписчики, которых вы знаете" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Подписки" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Подписки" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Подписка на {0}" @@ -3579,8 +3751,8 @@ msgstr "Подписан на {handle}" msgid "Following feed preferences" msgstr "Настройка ленты подписок" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Настройка ленты подписок" @@ -3592,11 +3764,11 @@ msgstr "Подписан на вас" msgid "Follows You" msgstr "Подписан на вас" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Шрифт" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Размер шрифта" @@ -3613,7 +3785,7 @@ msgstr "По соображениям безопасности нам нужно msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "В целях безопасности вы не сможете просмотреть его снова. Если вы потеряете этот пароль приложения, вам придётся сгенерировать новый." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Для наилучшего восприятия мы рекомендуем использовать тематический шрифт." @@ -3643,11 +3815,15 @@ msgstr "Забыли пароль?" msgid "Frequently Posts Unwanted Content" msgstr "Часто публикует неприемлемый контент" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "От" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "От @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "Из <0/>" @@ -3660,16 +3836,70 @@ msgstr "Галерея" msgid "Generate a starter pack" msgstr "Сгенерировать стартовый набор" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Получить помощь" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" -msgstr "" +msgstr "Приступить" #: src/components/ProgressGuide/List.tsx:35 msgid "Getting started" @@ -3688,14 +3918,16 @@ msgstr "Придайте своему профилю лицо" msgid "Glaring violations of law or terms of service" msgstr "Грубые нарушения закона или условий использования" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3733,23 +3965,29 @@ msgstr "Вернуться на главную" #: src/view/com/profile/ProfileMenu.tsx:318 #: src/view/com/profile/ProfileMenu.tsx:325 msgid "Go live" -msgstr "" +msgstr "Выйти в прямой эфир" #: src/components/live/GoLiveDialog.tsx:93 #: src/components/live/GoLiveDialog.tsx:98 #: src/components/live/GoLiveDialog.tsx:232 #: src/components/live/GoLiveDialog.tsx:241 msgid "Go Live" -msgstr "" +msgstr "Выйти в прямой эфир" #: src/components/live/GoLiveDialog.tsx:174 msgid "Go live for" -msgstr "" +msgstr "Выйти в прямой эфир на" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "Перейти в профиль {firstAuthorName}" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Перейти к беседе с {0}" @@ -3779,8 +4017,8 @@ msgstr "Графический медиаконтент" msgid "Half way there!" msgstr "Полпути пройдено!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Псевдоним" @@ -3797,7 +4035,7 @@ msgstr "Псевдоним изменён!" msgid "Handle too long. Please try a shorter one." msgstr "Псевдоним слишком длинный. Пожалуйста, попробуйте более короткий." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Тактильные ощущения" @@ -3806,7 +4044,7 @@ msgstr "Тактильные ощущения" msgid "Harassment, trolling, or intolerance" msgstr "Домогательства, троллинг или нетерпимость" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Хештег" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Хештег {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." -msgstr "" +msgstr "Есть код? <0>Нажмите здесь." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Возникли проблемы?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Справка" @@ -3839,8 +4077,13 @@ msgstr "Чтобы люди знали, что вы не бот, загрузи msgid "Here is your app password!" msgstr "Вот ваш пароль приложения!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Скрыто" @@ -3848,16 +4091,16 @@ msgstr "Скрыто" msgid "Hidden by your moderation settings." msgstr "Скрыто настройками модерации." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Скрытый список" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Скрытый список" msgid "Hide" msgstr "Скрыть" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Скрыть" @@ -3875,31 +4118,31 @@ msgstr "Скрыть" msgid "Hide customization options" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Спрятать пост для меня" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Спрятать ответ для всех" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Спрятать ответ для меня" #: src/screens/Search/modules/ExploreInterestsCard.tsx:110 msgid "Hide this card" -msgstr "" +msgstr "Скрыть эту карту" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Скрыть этот пост?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Скрыть этот ответ?" @@ -3913,45 +4156,45 @@ msgstr "Скрыть актуальные темы" msgid "Hide trending topics?" msgstr "Скрыть актуальные темы?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Скрыть актуальные видео?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Скрыть список пользователей" #: src/screens/Moderation/VerificationSettings.tsx:85 #: src/screens/Moderation/VerificationSettings.tsx:94 msgid "Hide verification badges" -msgstr "" +msgstr "Скрыть значки верификации" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Скрывает содержимое" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Хмм, при связи с сервером ленты возникла какая-то проблема. Пожалуйста, сообщите об этом её владельцу." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Хмм, кажется сервер ленты настроен неправильно. Пожалуйста, сообщите об этом её владельцу." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Хмм, кажется сервер ленты сейчас не работает. Пожалуйста, сообщите об этом её владельцу." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Хмм, сервер ленты прислал нам непонятный ответ. Пожалуйста, сообщите об этом её владельцу." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Хмм, мы не можем найти эту ленту. Возможно она была удалена." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Похоже, у нас возникли проблемы с загрузкой этих данных. Просмотрите детали ниже. Если проблема не исчезнет, пожалуйста, свяжитесь с нами." @@ -3959,15 +4202,15 @@ msgstr "Похоже, у нас возникли проблемы с загру msgid "Hmmmm, we couldn't load that moderation service." msgstr "Хммм, мы не смогли загрузить этот сервис модерации." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Подождите! Мы постепенно даём доступ к видео, и вы всё ещё в очереди. Возвращайтесь позже!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Главная" @@ -3984,10 +4227,10 @@ msgstr "Хостинг-провайдер" msgid "Hot" msgstr "Горячее" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Сначала горячие ответы" @@ -3996,10 +4239,6 @@ msgstr "Сначала горячие ответы" msgid "How should we open this link?" msgstr "Как вы хотите открыть эту ссылку?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Я понял" msgid "If alt text is long, toggles alt text expanded state" msgstr "Раскрывает альтернативный текст, если текст слишком длинный" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Если вы ещё не достигли совершеннолетия в соответствии с законами вашей страны, ваш родитель или юридический опекун должен прочитать эти Условия от вашего имени." @@ -4031,22 +4270,26 @@ msgstr "Если вы удалите этот список, вы не сможе msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Если у вас есть собственный домен, вы можете использовать его в качестве своего псевдонима. Это позволит вам самостоятельно подтвердить свою личность. <0> Узнайте больше здесь." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." -msgstr "" +msgstr "Если вам нужно обновить электронную почту, <0>нажмите здесь." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Если вы удалите этот пост, вы не сможете его восстановить." #: src/components/dialogs/EmailDialog/screens/Update.tsx:208 msgid "If you update your email address, email 2FA will be disabled." -msgstr "" +msgstr "Если вы обновите адрес электронной почты, 2FA по электронной почте будет отключена." #: src/view/com/modals/ChangePassword.tsx:160 msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Если вы хотите изменить пароль, мы отправим вам код, чтобы убедиться, что это ваша учётная запись." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "Если вы разработчик, вы можете разместить свой собственный сервер." @@ -4066,20 +4309,20 @@ msgstr "Изображение" #: src/screens/Settings/AboutSettings.tsx:64 msgid "Image cache cleared" -msgstr "" +msgstr "Кэш изображений очищен" #. Android-only toast message which includes amount of space freed using localized number formatting #: src/screens/Settings/AboutSettings.tsx:50 msgid "Image cache cleared, freed {0}" -msgstr "" +msgstr "Кэш изображений очищен, освобождено {0}" #: src/lib/media/save-image.ts:26 msgid "Image saved" -msgstr "" +msgstr "Изображение сохранено" #: src/lib/media/save-image.ts:45 msgid "Images cannot be saved unless permission is granted to access your photo library." -msgstr "" +msgstr "Изображения не могут быть сохранены, если у приложения нет разрешения на доступ к галерее." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49 #: src/lib/moderation/useReportOptions.ts:49 @@ -4091,13 +4334,41 @@ msgstr "Выдавание себя за другое лицо или ложны msgid "Impersonation, misinformation, or false claims" msgstr "Выдача себя за другого, дезинформация или ложные заявления" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Неприемлемые сообщения или откровенные ссылки" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "Почтовый ящик пуст!" @@ -4105,7 +4376,7 @@ msgstr "Почтовый ящик пуст!" msgid "Incorrect username or password" msgstr "Неверный псевдоним или пароль" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Введите код, отправленный на вашу электронную почту для сброса пароля" @@ -4113,7 +4384,7 @@ msgstr "Введите код, отправленный на вашу элект msgid "Input confirmation code for account deletion" msgstr "Введите код подтверждения для удаления учётной записи" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Введите новый пароль" @@ -4129,10 +4400,14 @@ msgstr "Введите код, который был отправлен вам msgid "Interaction limited" msgstr "Взаимодействие ограничено" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Настройки взаимодействия" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Неверный код подтверждения 2FA." msgid "Invalid handle. Please try a different one." msgstr "Недопустимый псевдоним. Пожалуйста, попробуйте другой." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Неверный или неподдерживаемый пост" @@ -4158,7 +4433,7 @@ msgstr "Неверный код подтверждения" msgid "Invite a Friend" msgstr "Пригласить друга" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Код приглашения" @@ -4186,15 +4461,15 @@ msgstr "Пригласите друзей, чтобы они подписали msgid "Invites, but personal" msgstr "Приглашения, но личные" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Он правильный" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Сейчас здесь только вы! Добавьте больше людей в свой стартовый набор, воспользовавшись поиском выше." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "ID вакансии: {0}" @@ -4220,11 +4495,27 @@ msgstr "Присоединиться к беседе" msgid "Journalism" msgstr "Журналистика" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Отмечен {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Метка добавлена автором." @@ -4237,7 +4528,7 @@ msgstr "Метки" msgid "Labels added" msgstr "Метки добавлены" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Метки являются аннотациями для пользователей и контента. Они могут использоваться для скрытия, предупреждения и категоризации сети." @@ -4253,22 +4544,30 @@ msgstr "Метки на вашем контенте" msgid "Language selection" msgstr "Выбор языка" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Настройки языка" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Языки" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Увеличенный" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Недавние" @@ -4282,7 +4581,6 @@ msgstr "узнать больше" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "Узнать больше" @@ -4290,6 +4588,10 @@ msgstr "Узнать больше" msgid "Learn More" msgstr "Узнать больше" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Узнайте больше о Bluesky" @@ -4298,15 +4600,23 @@ msgstr "Узнайте больше о Bluesky" msgid "Learn more about self hosting your PDS." msgstr "Узнайте больше о самостоятельном хостинге PDS." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "Узнайте больше о модерации, применяемой к этому содержимому" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Узнайте больше о том, какая модерация применима к этому содержимому." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Узнать больше об этом предупреждении" @@ -4314,14 +4624,18 @@ msgstr "Узнать больше об этом предупреждении" #: src/components/verification/VerificationsDialog.tsx:150 #: src/components/verification/VerifierDialog.tsx:117 msgid "Learn more about verification on Bluesky" -msgstr "" +msgstr "Узнайте больше о верификации на Bluesky" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Узнать больше о том, что является публичным в Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Узнать больше." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Выйти из беседы" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Оставьте их все неотмеченными, чтобы видеть посты независимо от языка." +msgid "Leave them all unselected to see any language." +msgstr "Оставьте их все невыбранными, чтобы просмотреть любой язык." -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Вы покидаете Bluesky" @@ -4370,7 +4685,7 @@ msgstr "Взлетаем!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Светлая" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Лайк" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Лайк ({0, plural, one {# лайк} few {# лайка} other {# лайков}})" @@ -4397,16 +4712,20 @@ msgstr "Лайкните 10 постов" msgid "Like 10 posts to train the Discover feed" msgstr "Лайкните 10 постов, чтобы обучить ленту Discover" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Лайкнуть эту ленту" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272 msgid "Like this labeler" -msgstr "" +msgstr "Лайкнуть этот маркировщик" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Понравилось" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Понравился пользователю" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Понравилось {0, plural, one {# пользователю} other {# пользователям}}" @@ -4428,20 +4747,36 @@ msgstr "Понравилось {0, plural, one {# пользователю} othe msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Понравилось {likeCount, plural, one {# пользователю} other {# пользователям}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Нравится" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Лайки этого поста" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Линейно" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Список" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Список заблокирован" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Список от {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "Список от <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Список от вас" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Список больше не игнорируется" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Списки" @@ -4515,18 +4854,18 @@ msgstr "Списки, блокирующие этого пользователя #. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters #: src/components/live/LiveIndicator.tsx:46 msgid "LIVE" -msgstr "" +msgstr "ПРЯМОЙ ЭФИР" #: src/components/live/LiveStatusDialog.tsx:215 msgid "Live feature is in beta testing" -msgstr "" +msgstr "Функция прямого эфира находится в стадии бета-тестирования" #: src/components/live/EditLiveDialog.tsx:148 #: src/components/live/EditLiveDialog.tsx:152 #: src/components/live/GoLiveDialog.tsx:124 #: src/components/live/GoLiveDialog.tsx:128 msgid "Live link" -msgstr "" +msgstr "Прямая ссылка" #: src/screens/Search/Explore.tsx:86 msgid "Load more" @@ -4537,7 +4876,7 @@ msgstr "Загрузить больше" msgid "Load more suggested feeds" msgstr "Загрузить больше предлагаемых лент" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Загрузить новые уведомления" @@ -4552,11 +4891,11 @@ msgstr "Загрузить новые посты" msgid "Loading..." msgstr "Загрузка..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Отчёт" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Видимость для пользователей без учётной записи" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Логотип @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Логотип от <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Логотип от <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Длительное нажатие открывает меню тегов для #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Выглядит как XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "" msgid "Make one for me" msgstr "Сделать один для меня" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Убедитесь, что это действительно тот сайт, который вы собираетесь посетить!" @@ -4606,17 +4945,17 @@ msgstr "Убедитесь, что это действительно тот са msgid "Manage saved feeds" msgstr "Управление сохранёнными лентами" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" -msgstr "" +msgstr "Управляйте настройками верификации" #: src/components/dialogs/MutedWords.tsx:108 msgid "Manage your muted words and tags" msgstr "Настраивайте ваши игнорируемые слова и теги" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "Отметить все как прочитанные" @@ -4625,17 +4964,15 @@ msgstr "Отметить все как прочитанные" msgid "Mark as read" msgstr "Отметить как прочитанное" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "Все сообщения отмечены как прочитанные" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" -msgstr "" +msgstr "Возможно, позже" #: src/view/screens/Profile.tsx:227 msgid "Media" @@ -4645,19 +4982,26 @@ msgstr "Медиа" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Медиа, которые могут вызывать беспокойство или быть неприемлемыми для некоторых аудиторий." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "упомянутые пользователи" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Упомянутых пользоватей" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Упоминания" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Меню" @@ -4665,7 +5009,7 @@ msgstr "Меню" msgid "Message {0}" msgstr "Сообщение {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Сообщение удалено" @@ -4674,11 +5018,11 @@ msgstr "Сообщение удалено" msgid "Message deleted" msgstr "Сообщение удалено" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "Сообщение от @{0}: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Сообщение от сервера: {0}" @@ -4691,17 +5035,21 @@ msgstr "Поле ввода сообщения" msgid "Message is too long" msgstr "Сообщение слишком длинное" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" -msgstr "" +msgstr "Параметры сообщений" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Сообщения" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" +msgstr "Полночь" + +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 @@ -4714,10 +5062,10 @@ msgstr "Ложная учётная запись" msgid "Misleading Post" msgstr "Ложный пост" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Модерация" @@ -4725,17 +5073,17 @@ msgstr "Модерация" msgid "Moderation details" msgstr "Детали модерации" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Список модерации от {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Список модерации от <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Список модерации от вас" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Список модерации изменён" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Списки модерации" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Списки модерации" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "настройка модерации" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Статус модерации" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Инструменты модерации" @@ -4775,7 +5123,7 @@ msgstr "Инструменты модерации" msgid "Moderator has chosen to set a general warning on the content." msgstr "Модератор решил установить общее предупреждение на контент." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Больше" @@ -4790,13 +5138,13 @@ msgstr "Больше лент" msgid "More options" msgstr "Дополнительные опции" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "По количеству лайков" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "По количеству лайков" @@ -4808,8 +5156,8 @@ msgstr "Кино" msgid "Music" msgstr "Музыка" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Игнорировать" @@ -4819,8 +5167,8 @@ msgstr "Игнорировать" msgid "Mute {tag}" msgstr "Игнорировать {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Игнорировать это слово только в тегах" msgid "Mute this word until you unmute it" msgstr "Игнорировать это слово пока вы его не включите" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Игнорировать ветку" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Игнорировать слова и теги" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Игнорируемые учётные записи" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Игнорируемые учётные записи" @@ -4898,7 +5246,7 @@ msgstr "Игнорируемые учётные записи автоматич msgid "Muted by \"{0}\"" msgstr "Проигнорировано списком \"{0}\"" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Игнорируемые слова и теги" @@ -4911,7 +5259,7 @@ msgstr "Игнорирование является приватным. Игно msgid "My Birthday" msgstr "Моя дата рождения" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Мои ленты" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Природа" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Перейти к {0}" @@ -4958,11 +5306,11 @@ msgstr "Переходит к следующему экрану" msgid "Navigates to your profile" msgstr "Переходит к вашему профилю" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Нужно изменить его?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Хотите сообщить о нарушении авторских прав?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Новый" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Новый чат" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" -msgstr "" +msgstr "Новый адрес электронной почты" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" +msgstr "Новая функция" + +#: src/Navigation.tsx:467 +msgid "New follower notifications" msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "Новые подписчики" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Новые сообщения" msgid "New Moderation List" msgstr "Новый список модерации" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Новый пароль" @@ -5029,7 +5396,7 @@ msgstr "Новый Пароль" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Новый пост" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Новый пост" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Новый диалог информации о пользователе" @@ -5054,10 +5429,14 @@ msgstr "Новый диалог информации о пользователе msgid "New User List" msgstr "Новый список пользователей" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Сначала самые новые" @@ -5071,15 +5450,15 @@ msgstr "Новости" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5100,9 +5479,9 @@ msgstr "Нет панели DNS" #: src/components/live/EditLiveDialog.tsx:140 msgid "No expiry set" -msgstr "" +msgstr "Нет срока действия" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Не найдено ни одного тематического GIF. Возможно, возникла проблема с Tenor." @@ -5112,39 +5491,42 @@ msgstr "Не найдено ни одной ленты. Попробуйте п #: src/components/live/LinkPreview.tsx:63 msgid "No image" -msgstr "" +msgstr "Нет изображения" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 msgid "No likes yet" msgstr "Пока нет лайков" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Вы больше не подписаны на {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "Не длиннее {MAX_SERVICE_HANDLE_LENGTH, plural, one {# символа} other {# символов}}" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Сообщения пока отсутствуют" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Ещё никаких уведомлений!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Никого" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Никто, кроме автора, не может цитировать этот пост." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Пока нет постов." @@ -5169,9 +5551,9 @@ msgstr "Нет результатов" #: src/screens/Search/Explore.tsx:786 msgid "No results for \"{0}\"." -msgstr "" +msgstr "Ничего не найдено для \"{0}\"." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Нет результатов" @@ -5179,17 +5561,17 @@ msgstr "Нет результатов" msgid "No results found for \"{query}\"" msgstr "Ничего не найдено по запросу \"{query}\"" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Ничего не найдено по запросу \"{query}\"" #: src/screens/Search/Explore.tsx:790 msgid "No results." -msgstr "" +msgstr "Нет результатов." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Результаты поиска по запросу \"{search}\" не найдены." @@ -5198,7 +5580,7 @@ msgstr "Результаты поиска по запросу \"{search}\" не msgid "No thanks" msgstr "Нет, спасибо" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Никого" @@ -5223,59 +5605,76 @@ msgstr "Никто не найден. Попробуйте поискать ко msgid "Non-sexual Nudity" msgstr "Несексуальная обнажённость" -#: src/components/KnownFollowers.tsx:255 -msgid "Not followed by anyone you're following" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" msgstr "" -#: src/Navigation.tsx:139 +#: src/components/KnownFollowers.tsx:259 +msgid "Not followed by anyone you're following" +msgstr "Нет в подписках у тех, на кого подписаны вы" + +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Не найдено" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Примечание по распространению" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Примечание: Bluesky является открытой и публичной сетью. Этот параметр ограничивает видимость вашего содержимого только в приложениях и на сайте Bluesky, но другие приложения могут этого не придерживаться. Ваш контент все ещё может быть показан посетителям без учётной записи другими приложениями и веб-сайтами." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Тут ничего нет" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Фильтры уведомлений" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Настройки уведомления" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Настройки уведомления" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Звуки уведомлений" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Звуки уведомлений" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Уведомления" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "сейчас" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Нагота или материалы для взрослых не помечены соответствующим образом" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Отключено" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "О нет!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "ОК" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Хорошо" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Сначала самые старые" @@ -5331,19 +5736,19 @@ msgstr "Сначала самые старые" msgid "on<0><1/><2><3/>" msgstr "на<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Сброс настроек" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "В одном или нескольких GIF-файлах отсутствует альтернативный текст." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Для одного или нескольких изображений отсутствует альтернативный текст." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "В одном или нескольких видео отсутствует альтернативный текст." @@ -5351,13 +5756,15 @@ msgstr "В одном или нескольких видео отсутству msgid "Only .jpg and .png files are supported" msgstr "Поддерживаются только файлы .jpg и .png" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Только {0} могут отвечать." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Только буквы, цифры и дефис" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Поддерживаются только файлы изображен msgid "Only WebVTT (.vtt) files are supported" msgstr "Поддерживаются только файлы WebVTT (.vtt)" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Ой, что-то пошло не так!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Ой!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Открыть выдвижное меню" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Открыть подборщик эмодзи" @@ -5416,7 +5822,7 @@ msgstr "Открыть меню настроек ленты" msgid "Open full emoji list" msgstr "Открыть полный список эмодзи" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Открыть ссылку на {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Открыть ссылку на {niceUrl}" msgid "Open message options" msgstr "Открыть параметры сообщений" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Открыть страницу отладки модерации" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Открыть настройки игнорирования слов и тегов" @@ -5443,26 +5849,26 @@ msgstr "Открыть меню настроек поста" #: src/components/live/LiveStatusDialog.tsx:189 #: src/components/live/LiveStatusDialog.tsx:203 msgid "Open profile" -msgstr "" +msgstr "Открыть профиль" #: src/components/PostControls/ShareMenu/index.tsx:87 msgid "Open share menu" -msgstr "" +msgstr "Открыть меню общего доступа" #: src/screens/StarterPack/StarterPackScreen.tsx:566 msgid "Open starter pack menu" msgstr "Открыть меню стартового набора" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Открыть страницу историй" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Открыть системный журнал" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Открывает меню с {numItems} опциями" @@ -5490,11 +5896,11 @@ msgstr "Открывает камеру на устройстве" msgid "Opens captions and alt text dialog" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Открывает диалог изменения псевдонима" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Открывает редактор" @@ -5502,7 +5908,7 @@ msgstr "Открывает редактор" msgid "Opens device photo gallery" msgstr "Открывает фотогалерею устройства" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Открывает подборщик эмодзи" @@ -5520,28 +5926,28 @@ msgstr "Открывается процесс входа в существующ msgid "Opens GIF select dialog" msgstr "Открывает диалоговое окно выбора GIF" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Открывает службу поддержки в браузере" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Открывает список кодов приглашения" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" -msgstr "" +msgstr "Открывает диалоговое окно статуса прямого эфира" #: src/screens/Login/LoginForm.tsx:249 msgid "Opens password reset form" msgstr "Открывает форму сброса пароля" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Открывает ссылку" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Открывает этот профиль" @@ -5558,7 +5964,7 @@ msgstr "По желанию предоставьте дополнительну msgid "Options:" msgstr "Варианты:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Или какие-то из следующих вариантов:" @@ -5600,6 +6006,10 @@ msgstr "Другая учётная запись" msgid "Other..." msgstr "Другие..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "Наша команда модерации получила вашу жалобу." @@ -5608,7 +6018,7 @@ msgstr "Наша команда модерации получила вашу ж msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Наши модераторы рассмотрели сообщения и решили отключить вам доступ к чатам на Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Страница не найдена" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Страница не найдена" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Пароль изменён" msgid "Password updated!" msgstr "Пароль изменён!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Приостановить" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Приостановить видео" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Люди" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Люди, на которых подписан(а) @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Люди, которые подписаны на @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "" @@ -5704,12 +6119,12 @@ msgstr "Закрепить на главной странице" msgid "Pin to Home" msgstr "Закрепить на главной странице" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Закрепить в своём профиле" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Закреплён" @@ -5718,46 +6133,46 @@ msgstr "Закреплён" msgid "Pinned {0} to Home" msgstr "Прикреплено {0} к главной странице" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" -msgstr "Закреплённые ленты" +msgstr "Закрепленные ленты" #: src/view/screens/ProfileList.tsx:361 msgid "Pinned to your feeds" msgstr "Закрепить в своих лентах" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Воспроизвести" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Воспроизвести {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Воспроизвести видео" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Воспроизвести видео" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Воспроизводит или приостанавливает GIF" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Воспроизводит или приостанавливает видео" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Воспроизводит GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Воспроизводит видео" @@ -5765,12 +6180,16 @@ msgstr "Воспроизводит видео" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Пожалуйста, выберите псевдоним." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Пожалуйста, выберите ваш пароль." @@ -5782,7 +6201,8 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Пожалуйста, завершите проверку Captcha." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Пожалуйста, проверьте, правильно ли вы ввели свой адрес электронной почты." @@ -5802,17 +6222,22 @@ msgstr "Пожалуйста, введите уникальное имя для #: src/components/dialogs/EmailDialog/screens/Update.tsx:135 #: src/components/dialogs/EmailDialog/screens/Verify.tsx:145 msgid "Please enter a valid code." -msgstr "" +msgstr "Пожалуйста, введите правильный код." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." -msgstr "" +msgstr "Пожалуйста, введите действительный адрес электронной почты." #: src/components/dialogs/MutedWords.tsx:86 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Пожалуйста, введите допустимое слово, тег или фразу для игнорирования" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "" #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Пожалуйста, введите адрес электронной почты." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Пожалуйста, введите код приглашения." @@ -5853,13 +6278,26 @@ msgstr "Пожалуйста, объясните, почему вы считае msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Пожалуйста, объясните, почему вы считаете, что ваши чаты были неправильно отключены" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" -msgstr "" +msgstr "Пожалуйста, выберите службу модерации" #: src/components/moderation/ReportDialog/action.ts:28 msgid "Please select a reason for this report" -msgstr "" +msgstr "Выберите причину жалобы" #: src/lib/hooks/useAccountSwitcher.ts:45 #: src/lib/hooks/useAccountSwitcher.ts:55 @@ -5868,12 +6306,12 @@ msgstr "Пожалуйста, войдите под именем @{0}" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62 msgid "Please verify your email" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" msgstr "Подтвердите свой адрес электронной почты" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" + #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:235 @@ -5884,33 +6322,38 @@ msgstr "Политика" msgid "Porn" msgstr "Порнография" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Опубликовать" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Пост" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Опубликовать" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Опубликовать все" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Пост от {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Пост от @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Пост удалён" @@ -5919,11 +6362,14 @@ msgstr "Пост удалён" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Не удалось загрузить пост. Проверьте подключение к Интернету и повторите попытку." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "Пост был удалён" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Пост скрыт" @@ -5937,11 +6383,11 @@ msgstr "Пост скрыт из-за игнорированного слова" msgid "Post Hidden by You" msgstr "Вы скрыли этот пост" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Настройки взаимодействия с постом" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Настройки взаимодействия с постом" @@ -5954,8 +6400,10 @@ msgstr "Язык поста" msgid "Post Languages" msgstr "Языки поста" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Пост не найден" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Пост откреплён" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Посты" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Посты могут быть проигнорированы на основании их текста, тегов или того и другого. Мы рекомендуем избегать общих слов, которые встречаются во многих постах, так как это может привести к тому, что никакие посты не будут показаны." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Посты скрыты" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Потенциально обманчивая ссылка" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Настройки сохранены" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Нажмите для попытки повторного подключения" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Нажмите, чтобы повторить попытку" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Нажмите, чтобы просмотреть подписчиков этой учётной записи, на которых вы также подписаны" @@ -6015,40 +6469,46 @@ msgstr "Предварительное изображение" msgid "Primary Language" msgstr "Основной язык" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Подписчики в приоритете" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Приоритетные уведомления" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Конфиденциальность" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Конфиденциальность и безопасность" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Конфиденциальность и безопасность" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Политика конфиденциальности" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Обработка видео..." @@ -6062,15 +6522,14 @@ msgstr "Обработка..." msgid "profile" msgstr "профиль" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Профиль" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Профиль изменён" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Публичные, доступные для обмена списки, которые могут использоваться для формирования лент." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "Опубликовать пост" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "Опубликовать посты" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "Опубликовать ответы" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "Опубликовать ответ" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "Push-уведомления" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "QR-код скопирован в ваш буфер обмена!" @@ -6119,44 +6594,52 @@ msgstr "QR-код был скачан!" msgid "QR code saved to your camera roll!" msgstr "QR-код сохранён в папке камеры!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Цитировать пост" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "Пост с цитатой был повторно прикреплён" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "Пост с цитатой был успешно отсоединён" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Цитирование постов отключено" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Настройки цитирования" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Цитаты" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Цитаты из этого поста" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "В случайном порядке (он же \"Poster's Roulette\")" @@ -6164,8 +6647,8 @@ msgstr "В случайном порядке (он же \"Poster's Roulette\")" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Лимит превышен - вы пытались сменить псевдоним слишком много раз за короткий промежуток времени. Пожалуйста, подождите минуту, прежде чем повторить попытку." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Прикрепить цитату заново" @@ -6177,30 +6660,42 @@ msgstr "Отреагировать с {emoji}" msgid "Reactivate your account" msgstr "Реактивировать свою учётную запись" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" -msgstr "" +msgstr "Прочитать пост в блоге" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Читать меньше" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Читать больше" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Прочтите блог Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Прочтите политику конфиденциальности Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Прочтите условия предоставления услуг Bluesky" @@ -6213,6 +6708,14 @@ msgstr "Причина обращения" msgid "Reason:" msgstr "Причина:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Последние запросы" @@ -6234,8 +6737,8 @@ msgstr "Отклонить" msgid "Reject chat request" msgstr "Отклонить запрос на беседу" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Перезагрузить беседы" @@ -6244,10 +6747,9 @@ msgstr "Перезагрузить беседы" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Удалить" @@ -6259,17 +6761,17 @@ msgstr "Удалить {displayName} из стартового набора" msgid "Remove {historyItem}" msgstr "Убрать {historyItem}" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Удалить учётную запись" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Удалить вложение" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Удалить аватар" @@ -6284,24 +6786,22 @@ msgstr "Удалить встраивание" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Удалить ленту" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Удалить ленту?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Удалить из моих лент" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Удалить из быстрого доступа?" @@ -6311,18 +6811,17 @@ msgid "Remove from saved feeds" msgstr "Удалить из сохранённых лент" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "Удалить из ваших лент?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Удалить изображение" #: src/components/live/EditLiveDialog.tsx:240 #: src/components/live/EditLiveDialog.tsx:247 msgid "Remove live status" -msgstr "" +msgstr "Убрать статус прямого эфира" #: src/components/dialogs/MutedWords.tsx:523 msgid "Remove mute word from your list" @@ -6332,12 +6831,8 @@ msgstr "Удалить игнорируемые слова из вашего с msgid "Remove profile" msgstr "Удалить профиль" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Убрать цитату" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Удалить репост" @@ -6345,30 +6840,30 @@ msgstr "Удалить репост" msgid "Remove subtitle file" msgstr "Удалить файл субтитров" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Удалить эту ленту из сохранённых лент" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157 msgid "Remove user from list" -msgstr "" +msgstr "Удалить пользователя из списка" #: src/components/verification/VerificationRemovePrompt.tsx:46 #: src/components/verification/VerificationsDialog.tsx:247 #: src/view/com/profile/ProfileMenu.tsx:336 #: src/view/com/profile/ProfileMenu.tsx:339 msgid "Remove verification" -msgstr "" +msgstr "Удаление верификации" #: src/components/verification/VerificationRemovePrompt.tsx:44 msgid "Remove your verification for this account?" -msgstr "" +msgstr "Удалить верификацию для этой учётной записи?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Удалено автором" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Удалено вами" @@ -6377,10 +6872,6 @@ msgstr "Удалено вами" msgid "Removed from list" msgstr "Удалено из списка" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Удалено из моих лент" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Удалено из сохранённых лент" @@ -6393,36 +6884,38 @@ msgstr "Удалено из моих лент" #: src/components/verification/VerificationRemovePrompt.tsx:32 msgid "Removed verification" -msgstr "" - -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Удаляет процитированный пост" +msgstr "Удаление верификации" #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Заменить на Discover" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Ответы" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Ответы отключены" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Ответы на этот пост отключены." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Ответить" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Ответить ({0, plural, one {# ответ} few {# ответа} other {# ответов}})" @@ -6436,50 +6929,55 @@ msgstr "Ответ скрыт автором ветки" msgid "Reply Hidden by You" msgstr "Ответ скрыт вами" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Настройки ответов" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "Настройки ответов выбирает автор ветки" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Сортировка ответов" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Ответить на <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Ответ на заблокированный пост" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Ответ на пост" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Ответил вам" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Видимость ответа изменена" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Ответ был успешно скрыт" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Пожаловаться на ленту" msgid "Report list" msgstr "Пожаловаться на список" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Пожаловаться на сообщение" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Пожаловаться на пост" @@ -6567,25 +7065,26 @@ msgstr "Пожаловаться на этот стартовый набор" msgid "Report this user" msgstr "Пожаловаться на этого пользователя" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Репостнуть" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Репостнуть" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Репостнуть ({0, plural, one {# репост} few {# репоста} other {# репостов}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Репостить или цитировать" @@ -6594,26 +7093,38 @@ msgstr "Репостить или цитировать" msgid "Reposted By" msgstr "Сделали репост" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "{0} сделал(а) репост" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Репост от <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Вы сделали репост" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Репосты этого поста" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" msgstr "" #: src/view/com/modals/ChangePassword.tsx:253 @@ -6621,8 +7132,8 @@ msgstr "" msgid "Request Code" msgstr "Отправить запрос на код" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Требовать альтернативный текст изображений перед публикацией" @@ -6630,7 +7141,7 @@ msgstr "Требовать альтернативный текст изобра msgid "Require an email code to sign in to your account." msgstr "Требовать код с электронной почты для входа в учётную запись." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Требуется этим хостинг-провайдером" @@ -6640,12 +7151,8 @@ msgstr "Требуется в вашем регионе" #: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40 msgid "Resend" -msgstr "" +msgstr "Отправить повторно" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Отправить письмо повторно" msgid "Resend Verification Email" msgstr "Отправить письмо с подтверждением повторно" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Код подтверждения" @@ -6667,8 +7180,8 @@ msgstr "Код подтверждения" msgid "Reset Code" msgstr "Код сброса" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Сбросить состояние входа в систему" @@ -6687,21 +7200,23 @@ msgstr "Повторяет последнее действие, которое #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Повторить попытку" @@ -6721,19 +7236,19 @@ msgstr "Возвращает на главную страницу" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Возвращает к предыдущей странице" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Возвращает к предыдущему шагу" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Возвращает к предыдущему шагу" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Сохранить" @@ -6762,15 +7276,13 @@ msgstr "Сохранить" msgid "Save birthday" msgstr "Сохранить дату рождения" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Сохранить изменения" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Сохранить изменения" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Сохранить QR-код" msgid "Save to my feeds" msgstr "Сохранить в мои ленты" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Сохранённые ленты" @@ -6802,18 +7314,14 @@ msgstr "Сохранённые ленты" msgid "Saved to your feeds" msgstr "Сохранено в ваши ленты" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Сохраняет изменения вашего профиля" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Сохраняет настройки обрезки изображения" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Скажи привет!" @@ -6826,16 +7334,16 @@ msgstr "Наука" msgid "Scroll to top" msgstr "Пролистать вверх" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Поиск" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Поиск постов @{0}" @@ -6861,13 +7369,13 @@ msgstr "Искать \"{query}\"" msgid "Search for \"{searchText}\"" msgstr "Поиск \"{searchText}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Поиск лент, которые вы хотите предложить другим." #: src/screens/Search/Explore.tsx:360 msgid "Search for more accounts" -msgstr "" +msgstr "Поиск других учетных записей" #: src/screens/Search/Explore.tsx:437 msgid "Search for more feeds" @@ -6877,10 +7385,14 @@ msgstr "Найдите больше лент" msgid "Search for posts, users, or feeds" msgstr "Поиск по постам, пользователям или лентам" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Поиск GIF-файлов" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Поиск по моим постам" @@ -6890,12 +7402,12 @@ msgstr "Поиск по моим постам" msgid "Search posts" msgstr "Поиск постов" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Поиск профилей" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Поиск в Tenor" @@ -6903,7 +7415,7 @@ msgstr "Поиск в Tenor" msgid "Search..." msgstr "Поиск..." -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Ищет профили" @@ -6912,10 +7424,6 @@ msgstr "Ищет профили" msgid "Security step required" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Требуется код подтверждения" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "Посмотреть посты {tag}" @@ -6936,14 +7444,31 @@ msgstr "Просмотреть посты пользователя #{tag}" msgid "See jobs at Bluesky" msgstr "Посмотреть вакансии в Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Просмотрите это руководство" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Ползунок перемещения. Используйте клавиши со стрелками для перемещения вперёд и назад и пробел для воспроизведения/паузы" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Выбрать цвет" @@ -6954,7 +7479,7 @@ msgstr "Выбрать учётную запись" #: src/components/AppLanguageDropdown.tsx:60 msgid "Select an app language" -msgstr "" +msgstr "Выберите язык приложения" #: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 msgid "Select an avatar" @@ -6966,11 +7491,11 @@ msgstr "Выбрать эмодзи" #: src/components/Select/index.tsx:204 msgid "Select an option" -msgstr "" +msgstr "Выберите опцию" #: src/screens/Settings/LanguageSettings.tsx:98 msgid "Select app language" -msgstr "" +msgstr "Выберите язык приложения" #: src/screens/Settings/LanguageSettings.tsx:164 msgid "Select content languages" @@ -6978,7 +7503,7 @@ msgstr "Выберите языки содержимого" #: src/components/live/GoLiveDialog.tsx:179 msgid "Select duration" -msgstr "" +msgstr "Выберите продолжительность" #: src/screens/Login/index.tsx:144 msgid "Select from an existing account" @@ -6988,7 +7513,7 @@ msgstr "Выбрать существующую учётную запись" msgid "Select GIF" msgstr "Выбрать GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Выбрать GIF \"{0}\"" @@ -6996,6 +7521,11 @@ msgstr "Выбрать GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "Выберите, на какое время игнорировать это слово." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Выбрать язык..." @@ -7004,9 +7534,9 @@ msgstr "Выбрать язык..." msgid "Select languages" msgstr "Выбрать языки" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" -msgstr "" +msgstr "Выберите службу модерации" #: src/components/ReportDialog/SelectLabelerView.tsx:28 msgid "Select moderator" @@ -7014,7 +7544,7 @@ msgstr "Выберите модератора" #: src/screens/Settings/LanguageSettings.tsx:131 msgid "Select primary language" -msgstr "" +msgstr "Выберите основной язык" #: src/view/com/composer/videos/SubtitleFilePicker.tsx:59 #: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 @@ -7045,12 +7575,12 @@ msgstr "Выберите язык, который будет использов msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Выберите языки, на которых будут отображаться подписанные вами ленты. Если вы не выберете ни одного языка, будут отображаться все языки." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Выберите дату рождения" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Выберите ваши интересы из нижеприведённых вариантов" @@ -7058,7 +7588,11 @@ msgstr "Выберите ваши интересы из нижеприведён msgid "Select your preferred language for translations in your feed." msgstr "Выберите желаемый язык для переводов в вашей ленте." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "Выбирает опцию {0} из {numItems}" @@ -7066,17 +7600,9 @@ msgstr "Выбирает опцию {0} из {numItems}" msgid "Send a neat website!" msgstr "Отправьте прикольный сайт!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Отправить подтверждение по электронной почте" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Отправить электронное письмо" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Отправить электронное письмо" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Отправить отзыв" @@ -7095,9 +7621,9 @@ msgstr "Отправить отзыв" msgid "Send message" msgstr "Отправить сообщение" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" -msgstr "" +msgstr "Отправить пост {name}" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." @@ -7114,20 +7640,20 @@ msgstr "Пожаловаться" msgid "Send report to {0}" msgstr "Отправить жалобу в {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "Отправить жалобу в {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Отправьте письмо с подтверждением" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Отправить личным сообщением" @@ -7143,7 +7669,7 @@ msgstr "Адреса сервера" msgid "Set app icon to {0}" msgstr "Установите иконку приложения на {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Добавить дату рождения" @@ -7159,13 +7685,57 @@ msgstr "Настройте вашу учётную запись" msgid "Sets email for password reset" msgstr "Устанавливает адрес электронной почты для сброса пароля" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Настройки" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,35 +7770,30 @@ msgstr "Поделитесь классной историей!" msgid "Share a fun fact!" msgstr "Поделитесь забавным фактом!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Всё равно поделиться" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" -msgstr "" +msgstr "Поделиться DID автора" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Поделиться ссылкой" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Поделиться ссылкой" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Диалоговое окно обмена ссылками" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" -msgstr "" +msgstr "Поделиться at:// URI поста" #: src/components/StarterPack/ShareDialog.tsx:115 #: src/components/StarterPack/ShareDialog.tsx:126 @@ -7247,34 +7812,30 @@ msgstr "Поделиться этим стартовым набором" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Поделитесь этим стартовым набором и помогите людям присоединиться к вашему сообществу на Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 #: src/view/com/profile/ProfileMenu.tsx:256 msgid "Share via..." -msgstr "" +msgstr "Поделиться через..." #: src/components/dms/ChatEmptyPill.tsx:34 msgid "Share your favorite feed!" msgstr "Поделитесь любимой лентой!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Тестер общих настроек" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Позволяет поделиться ссылкой на сайт" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Показать" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Показать альтернативный текст" @@ -7303,8 +7864,8 @@ msgstr "" msgid "Show hidden replies" msgstr "Показать скрытые ответы" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Показать меньше похожего" @@ -7312,55 +7873,63 @@ msgstr "Показать меньше похожего" msgid "Show list anyway" msgstr "Всё равно показывать список" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Показать больше" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Показать больше похожего" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Показать игнорируемые ответы" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Показывать цитирование постов" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Показывать ответы" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Показывать ответы" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Показать ответы как ветки" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Показывать ответы людей, на которых вы подписаны, перед всеми остальными ответами" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Показать ответы для всех" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Показавать репосты" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Показывать образцы ваших сохранённых лент в вашей ленте Following" @@ -7372,16 +7941,17 @@ msgstr "Показать предупреждения" msgid "Show warning and filter from feeds" msgstr "Показать предупреждения и фильтровать из ленты" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Показывает информацию о том, когда был создан этот пост" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "Показывает другие учётные записи, на которые вы можете переключиться" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Показывает содержимое" @@ -7390,14 +7960,15 @@ msgstr "Показывает содержимое" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7414,7 +7985,7 @@ msgstr "Войти как..." #: src/screens/Deactivated.tsx:203 #: src/screens/Deactivated.tsx:209 msgid "Sign in or create an account" -msgstr "" +msgstr "Войдите или создайте учётную запись" #: src/components/dialogs/Signin.tsx:75 msgid "Sign in or create your account to join the conversation!" @@ -7428,15 +7999,20 @@ msgstr "Войти в учётную запись, которой нет в сп msgid "Sign in to Bluesky or create a new account" msgstr "Войдите в Bluesky или создайте новую учётную запись" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Выйти" @@ -7444,8 +8020,8 @@ msgstr "Выйти" msgid "Sign Out" msgstr "Выйти" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Выйти?" @@ -7459,12 +8035,12 @@ msgstr "Необходимо войти для просмотра" msgid "Signed in as @{0}" msgstr "Вы вошли как @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Похожие учётные записи" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Пропустить" @@ -7472,14 +8048,13 @@ msgstr "Пропустить" msgid "Skip this flow" msgstr "Пропустить этот процесс" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Уменьшенный" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" -msgstr "" +msgstr "Отложить напоминание" #: src/screens/Onboarding/index.tsx:37 #: src/screens/Onboarding/state.ts:100 @@ -7488,13 +8063,13 @@ msgstr "Разрабочик программного обеспечения" #: src/components/verification/VerificationsDialog.tsx:120 msgid "Some of your verifications are invalid." -msgstr "" +msgstr "Некоторые из ваших верификаций недействительны." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Некоторые другие ленты, которые могут вам понравиться" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Некоторые люди могут ответить" @@ -7510,10 +8085,11 @@ msgstr "Кто-то отреагировал {0} на {1}" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "" -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Что-то пошло не так" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,38 +8097,44 @@ msgid "Something went wrong, please try again" msgstr "Что-то пошло не так, пожалуйста, попробуйте ещё раз" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Что-то пошло не так. Пожалуйста, попробуйте ещё раз." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Что-то пошло не так!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." -msgstr "" +msgstr "Что-то пошло не так. Пожалуйста, попробуйте ещё раз." #: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Something wrong? Let us know." msgstr "Что-то не так? Сообщите нам." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "Извините! Ваша сессия истекла. Пожалуйста, войдите снова." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Сортировать ответы" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Сортировать ответы по" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Выберите, как сортировать ответы к постам:" @@ -7579,9 +8161,9 @@ msgstr "Спам; чрезмерные упоминания или ответы" msgid "Sports" msgstr "Спорт" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." -msgstr "" +msgstr "Начните беседу, и она появится здесь." #: src/components/dms/dialogs/NewChatDialog.tsx:74 msgid "Start a new chat" @@ -7601,9 +8183,9 @@ msgstr "Начните добавлять людей!" msgid "Start chat with {displayName}" msgstr "Начать общаться с {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Стартовый набор" @@ -7611,12 +8193,12 @@ msgstr "Стартовый набор" msgid "Starter pack by {0}" msgstr "Стартовый набор от {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Стартовый набор от <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Стартовый набор от вас" @@ -7638,19 +8220,21 @@ msgstr "Стартовые наборы позволяют легко делит msgid "Status Page" msgstr "Страница состояния" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Шаг {0} из {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Хранилище очищено, теперь вам нужно перезапустить приложение." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "История" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Отправить обращение" msgid "Submit Appeal" msgstr "Отправить обращение" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "Отправить жалобу" @@ -7676,10 +8260,14 @@ msgstr "Отправить жалобу" msgid "Subscribe" msgstr "Подписаться" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Подпишитесь на @{0}, чтобы использовать эти метки:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Подписаться на маркировщика" @@ -7692,20 +8280,24 @@ msgstr "Подписаться на этого маркировщика" msgid "Subscribe to this list" msgstr "Подписаться на этот список" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Успех!" #: src/components/verification/VerificationCreatePrompt.tsx:36 msgid "Successfully verified" -msgstr "" +msgstr "Верификация прошла успешно" #: src/screens/Search/Explore.tsx:357 msgid "Suggested Accounts" -msgstr "" +msgstr "Предлагаемые учётные записи" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Предложения для вас" @@ -7714,26 +8306,26 @@ msgstr "Предложения для вас" msgid "Suggestive" msgstr "Неприличный" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Восход" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Закат" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Поддержка" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Переключить учётную запись" @@ -7742,24 +8334,24 @@ msgstr "Переключить учётную запись" msgid "Switch Account" msgstr "Переключить учётную запись" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Переключить учётные записи" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "Переключиться на {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Системный" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Системный журнал" @@ -7767,6 +8359,18 @@ msgstr "Системный журнал" msgid "Tags only" msgstr "Только теги" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Расскажите нам немного больше" msgid "Terms" msgstr "Условия" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Условия использования" @@ -7846,11 +8452,7 @@ msgstr "Поле ввода текста" #: src/view/com/posts/ShowLessFollowup.tsx:39 msgid "Thank you for your feedback! It has been sent to the feed operator." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Спасибо! Ваша электронная почта успешно подтверждена." +msgstr "Спасибо за ваш отзыв! Он был отправлен оператору ленты." #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." @@ -7864,28 +8466,28 @@ msgstr "Спасибо, вы успешно подтвердили свой ад msgid "That contains the following:" msgstr "Который содержит следующее:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Этот псевдоним уже занят." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Не удалось найти этот стартовый набор." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Вот и все, ребята!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "Это всё!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "Учётная запись сможет взаимодействовать с вами после разблокировки." @@ -7900,7 +8502,7 @@ msgstr "Приложение будет перезапущено" msgid "The author of this thread has hidden this reply." msgstr "Автор этой ветки скрыл этот ответ." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Веб-приложение Bluesky" @@ -7920,10 +8522,6 @@ msgstr "Лента Discover" msgid "The Discover feed now knows what you like" msgstr "Теперь лента Discover знает, что вам нравится" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "" - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "В приложении впечатления лучше. Скачайте Bluesky прямо сейчас, и мы продолжим работу с того места, где вы остановились." @@ -7944,8 +8542,16 @@ msgstr "Следующие метки были добавлены к вашем msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "Следующие настройки будут использоваться по умолчанию при создании новых постов. Вы можете изменить их для конкретного поста из редактора." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Возможно этот пост был удален." @@ -7953,9 +8559,10 @@ msgstr "Возможно этот пост был удален." msgid "The Privacy Policy has been moved to <0/>" msgstr "Политика конфиденциальности была перемещена в <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "Размер выбранного видео превышает 100 МБ." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "" #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "Условия Использования перенесены в" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "Вы ввели неверный код подтверждения. Пожалуйста, убедитесь, что перешли по правильной ссылке подтверждения, или запросите новую." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Тематический" @@ -7990,14 +8597,14 @@ msgstr "Тематический" msgid "There is no time limit for account deactivation, come back any time." msgstr "Время деактивации учётной записи не ограничено, возвращайтесь в любое время." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Возникла проблема с подключением к Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "При соединении с сервером возникла проблема" @@ -8006,17 +8613,12 @@ msgstr "При соединении с сервером возникла про msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Возникла проблема соединения с сервером, проверьте подключение к Интернету и повторите попытку." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "При соединении с вашим сервером возникла проблема" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Возникла проблема с загрузкой уведомлений. Нажмите здесь, чтобы повторить попытку." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Возникла проблема с загрузкой постов. Нажмите здесь, чтобы повторить попытку." @@ -8037,7 +8639,7 @@ msgstr "Возникла проблема с загрузкой ваших сп msgid "There was an issue fetching your service info" msgstr "Возникла проблема с загрузкой информации о службе" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Возникла проблема с удалением этой ленты. Проверьте подключение к Интернету и повторите попытку." @@ -8052,9 +8654,9 @@ msgstr "Возникла проблема с отправкой вашей жа msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Возникла проблема при изменении ваших лент, проверьте подключение к Интернету и повторите попытку." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Возникла проблема при изменении ваших msgid "There was an issue! {0}" msgstr "Возникла проблема! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Возникла проблема! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Возникла проблема. Проверьте подключение к Интернету и повторите попытку." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "В приложении возникла неожиданная проблема. Пожалуйста, сообщите нам, если вы получили это сообщение!" @@ -8089,7 +8691,7 @@ msgstr "В приложении возникла неожиданная проб msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Произошёл наплыв новых пользователей в Bluesky! Мы активируем вашу учётную запись как только сможем." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Эти настройки применимы только к ленте Following." @@ -8099,11 +8701,11 @@ msgstr "Этот {screenDescription} был помечен:" #: src/components/verification/VerificationsDialog.tsx:87 msgid "This account has a checkmark because it's been verified by trusted sources." -msgstr "" +msgstr "У этой учётной записи есть галочка, потому что её верифицировали доверенные источники." #: src/components/verification/VerificationsDialog.tsx:92 msgid "This account has one or more attempted verifications, but it is not currently verified." -msgstr "" +msgstr "У этой учётной записи несколько попыток верификации, но пока что она не верифицирована." #: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." @@ -8115,7 +8717,7 @@ msgstr "Эта учётная запись заблокирована в одн #: src/components/verification/VerificationCreatePrompt.tsx:55 msgid "This action can be undone at any time." -msgstr "" +msgstr "Это действие можно отменить в любое время." #: src/components/moderation/LabelsOnMeDialog.tsx:271 msgid "This appeal will be sent to <0>{sourceName}." @@ -8146,7 +8748,7 @@ msgstr "Этот контент размещён {0}. Включить внеш msgid "This content is not available because one of the users involved has blocked the other." msgstr "Этот контент недоступен, поскольку один из вовлечённых пользователей заблокировал другого." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Этот контент недоступен для просмотра без учётной записи Bluesky." @@ -8158,6 +8760,10 @@ msgstr "Эта беседа ведется с удаленной или деак msgid "This email is already associated with your account." msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Эта функция находится в бете. Вы можете узнать больше об экспорте репозиториев в <0>этом блоге.." @@ -8170,7 +8776,7 @@ msgstr "" msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Эта функция недоступна при использовании пароля приложения. Пожалуйста, используйте свой основной пароль." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Эта лента сейчас получает слишком много запросов и временно недоступна. Попробуйте ещё раз позже." @@ -8199,7 +8805,7 @@ msgstr "Эта информация не раскрывается другим #: src/components/live/EditLiveDialog.tsx:189 #: src/components/live/GoLiveDialog.tsx:160 msgid "This is not a valid link" -msgstr "" +msgstr "Эта ссылка недействительна" #: src/components/moderation/ModerationDetailsDialog.tsx:168 msgid "This label was applied by the author." @@ -8209,11 +8815,11 @@ msgstr "Эта метка была применена автором." msgid "This label was applied by you." msgstr "Эта метка была применена вами." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Этот маркировщик ещё не заявил, какие метки он публикует, и может быть неактивным." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Эта ссылка ведёт на сайт:" @@ -8233,29 +8839,28 @@ msgstr "Этот список пуст." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Данный сервис модерации недоступен. Просмотрите детали ниже. Если проблема не исчезнет, свяжитесь с нами." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Этот пост утверждает, что был создан <0>{0}, но впервые был замечен Bluesky <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Этот пост имеет неизвестный тип ограничения на ответы. Возможно, ваше приложение устарело." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Этот пост был удален." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Этот пост виден только вошедшим в систему пользователям. Оно не будет видно тем, кто не вошел в систему." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Этот пост будет скрыт из лент и тем. Это невозможно отменить." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "Автор этого поста отключил цитирование постов." @@ -8263,11 +8868,11 @@ msgstr "Автор этого поста отключил цитирование msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Этот профиль виден только вошедшим в систему пользователям. Он не будет видно тем, кто не вошел в систему." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Этот ответ будет отсортирован в скрытый раздел в нижней части вашей ветки и отключит уведомления о последующих ответах - как для вас, так и для других." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Этот сервис не предоставил условия обслуживания или политику конфиденциальности." @@ -8275,9 +8880,13 @@ msgstr "Этот сервис не предоставил условия обс msgid "This should create a domain record at:" msgstr "Это должно создать учётную запись домена:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." -msgstr "" +msgstr "У этого пользователя нет отображаемого имени, поэтому его нельзя верифицировать." #: src/view/com/profile/ProfileFollowers.tsx:95 msgid "This user doesn't have any followers." @@ -8316,16 +8925,18 @@ msgstr "Этот пользователь не подписан ни на ког msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Это удалит \"{0}\" из ваших отключённых слов. Вы всегда сможете добавить его обратно позже." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Это удалит @{0} из списка быстрого доступа." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Это удалит ваш пост из этой цитаты для всех пользователей, и заменит его на заглушку." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Настройки веток" @@ -8334,24 +8945,27 @@ msgstr "Настройки веток" msgid "Thread preferences" msgstr "Настройки веток" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Настройки веток" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Как ветки" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Режим веток" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Настройки веток" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "Оставшееся время: {0, plural, one {# секунда} other {# секунд}}" @@ -8362,7 +8976,7 @@ msgstr "Чтобы отключить метод 2FA по электронной #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215 msgid "To disable your email 2FA method, please verify your access to <0>{0}" -msgstr "" +msgstr "Чтобы отключить 2FA по электронной почте, подтвердите доступ к <0>{0}" #: src/components/dms/ReportConversationPrompt.tsx:19 msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." @@ -8376,48 +8990,62 @@ msgstr "Кому вы хотели бы отправить эту жалобу?" msgid "Today" msgstr "Сегодня" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Раскрыть/скрыть" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Включить или отключить контент для взрослых" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Переключает звук" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Лучшее" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Тема" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Перевести" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Актуальные" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Актуальные видео" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." -msgstr "" +msgstr "Доверие рождается в отношениях, сообществах и общем контексте, поэтому мы также вводим <0>доверенных верификаторов — организации, которые могут непосредственно вручать верификацию." #: src/view/com/util/error/ErrorScreen.tsx:103 msgctxt "action" @@ -8428,14 +9056,10 @@ msgstr "Попробовать ещё раз" msgid "TV" msgstr "ТВ" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Двухфакторная аутентификация (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Введите желаемый псевдоним" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Напечатайте здесь своё сообщение" @@ -8453,7 +9077,7 @@ msgstr "Невозможно подключиться. Проверьте под #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Не удалось связаться с вашим хостинг-пр msgid "Unable to delete" msgstr "Не удаётся удалить" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Разблокировать" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Разблокировать" @@ -8486,7 +9126,7 @@ msgstr "Разблокировать" msgid "Unblock account" msgstr "Разблокировать учётную запись" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Разблокировать учётную запись?" @@ -8495,13 +9135,13 @@ msgstr "Разблокировать учётную запись?" msgid "Unblock list" msgstr "Разблокировать список" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Отменить репост" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Отменить репост ({0, plural, one {# репост} few {# репоста} other {# репостов}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Отписаться" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Отписаться от {0}" @@ -8523,9 +9163,9 @@ msgstr "Отписаться от учётной записи" msgid "Unfollows the user" msgstr "Отписаться от пользователя" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." -msgstr "" +msgstr "К сожалению, ни один из маркировщиков в ваших подписках не поддерживает этот вид жалобы." #: src/components/verification/VerificationsDialog.tsx:206 msgid "Unknown verifier" @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "Дизлайк" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Дизлайк ({0, plural, one {# лайк} few {# лайка} other {# лайков}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Не игнорировать" @@ -8555,8 +9195,8 @@ msgstr "Не игнорировать" msgid "Unmute {tag}" msgstr "Не игнорировать {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Включить звук" msgid "Unmute list" msgstr "Перестать игнорировать список" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Перестать игнорировать ветку" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Включить звук видео" @@ -8597,8 +9237,8 @@ msgstr "Открепить ленту" msgid "Unpin from home" msgstr "Открепить от главной страницы" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Открепить от профиля" @@ -8614,8 +9254,8 @@ msgstr "Откреплено {0} от главной страницы" msgid "Unpinned from your feeds" msgstr "Откреплено из ваших лент" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "" @@ -8636,7 +9276,7 @@ msgstr "Отписаться от этого маркировщика" msgid "Unsubscribed from list" msgstr "Подписка на список отменена" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Неподдерживаемый тип видео" @@ -8662,10 +9302,10 @@ msgstr "Изменить <0>{displayName} в списках" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" -msgstr "" +msgstr "Обновить электронную почту" #: src/screens/Settings/components/ChangeHandleDialog.tsx:526 #: src/screens/Settings/components/ChangeHandleDialog.tsx:547 @@ -8674,19 +9314,19 @@ msgstr "Изменить на {domain}" #: src/components/dialogs/EmailDialog/screens/Update.tsx:203 msgid "Update your email" -msgstr "" +msgstr "Обновите вашу электронную почту" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Не удалось изменить вложение цитаты" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Не удалось изменить видимость ответа" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Изменение..." @@ -8698,20 +9338,20 @@ msgstr "Загрузить вместо этого фотографию" msgid "Upload a text file to:" msgstr "Загрузить текстовый файл в:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Загрузить с камеры" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Загрузить из файлов" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Загрузить из библиотеки" msgid "Uploading images..." msgstr "Загрузка изображений..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Загрузка миниатюры ссылки..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Загрузка видео..." @@ -8761,6 +9401,10 @@ msgstr "Использовать рекомендуемые" msgid "Use this to sign in to the other app along with your handle." msgstr "Используйте его для входа в другое приложение вместе со своим псевдонимом." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Использовано:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Список пользователей изменён" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Псевдоним или электронная почта" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "пользователи, на которых подписан <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "пользователи подписанные на <0>@{0}" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Пользователи, на которых я подписан" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Пользователи в \"{0}\"" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Пользователи, на которых вы подписаны" @@ -8844,20 +9500,20 @@ msgstr "Значение:" #: src/components/verification/VerificationCreatePrompt.tsx:39 msgid "Verification failed, please try again." -msgstr "" +msgstr "Верификация не удалась, попробуйте ещё раз." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" -msgstr "" +msgstr "Настройки верификации" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" -msgstr "" +msgstr "Настройки верификации" #: src/screens/Moderation/VerificationSettings.tsx:41 msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here." -msgstr "" +msgstr "Верификация на Bluesky работает иначе, чем на других платформах. <0> Узнайте больше здесь." #: src/components/verification/VerificationsDialog.tsx:103 msgid "Verified by:" @@ -8870,8 +9526,15 @@ msgstr "Подтвержден:" msgid "Verify account" msgstr "Подтвердить аккаунт" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "" @@ -8880,21 +9543,20 @@ msgstr "" msgid "Verify DNS Record" msgstr "Проверка DNS-записи" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Диалоговое окно подтверждения электронной почты" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8902,25 +9564,33 @@ msgstr "Подтвердить текстовым файлом" #: src/components/verification/VerificationCreatePrompt.tsx:51 msgid "Verify this account?" +msgstr "Верифицировать эту учётную запись?" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" msgstr "" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Подтвердите адрес вашей электронной почты" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Подтвердите адрес вашей электронной почты" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Версия {appVersion}" +msgid "Version {0}" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Видео" @@ -8928,7 +9598,7 @@ msgstr "Видео" msgid "Video failed to process" msgstr "Не удалось обработать видео" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Лента видео" @@ -8942,15 +9612,15 @@ msgstr "Видео от {0}: {text}" msgid "Video Games" msgstr "Видеоигры" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Видео приостановлено" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Видео воспроизводится" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Видео не найдено." @@ -8958,11 +9628,11 @@ msgstr "Видео не найдено." msgid "Video settings" msgstr "Настройки видео" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Видео загружено" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Видео: {0}" @@ -8979,11 +9649,11 @@ msgstr "Видео должно быть не более 3 минут" msgid "View {0}'s avatar" msgstr "Просмотреть аватар {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Посмотреть профиль {0}" @@ -8991,7 +9661,7 @@ msgstr "Посмотреть профиль {0}" msgid "View {displayName}'s profile" msgstr "Показать профиль {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Просмотреть профиль заблокированного пользователя" @@ -9009,7 +9679,6 @@ msgstr "Просмотреть запись для отладки" msgid "View details" msgstr "Просмотреть детали" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Просмотреть детали как отправить жалобу о нарушении авторских прав" @@ -9022,23 +9691,23 @@ msgstr "Просмотреть ветку полностью" msgid "View information about these labels" msgstr "Просмотреть информацию о метках" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Показать больше" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Просмотреть профиль" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Просмотреть аватар" @@ -9048,43 +9717,43 @@ msgstr "Просмотр услуг маркировки, который пре #: src/components/verification/VerificationCheckButton.tsx:99 msgid "View this user's verifications" -msgstr "" +msgstr "Просмотреть верификации этого пользователя" #: src/screens/Profile/components/ProfileFeedHeader.tsx:489 msgid "View users who like this feed" msgstr "Просмотр пользователей, которым понравилась эта лента" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Посмотреть видео" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Просмотрите заблокированные вами учётные записи" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "Просмотр ваших настроек взаимодействия с постами по умолчанию" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Просмотрите свои ленты и исследуйте больше" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Просмотр своего списка модерации" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Просмотр отключённых учётных записей" #: src/components/verification/VerificationCheckButton.tsx:98 msgid "View your verifications" -msgstr "" +msgstr "Просмотреть свои верификации" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Просмотр полного изображения" @@ -9092,16 +9761,20 @@ msgstr "Просмотр полного изображения" msgid "Views video in immersive mode" msgstr "Просмотр видео в режиме погружения" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "Посетить сайт" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Громкость" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9118,6 +9791,14 @@ msgstr "Предупреждать о содержимом и фильтрова #: src/components/live/LiveStatusDialog.tsx:156 #: src/components/live/LiveStatusDialog.tsx:169 msgid "Watch now" +msgstr "Смотреть сейчас" + +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." msgstr "" #: src/screens/Hashtag.tsx:205 @@ -9128,7 +9809,7 @@ msgstr "Мы не смогли найти никаких результатов msgid "We couldn't find any results for that topic." msgstr "Мы не смогли найти никаких результатов по этой теме." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Мы не смогли загрузить эту беседу" @@ -9136,6 +9817,10 @@ msgstr "Мы не смогли загрузить эту беседу" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Мы оцениваем {estimatedTime} до готовности вашей учётной записи." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Мы повторно отправили письмо с подтверждением на <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "Мы надеемся, что вы отлично проведёте в msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "У нас закончились посты в ваших подписках. Вот последние посты из ленты <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." -msgstr "" +msgstr "Мы отправили письмо на <0>{0}, содержащее ссылку. Нажмите на неё, чтобы завершить процесс подтверждения электронной почты." -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Мы не смогли определить, доступна ли вам загрузка видео. Попробуйте ещё раз." @@ -9164,10 +9849,14 @@ msgstr "Мы не смогли определить, доступна ли ва msgid "We were unable to load your birth date preferences. Please try again." msgstr "Не удалось загрузить ваши настройки даты рождения. Повторите попытку." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "На данный момент мы не смогли загрузить список ваших маркировщиков." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Мы не смогли подключиться. Пожалуйста, попробуйте ещё раз, чтобы продолжить настройку своей учётной записи. Если ошибка повторяется, то вы можете пропустить этот процесс." @@ -9176,14 +9865,30 @@ msgstr "Мы не смогли подключиться. Пожалуйста, msgid "We will let you know when your account is ready." msgstr "Мы сообщим вам, когда ваша учётная запись будет готова." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." -msgstr "" +msgstr "Мы отправим письмо на <0>{0}, содержащее ссылку. Нажмите на неё, чтобы завершить процесс подтверждения электронной почты." #: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "Мы воспользуемся этим, чтобы подстроить Ваш опыт." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9191,9 +9896,9 @@ msgstr "У нас проблемы с сетью, попробуйте ещё р #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." -msgstr "" +msgstr "Мы представляем новый уровень верификации на Bluesky — простые и понятные галочки." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Мы очень рады, что вы присоединились!" @@ -9205,15 +9910,15 @@ msgstr "Нам очень жаль, но нам не удалось найти msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Нам очень жаль, мы не смогли сейчас загрузить ваши игнорируемые слова. Пожалуйста, попробуйте ещё раз." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Нам очень жаль, нам не удалось выполнить поиск по вашему запросу. Пожалуйста, попробуйте ещё раз через несколько минут." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Нам очень жаль! Пост, на который вы отвечаете, был удален." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Нам очень жаль! Мы не можем найти страницу, которую вы искали." @@ -9222,6 +9927,26 @@ msgstr "Нам очень жаль! Мы не можем найти страни msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Нам очень жаль! Вы можете подписаться только на двадцать маркировщиков, и вы достигли своего лимита в двадцать." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "С возвращением!" @@ -9240,13 +9965,13 @@ msgstr "Как вы хотите назвать свой стартовый на #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Как дела?" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146 msgid "When you tap on a check, you’ll see which organizations have granted verification." -msgstr "" +msgstr "Нажмите на галочку и увидите, какие организации вручили верификацию." #: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80 msgid "Which languages are used in this post?" @@ -9256,25 +9981,25 @@ msgstr "Какие языки использованы в этом посте?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "На каких языках вы хотите видеть посты в алгоритмических лентах?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Кто может взаимодействовать с этим постом?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Кто может отвечать" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127 msgid "Who can verify?" -msgstr "" +msgstr "Кто может верифицировать?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Опаньки!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "Упс! Не удалось загрузить популярные видео." @@ -9322,12 +10047,12 @@ msgstr "Почему следует просмотреть этого польз msgid "Write a message" msgstr "Написать сообщение" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Написать пост" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Написать ответ" @@ -9343,7 +10068,7 @@ msgstr "С сервера возвращён неверный DID. Получе #: src/components/live/EditLiveDialog.tsx:153 #: src/components/live/GoLiveDialog.tsx:129 msgid "www.mylivestream.tv" -msgstr "" +msgstr "www.mylivestream.tv" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:87 msgid "Yes" @@ -9358,11 +10083,11 @@ msgstr "Да, деактивировать" msgid "Yes, delete this starter pack" msgstr "Да, удалите этот стартовый набор" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Да, отсоединить" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Да, скрыть" @@ -9378,12 +10103,20 @@ msgstr "Вчера" msgid "You" msgstr "Вы" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" -msgstr "" +msgstr "Вы — доверенный верификатор" #: src/components/forms/HostingProvider.tsx:45 msgid "You are creating an account on" +msgstr "Вы создаёте учётную запись на" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." msgstr "" #: src/screens/SignupQueued.tsx:157 @@ -9393,17 +10126,17 @@ msgstr "Вы в очереди." #: src/components/live/EditLiveDialog.tsx:119 #: src/components/live/EditLiveDialog.tsx:124 msgid "You are Live" -msgstr "" +msgstr "Вы в прямом эфире" #: src/components/live/queries.ts:211 msgid "You are no longer live" -msgstr "" +msgstr "Вы больше не в прямом эфире" #: src/components/live/queries.ts:35 msgid "You are not allowed to go live" -msgstr "" +msgstr "Вам не разрешено выходить в прямой эфир" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Вы не можете загружать видео." @@ -9413,24 +10146,23 @@ msgstr "Вы ни на кого не подписаны." #: src/components/live/queries.ts:156 msgid "You are now live!" -msgstr "" +msgstr "Вы в прямом эфире!" #: src/components/verification/VerificationsDialog.tsx:64 msgid "You are verified" -msgstr "" +msgstr "Вы верифицированы" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." -msgstr "" +msgstr "Вы верифицированы. Вы потеряете статус верификации, если измените ваше отображаемое имя. <0>Узнать больше." #: src/screens/Settings/components/ChangeHandleDialog.tsx:208 msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." -msgstr "" +msgstr "Вы верифицированы. Вы потеряете статус верификации, если измените ваш псевдоним. <0>Узнать больше." #: src/screens/Search/modules/ExploreInterestsCard.tsx:45 msgid "You can adjust your interests at any time from \"Content and media\" settings." -msgstr "" +msgstr "Вы всегда можете изменить свои интересы в разделе настроек \"Содержимое и медиа\"." #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 @@ -9441,10 +10173,18 @@ msgstr "Также вы можете найти пользовательские msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Вы также можете временно деактивировать свою учётную запись и реактивировать её в любое время." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Вы можете продолжать беседу независимо от выбранной вами настройки." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "Теперь вы можете выбирать, получать ли уведомления о публикациях определенных людей. Если есть кто-то, от кого вы хотите получать своевременные обновления, перейдите в его профиль и найдите значок нового колокольчика рядом с кнопкой \"Подписаться\"." + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Теперь вы можете войти с помощью нового msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Вы можете реактивировать свою учётную запись, чтобы продолжить вход в систему. Ваш профиль и посты будут видны другим пользователям." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "Вы можете установить настройки взаимодействия по умолчанию в <0>Настройки → Модерация → Настройки взаимодействия." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Вы можете обновить это позже в своих настройках." @@ -9472,7 +10212,7 @@ msgstr "У вас нет ни одного подписчика." msgid "You don't follow any users who follow @{name}." msgstr "Вы не подписаны ни на каких пользователей, которые подписаны на @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "У вас нет запросов на чат." @@ -9480,15 +10220,15 @@ msgstr "У вас нет запросов на чат." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "У вас ещё нет кодов приглашения! Со временем мы предоставим вам несколько." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "У вас нет закреплённых лент." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "У вас нет сохранённых лент." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Вы заблокировали автора или автор заблокировал вас." @@ -9502,6 +10242,10 @@ msgstr "Вы заблокировали этого пользователя" msgid "You have blocked this user. You cannot view their content." msgstr "Вы заблокировали этого пользователя. Вы не можете видеть их содержимое." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Вы включили игнорирование этой учётной msgid "You have muted this user" msgstr "Вы включили игнорирование этого пользователя" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "У вас ещё нет бесед. Создайте первую!" @@ -9547,13 +10291,13 @@ msgstr "Вы ещё не заблокировали ни одну учётную msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Вы ещё не игнорируете ни одну учётную запись. Чтобы включить игнорирование кого-то, перейдите в их профиль и выберите опцию \"Игнорировать\" в меню их учётной записи." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Вы добрались до конца" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:187 msgid "You have successfully verified your email address. You can close this dialog." -msgstr "" +msgstr "Вы успешно проверили свой адрес электронной почты. Вы можете закрыть этот диалог." #: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." @@ -9572,6 +10316,10 @@ msgstr "У вас ещё нет игнорируемых слов или тег msgid "You hid this reply." msgstr "Вы скрыли этот ответ." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Вы можете обжаловать несамостоятельные метки, если считаете, что они были размещены по ошибке." @@ -9592,7 +10340,7 @@ msgstr "Вы можете добавить не более 3 лент" msgid "You may only select up to 4 images" msgstr "Вы можете выбрать не более 4 изображений" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "Вам должно исполниться 13 лет, чтобы иметь возможность создать учётную запись." @@ -9600,6 +10348,14 @@ msgstr "Вам должно исполниться 13 лет, чтобы име msgid "You must be following at least seven other people to generate a starter pack." msgstr "Чтобы получить стартовый набор, вы должны подписаться как минимум на семь других людей." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Чтобы сохранить QR-код, необходимо предоставить доступ к библиотеке фотографий" @@ -9608,15 +10364,20 @@ msgstr "Чтобы сохранить QR-код, необходимо предо msgid "You must select at least one labeler for a report" msgstr "Вы должны выбрать хотя бы одного маркировщика для жалобы" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." -msgstr "" +msgstr "Чтобы включить функцию 2FA, необходимо подтвердить адрес электронной почты." #: src/screens/Deactivated.tsx:128 msgid "You previously deactivated @{0}." msgstr "Вы ранее деактивировали @{0}." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "" @@ -9628,16 +10389,20 @@ msgstr "Вы отреагировали {0}" msgid "You reacted {0} to {1}" msgstr "Вы отреагировали {0} на {1}" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Вы выйдете из всех своих учётных записей." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Вы больше не будете получать уведомления из этой ветки" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Вы будете получать уведомления из этой ветки" @@ -9657,11 +10422,11 @@ msgstr "Вы: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Вы: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Вы будете подписаны на предложенных пользователей и ленты, как только создадите свою учётную запись!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Вы будете подписаны на предложенных пользователей, как только создадите свою учётную запись!" @@ -9673,9 +10438,9 @@ msgstr "Вы будете подписаны на предложенных лю msgid "You'll follow these people right away" msgstr "Вы сразу же будете подписаны на предложенных людей" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Вы получите электронное письмо по адресу <0>{0}, чтобы подтвердить, что это вы." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9687,7 +10452,7 @@ msgstr "Вы в очереди" #: src/screens/Onboarding/StepFinished.tsx:253 msgid "You're ready to go!" -msgstr "Все готово!" +msgstr "Всё готово!" #: src/screens/Deactivated.tsx:89 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 @@ -9703,27 +10468,35 @@ msgstr "Вы выбрали скрывать слово или тег в это msgid "You've found some people to follow" msgstr "Вы нашли несколько людей для подписки" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Ваша домашняя лента закончилась! Подпишитесь на больше учётных записей чтобы получать больше постов." #: src/lib/hooks/useCleanError.ts:58 msgid "You've reached the maximum number of requests allowed. Please try again later." +msgstr "Вы достигли максимально допустимого количества запросов. Повторите попытку позже." + +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:421 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Вы достигли дневного лимита по загрузкам видео (слишком много байт)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Вы достигли дневного лимита по загрузкам видео (слишком много видео)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "У вас закончились видео для просмотра. Может быть, сейчас самое время сделать перерыв?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Ваша учётная запись" @@ -9735,7 +10508,7 @@ msgstr "Ваша учётная запись удалена" msgid "Your account has been suspended" msgstr "Ваша учётная запись была приостановлена" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Ваша учётная запись создана ещё недостаточно давно, чтобы вы могли загружать видео. Попробуйте ещё раз позже." @@ -9745,17 +10518,17 @@ msgstr "Данные из вашей учётной записи, содержа #: src/screens/Takendown.tsx:214 msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error." -msgstr "Ваша учетная запись была признана нарушающей <0>Условия обслуживания Bluesky Social. Вам было отправлено электронное письмо с описанием конкретного нарушения и периода приостановки, если это применимо. Вы можете подать обращение, если считаете, что решение было принято по ошибке." +msgstr "Ваша учётная запись была признана нарушающей <0>Правила обслуживания Bluesky Social. Вам было отправлено письмо, в котором изложено конкретное нарушение и срок приостановки, если это применимо. Вы можете подать обращение, если считаете, что решение было принято по ошибке." #: src/screens/Takendown.tsx:154 msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "Ваше обращение было отправлено. Если обращение будет успешным, вы получите электронное письмо." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Ваша дата рождения" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Ваш браузер не поддерживает формат видео. Пожалуйста, попробуйте использовать другой браузер." @@ -9765,36 +10538,34 @@ msgstr "Ваши чаты были отключены" #: src/components/dialogs/InAppBrowserConsent.tsx:69 msgid "Your choice will be remembered for future links. You can change it at any time in settings." -msgstr "" +msgstr "Ваш выбор будет сохранен для будущих ссылок. Вы можете изменить его в любое время в настройках." #: src/screens/Settings/components/ChangeHandleDialog.tsx:513 msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Ваш текущий псевдоним <0>{0} будет автоматически сохранен за вами. Вы сможете вернуться к нему в любое время с этой учётной записи." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "Ваш адрес электронной почты был изменен, но еще не проверен. В качестве следующего шага, пожалуйста, проверьте ваш новый адрес электронной почты." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Не удалось распознать адрес электронной почты." #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65 msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Ваша электронная почта ещё не подтверждена. Это важный шаг для безопасности вашей учётной записи, который мы рекомендуем вам сделать." +msgstr "Ваша электронная почта еще не проверена. Пожалуйста, подтвердите свою электронную почту, чтобы пользоваться всеми возможностями Bluesky." #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "Ваш первый лайк!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "Ваши подписчики" @@ -9806,26 +10577,22 @@ msgstr "Ваша домашняя лента пуста! Подпишитесь msgid "Your full handle will be <0>@{0}" msgstr "Вашим полным псевдонимом будет <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "Вашим полным псевдонимом будет <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" -msgstr "" +msgstr "Ваши интересы" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "Ваши интересы были изменены!" #: src/screens/Search/modules/ExploreInterestsCard.tsx:94 msgid "Your interests help us find what you like!" -msgstr "" +msgstr "Ваши интересы помогают нам найти то, что вам нравится!" #: src/components/dialogs/MutedWords.tsx:369 msgid "Your muted words" @@ -9835,15 +10602,15 @@ msgstr "Ваши игнорируемые слова" msgid "Your password has been changed successfully!" msgstr "Ваш пароль успешно изменён!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "Ваш пароль должен состоять не менее чем из 8 символов." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Пост опубликован" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Ваши посты были опубликованы" @@ -9851,15 +10618,19 @@ msgstr "Ваши посты были опубликованы" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Ваши посты, лайки и блокировки являются публичными. Игнорирования - приватные." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Ваш профиль, посты, ленты и списки больше не будут видны другим пользователям Bluesky. Вы можете реактивировать свою учётную запись в любое время, войдя в систему." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Ответ опубликован" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "Ваша жалоба будет отправлена на адрес <0>{0}." @@ -9867,9 +10638,9 @@ msgstr "Ваша жалоба будет отправлена на адрес <0 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Ваша жалоба будет отправлена в Службу Модерации Bluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." -msgstr "" +msgstr "Выбранные вами интересы помогают нам предоставлять вам содержимое, которое вас интересует." #: src/components/verification/VerificationsDialog.tsx:65 msgid "Your verifications" diff --git a/src/locale/locales/sv/messages.po b/src/locale/locales/sv/messages.po index 77e304517e..7c50a90257 100644 --- a/src/locale/locales/sv/messages.po +++ b/src/locale/locales/sv/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: sv\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:41\n" +"PO-Revision-Date: 2025-08-12 01:46\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,7 +27,7 @@ msgstr "(aktiv)" msgid "(contains embedded content)" msgstr "(innehåller inbäddat innehåll)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(ingen e-post)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# återpublicering} other {# återpubliceringar}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# sekund} other {# sekunder}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# oläst notis} other {# olästa notiser}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {# oläst notis} other {# olästa notiser}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {#må} other {#må}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {följare} other {följare}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {följd} other {följda}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {gillamarkering} other {gillamarkeringar}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {gillamarkering} other {gillamarkeringar}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {inlägg} other {inlägg}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {citat} other {citat}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {återpublicering} other {återpubliceringar}}" @@ -135,6 +138,10 @@ msgstr "{0} <0>i <1>taggar" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>i <1>text och taggar" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} följda" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "{0} sänder live" @@ -143,11 +150,15 @@ msgstr "{0} sänder live" msgid "{0} is not a valid URL" msgstr "{0} är inte en giltig URL" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "{0} är inte tillgängligt" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} gick med den här veckan" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} av {1}" @@ -164,8 +175,16 @@ msgstr "{0} reagerade med {1}" msgid "{0} reacted {1} to {2}" msgstr "{0} reagerade med {1} på {2}" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0}, ett flöde av {1}, gillat av {2}" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0}, en lista av {1}" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "{0}s avatar" @@ -197,12 +216,12 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}s" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# oläst notis} other {# olästa notiser}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "{displayName}s startpaket" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {timme} other {timmar}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minut} other {minuter}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} och <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} följde dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} och <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} gillade ditt anpassade flöde" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} och <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} gillade ditt inlägg" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} och <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} gillade din återpublicering" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} och <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} tog bort sina verifieringar av ditt konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} och <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} återpublicerade ditt inlägg" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} och <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} återpublicerade din återpublicering" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} och <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} registrerade sig med ditt startpaket" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} och <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} verifierade dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} följde dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} följde dig tillbaka" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} gillade ditt anpassade flöde" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} gillade ditt inlägg" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} gillade din återpublicering" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} tog bort sin verifiering av ditt konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} återpublicerade ditt inlägg" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} återpublicerade din återpublicering" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} registrerade sig med ditt startpaket" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} verifierade dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} och {additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} följde dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} och {additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} gillade ditt anpassade flöde" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} och {additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} gillade ditt inlägg" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} och {additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} gillade din återpublicering" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} och {additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} tog bort sina verifieringar av ditt konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} och {additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} återpublicerade ditt inlägg" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} och {additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} återpublicerade din återpublicering" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} och {additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} registrerade sig med ditt startpaket" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} och {additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} verifierade dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} följde dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} följde dig tillbaka" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} gillade ditt anpassade flöde" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} gillade ditt inlägg" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} gillade din återpublicering" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} tog bort sin verifiering av ditt konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} återpublicerade ditt inlägg" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} återpublicerade din återpublicering" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} registrerade sig med ditt startpaket" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} verifierade dig" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} följda" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "Det går inte att skicka meddelanden till {handle}" @@ -392,7 +410,7 @@ msgstr "{joinedAllTimeCount, plural, other {# användare har}} gått med!" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "{minutes, plural, one {# minut} other {# minuter}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# oläst notis} other {# olästa notiser}}" @@ -432,12 +450,12 @@ msgstr "{userName}s verifieringar" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, och {2, plural, one {# annan} other {# andra}} ingår i ditt startpaket" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, och {2, plural, one {# annan} other {# andra}} ingår i ditt startpaket" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {följare} other {följare}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {följda} other {följda}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} och<1> <2>{1} ingår i ditt startpaket" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} ingår i ditt startpaket" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} medlemmar" @@ -466,11 +484,11 @@ msgstr "<0>{0} medlemmar" msgid "<0>{date} at {time}" msgstr "<0>{date} kl. {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Experimentellt: När den här inställningen är aktiverad får du bara meddelanden om svar och citeringar från användare du följer. Vi jobbar på att lägga till fler kontroller här framöver." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<0>Logga in<1> eller <2>skapa ett konto<3> <4>för att söka efter nyheter, sport, politik och allt annat som händer på Bluesky." -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Du och<1> <2>{0} ingår i ditt startpaket" @@ -503,10 +521,14 @@ msgstr "ett meddelande" msgid "A new form of verification" msgstr "En ny form av verifiering" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "Skärmdump av en profilsida med den nya klockikonen bredvid följknappen. Klockikonen indikerar den nya notisfunktionen." + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Om" @@ -524,25 +546,25 @@ msgstr "Acceptera chattförfrågan" msgid "Accept Request" msgstr "Acceptera förfrågan" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Tillgänglighet" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Tillgänglighetsinställningar" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Konto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Konto följt" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Konto ignorerat" msgid "Account Muted by List" msgstr "Konto ignorerat av lista" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Kontoalternativ" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Konto borttaget från snabbåtkomst" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Konto avföljt" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Konto inte längre ignorerat" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Konton med en blå, vågkantad bockmarkering <0><1/> kan verifiera andra. Dessa betrodda verifierare är utvalda av Bluesky." +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "Aktivitet från andra" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "Aktivitetsnotiser" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Lägg till" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Lägg till ytterligare {0} för att fortsätta" @@ -634,8 +666,8 @@ msgstr "Lägg till konto" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Lägg till alternativtext" msgid "Add alt text (optional)" msgstr "Lägg till alternativtext (valfritt)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Lägg till ett annat konto" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Lägg till ett ytterligare inlägg" @@ -670,8 +702,8 @@ msgstr "Lägg till applösenord" msgid "Add emoji reaction" msgstr "Lägg till emoji-reaktion" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Lägg till mer detaljer (valfritt)" @@ -683,7 +715,7 @@ msgstr "Lägg till ignorerat ord med de angivna inställningarna" msgid "Add muted words and tags" msgstr "Lägg till ord och taggar att ignorera" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Lägg till ett ytterligare inlägg" @@ -704,7 +736,7 @@ msgstr "Lägg till reaktion" msgid "Add recommended feeds" msgstr "Lägg till rekommenderade flöden" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Lägg till några flöden i ditt startpaket!" @@ -725,10 +757,6 @@ msgstr "Lägg till bland dina flöden" msgid "Add to lists" msgstr "Lägg till i listor" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Lägg till i mina flöden" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "Lägg till användare i lista" @@ -738,11 +766,11 @@ msgstr "Lägg till användare i lista" msgid "Added to list" msgstr "Tillagd i listan" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Tillagt i mina flöden" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "Ytterligare detaljer (max 1000 tecken)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Ytterligare detaljer (max 300 tecken)" @@ -750,18 +778,18 @@ msgstr "Ytterligare detaljer (max 300 tecken)" msgid "Adult" msgstr "Vuxen" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Vuxeninnehåll" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Vuxeninnehåll går bara att aktivera via webben på <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Vuxeninnehåll är inaktiverat." @@ -770,16 +798,32 @@ msgstr "Vuxeninnehåll är inaktiverat." msgid "Adult Content labels" msgstr "Etiketter för vuxeninnehåll" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Avancerat" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "Ålderskontroll" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "Det gick inte att skicka din förfrågan om ålderskontroll. Försök igen." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "Din förfrågan om ålderskontroll har skickats" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "Ålderskontrollen tar bara några minuter" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "alice@exempel.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Alla" @@ -793,7 +837,7 @@ msgstr "Alla konton har följts!" msgid "All languages" msgstr "Alla språk" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Alla flöden du har sparat, på ett och samma ställe." @@ -802,16 +846,21 @@ msgstr "Alla flöden du har sparat, på ett och samma ställe." msgid "Allow access to your direct messages" msgstr "Tillåt åtkomst till dina direktmeddelanden" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Tillåt nya meddelanden från" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "Tillåt andra att bli notifierade om dina inlägg" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Tillåt citeringar" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Tillåt svar från:" @@ -828,13 +877,13 @@ msgstr "Har du redan en kod?" msgid "Already signed in as @{0}" msgstr "Redan inloggad som @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "Alternativtext" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Alternativtext" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Alternativtexter beskriver bilder för blinda och användare med nedsatt syn. De hjälper också gemene man med kontext och sammanhang." @@ -861,27 +910,19 @@ msgstr "Alternativtexten kommer att kortas av. {MAX_ALT_TEXT, plural, other {Gr msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Ett e-postmeddelande har skickats till {0}. Det innehåller en bekräftelsekod som du behöver ange nedan." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "Ett e-postmeddelande har skickats till din tidigare adress, {currentEmail}. Det innehåller en bekräftelsekod som du kan ange nedan." - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Ett e-postmeddelande har skickats! Ange bekräftelsekoden som kom med det nedan." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Ett fel har uppstått" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Ett fel uppstod" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Ett fel uppstod under komprimeringen av videoklippet." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "Ett fel uppstod under hämtningen av flödet." @@ -889,11 +930,11 @@ msgstr "Ett fel uppstod under hämtningen av flödet." msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Ett fel uppstod när ditt startpaket skulle genereras. Vill du försöka igen?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Ett fel uppstod under inläsningen av videoklippet. Försök igen senare." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Ett fel uppstod under inläsningen av videoklippet. Försök igen." @@ -910,7 +951,7 @@ msgstr "Ett fel uppstod när videoklippet valdes" msgid "An error occurred while trying to follow all" msgstr "Ett fel uppstod när du försökte följa alla" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Ett fel uppstod under uppladdningen av videoklippet." @@ -934,8 +975,8 @@ msgstr "Ett problem uppstod när chatten skulle öppnas" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "ett okänt fel uppstod" msgid "an unknown labeler" msgstr "en okänd etikettsättare" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "och" @@ -963,10 +1004,14 @@ msgstr "och" msgid "Animals" msgstr "Djur" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "Animerade gif-bilder" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "Meddelande" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "Verifiering införs på Bluesky" @@ -980,7 +1025,13 @@ msgstr "Antisocialt beteende" msgid "Anybody can interact" msgstr "Vem som helst kan interagera" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "Alla som följer mig" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "Namn på applösenord får bara innehålla bokstäver, siffror, bindestr msgid "App password names must be at least 4 characters long" msgstr "Namn på applösenord måste vara minst 4 tecken långa" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Applösenord" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Applösenord" @@ -1053,10 +1104,10 @@ msgstr "Begär omprövning av avstängning" msgid "Appeal this decision" msgstr "Begär omprövning av beslutet" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Utseende" @@ -1065,12 +1116,20 @@ msgstr "Utseende" msgid "Apply default recommended feeds" msgstr "Tillämpa förvalda rekommenderade flöden" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "Tillämpa pull request" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Arkiverat från {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Arkiverat inlägg" @@ -1078,7 +1137,7 @@ msgstr "Arkiverat inlägg" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Är du säker på att du vill radera applösenordet ”{0}”?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Är du säker på att du vill radera det här meddelandet? Meddelandet kommer att raderas för dig, men inte för den andra deltagaren." @@ -1098,19 +1157,15 @@ msgstr "Är du säker på att du vill lämna den här konversationen?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Är du säker på att du vill lämna den här konversationen? Dina meddelanden kommer att tas bort för dig, men inte för den andra deltagaren." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Är du säker på att du vill ta bort {0} från dina flöden?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Är du säker på att du vill ta bort det här från dina flöden?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Är du säker på att du vill slänga det här utkastet?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Är du säker på att du vill slänga det här inlägget?" @@ -1131,29 +1186,26 @@ msgstr "Konst" msgid "Artistic or non-erotic nudity." msgstr "Konstnärlig eller icke-erotisk nakenhet." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "Tilldela ämne för algoritm" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Minst 3 tecken" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Norrsken" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Inställningar för automatisk uppspelning har flyttat till <0>Innehåll och media." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Spela upp videoklipp och gif-bilder automatiskt" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "Tillgängligt" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Spela upp videoklipp och gif-bilder automatiskt" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Tillbaka" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Tillbaka till chattar" @@ -1195,28 +1247,44 @@ msgstr "Du måste verifiera din e‑postadress innan du kan skapa ett startpaket msgid "Before you can accept this chat request, you must first verify your email." msgstr "Du måste verifiera din e-post innan du kan acceptera den här chattförfrågningen." +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "Innan du kan få notiser om {name}s inlägg måste du först verifiera din e-postadress." + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "Du måste verifiera din e‑post innan du kan skicka meddelanden till andra användare." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "Starta" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "Starta processen för ålderskontroll" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "Inled ålderskontrollen med att fylla i fälten nedan." + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Födelsedag" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Blockera" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Blockera" msgid "Block account" msgstr "Blockera konto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Blockera konto?" @@ -1262,20 +1330,20 @@ msgstr "Blockera användare" msgid "Block User" msgstr "Blockera användare" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Blockerat" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Blockerade konton" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Blockerade konton" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blockerade konton kan inte svara i dina trådar, nämna dig eller på annat sätt interagera med dig." @@ -1284,11 +1352,11 @@ msgstr "Blockerade konton kan inte svara i dina trådar, nämna dig eller på an msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Blockerade konton kan inte svara i dina trådar, nämna dig eller på annat sätt interagera med dig. Du kan inte se deras innehåll, och de kan inte se ditt." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Blockerat inlägg." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blockeringen hindrar inte den här etikettsättaren från att sätta etiketter på ditt konto." @@ -1309,18 +1377,19 @@ msgstr "Blogg" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kan inte bekräfta äktheten av det angivna datumet." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" #: src/view/com/auth/server-input/index.tsx:212 msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." -msgstr "Bluesky är ett öppet nätverk där du kan välja din värdleverantör. Om du är en utvecklare kan du vara värd för din egen server." +msgstr "Bluesky är ett öppet nätverk där du kan välja vilken tjänst som hanterar din data. Om du är utvecklare kan du också driva en egen server." #: src/view/com/auth/server-input/index.tsx:149 msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." @@ -1347,6 +1416,14 @@ msgstr "Bluesky visar inte din profil eller dina inlägg för utloggade använda msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky kommer proaktivt att verifiera framstående och äkta konton." +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "Blueskys gemenskapsriktlinjer" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "Blueskys uppdaterade gemenskapsriktlinjer" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,25 +1445,22 @@ msgstr "Gör bilder suddiga och filtrera bort från flöden" msgid "Books" msgstr "Böcker" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" -msgstr "Bläddra bland fler konton på sidan Utforska" +msgstr "Bläddra bland fler konton på Utforska-sidan" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" -msgstr "Bläddra bland fler flöden på sidan Utforska" +msgstr "Bläddra bland fler flöden på Utforska-sidan" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Bläddra bland fler förslag" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" -msgstr "Bläddra bland fler förslag på sidan Utforska" +msgstr "Bläddra bland fler förslag på Utforska-sidan" #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Affärer" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Av {0}" @@ -1428,15 +1502,23 @@ msgstr "Av {0}" msgid "By <0>{0}" msgstr "Av <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "Genom att klicka på ”Fortsätt” bekräftar du att du förstår och godkänner dessa uppdateringar." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "Genom att fortsätta samtycker du till <0>KWS användarvillkor och bekräftar att KWS kommer att lagra din verifierade status tillsammans med din hashade e-postadress i enlighet med <1>KWS integritetspolicy. Det innebär att du inte behöver verifiera dig igen nästa gång du använder den här e-postadressen för andra appar, spel eller tjänster som drivs av KWS-teknik." + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Genom att skapa ett konto godkänner du vår <0>integritetspolicy." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Genom att skapa ett konto godkänner du våra <0>användarvillkor och vår <1>sekretesspolicy." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Genom att skapa ett konto godkänner du våra <0>användarvillkor." @@ -1448,14 +1530,17 @@ msgstr "Av dig" msgid "Camera" msgstr "Kamera" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Kamera" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Avbryt" @@ -1500,11 +1582,7 @@ msgstr "Avbryt radering av konto" msgid "Cancel image crop" msgstr "Avbryt bildbeskärning" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Avbryt profilredigering" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Avbryt och släng citatinlägg" @@ -1516,14 +1594,10 @@ msgstr "Avbryt återaktivering och logga ut" msgid "Cancel search" msgstr "Avbryt sökning" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Avbryter öppningen av den länkade webbplatsen" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Det går inte att interagera med en blockerad användare" @@ -1553,17 +1627,12 @@ msgstr "Ändra appikon till ”{0}”" msgid "Change app language" msgstr "Ändra appspråk" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Ändra e‑postadress" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Ändra användarnamn" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Ändra modereringstjänst" @@ -1579,14 +1648,6 @@ msgstr "Ändra inläggets språk till {suggestedLanguageName}" msgid "Change report reason" msgstr "Ändra skäl till anmälan" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Ändra din e‑postadress" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Ändra din e‑postadress" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Ändrar appikon" @@ -1596,10 +1657,15 @@ msgstr "Ändrar appikon" msgid "Changes hosting provider" msgstr "Ändrar värdleverantör" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "Ändringar sparade" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Chatt" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Chatt raderad" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "Chattmeddelanden – ljud av" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "Chattmeddelanden – ljud på" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Chatt ignorerad" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "Inkorg för chattförfrågningar" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Chattförfrågningar" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Chattinställningar" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Chattinställningar" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chatt inte längre ignorerad" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Chattar" @@ -1661,7 +1738,7 @@ msgstr "Titta i din inkorg efter ett e‑postmeddelande med den bekräftelsekod msgid "Choose domain verification method" msgstr "Välj metod för att verifiera din domän" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Välj flöden" @@ -1669,7 +1746,7 @@ msgstr "Välj flöden" msgid "Choose for me" msgstr "Välj åt mig" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Välj personer" @@ -1685,23 +1762,23 @@ msgstr "Välj den här färgen som din avatar" msgid "Choose your account provider" msgstr "Välj din kontoleverantör" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Välj din egen tidslinje! Flöden som har skapats av andra i gemenskapen hjälper dig att hitta innehåll du gillar." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Välj ditt lösenord" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Välj ditt användarnamn" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Rensa all lagrad data" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Rensa all lagrad data (starta om efter detta)" @@ -1714,23 +1791,27 @@ msgstr "Rensa bild-cache" msgid "Clear search query" msgstr "Rensa sökfrågan" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "Klicka för information" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "klicka här" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "Klicka här för att börja om verifieringsprocessen." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "Klicka här för att uppdatera din e-post" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Klicka för att inaktivera citeringar av detta inlägg." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Klicka för att tillåta citeringar av detta inlägg." @@ -1750,14 +1831,16 @@ msgstr "Klimat" msgid "Clip 🐴 clop 🐴" msgstr "Galopp 🐴 galopp 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Galopp 🐴 galopp 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Stäng" @@ -1789,13 +1876,15 @@ msgstr "Stäng notis" msgid "Close bottom drawer" msgstr "Stäng den nedersta lådan" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Stäng dialogruta" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Stäng sidpanel" @@ -1804,7 +1893,7 @@ msgstr "Stäng sidpanel" msgid "Close emoji picker" msgstr "Stäng emojiväljaren" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Stäng gif-dialogruta" @@ -1822,7 +1911,7 @@ msgstr "Stäng bildvisare" msgid "Close menu" msgstr "Stäng meny" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Stäng den här dialogrutan" @@ -1830,7 +1919,7 @@ msgstr "Stäng den här dialogrutan" msgid "Closes password update alert" msgstr "Stänger avisering om uppdatering av lösenord" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "Stänger inläggsverktyget och slänger utkastet" @@ -1843,16 +1932,16 @@ msgstr "Stänger emojiväljaren" msgid "Closes viewer for header image" msgstr "Stänger visaren för omslagsbilden" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Dölj lista över användare" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Fäller ihop användarlista för berörd notis" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Färgläge" @@ -1870,7 +1959,8 @@ msgstr "Komedi" msgid "Comics" msgstr "Serier" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Gemenskapens riktlinjer" @@ -1879,38 +1969,34 @@ msgstr "Gemenskapens riktlinjer" msgid "Complete onboarding and start using your account" msgstr "Slutför introduktionen och börja använda ditt konto" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Slutför kontrollen" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Skriv ett nytt inlägg" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Skriv inlägg som är upp till {0, plural, other {# tecken}} långa" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Skriv svar" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Komprimerar videoklipp…" -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Konfigurera innehållsfiltrering för kategorin: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Konfigurerad i <0>modereringsinställningar." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Bekräfta språkinställningar för innehåll" msgid "Confirm delete account" msgstr "Bekräfta radering av konto" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Bekräfta din ålder:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Bekräfta ditt födelsedatum" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Bekräfta ditt födelsedatum" msgid "Confirmation code" msgstr "Bekräftelsekod" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Bekräftelsekod" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Ansluter…" -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "Anslutningsproblem" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "Kontakta vårt modereringsteam" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Kontakta supporten" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "Kontakta oss" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Innehåll och media" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Innehåll och media" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Innehåll och media" @@ -1977,7 +2069,8 @@ msgstr "Innehåll och media" msgid "Content Blocked" msgstr "Innehåll blockerat" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Innehållsfilter" @@ -2006,10 +2099,12 @@ msgstr "Innehållsvarning" msgid "Content warnings" msgstr "Innehållsvarningar" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Utanför kontextmenyn. Klicka för att stänga menyn." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Fortsätt" msgid "Continue as {0} (currently signed in)" msgstr "Fortsätt som {0} (nuvarande inloggad)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "Utöka tråd" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Utöka tråd…" @@ -2029,6 +2129,10 @@ msgstr "Utöka tråd…" msgid "Continue to next step" msgstr "Fortsätt till nästa steg" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "Konversation" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Kopierat" msgid "Copied build version to clipboard" msgstr "Byggversion kopierad till urklipp" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Kopierar byggversion till urklipp" msgid "Copy" msgstr "Kopiera" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "Kopiera ändå" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Kopiera applösenord" @@ -2087,8 +2187,8 @@ msgstr "Kopiera applösenord" msgid "Copy at:// URI" msgstr "Kopiera at://-URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Kopiera författarens DID" @@ -2120,10 +2220,10 @@ msgstr "Kopiera länk" msgid "Copy link to list" msgstr "Kopiera länk till lista" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Kopiera länk till inlägg" @@ -2136,18 +2236,18 @@ msgstr "Kopiera länk till profil" msgid "Copy link to starter pack" msgstr "Kopiera länk till startpaket" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Kopiera meddelandetext" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Kopiera inläggets at://-URI" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Kopiera inläggstext" @@ -2159,32 +2259,54 @@ msgstr "Kopiera QR-kod" msgid "Copy TXT record value" msgstr "Kopiera värde för TXT-post" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Upphovsrättspolicy" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "Kunde inte ansluta till anpassat flöde" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "Kunde inte ansluta till flödestjänst" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "Kunde inte hitta profil" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" -msgstr "Det gick inte att lämna chatten" +msgstr "Kunde inte lämna chatt" #: src/screens/Profile/ProfileFeed/index.tsx:83 msgid "Could not load feed" -msgstr "Det gick inte att läsa in flödet" +msgstr "Kunde inte läsa in flöde" #: src/view/screens/ProfileList.tsx:1029 msgid "Could not load list" -msgstr "Det gick inte att läsa in listan" +msgstr "Kunde inte läsa in lista" #: src/components/dms/ConvoMenu.tsx:182 msgid "Could not mute chat" -msgstr "Det gick inte att ignorera chatten" +msgstr "Kunde inte ignorera chatt" #: src/view/com/composer/videos/VideoPreview.web.tsx:66 msgid "Could not process your video" msgstr "Kunde inte bearbeta ditt videoklipp" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "Kunde inte spara ändringar: {0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "Kunde inte uppdatera notisinställningar" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Skapa" @@ -2195,7 +2317,7 @@ msgstr "Skapa en QR-kod för ett startpaket" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Skapa ett startpaket" @@ -2205,21 +2327,22 @@ msgstr "Skapa ett startpaket åt mig" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Skapa konto" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Skapa konto" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Skapa ett konto" @@ -2241,7 +2364,7 @@ msgstr "Skapa en annan" msgid "Create new account" msgstr "Skapa nytt konto" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Skapa anmälan för {0}" @@ -2268,9 +2391,9 @@ msgstr "Anpassad" msgid "Customization options" msgstr "Anpassningsalternativ" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." -msgstr "Ställ in vilka som kan interagera med det här inlägget." +msgstr "Ställ in vem som kan interagera med det här inlägget." #: src/screens/Onboarding/Layout.tsx:56 msgid "Customizes your Bluesky experience" @@ -2278,12 +2401,12 @@ msgstr "Anpassar din upplevelse på Bluesky" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Mörkt" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Mörk" @@ -2292,21 +2415,21 @@ msgstr "Mörk" msgid "Dark mode" msgstr "Mörkt läge" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Mörkt tema" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Födelsedatum" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Inaktivera konto" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Felsök moderering" @@ -2314,7 +2437,7 @@ msgstr "Felsök moderering" msgid "Debug panel" msgstr "Felsökningspanel" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Förvald" @@ -2322,8 +2445,8 @@ msgstr "Förvald" msgid "Default icons" msgstr "Förvalda ikoner" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Förvalda ikoner" msgid "Delete" msgstr "Radera" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Radera konto" @@ -2355,7 +2478,7 @@ msgstr "Radera applösenord?" msgid "Delete chat" msgstr "Radera chatt" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Radera chattdeklarationsposten" @@ -2370,7 +2493,7 @@ msgstr "Radera konversation" msgid "Delete Conversation" msgstr "Radera konversation" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Radera för mig" @@ -2378,11 +2501,11 @@ msgstr "Radera för mig" msgid "Delete list" msgstr "Radera lista" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Radera meddelande" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Radera meddelandet för mig" @@ -2390,9 +2513,9 @@ msgstr "Radera meddelandet för mig" msgid "Delete my account" msgstr "Radera mitt konto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Radera inlägg" @@ -2409,11 +2532,11 @@ msgstr "Radera startpaket?" msgid "Delete this list?" msgstr "Radera den här listan?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Radera det här inlägget?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Raderat" @@ -2422,15 +2545,20 @@ msgstr "Raderat" msgid "Deleted Account" msgstr "Raderat konto" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "Raderad lista" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Raderat inlägg." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Beskrivning" @@ -2447,12 +2575,12 @@ msgstr "Beskrivningen är för lång. {DESCRIPTION_MAX_GRAPHEMES, plural, other msgid "Descriptive alt text" msgstr "Beskrivande alternativtext" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Avskilj citat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Avskilj citatinlägg?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Utvecklarläge aktiverat" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Utvecklaralternativ" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" -msgstr "Dialogruta: ställ in vilka som kan interagera med det här inlägget" +msgstr "Dialogruta: ställ in vem som kan interagera med det här inlägget" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Dämpat" @@ -2492,27 +2620,27 @@ msgstr "Inaktivera 2FA via e-post" msgid "Disable Email 2FA" msgstr "Inaktivera 2FA via e-post" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Inaktivera haptisk feedback" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Stäng av undertexter" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Inaktiverat" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Släng" @@ -2520,11 +2648,11 @@ msgstr "Släng" msgid "Discard changes?" msgstr "Vill du slänga ändringarna?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Vill du slänga utkastet?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Vill du slänga inlägget?" @@ -2542,46 +2670,46 @@ msgstr "Upptäck flöden" msgid "Discover new custom feeds" msgstr "Upptäck nya anpassade flöden" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Upptäck nya flöden" #: src/components/Dialog/index.tsx:321 msgid "Dismiss" -msgstr "Avfärda" +msgstr "Avvisa" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Avvisa fel" #: src/components/ProgressGuide/List.tsx:42 msgid "Dismiss getting started guide" -msgstr "Avfärda kom-igång-guide" +msgstr "Avvisa kom-igång-guide" #: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "Dismiss interests" -msgstr "Avfärda intressen" +msgstr "Avvisa intressen" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "Avvisa meddelande" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" -msgstr "Avfärda den här sektionen" +msgstr "Avvisa den här sektionen" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Visa större brickor för alternativtext" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Visningsnamn" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Visningsnamn" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Visningsnamnet är för långt" @@ -2603,15 +2731,11 @@ msgstr "Undanta användare som du följer från att ignoreras genom det här ord msgid "Does not include nudity." msgstr "Innehåller ingen nakenhet." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Börjar eller slutar inte med ett bindestreck" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Domän verifierad!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Har du ingen kod eller behöver du en ny? <0>Klicka här." @@ -2619,6 +2743,15 @@ msgstr "Har du ingen kod eller behöver du en ny? <0>Klicka här." msgid "Don't see an email? <0>Click here to resend." msgstr "Hittar du inget e-postmeddelande? <0>Klicka här för att skicka ett nytt." +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "Visa inte igen" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "Ingen fara! Alla dina befintliga meddelanden och inställningar är sparade och kommer att finnas tillgängliga igen när du har verifierat att du är vuxen." + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "Håll nere eller dubbeltryck på meddelandet för att lägga till en rea msgid "Double tap to close the dialog" msgstr "Dubbeltryck för att stänga dialogrutan" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Dubbeltryck för att gilla" @@ -2673,7 +2806,7 @@ msgstr "Ladda ner Bluesky" msgid "Download CAR file" msgstr "Ladda ner car-fil" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Släpp för att lägga till bilder" @@ -2689,18 +2822,10 @@ msgstr "t.ex. alice" msgid "e.g. Alice Lastname" msgstr "t.ex. Alice Efternamn" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "t.ex. Alice Roberts" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "t.ex. alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "t.ex. Konstnär, hundälskare och entusiastisk läsare." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "T.ex. konstnärliga nakenbilder." @@ -2725,10 +2850,11 @@ msgstr "t.ex. Användare som hela tiden svarar med annonser." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Varje kod fungerar en gång. Du kommer att få fler inbjudningskoder med jämna mellanrum." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Redigera" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Redigera" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Redigera avatar" @@ -2749,12 +2875,12 @@ msgstr "Redigera flöden" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Redigera bild" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Redigera interaktionsinställningar" @@ -2776,33 +2902,33 @@ msgstr "Redigera livesändningsstatus" msgid "Edit Moderation List" msgstr "Redigera modereringslista" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Redigera mina flöden" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Redigera min profil" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "Redigera notiser från {0}" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Redigera personer" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Redigera interaktionsinställningar för inlägg" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Redigera profil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Redigera profil" @@ -2814,19 +2940,11 @@ msgstr "Redigera startpaket" msgid "Edit User List" msgstr "Redigera användarlista" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" -msgstr "Redigera vilka som kan svara" +msgstr "Redigera vem som kan svara" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Redigera ditt visningsnamn" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Redigera din profilbeskrivning" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Redigera ditt startpaket" @@ -2839,8 +2957,8 @@ msgstr "Utbildning" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "Antingen har skaparen av den här listan blockerat dig, eller så har du blockerat skaparen." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "E-post" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "2FA via e-post inaktiverat" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "2FA via e-post är aktiverat" @@ -2865,10 +2983,6 @@ msgstr "E-postmeddelandet har skickats på nytt" msgid "Email sent!" msgstr "E-postmeddelande skickat!" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "E-post uppdaterad!" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "E-postverifiering slutförd!" @@ -2883,8 +2997,8 @@ msgstr "Bädda in HTML-kod" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Bädda in inlägg" @@ -2892,7 +3006,7 @@ msgstr "Bädda in inlägg" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Bädda in det här inlägget på din hemsida. Det är bara att kopiera följande text och klistra in den i HTML-koden på din hemsida." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Inbäddad videospelare" @@ -2906,7 +3020,7 @@ msgstr "Aktivera" msgid "Enable {0} only" msgstr "Aktivera endast {0}" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Tillåt vuxeninnehåll" @@ -2919,16 +3033,20 @@ msgstr "Aktivera 2FA via e-post" msgid "Enable external media" msgstr "Aktivera extern media" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Aktivera mediaspelare för" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Aktivera prioriterade notiser" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "Aktivera notiser för ett konto genom att besöka dess profil och trycka på <0>klockikonen <1/>." -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "Aktivera pushnotiser" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Aktivera undertexter" @@ -2941,17 +3059,14 @@ msgstr "Aktivera endast denna källa" msgid "Enable trending topics" msgstr "Aktivera trendande ämnen" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Visa trendande videoklipp i ditt Upptäck-flöde" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Visa trendande videoklipp i ditt Upptäck-flöde." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Aktiverat" @@ -2963,7 +3078,7 @@ msgstr "Slut på flödet" msgid "Ensure you have selected a language for each subtitle file." msgstr "Se till att du har valt ett språk för varje undertextfil." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Ange ett lösenord" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Ange ett ord eller en tagg" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "Ange kod" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Ange kod" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Öppna helskärm" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Ange ditt födelsedatum" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Ange din e-postadress" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Ange din nya e-postadress nedan." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Ange ditt lösenord" @@ -3022,7 +3129,7 @@ msgstr "Ange ditt lösenord" msgid "Enter your username and password" msgstr "Ange ditt användarnamn och lösenord" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Öppnar helskärm" @@ -3030,16 +3137,28 @@ msgstr "Öppnar helskärm" msgid "Entertainment" msgstr "Underhållning" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Fel" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "Fel vid inläsning av inlägg" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "Fel vid inläsning av inställning" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "Felmeddelande" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Ett fel uppstod när filen skulle sparas" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Fel vid mottagning av captcha-svar." @@ -3047,27 +3166,34 @@ msgstr "Fel vid mottagning av captcha-svar." msgid "Error:" msgstr "Fel:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "Fel: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Alla" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Alla kan svara" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Alla kan svara på det här inlägget." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Alla" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "Allt annat" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Undanta användare som du följer" msgid "Excludes users you follow" msgstr "Undantar användare som du följer" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Stäng helskärm" @@ -3104,26 +3230,30 @@ msgstr "Avslutar bildvisning" #: src/view/com/lightbox/Lightbox.web.tsx:184 msgid "Expand alt text" -msgstr "Visa alternativtext" +msgstr "Utöka alternativtext" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Utöka lista över användare" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" -msgstr "Utöka eller fäll ihop det inlägg som du svarar på i sin helhet" +msgstr "Utöka eller fäll ihop det inlägg som du svarar på" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "Utöka inläggstext" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Utökar eller fäller ihop inläggstext" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "Förväntade att URI:n skulle lösa till en post" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Experimentellt" @@ -3153,15 +3283,15 @@ msgstr "Explicit eller potentiellt stötande media." msgid "Explicit sexual images." msgstr "Explicit sexuella bilder." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "Utforska" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Exportera min data" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Extern media" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Extern media kan göra det möjligt för webbplatser att samla in information om dig och din enhet. Ingen information skickas eller begärs förrän du trycker på spelaknappen." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Inställningar för extern media" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "Det gick inte att acceptera chatten" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "Det gick inte att lägga till emoji-reaktion" @@ -3211,8 +3341,8 @@ msgstr "Det gick inte att skapa ett applösenord. Försök igen." msgid "Failed to create conversation" msgstr "Det gick inte att skapa konversation" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Det gick inte att skapa ett startpaket" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "Det gick inte att radera chatten" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Det gick inte att radera inlägget" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Det gick inte att radera inlägget. Försök igen" @@ -3238,8 +3368,8 @@ msgstr "Det gick inte att radera inlägget. Försök igen" msgid "Failed to delete starter pack" msgstr "Det gick inte att radera startpaketet" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "Det gick inte att läsa in konversationer" @@ -3250,14 +3380,32 @@ msgstr "Det gick inte att läsa in konversationer" msgid "Failed to load feeds preferences" msgstr "Det gick inte att läsa in flödesinställningar" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Det gick inte att läsa in gif-bilder" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "Det gick inte att läsa in notisinställningar." + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Det gick inte att läsa in tidigare meddelanden" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "Det gick inte att läsa in inställning." + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Det gick inte att läsa in föreslagna flöden" msgid "Failed to load suggested follows" msgstr "Det gick inte att läsa in föreslagna konton att följa" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "Det gick inte att markera alla förfrågningar som lästa" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Det gick inte att fästa inlägget" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "Det gick inte att ta bort emoji-reaktion" @@ -3291,15 +3439,11 @@ msgstr "Det gick inte att ta bort verifiering" msgid "Failed to save image: {0}" msgstr "Det gick inte att spara bilden: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Det gick inte att spara notisinställningarna. Försök igen" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "Det gick inte att spara inställningarna. Försök igen." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "Det gick inte att spara dina intressen." @@ -3318,7 +3462,7 @@ msgstr "Det gick inte att skicka e-postmeddelande. Försök igen." msgid "Failed to submit appeal, please try again." msgstr "Det gick inte att skicka omprövningsbegäran. Försök igen." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Det gick inte att ignorera tråden. Försök igen" @@ -3335,7 +3479,11 @@ msgstr "Det gick inte att uppdatera e-post. Försök igen." msgid "Failed to update feeds" msgstr "Det gick inte att uppdatera flödena" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "Det gick inte att uppdatera notisdeklaration" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Det gick inte att uppdatera inställningarna" @@ -3354,15 +3502,23 @@ msgstr "Det gick inte att verifiera e-post. Försök igen." msgid "Failed to verify handle. Please try again." msgstr "Det gick inte att verifiera användarnamnet. Försök igen." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Flöde" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Flöde av {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "Flödets skapare" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "Flödets identifierare" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Meny för flöde" @@ -3371,35 +3527,39 @@ msgstr "Meny för flöde" msgid "Feed toggle" msgstr "Växla läge på flöde" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "Otillgängligt flöde" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Feedback" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Feedback skickad!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Flöden" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Flöden är anpassade algoritmer som användare kan bygga med hjälp av lite kodningskunskap. <0/> för mer information." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Flöden uppdaterade!" @@ -3428,6 +3588,14 @@ msgstr "Filtrera sökning efter språk" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtrera sökning efter språk (nuvarande: {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "Filtrera vem som kan välja att få notiser om din aktivitet" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "Filtrera vem du får notiser från" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Slutför" @@ -3448,7 +3616,7 @@ msgstr "Hitta personer att följa" msgid "Find posts, users, and feeds on Bluesky" msgstr "Hitta inlägg, användare och flöden på Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Slutför" @@ -3456,17 +3624,17 @@ msgstr "Slutför" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Matt svart" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Matt blå" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Matt vit" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Flexibelt" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Följ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Följ {0}" @@ -3518,7 +3686,7 @@ msgstr "Följ konto" msgid "Follow all" msgstr "Följ alla" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Följ tillbaka" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Följ tillbaka" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Följs av <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Följs av <0>{0} och {1, plural, one {# annan} other {# andra}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Följs av <0>{0} och <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Följs av <0>{0}, <1>{1}, och {2, plural, one {# annan} other {# andra}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Följare av @{0} som du känner" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Följare som du känner" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Följer" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Följer" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Följer {0}" @@ -3579,8 +3751,8 @@ msgstr "Följer {handle}" msgid "Following feed preferences" msgstr "Inställningar för Följer-flödet" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Inställningar för Följer-flödet" @@ -3592,11 +3764,11 @@ msgstr "Följer dig" msgid "Follows You" msgstr "Följer dig" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Typsnitt" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Teckenstorlek" @@ -3613,7 +3785,7 @@ msgstr "Av säkerhetsskäl kommer vi att skicka en bekräftelsekod till din e-po msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Av säkerhetsskäl kommer du inte kunna se det här igen. Om du tappar bort applösenordet måste du skapa ett nytt." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Vi rekommenderar tematypsnittet för bästa upplevelse." @@ -3643,11 +3815,15 @@ msgstr "Glömt?" msgid "Frequently Posts Unwanted Content" msgstr "Publicerar ofta oönskat innehåll" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "Från" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "Från @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "Från <0/>" @@ -3660,14 +3836,68 @@ msgstr "Galleri" msgid "Generate a starter pack" msgstr "Generera ett startpaket" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Få hjälp" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "Få notiser när andra följer dig." + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "Få notiser när andra gillar inlägg som du har återpublicerat." + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "Få notiser när andra gillar dina inlägg." + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "Få notiser när du omnämns av andra." + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "Få notiser när andra citerar dina inlägg." + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "Få notiser när andra svarar på dina inlägg." + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "Få notiser när andra återpublicerar inlägg som du har återpublicerat." + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "Få notiser när andra återpublicerar dina inlägg." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "Bli notifierad om nya inlägg" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Bli notifierad om inlägg och svar från konton du väljer." + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "Bli notifierad om nya inlägg från {name}" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "Bli notifierad om det här kontots aktivitet" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "Bli notifierad när {name} publicerar inlägg" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "Bli notifierad när någon publicerar inlägg" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "Kom igång" @@ -3688,14 +3918,16 @@ msgstr "Ge din profil ett ansikte" msgid "Glaring violations of law or terms of service" msgstr "Uppenbara överträdelser av lagar eller användarvillkor" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "Sänd live" msgid "Go live for" msgstr "Sänd live i" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "Gå till {firstAuthorName}s profil" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "Gå till kontoinställningar" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Gå till konversation med {0}" @@ -3779,8 +4017,8 @@ msgstr "Grafiskt innehåll" msgid "Half way there!" msgstr "Halvvägs där!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Användarnamn" @@ -3797,7 +4035,7 @@ msgstr "Användarnamnet har ändrats!" msgid "Handle too long. Please try a shorter one." msgstr "Användarnamnet är för långt. Försök med ett kortare." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Haptik" @@ -3806,7 +4044,7 @@ msgstr "Haptik" msgid "Harassment, trolling, or intolerance" msgstr "Trakasserier, trolling eller intolerans" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Hashtagg" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Hashtagg: {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "Har du en kod? <0>Klicka här." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Har du problem?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Hjälp" @@ -3839,8 +4077,13 @@ msgstr "Låt folk veta att du inte är en bot genom att ladda upp en bild eller msgid "Here is your app password!" msgstr "Här är ditt applösenord!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "Hej där 👋" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Dolt" @@ -3848,16 +4091,16 @@ msgstr "Dolt" msgid "Hidden by your moderation settings." msgstr "Dolt av dina modereringsinställningar." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Dold lista" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Dold lista" msgid "Hide" msgstr "Dölj" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Dölj" @@ -3875,18 +4118,18 @@ msgstr "Dölj" msgid "Hide customization options" msgstr "Dölj anpassningsalternativ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Dölj inlägg för mig" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Dölj svar för alla" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Dölj svar för mig" @@ -3894,12 +4137,12 @@ msgstr "Dölj svar för mig" msgid "Hide this card" msgstr "Dölj det här kortet" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Dölj det här inlägget?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Dölj det här svaret?" @@ -3913,11 +4156,11 @@ msgstr "Dölj trendande ämnen" msgid "Hide trending topics?" msgstr "Dölj trendande ämnen?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Dölj trendande videoklipp?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Dölj användarlista" @@ -3926,32 +4169,32 @@ msgstr "Dölj användarlista" msgid "Hide verification badges" msgstr "Dölj verifieringsmärken" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Döljer innehållet" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm, något gick snett med anslutningen till flödets server. Meddela gärna flödets ägare om det här problemet." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm, flödets server verkar vara felkonfiguerad. Meddela gärna flödets ägare om det här problemet." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm, flödets server verkar vara offline. Meddela gärna flödets ägare om det här problemet." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm, flödets server svarade med ett fel. Meddela gärna flödets ägare om det här problemet." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, vi har problem med att hitta det här flödet. Det kan ha raderats." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmmmm, det verkar som om vi har problem med att läsa in den här datan. Se nedan för mer information. Om problemet kvarstår, vänligen kontakta oss." @@ -3959,15 +4202,15 @@ msgstr "Hmmmm, det verkar som om vi har problem med att läsa in den här datan. msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, vi kunde inte ladda den modereringstjänsten." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Vänta lite! Vi ger gradvis tillgång till videoklipp till fler användare, och du står fortfarande i kön. Försök igen senare!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Hem" @@ -3984,10 +4227,10 @@ msgstr "Värdleverantör" msgid "Hot" msgstr "Hett" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Populära svar först" @@ -3996,10 +4239,6 @@ msgstr "Populära svar först" msgid "How should we open this link?" msgstr "Hur vill du att länken ska öppnas?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4017,9 +4256,9 @@ msgstr "Jag förstår" #: src/view/com/lightbox/Lightbox.web.tsx:186 msgid "If alt text is long, toggles alt text expanded state" -msgstr "Sätt långa alternativtexter i utökat läge" +msgstr "Sätter alternativtext i utökat läge om den är lång" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Om du inte är vuxen enligt ditt lands lagar måste din förälder eller vårdnadshavare läsa villkoren för din räkning." @@ -4031,11 +4270,11 @@ msgstr "Om du raderar den här listan kommer du inte att kunna återställa den. msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Om du har en egen domän kan du använda den som ditt användarnamn. Det gör det möjligt för dig att själv verifiera din identitet. <0>Läs mer här." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "Om du behöver uppdatera din e-post, <0>klicka här." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Om du tar bort det här inlägget kommer du inte att kunna återställa det." @@ -4047,9 +4286,13 @@ msgstr "Om du uppdaterar din e-postadress kommer 2FA via e-post att inaktiveras. msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Om du vill ändra ditt lösenord skickar vi en kod till dig för att verifiera att det här är ditt konto." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "Om du vill begränsa vem som kan få notiser om ditt kontos aktivitet kan du ändra detta under <0>Inställningar → Integritet och säkerhet." + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." -msgstr "Om du är en utvecklare kan du stå som värd för din egen server." +msgstr "Om du är utvecklare kan du driva en egen server." #: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 msgid "If you're trying to change your handle or email, do so before you deactivate." @@ -4091,13 +4334,41 @@ msgstr "Imitationer eller falska påståenden om identitet eller tillhörighet" msgid "Impersonation, misinformation, or false claims" msgstr "Imitation, felaktig information eller falska påståenden" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "I appen" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "Notiser i appen" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "I appen, Från alla" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "I appen, Från personer du följer" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "I appen, Push" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "I appen, Push, Från alla" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "I appen, Push, Från personer du följer" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Olämpliga meddelanden eller explicita länkar" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "Inkorgen är tom!" @@ -4105,7 +4376,7 @@ msgstr "Inkorgen är tom!" msgid "Incorrect username or password" msgstr "Felaktigt användarnamn eller lösenord" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Ange den kod som har skickats till din e-post för att återställa lösenordet" @@ -4113,7 +4384,7 @@ msgstr "Ange den kod som har skickats till din e-post för att återställa lös msgid "Input confirmation code for account deletion" msgstr "Ange bekräftelsekod för kontoradering" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Ange nytt lösenord" @@ -4129,10 +4400,14 @@ msgstr "Ange koden som har skickats till dig via e-post" msgid "Interaction limited" msgstr "Interaktion begränsad" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Interaktionsinställningar" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "Nu införs aktivitetsnotiser" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Ogiltig bekräftelsekod för 2FA." msgid "Invalid handle. Please try a different one." msgstr "Ogiltigt användarnamn. Försök med ett annat." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Ogiltig eller icke stödd inläggspost" @@ -4158,7 +4433,7 @@ msgstr "Ogiltig verifieringskod" msgid "Invite a Friend" msgstr "Bjud in en vän" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Inbjudningskod" @@ -4186,15 +4461,15 @@ msgstr "Bjud in dina vänner att följa dina favoritflöden och personer" msgid "Invites, but personal" msgstr "Inbjudningar, men personliga" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Det stämmer" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Just nu är det bara du! Lägg till fler personer i ditt startpaket genom att söka ovan." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "Jobb-ID: {0}" @@ -4220,11 +4495,27 @@ msgstr "Delta i samtalen" msgid "Journalism" msgstr "Journalistik" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "Håll mig uppdaterad" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "KWS integritetspolicy" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "KWS användarvillkor" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "KWS webbplats" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Märkt av {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Märkt av användaren." @@ -4237,7 +4528,7 @@ msgstr "Etiketter" msgid "Labels added" msgstr "Etiketter tillagda" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Etiketter är anteckningar som sätts på användare och innehåll. De kan användas för att dölja, varna och kategorisera inom nätverket." @@ -4253,22 +4544,30 @@ msgstr "Etiketter på ditt innehåll" msgid "Language selection" msgstr "Språkval" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Språkinställningar" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Språk" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Större" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "Senast initierad för {timeAgo} sedan" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "Senast initierad nyss" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Senaste" @@ -4282,7 +4581,6 @@ msgstr "läs mer" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "Läs mer" @@ -4290,23 +4588,35 @@ msgstr "Läs mer" msgid "Learn More" msgstr "Läs mer" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "Läs mer om ålderskontroll" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Läs mer om Bluesky" #: src/view/com/auth/server-input/index.tsx:218 msgid "Learn more about self hosting your PDS." -msgstr "Läs mer om att stå som värd för din egen PDS." +msgstr "Läs mer om att driva din egen PDS." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "Läs mer om den moderering som tillämpas på det här innehållet" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Läs mer om den moderering som görs på det här innehållet." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "Läs mer om förändringarna och hur du kan dela med dig av dina synpunkter i <0>vårt blogginlägg." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Läs mer om förändringarna och hur du kan dela med dig av dina synpunkter i vårt blogginlägg." + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Läs mer om den här varningen" @@ -4316,12 +4626,16 @@ msgstr "Läs mer om den här varningen" msgid "Learn more about verification on Bluesky" msgstr "Läs mer om verifiering på Bluesky" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Läs mer om vad som är offentligt på Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "Läs mer i dina <0>kontoinställningar." + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Läs mer." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Lämna konversation" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Lämna alla alternativ omarkerade för att se alla språk." +msgid "Leave them all unselected to see any language." +msgstr "Lämna alla alternativ avmarkerade för att se alla språk." -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Du är på väg att lämna Bluesky" @@ -4370,7 +4685,7 @@ msgstr "Nu kör vi!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Ljust" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Gilla" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Gilla ({0, plural, one {# gillamarkering} other {# gillamarkeringar}})" @@ -4397,6 +4712,10 @@ msgstr "Gilla 10 inlägg" msgid "Like 10 posts to train the Discover feed" msgstr "Gilla 10 inlägg för att träna Upptäck-flödet" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "Notiser för gillamarkeringar" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Gilla det här flödet" @@ -4405,8 +4724,8 @@ msgstr "Gilla det här flödet" msgid "Like this labeler" msgstr "Gilla den här etikettsättaren" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Gillat av" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Gillat av" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Gillat av {0, plural, one {# användare} other {# användare}}" @@ -4428,20 +4747,36 @@ msgstr "Gillat av {0, plural, one {# användare} other {# användare}}" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Gillat av {likeCount, plural, one {# användare} other {# användare}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Gillamarkeringar" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "Gillamarkeringar på dina återpubliceringar" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "Notiser för gillamarkeringar på dina återpubliceringar" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Gillamarkeringar på det här inlägget" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Linjärt" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Lista" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Lista blockerad" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Lista av {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "Lista av <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Lista av dig" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "Listans skapare" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Lista inte längre ignorerad" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Listor" @@ -4537,7 +4876,7 @@ msgstr "Läs in fler" msgid "Load more suggested feeds" msgstr "Läs in fler föreslagna flöden" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Läs in nya notiser" @@ -4552,11 +4891,11 @@ msgstr "Läs in nya inlägg" msgid "Loading..." msgstr "Laddar…" -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Logg" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Synlighet för utloggade" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logotyp av @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logotyp av <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Logotyp av <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Tryck och håll nere för att öppna taggmenyn för #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Ser ut som XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "Gör justeringar i ditt kontos e-postinställningar" msgid "Make one for me" msgstr "Skapa ett åt mig" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Se till att du är säker på att du navigeras dit du har tänkt!" @@ -4606,7 +4945,7 @@ msgstr "Se till att du är säker på att du navigeras dit du har tänkt!" msgid "Manage saved feeds" msgstr "Hantera sparade flöden" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "Hantera verifieringsinställningar" @@ -4614,9 +4953,9 @@ msgstr "Hantera verifieringsinställningar" msgid "Manage your muted words and tags" msgstr "Hantera dina ignorerade ord och taggar" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "Markera alla som lästa" @@ -4625,15 +4964,13 @@ msgstr "Markera alla som lästa" msgid "Mark as read" msgstr "Markera som läst" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "Markerade alla som lästa" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "Kanske senare" @@ -4645,19 +4982,26 @@ msgstr "Media" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Media som kan vara störande eller olämplig för vissa målgrupper." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "Notiser för omnämnanden" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "omnämnda användare" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Omnämnda användare" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Omnämnanden" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Meny" @@ -4665,7 +5009,7 @@ msgstr "Meny" msgid "Message {0}" msgstr "Meddelande {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Meddelande raderat" @@ -4674,11 +5018,11 @@ msgstr "Meddelande raderat" msgid "Message deleted" msgstr "Meddelande raderat" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "Meddelande från @{0}: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Meddelande från servern: {0}" @@ -4691,19 +5035,23 @@ msgstr "Inmatningsfält för meddelande" msgid "Message is too long" msgstr "Meddelandet är för långt" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "Meddelandealternativ" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Meddelanden" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Midnatt" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "Övriga notiser" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Vilseledande konto" msgid "Misleading Post" msgstr "Vilseledande inlägg" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderering" @@ -4725,17 +5073,17 @@ msgstr "Moderering" msgid "Moderation details" msgstr "Modereringsdetaljer" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Modereringslista av {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Modereringslista av <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Modereringslista av dig" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Modereringslista uppdaterad" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Modereringslistor" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Modereringslistor" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "modereringsinställningar" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Modereringslägen" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Modereringsverktyg" @@ -4775,7 +5123,7 @@ msgstr "Modereringsverktyg" msgid "Moderator has chosen to set a general warning on the content." msgstr "En moderator har valt att sätta en allmän varning på innehållet." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Mer" @@ -4790,13 +5138,13 @@ msgstr "Fler flöden" msgid "More options" msgstr "Fler alternativ" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "De mest gillade först" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "De mest gillade svaren först" @@ -4808,8 +5156,8 @@ msgstr "Filmer" msgid "Music" msgstr "Musik" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Stäng av ljud" @@ -4819,8 +5167,8 @@ msgstr "Stäng av ljud" msgid "Mute {tag}" msgstr "Ignorera {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Ignorera det här ordet endast i taggar" msgid "Mute this word until you unmute it" msgstr "Ignorera det här ordet tills du själv väljer att sluta med det" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Ignorera tråd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Ignorera ord och taggar" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Ignorerade konton" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Ignorerade konton" @@ -4898,7 +5246,7 @@ msgstr "Inlägg och meddelanden från ignorerade konton tas bort från ditt flö msgid "Muted by \"{0}\"" msgstr "Ignorerat av ”{0}”" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Ignorerade ord och taggar" @@ -4911,7 +5259,7 @@ msgstr "Vad du ignorerar hålls privat. Ignorerade konton kan interagera med dig msgid "My Birthday" msgstr "Min födelsedag" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Mina flöden" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Natur" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Navigera till {0}" @@ -4958,11 +5306,11 @@ msgstr "Navigerar till nästa ruta" msgid "Navigates to your profile" msgstr "Navigerar till din profil" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Behöver du ändra på det?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "Behöver du skicka in ett upphovsrättsärende, en juridisk begäran eller något som rör regulatorisk efterlevnad?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Behöver du rapportera en upphovsrättsöverträdelse?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Ny" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "{postsCount, plural, one {Nytt} other {Nya}} inlägg från {firstAuthorLink}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "{postsCount, plural, one {Nytt} other {Nya}} inlägg från {firstAuthorName}" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Ny chatt" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "Ny e-postadress" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "Ny funktion" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "Notiser för nya följare" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "Nya följare" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Nya meddelanden" msgid "New Moderation List" msgstr "Ny modereringslista" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Nytt lösenord" @@ -5029,7 +5396,7 @@ msgstr "Nytt lösenord" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Nytt inlägg" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Nytt inlägg" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Nya inlägg från {firstAuthorLink} och <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "Nya inlägg från {firstAuthorName} och {additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}}" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Dialogruta för ny användarinformation" @@ -5054,10 +5429,14 @@ msgstr "Dialogruta för ny användarinformation" msgid "New User List" msgstr "Ny användarlista" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Senaste svar först" @@ -5071,15 +5450,15 @@ msgstr "Nyheter" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "Ingen DNS-panel" msgid "No expiry set" msgstr "Ingen sluttid inställd" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Inga utvalda gif-bilder kunde hittas. Det kan vara något problem med Tenor." @@ -5119,32 +5498,35 @@ msgstr "Ingen bild" msgid "No likes yet" msgstr "Inga gillamarkeringar ännu" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "{0} följs inte längre" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "Får inte vara längre än {MAX_SERVICE_HANDLE_LENGTH, plural, other {# tecken}}" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Inga meddelanden ännu" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Inga notiser ännu!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Ingen" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Ingen annan än författaren kan citera detta inlägg." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "Här finns inga inlägg" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Inga inlägg ännu." @@ -5171,7 +5553,7 @@ msgstr "Inga resultat" msgid "No results for \"{0}\"." msgstr "Inga resultat för ”{0}”." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Inget resultat hittades" @@ -5179,9 +5561,9 @@ msgstr "Inget resultat hittades" msgid "No results found for \"{query}\"" msgstr "Inget resultat hittades för ”{query}”" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Inget resultat hittades för {query}" @@ -5189,7 +5571,7 @@ msgstr "Inget resultat hittades för {query}" msgid "No results." msgstr "Inga resultat." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Inget sökresultat hittades för ”{search}”." @@ -5198,7 +5580,7 @@ msgstr "Inget sökresultat hittades för ”{search}”." msgid "No thanks" msgstr "Nej tack" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Ingen" @@ -5223,59 +5605,76 @@ msgstr "Ingen hittades. Försök med att söka efter någon annan." msgid "Non-sexual Nudity" msgstr "Icke-sexuell nakenhet" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "Ingen" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "Följs inte av någon som du följer" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Hittades inte" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Anmärkning om delning" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Obs: Bluesky är ett öppet och offentligt nätverk. Den här inställningen begränsar endast ditt kontos synlighet på Blueskys app och webbplats. Andra appar kanske inte respekterar den här inställningen. Ditt innehåll kan fortfarande visas för utloggade användare genom andra appar och webbplatser." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "Obs: Det här inlägget visas bara för inloggade användare." + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Här var det tomt" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Notisfilter" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Notisinställningar" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Notisinställningar" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Notisljud" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Notisljud" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Notiser" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "Notiser för allt annat, t.ex. när någon använder ett av dina startpaket vid registrering." + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "nu" @@ -5295,13 +5694,14 @@ msgid "Nudity or adult content not labeled as such" msgstr "Nakenhet eller vuxeninnehåll som inte är märkt som sådant" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Av" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" -msgstr "Åh, nej!" +msgstr "Åh nej!" #: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "OK" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Okej" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Äldsta svar först" @@ -5331,19 +5736,19 @@ msgstr "Äldsta svar först" msgid "on<0><1/><2><3/>" msgstr "på<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Återställning av kom-igång-guide" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "En eller flera gif-bilder saknar alternativtext." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "En eller flera bilder saknar alternativtext." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Ett eller flera videoklipp saknar alternativtext." @@ -5351,13 +5756,15 @@ msgstr "Ett eller flera videoklipp saknar alternativtext." msgid "Only .jpg and .png files are supported" msgstr "Endast .jpg- och .png-filer stöds" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Endast {0} kan svara." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Innehåller endast bokstäver, siffror och bindestreck" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "Bara följare som jag följer" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Endast bildfiler stöds" msgid "Only WebVTT (.vtt) files are supported" msgstr "Endast WebVTT-filer (.vtt) stöds" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Hoppsan, något gick fel!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Hoppsan!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Öppna sidpanel" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Öppna emoji-väljaren" @@ -5416,7 +5822,7 @@ msgstr "Öppna meny för flödesalternativ" msgid "Open full emoji list" msgstr "Öppna fullständig emoji-lista" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Öppna länk till {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Öppna länk till {niceUrl}" msgid "Open message options" msgstr "Öppna meddelandealternativ" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Öppna felsökningssida för moderering" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Öppna inställningar för ignorerade ord och taggar" @@ -5453,16 +5859,16 @@ msgstr "Öppna delningsmeny" msgid "Open starter pack menu" msgstr "Öppna startpaketsmeny" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Öppna Storybook-sida" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Öppna systemlogg" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Öppnar {numItems} alternativ" @@ -5472,7 +5878,7 @@ msgstr "Öppnar en dialogruta där du kan lägga till en innehållsvarning för #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:61 msgid "Opens a dialog to choose who can reply to this thread" -msgstr "Öppnar en dialogruta där du kan välja vilka som får svara i den här tråden" +msgstr "Öppnar en dialogruta där du kan välja vem som får svara i den här tråden" #: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" @@ -5490,11 +5896,11 @@ msgstr "Öppnar kameran på enheten" msgid "Opens captions and alt text dialog" msgstr "Öppnar dialogruta för under- och alternativtext" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Öppnar dialogruta för ändring av användarnamn" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Öppnar inläggsverktyget" @@ -5502,7 +5908,7 @@ msgstr "Öppnar inläggsverktyget" msgid "Opens device photo gallery" msgstr "Öppnar enhetens bildgalleri" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Öppnar emojiväljaren" @@ -5520,15 +5926,19 @@ msgstr "Öppnar guide för att logga in på ditt befintliga Bluesky-konto" msgid "Opens GIF select dialog" msgstr "Öppnar dialogruta för val av gif-bild" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Öppnar hjälpcentralen i webbläsaren" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "Öppnar länken {0}" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Öppnar lista med inbjudningskoder" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "Öppnar dialogruta för livesändningsstatus" @@ -5536,12 +5946,8 @@ msgstr "Öppnar dialogruta för livesändningsstatus" msgid "Opens password reset form" msgstr "Öppnar formulär för återställning av lösenord" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Öppnar den länkade webbplatsen" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Öppnar den här profilen" @@ -5558,7 +5964,7 @@ msgstr "Lägg till valfri ytterligare information nedan:" msgid "Options:" msgstr "Alternativ:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Eller kombinera mellan de här alternativen:" @@ -5600,6 +6006,10 @@ msgstr "Annat konto" msgid "Other..." msgstr "Annat…" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "Vårt blogginlägg" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "Vårt modereringsteam har tagit emot din anmälan." @@ -5608,7 +6018,7 @@ msgstr "Vårt modereringsteam har tagit emot din anmälan." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Våra moderatorer har granskat anmälningarna och beslutat att ta bort din åtkomst till chattar på Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Sidan hittades inte" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Sidan hittades inte" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Lösenordet har uppdaterats" msgid "Password updated!" msgstr "Lösenordet har uppdaterats!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Pausa" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Pausa video" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Personer" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Personer som följs av @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Personer som följer @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "Personer jag följer" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "Åtkomst till ditt bildbibliotek nekades. Aktivera det i dina systeminställningar." @@ -5704,12 +6119,12 @@ msgstr "Fäst på hem" msgid "Pin to Home" msgstr "Fäst på Hem" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Fäst på din profil" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Fäst" @@ -5718,7 +6133,7 @@ msgstr "Fäst" msgid "Pinned {0} to Home" msgstr "Fäste {0} på Hem" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Fästa flöden" @@ -5726,38 +6141,38 @@ msgstr "Fästa flöden" msgid "Pinned to your feeds" msgstr "Fäst i dina flöden" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Spela" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Spela {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Spela upp videoklipp" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Spela upp videoklipp" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Spelar upp eller pausar gif-bilden" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Spelar upp eller pausar videoklippet" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Spelar upp gif-bilden" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Spelar upp videoklippet" @@ -5765,12 +6180,16 @@ msgstr "Spelar upp videoklippet" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "Lägg till de varningsetiketter som är relevanta för den media du publicerar." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "Titta i din e-postinkorg efter vidare instruktioner. Det kan ta en minut eller två innan de kommer." + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Välj ditt användarnamn." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Välj ditt lösenord." @@ -5782,7 +6201,8 @@ msgstr "Klicka på länken i e-postmeddelandet vi just skickade till dig för at msgid "Please complete the verification captcha." msgstr "Slutför captcha-verifieringen." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Dubbelkolla att du har angett din e-postadress korrekt." @@ -5804,6 +6224,7 @@ msgstr "Ange ett unikt namn för applösenordet eller använd ett slumpmässigt msgid "Please enter a valid code." msgstr "Ange en giltig kod." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "Ange en giltig e-postadress." @@ -5812,7 +6233,11 @@ msgstr "Ange en giltig e-postadress." msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Ange ett giltigt ord, en tagg eller en fras att ignorera" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "Se till att ange en giltig, icke-tillfällig e-postadress. Du kan behöva komma åt den här e-posten i framtiden." + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "Ange den kod vi skickade till <0>{0} nedan." @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "Ange den säkerhetskod vi skickade till din tidigare e-postadress." #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Ange din e-postadress." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Ange din inbjudningskod." @@ -5853,6 +6278,19 @@ msgstr "Förklara varför du anser att den här etiketten har använts på ett f msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Förklara varför du anser att dina chattar felaktigt har inaktiverats" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "Gå tillbaka, eller aktivera det här elementet för att återgå till början av det aktiva innehållet." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "Lämna gärna ytterligare information som kan hjälpa moderatorerna att göra en korrekt bedömning av statusen för din ålderskontroll." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "Välj ett språk" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "Välj en modereringstjänst" @@ -5870,9 +6308,9 @@ msgstr "Logga in som @{0}" msgid "Please verify your email" msgstr "Verifiera din e-post" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Verifiera din e-post" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "Skriv ditt meddelande nedan:" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Politik" msgid "Porn" msgstr "Porr" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Publicera" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Inlägg" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Publicera" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Publicera alla" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "Inlägg blockerat" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Inlägg av {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Inlägg av @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Inlägg raderat" @@ -5919,11 +6362,14 @@ msgstr "Inlägg raderat" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Inlägget kunde inte laddas upp. Kontrollera din internetanslutning och försök igen." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "Inlägget har raderats" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Inlägg dolt" @@ -5937,11 +6383,11 @@ msgstr "Inlägg dolt genom ignorerat ord" msgid "Post Hidden by You" msgstr "Inlägg dolt av dig" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Interaktionsinställningar för inlägg" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Interaktionsinställningar för inlägg" @@ -5954,8 +6400,10 @@ msgstr "Inläggsspråk" msgid "Post Languages" msgstr "Inläggsspråk" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Inlägget hittades inte" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Inlägg lossat" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Inlägg" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Inlägg kan ignoreras baserat på textinnehåll, taggar eller bådadera. Vi rekommenderar att undvika ord som är vanligt förekommande i inlägg, då det annars kan leda till att inga inlägg visas." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Inlägg dolda" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "Inlägg, Svar" + +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" msgstr "Potentiellt vilseledande länk" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Inställning sparad" +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "Varning för potentiellt vilseledande länk" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Tryck för att försöka återansluta" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Tryck för att försöka igen" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Tryck för att visa personer både du och det här kontot följer" @@ -6015,40 +6469,46 @@ msgstr "Föregående bild" msgid "Primary Language" msgstr "Primärt språk" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Prioritera de du följer" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Prioriterade notiser" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Integritet" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Integritet och säkerhet" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Integritet och säkerhet" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "Integritets- och säkerhetsinställningar" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Integritetspolicy" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Bearbetar videoklipp…" @@ -6062,15 +6522,14 @@ msgstr "Bearbetar…" msgid "profile" msgstr "profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Profil" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Profil uppdaterad" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Offentliga, delningsbara listor som kan användas till att driva flöden." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "Publicera inlägg" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "Publicera samtliga inlägg" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "Publicera svar" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "Publicera samtliga svar" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "Push" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "Pushnotiser" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "Push, Från alla" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "Push, Från personer du följer" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "QR-koden har kopierats till ditt urklipp!" @@ -6119,44 +6594,52 @@ msgstr "QR-koden har laddats ner!" msgid "QR code saved to your camera roll!" msgstr "QR-koden har sparats i din kamerarulle!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "Notiser för citat" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Citera inlägg" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "Citatinlägget länkades samman på nytt" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "Citatinlägget avskiljdes utan problem" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Citeringar är inaktiverade" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Citatinställningar" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Citat" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Citeringar av detta inlägg" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Slumpmässigt (även kallat författarroulette)" @@ -6164,8 +6647,8 @@ msgstr "Slumpmässigt (även kallat författarroulette)" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Anropsgränsen har överskridits. Du har försökt att ändra ditt användarnamn för många gånger under en kort period. Vänta någon minut innan du försöker igen." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Sätt tillbaka citat" @@ -6177,30 +6660,42 @@ msgstr "Reagera med {emoji}" msgid "Reactivate your account" msgstr "Återaktivera ditt konto" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "Läs {0} {1, plural, one {svar} other {svar}} till" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Läs blogginlägget" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Visa mindre" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Visa mer" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "Läs fler svar" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "Läs vårt blogginlägg" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Läs Bluesky-bloggen" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Läs Blueskys integritetspolicy" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Läs Blueskys användarvillkor" @@ -6213,6 +6708,14 @@ msgstr "Skäl för omprövningsbegäran" msgid "Reason:" msgstr "Skäl:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "Ta emot notiser i appen" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "Ta emot pushnotiser" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Senaste sökningar" @@ -6234,8 +6737,8 @@ msgstr "Avvisa" msgid "Reject chat request" msgstr "Avvisa chattförfrågan" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Ladda om konversationer" @@ -6244,10 +6747,9 @@ msgstr "Ladda om konversationer" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Ta bort" @@ -6259,17 +6761,17 @@ msgstr "Ta bort {displayName} från startpaketet" msgid "Remove {historyItem}" msgstr "Ta bort {historyItem}" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Ta bort konto" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Ta bort bilaga" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Ta bort avatar" @@ -6284,24 +6786,22 @@ msgstr "Ta bort inbäddning" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Ta bort flöde" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Ta bort flöde?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Ta bort från mina flöden" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Ta bort från snabbåtkomst?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "Ta bort från sparade flöden" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "Ta bort från dina flöden?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Ta bort bild" @@ -6332,12 +6831,8 @@ msgstr "Ta bort ignorerat ord från din lista" msgid "Remove profile" msgstr "Ta bort profil" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Ta bort citat" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Ta bort återpublicering" @@ -6345,7 +6840,7 @@ msgstr "Ta bort återpublicering" msgid "Remove subtitle file" msgstr "Ta bort undertextfil" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Ta bort det här flödet från dina sparade flöden" @@ -6364,11 +6859,11 @@ msgstr "Ta bort verifiering" msgid "Remove your verification for this account?" msgstr "Ta bort din verifiering av det här kontot?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Borttaget av författaren" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Borttaget av dig" @@ -6377,10 +6872,6 @@ msgstr "Borttaget av dig" msgid "Removed from list" msgstr "Borttaget från lista" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Borttaget från mina flöden" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Borttaget från sparade flöden" @@ -6395,36 +6886,38 @@ msgstr "Borttaget från dina flöden" msgid "Removed verification" msgstr "Tog bort verifiering" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Tar bort citerat inlägg" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Ersätt med Upptäck" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Svar" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Svar inaktiverade" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Svar är inaktiverat för det här inlägget." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Svara" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" -msgstr "Svar ({0, plural, one {# svar} other {# svar}})" +msgstr "Svara ({0, plural, one {# svar} other {# svar}})" #: src/components/moderation/ModerationDetailsDialog.tsx:116 #: src/lib/moderation/useModerationCauseDescription.ts:125 @@ -6436,50 +6929,55 @@ msgstr "Svaret har dolts av trådskaparen" msgid "Reply Hidden by You" msgstr "Svaret har dolts av dig" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "Notiser för svar" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Svarsinställningar" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "Svarsinställningarna sätts av trådens författare" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Sortera svar" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Svar till <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Svar till ett blockerat inlägg" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Svar till ett inlägg" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Svar till dig" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Synlighet för svar har uppdaterats" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Svaret doldes utan problem" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Anmäl flöde" msgid "Report list" msgstr "Anmäl lista" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Anmäl meddelande" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Anmäl inlägg" @@ -6567,25 +7065,26 @@ msgstr "Anmäl det här startpaketet" msgid "Report this user" msgstr "Anmäl den här användaren" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Återpublicera" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Återpublicera" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" -msgstr "Återpublicering ({0, plural, one {# återpublicering} other {# återpubliceringar}})" +msgstr "Återpublicera ({0, plural, one {# återpublicering} other {# återpubliceringar}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "Notiser för återpubliceringar" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Återpublicera eller citera inlägg" @@ -6594,35 +7093,47 @@ msgstr "Återpublicera eller citera inlägg" msgid "Reposted By" msgstr "Återpublicerat av" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Återpublicerat av {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Återpublicerat av <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Återpublicerat av dig" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "Återpubliceringar" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Återpubliceringar av det här inlägget" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "Begär ändring" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "Återpubliceringar av dina återpubliceringar" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "Notiser för återpubliceringar av dina återpubliceringar" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "Begär kod" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Kräv alternativtext innan publicering" @@ -6630,7 +7141,7 @@ msgstr "Kräv alternativtext innan publicering" msgid "Require an email code to sign in to your account." msgstr "Kräv en kod som skickas via e-post för att logga in på ditt konto." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Obligatoriskt för den här leverantören" @@ -6642,10 +7153,6 @@ msgstr "Obligatoriskt i din region" msgid "Resend" msgstr "Skicka igen" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Skicka e-postmeddelande på nytt" msgid "Resend Verification Email" msgstr "Skicka verifieringsmeddelande på nytt" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "Återställ puff om aktivitetsprenumerationer" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Återställningskod" @@ -6667,8 +7180,8 @@ msgstr "Återställningskod" msgid "Reset Code" msgstr "Återställningskod" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Återställ status för kom-igång-guide" @@ -6687,21 +7200,23 @@ msgstr "Försöker igen med den senaste misslyckade åtgärden" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Försök igen" @@ -6721,19 +7236,19 @@ msgstr "Går tillbaka till startsidan" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Går tillbaka till föregående sida" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Går tillbaka till föregående steg" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Går tillbaka till föregående steg" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Spara" @@ -6762,15 +7276,13 @@ msgstr "Spara" msgid "Save birthday" msgstr "Spara födelsedag" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Spara ändringar" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Spara ändringar" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Spara QR-kod" msgid "Save to my feeds" msgstr "Spara till mina flöden" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Sparade flöden" @@ -6802,18 +7314,14 @@ msgstr "Sparade flöden" msgid "Saved to your feeds" msgstr "Sparat i dina flöden" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Sparar alla ändringar till din profil" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Sparar inställningar för bildbeskärning" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Säg hej!" @@ -6826,16 +7334,16 @@ msgstr "Vetenskap" msgid "Scroll to top" msgstr "Gå till toppen" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Sök" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Sök i @{0}s inlägg" @@ -6861,7 +7369,7 @@ msgstr "Sök efter ”{query}”" msgid "Search for \"{searchText}\"" msgstr "Sök efter ”{searchText}”" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Sök efter flöden att föreslå åt andra." @@ -6877,10 +7385,14 @@ msgstr "Sök efter fler flöden" msgid "Search for posts, users, or feeds" msgstr "Sök efter inlägg, användare eller flöden" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Sök gif-bilder" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "Sökning är för närvarande inte tillgängligt för utloggade" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Sök i mina inlägg" @@ -6890,12 +7402,12 @@ msgstr "Sök i mina inlägg" msgid "Search posts" msgstr "Sök inlägg" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Sök profiler" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Sök i Tenor" @@ -6903,7 +7415,7 @@ msgstr "Sök i Tenor" msgid "Search..." msgstr "Sök…" -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Söker efter profiler" @@ -6912,10 +7424,6 @@ msgstr "Söker efter profiler" msgid "Security step required" msgstr "Säkerhetssteg krävs" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Säkerhetssteg krävs" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "Se {tag}-inlägg" @@ -6936,14 +7444,31 @@ msgstr "Se #{tag}-inlägg av användare" msgid "See jobs at Bluesky" msgstr "Se jobb på Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "Se fler" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "Se fler konton du kanske gillar" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "Se fler föreslagna profiler på Utforska-sidan" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Se den här guiden" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Uppspelningsreglage. Använd piltangenterna för att spola framåt och bakåt, samt mellanslag för att spela upp/pausa" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "Välj {0}" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Välj en färg" @@ -6982,19 +7507,24 @@ msgstr "Välj längd" #: src/screens/Login/index.tsx:144 msgid "Select from an existing account" -msgstr "Välj från ett befintligt konto" +msgstr "Välj ett befintligt konto" #: src/view/com/composer/photos/SelectGifBtn.tsx:35 msgid "Select GIF" msgstr "Välj gif-bild" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Välj gif-bild ”{0}”" #: src/components/dialogs/MutedWords.tsx:142 msgid "Select how long to mute this word for." -msgstr "Välj hur länge du vill att det här ordet ska ignoreras." +msgstr "Välj hur länge det här ordet ska ignoreras." + +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "Välj språk" #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." @@ -7004,7 +7534,7 @@ msgstr "Välj språk…" msgid "Select languages" msgstr "Välj språk" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "Välj modereringstjänst" @@ -7045,12 +7575,12 @@ msgstr "Välj språk för appens användargränssnitt." msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Välj vilka språk som du vill att de flöden du prenumererar på ska inkludera. Om inget väljs visas alla språk." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Välj ditt födelsedatum" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Välj dina intressen bland alternativen nedan" @@ -7058,7 +7588,11 @@ msgstr "Välj dina intressen bland alternativen nedan" msgid "Select your preferred language for translations in your feed." msgstr "Välj önskat språk för översättningar i ditt flöde." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "Välj önskade notiskanaler" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "Väljer alternativ {0} av {numItems}" @@ -7066,17 +7600,9 @@ msgstr "Väljer alternativ {0} av {numItems}" msgid "Send a neat website!" msgstr "Skicka en snygg hemsida!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "Skicka bekräftelse" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Skicka bekräftelse via e-post" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Skicka e-postmeddelande" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Skicka e-postmeddelande" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Skicka feedback" @@ -7095,7 +7621,7 @@ msgstr "Skicka feedback" msgid "Send message" msgstr "Skicka meddelande" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "Skicka inlägg till {name}" @@ -7114,20 +7640,20 @@ msgstr "Skicka anmälan" msgid "Send report to {0}" msgstr "Skicka anmälan till {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "Skicka anmälan till {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Skicka e-post för verifiering" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Skicka via direktmeddelande" @@ -7143,7 +7669,7 @@ msgstr "Serveradress" msgid "Set app icon to {0}" msgstr "Ställ in appikon till {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Ange födelsedatum" @@ -7159,13 +7685,57 @@ msgstr "Konfigurera ditt konto" msgid "Sets email for password reset" msgstr "Ställer in e-postadress för återställning av lösenord" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Inställningar" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "Inställningar för aktivitet från andra" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "Inställningar för att tillåta andra att bli notifierade om dina inlägg" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "Notisinställningar för gillamarkeringar" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "Notisinställningar för omnämnanden" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "Notisinställningar för nya följare" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "Notisinställningar för allt annat" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "Notisinställningar för gillamarkeringar på dina återpubliceringar" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "Notisinställningar för återpubliceringar av dina återpubliceringar" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "Notisinställninngar för citat" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "Notisinställningar för svar" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "Notisinställningar för återpubliceringar" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "Dela med dig av en cool berättelse!" msgid "Share a fun fact!" msgstr "Dela med dig av något som är kul att veta!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Dela ändå" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "Dela författarens DID" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Dela länk" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Dela länk" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Dialogruta för länkdelning" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "Dela inläggets at://-URI" @@ -7247,8 +7812,8 @@ msgstr "Dela det här startpaketet" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Dela det här startpaketet och hjälp andra att gå med i din gemenskap på Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "Dela via…" msgid "Share your favorite feed!" msgstr "Dela ditt favoritflöde!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Testare för delade inställningar" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Delar den länkade webbplatsen" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Visa" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Visa alternativtext" @@ -7303,8 +7864,8 @@ msgstr "Visa anpassningsalternativ" msgid "Show hidden replies" msgstr "Visa dolda svar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Visa mindre av sånt här" @@ -7312,55 +7873,63 @@ msgstr "Visa mindre av sånt här" msgid "Show list anyway" msgstr "Visa listan ändå" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Visa mer" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Visa mer av sånt här" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "Visa fler svar" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Visa ignorerade svar" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "Visa svarsinlägg i trädvy" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Visa citatinlägg" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Visa svar" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Visa svar i läge" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Visa svar i trådat läge" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Visa svar från personer du följer före alla andra svar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Visa svar för alla" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Visa återpubliceringar" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Visa utdrag från dina sparade flöden i ditt Följer-flöde" @@ -7372,16 +7941,17 @@ msgstr "Visa varning" msgid "Show warning and filter from feeds" msgstr "Visa varning och filtrera från flöden" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Visar information om när det här inlägget skapades" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" -msgstr "Visar andra konton som du kan växla till" +msgstr "Visar andra konton som du kan byta till" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Visar innehållet" @@ -7390,14 +7960,15 @@ msgstr "Visar innehållet" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "Logga in på ett olistat konto" msgid "Sign in to Bluesky or create a new account" msgstr "Logga in på Bluesky eller skapa ett nytt konto" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "Logga in för att visa inlägg" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Logga ut" @@ -7444,8 +8020,8 @@ msgstr "Logga ut" msgid "Sign Out" msgstr "Logga ut" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Logga ut?" @@ -7459,12 +8035,12 @@ msgstr "Inloggning krävs" msgid "Signed in as @{0}" msgstr "Inloggad som @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Liknande konton" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Hoppa över" @@ -7472,12 +8048,11 @@ msgstr "Hoppa över" msgid "Skip this flow" msgstr "Hoppa över den här guiden" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Mindre" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "Skjuter upp påminnelsen" @@ -7490,11 +8065,11 @@ msgstr "Mjukvaruutveckling" msgid "Some of your verifications are invalid." msgstr "Några av dina verifieringar är ogiltiga." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Några andra flöden som du kanske gillar" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Vissa personer kan svara" @@ -7510,10 +8085,11 @@ msgstr "Någon reagerade med {0} på {1}" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "Något står inte helt rätt till med den data du försöker anmäla. Vänligen kontakta supporten." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Något gick fel" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Något gick fel. Försök igen" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Något gick fel. Försök igen." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Något gick fel!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "Något gick fel. Försök igen om en stund." + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "Något gick fel. Försök igen." @@ -7539,20 +8118,23 @@ msgstr "Något gick fel. Försök igen." msgid "Something wrong? Let us know." msgstr "Är något på tok? Hör av dig till oss." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "Beklagar! Din session har löpt ut. Vänligen logga in igen." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Sortera svar" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Sortera svar efter" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Sortera svar på samma inlägg efter:" @@ -7579,7 +8161,7 @@ msgstr "Spam; överdrivet många omnämnanden eller svar" msgid "Sports" msgstr "Sport" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "Starta en konversation, så visas den här." @@ -7601,9 +8183,9 @@ msgstr "Börja med att lägga till personer!" msgid "Start chat with {displayName}" msgstr "Starta chatt med {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Startpaket" @@ -7611,12 +8193,12 @@ msgstr "Startpaket" msgid "Starter pack by {0}" msgstr "Startpaket av {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Startpaket av <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Startpaket av dig" @@ -7638,19 +8220,21 @@ msgstr "Med startpaket kan du enkelt dela dina favoritflöden och personer med d msgid "Status Page" msgstr "Driftinformation" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Steg {0} av {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Datan har rensats. Starta om appen nu." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Storybook" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Skicka omprövningsbegäran" msgid "Submit Appeal" msgstr "Skicka omprövningsbegäran" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "Skicka anmälan" @@ -7676,10 +8260,14 @@ msgstr "Skicka anmälan" msgid "Subscribe" msgstr "Prenumerera" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Prenumerera på @{0} för att använda dessa etiketter:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "Prenumerera på kontons aktivitet" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Prenumerera på etikettsättare" @@ -7692,8 +8280,12 @@ msgstr "Prenumerera på den här etikettsättaren" msgid "Subscribe to this list" msgstr "Prenumerera på den här listan" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "Klart" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Klart!" @@ -7705,7 +8297,7 @@ msgstr "Verifiering lyckades" msgid "Suggested Accounts" msgstr "Föreslagna konton" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Föreslaget åt dig" @@ -7714,52 +8306,52 @@ msgstr "Föreslaget åt dig" msgid "Suggestive" msgstr "Suggestivt" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Soluppgång" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Solnedgång" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Support" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" -msgstr "Växla konto" +msgstr "Byt konto" #: src/components/dialogs/SwitchAccount.tsx:46 #: src/components/dialogs/SwitchAccount.tsx:49 msgid "Switch Account" -msgstr "Växla konto" +msgstr "Byt konto" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" -msgstr "Växla mellan konton" +msgstr "Byt mellan konton" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" -msgstr "Växla till {0}" +msgstr "Byt till {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "System" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Systemlogg" @@ -7767,6 +8359,18 @@ msgstr "Systemlogg" msgid "Tags only" msgstr "Endast taggar" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "Tryck för information" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "Tryck för mer information" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "Tryck för att bekräfta att du förstår och godkänner uppdateringarna – och fortsätt använda appen" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7775,7 +8379,7 @@ msgstr "Tryck för att stänga kontextmeny" #: src/components/ProgressGuide/Toast.tsx:156 msgid "Tap to dismiss" -msgstr "Tryck för att avfärda" +msgstr "Tryck för att avvisa" #: src/state/shell/progress-guide.tsx:233 msgid "Task complete - 10 follows!" @@ -7811,12 +8415,14 @@ msgstr "Berätta lite mer" msgid "Terms" msgstr "Villkor" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Användarvillkor" @@ -7848,10 +8454,6 @@ msgstr "Textinmatningsfält" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "Tack för din feedback! Den har skickats till flödesoperatören." -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Tack! Din e-post har verifierats utan problem." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Tack. Din anmälan har skickats." @@ -7864,28 +8466,28 @@ msgstr "Tack. Din e-postadress har verifierats utan problem. Du kan stänga den msgid "That contains the following:" msgstr "Som innehåller följande:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Det användarnamnet används redan av en annan." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Det startpaketet kunde inte hittas." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "Det användarnamnet är redan taget" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Det var allt!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "Det var allt!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "Kontot kommer att kunna interagera med dig om du häver blockeringen." @@ -7900,7 +8502,7 @@ msgstr "Appen kommer att startas om" msgid "The author of this thread has hidden this reply." msgstr "Svaret har dolts av trådskaparen." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Blueskys webbapplikation" @@ -7920,10 +8522,6 @@ msgstr "Upptäck-flödet" msgid "The Discover feed now knows what you like" msgstr "Nu vet Upptäck-flödet vad du gillar" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "Den e-postadress du angav är densamma som din nuvarande e-postadress." - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "Du får en bättre upplevelse i appen. Ladda ner Bluesky nu och vi ser till att du kan fortsätta från där du lämnade." @@ -7944,8 +8542,16 @@ msgstr "Följande etiketter har satts på ditt innehåll." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "Följande inställningar används som standard när du skapar nya inlägg. Du kan redigera dem för enskilda inlägg från inläggsverktyget." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "Enligt lagen i ditt område måste du verifiera att du är vuxen innan du får åtkomst till vissa funktioner på Bluesky, som vuxeninnehåll och direktmeddelanden." + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "Enligt lagen i ditt område måste du verifiera att du är vuxen för att få tillgång till vissa funktioner. Tryck för att läsa mer." + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Inlägget kan ha raderats." @@ -7953,9 +8559,10 @@ msgstr "Inlägget kan ha raderats." msgid "The Privacy Policy has been moved to <0/>" msgstr "Integritetspolicyn har flyttats till <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "Det valda videoklippet är större än 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "Det valda videoklippet är större än 100 MB. Försök igen med en mindre fil." #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "Användarvillkoren har flyttats till" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "Den verifieringskod du har angett är ogiltig. Kontrollera att du har använt rätt verifieringslänk eller begär en ny." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Tema" @@ -7990,14 +8597,14 @@ msgstr "Tema" msgid "There is no time limit for account deactivation, come back any time." msgstr "Det finns ingen tidsgräns för inaktivering av kontot. Kom tillbaka när du vill." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Ett problem uppstod med anslutningen till Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Ett problem uppstod med anslutningen till servern" @@ -8006,17 +8613,12 @@ msgstr "Ett problem uppstod med anslutningen till servern" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Ett problem uppstod med anslutningen till servern. Kontrollera din internetanslutning och försök igen." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Ett problem uppstod med anslutningen till din server" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Ett problem uppstod med att hämta notiser. Tryck här för att försöka igen." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Ett problem uppstod med att hämta inlägg. Tryck här för att försöka igen." @@ -8037,7 +8639,7 @@ msgstr "Ett problem uppstod med att hämta dina listor. Tryck här för att för msgid "There was an issue fetching your service info" msgstr "Ett problem uppstod med att hämta din serviceinformation" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Ett problem uppstod med att ta bort det här flödet. Kontrollera din internetanslutning och försök igen." @@ -8052,9 +8654,9 @@ msgstr "Ett problem uppstod med att skicka din anmälan. Kontrollera din interne msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Ett problem uppstod med att uppdatera dina flöden. Kontrollera din internetanslutning och försök igen." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Ett problem uppstod med att uppdatera dina flöden. Kontrollera din inte msgid "There was an issue! {0}" msgstr "Ett problem uppstod! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Ett problem uppstod! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Ett problem uppstod! Kontrollera din internetanslutning och försök igen." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Ett oväntat problem uppstod i applikationen. Låt oss veta om det drabbade dig!" @@ -8089,7 +8691,7 @@ msgstr "Ett oväntat problem uppstod i applikationen. Låt oss veta om det drabb msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Det har varit en rusning av nya användare till Bluesky! Vi kommer att aktivera ditt konto så snart vi kan." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "De här inställningarna gäller bara för flödet Följer." @@ -8103,7 +8705,7 @@ msgstr "Det här kontot har en bockmarkering eftersom det har verifierats av bet #: src/components/verification/VerificationsDialog.tsx:92 msgid "This account has one or more attempted verifications, but it is not currently verified." -msgstr "Det här kontot har en eller fler genomförda verifieringsförsök, men är för närvarande inte verifierat." +msgstr "Det här kontot har ett eller fler genomförda verifieringsförsök, men är för närvarande inte verifierat." #: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." @@ -8146,7 +8748,7 @@ msgstr "{0} står som värd för det här innehållet. Vill du aktivera extern m msgid "This content is not available because one of the users involved has blocked the other." msgstr "Det här innehållet är inte tillgängligt eftersom en av de involverade användarna har blockerat den andra." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Det här innehållet kan inte visas utan ett Bluesky-konto." @@ -8158,6 +8760,10 @@ msgstr "Den här konversationen är med ett raderat eller avaktiverat konto. Try msgid "This email is already associated with your account." msgstr "Den här e-postadressen är redan associerad med ditt konto." +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "Den här funktionen gör det möjligt för användare att få notiser när du publicerar nya inlägg och svar. För vem vill du aktivera funktionen?" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Den här funktionen är i beta. Du kan läsa mer om export av datakataloger i <0>det här blogginlägget." @@ -8170,7 +8776,7 @@ msgstr "Den här funktionen är inte tillgänglig när du är inloggad med ett a msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Den här funktionen är inte tillgänglig när ett applösenord har använts vid inloggningen. Vänligen logga in med ditt vanliga lösenord." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Det här flödet har för närvarande hög trafik och är för tillfället inte tillgängligt. Försök igen senare." @@ -8209,11 +8815,11 @@ msgstr "Den här etiketten sattes på av författaren." msgid "This label was applied by you." msgstr "Den här etiketten sattes på av dig." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Den här etikettsättaren har inte lämnat någon information om dess etiketter, och är kanske inte aktiv." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Den här länken tar dig till följande webbplats:" @@ -8233,29 +8839,28 @@ msgstr "Den här listan är tom." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Den här modereringstjänsten är inte tillgänglig. Se nedan för mer information. Kontakta oss om problemet kvarstår." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Det här inlägget har <0>{0} som angivet skapelsedatum, men registrerades på Bluesky först den <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Det här inlägget har en okänd typ av trådrestriktion inställd. Din app kan vara inaktuell." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Det här inlägget har raderats." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Det här inlägget är syns bara för inloggade användare. Det syns inte för personer som inte är inloggade." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "Det här inlägget visas bara för inloggade användare." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Det här inlägget kommer att hållas dolt från flöden och trådar. Det här kan inte ångras." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "Författaren till det här inlägget har inaktiverat citeringar." @@ -8263,11 +8868,11 @@ msgstr "Författaren till det här inlägget har inaktiverat citeringar." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Den här profilen är syns bara för inloggade användare. Den syns inte för personer som inte är inloggade." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Det här svaret kommer att sorteras in i en dold sektion längst ner i tråden. Notiser för påföljande svar stängs av både för dig själv och andra." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Den här tjänsten har inte tillhandahållit några användarvillkor eller någon integritetspolicy." @@ -8275,6 +8880,10 @@ msgstr "Den här tjänsten har inte tillhandahållit några användarvillkor ell msgid "This should create a domain record at:" msgstr "Det här ska skapa en domänpost på:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "Detta bör bara ta några minuter." + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Den här användaren har inget visningsnamn och kan därför inte verifieras." @@ -8316,16 +8925,18 @@ msgstr "Den här användaren följer inte någon." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Det här raderar “{0}“ från dina ignorerade ord. Du kan alltid lägga till det igen senare." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Det här tar bort @{0} från snabbåtkomstlistan." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Det här tar bort ditt inlägg från citatinlägget för alla användare, och ersätter det med en platshållare." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Trådalternativ" @@ -8334,24 +8945,27 @@ msgstr "Trådalternativ" msgid "Thread preferences" msgstr "Trådinställningar" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Trådinställningar" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Trådat" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Trådat läge" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Trådinställningar" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "Återstående tid: {0, plural, one {# sekund} other {# sekunder}}" @@ -8376,42 +8990,56 @@ msgstr "Till vem vill du skicka den här anmälan?" msgid "Today" msgstr "Idag" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Öppna/stäng rullgardinsmeny" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Växla mellan att tillåta eller inaktivera vuxet innehåll" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Sätter på eller stänger av ljudet" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Topp" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "Populära svar först" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Ämne" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Översätt" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "Trädvy" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Trendar" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Trendande videoklipp" @@ -8428,14 +9056,10 @@ msgstr "Försök igen" msgid "TV" msgstr "TV" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Tvåfaktorsautentisering (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Skriv in ditt önskade användarnamn" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Skriv ditt meddelande här" @@ -8453,7 +9077,7 @@ msgstr "Det gick inte att ansluta. Kontrollera din internetanslutning och förs #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Det gick inte att ansluta till din tjänst. Kontrollera din internetansl msgid "Unable to delete" msgstr "Det gick inte att radera" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "Tillämpa inte pull request" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "Tillämpa inte pull request {currentChannel}" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "Otillgängligt" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "Otillgänglig flödesinformation" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Häv blockering" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Häv blockering" @@ -8486,7 +9126,7 @@ msgstr "Häv blockering" msgid "Unblock account" msgstr "Häv blockering av konto" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Häv blockering av konto?" @@ -8495,13 +9135,13 @@ msgstr "Häv blockering av konto?" msgid "Unblock list" msgstr "Häv blockering av lista" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Ångra återpublicering" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Ångra återpublicering ({0, plural, one {# återpublicering} other {# återpubliceringar}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Sluta följ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Sluta följ {0}" @@ -8523,7 +9163,7 @@ msgstr "Sluta följ konto" msgid "Unfollows the user" msgstr "Slutar följa användaren" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Tyvärr stöder ingen av de etikettsättare du prenumererar på den här typen av anmälan." @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "Sluta gilla" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Sluta gilla ({0, plural, one {# gillamarkering} other {# gillamarkeringar}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Sätt på ljud" @@ -8555,8 +9195,8 @@ msgstr "Sluta ignorera" msgid "Unmute {tag}" msgstr "Sluta ignorera {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Sluta ignorera konversation" msgid "Unmute list" msgstr "Sluta ignorera lista" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Sluta ignorera tråd" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Sätt på ljudet på videoklippet" @@ -8597,8 +9237,8 @@ msgstr "Lossa flöde" msgid "Unpin from home" msgstr "Lossa från hem" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Lossa från profil" @@ -8614,8 +9254,8 @@ msgstr "Lossade {0} från Hem" msgid "Unpinned from your feeds" msgstr "Lossat från dina flöden" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "Återaktivera påminnelse om e-post" @@ -8636,7 +9276,7 @@ msgstr "Sluta prenumerera på den här etikettsättaren" msgid "Unsubscribed from list" msgstr "Avslutade prenumeration på lista" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Videotypen stöds inte" @@ -8662,8 +9302,8 @@ msgstr "Uppdatera <0>{displayName} i Listor" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "Uppdatera e-post" @@ -8676,17 +9316,17 @@ msgstr "Uppdatera till {domain}" msgid "Update your email" msgstr "Uppdatera din e-post" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Det gick inte att uppdatera citatets sammanlänkning" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Det gick inte att uppdatera synlighet för svar" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Uppdaterar…" @@ -8698,20 +9338,20 @@ msgstr "Ladda upp ett foto istället" msgid "Upload a text file to:" msgstr "Ladda upp en textfil till:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Ladda upp från Kamera" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Ladda upp från Filer" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Ladda upp från Bibliotek" msgid "Uploading images..." msgstr "Laddar upp bilder…" -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Laddar upp miniatyrbild av länk…" -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Laddar upp video…" @@ -8761,6 +9401,10 @@ msgstr "Använd rekommenderade" msgid "Use this to sign in to the other app along with your handle." msgstr "Använd det här för att logga in på den andra appen med ditt användarnamn." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "Använd e-postadressen för ditt konto, eller en annan giltig e-postadress som du har kontroll över, ifall KWS eller Bluesky behöver kontakta dig." + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Används av:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Användarlista uppdaterad" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "Användarnamn får inte vara längre än {MAX_SERVICE_HANDLE_LENGTH, plural, other {# tecken}}" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "Användarnamn får inte börja eller sluta med ett bindestreck" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "Användarnamn får endast innehålla bokstäver (a-z), siffror och bindestreck" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Användarnamn eller e-postadress" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "användare som <0>@{0} följer" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "användare som följer <0>@{0}" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Användare som jag följer" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Användare i ”{0}”" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Användare som du följer" @@ -8846,11 +9502,11 @@ msgstr "Värde:" msgid "Verification failed, please try again." msgstr "Verifiering misslyckades. Försök igen." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "Verifieringsinställningar" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "Verifieringsinställningar" @@ -8870,8 +9526,15 @@ msgstr "Verifierat av:" msgid "Verify account" msgstr "Verifiera konto" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "Verifiera igen" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "Verifiera kod" @@ -8880,21 +9543,20 @@ msgstr "Verifiera kod" msgid "Verify DNS Record" msgstr "Verifiera DNS-post" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "Verifiera e-post" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "Verifiera e-postkod" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Dialogruta för verifiering av e-postadress" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "Verifiera nu" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Verifiera textfil" msgid "Verify this account?" msgstr "Verifiera det här kontot?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "Verifiera din ålder" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Verifiera din e-postadress" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Verifiera din e-postadress" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "Verifierar" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "Verifierar statusen för din ålderskontroll" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Version {appVersion}" +msgid "Version {0}" +msgstr "Version {0}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Videoklipp" @@ -8928,7 +9598,7 @@ msgstr "Videoklipp" msgid "Video failed to process" msgstr "Bearbetning av videoklipp misslyckades" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Videoflöde" @@ -8942,15 +9612,15 @@ msgstr "Videoklipp från {0}: {text}" msgid "Video Games" msgstr "TV-spel" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Videoklippet är pausat" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Videoklippet spelas upp" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Videoklippet hittades inte." @@ -8958,11 +9628,11 @@ msgstr "Videoklippet hittades inte." msgid "Video settings" msgstr "Inställningar för videoklipp" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Videoklipp uppladdat" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Videoklipp: {0}" @@ -8979,11 +9649,11 @@ msgstr "Videoklipp får inte vara längre än 3 minuter" msgid "View {0}'s avatar" msgstr "Visa {0}s avatar" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Visa {0}s profil" @@ -8991,7 +9661,7 @@ msgstr "Visa {0}s profil" msgid "View {displayName}'s profile" msgstr "Visa {displayName}s profil" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Visa blockerad användares profil" @@ -9009,7 +9679,6 @@ msgstr "Visa loggpost" msgid "View details" msgstr "Visa detaljer" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Visa detaljer angående anmälan av en upphovsrättsöverträdelse" @@ -9022,23 +9691,23 @@ msgstr "Visa hela tråden" msgid "View information about these labels" msgstr "Visa information om de här etiketterna" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Visa mer" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Visa profil" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Visa avataren" @@ -9054,28 +9723,28 @@ msgstr "Visa den här användarens verifieringar" msgid "View users who like this feed" msgstr "Visa användare som gillar detta flöde" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Visa videoklipp" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Visa de konton du har blockerat" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "Visa dina förvalda interaktionsinställningar för inlägg" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Visa dina flöden och utforska mer" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Visa dina modereringslistor" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Visa de konton du har ignorerat" @@ -9083,8 +9752,8 @@ msgstr "Visa de konton du har ignorerat" msgid "View your verifications" msgstr "Visa dina verifieringar" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Visar hela bilden" @@ -9092,16 +9761,20 @@ msgstr "Visar hela bilden" msgid "Views video in immersive mode" msgstr "Visar videoklipp i uppslukande läge" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" msgstr "Besök webbplats" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "Gå till dina notisinställningar" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Ljudnivå" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Varna för innehåll och filtrera från flöden" msgid "Watch now" msgstr "Titta nu" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "Vi kunde inte ansluta till tjänsten som levererar det här anpassade flödet. Den kan vara tillfälligt otillgänglig eller ha problem, eller permanent otillgänglig." + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "Vi kunde inte hitta den här listan. Den har förmodligen raderats." + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "Vi kunde inte hitta några resultat för den hashtaggen." @@ -9128,7 +9809,7 @@ msgstr "Vi kunde inte hitta några resultat för den hashtaggen." msgid "We couldn't find any results for that topic." msgstr "Vi kunde inte hitta några resultat för det ämnet." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Vi kunde inte läsa in den här konversationen" @@ -9136,6 +9817,10 @@ msgstr "Vi kunde inte läsa in den här konversationen" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Vi beräknar att det tar {estimatedTime} tills ditt konto är klart." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "Vi samarbetar med <0>KWS för att verifiera att du är vuxen. När du klickar på ”Starta” nedan kontrollerar KWS om du tidigare har verifierat din ålder med den angivna e-postadressen i andra spel eller tjänster som använder KWS-teknik. Om ingen tidigare verifiering hittas, skickar KWS instruktioner via e-post om hur du genomför åldersverifieringen. När du är klar kommer du tillbaka hit för att fortsätta använda Bluesky." + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Vi har skickat ett till verifieringsmeddelande till <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "Vi hoppas du får en underbar tid hos oss. Kom ihåg, Bluesky är:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Vi har slut på inlägg från dina följare. Här är det senaste från <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "Vi rekommenderar att du väljer minst två intressen." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Vi har skickat ett e-postmeddelande till <0>{0} med en länk. Klicka på den för att slutföra verifieringsprocessen." -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Vi kunde inte avgöra om du har behörighet att ladda upp videoklipp. Försök igen." @@ -9164,10 +9849,14 @@ msgstr "Vi kunde inte avgöra om du har behörighet att ladda upp videoklipp. F msgid "We were unable to load your birth date preferences. Please try again." msgstr "Vi kunde inte läsa in dina inställningar för födelsedatum. Försök igen." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "Vi kunde inte läsa in dina konfigurerade etikettsättare just nu." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "Vi kunde inte ta emot verifieringen på grund av ett anslutningsproblem. Det kan vara så att den kommer senare. I så fall kommer din konto att uppdateras automatiskt." + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Vi kunde inte ansluta. Försök igen för att fortsätta konfigurera ditt konto. Om problemet kvarstår kan du hoppa över den här guiden." @@ -9176,7 +9865,7 @@ msgstr "Vi kunde inte ansluta. Försök igen för att fortsätta konfigurera dit msgid "We will let you know when your account is ready." msgstr "Vi meddelar dig när ditt konto är klart." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Vi kommer skicka ett e-postmeddelande till <0>{0} med en länk. Klicka på den för att slutföra verifieringsprocessen." @@ -9184,6 +9873,22 @@ msgstr "Vi kommer skicka ett e-postmeddelande till <0>{0} med en länk. Klic msgid "We'll use this to help customize your experience." msgstr "Vi använder det här för att anpassa din upplevelse." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Vi uppdaterar också våra <0>gemenskapsriktlinjer – och vi vill gärna höra vad du tycker! De nya riktlinjerna träder i kraft den 15 oktober 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Vi uppdaterar också våra gemenskapsriktlinjer – och vi vill gärna höra vad du tycker! De nya riktlinjerna träder i kraft den 15 oktober 2025." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "Vi bekräftar din åldersstatus med våra servrar. Det här bör bara ta några sekunder." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "Vi har problem med att initiera ålderskontrollen för ditt konto. <0>Kontakta supporten för hjälp." + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Vi har nätverksproblem, försök igen" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Vi inför ett nytt lager av verifiering på Bluesky – en bockmarkering som är lätt att se." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Vi är så glada över att ha dig med oss!" @@ -9205,15 +9910,15 @@ msgstr "Vi beklagar, men vi kunde inte läsa in den här listan. Om det här kva msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Vi beklagar, men vi kunde inte läsa in dina ignorerade ord just nu. Försök igen." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Vi beklagar, men din sökning kunde inte slutföras. Försök igen om några minuter." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Vi beklagar! Inlägget som du vill svara på har raderats." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Vi beklagar! Vi kan inte hitta den sida du letade efter." @@ -9222,6 +9927,26 @@ msgstr "Vi beklagar! Vi kan inte hitta den sida du letade efter." msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Vi beklagar! Du kan inte prenumerera på fler än tjugo etikettsättare, och du har nått den övre gränsen." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "Vi uppdaterar våra <0>användarvillkor, vår <1>integritetspolicy och vår <2>upphovsrättspolicy. Ändringarna börjar gälla den 15 september 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "Vi uppdaterar våra policyer" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "Vi uppdaterar våra användarvillkor, vår integritetspolicy och vår upphovsrättspolicy. Ändringarna börjar gälla den 15 september 2025." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Vi uppdaterar våra användarvillkor, vår integritetspolicy och vår upphovsrättspolicy. Ändringarna börjar gälla den 15 september 2025. Vi uppdaterar också våra gemenskapsriktlinjer – och vi vill gärna höra vad du tycker! De nya riktlinjerna träder i kraft den 15 oktober 2025. Läs mer om förändringarna och hur du kan dela med dig av dina synpunkter i vårt blogginlägg." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "Vi har bekräftat din åldersstatus. Du kan stänga den här dialogrutan." + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Välkommen tillbaka!" @@ -9240,7 +9965,7 @@ msgstr "Vad vill du att ditt startpaket ska heta?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Vad händer?" @@ -9256,11 +9981,11 @@ msgstr "Vilka språk används i det här inlägget?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Vilka språk skulle du vilja se i dina algoritmiska flöden?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Vem kan interagera med det här inlägget?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Vem kan svara" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "Vem kan verifiera?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Hoppsan!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "Hoppsan! Det gick inte att läsa in trendande videoklipp." @@ -9322,12 +10047,12 @@ msgstr "Varför borde den här användaren granskas?" msgid "Write a message" msgstr "Skriv ett meddelande" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Skriv inlägg" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Skriv ditt svar" @@ -9358,11 +10083,11 @@ msgstr "Ja, inaktivera" msgid "Yes, delete this starter pack" msgstr "Ja, radera det här startpaketet" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Ja, avskilj" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Ja, dölj" @@ -9378,6 +10103,10 @@ msgstr "Igår" msgid "You" msgstr "Du" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "Du godkänner också <0>Blueskys gemenskapsriktlinjer. En <1>uppdaterad version av våra gemenskapsriktlinjer träder i kraft den 15 oktober." + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "Du är en betrodd verifierare" @@ -9386,6 +10115,10 @@ msgstr "Du är en betrodd verifierare" msgid "You are creating an account on" msgstr "Du skapar ett konto på" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "Du har för närvarande inte åtkomst till Blueskys guide för ålderskontroll. <0>Kontakta vårt moderatorteam om du tror att det beror på ett fel." + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Du står i kö." @@ -9403,7 +10136,7 @@ msgstr "Du sänder inte längre live" msgid "You are not allowed to go live" msgstr "Du har inte behörighet att sända live" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Du har inte behörighet att ladda upp videoklipp." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "Du är verifierad" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "Du är verifierad. Din verifieringsstatus går förlorad om du ändrar ditt visningsnamn. <0>Läs mer." @@ -9441,10 +10173,18 @@ msgstr "Du kan också upptäcka nya anpassade flöden att följa." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Om du vill kan du göra en tillfällig inaktivering av kontot istället, för att sedan återaktivera det närhelst det passar." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "Du kan välja om chattnotiser har ljud i chattinställningarna i appen" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Du kan fortsätta pågående konversationer oavsett vilken inställning du väljer." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "Du kan nu välja att få notiser när specifika personer publicerar inlägg. Om det är någon du vill få snabba uppdateringar från – gå till personens profil och leta efter den nya klockikonen bredvid följknappen." + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Du kan nu logga in med ditt nya lösenord." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Du kan återaktivera ditt konto för att fortsätta logga in. Din profil och dina inlägg kommer att vara synliga för andra användare." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "Du kan ställa in förvalda interaktionsinställningar i <0>Inställningar → Moderering → Interaktionsinställningar." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Du kan ändra det här senare i dina inställningar." @@ -9472,7 +10212,7 @@ msgstr "Du har inga följare." msgid "You don't follow any users who follow @{name}." msgstr "Du följer inga användare som följer @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "Du har inga chattförfrågningar just nu." @@ -9480,15 +10220,15 @@ msgstr "Du har inga chattförfrågningar just nu." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Du har inga inbjudningskoder ännu! Vi skickar några till dig när du har funnits på Bluesky lite längre." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Du har inga fästa flöden." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Du har inga sparade flöden." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Du har blockerat författaren eller så har du blockerats av författaren." @@ -9502,6 +10242,10 @@ msgstr "Du har blockerat den här användaren" msgid "You have blocked this user. You cannot view their content." msgstr "Du har blockerat den här användaren. Du kan inte se användarens innehåll." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "Du har helt inaktiverat notiser för svar, citat och omnämnanden, så den här fliken uppdateras inte längre. För att justera detta, gå till dina <0>notisinställningar." + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Du har ignorerat det här kontot." msgid "You have muted this user" msgstr "Du har ignorerat den här användaren" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Du har inga konversationer ännu. Starta en!" @@ -9547,7 +10291,7 @@ msgstr "Du har inte blockerat några konton än. För att blockera ett konto, g msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Du har inte ignorerat några konton än. För att ignorera ett konto, gå till dess profil och välj ”Ignorera konto” i kontomenyn." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Du har nått slutet" @@ -9572,6 +10316,10 @@ msgstr "Du har inte ignorerat några ord eller taggar ännu" msgid "You hid this reply." msgstr "Du dolde det här svaret." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "Du påbörjade den här guiden för {0} sedan. Det kan ta upp till 5 minuter innan e-postmeddelandet når din inkorg. Vänta gärna några minuter innan du försöker igen." + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Du kan begära att etiketter som du själv inte har satt omprövas, om du känner att de inte stämmer." @@ -9592,7 +10340,7 @@ msgstr "Du kan bara lägga till högst 3 flöden" msgid "You may only select up to 4 images" msgstr "Du kan bara välja upp till 4 bilder" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "Du måste vara 13 år eller äldre för att skapa ett konto." @@ -9600,6 +10348,14 @@ msgstr "Du måste vara 13 år eller äldre för att skapa ett konto." msgid "You must be following at least seven other people to generate a starter pack." msgstr "Du måste följa minst sju andra personer för att generera ett startpaket." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "Du måste slutföra en ålderskontroll för att få tillgång till inställningarna nedan." + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "Du måste slutföra en ålderskontroll för att få tillgång till den här vyn." + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Du måste ge åtkomst till ditt fotobibliotek för att spara en QR-kod" @@ -9608,6 +10364,11 @@ msgstr "Du måste ge åtkomst till ditt fotobibliotek för att spara en QR-kod" msgid "You must select at least one labeler for a report" msgstr "Du måste välja minst en etikettsättare för att göra en anmälan" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "Du måste logga in för att se det här inlägget." + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "Du måste verifiera din e-postadress innan du kan aktivera 2FA via e-post." @@ -9616,7 +10377,7 @@ msgstr "Du måste verifiera din e-postadress innan du kan aktivera 2FA via e-pos msgid "You previously deactivated @{0}." msgstr "Du har tidigare inaktiverat @{0}." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "Du vill nog starta om appen nu." @@ -9628,18 +10389,22 @@ msgstr "Du reagerade med {0}" msgid "You reacted {0} to {1}" msgstr "Du reagerade med {0} på {1}" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Du kommer att loggas ut från alla dina konton." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 -msgid "You will no longer receive notifications for this thread" -msgstr "Du kommer inte längre få notiser för den här tråden" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "Du kommer inte längre att få notiser om {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 +msgid "You will no longer receive notifications for this thread" +msgstr "Du kommer inte längre få notiser om den här tråden" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" -msgstr "Du kommer att få notiser för den här tråden i fortsättningen" +msgstr "Du kommer att få notiser om den här tråden i fortsättningen" #: src/screens/Login/SetNewPasswordForm.tsx:108 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." @@ -9657,11 +10422,11 @@ msgstr "Du: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Du: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Du kommer att följa de föreslagna användarna och flödena när du är klar med skapandet av ditt konto!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Du kommer att följa de föreslagna användarna när du är klar med skapandet av ditt konto!" @@ -9673,9 +10438,9 @@ msgstr "Du kommer att följa dessa personer och {0} andra" msgid "You'll follow these people right away" msgstr "Du kommer att följa dessa personer direkt" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Du kommer att få ett e-postmeddelande till <0>{0} för att verifiera att det är du." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "Du kommer i fortsättningen att få notiser om {0}!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9687,7 +10452,7 @@ msgstr "Du står i kö" #: src/screens/Onboarding/StepFinished.tsx:253 msgid "You're ready to go!" -msgstr "Du är redo att köra!" +msgstr "Nu är du redo att börja!" #: src/screens/Deactivated.tsx:89 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 @@ -9703,6 +10468,10 @@ msgstr "Du har valt att dölja ett ord eller en tagg i det här inlägget." msgid "You've found some people to follow" msgstr "Du har hittat några personer att följa" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "Du har nått slutet av det aktiva innehållet." + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Du har nått slutet av ditt flöde! Hitta några fler konton att följa." @@ -9711,19 +10480,23 @@ msgstr "Du har nått slutet av ditt flöde! Hitta några fler konton att följa. msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Du har nått maxgränsen för antalet tillåtna begäranden. Försök igen senare." -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "Du har nått början av det aktiva innehållet." + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Du har nått din dagliga gräns för videouppladdningar (för många byte)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Du har nått din dagliga gräns för videouppladdningar (för många videoklipp)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Det finns inga fler videoklipp att titta på. Det kanske är dags för att ta en paus?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Ditt konto" @@ -9735,7 +10508,7 @@ msgstr "Ditt konto har raderats" msgid "Your account has been suspended" msgstr "Ditt konto har stängts av" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Ditt konto är ännu inte tillräckligt gammalt för att ladda upp videoklipp. Försök igen senare." @@ -9751,11 +10524,11 @@ msgstr "Ditt konto har visats sig bryta mot <0>Bluesky Socials användarvillkor< msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "Din omprövningsbegäran har skickats. Du kommer att meddelas via e-post om den går igenom." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Ditt födelsedatum" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Din webbläsare stöder inte videoformatet. Försök med en annan webbläsare." @@ -9771,13 +10544,15 @@ msgstr "Ditt val kommer att sparas för framtida länkar. Du kan ändra det när msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Ditt nuvarande användarnamn <0>{0} kommer automatiskt att förbli reserverat för dig. Du kan när som helst byta tillbaka till det med det här kontot." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "Din e-postadress har uppdaterats, men den är inte verifierad. Som nästa steg, se till att verifiera din nya e-post." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "Din e-post" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Din e-postadress verkar vara ogiltig." @@ -9786,15 +10561,11 @@ msgstr "Din e-postadress verkar vara ogiltig." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "Din e-post har inte verifierats än. Se till att verifiera din e-post för att kunna använda alla funktioner på Bluesky." -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Din e-post har inte verifierats än. Det är en viktig säkerhetsåtgärd som vi rekommenderar." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "Din första gillamarkering!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "Dina följare" @@ -9806,19 +10577,15 @@ msgstr "Ditt följflöde är tomt! Följ fler användare för att se vad som hä msgid "Your full handle will be <0>@{0}" msgstr "Ditt fullständiga användarnamn blir <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "Ditt fullständiga användarnamn blir <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "Dina intressen" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "Dina intressen har uppdaterats!" @@ -9835,15 +10602,15 @@ msgstr "Dina ignorerade ord" msgid "Your password has been changed successfully!" msgstr "Ändringen av ditt lösenord lyckades!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "Ditt lösenord måste vara minst 8 tecken långt." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Ditt inlägg har publicerats" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Dina inlägg har publicerats" @@ -9851,15 +10618,19 @@ msgstr "Dina inlägg har publicerats" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Dina inlägg, gillamarkeringar och blockeringar är offentliga. Vad du ignorerar hålls privat." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "Ditt föredragna språk" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Din profil, dina inlägg, flöden och listor kommer inte längre att vara synliga för andra Bluesky-användare. Du kan återaktivera ditt konto när som helst genom att logga in." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Ditt svar har publicerats" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "Din anmälan kommer att skickas till <0>{0}." @@ -9867,7 +10638,7 @@ msgstr "Din anmälan kommer att skickas till <0>{0}." msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Din anmälan kommer att skickas till Blueskys modereringstjänst" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "Dina valda intressen hjälper oss att visa dig innehåll som du bryr dig om." diff --git a/src/locale/locales/th/messages.po b/src/locale/locales/th/messages.po index ed5b05a50a..e2d8404337 100644 --- a/src/locale/locales/th/messages.po +++ b/src/locale/locales/th/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: th\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:41\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: Thai\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -27,7 +27,7 @@ msgstr "" msgid "(contains embedded content)" msgstr "(มีเนื้อหาที่ฝังอยู่)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(ไม่มีอีเมล)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# รีโพสต์} other {# รีโพสต์ msgid "{0, plural, one {# second} other {# seconds}}" msgstr "" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -90,17 +90,18 @@ msgstr "" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "" @@ -108,11 +109,13 @@ msgstr "" msgid "{0, plural, one {post} other {posts}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "" @@ -135,6 +138,10 @@ msgstr "" msgid "{0} <0>in <1>text & tags" msgstr "" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "" @@ -143,11 +150,15 @@ msgstr "" msgid "{0} is not a valid URL" msgstr "" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} จาก {1}" @@ -164,8 +175,16 @@ msgstr "" msgid "{0} reacted {1} to {2}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "" @@ -197,12 +216,12 @@ msgstr "{0}น." msgid "{0}s" msgstr "{0}วินาที" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "ชุดเริ่มต้นของ {displayName}" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {ชั่วโมง} other {ชั่ msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {นาที} other {นาที}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} ติดตามอยู่" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "{handle} ไม่สามารถส่งข้อความได้" @@ -392,7 +410,7 @@ msgstr "" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -432,12 +450,12 @@ msgstr "" msgid "+{computedTotal}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "" @@ -450,15 +468,15 @@ msgstr "" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "" @@ -466,11 +484,11 @@ msgstr "" msgid "<0>{date} at {time}" msgstr "" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>คุณ และ<1> <2>{0} ถูกรวมอยู่ในชุดเริ่มต้นของคุณ" @@ -503,10 +521,14 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "" @@ -524,25 +546,25 @@ msgstr "" msgid "Accept Request" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "การเข้าถึง" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "การตั้งค่าการเข้าถึง" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "บัญชี" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "ติดตามบัญชีแล้ว" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "ปิดเสียงบัญชี" msgid "Account Muted by List" msgstr "บัญชีถูกปิดเสียงโดยลิสต์" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "ตัวเลือกบัญชี" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "ลบบัญชีออกจากการเข้าถึงด่วนแล้ว" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "เลิกติดตามบัญชีแล้ว" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "เลิกปิดเสียงบัญชีแล้ว" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "เพิ่ม" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "เพิ่มอีก {0} คนเพื่อดำเนินการต่อ" @@ -634,8 +666,8 @@ msgstr "เพิ่มบัญชี" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "เพิ่มข้อความแสดงแทน" msgid "Add alt text (optional)" msgstr "เพิ่มข้อความแสดงแทน (ไม่บังคับ)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "" @@ -670,8 +702,8 @@ msgstr "เพิ่มรหัสผ่านแอป" msgid "Add emoji reaction" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "" @@ -683,7 +715,7 @@ msgstr "" msgid "Add muted words and tags" msgstr "เพิ่มคำและแท็กที่ไม่ออกเสียง" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "" @@ -704,7 +736,7 @@ msgstr "" msgid "Add recommended feeds" msgstr "เพิ่มฟีตที่แนะนำ" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "เพิ่มบางฟีตจากตัวเริ่มต้น" @@ -725,10 +757,6 @@ msgstr "เพิ่มฟีตนี้ในฟีตของคุณ" msgid "Add to lists" msgstr "เพิ่มในลิสต์" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "เพิ่มในฟีตของคุณ" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "" @@ -738,11 +766,11 @@ msgstr "" msgid "Added to list" msgstr "เพิ่มในลิสต์แล้ว" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "เพิ่มในฟีตของคุณแล้ว" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "" @@ -750,18 +778,18 @@ msgstr "" msgid "Adult" msgstr "" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "เนื้อหาสำหรับผู้ใหญ่ (18+)" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "เนื้อหาผู้ใหญ่ (18+) สามารถเปิดใช้งานในเว็บได้ที่ <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "ปิดเนื้อหาสำหรับผู้ใหญ่" @@ -770,16 +798,32 @@ msgstr "ปิดเนื้อหาสำหรับผู้ใหญ่" msgid "Adult Content labels" msgstr "" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "ขั้นสูง" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "" @@ -793,7 +837,7 @@ msgstr "บัญชีทั้งหมดได้ถูกติดตาม msgid "All languages" msgstr "" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "ฟีดทั้งหมดที่คุณบันทึกรวมไว้ในที่เดียวแล้ว" @@ -802,16 +846,21 @@ msgstr "ฟีดทั้งหมดที่คุณบันทึกรว msgid "Allow access to your direct messages" msgstr "อนุญาตให้คนเข้าถึงข้อความส่วนตัวของคุณ" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "อนุญาตให้เข้าถึงข้อความใหม่จาก" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "อนุญาตให้ตอบกลับจาก" @@ -828,13 +877,13 @@ msgstr "มีโค้ดหรือยัง?" msgid "Already signed in as @{0}" msgstr "เข้าสู่ระบบของ @{0} เรียบร้อยแล้ว" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "" msgid "Alt text" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "ข้อความแสดงแทนอธิบายรูปภาพสำหรับผู้ใช้ที่พิการทางสายตาและผู้มีสายตาเลือนลาง และช่วยให้บริบทแก่ทุกคน" @@ -861,27 +910,19 @@ msgstr "" msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "อีเมลได้ถูกส่งไปยัง {0} แล้ว เมื่อได้รหัสยืนยันสามารถกรอกรหัสที่นี่ได้เลย" -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "อีเมลได้ถูกส่งไปแล้ว โปรดใส่รหัสยืนยันในกล่องข้อความอีเมลของคุณ" - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "เกิดข้อผิดพลาด" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "เกิดข้อผิดพลาด" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "เกิดข้อผิดพลาดขณะบีบอัดวิดีโอ" -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "" @@ -889,11 +930,11 @@ msgstr "" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "เกิดข้อผิดพลาดขณะสร้างชุดเริ่มต้นของคุณ ต้องการลองอีกครั้งหรือไม่?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "เกิดข้อผิดพลาดขณะโหลดวิดีโอ โปรดลองอีกครั้งในภายหลัง" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "เกิดข้อผิดพลาดขณะโหลดวิดีโอ โปรดลองอีกครั้ง" @@ -910,7 +951,7 @@ msgstr "เกิดข้อผิดพลาดขณะเลือกวี msgid "An error occurred while trying to follow all" msgstr "เกิดข้อผิดพลาดขณะพยายามติดตามทั้งหมด" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "เกิดข้อผิดพลาดขณะอัปโหลดวิดีโอ" @@ -934,8 +975,8 @@ msgstr "เกิดปัญหาขณะพยายามเปิดกา #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "เกิดข้อผิดพลาดที่ไม่ทราบ msgid "an unknown labeler" msgstr "ผู้ทำเครื่องหมายที่ไม่รู้จัก" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "และ" @@ -963,10 +1004,14 @@ msgstr "และ" msgid "Animals" msgstr "สัตว์" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "ภาพเคลื่อนไหว GIF" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "" @@ -980,7 +1025,13 @@ msgstr "พฤติกรรมต่อต้านสังคม" msgid "Anybody can interact" msgstr "ทุกคนสามารถมีส่วนร่วมได้" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "" msgid "App password names must be at least 4 characters long" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "รหัสผ่านแอป" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "รหัสผ่านแอป" @@ -1053,10 +1104,10 @@ msgstr "" msgid "Appeal this decision" msgstr "อุทธรณ์การตัดสินใจนี้" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "รูปลักษณ์" @@ -1065,12 +1116,20 @@ msgstr "รูปลักษณ์" msgid "Apply default recommended feeds" msgstr "ใช้ฟีดที่แนะนำตามค่าเริ่มต้น" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "" @@ -1078,7 +1137,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "คุณแน่ใจหรือว่าต้องการลบข้อความนี้? ข้อความจะถูกลบสำหรับคุณ แต่ไม่ใช่สำหรับผู้เข้าร่วมคนอื่น" @@ -1098,19 +1157,15 @@ msgstr "" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "คุณแน่ใจหรือว่าต้องการออกจากการสนทนานี้? ข้อความของคุณจะถูกลบสำหรับคุณ แต่ไม่ใช่สำหรับผู้เข้าร่วมคนอื่น" -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "คุณแน่ใจหรือว่าต้องการลบ {0} ออกจากฟีดของคุณ?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "คุณแน่ใจหรือว่าต้องการลบสิ่งนี้ออกจากฟีดของคุณ?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "คุณแน่ใจหรือว่าต้องการลบร่างนี้?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -1131,29 +1186,26 @@ msgstr "ศิลปะ" msgid "Artistic or non-erotic nudity." msgstr "ภาพนู้ดที่เป็นศิลปะหรือไม่ใช่ภาพอนาจาร" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "ต้องมีอย่างน้อย 3 ตัวอักษร" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "" - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "กลับ" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "" @@ -1195,28 +1247,44 @@ msgstr "" msgid "Before you can accept this chat request, you must first verify your email." msgstr "" +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "วันเกิด" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "บล็อก" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "บล็อก" msgid "Block account" msgstr "บล็อกบัญชี" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "บล็อกบัญชี?" @@ -1262,20 +1330,20 @@ msgstr "" msgid "Block User" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "ถูกบล็อก" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "บัญชีที่ถูกบล็อก" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "บัญชีที่ถูกบล็อก" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "บัญชีที่ถูกบล็อกไม่สามารถตอบในกระทู้ของคุณ, กล่าวถึงคุณ, หรือมีปฏิสัมพันธ์กับคุณได้" @@ -1284,11 +1352,11 @@ msgstr "บัญชีที่ถูกบล็อกไม่สามาร msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "บัญชีที่ถูกบล็อกไม่สามารถตอบในกระทู้ของคุณ, กล่าวถึงคุณ, หรือมีปฏิสัมพันธ์กับคุณได้ คุณจะไม่เห็นเนื้อหาของพวกเขาและพวกเขาจะไม่เห็นเนื้อหาของคุณ" -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "โพสต์ที่ถูกบล็อก" -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "การบล็อกไม่ได้ป้องกันผู้ทำเครื่องหมายนี้จากการวางป้ายบนบัญชีของคุณ" @@ -1309,11 +1377,12 @@ msgstr "บล็อก" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1347,6 +1416,14 @@ msgstr "Bluesky จะไม่แสดงโปรไฟล์และโพ msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "" @@ -1368,23 +1445,20 @@ msgstr "เบลอภาพและกรองออกจากฟีด" msgid "Books" msgstr "หนังสือ" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "เรียกดูบัญชีเพิ่มเติมในหน้าค้นหา" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "เรียกดูฟีดเพิ่มเติมในหน้าค้นหา" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "เรียกดูข้อเสนอเพิ่มเติม" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "เรียกดูข้อเสนอเพิ่มเติมในหน้าค้นหา" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "ธุรกิจ" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "โดย {0}" @@ -1428,15 +1502,23 @@ msgstr "โดย {0}" msgid "By <0>{0}" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" @@ -1448,14 +1530,17 @@ msgstr "" msgid "Camera" msgstr "" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "ยกเลิก" @@ -1500,11 +1582,7 @@ msgstr "ยกเลิกการลบบัญชี" msgid "Cancel image crop" msgstr "ยกเลิกการครอปภาพ" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "ยกเลิกการแก้ไขโปรไฟล์" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "ยกเลิกโพสต์คำคม" @@ -1516,14 +1594,10 @@ msgstr "ยกเลิกการเปิดใช้งานใหม่แ msgid "Cancel search" msgstr "ยกเลิกการค้นหา" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "ยกเลิกการเปิดเว็บไซต์ที่เชื่อมโยง" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "ไม่สามารถโต้ตอบกับผู้ใช้ที่ถูกบล็อก" @@ -1553,17 +1627,12 @@ msgstr "" msgid "Change app language" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "เปลี่ยนที่อยู่อีเมล" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "เปลี่ยนแฮนด์เดิล" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "" @@ -1579,14 +1648,6 @@ msgstr "" msgid "Change report reason" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "เปลี่ยนอีเมลของคุณ" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "" @@ -1596,10 +1657,15 @@ msgstr "" msgid "Changes hosting provider" msgstr "" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "แชท" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "ปิดเสียงแชทแล้ว" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "ตั้งค่าแชท" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "ตั้งค่าแชท" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "เปิดเสียงแชทแล้ว" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "" @@ -1661,7 +1738,7 @@ msgstr "ตรวจสอบกล่องขาเข้าของคุณ msgid "Choose domain verification method" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "เลือกฟีด" @@ -1669,7 +1746,7 @@ msgstr "เลือกฟีด" msgid "Choose for me" msgstr "เลือกให้ฉัน" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "เลือกผู้คน" @@ -1685,23 +1762,23 @@ msgstr "เลือกสีนี้เป็นอวาตาร์ของ msgid "Choose your account provider" msgstr "" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "ป้อนรหัสผ่านของคุณ" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "แฮนด์เดิลผู้ใช้ของคุณ" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "ลบข้อมูลการเก็บข้อมูลทั้งหมด" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "ลบข้อมูลการเก็บข้อมูลทั้งหมด (รีสตาร์ทหลังจากนี้)" @@ -1714,23 +1791,27 @@ msgstr "" msgid "Clear search query" msgstr "ลบการค้นหา" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "คลิกที่นี่" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "คลิกเพื่อปิดการโพสต์อ้างอิงของโพสต์นี้." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "คลิกเพื่อเปิดการโพสต์อ้างอิงของโพสต์นี้." @@ -1750,14 +1831,16 @@ msgstr "ภูมิอากาศ" msgid "Clip 🐴 clop 🐴" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "ปิด" @@ -1789,13 +1876,15 @@ msgstr "ปิดการแจ้งเตือน" msgid "Close bottom drawer" msgstr "ปิดลิ้นชักด้านล่าง" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "ปิดกล่องโต้ตอบ" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "" @@ -1804,7 +1893,7 @@ msgstr "" msgid "Close emoji picker" msgstr "" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "ปิดกล่องโต้ตอบ GIF" @@ -1822,7 +1911,7 @@ msgstr "ปิดโปรแกรมดูภาพ" msgid "Close menu" msgstr "" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "ปิดกล่องโต้ตอบนี้" @@ -1830,7 +1919,7 @@ msgstr "ปิดกล่องโต้ตอบนี้" msgid "Closes password update alert" msgstr "ปิดการแจ้งเตือนการอัปเดตรหัสผ่าน" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "" @@ -1843,16 +1932,16 @@ msgstr "" msgid "Closes viewer for header image" msgstr "ปิดโปรแกรมดูสำหรับภาพหัวเรื่อง" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "ย่อลิสต์ผู้ใช้" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "ย่อลิสต์ผู้ใช้สำหรับการแจ้งเตือนที่กำหนด" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "โหมดสี" @@ -1870,7 +1959,8 @@ msgstr "ตลก" msgid "Comics" msgstr "การ์ตูน" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "แนวทางชุมชน" @@ -1879,38 +1969,34 @@ msgstr "แนวทางชุมชน" msgid "Complete onboarding and start using your account" msgstr "เสร็จสิ้นการอบรมและเริ่มใช้งานบัญชีของคุณ" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "ทำให้สำเร็จตามความท้าทาย" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "สร้างการตอบกลับ" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "" -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "ตั้งค่าการกรองเนื้อหาสำหรับหมวดหมู่: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "ตั้งค่าใน <0>การตั้งค่าการดูแล." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "ยืนยันการตั้งค่าภาษาเนื้ msgid "Confirm delete account" msgstr "ยืนยันการลบบัญชี" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "ยืนยันอายุของคุณ:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "ยืนยันวันเกิดของคุณ" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "ยืนยันวันเกิดของคุณ" msgid "Confirmation code" msgstr "รหัสยืนยัน" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "รหัสยืนยัน" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "กำลังเชื่อมต่อ..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "ติดต่อฝ่ายสนับสนุน" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "" @@ -1977,7 +2069,8 @@ msgstr "" msgid "Content Blocked" msgstr "เนื้อหาถูกบล็อก" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "ตัวกรองเนื้อหา" @@ -2006,10 +2099,12 @@ msgstr "คำเตือนเนื้อหา" msgid "Content warnings" msgstr "คำเตือนเนื้อหา" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "แบ็คดรอปเมนูบริบท คลิกเพื่อปิดเมนู" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "ดำเนินการต่อ" msgid "Continue as {0} (currently signed in)" msgstr "ดำเนินการต่อในฐานะ {0} (ลงชื่อเข้าใช้แล้ว)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "ดำเนินการต่อเธรด..." @@ -2029,6 +2129,10 @@ msgstr "ดำเนินการต่อเธรด..." msgid "Continue to next step" msgstr "ดำเนินการต่อไปยังขั้นตอนถัดไป" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "คัดลอกแล้ว" msgid "Copied build version to clipboard" msgstr "คัดลอกเวอร์ชันบิลด์ไปยังคลิปบอร์ดแล้ว" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "" msgid "Copy" msgstr "คัดลอก" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "" @@ -2087,8 +2187,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "" @@ -2120,10 +2220,10 @@ msgstr "คัดลอกลิงก์" msgid "Copy link to list" msgstr "คัดลอกลิงก์ไปยังลิสต์" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "คัดลอกลิงก์ไปยังโพสต์" @@ -2136,18 +2236,18 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "คัดลอกข้อความ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "คัดลอกข้อความโพสต์" @@ -2159,11 +2259,25 @@ msgstr "คัดลอก QR โค้ด" msgid "Copy TXT record value" msgstr "" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "นโยบายลิขสิทธิ์" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "ไม่สามารถปิดเสียงการสนทน msgid "Could not process your video" msgstr "ไม่สามารถประมวลผลวิดีโอของคุณได้" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "สร้าง" @@ -2195,7 +2317,7 @@ msgstr "สร้าง QR โค้ดสำหรับชุดเริ่ #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "สร้างชุดเริ่มต้น" @@ -2205,21 +2327,22 @@ msgstr "สร้างชุดเริ่มต้นสำหรับฉั #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "สมัครสมาชิก" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "สร้างบัญชี" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "สร้างบัญชี" @@ -2241,7 +2364,7 @@ msgstr "สร้างอันใหม่" msgid "Create new account" msgstr "สร้างบัญชีใหม่" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "สร้างรายงานสำหรับ {0}" @@ -2268,7 +2391,7 @@ msgstr "กำหนดเอง" msgid "Customization options" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "กำหนดผู้ที่สามารถโต้ตอบกับโพสต์นี้ได้" @@ -2278,12 +2401,12 @@ msgstr "" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "มืด" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "มืด" @@ -2292,21 +2415,21 @@ msgstr "มืด" msgid "Dark mode" msgstr "โหมดมืด" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "ธีมมืด" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "วันเกิด" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "ปิดการใช้งานบัญชี" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "" @@ -2314,7 +2437,7 @@ msgstr "" msgid "Debug panel" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "ค่าเริ่มตัน" @@ -2322,8 +2445,8 @@ msgstr "ค่าเริ่มตัน" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "" msgid "Delete" msgstr "ลบ" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "ลบบัญชี" @@ -2355,7 +2478,7 @@ msgstr "ลบรหัสผ่านแอปหรือไม่?" msgid "Delete chat" msgstr "" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "ลบบันทึกการประกาศแชท" @@ -2370,7 +2493,7 @@ msgstr "" msgid "Delete Conversation" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "ลบสำหรับฉัน" @@ -2378,11 +2501,11 @@ msgstr "ลบสำหรับฉัน" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "ลบข้อความ" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "ลบข้อความสำหรับฉัน" @@ -2390,9 +2513,9 @@ msgstr "ลบข้อความสำหรับฉัน" msgid "Delete my account" msgstr "ลบบัญชีของฉัน" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "ลบโพสต์" @@ -2409,11 +2532,11 @@ msgstr "ลบชุดเริ่มต้นหรือไม่?" msgid "Delete this list?" msgstr "ลบลิสต์นี้หรือไม่?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "ลบโพสต์นี้หรือไม่?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "ถูกลบ" @@ -2422,15 +2545,20 @@ msgstr "ถูกลบ" msgid "Deleted Account" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "โพสต์ถูกลบ." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "คำอธิบาย" @@ -2447,12 +2575,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "ข้อความคำอธิบายภาพ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "แยกการอ้างอิง" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "แยกการอ้างอิงโพสต์หรือไม่?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "กล่องโต้ตอบ: ปรับว่าใครสามารถโต้ตอบกับโพสต์นี้ได้" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "สว่าง" @@ -2492,27 +2620,27 @@ msgstr "" msgid "Disable Email 2FA" msgstr "ปิดการยืนยันตัวตนสองชั้นผ่านอีเมล (2FA)" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "ปิดการตอบสนองแบบสั่น" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "ปิดคำบรรยาย" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "ปิดใช้งาน" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "ละทิ้ง" @@ -2520,11 +2648,11 @@ msgstr "ละทิ้ง" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "ละทิ้งร่างข้อความหรือไม่?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "" @@ -2542,7 +2670,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "ค้นพบฟีดที่กำหนดเองใหม่ๆ" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "ค้นพบฟีดใหม่" @@ -2550,7 +2678,7 @@ msgstr "ค้นพบฟีดใหม่" msgid "Dismiss" msgstr "ปิด" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "ปิดข้อผิดพลาด" @@ -2562,26 +2690,26 @@ msgstr "ปิดคู่มือเริ่มต้นใช้งาน" msgid "Dismiss interests" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "แสดงป้ายข้อความคำอธิบายภาพที่ใหญ่ขึ้น" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "ชื่อที่แสดง" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "ชื่อที่แสดง" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "" @@ -2603,15 +2731,11 @@ msgstr "ไม่ใช้คำปิดเสียงนี้กับผู msgid "Does not include nudity." msgstr "ไม่มีเนื้อหาที่เปิดเผย" -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "ไม่เริ่มหรือจบด้วยขีดกลาง" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "ยืนยันโดเมนแล้ว!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -2619,6 +2743,15 @@ msgstr "" msgid "Don't see an email? <0>Click here to resend." msgstr "" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "" msgid "Double tap to close the dialog" msgstr "แตะสองครั้งเพื่อปิดหน้าต่าง" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "" @@ -2673,7 +2806,7 @@ msgstr "ดาวน์โหลด Bluesky" msgid "Download CAR file" msgstr "ดาวน์โหลดไฟล์ CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "ลากเพื่อเพิ่มรูปภาพ" @@ -2689,18 +2822,10 @@ msgstr "เช่น alice" msgid "e.g. Alice Lastname" msgstr "" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "เช่น Alice Roberts" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "เช่น alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "เช่น ศิลปิน คนรักสุนัข และนักอ่านตัวยง" - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "เช่น การเปลือยกายที่เป็นศิลปะ" @@ -2725,10 +2850,11 @@ msgstr "เช่น ผู้ใช้ที่ตอบกลับด้ว msgid "Each code works once. You'll receive more invite codes periodically." msgstr "แต่ละรหัสใช้งานได้เพียงครั้งเดียว คุณจะได้รับรหัสเชิญเพิ่มเติมเป็นระยะ" -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "แก้ไข" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "แก้ไข" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "แก้ไขรูปประจำตัว" @@ -2749,12 +2875,12 @@ msgstr "แก้ไขฟีด" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "แก้ไขรูปภาพ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "แก้ไขการตั้งค่าการโต้ตอบ" @@ -2776,33 +2902,33 @@ msgstr "" msgid "Edit Moderation List" msgstr "แก้ไขลิสต์การกลั่นกรอง" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "แก้ไขฟีดของฉัน" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "แก้ไขโปรไฟล์ของฉัน" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "แก้ไขบุคคล" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "แก้ไขการตั้งค่าการโต้ตอบกับโพสต์" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "แก้ไขโปรไฟล์" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "แก้ไขโปรไฟล์" @@ -2814,19 +2940,11 @@ msgstr "แก้ไขชุดเริ่มต้น" msgid "Edit User List" msgstr "แก้ไขลิสต์ผู้ใช้" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "แก้ไขผู้ที่สามารถตอบกลับได้" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "แก้ไขชื่อที่แสดงของคุณ" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "แก้ไขคำอธิบายโปรไฟล์ของคุณ" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "แก้ไขชุดเริ่มต้นของคุณ" @@ -2839,8 +2957,8 @@ msgstr "การศึกษา" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "" -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "อีเมล" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "ยกเลิกการยืนยันสองชั้นผ่านอีเมล" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "" @@ -2865,10 +2983,6 @@ msgstr "ส่งข้อความอีเมลอีกรอบ" msgid "Email sent!" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "" @@ -2883,8 +2997,8 @@ msgstr "ฝัง HTML" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "ฝังโพสต์" @@ -2892,7 +3006,7 @@ msgstr "ฝังโพสต์" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "ฝังโพสต์เว็บไซต์ของคุณ แค่กรอกโค้ดด้านล่างแล้ววางบนเว็บไซต์" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "" @@ -2906,7 +3020,7 @@ msgstr "" msgid "Enable {0} only" msgstr "อนุญาตเฉพาะ {0}" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "อนุญาตให้เข้าถึงเนื้อหาผู้ใหญ่ (18+)" @@ -2919,16 +3033,20 @@ msgstr "" msgid "Enable external media" msgstr "อนุญาตให้นำไฟล์ด้านนอกเข้ามา" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "อนุญาตตัวเล่นสื่อสำหรับ" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "อนุญาตการแจ้งเตือนแบบสำคัญ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "อนุญาตซับไตเติ้ล" @@ -2941,17 +3059,14 @@ msgstr "อนุญาตแหล่งที่มานี้เท่าน msgid "Enable trending topics" msgstr "" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "" - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "อนุญาตแล้ว" @@ -2963,7 +3078,7 @@ msgstr "จบฟีต" msgid "Ensure you have selected a language for each subtitle file." msgstr "โปรดตรวจสอบว่าคุณได้เลือกภาษาสำหรับไฟล์ซับไตเติลแต่ละไฟล์แล้ว" -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "ป้อนรหัสผ่าน" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "ป้อนคำหรือแท็ก" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "ป้อนรหัส" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "ใส่วันเกิดของคุณ" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "ใส่อีเมลของคุณ" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "ใส่อีเมลใหม่ของคุณที่นี่" - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "" @@ -3022,7 +3129,7 @@ msgstr "" msgid "Enter your username and password" msgstr "ใส่ชื่อผู้ใช้ของคุณและรหัสผ่าน" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "" @@ -3030,16 +3137,28 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "เกิดข้อผิดพลาดในขณะที่บันทึกไฟล์" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "เกิดข้อผิดพลาดการตอบสนองของ Captcha" @@ -3047,27 +3166,34 @@ msgstr "เกิดข้อผิดพลาดการตอบสนอง msgid "Error:" msgstr "ข้อผิดพลาด :" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "ทุกคน" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "คนที่สามารถตอบกลับได้" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "คนที่สามารถตอบกลับได้ในโพสค์นี้" -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "ทุกคน" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "ไม่รวมผู้ใช้ที่คุณติดตาม msgid "Excludes users you follow" msgstr "ไม่รวมผู้ใช้ที่คุณติดตาม" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "ออกจากโหมดเต็มหน้าจอ" @@ -3106,24 +3232,28 @@ msgstr "ออกจากการดูรูปภาพ" msgid "Expand alt text" msgstr "ขยายข้อความอธิบายภาพ" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "ขยายรายชื่อผู้ใช้" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "ขยายหรือลดขนาดโพสต์ทั้งหมดที่คุณตอบกลับ" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "" @@ -3153,15 +3283,15 @@ msgstr "สื่อที่ชัดเจนหรืออาจทำให msgid "Explicit sexual images." msgstr "ภาพเปลือยชัดเจน" -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "ส่งออกข้อมูลของฉัน" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "สื่อภายนอก" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 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:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "การตั้งค่าสื่อภายนอก" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "" @@ -3211,8 +3341,8 @@ msgstr "" msgid "Failed to create conversation" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "สร้างชุดเริ่มต้นไม่สำเร็จ" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "การลบข้อความล้มเหลว" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "การลบโพสต์ล้มเหลว โปรดลองใหม่อีกครั้ง" @@ -3238,8 +3368,8 @@ msgstr "การลบโพสต์ล้มเหลว โปรดลอ msgid "Failed to delete starter pack" msgstr "การลบตัวเริ่มต้นล้มเหลว" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "" @@ -3250,14 +3380,32 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "การโหลดฟีตที่ตั้งค่าล้มเหลว" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "การโหลด GIF ล้มเหลว" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "การโหลดข้อความเก่าล้มเหลว" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "การแนะนำฟีตล้มเหลว" msgid "Failed to load suggested follows" msgstr "การแนะนำคนที่คุณควรติดตามล้มเหลว" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "การปักหมุดโพสต์ล้มเหลว" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "" @@ -3291,15 +3439,11 @@ msgstr "" msgid "Failed to save image: {0}" msgstr "การบันทึกรูปภาพ {0} ล้มเหลว" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "บันทึกการตั้งค่าการแจ้งเตือนล้มเหลว โปรดลองอีกครั้ง" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "" @@ -3318,7 +3462,7 @@ msgstr "" msgid "Failed to submit appeal, please try again." msgstr "การยื่นคำอุทธรณ์ล้มเหลว โปรดลองอีกครั้ง" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "การเปลี่ยนสถานะด้วยการปิดเธรดล้มเหลว โปรดลองอีกครั้ง" @@ -3335,7 +3479,11 @@ msgstr "" msgid "Failed to update feeds" msgstr "การอัปเดตฟีตล้มเหลว" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "การอัปเดตการตั้งค่าล้มเหลว" @@ -3354,15 +3502,23 @@ msgstr "" msgid "Failed to verify handle. Please try again." msgstr "" -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "ฟีด" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "ฟีดโดย {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "" @@ -3371,35 +3527,39 @@ msgstr "" msgid "Feed toggle" msgstr "สลับฟีต" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "ข้อเสนอแนะ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "ฟีด" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "ฟีต คืออัลกอริทึ่มที่ผู้ใชสามารถสามารถเปลี่ยนแปลงโดยใช้ความชำนาญในการเขียนโค้ตได้ หากต้องการข้อมูลเพิ่มเติมสามารถถาม <0/> ได้เลย" #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "อัปเดตฟีดแล้ว!" @@ -3428,6 +3588,14 @@ msgstr "" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "กำลังสรุปผล" @@ -3448,7 +3616,7 @@ msgstr "" msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "เสร็จสิ้น" @@ -3456,17 +3624,17 @@ msgstr "เสร็จสิ้น" msgid "Fitness" msgstr "ฟิตเนส" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "ยืดหยุ่น" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "ติดตาม" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "ติดตาม {0}" @@ -3518,7 +3686,7 @@ msgstr "ติดตามบัญชี" msgid "Follow all" msgstr "ติดตามทั้งหมด" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "ติดตามคุณกลับ" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "ติดตามคุณกลับ" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "ติดตามโดย <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "ติดตามโดย <0>{0} และ {1, plural, one {# other} other {# others}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "ติดตามโดย <0>{0} และ <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "ติดตามโดย <0>{0}, <1>{1} และ {2, plural, one {# other} other {# others}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "ผู้ติดตามของ @{0} ที่คุณรู้จัก" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "ผู้ติดตามที่คุณรู้จัก" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "ติดตาม" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "ติดตาม" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "ติดตาม {0}" @@ -3579,8 +3751,8 @@ msgstr "" msgid "Following feed preferences" msgstr "การตั้งค่าฟีดการติดตาม" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "การตั้งค่าฟีดการติดตาม" @@ -3592,11 +3764,11 @@ msgstr "ติดตามคุณ" msgid "Follows You" msgstr "ติดตามคุณ" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "แบบอักษร" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "ขนาดแบบอักษร" @@ -3613,7 +3785,7 @@ msgstr "เพื่อความปลอดภัย เราจำเป msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "เพื่อประสบการที่ดีของคุณ เราแนะนำให้ใช้ฟอนต์ธีม" @@ -3643,11 +3815,15 @@ msgstr "ลืมเหรอ?" msgid "Frequently Posts Unwanted Content" msgstr "โพสต์เนื้อหาที่ไม่ต้องการบ่อยครั้ง" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "จาก @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "จาก <0/>" @@ -3660,14 +3836,68 @@ msgstr "แกลลอรี่" msgid "Generate a starter pack" msgstr "สร้างชุดเริ่มต้น" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "รับความช่วยเหลือ" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "" @@ -3688,14 +3918,16 @@ msgstr "ทำให้โปรไฟล์ของคุณมีความ msgid "Glaring violations of law or terms of service" msgstr "การละเมิดกฎหมายหรือข้อกำหนดในการให้บริการ" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "ไปที่การสนทนา {0}" @@ -3779,8 +4017,8 @@ msgstr "กราฟฟิคมีเดีย" msgid "Half way there!" msgstr "ครึ่งทางแล้ว!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "แฮนด์เดิ้ล" @@ -3797,7 +4035,7 @@ msgstr "" msgid "Handle too long. Please try a shorter one." msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "การสัมผัส" @@ -3806,7 +4044,7 @@ msgstr "การสัมผัส" msgid "Harassment, trolling, or intolerance" msgstr "การล่วงละเมิด การกลั่นแกล้ง หรือการไม่ยอมรับการอยู่ร่วมกันในสังคม" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "แฮชแท็ก" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "" -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "มีปัญหาใช่ไหม?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "การช่วยเหลือ" @@ -3839,8 +4077,13 @@ msgstr "ทำให้คนทราบว่าคุณไม่ใช่ห msgid "Here is your app password!" msgstr "" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "" @@ -3848,16 +4091,16 @@ msgstr "" msgid "Hidden by your moderation settings." msgstr "" -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "ลิสต์ที่ซ่อนไว้" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "ลิสต์ที่ซ่อนไว้" msgid "Hide" msgstr "ซ่อน" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "ซ่อน" @@ -3875,18 +4118,18 @@ msgstr "ซ่อน" msgid "Hide customization options" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "ซ่อนโพสต์สำหรับฉัน" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "ซ่อนการตอบกลับสำหรับทุกคน" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "ซ่อนการสำหรับฉัน" @@ -3894,12 +4137,12 @@ msgstr "ซ่อนการสำหรับฉัน" msgid "Hide this card" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "ซ่อนโพสต์นี้ใช่ไหม?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "ซ่อนการตอบกลับใช่ไหม" @@ -3913,11 +4156,11 @@ msgstr "" msgid "Hide trending topics?" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "ซ่อนลิสต์ผู้ใช้" @@ -3926,32 +4169,32 @@ msgstr "ซ่อนลิสต์ผู้ใช้" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "อืม... ดูเหมือนว่าจะเจอปัญหาเมื่อคุณจะพยายามติดต่อกับเซิร์ฟเวอร์ฟีด โปรดแจ้งเจ้าของฟีดเกี่ยวกับปัญหานี้ด้วย" -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "อืม... ดูเหมือนว่าเซิร์ฟเวอร์ฟีดถูกตั้งค่าไม่ถูกต้อง โปรดแจ้งเจ้าของฟีดเกี่ยวกับปัญหานี้ด้วย" -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "อืม... ดูเหมือนว่าเซิร์ฟเวอร์ออฟไลน์อยู่ โปรดแจ้งเจ้าของฟีดเกี่ยวกับปัญหานี้ด้วย" -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "อืม... ดูเหมือนว่าเซิร์ฟเวอร์ฟีดส่งคำตอบไม่ถูก โปรดแจ้งเจ้าของฟีดเกี่ยวกับปัญหานี้ด้วย" -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "อืม... ดูเหมือนว่าเรามีปัญหาในการค้นหาฟีตนี้ โปรดแจ้งเจ้าของฟีดเกี่ยวกับปัญหานี้ด้วย" -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "อื้มมมม... ดูเหมือนว่าเรามีปัญหาในการโหลดข้อมูลนี้ งั้นดูรายละเอียดด้านล่างนี้เลย หากปัญหาเกิดขึ้นอีกสามารถติดต่อทางเราได้เลย" @@ -3959,15 +4202,15 @@ msgstr "อื้มมมม... ดูเหมือนว่าเราม msgid "Hmmmm, we couldn't load that moderation service." msgstr "อื้มมมม... ดูเหมือนว่าเราไม่สามารถโหลดเซอร์วิสการตรวจสอบได้" -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "รอสักครู่! เรากำลังเปิดให้เข้าถึงวิดีโออย่างค่อยเป็นค่อยไป และคุณยังอยู่ในคิว แล้วกลับมาอีกครั้งจ้า" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "หน้าหลัก" @@ -3984,10 +4227,10 @@ msgstr "ผู้ให้บริการโฮสติ้ง" msgid "Hot" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "" @@ -3996,10 +4239,6 @@ msgstr "" msgid "How should we open this link?" msgstr "แล้วเราจะเปิดลิงก์นี้ได้อย่างไรล่ะ?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "ฉันเข้าใจแล้ว" msgid "If alt text is long, toggles alt text expanded state" msgstr "หากข้อความแทนภาพยาว จะทำการเปลี่ยนสถานะการขยายข้อความแทนภาพ" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "หากคุณยังไม่บรรลุนิติภาวะตามกฎหมายของประเทศคุณ ควรให้ผู้ปกครองหรือผู้ดูแลตามกฎหมายรับทราบแทน" @@ -4031,11 +4270,11 @@ msgstr "หากคุณลบลิสต์นี้ คุณจะไม msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "หากคุณลบโพสค์นี้ คุณจะไม่สามารถนำกลับคืนมาได้" @@ -4047,6 +4286,10 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "หากคุณต้องการเปลี่ยนรหัสผ่าน เราจะส่งรหัสยืนยันเพื่อยืนยันบัญชีของคุณ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "" @@ -4091,13 +4334,41 @@ msgstr "การแอบอ้างหรือการกล่าวอ้ msgid "Impersonation, misinformation, or false claims" msgstr "การแอบอ้าง, ข้อมูลที่ผิดพลาด, หรือการกล่าวอ้างที่ผิด" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "ข้อความที่ไม่เหมาะสมหรือการเชื่อมโยงที่ชัดเจน" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "" @@ -4105,7 +4376,7 @@ msgstr "" msgid "Incorrect username or password" msgstr "ชื่อผู้ใช้หรือรหัสผ่านไม่ถูกต้อง" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "กรอกรหัสที่ส่งไปยังอีเมลของคุณเพื่อรีเซ็ตรหัสผ่าน" @@ -4113,7 +4384,7 @@ msgstr "กรอกรหัสที่ส่งไปยังอีเมล msgid "Input confirmation code for account deletion" msgstr "กรอกรหัสยืนยันสำหรับการลบบัญชี" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "กรอกรหัสผ่านใหม่" @@ -4129,10 +4400,14 @@ msgstr "กรอกรหัสที่ถูกส่งไปยังอี msgid "Interaction limited" msgstr "การโต้ตอบถูกจำกัด" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "รหัสยืนยัน 2FA ไม่ถูกต้อง" msgid "Invalid handle. Please try a different one." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "ระเบียนโพสต์ไม่ถูกต้องหรือไม่รองรับ" @@ -4158,7 +4433,7 @@ msgstr "รหัสยืนยันนี้ไม่ถูกต้อง" msgid "Invite a Friend" msgstr "เชิญเพื่อน" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "โค้ดคำเชิญ" @@ -4186,15 +4461,15 @@ msgstr "เชิญเพื่อนของคุณเพื่อติด msgid "Invites, but personal" msgstr "ยืนยันแต่เป็นส่วนตัว" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "ถูกต้อง" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "ตอนนี้มีแค่คุณแล้ว! เพิ่มผู้คนในชุดเริ่มต้นของคุณโดยการค้นหาด้านบนนี้" -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "" @@ -4220,11 +4495,27 @@ msgstr "เข้าร่วมการสนทนา" msgid "Journalism" msgstr "วารสาร" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "มาร์คโดย {0}" -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "มาร์คโดยผู้สร้าง" @@ -4237,7 +4528,7 @@ msgstr "มาร์คไว้" msgid "Labels added" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "การมาร์ค คือ การแสดงข้อความประกอบบนผู้ใช้และเนื้อหา สามารถใช้ในการซ่อน เตือน หรือจัดหมวดหมู่ในเครือข่ายได้" @@ -4253,22 +4544,30 @@ msgstr "มาร์คในเนื้อหาของคุณ" msgid "Language selection" msgstr "เลือกภาษา" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "ตั้งค่าภาษา" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "ภาษา" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "ใหญ่" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "ล่าสุด" @@ -4282,7 +4581,6 @@ msgstr "" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "" @@ -4290,6 +4588,10 @@ msgstr "" msgid "Learn More" msgstr "เรียนรู้เพิ่มเติม" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับ Bluesky" @@ -4298,15 +4600,23 @@ msgstr "เรียนรู้เพิ่มเติมเกี่ยวก msgid "Learn more about self hosting your PDS." msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับการโฮสต์ข้อมูลด้วยตัวเอง (PDS)" -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับการตรวจสอบที่ใช้กับเนื้อหานี้" -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับข้อควรระวัง" @@ -4316,12 +4626,16 @@ msgstr "เรียนรู้เพิ่มเติมเกี่ยวก msgid "Learn more about verification on Bluesky" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับสิ่งที่เป็นสาธารณะบน Bluesky" -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "เรียนรู้เพิ่มเติม" @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "ออกจากการสนทนา" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "ออกจากการตรวจสอบตัวเลือกเพื่อดูทุกภาษาได้" +msgid "Leave them all unselected to see any language." +msgstr "" -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "ออก Bluesky" @@ -4370,7 +4685,7 @@ msgstr "ไปกันเล้ยยยยย!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "แสง" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -4397,6 +4712,10 @@ msgstr "ชอบ 10 โพสต์" msgid "Like 10 posts to train the Discover feed" msgstr "ชอบ 10 โพสต์" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "ชอบฟีตนี้" @@ -4405,8 +4724,8 @@ msgstr "ชอบฟีตนี้" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "ชอบโดย" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "ชอบโดย" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" @@ -4428,20 +4747,36 @@ msgstr "" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "ถูกใจ" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "ชอบในโพสต์นี้" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "ลิสต์" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "ลิสต์ถูกบล็อก" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "ลิสต์โดย {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "ลิสต์เปิดเสียง" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "ลิสต์" @@ -4537,7 +4876,7 @@ msgstr "โหลดเพิ่มเติม" msgid "Load more suggested feeds" msgstr "โหลดฟีดที่แนะนำเพิ่มเติม" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "โหลดการแจ้งเตือนใหม่" @@ -4552,11 +4891,11 @@ msgstr "โหลดโพสต์ใหม่" msgid "Loading..." msgstr "กำลังโหลด..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "บันทึก" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "การมองเห็นเมื่อออกจากระบบ" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "" @@ -4573,7 +4912,7 @@ msgstr "" msgid "Long press to open tag menu for #{tag}" msgstr "กดค้างเพื่อเปิดเมนูแท็กสำหรับ #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "รูปแบบ XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "" msgid "Make one for me" msgstr "สร้างสักหนึ่งอันสำหรับฉัน" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "โปรดตรวจสอบให้แน่ใจว่านี่คือจุดหมายที่คุณต้องการไป" @@ -4606,7 +4945,7 @@ msgstr "โปรดตรวจสอบให้แน่ใจว่านี msgid "Manage saved feeds" msgstr "" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "" @@ -4614,9 +4953,9 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "" @@ -4625,15 +4964,13 @@ msgstr "" msgid "Mark as read" msgstr "ทำเครื่องหมายว่าอ่านแล้ว" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "" @@ -4645,19 +4982,26 @@ msgstr "สื่อ" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "ผู้ใช้ที่ถูกกล่าวถึง" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "ผู้ใช้ที่ถูกกล่าวถึง" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "เมนู" @@ -4665,7 +5009,7 @@ msgstr "เมนู" msgid "Message {0}" msgstr "ส่งข้อความถึง {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "ข้อความถูกลบ" @@ -4674,11 +5018,11 @@ msgstr "ข้อความถูกลบ" msgid "Message deleted" msgstr "ข้อความถูกลบ" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "ข้อความจากเซิร์ฟเวอร์: {0}" @@ -4691,19 +5035,23 @@ msgstr "ช่องกรอกข้อความ" msgid "Message is too long" msgstr "ข้อความยาวเกินไป" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "ข้อความ" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "บัญชีที่ทำให้เข้าใจผิด" msgid "Misleading Post" msgstr "โพสต์ที่ทำให้เข้าใจผิด" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "การกรอง" @@ -4725,17 +5073,17 @@ msgstr "การกรอง" msgid "Moderation details" msgstr "รายละเอียดการกรอง" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "กรองโดย {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "กรองโดย {0}" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "กรองโดยคุณ" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "การกรองถูกอัพเดต" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "ลิสต์ที่กรอง" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "ลิสต์ที่กรอง" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "การตั้งค่าการกรอง" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "สถานะการกรอง" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "เครื่องมือการกรอง" @@ -4775,7 +5123,7 @@ msgstr "เครื่องมือการกรอง" msgid "Moderator has chosen to set a general warning on the content." msgstr "ผู้ดูแลระบบเลือกที่จะตั้งคำเตือนทั่วไปบนเนื้อหา" -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "เพิ่มเติม" @@ -4790,13 +5138,13 @@ msgstr "ฟีตเพิ่มเติม" msgid "More options" msgstr "การตั้งค่าเพิ่มเติม" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "แสดงการตอบกลับที่ชอบมากที่สุดก่อน" @@ -4808,8 +5156,8 @@ msgstr "วีดีโอ" msgid "Music" msgstr "เพลง" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "ปิดการมองเห็น" @@ -4819,8 +5167,8 @@ msgstr "ปิดการมองเห็น" msgid "Mute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "ปิดการมองเห็นคำนี้ในแท็ก msgid "Mute this word until you unmute it" msgstr "ปิดการมองเห็นคำนี้จนกว่าคุณจะปลด" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "ปิดการมองเห็นเธรต" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "ปิดการมองเห็นคำและแท็ก" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "ปิดการมองเห็นบัญชี" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "ปิดการมองเห็นบัญชี" @@ -4898,7 +5246,7 @@ msgstr "บัญชีที่ถูกปิดการมองเห็น msgid "Muted by \"{0}\"" msgstr "ปิดการมองเห็นโดย \"{0}\"" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "ปิดการมองเห็นคำและแท็ก" @@ -4911,7 +5259,7 @@ msgstr "การปิดเสียงเป็นเรื่องส่ว msgid "My Birthday" msgstr "วันเกิดของฉัน" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "ฟีตของฉัน" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "สำรวจ {0}" @@ -4958,11 +5306,11 @@ msgstr "ไปยังหน้าถัดไป" msgid "Navigates to your profile" msgstr "สำรวจโปรไฟล์ของคุฯ" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "ต้องการเปลี่ยนไหม?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "ต้องการรายงานการละเมิดด้านลิขสิทธิ์ใช้ไหม?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "ใหม่" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "แชทใหม่" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "ข้อความใหม่" msgid "New Moderation List" msgstr "ตัวกรองใหม่" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "รหัสผ่านใหม่" @@ -5029,7 +5396,7 @@ msgstr "รหัสผ่านใหม่" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "โพสต์ใหม่" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "โพสต์ใหม่" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "กล่องข้อความข้อมูลบัญชีใหม่" @@ -5054,10 +5429,14 @@ msgstr "กล่องข้อความข้อมูลบัญชีใ msgid "New User List" msgstr "ลิสต์บัญชีใหม่" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "เห็นการตอบกลับที่ใหม่ก่อน" @@ -5071,15 +5450,15 @@ msgstr "ข่าวสาร" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "ไม่มีระบบชื่อโดเมน" msgid "No expiry set" msgstr "" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "ไม่พบ GIF ที่แนะนำ อาจมีปัญหากับ Tenor" @@ -5119,32 +5498,35 @@ msgstr "" msgid "No likes yet" msgstr "ยังไม่มีสิ่งที่ชอบ" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "ไม่ติดตาม {0} อีกต่อไป" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "ยังไม่มีข้อความ" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "ยังไม่มีการแจ้งเตือน!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "ไม่มีใคร" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "ไม่มีใครนอกจากผู้เขียนที่สามารถอ้างอิงโพสต์นี้ได้" +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "ยังไม่มีโพสต์" @@ -5171,7 +5553,7 @@ msgstr "ไม่มีผลลัพธ์" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "ไม่พบผลลัพธ์" @@ -5179,9 +5561,9 @@ msgstr "ไม่พบผลลัพธ์" msgid "No results found for \"{query}\"" msgstr "ไม่พบผลลัพธ์สำหรับ \"{query}\"" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "ไม่พบผลลัพธ์สำหรับ {query}" @@ -5189,7 +5571,7 @@ msgstr "ไม่พบผลลัพธ์สำหรับ {query}" msgid "No results." msgstr "" -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "ไม่พบผลลัพธ์สำหรับ \"{search}\"" @@ -5198,7 +5580,7 @@ msgstr "ไม่พบผลลัพธ์สำหรับ \"{search}\"" msgid "No thanks" msgstr "ไม่เป็นไร ขอบคุณ" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "ไม่มีใคร" @@ -5223,59 +5605,76 @@ msgstr "ไม่พบใครเลย ลองคนหาคนอื่ msgid "Non-sexual Nudity" msgstr "การเปลือยกายที่ไม่เกี่ยวข้องกับเพศ" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "ไม่พบ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "โน้ตเกี่ยวกับการแชร์" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "หมายเหตุ : Bluesky เป็นเครือข่ายแบบเปิดและสาธารณะ การตั้งค่านี้จำกัดเพียงการมองเห็นเนื้อหาของคุณในแอปและเว็บไซต์ของ Bluesky เท่านั้น และแอปอื่นอาจไม่เคารพการตั้งค่านี้ เนื้อหาของคุณอาจยังถูกแสดงให้ผู้ใช้ที่ไม่ได้เข้าสู่ระบบโดยแอปและเว็บไซต์อื่นๆ" -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "ไม่มีอะไรที่นี่" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "ตัวกรองการแจ้งเตือน" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "การตั้งค่าการแจ้งเตือน" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "การตั้งค่าการแจ้งเตือน" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "เสียงการแจ้งเตือน" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "เสียงการแจ้งเตือน" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "การแจ้งเตือน" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "ตอนนี้" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "การโป๊เปลือยหรือเนื้อหาผู้ใหญ่ที่ไม่ระบุไว้" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "ปิด" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "ไม่น้าาา!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "ตกลง" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "ตกลง" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "การตอบกลับเก่าก่อน" @@ -5331,19 +5736,19 @@ msgstr "การตอบกลับเก่าก่อน" msgid "on<0><1/><2><3/>" msgstr "เปิด<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "รีเซ็ตออนบอร์ด" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "ภาพหนึ่งหรือมากกว่าขาดข้อความแทน" -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "" @@ -5351,13 +5756,15 @@ msgstr "" msgid "Only .jpg and .png files are supported" msgstr "สามารถลงได้แค่ไฟล์นามสกุล .jpg และ .png" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "{0} สามารถตอบกลับได้เท่านั้น" -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "อนุญาตใช้ตัวอักษร ตัวเลข และเครื่องหมายขีดกลางเท่านั้น" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "" msgid "Only WebVTT (.vtt) files are supported" msgstr "สามารถลงได้แค่ไฟล์ WebVTT (.vtt) เท่านั้น" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "อุ้ย~ เกิดข้อผิดพลาดจ้า" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "อ๊ะ!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "เปิดการเลือกอีโมจิ" @@ -5416,7 +5822,7 @@ msgstr "เปิดการตั้งค่าฟีต" msgid "Open full emoji list" msgstr "" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "" @@ -5424,11 +5830,11 @@ msgstr "" msgid "Open message options" msgstr "เปิดการตั้งค่าข้อความ" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "เปิดการปิดการมองเห็นคำและแท็ก" @@ -5453,16 +5859,16 @@ msgstr "" msgid "Open starter pack menu" msgstr "เปิดเมนูชุดเริ่มต้น" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "เปิดหน้าสตอรี่บุ๊ค" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "เปิด system log" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "เปิดการตั้งค่า {numItems}" @@ -5490,11 +5896,11 @@ msgstr "เปิดกล้องในอุปกรณ์" msgid "Opens captions and alt text dialog" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "เปิด composer" @@ -5502,7 +5908,7 @@ msgstr "เปิด composer" msgid "Opens device photo gallery" msgstr "เปิดรูปแกลลอรี่ในอุปกรณ์" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "" @@ -5520,15 +5926,19 @@ msgstr "เปิดเพื่อสร้างบัญชี Bluesky ที msgid "Opens GIF select dialog" msgstr "เปิดข้อความเลือก GIF" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "เปิดลิสต์ของโค้ดเชิญ" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "" @@ -5536,12 +5946,8 @@ msgstr "" msgid "Opens password reset form" msgstr "เปิดการรีเซ็ตรหัสผ่าน" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "เปิดเว็บไซต์ที่เชื่อมโยง" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "เปิดโปรไฟล์นี้" @@ -5558,7 +5964,7 @@ msgstr "สามารถให้ข้อมูลเพิ่มเติม msgid "Options:" msgstr "ตัวเลือก :" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "หรือรวมตัวเลือกนี้ :" @@ -5600,6 +6006,10 @@ msgstr "บัญชีอื่น ๆ" msgid "Other..." msgstr "อื่น ๆ..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "" @@ -5608,7 +6018,7 @@ msgstr "" msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "ผู้ดูแลระบบของเราได้ตรวจสอบรายงานและตัดสินใจที่จะปิดการเข้าถึงแชทของคุณบน Bluesky" -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "ไม่พบหน้านี้" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "ไม่พบหน้านี้" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "อัพเดตรหัสผ่าน" msgid "Password updated!" msgstr "อัพเดตรหัสผ่านแล้ว!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "พัก" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "พักวีดีโอ" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "ผู้คน" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "ผู้คนที่ติดตามโดย @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "ผู้คนที่ติดตาม @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "" @@ -5704,12 +6119,12 @@ msgstr "ปักหมุดไปที่หน้าแรก" msgid "Pin to Home" msgstr "ปักหมุดไปที่หน้าแรก" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "ปักหมุดไปที่โปรไฟล์" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "ปักหมุดแล้ว" @@ -5718,7 +6133,7 @@ msgstr "ปักหมุดแล้ว" msgid "Pinned {0} to Home" msgstr "" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "ฟีตที่ปักหมุด" @@ -5726,38 +6141,38 @@ msgstr "ฟีตที่ปักหมุด" msgid "Pinned to your feeds" msgstr "ปักหมุดไปที่ฟีต" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "เล่น" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "เล่น {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "เล่นวิดีโอ" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "เล่นวิดีโอ" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "เล่น GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "" @@ -5765,12 +6180,16 @@ msgstr "" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "กรุณาเลือกแฮนเดิลของคุณ" #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "โปรดเลือกรหัสผ่านของคุณ" @@ -5782,7 +6201,8 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "โปรดทำการยืนยัน Captcha ให้เสร็จ" -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "" @@ -5804,6 +6224,7 @@ msgstr "" msgid "Please enter a valid code." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "" @@ -5812,7 +6233,11 @@ msgstr "" msgid "Please enter a valid word, tag, or phrase to mute" msgstr "กรุณากรอกคำ แท็ก หรือวลี ที่ต้องการปิดการมองเห็น" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "" #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "กรุณากรอกอีเมลของคุณ" -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "กรุณาใส่โค้ดเชิญ" @@ -5853,6 +6278,19 @@ msgstr "กรุณาอธิบายว่าทำไมการตั้ msgid "Please explain why you think your chats were incorrectly disabled" msgstr "กรุณาอธิบายว่าทำไมคุณคิดว่าแชทของคุณถูกปิดใช้งานแบบไม่ถูกต้อง" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "" @@ -5870,9 +6308,9 @@ msgstr "กรุณาลงชื่อเข้าใช้ @{0}" msgid "Please verify your email" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "กรุณายืนยันอีเมลของคุณ" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "การเมือง" msgid "Porn" msgstr "สื่ออนาจาร" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "โพสต์" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "โพสต์" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "โพสต์" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "โพสต์โดย {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "โพสต์โดย {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "โพสต์ถูกลบแล้ว" @@ -5919,11 +6362,14 @@ msgstr "โพสต์ถูกลบแล้ว" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "" +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "โพสต์ถูกซ่อนแล้ว" @@ -5937,11 +6383,11 @@ msgstr "โพสต์ถูกซ่อนโดยคำที่ถูกป msgid "Post Hidden by You" msgstr "โพสต์ถูกซ่อนโดยคุณ" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "การตั้งค่าการโต้ตอบโพสต์" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "" @@ -5954,8 +6400,10 @@ msgstr "โพสต์ด้วยภาษา" msgid "Post Languages" msgstr "โพสต์ด้วยภาษา" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "ไม่พบโพสต์" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "ถอนหมุดโพสต์แล้ว" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "โพสต์" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "โพสต์สามารถถูกปิดเสียงตามข้อความ แท็ก หรือทั้งสองอย่าง เราขอแนะนำให้หลีกเลี่ยงคำทั่วไปที่ปรากฏในโพสต์หลายๆ โพสต์ เพราะอาจส่งผลให้ไม่มีโพสต์ใดแสดงขึ้นมา" -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "โพสต์ที่ซ่อนอยู่" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "ลิงก์ที่อาจทำให้เข้าใจผิด" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "บันทึกการตั้งค่าเรียบร้อย" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "คลิกเพื่อพยายามเชื่อมต่อใหม่" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "กดเพื่อลองใหม่" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "กดเพื่อดูผู้ติดตามในบัญชีนี้ที่คุณติดตามเหมือนกัน" @@ -6015,40 +6469,46 @@ msgstr "ภาพก่อนหน้า" msgid "Primary Language" msgstr "ภาษาหลัก" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "จัดลำดับความสำคัญการแจ้งเตือน" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "ความเป็นส่วนตัว" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "นโยบายความเป็นส่วนตัว" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "" @@ -6062,15 +6522,14 @@ msgstr "ดำเนินการ..." msgid "profile" msgstr "ข้อมูลส่วนตัว" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "ข้อมูลส่วนตัว" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "โปรไฟล์ได้รับการอัปเดต" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "คัดลอก QR โค้ดไปยังคลิปบอร์ดของคุณแล้ว!" @@ -6119,44 +6594,52 @@ msgstr "ดาวน์โหลด QR โค้ดเรียบร้อย msgid "QR code saved to your camera roll!" msgstr "บันทึก QR โค้ดลงในคลังภาพของคุณแล้ว!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "โควทโพสต์นี้" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "โพสต์ที่อ้างอิงถูกแนบใหม่" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "โพสต์ที่อ้างอิงถูกแยกออกเรียบร้อยแล้ว" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "ยกเลิกการโควท" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "การตั้งค่าการโควท" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "โควท" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "โควทโพสต์นี้" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "สุ่ม (หรือ \"Poster's Roulette\")" @@ -6164,8 +6647,8 @@ msgstr "สุ่ม (หรือ \"Poster's Roulette\")" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "แนบโพสต์ที่โควทอีกครั้ง" @@ -6177,30 +6660,42 @@ msgstr "" msgid "Reactivate your account" msgstr "ปิดใช้งานบัญชีของคุณอีกครั้ง" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "อ่าน Bluesky blog" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "อ่านนโยบายความเป็นส่วนตัวของ Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "อ่านนโยบาย เงื่อนไข และ ข้อตกลง ในการให้บริการของ Bluesky" @@ -6213,6 +6708,14 @@ msgstr "" msgid "Reason:" msgstr "เหตุผล:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "ประวัติการค้นหา" @@ -6234,8 +6737,8 @@ msgstr "" msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "โหลดการสนทนาใหม่" @@ -6244,10 +6747,9 @@ msgstr "โหลดการสนทนาใหม่" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "ลบ" @@ -6259,17 +6761,17 @@ msgstr "ลบ {displayName} จากชุดเริ่มต้นของ msgid "Remove {historyItem}" msgstr "" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "ลบบัญชี" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "ลบไฟล์แนบ" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "ลบอวาตาร์" @@ -6284,24 +6786,22 @@ msgstr "ลบการฝังข้อมูล" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "ลบฟีต" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "ลบฟีตหรือไม่?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "ลบจากฟีตของฉัน" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "ลบการเข้าถึงด่วนใช่ไหม" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "ลบจากฟีตที่เซฟไว้" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "ลบรูปภาพ" @@ -6332,12 +6831,8 @@ msgstr "ลบคำที่ปิดการมองเห็นจากล msgid "Remove profile" msgstr "ลบโปรไฟล์" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "ลบโควท" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "ลบรีโพสต์" @@ -6345,7 +6840,7 @@ msgstr "ลบรีโพสต์" msgid "Remove subtitle file" msgstr "ลบไฟล์ซับไตเติ้ล" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "ลบฟีตนี้จากฟีตที่คุณเซฟ" @@ -6364,11 +6859,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "ลบโดยผู้สร้าง" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "ลบโดยคุณ" @@ -6377,10 +6872,6 @@ msgstr "ลบโดยคุณ" msgid "Removed from list" msgstr "ลบจากลิสต์" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "ลบจากฟิตของฉัน" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "ลบจากฟีตที่เซฟ" @@ -6395,34 +6886,36 @@ msgstr "ลบจากฟีตของคุณ" msgid "Removed verification" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "ลบโพสต์ของโควท" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "แทนที่ด้วยสิ่งที่น่าสนใจ" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "การตอบกลับ" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "ปิดการตอบกลับแล้ว" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "การตอบกลับโพสต์นี้ถูกปิด" -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "การตอบกลับ" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -6436,50 +6929,55 @@ msgstr "การตอบกลับถูกซ่อนโดยผู้ส msgid "Reply Hidden by You" msgstr "การตอบกลับถูกซ่อนโดยคุณ" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "การตั้งค่าการตอบกลับ" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "การตั้งค่าการตอบกลับถูกเลือกโดยผู้เขียนกระทู้" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "ตอบกลับไปยัง <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "ตอบกลับไปยังโพสต์ที่ถูกบล็อก" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "ตอบกลับไปยังโพสต์" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "ตอบกลับคุณ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "การมองเห็นการตอบกลับได้รับการปรับปรุง" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "การตอบกลับถูกซ่อนเรียบร้อยแล้ว" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "รายงานฟีด" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "รายงานข้อความ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "รายงานโพสต์" @@ -6567,25 +7065,26 @@ msgstr "รายงานชุดเริ่มต้นนี้" msgid "Report this user" msgstr "รายงานผู้ใช้คนนี้" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "รีโพสต์" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "รีโพสต์" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "" @@ -6594,26 +7093,38 @@ msgstr "" msgid "Reposted By" msgstr "รีโพสต์โดย" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "รีโพสต์โดย {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "รีโพสต์โดย <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "รีโพสต์โดยคุณ" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "รีโพสต์ของโพสต์นี้" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" msgstr "" #: src/view/com/modals/ChangePassword.tsx:253 @@ -6621,8 +7132,8 @@ msgstr "" msgid "Request Code" msgstr "ขอรหัส" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "ต้องมีข้อความแทนภาพก่อนโพสต์" @@ -6630,7 +7141,7 @@ msgstr "ต้องมีข้อความแทนภาพก่อนโ msgid "Require an email code to sign in to your account." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "จำเป็นสำหรับผู้ให้บริการนี้" @@ -6642,10 +7153,6 @@ msgstr "จำเป็นในภูมิภาคของคุณ" msgid "Resend" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "ส่งอีเมลอีกครั้ง" msgid "Resend Verification Email" msgstr "ส่งอีเมลยืนยันอีกครั้ง" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "รีเซ็ตรหัส" @@ -6667,8 +7180,8 @@ msgstr "รีเซ็ตรหัส" msgid "Reset Code" msgstr "รีเซ็ตรหัส" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "รีเซ็ตสถานะการเริ่มต้นใช้งาน" @@ -6687,21 +7200,23 @@ msgstr "ลองทำกิจกรรมล่าสุดซึ่งเก #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "ลองใหม่อีกครั้ง" @@ -6721,19 +7236,19 @@ msgstr "กลับไปยังหน้าแรก" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "กลับไปยังหน้าก่อนหน้า" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "บันทึก" @@ -6762,15 +7276,13 @@ msgstr "บันทึก" msgid "Save birthday" msgstr "บันทึกวันเกิด" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "บันทึกการเปลี่ยนแปลง" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "บันทึกการเปลี่ยนแปลง" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "บันทึกคิวอาร์โค้ด" msgid "Save to my feeds" msgstr "บันทึกที่ฟีตของฉัน" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "บันทึกฟีต" @@ -6802,18 +7314,14 @@ msgstr "บันทึกฟีต" msgid "Saved to your feeds" msgstr "บันทึกไปที่ฟีตของคุณ" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "บันทึกการเปลี่ยนแปลงโปรไฟล์ของคุณ" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "บันทึกการครอปรูปภาพ" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "ทักทายสิ!" @@ -6826,16 +7334,16 @@ msgstr "วิทยาศาสตร์" msgid "Scroll to top" msgstr "เลื่อนไปข้างบนสุด" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "ค้นหา" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -6861,7 +7369,7 @@ msgstr "ค้นหาจาก \"{query}\"" msgid "Search for \"{searchText}\"" msgstr "การค้นหาสำหรับ \"{query}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "ค้นหาสำหรับฟีตที่คุณต้องการแนะนำให้คนอื่น" @@ -6877,10 +7385,14 @@ msgstr "" msgid "Search for posts, users, or feeds" msgstr "" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "ค้นหา GIF" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "" @@ -6890,12 +7402,12 @@ msgstr "" msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "ค้นหาโปรไฟล์" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "ค้นหา Tenor" @@ -6903,7 +7415,7 @@ msgstr "ค้นหา Tenor" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "" @@ -6912,10 +7424,6 @@ msgstr "" msgid "Security step required" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "ต้องการขั้นตอนด้านความปลอดภัย" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "" @@ -6936,14 +7444,31 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "มองหางานใน Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "ดูคู่มือนี้" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "เลือกสี" @@ -6988,7 +7513,7 @@ msgstr "เลือกจากบัญชีที่มีอยู่แล msgid "Select GIF" msgstr "เลือก GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "เลือก GIF \"{0}\"" @@ -6996,6 +7521,11 @@ msgstr "เลือก GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "เลือกว่าจะปิดการมองเห็นคำนี้นานแค่ไหน" +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "กำลังเลือกภาษา..." @@ -7004,7 +7534,7 @@ msgstr "กำลังเลือกภาษา..." msgid "Select languages" msgstr "เลือกภาษา" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "" @@ -7045,12 +7575,12 @@ msgstr "" msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "เลือกภาษาที่คุณต้องการให้ฟีดที่คุณติดตามรวมอยู่ หากไม่เลือกภาษาใดๆ จะมีการแสดงภาษาทั้งหมด" -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "เลือกเดือนที่เกิด" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "เลือกสิ่งที่สนใจจากตัวเลือกด้านบน" @@ -7058,7 +7588,11 @@ msgstr "เลือกสิ่งที่สนใจจากตัวเล msgid "Select your preferred language for translations in your feed." msgstr "เลือกภาษาที่คุณต้องการสำหรับการแปลในฟีดของคุณ" -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "" @@ -7066,17 +7600,9 @@ msgstr "" msgid "Send a neat website!" msgstr "ส่งเว็บไซต์ที่น่าสนใจมาให้หน่อย!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "ส่งการยืนยันผ่านอีเมล" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "ส่งอีเมล" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "ส่งอีเมล" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "ส่งข้อเสนอแนะ" @@ -7095,7 +7621,7 @@ msgstr "ส่งข้อเสนอแนะ" msgid "Send message" msgstr "ส่งข้อความ" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "" @@ -7114,20 +7640,20 @@ msgstr "ส่งรายงาน" msgid "Send report to {0}" msgstr "ส่งรายงานให้ {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "ส่งการยืนยันผ่านอีเมล" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "ส่งในข้อความส่วนตัว" @@ -7143,7 +7669,7 @@ msgstr "ที่อยู่เซิร์ฟเวอร์" msgid "Set app icon to {0}" msgstr "" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "ตั้งเดือนเกิด" @@ -7159,13 +7685,57 @@ msgstr "ตั้งค่าบัญชีของคุณ" msgid "Sets email for password reset" msgstr "ตั้งอีเมลเพื่อการรีเซตรหัสผ่าน" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "การตั้งค่า" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "แชร์สตอรี่สุดเจ๋ง!" msgid "Share a fun fact!" msgstr "แชร์เรื่องจริงสนุก ๆ!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "แชร์ตลอด" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "แชร์ลิงก์" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "แชร์ลิงก์" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "กล่องโต้ตอบแชร์ลิงก์" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "" @@ -7247,8 +7812,8 @@ msgstr "แชร์สตาร์ทแพ็กนี้" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "แชร์ชุดเริ่มต้นนี้และช่วยให้ผู้คนเข้าร่วมชุมชนของคุณบน Bluesky" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "" msgid "Share your favorite feed!" msgstr "แชร์ฟีดที่คุณชื่นชอบ!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "โปรแกรมทดสอบการตั้งค่าแชร์" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "แชร์เว็บไซต์ที่เชื่อมโยง" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "แสดง" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "แสดงข้อความแทน" @@ -7303,8 +7864,8 @@ msgstr "" msgid "Show hidden replies" msgstr "แสดงคำตอบที่ซ่อนอยู่" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "แสดงน้อยกว่านี้" @@ -7312,55 +7873,63 @@ msgstr "แสดงน้อยกว่านี้" msgid "Show list anyway" msgstr "แสดงลิสต์อยู่ดี" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "แสดงเพิ่มเติม" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "แสดงมากกว่านี้" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "แสดงคำตอบที่เงียบไว้" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "แสดงการตอบกลับสำหรับทุกคน" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "" @@ -7372,16 +7941,17 @@ msgstr "แสดงคำเตือน" msgid "Show warning and filter from feeds" msgstr "แสดงคำเตือนและกรองจากฟีด" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "" @@ -7390,14 +7960,15 @@ msgstr "" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "เข้าสู่ระบบด้วยบัญชีที่ไ msgid "Sign in to Bluesky or create a new account" msgstr "เข้าสู่ระบบ Bluesky หรือสร้างบัญชีใหม่" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "ออกจากระบบ" @@ -7444,8 +8020,8 @@ msgstr "ออกจากระบบ" msgid "Sign Out" msgstr "ออกจากระบบ" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "ออกจากระบบ?" @@ -7459,12 +8035,12 @@ msgstr "ต้องเข้าสู่ระบบ" msgid "Signed in as @{0}" msgstr "เข้าสู่ระบบในชื่อ @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "บัญชีที่คล้ายกัน" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "ข้าม" @@ -7472,12 +8048,11 @@ msgstr "ข้าม" msgid "Skip this flow" msgstr "ข้ามขั้นตอนนี้" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "เล็ก" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "" @@ -7490,11 +8065,11 @@ msgstr "นักพัฒนาซอฟต์แวร์" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "ฟีดอื่น ๆ ที่คุณอาจชอบ" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "บางคนสามารถตอบได้" @@ -7510,10 +8085,11 @@ msgstr "" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "" -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "เกิดข้อผิดพลาดบางอย่าง" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "เกิดข้อผิดพลาดบางอย่าง กรุณาลองอีกครั้ง" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "เกิดข้อผิดพลาดบางอย่าง กรุณาลองอีกครั้ง." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "เกิดข้อผิดพลาดบางอย่าง!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "" @@ -7539,20 +8118,23 @@ msgstr "" msgid "Something wrong? Let us know." msgstr "" -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "จัดเรียงการตอบกลับต่อโพสต์เดียวกันตาม :" @@ -7579,7 +8161,7 @@ msgstr "สแปม; การกล่าวถึงหรือการต msgid "Sports" msgstr "กีฬา" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "" @@ -7601,9 +8183,9 @@ msgstr "" msgid "Start chat with {displayName}" msgstr "เริ่มแชทกับ {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "ชุดเริ่มต้น" @@ -7611,12 +8193,12 @@ msgstr "ชุดเริ่มต้น" msgid "Starter pack by {0}" msgstr "ชุดเริ่มต้นโดย {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "ชุดเริ่มต้นโดยคุณ" @@ -7638,19 +8220,21 @@ msgstr "ชุดเริ่มต้นช่วยให้คุณแชร msgid "Status Page" msgstr "หน้าสถานะ" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "ขั้นตอนที่ {0} จาก {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "ล้างพื้นที่เก็บข้อมูลแล้ว คุณต้องเริ่มแอปใหม่ตอนนี้" -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "" @@ -7676,10 +8260,14 @@ msgstr "" msgid "Subscribe" msgstr "สมัครสมาชิก" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "สมัครสมาชิก @{0} เพื่อใช้ป้ายกำกับเหล่านี้:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "สมัครสมาชิกผู้สร้างป้ายกำกับ" @@ -7692,8 +8280,12 @@ msgstr "สมัครสมาชิกผู้สร้างป้ายก msgid "Subscribe to this list" msgstr "สมัครสมาชิกในลิสต์นี้" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "สำเร็จ!" @@ -7705,7 +8297,7 @@ msgstr "" msgid "Suggested Accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "แนะนำสำหรับคุณ" @@ -7714,26 +8306,26 @@ msgstr "แนะนำสำหรับคุณ" msgid "Suggestive" msgstr "ชี้นำ" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "สนับสนุน" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "" @@ -7742,24 +8334,24 @@ msgstr "" msgid "Switch Account" msgstr "เปลี่ยนบัญชี" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "ระบบ" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "บันทึกกิจกรรมของระบบ" @@ -7767,6 +8359,18 @@ msgstr "บันทึกกิจกรรมของระบบ" msgid "Tags only" msgstr "แท็กเท่านั้น" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "เล่าให้เราฟังนิดนึง" msgid "Terms" msgstr "เงื่อนไข" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "เงื่อนไขการให้บริการ" @@ -7848,10 +8454,6 @@ msgstr "ช่องใส่ข้อความ" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "ขอบคุณนะ! อีเมลของคุณได้รับการยืนยันแล้ว" - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "เราได้ส่งรายงานของคุณไปแล้ว ขอบคุณ" @@ -7864,28 +8466,28 @@ msgstr "ขอบคุณน้า~ คุณได้ยืนยันอี msgid "That contains the following:" msgstr "ที่มีดังต่อไปนี้ :" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "แฮนเดิ้ลนั้นมีคนใช้ไปแล้ว" - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "หาชุดเริ่มต้นไม่เจอ" +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "มีแค่นี้แหละท่านผู้ชม!!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "บัญชีจะสามารถโต้ตอบกับคุณได้หลังจากที่ปลดบล็อกแล้ว" @@ -7900,7 +8502,7 @@ msgstr "" msgid "The author of this thread has hidden this reply." msgstr "ผู้สร้างเธรตได้ซ่อนการตอบกลับนี้" -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "แอป Bluesky" @@ -7920,10 +8522,6 @@ msgstr "ฟีดที่ค้นพบ" msgid "The Discover feed now knows what you like" msgstr "ฟีดที่ค้นพบตอนนี้รู้ว่าคุณชอบอะไร" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "" - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "สัมผัสประสบการณ์ที่ดีกว่าโดยการดาวน์โหลด Bluesky ตอนนี้เลย แล้วเราจะกลับมาในจุดที่คุณค้างไว้" @@ -7944,8 +8542,16 @@ msgstr "สิ่งที่ตั้งต่อไปนี้ถูกใช msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "โพสต์ถูกลบแล้ว" @@ -7953,9 +8559,10 @@ msgstr "โพสต์ถูกลบแล้ว" msgid "The Privacy Policy has been moved to <0/>" msgstr "นโยบายความเป็นส่วนตัวได้ถูกย้ายไป <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "วีดีโอที่เลือกมีขนาดใหญ่กว่า 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "" #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "เงื่อนไขการให้บริการได้ถ msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "รหัสยืนยันที่คุณให้มานั้นไม่ถูกต้อง กรุณาตรวจสอบให้แน่ใจว่าคุณได้ใช้ลิงก์ยืนยันที่ถูกต้องหรือขอรหัสใหม่อีกครั้ง" -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "ธีม" @@ -7990,14 +8597,14 @@ msgstr "ธีม" msgid "There is no time limit for account deactivation, come back any time." msgstr "ยังไม่มีเวลาจำกัดสำหรับการปิดใช้งานบัญชี คุณสามารถกลับมาได้ตลอดเวลา" -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "เกิดปัญหาในการเชื่อมต่อกับ Tenor" #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "เกิดปัญหาในการติดต่อเซิร์ฟเวอร์" @@ -8006,17 +8613,12 @@ msgstr "เกิดปัญหาในการติดต่อเซิร msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "เกิดปัญหาในการติดต่อเซิร์ฟเวอร์" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "เกิดปัญหาในการดึงการแจ้งเตือน คลิกที่นี่เพื่อลองอีกครั้ง" -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "เกิดปัญหาในการดึงโพสต์ คลิกที่นี่เพื่อลองอีกครั้ง" @@ -8037,7 +8639,7 @@ msgstr "เกิดปัญหาในการดึงลิสต์ขอ msgid "There was an issue fetching your service info" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" @@ -8052,9 +8654,9 @@ msgstr "เกิดปัญหาในการส่งคำรายงา msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "" msgid "There was an issue! {0}" msgstr "เกิดปัญหาที่ {0}!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "เกิดปัญหาที่ {0}!" msgid "There was an issue. Please check your internet connection and try again." msgstr "เกิดปัญหาการเชื่อมต่อ กรุณาตรวจสอบการเชื่อมต่ออินเทอร์เน็ตของคุณและลองอีกครั้ง" -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "เกิดปัญหาไม่คาดคิดในแอปพลิเคชัน กรุณาแจ้งให้เราทราบหากเกิดสิ่งนี้ขึ้นกับคุณ!" @@ -8089,7 +8691,7 @@ msgstr "เกิดปัญหาไม่คาดคิดในแอปพ msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "มีผู้ใช้ใหม่เข้ามาที่ Bluesky เป็นจำนวนมาก! เราจะรีบเปิดใช้งานบัญชีของคุณอย่างเร็วที่สุด" -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "" @@ -8146,7 +8748,7 @@ msgstr "" msgid "This content is not available because one of the users involved has blocked the other." msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "" @@ -8158,6 +8760,10 @@ msgstr "" msgid "This email is already associated with your account." msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "" @@ -8170,7 +8776,7 @@ msgstr "" msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "" @@ -8209,11 +8815,11 @@ msgstr "" msgid "This label was applied by you." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "" -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "" @@ -8233,29 +8839,28 @@ msgstr "" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "" @@ -8263,11 +8868,11 @@ msgstr "" msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "" @@ -8275,6 +8880,10 @@ msgstr "" msgid "This should create a domain record at:" msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" @@ -8316,16 +8925,18 @@ msgstr "" msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "นี่จะลบ \"{0}\" ออกจากคำที่คุณปิดเสียง คุณสามารถเพิ่มกลับได้เสมอในภายหลัง" -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "นี่จะลบ @{0} ออกจากลิสต์เข้าถึงด่วน" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "นี่จะลบโพสต์ของคุณออกจากโพสต์อ้างอิงนี้สำหรับผู้ใช้ทุกคน และแทนที่ด้วยข้อความแทน" -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "" @@ -8334,24 +8945,27 @@ msgstr "" msgid "Thread preferences" msgstr "การตั้งค่าเธรด" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "การตั้งค่าเธรด" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "" @@ -8376,42 +8990,56 @@ msgstr "" msgid "Today" msgstr "" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "" @@ -8428,14 +9056,10 @@ msgstr "" msgid "TV" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "กรอกชื่อผู้ใช้ของคุณ" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "" @@ -8453,7 +9077,7 @@ msgstr "" #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "ไม่สามารถติดต่อบริการของ msgid "Unable to delete" msgstr "ไม่สามารถลบได้" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "ปลดบล็อก" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "ปลดบล็อก" @@ -8486,7 +9126,7 @@ msgstr "ปลดบล็อก" msgid "Unblock account" msgstr "ปลดบล็อกบัญชี" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "ปลดบล็อกบัญชีหรือไม่?" @@ -8495,13 +9135,13 @@ msgstr "ปลดบล็อกบัญชีหรือไม่?" msgid "Unblock list" msgstr "" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "ยกเลิกการแชร์ซ้ำ" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "เลิกติดตาม" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "เลิกติดตาม {0}" @@ -8523,7 +9163,7 @@ msgstr "เลิกติดตามบัญชี" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "" @@ -8555,8 +9195,8 @@ msgstr "เปิดเสียง" msgid "Unmute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "เปิดเสียงการสนทนา" msgid "Unmute list" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "เปิดเสียงกระทู้" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "เปิดเสียงวิดีโอ" @@ -8597,8 +9237,8 @@ msgstr "" msgid "Unpin from home" msgstr "เลิกปักหมุดจากหน้าแรก" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "เลิกปักหมุดจากโปรไฟล์" @@ -8614,8 +9254,8 @@ msgstr "" msgid "Unpinned from your feeds" msgstr "เลิกปักหมุดจากฟีดของคุณ" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "" @@ -8636,7 +9276,7 @@ msgstr "เลิกสมัครรับข้อมูลจากผู้ msgid "Unsubscribed from list" msgstr "เลิกสมัครรับข้อมูลจากลิสต์แล้ว" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "" @@ -8662,8 +9302,8 @@ msgstr "อัปเดต <0>{displayName} ในลิสต์" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "" @@ -8676,17 +9316,17 @@ msgstr "" msgid "Update your email" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "การอัปเดตไฟล์แนบคำคมล้มเหลว" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "การอัปเดตการมองเห็นการตอบกลับล้มเหลว" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "กำลังอัปเดต..." @@ -8698,20 +9338,20 @@ msgstr "อัปโหลดรูปภาพแทน" msgid "Upload a text file to:" msgstr "อัปโหลดไฟล์ข้อความไปที่:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "อัปโหลดจากกล้อง" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "อัปโหลดจากไฟล์" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "อัปโหลดจากไลบรารี" msgid "Uploading images..." msgstr "" -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "" @@ -8761,6 +9401,10 @@ msgstr "ใช้ที่แนะนำ" msgid "Use this to sign in to the other app along with your handle." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "ถูกใช้โดย:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "ลิสต์ผู้ใช้ถูกปรับปรุง" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "ชื่อผู้ใช้หรือที่อยู่อีเมล" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "ผู้ใช้ที่ติดตามโดย <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "ผู้ใช้ที่ฉันติดตาม" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "ผู้ใช้ใน \"{0}\"" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "" @@ -8846,11 +9502,11 @@ msgstr "ค่า:" msgid "Verification failed, please try again." msgstr "" -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "" @@ -8870,8 +9526,15 @@ msgstr "" msgid "Verify account" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "" @@ -8880,21 +9543,20 @@ msgstr "" msgid "Verify DNS Record" msgstr "ตรวจสอบระเบียน DNS" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "กล่องโต้ตอบตรวจสอบอีเมล" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "ตรวจสอบไฟล์ข้อความ" msgid "Verify this account?" msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "ตรวจสอบอีเมลของคุณ" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" +msgid "Version {0}" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "วิดีโอ" @@ -8928,7 +9598,7 @@ msgstr "วิดีโอ" msgid "Video failed to process" msgstr "การประมวลผลวิดีโอไม่สำเร็จ" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "" @@ -8942,15 +9612,15 @@ msgstr "" msgid "Video Games" msgstr "เกมวิดีโอ" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "ไม่พบวิดีโอ" @@ -8958,11 +9628,11 @@ msgstr "ไม่พบวิดีโอ" msgid "Video settings" msgstr "การตั้งค่าวิดีโอ" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "วิดีโอ: {0}" @@ -8979,11 +9649,11 @@ msgstr "" msgid "View {0}'s avatar" msgstr "ดูอวตาร์ของ {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "ดูโปรไฟล์ของ {0}" @@ -8991,7 +9661,7 @@ msgstr "ดูโปรไฟล์ของ {0}" msgid "View {displayName}'s profile" msgstr "ดูโปรไฟล์ของ {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "ดูโปรไฟล์ของผู้ใช้ที่ถูกบล็อก" @@ -9009,7 +9679,6 @@ msgstr "ดูลิสต์ดีบัก" msgid "View details" msgstr "ดูรายละเอียด" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "ดูรายละเอียดสำหรับการรายงานการละเมิดลิขสิทธิ์" @@ -9022,23 +9691,23 @@ msgstr "ดูเธรดเต็ม" msgid "View information about these labels" msgstr "ดูข้อมูลเกี่ยวกับป้ายกำกับเหล่านี้" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "ดูโปรไฟล์" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "ดูอวตาร์" @@ -9054,28 +9723,28 @@ msgstr "" msgid "View users who like this feed" msgstr "ดูผู้ใช้ที่ชอบฟีดนี้" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "ดูบัญชีที่คุณบล็อก" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "ดูฟีดของคุณและสำรวจเพิ่มเติม" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "ดูลิสต์การModeration ของคุณ" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "ดูบัญชีที่คุณปิดเสียง" @@ -9083,8 +9752,8 @@ msgstr "ดูบัญชีที่คุณปิดเสียง" msgid "View your verifications" msgstr "" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "" @@ -9092,16 +9761,20 @@ msgstr "" msgid "Views video in immersive mode" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "เยี่ยมชมเว็บไซต์" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "เตือนเนื้อหาและกรองจากฟี msgid "Watch now" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "" + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "เราไม่สามารถค้นหาผลลัพธ์ใดๆ สำหรับแฮชแท็กนั้นได้." @@ -9128,7 +9809,7 @@ msgstr "เราไม่สามารถค้นหาผลลัพธ์ msgid "We couldn't find any results for that topic." msgstr "" -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "เราไม่สามารถโหลดการสนทนานี้ได้" @@ -9136,6 +9817,10 @@ msgstr "เราไม่สามารถโหลดการสนทนา msgid "We estimate {estimatedTime} until your account is ready." msgstr "เราประเมินว่าใช้เวลา {estimatedTime} จนกว่าบัญชีของคุณจะพร้อม." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "เราได้ส่งอีเมลยืนยันอีกฉบับไปยัง <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "เราหวังว่าคุณจะมีช่วงเวล msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "เราหมดโพสต์จากผู้ติดตามของคุณแล้ว นี่คือโพสต์ล่าสุดจาก <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "เราไม่สามารถกำหนดได้ว่าคุณได้รับอนุญาตให้อัปโหลดวิดีโอหรือไม่ กรุณาลองอีกครั้ง." @@ -9164,10 +9849,14 @@ msgstr "เราไม่สามารถกำหนดได้ว่าค msgid "We were unable to load your birth date preferences. Please try again." msgstr "เราไม่สามารถโหลดการตั้งค่าวันเกิดของคุณได้ กรุณาลองอีกครั้ง." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "เราไม่สามารถโหลดผู้ติดป้ายที่คุณกำหนดไว้ในขณะนี้ได้." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "เราไม่สามารถเชื่อมต่อได้ กรุณาลองอีกครั้งเพื่อดำเนินการตั้งค่าบัญชีของคุณ หากยังไม่สามารถเชื่อมต่อได้ คุณสามารถข้ามขั้นตอนนี้ได้." @@ -9176,7 +9865,7 @@ msgstr "เราไม่สามารถเชื่อมต่อได้ msgid "We will let you know when your account is ready." msgstr "เราจะแจ้งให้คุณทราบเมื่อบัญชีของคุณพร้อมใช้งาน" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -9184,6 +9873,22 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "เราจะใช้สิ่งนี้เพื่อช่วยปรับแต่งประสบการณ์ของคุณ" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "เรากำลังประสบปัญหาเครือข msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "เราตื่นเต้นมากที่คุณมาร่วมกับเรา!" @@ -9205,15 +9910,15 @@ msgstr "ขออภัย เราไม่สามารถแก้ไข msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "ขออภัย เราไม่สามารถโหลดคำที่คุณปิดเสียงในขณะนี้ โปรดลองอีกครั้ง" -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "ขออภัย การค้นหาของคุณไม่สามารถเสร็จสมบูรณ์ได้ โปรดลองอีกครั้งในไม่กี่นาที" -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "ขออภัย! โพสต์ที่คุณตอบกลับถูกลบไปแล้ว" -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "เราขอโทษ! เราไม่สามารถค้นหาหน้าที่ยังมีอยู่ที่คุณต้องการได้." @@ -9222,6 +9927,26 @@ msgstr "เราขอโทษ! เราไม่สามารถค้น msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "เราขอโทษ! คุณสามารถสมัครสมาชิกได้เพียงยี่สิบผู้ติดป้าย และคุณได้ถึงขีดจำกัดยี่สิบแล้ว." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "ยินดีต้อนรับกลับ!" @@ -9240,7 +9965,7 @@ msgstr "คุณต้องการตั้งชื่อชุดเริ #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "มีอะไรใหม่?" @@ -9256,11 +9981,11 @@ msgstr "โพสต์นี้ใช้ภาษาอะไรบ้าง?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "คุณต้องการเห็นภาษาอะไรในฟีดอัลกอริธึมของคุณ?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "ใครสามารถมีปฏิสัมพันธ์กับโพสต์นี้ได้บ้าง?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "ใครสามารถตอบได้" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "อุ๊ย!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "" @@ -9322,12 +10047,12 @@ msgstr "ทำไมผู้ใช้คนนี้จึงควรได้ msgid "Write a message" msgstr "เขียนข้อความ" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "เขียนโพสต์" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "เขียนคำตอบของคุณ" @@ -9358,11 +10083,11 @@ msgstr "ใช่, ปิดการใช้งาน" msgid "Yes, delete this starter pack" msgstr "ใช่, ลบชุดเริ่มต้นนี้" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "ใช่, แยกออก" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "ใช่, ซ่อน" @@ -9378,6 +10103,10 @@ msgstr "เมื่อวาน" msgid "You" msgstr "คุณ" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "" @@ -9386,6 +10115,10 @@ msgstr "" msgid "You are creating an account on" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "คุณอยู่ในคิว." @@ -9403,7 +10136,7 @@ msgstr "" msgid "You are not allowed to go live" msgstr "" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "คุณไม่ได้รับอนุญาตให้อัปโหลดวิดีโอ." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "" @@ -9441,10 +10173,18 @@ msgstr "คุณยังสามารถค้นพบฟีดแบบก msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "คุณยังสามารถปิดการใช้งานบัญชีของคุณชั่วคราวได้แทน และเปิดใช้งานอีกครั้งเมื่อใดก็ได้." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "คุณสามารถดำเนินการสนทนาที่กำลังดำเนินอยู่ต่อไปได้ไม่ว่าจะเลือกการตั้งค่าใด" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "คุณสามารถลงชื่อเข้าใช้ด้ msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "คุณสามารถเปิดใช้งานบัญชีของคุณอีกครั้งเพื่อดำเนินการลงชื่อเข้าใช้ บัญชีและโพสต์ของคุณจะมองเห็นได้โดยผู้ใช้คนอื่น" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "" #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "" @@ -9472,7 +10212,7 @@ msgstr "คุณไม่มีผู้ติดตาม" msgid "You don't follow any users who follow @{name}." msgstr "คุณไม่ได้ติดตามผู้ใช้ที่ติดตาม @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "" @@ -9480,15 +10220,15 @@ msgstr "" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "คุณยังไม่มีรหัสเชิญ! เราจะส่งรหัสให้คุณเมื่อคุณอยู่ใน Bluesky นานขึ้นอีกนิด." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "คุณยังไม่มีฟีดที่ติดหมุด." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "คุณยังไม่มีฟีดที่บันทึก." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "คุณได้บล็อกผู้เขียนหรือคุณถูกผู้เขียนบล็อก." @@ -9502,6 +10242,10 @@ msgstr "คุณได้บล็อกผู้ใช้คนนี้" msgid "You have blocked this user. You cannot view their content." msgstr "คุณได้บล็อกผู้ใช้คนนี้ คุณไม่สามารถดูเนื้อหาของเขาได้." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "คุณได้ปิดเสียงบัญชีนี้" msgid "You have muted this user" msgstr "คุณได้ปิดเสียงผู้ใช้คนนี้" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "คุณยังไม่มีการสนทนาเริ่มต้น! เริ่มต้นหนึ่งเลย!" @@ -9547,7 +10291,7 @@ msgstr "คุณยังไม่ได้บล็อกบัญชีใด msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "คุณยังไม่ได้ปิดเสียงบัญชีใด ๆ หากต้องการปิดเสียงบัญชี ให้ไปที่โปรไฟล์ของพวกเขาและเลือก \"ปิดเสียงบัญชี\" จากเมนูในบัญชีของพวกเขา" -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "คุณถึงจุดสิ้นสุดแล้ว" @@ -9572,6 +10316,10 @@ msgstr "คุณยังไม่ได้ปิดเสียงคำหร msgid "You hid this reply." msgstr "คุณซ่อนการตอบกลับนี้แล้ว" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "คุณสามารถอุทธรณ์ป้ายที่ไม่ใช่ของตนเองได้หากคุณรู้สึกว่ามันถูกติดตั้งโดยผิดพลาด" @@ -9592,7 +10340,7 @@ msgstr "คุณสามารถเพิ่มได้สูงสุด 3 msgid "You may only select up to 4 images" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "" @@ -9600,6 +10348,14 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "คุณต้องติดตามผู้อื่นอย่างน้อย 7 คนจึงจะสามารถสร้างชุดเริ่มต้นได้" +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "คุณต้องอนุญาตให้เข้าถึงคลังรูปภาพของคุณเพื่อบันทึกรหัส QR" @@ -9608,6 +10364,11 @@ msgstr "คุณต้องอนุญาตให้เข้าถึงค msgid "You must select at least one labeler for a report" msgstr "คุณต้องเลือกผู้ติดฉลากอย่างน้อยหนึ่งคนสำหรับรายงาน" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "" @@ -9616,7 +10377,7 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "คุณได้ทำการปิดการใช้งาน @{0} ก่อนหน้านี้" -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "" @@ -9628,16 +10389,20 @@ msgstr "" msgid "You reacted {0} to {1}" msgstr "" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "คุณจะไม่รับการแจ้งเตือนสำหรับกระทู้นี้อีกต่อไป" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "คุณจะเริ่มได้รับการแจ้งเตือนสำหรับกระทู้นี้" @@ -9657,11 +10422,11 @@ msgstr "คุณ: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "คุณ: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "คุณจะติดตามผู้ใช้และฟีดที่แนะนำทันทีที่สร้างบัญชีเสร็จ!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "คุณจะติดตามผู้ใช้ที่แนะนำทันทีที่สร้างบัญชีเสร็จ!" @@ -9673,9 +10438,9 @@ msgstr "คุณจะติดตามบุคคลเหล่านี้ msgid "You'll follow these people right away" msgstr "คุณจะติดตามบุคคลเหล่านี้ทันที" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "คุณจะได้รับอีเมลที่ <0>{0} เพื่อยืนยันว่าเป็นคุณ" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "คุณเลือกที่จะซ่อนคำหรือแ msgid "You've found some people to follow" msgstr "" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "คุณมาถึงจุดสิ้นสุดฟีดของคุณแล้ว! ค้นหาบัญชีเพิ่มเติมเพื่อติดตาม" @@ -9711,19 +10480,23 @@ msgstr "คุณมาถึงจุดสิ้นสุดฟีดของ msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "คุณถึงขีดจำกัดการอัพโหลดวิดีโอต่อวันแล้ว (ขนาดไฟล์มากเกินไป)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "คุณถึงขีดจำกัดการอัพโหลดวิดีโอต่อวันแล้ว (วิดีโอมากเกินไป)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "บัญชีของคุณ" @@ -9735,7 +10508,7 @@ msgstr "บัญชีของคุณถูกลบแล้ว" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "บัญชีของคุณยังมีอายุไม่มากพอที่จะอัพโหลดวิดีโอ กรุณาลองใหม่อีกครั้งในภายหลัง" @@ -9751,11 +10524,11 @@ msgstr "" msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "วันเกิดของคุณ" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "เบราว์เซอร์ของคุณไม่รองรับรูปแบบวิดีโอนี้ กรุณาลองใช้เบราว์เซอร์อื่น" @@ -9771,13 +10544,15 @@ msgstr "" msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "อีเมลของคุณดูเหมือนจะไม่ถูกต้อง" @@ -9786,15 +10561,11 @@ msgstr "อีเมลของคุณดูเหมือนจะไม่ msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "อีเมลของคุณยังไม่ได้รับการยืนยัน นี่เป็นขั้นตอนด้านความปลอดภัยที่สำคัญซึ่งเราแนะนำ" - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "ไลค์แรกของคุณ!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "" @@ -9806,19 +10577,15 @@ msgstr "ฟีดผู้ติดตามของคุณว่างเป msgid "Your full handle will be <0>@{0}" msgstr "ชื่อผู้ใช้เต็มของคุณจะเป็น <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "" @@ -9835,15 +10602,15 @@ msgstr "คำที่คุณปิดเสียง" msgid "Your password has been changed successfully!" msgstr "รหัสผ่านของคุณถูกเปลี่ยนเรียบร้อยแล้ว!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "โพสต์ของคุณได้รับการเผยแพร่แล้ว" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "" @@ -9851,15 +10618,19 @@ msgstr "" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "โพสต์ การถูกใจ และการบล็อกของคุณเป็นแบบสาธารณะ การปิดเสียงเป็นเรื่องส่วนตัว" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "โปรไฟล์ โพสต์ ฟีด และลิสต์ของคุณจะไม่ปรากฏให้ผู้ใช้ Bluesky คนอื่นเห็นอีกต่อไป คุณสามารถเปิดใช้งานบัญชีของคุณอีกครั้งได้ตลอดเวลาโดยการเข้าสู่ระบบ" -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "การตอบกลับของคุณได้รับการเผยแพร่แล้ว" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -9867,7 +10638,7 @@ msgstr "" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "รายงานของคุณจะถูกส่งไปยัง Bluesky Moderation Service" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "" diff --git a/src/locale/locales/tr/messages.po b/src/locale/locales/tr/messages.po index f562259c82..1a530c286a 100644 --- a/src/locale/locales/tr/messages.po +++ b/src/locale/locales/tr/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: tr\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:41\n" +"PO-Revision-Date: 2025-08-12 01:46\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -27,17 +27,17 @@ msgstr "(etkin)" msgid "(contains embedded content)" msgstr "(gömülü içerik içeriyor)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(e-posta yok)" #: src/lib/hooks/useTimeAgo.ts:169 msgid "{0, plural, one {# day} other {# days}}" -msgstr "{0, plural, one {# gün} other {# gün}}" +msgstr "{0, plural, other {# gün}}" #: src/screens/Profile/ProfileFollowers.tsx:40 msgid "{0, plural, one {# follower} other {# followers}}" -msgstr "{0, plural, one {takipçi} other {takipçi}}" +msgstr "{0, plural, other {# takipçi}}" #: src/screens/Profile/ProfileFollows.tsx:40 msgid "{0, plural, one {# following} other {# following}}" @@ -45,7 +45,7 @@ msgstr "{0, plural, other {# takip edilen}}" #: src/lib/hooks/useTimeAgo.ts:159 msgid "{0, plural, one {# hour} other {# hours}}" -msgstr "{0, plural, one {# saat} other {# saat}}" +msgstr "{0, plural, other {# saat}}" #: src/components/moderation/LabelsOnMe.tsx:53 msgid "{0, plural, one {# label has} other {# labels have}} been placed on this account" @@ -73,15 +73,15 @@ msgstr "{0, plural, other {# alıntı}}" #: src/screens/Post/PostRepostedBy.tsx:41 msgid "{0, plural, one {# repost} other {# reposts}}" -msgstr "{0, plural, one {# yeniden gönderi} other {# yeniden gönderi}}" +msgstr "{0, plural, other {# yeniden gönderi}}" #: src/lib/hooks/useTimeAgo.ts:139 msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, other {# saniye}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, other {# okunmamış öğe}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, other {# okunmamış öğe}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, other {#a}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, other {takipçi}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, other {takip edilen}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, other {beğeni}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, other {beğeni}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, other {gönderi}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, other {alıntı}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, other {yeniden gönderi}}" @@ -135,6 +138,10 @@ msgstr "{0} <0><1>etiketlerde" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0><1>metin ve etiketlerde" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} takip edilen" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "{0} canlı yayında" @@ -143,11 +150,15 @@ msgstr "{0} canlı yayında" msgid "{0} is not a valid URL" msgstr "{0} geçerli bir URL değil" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "{0} kullanılamaz" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} bu hafta katıldı" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0}/{1}" @@ -164,10 +175,18 @@ msgstr "{0} şu tepkiyi verdi: {1}" msgid "{0} reacted {1} to {2}" msgstr "{0} şuna {1} tepkisi verdi: {2}" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0} bir {1} akışı, {2} tarafından beğenilmiş" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0}, bir {1} listesi" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" -msgstr "{0}'ın avatarı" +msgstr "{0} kullanıcısının avatarı" #: src/screens/StarterPack/Wizard/StepDetails.tsx:74 msgid "{0}'s favorite feeds and people - join me!" @@ -197,181 +216,180 @@ msgstr "{0}dk" msgid "{0}s" msgstr "{0}sn" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, other {# okunmamış öğe}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "{displayName} kullanıcısının Başlangıç Paketi" #: src/screens/SignupQueued.tsx:216 msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" -msgstr "{estimatedTimeHrs, plural, one {saat} other {saat}}" +msgstr "{estimatedTimeHrs, plural, other {saat}}" #: src/screens/SignupQueued.tsx:222 msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" -msgstr "{estimatedTimeMins, plural, one {dakika} other {dakika}}" +msgstr "{estimatedTimeMins, plural, other {dakika}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} ve <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} sizi takip etti" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} ve <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} özelleştirilmiş akışınızı beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} ve <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} gönderinizi beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" +msgstr "{firstAuthorLink} ve <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} yeniden gönderinizi beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} ve <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} doğrulamalarını hesabınızdan kaldırdı" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} ve <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} gönderinizi yeniden gönderdi" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "{firstAuthorLink} ve <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} yeniden gönderinizi yeniden gönderdi" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} ve <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} başlangıç paketinizle kaydoldu" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} ve <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} sizi doğruladı" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} sizi takip etti" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} sizi geri takip etti" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} özelleştirilmiş akışınızı beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} gönderini beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" -msgstr "" +msgstr "{firstAuthorLink} yeniden gönderinizi beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} doğrulamasını hesabınızdan kaldırdı" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} gönderini yeniden gönderdi" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" -msgstr "" +msgstr "{firstAuthorLink} yeniden gönderinizi yeniden gönderdi" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} sizin başlangıç paketinizle kaydoldu" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} sizi doğruladı" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} ve {additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} sizi takip etti" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} ve {additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} sizi takip etti" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} ve {additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} gönderinizi beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" +msgstr "{firstAuthorName} ve {additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} yeniden gönderinizi beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} ve {additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} doğrulamalarını hesabınızdan kaldırdı" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} ve {additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} gönderinizi yeniden gönderdi" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "{firstAuthorName} ve {additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} yeniden gönderinizi yeniden gönderdi" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} ve {additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} başlangıç paketinizle kaydoldu" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} ve {additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} sizi doğruladı" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} sizi takip etti" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} sizi geri takip etti" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} özelleştirdiğiniz akışınızı beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} gönderini beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" -msgstr "" +msgstr "{firstAuthorName} yeniden gönderinizi beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} doğrulamalarını hesabınızdan kaldırdı" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} gönderini yeniden gönderdi" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" -msgstr "" +msgstr "{firstAuthorName} yeniden gönderinizi yeniden gönderdi" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} sizin başlangıç paketinizle kaydoldu" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} sizi doğruladı" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} takip ediliyor" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "{handle} kullanıcısına mesaj gönderilemez" @@ -392,7 +410,7 @@ msgstr "{joinedAllTimeCount, plural, other {# kullanıcı}} katıldı!" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "{minutes, plural, other {# dakika}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, other {# okunmamış öğe}}" @@ -432,12 +450,12 @@ msgstr "{userName} kullanıcısının doğrulamaları" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} ve {2, plural, other {# kişi daha}} başlangıç paketinizde yer alıyor" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} ve {2, plural, other {# kişi daha}} başlangıç paketinizde yer alıyor" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, other {takipçi}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, other {takip edilen}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} ve <1><2>{1} başlangıç paketinizde yer alıyor" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} başlangıç paketinizde yer alıyor" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} üyeleri" @@ -466,11 +484,11 @@ msgstr "<0>{0} üyeleri" msgid "<0>{date} at {time}" msgstr "<0>{date} {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Deneysel: Bu tercih seçildiğinde sadece takip ettiğiniz kullanıcılardan yanıt ve alıntı bildirimleri alırsınız. Zamanla buraya daha çok kontrol ekleyeceğiz." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<4>Bluesky'da haber, spor, siyaset ve diğer olan biteni aramak için<3> <0>giriş yapın<1> veya <2>bir hesap oluşturun." -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Siz ve <1><2>{0} başlangıç paketinizde yer alıyorsunuz" @@ -503,10 +521,14 @@ msgstr "bir mesaj" msgid "A new form of verification" msgstr "Yeni bir doğrulama biçimi" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "Takip et butonunun yanında bir zil simgesi bulunan bir profil sayfasının ekran görüntüsü; bu, yeni etkinlik bildirimleri özelliğini göstermektedir." + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Hakkında" @@ -524,25 +546,25 @@ msgstr "Sohbet isteğini kabul et" msgid "Accept Request" msgstr "İsteği kabul et" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Erişilebilirlik" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Erişilebilirlik Ayarları" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Hesap" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Hesap takip edildi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Hesap Susturuldu" msgid "Account Muted by List" msgstr "Liste Tarafından Hesap Susturuldu" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Hesap seçenekleri" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Hesap hızlı erişimden kaldırıldı" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Hesap takibi bırakıldı" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Hesap susturulması kaldırıldı" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Çıkıntılı onay tikine sahip hesaplar <0><1/> başka hesapları doğrulayabilir. Bu güvenilir doğrulayıcılar Bluesky tarafından seçilir." +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "Başkalarının etkinlikleri" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "Etkinlik bildirimleri" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Ekle" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Devam etmek için {0} tane daha ekleyin" @@ -619,9 +651,7 @@ msgstr "Bir içerik uyarısı ekleyin" #: src/components/live/GoLiveDialog.tsx:101 msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event." -msgstr "" -"Profilinize geçici bir canlı yayın durumu ekleyin.\n" -"Biri profil fotoğrafınıza tıkladığında canlı yayın etkinliğinizle ilgili bilgileri görecektir." +msgstr "Profilinize geçici bir canlı yayın durumu ekleyin. Biri profil fotoğrafınıza tıkladığında canlı yayın etkinliğinizle ilgili bilgileri görecektir." #: src/view/screens/ProfileList.tsx:924 #: src/view/screens/ProfileList.tsx:942 @@ -636,8 +666,8 @@ msgstr "Hesap ekle" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -647,14 +677,14 @@ msgstr "Alternatif metin ekle" msgid "Add alt text (optional)" msgstr "Alternatif metin ekle (isteğe bağlı)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Başka hesap ekle" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Başka gönderi ekle" @@ -672,8 +702,8 @@ msgstr "Uygulama Şifresi Ekle" msgid "Add emoji reaction" msgstr "Emoji tepkisi ekle" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Daha fazla detay ekle (opsiyonel)" @@ -685,7 +715,7 @@ msgstr "Seçilen ayarlarla sessize alınacak kelimeyi ekle" msgid "Add muted words and tags" msgstr "Sessize alınacak kelimeler ve etiketler ekle" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Yeni gönderi ekle" @@ -706,7 +736,7 @@ msgstr "Tepki Ekle" msgid "Add recommended feeds" msgstr "Önerilen akışları ekle" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Başlangıç paketinize birkaç akış ekleyin!" @@ -727,10 +757,6 @@ msgstr "Akışlarınıza bu akışı ekleyin" msgid "Add to lists" msgstr "Listelere ekle" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Akışlarıma ekle" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "Kullanıcıyı listeye ekle" @@ -740,11 +766,11 @@ msgstr "Kullanıcıyı listeye ekle" msgid "Added to list" msgstr "Listeye eklendi" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Akışlarıma eklendi" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "Ek ayrıntılar (1000 karakterle sınırlı)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Ek ayrıntılar (300 karakterle sınırlıdır)" @@ -752,18 +778,18 @@ msgstr "Ek ayrıntılar (300 karakterle sınırlıdır)" msgid "Adult" msgstr "Yetişkin" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Yetişkin İçerik" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Yetişkin içerik yalnızca Web üzerinden <0>bsky.app etkinleştirilebilir." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Yetişkin içerik devre dışı bırakıldı." @@ -772,16 +798,32 @@ msgstr "Yetişkin içerik devre dışı bırakıldı." msgid "Adult Content labels" msgstr "Yetişkin İçerik işaretleri" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Gelişmiş" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "Yaş Güvencesi" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "Yaş güvencesi sorgusu gönderilemedi, lütfen tekrar deneyin." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "Yaş güvencesi sorgusu yollandı" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "Yaş güvencesi sadece birkaç dakika alacaktır" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "ayse@ornek.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Hepsi" @@ -795,7 +837,7 @@ msgstr "Tüm hesaplar takip edildi!" msgid "All languages" msgstr "Tüm Diller" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Kaydettiğiniz akışların tümü bir yerde." @@ -804,16 +846,21 @@ msgstr "Kaydettiğiniz akışların tümü bir yerde." msgid "Allow access to your direct messages" msgstr "Doğrudan mesajlarınıza erişime izin verin" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Yeni mesajlara izin ver" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "Başkalarına gönderilerinizden bildirim alma izni verin" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Alıntılara izin ver" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Yeni yanıtlara izin ver:" @@ -830,13 +877,13 @@ msgstr "Zaten bir kodunuz mu var?" msgid "Already signed in as @{0}" msgstr "Zaten @{0} olarak oturum açıldı" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -846,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "Alternatif metin" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Alternatif Metin" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Alternatif metin, görme engelli ve düşük görme yeteneğine sahip kullanıcılar için resimleri tanımlar ve herkes için bağlam sağlamaya yardımcı olur." @@ -863,27 +910,19 @@ msgstr "Alt metin kırpılacaktır. {MAX_ALT_TEXT, plural, other {Sınır: {0} k msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "{0} adresine bir e-posta gönderildi. Aşağıda girebileceğiniz bir onay kodu içerir." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "Önceki {currentEmail} adresinize bir e-posta gönderildi. İçinde aşağıya girebileceğiniz bir onay kodu bulunmaktadır." - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "E-posta gönderildi! Lütfen e-postanızda yer alan onay kodunu girin." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Bir hata oluştu" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Bir hata oluştu" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Video sıkıştırılırken bir hata oluştu." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "Akış getirilirken bir hata oluştu." @@ -891,11 +930,11 @@ msgstr "Akış getirilirken bir hata oluştu." msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Başlangıç paketiniz oluşturulurken bir hata oluştu. Yeniden denemek ister misiniz?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Video yüklenirken bir hata oluştu. Lütfen daha sonra tekrar deneyin." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Video yüklenirken bir hata oluştu. Lütfen tekrar deneyin." @@ -912,7 +951,7 @@ msgstr "Video seçilirken bir hata oluştu" msgid "An error occurred while trying to follow all" msgstr "Tümü takip edilmeye çalışılırken bir hata oluştu" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Video yüklenirken bir hata oluştu." @@ -936,8 +975,8 @@ msgstr "Sohbeti açmaya çalışırken bir sorun oluştu" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -956,7 +995,7 @@ msgstr "bilinmeyen bir hata oluştu" msgid "an unknown labeler" msgstr "bilinmeyen bir işaretleyici" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "ve" @@ -965,10 +1004,14 @@ msgstr "ve" msgid "Animals" msgstr "Hayvanlar" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "Animasyonlu GIF" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "Duyuru" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "Bluesky'da doğrulamayı duyurma" @@ -982,7 +1025,13 @@ msgstr "Anti-Sosyal Davranış" msgid "Anybody can interact" msgstr "Herkes etkileşime geçebilir" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "Beni takip eden herkes" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1014,12 +1063,12 @@ msgstr "Uygulama şifresi isimleri sadece harf, rakam, boşluk, tire ve alt çiz msgid "App password names must be at least 4 characters long" msgstr "Uygulama şifresi isimleri en az 4 karakter uzunluğunda olmalıdır" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Uygulama şifreleri" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Uygulama Şifreleri" @@ -1055,10 +1104,10 @@ msgstr "Askıya Alınmaya İtiraz Et" msgid "Appeal this decision" msgstr "Bu karara itiraz et" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Görünüm" @@ -1067,12 +1116,20 @@ msgstr "Görünüm" msgid "Apply default recommended feeds" msgstr "Önerilen öntanımlı akışları uygula" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "Pull Request'i uygula" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "{0} kaynağından arşivlendi" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Arşivlenmiş gönderi" @@ -1080,7 +1137,7 @@ msgstr "Arşivlenmiş gönderi" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "\"{0}\" uygulama şifresini silmek istediğinizden emin misiniz?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Bu mesajı silmek istediğinize emin misiniz? Mesajınız sizin için silinecektir, ancak diğer katılımcı için silinmeyecektir." @@ -1094,25 +1151,21 @@ msgstr "Değişiklikleri iptal etmek istediğinizden emin misiniz?" #: src/components/dms/LeaveConvoPrompt.tsx:46 msgid "Are you sure you want to leave this conversation?" -msgstr "Bu sohbeti terk etmek istediğinizden emin misiniz?" +msgstr "Bu yazışmayı terk etmek istediğinizden emin misiniz?" #: src/components/dms/LeaveConvoPrompt.tsx:45 msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Bu görüşmeden ayrılmak istediğinize emin misiniz? Mesajlarınız sizin için silinecektir, ancak diğer katılımcı için silinmeyecektir." - -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "{0} akışını akışlarınızdan çıkarmak istediğinizden emin misiniz?" +msgstr "Bu yazışmadan ayrılmak istediğinize emin misiniz? Mesajlarınız sizin için silinecek, ancak diğer katılımcı için silinmeyecektir." #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Bunu akışlarınızdan çıkarmak istediğinize emin misiniz?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Bu taslağı silmek istediğinizden emin misiniz?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Bu taslağı silmek istediğinizden emin misiniz?" @@ -1133,29 +1186,26 @@ msgstr "Sanat" msgid "Artistic or non-erotic nudity." msgstr "Sanatsal veya erotik olmayan çıplaklık." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "Algoritmaya başlık ata" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "En az 3 karakter" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Kuzey Işıkları" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Otomatik oynatma seçenekleri <0>İçerik ve medya ayarları bölümüne taşındı." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Videoları ve GIFleri otomatik oynat" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "Kullanılabilir" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1165,17 +1215,17 @@ msgstr "Videoları ve GIFleri otomatik oynat" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Geri" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Sohbetlere Geri Dön" @@ -1197,28 +1247,44 @@ msgstr "Bir başlangıç ​​paketi oluşturmadan önce e-posta adresinizi do msgid "Before you can accept this chat request, you must first verify your email." msgstr "Bu sohbet isteğini kabul edebilmeniz için öncelikle e-postanızı doğrulamanız gerekmektedir." +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "{name} kullanıcısının gönderilerinden bildirim alabilmeniz için öncelikle e-posta adresinizi doğrulamanız gerekiyor." + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "Başka bir kullanıcıya mesaj atabilmeniz için öncelikle e-postanızı doğrulamanız gerekmektedir." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "Başla" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "Yaş güvencesi işlemine başla" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "Aşağıdaki alanları doldurarak yaş güvencesi işlemine başlayın." + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Doğum günü" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Engelle" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1226,7 +1292,7 @@ msgstr "Engelle" msgid "Block account" msgstr "Hesabı engelle" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Hesabı Engelle?" @@ -1264,20 +1330,20 @@ msgstr "Kullanıcıyı engelle" msgid "Block User" msgstr "Kullanıcıyı Engelle" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Engellendi" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Engellenen hesaplar" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Engellenen Hesaplar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Engellenen hesaplar, konularınıza yanıt veremez, sizi bahsedemez veya başka şekilde sizinle etkileşime giremez." @@ -1286,11 +1352,11 @@ msgstr "Engellenen hesaplar, konularınıza yanıt veremez, sizi bahsedemez veya msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Engellenen hesaplar, konularınıza yanıt veremez, sizi bahsedemez veya başka şekilde sizinle etkileşime giremez. Onların içeriğini görmeyeceksiniz ve onlar da sizinkini görmekten alıkonulacaklar." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Engellenen gönderi." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Engellemeniz bu işaretleyicinin hesabınıza işaret koymasına engel olmayacaktır." @@ -1311,11 +1377,12 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky iddia edilen tarihin doğruluğunu onaylayamaz." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Klasik™" @@ -1335,7 +1402,7 @@ msgstr "Bluesky arkadaşlarla daha güzel!" #: src/screens/Takendown.tsx:217 msgid "Bluesky Social Terms of Service" -msgstr "Bluesky Social Kullanım Koşulları" +msgstr "Bluesky Social Hizmet Şartları" #: src/components/StarterPack/ProfileStarterPacks.tsx:310 msgid "Bluesky will choose a set of recommended accounts from people in your network." @@ -1349,6 +1416,14 @@ msgstr "Bluesky, profilinizi ve gönderilerinizi oturum açmamış kullanıcıla msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky, kayda değer ve gerçek hesapları inisiyatif alarak doğrulayacaktır." +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "Bluesky'ın Topluluk Kuralları" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "Bluesky'ın Güncel Topluluk Kuralları" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1370,23 +1445,20 @@ msgstr "Akışlardaki görüntüleri bulanıklaştır ve filtrele" msgid "Books" msgstr "Kitaplar" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Keşfet sayfasında daha fazla kullanıcı bul" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Keşfet sayfasında daha fazla akış bul" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Daha çok öneriye göz at" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Keşfet sayfasında daha çok öneriye göz at" @@ -1420,9 +1492,9 @@ msgid "Business" msgstr "İş" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "{0} tarafından" @@ -1430,15 +1502,23 @@ msgstr "{0} tarafından" msgid "By <0>{0}" msgstr "<0>{0} tarafından geliştiriliyor" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "\"Devam et\"e tıklayarak bu güncellemeleri anladığınızı ve kabul ettiğinizi onaylamış olursunuz." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "Devam etmek suretiyle <0>KWS Kullanım Şartları'nı kabul etmiş ve KWS'in <1>KWS Gizlilik Politikası usulünce doğrulanma statünüzü özütlenmiş e-posta adresinizle saklamasını kabul etmiş olursunuz. Bu, KWS teknolojisi tarafından bu e-posta adresinizi başka uygulamalar, oyunlar ve hizmetlerle kullanacağınız zaman tekrar doğrulama yapmanıza gerek olmayacağı anlamına gelir." + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Bir hesap oluşturarak <0>Gizlilik Politikası'nı kabul etmiş sayılırsınız." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Bir hesap oluşturarak <0>Hizmet Şartları'nı ve <1>Gizlilik Politikası'nı kabul etmiş sayılırsınız." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Bir hesap oluşturarak <0>Hizmet Şartları'nı kabul etmiş sayılırsınız." @@ -1450,14 +1530,17 @@ msgstr "Size ait" msgid "Camera" msgstr "Kamera" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1468,21 +1551,18 @@ msgstr "Kamera" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "İptal" @@ -1502,11 +1582,7 @@ msgstr "Hesap silmeyi iptal et" msgid "Cancel image crop" msgstr "Resim kırpma işlemini iptal et" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Profil düzenlemeyi iptal et" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Alıntı gönderiyi iptal et" @@ -1518,14 +1594,10 @@ msgstr "Yeniden etkinleştirmeyi iptal et ve çıkış yap" msgid "Cancel search" msgstr "Aramayı iptal et" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Web site bağlantısının açılmasını iptal eder" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Engellenen kullanıcıya etkileşime geçilemez" @@ -1555,17 +1627,12 @@ msgstr "Uygulama simgesini \"{0}\" olarak değiştir" msgid "Change app language" msgstr "Uygulama dilini değiştir" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "E-posta adresini değiştir" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Kullanıcı Adını Değiştir" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Moderasyon hizmetini değiştir" @@ -1581,14 +1648,6 @@ msgstr "Gönderi dilini {suggestedLanguageName} olarak değiştir" msgid "Change report reason" msgstr "Rapor gerekçesini değiştir" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "E-postanızı Değiştirin" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "E-posta adresinizi değiştirin" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Uygulama simgesini değiştirir" @@ -1598,10 +1657,15 @@ msgstr "Uygulama simgesini değiştirir" msgid "Changes hosting provider" msgstr "Yer sağlayıcıyı değiştirir" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "Değişiklikler kaydedildi" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Mesajlar" @@ -1611,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Sohbet silindi" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "Sohbet mesajları - sessiz" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "Sohbet mesajları - sesli" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Sohbet sessize alındı" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "Sohbet istekleri gelen kutusu" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Sohbet istekleri" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Mesajlaşma ayarları" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Mesajlaşma Ayarları" @@ -1641,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Sohbet sessizden çıkarıldı" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Sohbetler" @@ -1663,7 +1738,7 @@ msgstr "Aşağıya gireceğiniz onay kodu içeren bir e-posta için gelen kutunu msgid "Choose domain verification method" msgstr "Alan adı doğrulama yöntemini seçin" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Akışları Seçin" @@ -1671,7 +1746,7 @@ msgstr "Akışları Seçin" msgid "Choose for me" msgstr "Benim için seç" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Kişileri Seç" @@ -1687,23 +1762,23 @@ msgstr "Bu rengi avatar olarak seç" msgid "Choose your account provider" msgstr "Hesap sağlayıcınızı seçin" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Kendi zaman akışınızı seçin! Topluluk tarafından oluşturulan akışlar sevdiğiniz içeriği bulmanıza yardımcı olur." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Şifrenizi seçin" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Kullanıcı adınız" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Tüm depolama verilerini temizle" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Tüm depolama verilerini temizle (bundan sonra yeniden başlat)" @@ -1716,23 +1791,27 @@ msgstr "Görsel önbelleğini temizle" msgid "Clear search query" msgstr "Arama sorgusunu temizle" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "Bilgi için tıklayın" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "buraya tıklayın" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "Doğrulama işlemini yeniden başlatmak için buraya tıklayın." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "E-postanızı güncellemek için buraya tıklayın" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Bu gönderinin alıntılanmasını engellemek için tıklayın." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Bu gönderinin alıntılanmasına izin vermek için tıklayın." @@ -1752,14 +1831,16 @@ msgstr "İklim" msgid "Clip 🐴 clop 🐴" msgstr "Klip 🐴 klop 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1767,14 +1848,18 @@ msgstr "Klip 🐴 klop 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Kapat" @@ -1791,13 +1876,15 @@ msgstr "Uyarıyı kapat" msgid "Close bottom drawer" msgstr "Alt çekmeceyi kapat" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Diyalogu kapat" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Çekmece menüyü kapat" @@ -1806,7 +1893,7 @@ msgstr "Çekmece menüyü kapat" msgid "Close emoji picker" msgstr "Emoji seçiciyi kapat" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "GIF diyalogunu kapat" @@ -1824,7 +1911,7 @@ msgstr "Resim görüntüleyiciyi kapat" msgid "Close menu" msgstr "Menüyü kapat" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Bu diyalogu kapat" @@ -1832,7 +1919,7 @@ msgstr "Bu diyalogu kapat" msgid "Closes password update alert" msgstr "Şifre güncelleme uyarısını kapatır" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "Gönderi düzenleyiciyi kapatır ve gönderi taslağını siler" @@ -1845,16 +1932,16 @@ msgstr "Emoji seçicisini kapatır" msgid "Closes viewer for header image" msgstr "Başlık resmi görüntüleyicisini kapatır" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Kullanıcı listesini daralt" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Belirli bir bildirim için kullanıcı listesini daraltır" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Renk modu" @@ -1872,7 +1959,8 @@ msgstr "Komedi" msgid "Comics" msgstr "Çizgi romanlar" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Topluluk Kuralları" @@ -1881,38 +1969,34 @@ msgstr "Topluluk Kuralları" msgid "Complete onboarding and start using your account" msgstr "Onboarding'i tamamlayın ve hesabınızı kullanmaya başlayın" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Meydan okumayı tamamlayın" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Yeni gönderi oluştur" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "{0, plural, other {# karakter}} uzunluğuna kadar gönderiler oluşturun" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Yanıt oluştur" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Video sıkıştırılıyor..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "{name} kategorisi için içerik filtreleme ayarını düzenleyin" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "<0>Moderasyon ayarlarında düzenleniyor." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1928,18 +2012,15 @@ msgstr "İçerik dil ayarlarını onayla" msgid "Confirm delete account" msgstr "Hesabı silmeyi onayla" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Yaşını doğrula:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Doğum tarihini doğrula" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1948,30 +2029,39 @@ msgstr "Doğum tarihini doğrula" msgid "Confirmation code" msgstr "Onay kodu" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Onay Kodu" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Bağlanıyor..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "Bağlantı sorunu" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "Denetim ekibimize ulaşın" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Destek ile iletişime geçin" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "Bize ulaşın" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "İçerik ve Medya" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "İçerik ve medya" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "İçerik ve Medya" @@ -1979,7 +2069,8 @@ msgstr "İçerik ve Medya" msgid "Content Blocked" msgstr "İçerik Engellendi" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "İçerik filtreleri" @@ -2008,10 +2099,12 @@ msgstr "İçerik Uyarısı" msgid "Content warnings" msgstr "İçerik uyarıları" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Bağlam menüsü arkaplanı, menüyü kapatmak için tıklayın." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2021,6 +2114,11 @@ msgstr "Devam et" msgid "Continue as {0} (currently signed in)" msgstr "{0} olarak devam et (giriş yapılmış)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "Konuya devam et" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Konuya devam et..." @@ -2031,6 +2129,10 @@ msgstr "Konuya devam et..." msgid "Continue to next step" msgstr "Sonraki adıma devam et" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "Yazışma" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2039,7 +2141,7 @@ msgstr "Yazışma silindi" #: src/screens/Messages/components/ChatListItem.tsx:196 msgid "Conversation deleted" -msgstr "Görüşme silindi" +msgstr "Yazışma silindi" #: src/screens/Onboarding/index.tsx:41 msgid "Cooking" @@ -2053,10 +2155,10 @@ msgstr "Kopyalandı" msgid "Copied build version to clipboard" msgstr "Sürüm numarası panoya kopyalandı" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2076,10 +2178,6 @@ msgstr "Geliştirme sürümünü panoya kopyalar" msgid "Copy" msgstr "Kopyala" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "Yine de kopyala" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Uygulama Şifresini Kopyala" @@ -2089,8 +2187,8 @@ msgstr "Uygulama Şifresini Kopyala" msgid "Copy at:// URI" msgstr "Bu at:// URI'sini kopyala" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Yazar DID'ini kopyala" @@ -2122,10 +2220,10 @@ msgstr "Bağlantıyı Kopyala" msgid "Copy link to list" msgstr "Liste bağlantısını kopyala" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Gönderi bağlantısını kopyala" @@ -2138,18 +2236,18 @@ msgstr "Profil bağlantısını kopyala" msgid "Copy link to starter pack" msgstr "Başlangıç paketi bağlantısını kopyala" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Mesajı kopyala" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Gönderinin at:// URI'sini kopyala" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Gönderi metnini kopyala" @@ -2161,11 +2259,25 @@ msgstr "QR kodu kopyala" msgid "Copy TXT record value" msgstr "TXT kayıt değerini kopyala" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Telif Hakkı Politikası" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "Özelleştirilmiş akışa bağlanılamadı" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "Akış hizmetine bağlanılamadı" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "Profil bulunamadı" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2187,6 +2299,14 @@ msgstr "Sohbet sessize alınamadı" msgid "Could not process your video" msgstr "Videonuz işlenemedi" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "Değişiklikler kaydedilemedi: {0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "Bildirim ayarları güncellenemedi" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Oluştur" @@ -2197,7 +2317,7 @@ msgstr "Başlangıç paketi için QR kod oluşturun" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Bir başlangıç paketi oluştur" @@ -2207,21 +2327,22 @@ msgstr "Benim için bir başlangıç paketi oluştur" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Kaydol" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Hesap Oluştur" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Bir hesap oluştur" @@ -2243,7 +2364,7 @@ msgstr "Bir tane daha oluştur" msgid "Create new account" msgstr "Yeni hesap oluştur" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "{0} için rapor oluştur" @@ -2270,7 +2391,7 @@ msgstr "Özel" msgid "Customization options" msgstr "Özelleştirme seçenekleri" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Bu gönderiyle kimin etkileşime geçebileceğini özelleştirin." @@ -2280,12 +2401,12 @@ msgstr "Bluesky deneyiminizi özelleştirir" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Karanlık" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Karanlık" @@ -2294,21 +2415,21 @@ msgstr "Karanlık" msgid "Dark mode" msgstr "Karanlık mod" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Karanlık tema" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Doğum tarihi" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Hesabı devre dışı bırak" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Moderasyon Hata Ayıklama" @@ -2316,7 +2437,7 @@ msgstr "Moderasyon Hata Ayıklama" msgid "Debug panel" msgstr "Hata ayıklama paneli" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Varsayılan" @@ -2324,8 +2445,8 @@ msgstr "Varsayılan" msgid "Default icons" msgstr "Varsayılan simgeler" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2335,8 +2456,8 @@ msgstr "Varsayılan simgeler" msgid "Delete" msgstr "Sil" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Hesabı sil" @@ -2357,7 +2478,7 @@ msgstr "Uygulama şifresi silinsin mi?" msgid "Delete chat" msgstr "Sohbeti sil" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Sohbet beyan kaydını sil" @@ -2372,7 +2493,7 @@ msgstr "Yazışmayı sil" msgid "Delete Conversation" msgstr "Yazışmayı Sil" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Benim için sil" @@ -2380,11 +2501,11 @@ msgstr "Benim için sil" msgid "Delete list" msgstr "Listeyi sil" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Mesajı sil" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Mesajı benim için sil" @@ -2392,9 +2513,9 @@ msgstr "Mesajı benim için sil" msgid "Delete my account" msgstr "Hesabımı sil" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Gönderiyi sil" @@ -2411,11 +2532,11 @@ msgstr "Başlangıç paketi silinsin mi?" msgid "Delete this list?" msgstr "Liste silinsin mi?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Bu gönderiyi sil?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Silindi" @@ -2424,15 +2545,20 @@ msgstr "Silindi" msgid "Deleted Account" msgstr "Silinen Hesap" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "Silinmiş liste" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Silinen gönderi." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Açıklama" @@ -2449,12 +2575,12 @@ msgstr "Açıklama çok uzun. {DESCRIPTION_MAX_GRAPHEMES, plural,other {En fazla msgid "Descriptive alt text" msgstr "Açıklayıcı alt metin" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Alıntının ilişiğini kes" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Alıntı gönderinin ilişiği kesilsin mi?" @@ -2468,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Geliştirici modu devreye alındı" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Geliştirici seçenekleri" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Diyalog: kimin bu gönderiyle etkileşebileceğini ayarlayın" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Karart" @@ -2494,27 +2620,27 @@ msgstr "E-posta iki adımlı doğrulamasını devre dışı bırak" msgid "Disable Email 2FA" msgstr "E-posta ile iki adımlı doğrulamayı devre dışı bırak" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Dokunsal geri bildirimi devre dışı bırak" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Altyazıları devre dışı bırak" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Devre dışı" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Sil" @@ -2522,11 +2648,11 @@ msgstr "Sil" msgid "Discard changes?" msgstr "Değişiklikler silinsin mi?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Taslak silinsin mi?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Gönderi silinsin mi?" @@ -2544,7 +2670,7 @@ msgstr "Akışları Keşfet" msgid "Discover new custom feeds" msgstr "Yeni özel akışları keşfet" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Yeni Akışlar Keşfet" @@ -2552,7 +2678,7 @@ msgstr "Yeni Akışlar Keşfet" msgid "Dismiss" msgstr "Yok say" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Hatayı yok say" @@ -2564,26 +2690,26 @@ msgstr "Başlangıç rehberini gizle" msgid "Dismiss interests" msgstr "İlgi alanlarını gizle" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "Mesajı kaldır" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Bu bölümü gizle" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Alternatif metin rozetlerini daha büyük görüntüle" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Görünen ad" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Görünen Ad" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Görünen ad çok uzun" @@ -2605,15 +2731,11 @@ msgstr "Sessize alınan bu kelimeyi takip ettiğim kullanıcılara uygulama" msgid "Does not include nudity." msgstr "Çıplaklık içermiyor." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Kısa çizgi ile başlayamaz veya bitemez" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Alan adı doğrulandı!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Kodunuz yok mu ya da yeni bir tane mi lazım? <0>Buraya tıklayın." @@ -2621,6 +2743,15 @@ msgstr "Kodunuz yok mu ya da yeni bir tane mi lazım? <0>Buraya tıklayın." msgid "Don't see an email? <0>Click here to resend." msgstr "E-posta gelmedi mi? <0>Yeniden yollamak için buraya tıklayın." +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "Bunu tekrar gösterme" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "Merak etmeyin! Tüm mesajlarınız ve ayarlarınız saklandı ve bir yetişkin olduğunuzu teyit ettikten sonra erişilebilir olacaklar." + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2662,7 +2793,7 @@ msgstr "Bir tepki eklemek için mesaja çift dokunun ya da uzun basın" msgid "Double tap to close the dialog" msgstr "Bu diyalogu kapatmak için çift dokunun" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Beğenmek için çift dokunun" @@ -2675,7 +2806,7 @@ msgstr "Bluesky'ı İndir" msgid "Download CAR file" msgstr "CAR dosyasını indir" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Resim eklemek için bırakın" @@ -2691,18 +2822,10 @@ msgstr "örn: alice" msgid "e.g. Alice Lastname" msgstr "örn: Alice Lastname" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "örn: Alice Roberts" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "örn: alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "örn: Sanatçı, köpek sever ve okumayı seven." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Örn: sanatsal çıplaklık." @@ -2727,10 +2850,11 @@ msgstr "örn: Reklamlarla tekrar tekrar yanıt veren kullanıcılar." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Her kod bir kez çalışır. Düzenli aralıklarla daha fazla davet kodu alacaksınız." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Düzenle" @@ -2740,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Düzenle" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Avatarı düzenle" @@ -2751,12 +2875,12 @@ msgstr "Akışları Düzenle" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Resmi düzenle" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Etkileşim ayarlarını düzenle" @@ -2778,33 +2902,33 @@ msgstr "Canlı yayın durumunu düzenle" msgid "Edit Moderation List" msgstr "Düzenleme Listesini Düzenle" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Akışlarımı Düzenle" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Profilimi düzenle" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "{0} kullanıcısından gelen bildirimleri düzenle" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Kişileri Düzenle" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Gönderi etkileşim ayarlarını düzenle" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Profil düzenle" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Profil Düzenle" @@ -2816,19 +2940,11 @@ msgstr "Başlangıç paketini düzenle" msgid "Edit User List" msgstr "Kullanıcı Listesini Düzenle" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Kimin yanıtlayabileceğini düzenle" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Görünen adınızı düzenleyin" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Profil açıklamanızı düzenleyin" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Başlangıç paketini düzenle" @@ -2841,8 +2957,8 @@ msgstr "Eğitim" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "Ya bu listenin oluşturucusu sizi engellemiş ya da siz onu engellemişsiniz." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "E-posta" @@ -2851,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "E-posta ile iki adımlı doğrulama devre dışı" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "E-posta ile iki adımlı doğrulama devrede" @@ -2867,10 +2983,6 @@ msgstr "E-posta Yeniden Yollandı" msgid "Email sent!" msgstr "E-posta gönderildi!" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "E-posta Güncellendi!" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "E-posta doğrulaması tamamlandı!" @@ -2885,8 +2997,8 @@ msgstr "Gömmek için HTML kodu" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Gönderiyi göm" @@ -2894,7 +3006,7 @@ msgstr "Gönderiyi göm" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Bu gönderiyi web sitenize gömün. Aşağıdaki kod parçasını kopyalayın ve web sitenizin HTML kodunun içine yapıştırın." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Gömülü video oynatıcı" @@ -2908,7 +3020,7 @@ msgstr "Etkinleştir" msgid "Enable {0} only" msgstr "Yalnızca {0} etkinleştir" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Yetişkin içeriği etkinleştirin" @@ -2921,16 +3033,20 @@ msgstr "E-posta iki adımlı doğrulamasını etkinleştir" msgid "Enable external media" msgstr "Harici medyayı etkinleştirin" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Medya oynatıcılarını etkinleştir" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Öncelikli bildirimleri etkinleştir" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "Bir hesabın bildirimlerini etkinleştirmek için profilini ziyaret edin ve <0>zil simgesine <1/> basın." -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "Anında bildirimleri etkinleştir" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Altyazıları etkinleştir" @@ -2943,17 +3059,14 @@ msgstr "Yalnızca bu kaynağı etkinleştir" msgid "Enable trending topics" msgstr "Gündem başlıklarını etkinleştir" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Keşif akışında (\"Discover\") gündem videolarını etkinleştir" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Keşif akışında (\"Discover\") gündem videolarını etkinleştir." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Etkinleştirildi" @@ -2965,7 +3078,7 @@ msgstr "Akış sonu" msgid "Ensure you have selected a language for each subtitle file." msgstr "Her altyazı dosyası için bir dil seçtiğinizden emin olun." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Bir şifre girin" @@ -2975,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Bir sözcük veya etiket girin" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "Kodu girin" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Kodu Girin" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Tam ekran yap" @@ -3008,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Doğum tarihinizi girin" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "E-posta adresinizi girin" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Yeni e-posta adresinizi aşağıya girin." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Şifrenizi girin" @@ -3024,7 +3129,7 @@ msgstr "Şifrenizi girin" msgid "Enter your username and password" msgstr "Kullanıcı adınızı ve şifrenizi girin" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Tam ekrana geçer" @@ -3032,16 +3137,28 @@ msgstr "Tam ekrana geçer" msgid "Entertainment" msgstr "Eğlence" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Hata" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "Gönderi yüklenirken bir hata oluştu" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "Tercih yüklenirken hata oluştu" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "Hata mesajı" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Dosya kaydedilirken bir hata oluştu" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Captcha yanıtı alınırken bir hata oldu." @@ -3049,27 +3166,34 @@ msgstr "Captcha yanıtı alınırken bir hata oldu." msgid "Error:" msgstr "Hata:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "Hata: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Herkes" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Herkes yanıtlayabilir" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Bu gönderiyi herkes yanıtlayabilir." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Herkes" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "Geri kalan her şey" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3088,7 +3212,7 @@ msgstr "Takip ettiğim kullanıcıları hariç tut" msgid "Excludes users you follow" msgstr "Takip ettiğiniz kullanıcıları hariç tutar" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Tam ekrandan çık" @@ -3108,24 +3232,28 @@ msgstr "Resim görünümünden çıkar" msgid "Expand alt text" msgstr "Alternatif metni genişlet" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Kullanıcı listesini genişletir" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Yanıt verdiğiniz tam gönderiyi genişletin veya daraltın" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "Gönderi metnini genişlet" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Gönderi metnini genişletir ya da daraltır" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "URI'nin bir kayda çözümlenmesi beklendi" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Deneysel" @@ -3155,15 +3283,15 @@ msgstr "Açık veya rahatsız edici olabilecek medya." msgid "Explicit sexual images." msgstr "Açık cinsel içerikli görseller." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "Keşfet" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Verilerimi dışa aktar" @@ -3182,12 +3310,12 @@ msgid "External Media" msgstr "Harici Medya" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Harici medya, web sitelerinin siz ve cihazınız hakkında bilgi toplamasına izin verebilir. Bilgi, \"oynat\" düğmesine basana kadar gönderilmez veya istenmez." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Harici Medya Tercihleri" @@ -3197,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "Sohbet kabul edilemedi" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "Emoji tepkisi eklenemedi" @@ -3211,10 +3339,10 @@ msgstr "Uygulama şifresi oluşturulamadı. Lütfen tekrar deneyin." #: src/components/dms/MessageProfileButton.tsx:36 msgid "Failed to create conversation" -msgstr "Sohbet oluşturulamadı" +msgstr "Yazışma oluşturulamadı" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Başlangıç paketi oluşturulamadı" @@ -3228,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "Sohbet silinemedi" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Mesaj silinemedi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Gönderi silinemedi, lütfen tekrar deneyin" @@ -3240,8 +3368,8 @@ msgstr "Gönderi silinemedi, lütfen tekrar deneyin" msgid "Failed to delete starter pack" msgstr "Başlangıç paketi silinemedi" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "Yazışmalar yüklenemedi" @@ -3252,14 +3380,32 @@ msgstr "Yazışmalar yüklenemedi" msgid "Failed to load feeds preferences" msgstr "Akış tercihleri ​​yüklenemedi" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "GIFler yüklenemedi" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "Bildirim ayarları yüklenemedi." + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Eski mesajlar yüklenemedi" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "Tercih yüklenemedi." + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3271,8 +3417,8 @@ msgstr "Önerilen akışlar yüklenemedi" msgid "Failed to load suggested follows" msgstr "Önerilen takipler yüklenemedi" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "Tüm istekleri okundu olarak işaretleme başarısız oldu" @@ -3281,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Gönderi sabitlenemedi" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "Emoji tepkisi kaldırılamadı" @@ -3293,15 +3439,11 @@ msgstr "Doğrulama kaldırılamadı" msgid "Failed to save image: {0}" msgstr "Görsel kaydedilemedi: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Bildirim tercihleri kaydedilemedi, lütfen tekrar deneyin" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "Ayarlar kaydedilemedi. Lütfen tekrar deneyin." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "İlgi alanlarınız kaydedilemedi." @@ -3320,7 +3462,7 @@ msgstr "E-posta gönderilemedi, lütfen tekrar deneyin." msgid "Failed to submit appeal, please try again." msgstr "İtirazınız gönderilemedi, lütfen tekrar deneyin." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Konuyu sessize alma seçeneği değiştirilemedi, lütfen tekrar deneyin" @@ -3337,7 +3479,11 @@ msgstr "E-posta güncellenemedi, lütfen tekrar deneyin." msgid "Failed to update feeds" msgstr "Akışlar güncellenemedi" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "Bildirim beyanı güncellenemedi" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Ayarlar güncellenemedi" @@ -3356,15 +3502,23 @@ msgstr "E-posta doğrulanamadı, lütfen tekrar deneyin." msgid "Failed to verify handle. Please try again." msgstr "Kullanıcı adı doğrulanamadı. Lütfen yeniden deneyin." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Akış" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "{0} tarafından besleme" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "Akışı oluşturan" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "Akış tanımlayıcısı" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Akış menüsü" @@ -3373,35 +3527,39 @@ msgstr "Akış menüsü" msgid "Feed toggle" msgstr "Akış aç/kapa" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "Akış kullanılamıyor" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Geribildirim" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Geri bildirim gönderildi!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Akışlar" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Akışlar, kullanıcıların biraz kodlama uzmanlığı ile oluşturduğu özel algoritmalardır. Daha fazla bilgi için <0/>." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Akışlar güncellendi!" @@ -3430,6 +3588,14 @@ msgstr "Aramayı dile göre filtrele" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Aramayı dile göre filtrele (şu anda:{currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "Etkinliğinizden kimlerin bildirim alabileceğini filtreleyin" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "Kimden bildirim alacağınızı filtreleyin" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Tamamlanıyor" @@ -3450,7 +3616,7 @@ msgstr "Takip edilecek kişiler bulun" msgid "Find posts, users, and feeds on Bluesky" msgstr "Bluesky'da gönderileri, kullanıcıları ve akışları bulun" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Bitir" @@ -3458,17 +3624,17 @@ msgstr "Bitir" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Düz Siyah" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Düz Mavi" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Düz Beyaz" @@ -3478,10 +3644,10 @@ msgid "Flexible" msgstr "Esnek" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3492,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Takip et" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "{0} takip et" @@ -3520,7 +3686,7 @@ msgstr "Hesabı takip et" msgid "Follow all" msgstr "Hepsini takip et" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Geri Takip Et" @@ -3530,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Geri Takip Et" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "<0>{0} tarafından takip ediliyor" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" -msgstr "<0>{0} ve {1, plural, one {# diğer kişi} other {# diğer kişi}} tarafından takip ediliyor" +msgstr "<0>{0} ve {1, plural, other {# kişi}} daha tarafından takip ediliyor" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "<0>{0} ve <1>{1} tarafından takip ediliyor" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "<0>{0}, <1>{1} ve {2, plural, other {# kişi daha}} tarafından takip ediliyor" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Tanıdığınız @{0} takipçileri" @@ -3556,18 +3722,22 @@ msgid "Followers you know" msgstr "Tanıdığın takipçiler" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Takip ediliyor" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Takiptekiler" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "{0} takip ediliyor" @@ -3581,8 +3751,8 @@ msgstr "{handle} takip ediliyor" msgid "Following feed preferences" msgstr "Takip edilenler akışı tercihleri" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Takip Edilenler Akışı Tercihleri" @@ -3594,11 +3764,11 @@ msgstr "Sizi takip ediyor" msgid "Follows You" msgstr "Sizi Takip Ediyor" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Yazı tipi" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Yazı boyutu" @@ -3615,7 +3785,7 @@ msgstr "Güvenlik nedeniyle, e-posta adresinize bir onay kodu göndermemiz gerek msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Güvenlik nedeniyle, bunu bir daha görüntüleyemeyeceksiniz. Eğer bu uygulama şifresini kaybederseniz, yeni bir tane oluşturmanız gerekecek." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "En iyi deneyim için, tema yazı tipini kullanmanızı öneriyoruz." @@ -3645,11 +3815,15 @@ msgstr "Unuttunuz mu?" msgid "Frequently Posts Unwanted Content" msgstr "Sıkça İstenmeyen İçerik Gönderiyor" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "Kimden" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "@{sanitizedAuthor} tarafından" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "<0/> tarafından" @@ -3662,14 +3836,68 @@ msgstr "Galeri" msgid "Generate a starter pack" msgstr "Bir başlangıç ​​paketi oluşturun" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Yardım al" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "Sizi takip ettiklerinde bildirim alın." + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "Yeniden gönderilerinizi beğendiklerinde bildirim alın." + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "Gönderilerinizi beğendiklerinde bildirim alın." + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "Sizden bahsettiklerinde bildirim alın." + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "Gönderilerinizi alıntıladıklarında bildirim alın." + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "Gönderilerinize yanıt verdiklerinde bildirim alın." + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "Yeniden gönderilerinizi yeniden gönderdiklerinde bildirim alın." + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "Gönderilerinizi yeniden gönderdiklerinde bildirim alın." + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "Yeni gönderilerden bildirim al" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Seçtiğiniz hesapların gönderilerinden ve yanıtlarından bildirim alın." + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "{name} kullanıcısının yeni gönderilerinden bildirim al" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "Bu hesabın etkinliklerinden bildirim al" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "{name} gönderi paylaştığında bildirim al" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "Birisi gönderi paylaştığında bildirim al" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "Başla" @@ -3690,14 +3918,16 @@ msgstr "Profilinize bir yüz ekleyin" msgid "Glaring violations of law or terms of service" msgstr "Yasa veya hizmet şartlarının açık ihlalleri" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3748,10 +3978,16 @@ msgstr "Canlı Yayını Başlat" msgid "Go live for" msgstr "Canlı yayın süresi" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "{firstAuthorName} kullanıcısının profiline git" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "Hesap ayarlarına git" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "{0} ile olan yazışmaya git" @@ -3781,8 +4017,8 @@ msgstr "Sarsıcı Olabilecek Medya" msgid "Half way there!" msgstr "Yolun yarısı bitti!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Kullanıcı adı" @@ -3799,7 +4035,7 @@ msgstr "Kullanıcı adı değişti!" msgid "Handle too long. Please try a shorter one." msgstr "Kullanıcı adı çok uzun. Lütfen daha kısa bir tane deneyin." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Dokunuş" @@ -3808,7 +4044,7 @@ msgstr "Dokunuş" msgid "Harassment, trolling, or intolerance" msgstr "Taciz, trolleme veya hoşgörüsüzlük" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Etiket" @@ -3817,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "{tag} etiketi" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "Kodunuz var mı? <0>Buraya tıklayın." -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Sorun mu yaşıyorsunuz?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Yardım" @@ -3841,8 +4077,13 @@ msgstr "Bir resim yükleyerek veya bir avatar oluşturarak insanların bot olmad msgid "Here is your app password!" msgstr "İşte uygulama şifreniz!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "Merhaba 👋" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Gizli" @@ -3850,16 +4091,16 @@ msgstr "Gizli" msgid "Hidden by your moderation settings." msgstr "Moderasyon ayarlarınız tarafından gizlenmiş." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Gizli liste" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3868,7 +4109,7 @@ msgstr "Gizli liste" msgid "Hide" msgstr "Gizle" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Gizle" @@ -3877,18 +4118,18 @@ msgstr "Gizle" msgid "Hide customization options" msgstr "Özelleştirme seçeneklerini gizle" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Gönderiyi benim için gizle" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Yanıtı herkesten gizle" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Yanıtı benden gizle" @@ -3896,12 +4137,12 @@ msgstr "Yanıtı benden gizle" msgid "Hide this card" msgstr "Bu kartı gizle" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Bu gönderiyi gizle?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Bu yanıtı gizle?" @@ -3915,11 +4156,11 @@ msgstr "Gündem başlıklarını gizle" msgid "Hide trending topics?" msgstr "Gündem başlıkları gizlensin mi?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Gündem olan videolar gizlensin mi?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Kullanıcı listesini gizle" @@ -3928,32 +4169,32 @@ msgstr "Kullanıcı listesini gizle" msgid "Hide verification badges" msgstr "Doğrulama rozetlerini gizle" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "İçeriği gizler" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm, akış sunucusuna ulaşırken bir tür sorun oluştu. Lütfen bu konuda akış sahibini bilgilendirin." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm, akış sunucusunun yanlış yapılandırılmış görünüyor. Lütfen bu konuda akış sahibini bilgilendirin." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm, akış sunucusunun çevrimdışı görünüyor. Lütfen bu konuda akış sahibini bilgilendirin." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm, akış sunucusu kötü bir yanıt verdi. Lütfen bu konuda akış sahibini bilgilendirin." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, bu akışı bulmakta sorun yaşıyoruz. Silinmiş olabilir." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmmm, bu verileri yüklemekte sorun yaşıyoruz gibi görünüyor. Daha fazla bilgi için aşağıya göz atabilirsiniz. Sorun devam ederse lütfen bizimle iletişime geçin." @@ -3961,15 +4202,15 @@ msgstr "Hmmm, bu verileri yüklemekte sorun yaşıyoruz gibi görünüyor. Daha msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, o moderasyon hizmetini yükleyemedik." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Bekleyin! Videoya kademeli olarak erişim veriyoruz ve siz hâlâ sıradasınız. Birazdan tekrar kontrol edin!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Ana Sayfa" @@ -3986,10 +4227,10 @@ msgstr "Barındırma sağlayıcısı" msgid "Hot" msgstr "İlgi çeken" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Önce ilgi çeken yanıtlar" @@ -3998,10 +4239,6 @@ msgstr "Önce ilgi çeken yanıtlar" msgid "How should we open this link?" msgstr "Bu bağlantıyı nasıl açmalıyız?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4021,7 +4258,7 @@ msgstr "Anladım" msgid "If alt text is long, toggles alt text expanded state" msgstr "Alternatif metin uzunsa, alternatif metin genişletme durumunu değiştirir" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Ülkenizin yasalarına göre henüz reşit değilseniz, bu koşulları sizin adınıza ebeveyniniz veya yasal vasiniz okumalıdır." @@ -4033,11 +4270,11 @@ msgstr "Bu listeyi sildiğinizde geri getirmeniz mümkün olmayacaktır." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Kendi alan adınız varsa onu kullanıcı adınız olarak kullanabilirsiniz. Bu, kimliğinizi kendi kendinize doğrulamanızı sağlar. <0>Burada daha fazlasını öğrenin." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "E-postanızı güncellemeniz gerekiyorsa <0>buraya tıklayın." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Bu gönderiyi kaldırırsanız geri getirmeniz mümkün olmayacaktır." @@ -4049,6 +4286,10 @@ msgstr "Eğer e-posta adresinizi güncellerseniz e-posta ile iki adımlı doğru msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Şifrenizi değiştirmek istiyorsanız, size hesabınızın sizin olduğunu doğrulamak için bir kod göndereceğiz." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "Hesabınızın etkinlik bildirimlerini kimlerin alabileceğini sınırlamak istiyorsanız, bunu <0>Ayarlar → Gizlilik ve Güvenlik bölümünden değiştirebilirsiniz." + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "Eğer bir geliştiriciyseniz kendi sunucunuzu barındırabilirsiniz." @@ -4093,13 +4334,41 @@ msgstr "Kimlik veya kurumsal ilişkilerle ilgili sahtecilik veya yanlış beyanl msgid "Impersonation, misinformation, or false claims" msgstr "Kimlik dolandırıcılığı, yanlış bilgilendirme veya yanlış iddialar" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "Uygulama içi" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "Uygulama içi bildirimler" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "Uygulama içi, Herkes" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "Uygulama içi, Takip ettikleriniz" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "Uygulama içi, Anında" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "Uygulama içi, Anında, Herkes" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "Uygulama içi, Anında, Takip ettikleriniz" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Uygunsuz mesajlar veya sakıncalı olabilecek web bağlantıları" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "Gelen kutusu boş!" @@ -4107,7 +4376,7 @@ msgstr "Gelen kutusu boş!" msgid "Incorrect username or password" msgstr "Geçersiz kullanıcı adı veya şifre" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Şifre sıfırlama için e-postanıza gönderilen kodu girin" @@ -4115,7 +4384,7 @@ msgstr "Şifre sıfırlama için e-postanıza gönderilen kodu girin" msgid "Input confirmation code for account deletion" msgstr "Hesap silme için onay kodunu girin" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Yeni şifre girin" @@ -4131,10 +4400,14 @@ msgstr "Size e-posta olarak gönderilen kodu girin" msgid "Interaction limited" msgstr "Etkileşim sınırlandırıldı" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Etkileşim ayarları" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "Etkinlik bildirimleriyle tanış" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4144,7 +4417,7 @@ msgstr "Geçersiz 2FA onay kodu." msgid "Invalid handle. Please try a different one." msgstr "Geçersiz kullanıcı adı. Lütfen başka bir kullanıcı adı deneyin." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Geçersiz veya desteklenmeyen gönderi kaydı" @@ -4160,7 +4433,7 @@ msgstr "Geçersiz Doğrulama Kodu" msgid "Invite a Friend" msgstr "Arkadaşını Davet Et" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Davet kodu" @@ -4188,15 +4461,15 @@ msgstr "Arkadaşlarınızı, beğendiğiniz akışları ve kişileri takip etmey msgid "Invites, but personal" msgstr "Davetler, ancak kişisel" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Doğrudur" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Şu anda yalnızca siz varsınız! Yukarıdan arama yaparak başlangıç ​​paketinize daha çok kişi ekleyin." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "İş ID: {0}" @@ -4215,18 +4488,34 @@ msgstr "Bluesky'a Katıl" #: src/components/StarterPack/QrCode.tsx:68 #: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" -msgstr "Görüşmeye katıl" +msgstr "Yazışmaya katıl" #: src/screens/Onboarding/index.tsx:21 #: src/screens/Onboarding/state.ts:104 msgid "Journalism" msgstr "Gazetecilik" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "Beni haberdar et" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "KWS Gizlilik Politikası" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "KWS Kullanım Şartları" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "KWS web sitesi" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "{0} tarafından işaretlendi." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Yazarı tarafından işaretlendi." @@ -4239,7 +4528,7 @@ msgstr "İşaretler" msgid "Labels added" msgstr "İşaretler eklendi" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "İşaretler, kullanıcılar ve içerikler üzerindeki açıklamalardır. Ağın gizlenmesi, uyarılması ve kategorilendirilmesi için kullanılabilirler." @@ -4255,22 +4544,30 @@ msgstr "İçeriğinizdeki işaretler" msgid "Language selection" msgstr "Dil seçimi" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Dil Ayarları" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Diller" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Daha büyük" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "En son {timeAgo} önce başlatılmış" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "En son az önce başlatılmış" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "En son" @@ -4284,7 +4581,6 @@ msgstr "daha fazla öğren" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "Daha fazlasını öğren" @@ -4292,6 +4588,10 @@ msgstr "Daha fazlasını öğren" msgid "Learn More" msgstr "Daha Fazla Bilgi Edinin" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "Yaş güvencesiyle ilgili daha çok bilgi edinin" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Bluesky hakkında daha fazlasını öğren" @@ -4300,15 +4600,23 @@ msgstr "Bluesky hakkında daha fazlasını öğren" msgid "Learn more about self hosting your PDS." msgstr "PDS'nizi kendiniz barındırmayla ilgili daha çok bilgi edinin." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "Bu içeriğe uygulanan moderasyonla ilgili daha çok bilgi edinin" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Bu içeriğe uygulanan moderasyonla ilgili daha çok bilgi edinin." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "<0>Blog gönderimizi okuyarak bu değişiklikler ve düşüncelerinizi bizle nasıl paylaşacabileceğinize dair daha fazla bilgi edinin" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "Blog gönderimizi okuyarak bu değişikliklerle ve düşüncelerinizi bizle nasıl paylaşacağınızla ilgili daha fazla bilgi edinin." + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Bu uyarı hakkında daha fazla bilgi edinin" @@ -4318,12 +4626,16 @@ msgstr "Bu uyarı hakkında daha fazla bilgi edinin" msgid "Learn more about verification on Bluesky" msgstr "Bluesky'da doğrulama ile ilgili daha fazla bilgi edinin" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Bluesky'da neyin herkese açık olduğu hakkında daha fazla bilgi edinin." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "<0>Hesap ayarlarınızdan daha çok bilgi edinin." + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Daha fazlasını öğren." @@ -4343,13 +4655,14 @@ msgstr "Sohbetten ayrıl" #: src/components/dms/ConvoMenu.tsx:269 #: src/components/dms/LeaveConvoPrompt.tsx:42 msgid "Leave conversation" -msgstr "Görüşmeden ayrıl" +msgstr "Yazışmadan ayrıl" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Tüm dilleri görmek için hiçbirini seçmeyin." +msgid "Leave them all unselected to see any language." +msgstr "Tüm dilleri görmek için burada hiçbirini seçmeyin." -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Bluesky'dan ayrılıyor" @@ -4372,7 +4685,7 @@ msgstr "Hadi gidelim!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Açık" @@ -4386,7 +4699,7 @@ msgid "Like" msgstr "Beğen" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Beğen ({0, plural, other {# beğeni}})" @@ -4399,6 +4712,10 @@ msgstr "10 gönderiyi beğen" msgid "Like 10 posts to train the Discover feed" msgstr "Keşif akışını (\"Discover\") eğitmek için 10 gönderiyi beğenin" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "Beğeni bildirimleri" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Bu akışı beğen" @@ -4407,8 +4724,8 @@ msgstr "Bu akışı beğen" msgid "Like this labeler" msgstr "Bu işaretleyiciyi beğen" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Beğenenler" @@ -4419,7 +4736,7 @@ msgid "Liked By" msgstr "Beğenenler" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, other {# kullanıcı}} tarafından beğenildi" @@ -4430,20 +4747,36 @@ msgstr "{0, plural, other {# kullanıcı}} tarafından beğenildi" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, other {# kullanıcı}} tarafından beğenildi" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Beğeniler" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "Yeniden gönderilerinize dair beğeniler" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "Yeniden gönderilerinize dair beğenilerin bildirimleri" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Bu gönderideki beğeniler" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Düz" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Liste" @@ -4456,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Liste engellendi" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "{0} tarafından liste" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "<0/> listesi" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Sizin listeniz" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "Listeyi oluşturan" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4501,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Liste sessizden çıkarıldı" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Listeler" @@ -4539,7 +4876,7 @@ msgstr "Daha fazlasını yükle" msgid "Load more suggested feeds" msgstr "Daha çok önerilen akış yükle" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Yeni bildirimleri yükle" @@ -4554,11 +4891,11 @@ msgstr "Yeni gönderileri yükle" msgid "Loading..." msgstr "Yükleniyor..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Log" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Çıkış yapan görünürlüğü" @@ -4567,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo: @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo: <0>@sawaratsuki.bsky.social" @@ -4575,7 +4912,7 @@ msgstr "Logo: <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "#{tag} etiket menüsünü açmak için uzun basın" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "XXXXX-XXXXX gibi gözüküyor" @@ -4599,7 +4936,7 @@ msgstr "Hesabınız için e-posta ayarlarınızı düzenleyin" msgid "Make one for me" msgstr "Benim için bir tane yap" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Bu gitmek istediğiniz yer olduğundan emin olun!" @@ -4608,7 +4945,7 @@ msgstr "Bu gitmek istediğiniz yer olduğundan emin olun!" msgid "Manage saved feeds" msgstr "Kayıtlı akışları yönet" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "Doğrulama ayarlarını yönet" @@ -4616,9 +4953,9 @@ msgstr "Doğrulama ayarlarını yönet" msgid "Manage your muted words and tags" msgstr "Sessize alınmış kelimelerinizi ve etiketlerinizi yönetin" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "Tümünü okunmuş olarak işaretle" @@ -4627,15 +4964,13 @@ msgstr "Tümünü okunmuş olarak işaretle" msgid "Mark as read" msgstr "Okundu olarak işaretle" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "Tümü okunmuş olarak işaretlendi" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "Belki daha sonra" @@ -4647,19 +4982,26 @@ msgstr "Medya" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Bazı gruplar için rahatsız edici ya da uygunsuz olabilecek medya." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "Bahsetme bildirimleri" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "bahsedilen kullanıcılar" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Bahsedilen kullanıcılar" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Bahsedenler" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Menü" @@ -4667,7 +5009,7 @@ msgstr "Menü" msgid "Message {0}" msgstr "Mesaj {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Mesaj silindi" @@ -4676,11 +5018,11 @@ msgstr "Mesaj silindi" msgid "Message deleted" msgstr "Mesaj silindi" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "@{0} mesajı: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Sunucudan mesaj: {0}" @@ -4693,19 +5035,23 @@ msgstr "Mesaj girdi alanı" msgid "Message is too long" msgstr "Mesaj çok uzun" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "Mesaj seçenekleri" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Mesajlar" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Gece yarısı" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "Diğer bildirimler" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4716,10 +5062,10 @@ msgstr "Yanıltıcı Hesap" msgid "Misleading Post" msgstr "Yanıltıcı Gönderi" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Moderasyon" @@ -4727,17 +5073,17 @@ msgstr "Moderasyon" msgid "Moderation details" msgstr "Moderasyon detayları" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "{0} tarafından moderasyon listesi" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "<0/> tarafından moderasyon listesi" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Sizin tarafınızdan moderasyon listesi" @@ -4751,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Moderasyon listesi güncellendi" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Moderasyon listeleri" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Moderasyon Listeleri" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "moderasyon araçları" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Moderasyon durumları" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Moderasyon araçları" @@ -4777,7 +5123,7 @@ msgstr "Moderasyon araçları" msgid "Moderator has chosen to set a general warning on the content." msgstr "Moderatör, içeriğe genel bir uyarı koymayı seçti." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Daha fazla" @@ -4792,15 +5138,15 @@ msgstr "Daha fazla akış" msgid "More options" msgstr "Daha fazla seçenek" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Önce en çok beğenilen" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" -msgstr "En çok beğenilen yanıtlar önce" +msgstr "Önce en beğenilen yanıtlar" #: src/screens/Onboarding/state.ts:105 msgid "Movies" @@ -4810,8 +5156,8 @@ msgstr "Filmler" msgid "Music" msgstr "Müzik" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Sessize al" @@ -4821,8 +5167,8 @@ msgstr "Sessize al" msgid "Mute {tag}" msgstr "{tag} etiketini sessize al" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4835,7 +5181,7 @@ msgstr "Hesapları sessize al" #: src/components/dms/ConvoMenu.tsx:232 #: src/components/dms/ConvoMenu.tsx:238 msgid "Mute conversation" -msgstr "Görüşmeyi sustur" +msgstr "Yazışmayı sustur" #: src/components/dialogs/MutedWords.tsx:253 msgid "Mute in:" @@ -4873,21 +5219,21 @@ msgstr "Bu kelimeyi yalnızca etiketlerde sessize al" msgid "Mute this word until you unmute it" msgstr "Bu kelimeyi tekrar sesini açana kadar sessize al" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Konuyu sessize al" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Kelimeleri ve etiketleri sustur" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Sessize alınan hesaplar" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Sessize Alınan Hesaplar" @@ -4900,7 +5246,7 @@ msgstr "Sessize alınan hesapların gönderileri akışlarınızdan ve bildiriml msgid "Muted by \"{0}\"" msgstr "\"{0}\" tarafından susturuldu" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Sessize alınan kelimeler ve etiketler" @@ -4913,7 +5259,7 @@ msgstr "Sessize alma özeldir. Sessize alınan hesaplar sizinle etkileşime geç msgid "My Birthday" msgstr "Doğum Günüm" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Akışlarım" @@ -4942,7 +5288,7 @@ msgid "Nature" msgstr "Doğa" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "{0} başlangıç paketine git" @@ -4960,11 +5306,11 @@ msgstr "Sonraki ekrana yönlendirir" msgid "Navigates to your profile" msgstr "Profilinize yönlendirir" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Değiştirmeniz mi gerekiyor?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "Bir telif ihlali, hukuki talep ya da mevzuata uygunluk sorunu mu bildirmeniz gerekiyor?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Bir telif ihlali mi raporlamanız gerekiyor?" @@ -4987,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Yeni" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "{firstAuthorLink} kullanıcısından yeni {postsCount, plural, one {gönderi} other {gönderiler}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "{firstAuthorName} kullanıcısından yeni {postsCount, plural, one {gönderi} other {gönderiler}}" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Yeni sohbet" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "Yeni e-posta adresi" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "Yeni Özellik" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "Yeni takipçi bildirimleri" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "Yeni takipçiler" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5021,6 +5385,7 @@ msgstr "Yeni mesajlar" msgid "New Moderation List" msgstr "Yeni Moderasyon Listesi" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Yeni şifre" @@ -5031,7 +5396,7 @@ msgstr "Yeni Şifre" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5043,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Yeni gönderi" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Yeni Gönderi" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "{firstAuthorLink} ve <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişiden daha}} yeni gönderiler" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "{firstAuthorName} ve {additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişiden daha}} yeni gönderiler" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Yeni kullanıcı bilgisi diyaloğu" @@ -5056,12 +5429,16 @@ msgstr "Yeni kullanıcı bilgisi diyaloğu" msgid "New User List" msgstr "Yeni Kullanıcı Listesi" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" -msgstr "En yeni yanıtlar önce" +msgstr "Önce en yeni yanıtlar" #: src/screens/Onboarding/index.tsx:20 #: src/screens/Onboarding/state.ts:108 @@ -5073,15 +5450,15 @@ msgstr "Haberler" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5104,7 +5481,7 @@ msgstr "DNS Paneli Yok" msgid "No expiry set" msgstr "Bir bitiş süresi belirlenmemiş" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Önerilen GIFler bulunamadı. Tenor'la ilgili bir sıkıntı olabilir." @@ -5121,32 +5498,35 @@ msgstr "Görsel yok" msgid "No likes yet" msgstr "Henüz beğeni yok" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "{0} artık takip edilmiyor" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "{MAX_SERVICE_HANDLE_LENGTH, plural, other {# karakter}}den daha uzun olamaz" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Henüz mesaj yok" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Henüz bildirim yok!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Hiç kimse" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Yazarı dışında hiçkimse bu gönderiyi alıntılayamaz." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "Burada gönderi yok" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Henüz gönderi yok." @@ -5173,7 +5553,7 @@ msgstr "Sonuç yok" msgid "No results for \"{0}\"." msgstr "\"{0}\" için sonuç bulunamadı." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Sonuç bulunamadı" @@ -5181,9 +5561,9 @@ msgstr "Sonuç bulunamadı" msgid "No results found for \"{query}\"" msgstr "\"{query}\" için sonuç bulunamadı" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "{query} için sonuç bulunamadı" @@ -5191,7 +5571,7 @@ msgstr "{query} için sonuç bulunamadı" msgid "No results." msgstr "Sonuç bulunamadı." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "\"{search}\" aramanız için sonuç bulunamadı." @@ -5200,7 +5580,7 @@ msgstr "\"{search}\" aramanız için sonuç bulunamadı." msgid "No thanks" msgstr "Teşekkürler" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Hiç kimse" @@ -5225,59 +5605,76 @@ msgstr "Kimse bulunamadı. Başka birini aramayı deneyin." msgid "Non-sexual Nudity" msgstr "Cinsel olmayan çıplaklık" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "Hiçbiri" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "Takip ettiğiniz hiçkimse tarafından takip edilmiyor" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Bulunamadı" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Paylaşıma dair dikkatinize" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Not: Bluesky açık ve kamusal bir ağdır. Bu ayar yalnızca içeriğinizin Bluesky uygulaması ve web sitesindeki görünürlüğünü sınırlar, diğer uygulamalar bu ayarı dikkate almayabilir. İçeriğiniz hala diğer uygulamalar ve web siteleri tarafından çıkış yapan kullanıcılara gösterilebilir." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "Not: Bu gönderi yalnızca giriş yapmış kullanıcılara görünür." + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Burada bir şey yok" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Bildirim filtreleri" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Bildirim ayarları" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Bildirim Ayarları" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Bildirim sesleri" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Bildirim Sesleri" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Bildirimler" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "Geri kalan her şey için bildirimler, mesela birinin başlangıç paketinizle katılması gibi." + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "şimdi" @@ -5297,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Çıplaklık içeren veya yetişkin içerik o şekilde işaretlenmemiş" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Kapalı" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Oh hayır!" @@ -5318,34 +5716,39 @@ msgid "OK" msgstr "Tamam" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Tamam" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" -msgstr "En eski yanıtlar önce" +msgstr "Önce en eski yanıtlar" #: src/components/StarterPack/QrCode.tsx:82 msgid "on<0><1/><2><3/>" msgstr "<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Onboarding sıfırlama" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "Bir veya daha fazla GIF için alternatif metin eksik." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Bir veya daha fazla resimde alternatif metin eksik." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Bir veya daha fazla videoda alternatif metin eksik." @@ -5353,13 +5756,15 @@ msgstr "Bir veya daha fazla videoda alternatif metin eksik." msgid "Only .jpg and .png files are supported" msgstr "Yalnızca .jpg ve .png dosyaları desteklenmektedir" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Yalnızca {0} yanıtlayabilir." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Yalnızca harf, rakam ve tire içerir" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "Sadece benim takip ettiğim takipçiler" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5369,16 +5774,15 @@ msgstr "Yalnızca resim dosyaları desteklenmektedir" msgid "Only WebVTT (.vtt) files are supported" msgstr "Yalnızca WebVTT (.vtt) dosyaları desteklenmektedir" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Ay, bir şeyler yanlış gitti!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Hata!" @@ -5394,14 +5798,14 @@ msgstr "Avatar oluşturucuyu aç" #: src/screens/Messages/components/ChatListItem.tsx:368 #: src/screens/Messages/components/ChatListItem.tsx:369 msgid "Open conversation options" -msgstr "Görüşme seçeneklerini aç" +msgstr "Yazışma seçeneklerini aç" #: src/components/Layout/Header/index.tsx:159 msgid "Open drawer menu" msgstr "Çekmece menüyü aç" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Emoji seçiciyi aç" @@ -5418,7 +5822,7 @@ msgstr "Akış seçenekleri menüsünü aç" msgid "Open full emoji list" msgstr "Tüm emoji listesini aç" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "{niceUrl} web bağlantısını aç" @@ -5426,11 +5830,11 @@ msgstr "{niceUrl} web bağlantısını aç" msgid "Open message options" msgstr "Mesaj seçeneklerini aç" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Moderasyon hata ayıklama sayfasını aç" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Sessize alınmış kelime ve etiket ayarlarını aç" @@ -5455,16 +5859,16 @@ msgstr "Paylaş menüsünü aç" msgid "Open starter pack menu" msgstr "Başlangıç paketi menüsününü aç" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Storybook sayfasını aç" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Sistem günlüğünü aç" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "{numItems} seçeneği açar" @@ -5492,11 +5896,11 @@ msgstr "Cihazdaki kamerayı açar" msgid "Opens captions and alt text dialog" msgstr "Altyazı ve alt metin diyaloğunu açar" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Kullanıcı adı değiştirme diyaloğunu açar" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Besteciyi açar" @@ -5504,7 +5908,7 @@ msgstr "Besteciyi açar" msgid "Opens device photo gallery" msgstr "Cihaz fotoğraf galerisini açar" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Emoji seçiciyi açar" @@ -5522,15 +5926,19 @@ msgstr "Var olan Bluesky hesabınıza giriş yapma adımlarını açar" msgid "Opens GIF select dialog" msgstr "GIF seçim diyaloğunu açar" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Tarayıcıda yardım masasını açar" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "{0} bağlantısını açar" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Davet kodu listesini açar" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "Canlı yayın diyaloğunu açar" @@ -5538,12 +5946,8 @@ msgstr "Canlı yayın diyaloğunu açar" msgid "Opens password reset form" msgstr "Şifre sıfırlama formunu açar" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Bağlantılı web sitesini açar" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Bu profili açar" @@ -5560,7 +5964,7 @@ msgstr "İsterseniz, aşağıda ek bilgi verin:" msgid "Options:" msgstr "Seçenekler:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Veya bu seçenekleri birleştirin:" @@ -5602,6 +6006,10 @@ msgstr "Diğer hesap" msgid "Other..." msgstr "Diğer..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "Blog gönderimiz" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "Moderasyon ekibimiz raporunuzu aldı." @@ -5610,7 +6018,7 @@ msgstr "Moderasyon ekibimiz raporunuzu aldı." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Moderatörlerimiz raporları inceledi ve Bluesky'daki sohbetlere erişiminizi engellemeye karar verdi." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Sayfa bulunamadı" @@ -5620,9 +6028,9 @@ msgid "Page Not Found" msgstr "Sayfa Bulunamadı" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5644,30 +6052,35 @@ msgstr "Şifre güncellendi" msgid "Password updated!" msgstr "Şifre güncellendi!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Duraklat" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Videoyu duraklat" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Kişiler" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "@{0} tarafından takip edilenler" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "@{0} tarafından takip edilenler" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "Takip ettiklerim" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "Fotoğraf galerinize erişim izni reddedildi. Lütfen sistem ayarlarınızdan etkinleştirin." @@ -5706,12 +6119,12 @@ msgstr "Ana ekrana sabitle" msgid "Pin to Home" msgstr "Ana Sayfaya Sabitle" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Profiline sabitle" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Sabitlendi" @@ -5720,7 +6133,7 @@ msgstr "Sabitlendi" msgid "Pinned {0} to Home" msgstr "{0} Ana Sayfaya Sabitlendi" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Sabitleme Akışları" @@ -5728,38 +6141,38 @@ msgstr "Sabitleme Akışları" msgid "Pinned to your feeds" msgstr "Akışlarınıza sabitlendi" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Oynat" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "{0} oynat" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Videoyu oynat" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Videoyu Oynat" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "GIF'i oynatır ya da duraklatır" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Videoyu oynatır ya da duraklatır" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "GIF'i oynatır" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Videoyu oynatır" @@ -5767,12 +6180,16 @@ msgstr "Videoyu oynatır" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "Lütfen paylaştığınız medyaya uygun içerik uyarı işaretlerini ekleyin." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "Lütfen sonraki adımlar için e-posta kutunuzu kontrol edin. Gelmesi birkaç dakika sürebilir." + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Kullanıcı adınızı seçin." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Şifrenizi seçin." @@ -5784,7 +6201,8 @@ msgstr "Yeni e-posta adresinizi doğrulamak için lütfen size şimdi yolladığ msgid "Please complete the verification captcha." msgstr "Lütfen doğrulama captcha'sını tamamlayın." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Lütfen e-posta adresinizi doğru girdiğinizden emin olun." @@ -5806,6 +6224,7 @@ msgstr "Lütfen bu uygulama şifresi için benzersiz bir isim girin ya da ürett msgid "Please enter a valid code." msgstr "Lütfen geçerli bir kod girin." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "Lütfen geçerli bir e-posta adresi girin." @@ -5814,7 +6233,11 @@ msgstr "Lütfen geçerli bir e-posta adresi girin." msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Lütfen sessize almak istediğiniz geçerli bir kelime, etiket veya ifade giriniz" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "Lütfen geçerli, geçici olmayan bir e-posta adresi girin. Bu e-posta adresine ilerde erişmeniz gerekebilir." + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "Lütfen <0>{0} adresine yolladığımız kodu aşağıya girin." @@ -5823,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "Lütfen önceki e-posta adresinize yolladığımız güvenlik kodunu girin." #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "E-postanızı girin." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Lütfen davet kodunuzu girin." @@ -5855,6 +6278,19 @@ msgstr "Lütfen neden bu işaretin {0} tarafından yanlış uygulandığını a msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Lütfen neden sohbetlerinizin yanlış yere kullanıma kapatıldığını açıklayın" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "Aktif içeriğin başına dönmek için lütfen geri gidin veya bu elemanı etkinleştirin." + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "Lütfen moderatörlerin Yaş Güvencesi durumunuzu doğru değerlendirebilmeleri için ihtiyaç duyabileceklerini düşündüğünüz ek ayrıntıları verin." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "Lütfen bir dil seçin" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "Lütfen bir moderasyon hizmeti seçin" @@ -5872,9 +6308,9 @@ msgstr "Lütfen @{0} olarak giriş yapın" msgid "Please verify your email" msgstr "Lütfen e-postanızı doğrulayın" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Lütfen E-postanızı Doğrulayın" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "Lütfen mesajınızı aşağıya yazın:" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5886,33 +6322,38 @@ msgstr "Politika" msgid "Porn" msgstr "Pornografi" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Gönder" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Gönderi" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Gönder" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Hepsini Gönder" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "Gönderi engellendi" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "{0} tarafından gönderi" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "@{0} tarafından gönderi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Gönderi silindi" @@ -5921,11 +6362,14 @@ msgstr "Gönderi silindi" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Gönderinin yollanması başarısız. Lütfen İnternet bağlantınızı kontrol edin ve tekrar deneyin." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "Gönderi silindi" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Gönderi gizlendi" @@ -5939,11 +6383,11 @@ msgstr "Gönderi Sessize Alınmış Kelime Tarafından Gizlenmiş" msgid "Post Hidden by You" msgstr "Gönderi Sizin Tarafınızdan Gizlenmiş" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Gönderi etkileşim ayarları" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Gönderi Etkileşim Ayarları" @@ -5956,8 +6400,10 @@ msgstr "Gönderi dili" msgid "Post Languages" msgstr "Gönderi Dilleri" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Gönderi bulunamadı" @@ -5971,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Gönderi sabitlemesi kaldırıldı" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5981,31 +6430,34 @@ msgstr "Gönderiler" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Gönderiler metinleri, etiketleri veya ikisiyle beraber sessize alınabilir. Hiçbir gönderinin görünmemesine sebep olacağından yaygın kelimelerden kaçınmanızı öneririz." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Gönderiler gizlendi" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Potansiyel Yanıltıcı Bağlantı" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "Gönderiler, Yanıtlar" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Tercih kaydedildi" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "Muhtemelen yanıltıcı bağlantı" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "Muhtemelen yanıltıcı bağlantı uyarısı" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Yeniden bağlanmak için basın" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Yeniden denemek için basın" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Bu hesabın sizin de takip ettiğiniz takipçilerini görmek için basın" @@ -6017,40 +6469,46 @@ msgstr "Önceki resim" msgid "Primary Language" msgstr "Birincil Dil" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Takip ettiklerimi önceliklendir" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Öncelikli bildirimler" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Gizlilik" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Gizlilik ve güvenlik" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Gizlilik ve Güvenlik" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "Gizlilik ve Güvenlik ayarları" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Gizlilik Politikası" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Video işleniyor..." @@ -6064,15 +6522,14 @@ msgstr "İşleniyor..." msgid "profile" msgstr "profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Profil" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Profil güncellendi" @@ -6090,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Akışları ilerletebilmek için herkese açık, paylaşılabilir listeler." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "Gönderiyi yayınla" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "Gönderileri yayınla" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "Yanıtları yayınla" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "Yanıtı yayınla" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "Anında" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "Anında bildirimler" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "Anında, Herkes" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "Anında, Takip ettikleriniz" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "Karekod panonuza kopyalandı!" @@ -6121,44 +6594,52 @@ msgstr "Karekod indirildi!" msgid "QR code saved to your camera roll!" msgstr "Karekod fotoğraflarınıza kaydedildi!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "Alıntı bildirimleri" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Gönderiyi alıntıla" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "Alıntı gönderi yeniden iliştirildi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "Alıntı gönderinin ilişiği başarıyla kesildi" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Alıntı gönderilen devre dışı bırakıldı" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Alıntı ayarları" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Alıntılar" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Bu gönderinin alıntıları" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Rastgele (yani \"Gönderenin Ruleti\")" @@ -6166,8 +6647,8 @@ msgstr "Rastgele (yani \"Gönderenin Ruleti\")" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Hız sınırı aşıldı -- kullanıcı adınızı kısa bir sürede çok sık değiştirmeye çalıştınız. Lütfen tekrar denemeden önce bir dakika bekleyin." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Alıntıyı yeniden iliştir" @@ -6179,30 +6660,42 @@ msgstr "{emoji} ile tepki ver" msgid "Reactivate your account" msgstr "Hesabınızı yeniden etkinleştirin" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "{0} {1,plural, other {yanıt}} daha oku" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Blog gönderisini oku" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Devamını gizle" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Devamını oku" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "Daha fazla yanıt oku" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "Blog gönderimizi okuyun" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Bluesky blog'unu oku" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Bluesky Gizlilik Politikasını Oku" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Bluesky Hizmet Şartlarını Oku" @@ -6215,6 +6708,14 @@ msgstr "İtiraz gerekçesi" msgid "Reason:" msgstr "Sebep:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "Uygulama içi bildirimleri al" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "Anında bildirimleri al" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Son Aramalar" @@ -6236,20 +6737,19 @@ msgstr "Reddet" msgid "Reject chat request" msgstr "Sohbet isteğini reddet" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" -msgstr "Görüşmeleri yeniden yükle" +msgstr "Yazışmaları yeniden yükle" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 #: src/components/dialogs/MutedWords.tsx:438 #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Kaldır" @@ -6261,17 +6761,17 @@ msgstr "Başlangıç paketinden {displayName} kullanıcısını çıkart" msgid "Remove {historyItem}" msgstr "{historyItem} öğesini çıkart" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Hesabı kaldır" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Eki kaldır" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Avatarı kaldır" @@ -6286,24 +6786,22 @@ msgstr "Gömülü içeriği kaldır" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Akışı kaldır" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Akış kaldırılsın mı?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Akışlarımdan kaldır" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Hızlı erişimden kaldırılsın mı?" @@ -6313,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "Kayıtlı akışlardan kaldır" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "Akışlarınızdan kaldırılsın mı?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Resmi kaldır" @@ -6334,12 +6831,8 @@ msgstr "Sessize alınmış kelimeyi listemden çıkart" msgid "Remove profile" msgstr "Profili kaldır" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Alıntıyı kaldır" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Yeniden göndermeyi kaldır" @@ -6347,7 +6840,7 @@ msgstr "Yeniden göndermeyi kaldır" msgid "Remove subtitle file" msgstr "Altyazı dosyasını kaldır" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Bu akışı kayıtlı akışlardan kaldır" @@ -6366,11 +6859,11 @@ msgstr "Doğrulamayı kaldır" msgid "Remove your verification for this account?" msgstr "Bu hesap için doğrulamanızı kaldıracak mısınız?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Yazar tarafından kaldırılmış" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Sizin tarafınızdan kaldırılmış" @@ -6379,10 +6872,6 @@ msgstr "Sizin tarafınızdan kaldırılmış" msgid "Removed from list" msgstr "Listeden kaldırıldı" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Akışlarımdan kaldırıldı" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Kayıtlı akışlardan kaldırıldı" @@ -6397,34 +6886,36 @@ msgstr "Akışlarınızdan kaldırıldı" msgid "Removed verification" msgstr "Doğrulama kaldırıldı" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Alıntı gönderiyi kaldırır" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Keşif akışıyla (\"Discover\") değiştir" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Yanıtlar" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Yanıtlara kapalı" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Bu gönderi yanıtlara kapalı." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Yanıtla" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Yanıtla ({0, plural, other {# yanıt}})" @@ -6438,50 +6929,55 @@ msgstr "Konu Yazarı Tarafından Gizlenmiş Yanıt" msgid "Reply Hidden by You" msgstr "Yanıt Tarafınızdan Gizlenmiş" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "Yanıt bildirimlerini al" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Yanıt ayarları" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "Yanıt ayarları konu yazarı tarafından belirlenir" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Yanıt sıralama" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "<0><1/> kullanıcısına yanıt" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Engelli bir gönderiye yanıt" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Bir gönderiye yanıt" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Size yanıt" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Yanıt görünürlüğü güncellendi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Yanıt başarıyla gizlendi" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6515,12 +7011,12 @@ msgstr "Akışı raporla" msgid "Report list" msgstr "Listeyi raporla" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Mesajı raporla" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Gönderiyi raporla" @@ -6569,25 +7065,26 @@ msgstr "Bu başlangıç paketini raporla" msgid "Report this user" msgstr "Bu kullancıyı raporla" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Yeniden gönder" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Yeniden gönder" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Yeniden gönder ({0, plural, other {# defa yeniden gönderilmiş}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "Yeniden gönderi bildirimleri" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Gönderiyi yeniden gönder veya alıntıla" @@ -6596,35 +7093,47 @@ msgstr "Gönderiyi yeniden gönder veya alıntıla" msgid "Reposted By" msgstr "Yeniden Gönderen" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "{0} tarafından yeniden gönderildi" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "<0><1/> tarafından yeniden gönderildi" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Siz yeniden göndermişsiniz" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "Yeniden gönderiler" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Bu gönderinin yeniden gönderilmesi" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "Değişiklik iste" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "Yeniden gönderilerinizin yeniden gönderileri" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "Yeniden gönderilerinizin yeniden gönderilme bildirimleri" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "Kod İste" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Göndermeden önce alternatif metin gerektir" @@ -6632,7 +7141,7 @@ msgstr "Göndermeden önce alternatif metin gerektir" msgid "Require an email code to sign in to your account." msgstr "Hesabınıza giriş yapmak için e-postanıza onay kodu yollanmasını gerekli kıl." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Bu sağlayıcı için gereklidir" @@ -6644,10 +7153,6 @@ msgstr "Bölgenizde zorunludur" msgid "Resend" msgstr "Yeniden gönder" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6661,6 +7166,12 @@ msgstr "E-postayı Tekrar Gönder" msgid "Resend Verification Email" msgstr "Onay E-postasını Tekrar Gönder" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "Etkinlik aboneliği hatırlatıcısını sıfırla" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Sıfırlama kodu" @@ -6669,8 +7180,8 @@ msgstr "Sıfırlama kodu" msgid "Reset Code" msgstr "Sıfırlama Kodu" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Onboarding durumunu sıfırla" @@ -6689,21 +7200,23 @@ msgstr "Son hataya neden olan son eylemi tekrarlar" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Tekrar dene" @@ -6723,19 +7236,19 @@ msgstr "Ana sayfaya döner" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Önceki sayfaya döner" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Önceki adıma döner" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6749,8 +7262,7 @@ msgstr "Önceki adıma döner" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Kaydet" @@ -6764,15 +7276,13 @@ msgstr "Kaydet" msgid "Save birthday" msgstr "Doğum gününü kaydet" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Değişiklikleri kaydet" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Değişiklikleri Kaydet" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6795,7 +7305,7 @@ msgstr "QR kodu kaydet" msgid "Save to my feeds" msgstr "Akışlarıma kaydet" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Kayıtlı Akışlar" @@ -6804,18 +7314,14 @@ msgstr "Kayıtlı Akışlar" msgid "Saved to your feeds" msgstr "Akışlarınıza kaydedildi" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Profilinizdeki herhangi bir değişikliği kaydeder" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Resim kırpma ayarlarını kaydeder" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Merhaba de!" @@ -6828,16 +7334,16 @@ msgstr "Bilim" msgid "Scroll to top" msgstr "Başa kaydır" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Ara" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "@{0} gönderilerini ara" @@ -6863,7 +7369,7 @@ msgstr "\"{query}\" için ara" msgid "Search for \"{searchText}\"" msgstr "\"{searchText}\" ara" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Başkalarına önermek istediğiniz akışları aratın." @@ -6879,10 +7385,14 @@ msgstr "Daha fazla akış arayın" msgid "Search for posts, users, or feeds" msgstr "Gönderileri, kullanıcıları veya akışları aratın" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "GIF aratın" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "Arama şu anda giriş yapmamış kullanıcıların erişimine kapalıdır" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Gönderilerimi ara" @@ -6892,12 +7402,12 @@ msgstr "Gönderilerimi ara" msgid "Search posts" msgstr "Gönderileri ara" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Profilleri ara" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Tenor'u ara" @@ -6905,7 +7415,7 @@ msgstr "Tenor'u ara" msgid "Search..." msgstr "Ara..." -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Profilleri arar" @@ -6914,10 +7424,6 @@ msgstr "Profilleri arar" msgid "Security step required" msgstr "Güvenlik adımı gerekiyor" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Güvenlik Adımı Gerekli" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "{tag} gönderilerini gör" @@ -6938,14 +7444,31 @@ msgstr "Kullanıcının #{tag} gönderilerini gör" msgid "See jobs at Bluesky" msgstr "Bluesky'daki iş fırsatlarını görün" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "Daha fazlasını gör" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "Beğenebileceğiniz diğer hesapları görün" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "Keşfet sayfasında daha fazla önerilen profil görün" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Bu kılavuzu gör" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Gezinme kaydırıcısı. Yön tuşlarını kullanarak ileri veya geri gezinin, ve boşluk tuşuyla oynatın/duraklatın" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "{0} kullanıcı adını seç" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Renk seç" @@ -6990,7 +7513,7 @@ msgstr "Mevcut bir hesaptan seç" msgid "Select GIF" msgstr "GIF Seç" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "GIF Seç \"{0}\"" @@ -6998,6 +7521,11 @@ msgstr "GIF Seç \"{0}\"" msgid "Select how long to mute this word for." msgstr "Bu kelimenin ne kadar süre sessize alınacağını seçin." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "Dil seçin" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Dil seç..." @@ -7006,7 +7534,7 @@ msgstr "Dil seç..." msgid "Select languages" msgstr "Dilleri seç" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "Moderasyon hizmeti seçin" @@ -7047,12 +7575,12 @@ msgstr "Uygulamanın kullanıcı arayüzünde hangi dili kullanacağınızı se msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Abone olduğunuz akışların hangi dilleri içermesini istediğinizi seçin. Hiçbiri seçilmezse, tüm diller gösterilir." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Doğum tarihinizi seçin" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Aşağıdaki seçeneklerden ilgi alanlarınızı seçin" @@ -7060,7 +7588,11 @@ msgstr "Aşağıdaki seçeneklerden ilgi alanlarınızı seçin" msgid "Select your preferred language for translations in your feed." msgstr "Akışlarınızdaki çeviriler için tercih ettiğiniz dili seçin." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "Tercih ettiğiniz bildirim kanallarını seçiniz" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "{numItems} seçenekten {0}. sıradakini seçer" @@ -7068,17 +7600,9 @@ msgstr "{numItems} seçenekten {0}. sıradakini seçer" msgid "Send a neat website!" msgstr "Güzel bir web sitesi gönderin!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "Onay gönder" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Onay e-postası gönder" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "E-posta gönder" @@ -7088,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "E-posta Gönder" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Geribildirim gönder" @@ -7097,7 +7621,7 @@ msgstr "Geribildirim gönder" msgid "Send message" msgstr "Mesaj gönder" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "Gönderiyi {name} kullanıcısına gönder" @@ -7116,20 +7640,20 @@ msgstr "Rapor gönder" msgid "Send report to {0}" msgstr "Raporu şuraya gönder {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "Raporu şuraya gönder {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Doğrulama e-postası gönder" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Doğrudan mesaj yoluyla gönder" @@ -7145,7 +7669,7 @@ msgstr "Sunucu Adresi" msgid "Set app icon to {0}" msgstr "Uygulama simgesini {0} olarak belirle" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Doğum tarihini belirle" @@ -7161,13 +7685,57 @@ msgstr "Hesabınızı ayarlayın" msgid "Sets email for password reset" msgstr "Şifre sıfırlama için e-posta ayarlar" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Ayarlar" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "Başkalarının etkinliklerine dair ayarlar" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "Gönderilerinizden başkalarının bildirim almasına izin verme ayarları" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "Beğeni bildirimi ayarları" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "Bahsetme bildirimleri ayarları" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "Yeni takipçi bildirimleri ayarları" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "Geri kalan bildirimlerin ayarları" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "Yeniden gönderilerinizin beğenilme bildirimleri ayarları" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "Yeniden gönderilerinizin yeniden gönderim bildirimleri ayarları" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "Alıntı bildirimleri ayarları" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "Yanıt bildirimleri ayarları" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "Yeniden gönderim bildirimleri ayarları" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7202,33 +7770,28 @@ msgstr "Havalı bir hikaye paylaş!" msgid "Share a fun fact!" msgstr "Eğlenceli bir gerçeği paylaş!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Yine de paylaş" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "Yazar DID'ini paylaş" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Bağlantı paylaş" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Bağlantı Paylaş" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Bağlantı paylaşma diyalogu" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "Gönderinin at:// URI'sini paylaş" @@ -7249,8 +7812,8 @@ msgstr "Bu başlangıç paketini paylaş" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Bu başlangıç paketini paylaş ve insanların Bluesky'deki topluluğunuza katılmasına yardımcı ol." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7262,21 +7825,17 @@ msgstr "Paylaş..." msgid "Share your favorite feed!" msgstr "En sevdiğiniz akışı paylaşın!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Paylaşılan Tercihler Test Edicisi" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Web sitesi bağlantısını paylaşır" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Göster" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Alt metni göster" @@ -7305,8 +7864,8 @@ msgstr "Özelleştirme seçeneklerini göster" msgid "Show hidden replies" msgstr "Gizli yanıtları göster" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Bunun gibi daha az göster" @@ -7314,55 +7873,63 @@ msgstr "Bunun gibi daha az göster" msgid "Show list anyway" msgstr "Yine de listeyi göster" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Daha Fazla Göster" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Bunun gibi daha fazla göster" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "Daha fazla yanıt göster" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Sessize alınan yanıtları göster" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "Gönderi yanıtlarını ağaç görünümü şeklinde göster" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Alıntı gönderileri göster" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Yanıtları göster" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Yanıtları şöyle göster" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Yanıtları dallandırarak göster" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Takip ettiğiniz kişilerin yanıtlarını diğer tüm yanıtlardan önce göster" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Yanıtı herkese göster" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Yeniden gönderileri göster" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Kaydettiğim akışlardan seçmece içerikleri takip akışında (\"Following\") göster" @@ -7374,16 +7941,17 @@ msgstr "Uyarı göster" msgid "Show warning and filter from feeds" msgstr "Uyarı göster ve akışlardan filtrele" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Bu gönderinin ne zaman oluşturulduğuna dair bilgileri gösterir" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "Geçiş yapabileceğiniz diğer hesapları gösterir" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "İçeriği gösterir" @@ -7392,14 +7960,15 @@ msgstr "İçeriği gösterir" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7420,7 +7989,7 @@ msgstr "Giriş yap veya bir hesap oluştur" #: src/components/dialogs/Signin.tsx:75 msgid "Sign in or create your account to join the conversation!" -msgstr "Görüşmeye katılmak için giriş yapın veya hesabınızı oluşturun!" +msgstr "Sohbete katılmak için giriş yapın veya hesabınızı oluşturun!" #: src/components/AccountList.tsx:68 msgid "Sign in to account that is not listed" @@ -7430,15 +7999,20 @@ msgstr "Listelenmeyen bir hesaba giriş yap" msgid "Sign in to Bluesky or create a new account" msgstr "Bluesky'da oturum aç veya yeni bir üyelik oluştur" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "Gönderiyi görmek için giriş yap" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Çıkış yap" @@ -7446,8 +8020,8 @@ msgstr "Çıkış yap" msgid "Sign Out" msgstr "Çıkış Yap" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Çıkış yap?" @@ -7461,12 +8035,12 @@ msgstr "Giriş Yapılması Gerekiyor" msgid "Signed in as @{0}" msgstr "@{0} olarak giriş yapıldı" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Benzer hesaplar" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Atla" @@ -7474,12 +8048,11 @@ msgstr "Atla" msgid "Skip this flow" msgstr "Bu akışı atla" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Daha küçük" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "Hatırlatmayı erteler" @@ -7492,11 +8065,11 @@ msgstr "Yazılım Geliştirme" msgid "Some of your verifications are invalid." msgstr "Doğrulamalarınızdan bazıları geçersiz." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Beğenebileceğiniz diğer akışlar" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Bazı kişiler yanıtlayabilir" @@ -7512,10 +8085,11 @@ msgstr "Biri şuna {0} tepkisi verdi: {1}" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "Raporlamaya çalıştığınız verilerde bir sorun var. Lütfen destekle iletişime geçin." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Bir şeyler ters gitti" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7523,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Bir şeyler ters gitti, lütfen tekrar deneyin" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Bir şeyler ters gitti, lütfen tekrar deneyin." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Bir şeyler ters gitti!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "Bir şeyler ters gitti. Lütfen biraz sonra tekrar deneyin." + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "Bir şeyler ters gitti. Lütfen tekrar deneyin." @@ -7541,20 +8118,23 @@ msgstr "Bir şeyler ters gitti. Lütfen tekrar deneyin." msgid "Something wrong? Let us know." msgstr "Bir sorun mu var? Bize bildirin." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "Maalesef oturumunuzun süresi doldu. Lütfen tekrar giriş yapın." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Yanıtları sırala" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Yanıtları şuna göre sırala" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Aynı gönderiye verilen yanıtları şuna göre sırala:" @@ -7581,7 +8161,7 @@ msgstr "Spam; çok sık bahsetme ya da yanıtlama" msgid "Sports" msgstr "Spor" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "Bir yazışma başlatırsanız burada görünecektir." @@ -7603,9 +8183,9 @@ msgstr "Kişileri eklemeye başla!" msgid "Start chat with {displayName}" msgstr "{displayName} ile sohbet başlat" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Başlangıç Paketi" @@ -7613,12 +8193,12 @@ msgstr "Başlangıç Paketi" msgid "Starter pack by {0}" msgstr "{0} tarafından oluşturulmuş başlangıç paketi" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "<0/> tarafından oluşturulmuş başlangıç paketi" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Sizin oluşturduğunuz başlangıç paketi" @@ -7640,19 +8220,21 @@ msgstr "Başlangıç paketleri favori kişilerinizi ve akışlarınızı arkada msgid "Status Page" msgstr "Durum Sayfası" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Adım {0} / {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Depolama temizlendi, şimdi uygulamayı yeniden başlatmanız gerekiyor." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Storybook" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7668,9 +8250,9 @@ msgstr "İtirazı yolla" msgid "Submit Appeal" msgstr "İtirazı Yolla" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "Raporu yolla" @@ -7678,10 +8260,14 @@ msgstr "Raporu yolla" msgid "Subscribe" msgstr "Abone ol" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Bu etiketleri kullanmak için @{0} hesabına abone olun:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "Hesap etkinliklerine abone ol" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "İşaretleyiciye Abone Ol" @@ -7694,8 +8280,12 @@ msgstr "Bu işaretleyiciye abone ol" msgid "Subscribe to this list" msgstr "Bu listeye abone ol" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "Başarılı" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Başarılı!" @@ -7707,7 +8297,7 @@ msgstr "Başarıyla doğrulandı" msgid "Suggested Accounts" msgstr "Önerilen Hesaplar" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Size önerilenler" @@ -7716,26 +8306,26 @@ msgstr "Size önerilenler" msgid "Suggestive" msgstr "Tehlikeli" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Gün doğumu" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Gün batımı" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Destek" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Hesap değiştir" @@ -7744,24 +8334,24 @@ msgstr "Hesap değiştir" msgid "Switch Account" msgstr "Hesap Değiştir" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Hesap değiştir" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "{0} hesabına geç" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Sistem" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Sistem günlüğü" @@ -7769,6 +8359,18 @@ msgstr "Sistem günlüğü" msgid "Tags only" msgstr "Yalnızca etiketler" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "Bilgi için dokunun" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "Daha fazla bilgi için dokunun" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "Bu güncellemeleri anladığınızı ve onayladığınızı kabul etmek ve Bluesky'ı kullanmaya devam etmek için dokunun" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7813,12 +8415,14 @@ msgstr "Biraz daha anlatın" msgid "Terms" msgstr "Şartlar" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Hizmet Şartları" @@ -7850,10 +8454,6 @@ msgstr "Metin giriş alanı" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "Geribildiriminiz için teşekkürler! Akış yöneticisine iletildi." -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Teşekkür ederiz! E-posta adresiniz başarıyla doğrulandı." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Teşekkürler. Raporunuz iletildi." @@ -7866,28 +8466,28 @@ msgstr "Teşekkürler, e-posta adresinizi başarıyla doğruladınız. Bu ileti msgid "That contains the following:" msgstr "Dosya içeriği şöyle olmalıdır:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Bu kullanıcı adı zaten alınmış." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Bu başlangıç paketi bulunamadı." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "Bu kullanıcı adı zaten alınmış" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Hepsi bu kadar!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "Hepsi bu kadar!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "Hesap, engeli kaldırdıktan sonra sizinle etkileşime geçebilecek." @@ -7902,7 +8502,7 @@ msgstr "Uygulama yeniden başlatılacaktır" msgid "The author of this thread has hidden this reply." msgstr "Bu konunun yazarı bu yanıtı gizlemiş." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Bluesky web uygulaması" @@ -7922,10 +8522,6 @@ msgstr "Keşif akışı (\"Discover\")" msgid "The Discover feed now knows what you like" msgstr "Keşif akışı (\"Discover\") artık ne beğendiğinizi biliyor" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "Girdiğiniz e-posta adresi şu anki e-posta adresinizle aynıdır." - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "Uygulama deneyimi daha iyi. Bluesky'ı şimdi indirin ve kaldığınız yerden devam edelim." @@ -7946,8 +8542,16 @@ msgstr "İçeriğinize şu işaretler uygulanmış." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "Aşağıdaki ayarlar yeni gönderi oluştururken varsayılan olarak kullanılacaktır. Bunları içerik üreticisine ait belirli bir gönderi için düzenleyebilirsiniz." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "Bulunduğunuz bölgedeki yasalar Bluesky'daki yetişkin içerik ve doğrudan mesajlaşma gibi belirli özelliklere ulaşmadan önce bir yetişkin olduğunuzu onaylamanızı gerektirmektedir." + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "Bulunduğunuz bölgedeki yasalar belirli özelliklere erişebilmeniz için yaşınızı onaylamanızı gerektiriyor. Daha fazla bilgi almak için dokunun." + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Gönderi silinmiş olabilir." @@ -7955,9 +8559,10 @@ msgstr "Gönderi silinmiş olabilir." msgid "The Privacy Policy has been moved to <0/>" msgstr "Gizlilik Politikası <0/> konumuna taşındı" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "Seçilen video 100 MB'tan büyük." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "Seçilen video 100 MB'tan büyük. Lütfen daha küçük bir dosyayla yeniden deneyin." #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7984,7 +8589,7 @@ msgstr "Hizmet Şartları taşındı" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "Verdiğiniz onay kodu geçersiz. Lütfen doğru onay bağlantısını kullandığınızdan emin olun ya da yeni bir tane talep edin." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Tema" @@ -7992,14 +8597,14 @@ msgstr "Tema" msgid "There is no time limit for account deactivation, come back any time." msgstr "Hesap etkisizleştirme için zaman sınırı yoktur, istediğiniz zaman geri gelebilirsiniz." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Tenor'a bağlanırken bir sorun oldu." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Sunucuya ulaşma konusunda bir sorun oluştu" @@ -8008,17 +8613,12 @@ msgstr "Sunucuya ulaşma konusunda bir sorun oluştu" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Sunucuya bağlanırken bir sorun oldu, lütfen internet bağlantınızı kontrol edin ve tekrar deneyin." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Sunucunuza ulaşma konusunda bir sorun oluştu" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Bildirimleri almakta bir sorun oluştu. Tekrar denemek için buraya dokunun." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Gönderileri almakta bir sorun oluştu. Tekrar denemek için buraya dokunun." @@ -8039,7 +8639,7 @@ msgstr "Listelerinizi almakta bir sorun oluştu. Tekrar denemek için buraya dok msgid "There was an issue fetching your service info" msgstr "Servis bilginizi getirirken bir sorun oldu" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Bu akışı kaldırırken bir sorun oldu. Lütfen internet bağlantınızı kontrol edin ve tekrar deneyin." @@ -8054,9 +8654,9 @@ msgstr "Raporunuzu yollarken bir sorun oldu. Lütfen internet bağlantınızı k msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Akışlarınızı güncellerken bir sorun oldu, lütfen internet bağlantınızı kontrol edin ve tekrar deneyin." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8071,7 +8671,7 @@ msgstr "Akışlarınızı güncellerken bir sorun oldu, lütfen internet bağlan msgid "There was an issue! {0}" msgstr "Bir sorun oluştu! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8082,7 +8682,7 @@ msgstr "Bir sorun oluştu! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Bir sorun oluştu. Lütfen internet bağlantınızı kontrol edin ve tekrar deneyin." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Uygulamada beklenmeyen bir sorun oluştu. Bu size de olduysa lütfen bize bildirin!" @@ -8091,7 +8691,7 @@ msgstr "Uygulamada beklenmeyen bir sorun oluştu. Bu size de olduysa lütfen biz msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Bluesky'e bir dizi yeni kullanıcı geldi! Hesabınızı en kısa sürede etkinleştireceğiz." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Bu ayarlar yalnızca takip akışına (\"Following\") uygulanır." @@ -8148,18 +8748,22 @@ msgstr "Bu içerik {0} tarafından barındırılıyor. Harici medyayı etkinleş msgid "This content is not available because one of the users involved has blocked the other." msgstr "Bu içerik, içerikte yer alan kullanıcılardan biri diğerini engellediği için mevcut değil." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Bu içerik, bir Bluesky hesabı olmadan görüntülenemez." #: src/screens/Messages/components/ChatListItem.tsx:362 msgid "This conversation is with a deleted or a deactivated account. Press for options" -msgstr "Bu sohbetin yapıldığı hesap ya silinmiş ya da devre dışı bırakılmış. Seçenekler için basın" +msgstr "Bu yazışmanın yapıldığı hesap ya silinmiş ya da devre dışı bırakılmış. Seçenekler için basın" #: src/components/dialogs/EmailDialog/screens/Update.tsx:156 msgid "This email is already associated with your account." msgstr "Bu e-posta zaten hesabınızla ilişkili." +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "Bu özellik, kullanıcıların yeni gönderileriniz ve yanıtlarınızdan bildirim almasını sağlar. Bunu kimler için etkinleştirmek istersiniz?" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Bu özellik beta aşamasındadır. Depo aktarmaları hakkında daha çok bilgi için <0>bu blog gönderisini okuyun." @@ -8172,7 +8776,7 @@ msgstr "Bu özellik bir uygulama şifresi kullanırken erişilemez. Lütfen ana msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Bu özellik Uygulama Şifresi kullanırken kullanılamaz. Lütfen ana şifrenizle giriş yapın." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Bu akış şu anda yüksek trafik alıyor ve geçici olarak kullanılamıyor. Lütfen daha sonra tekrar deneyin." @@ -8211,11 +8815,11 @@ msgstr "Bu işaret yazar tarafından uygulanmış." msgid "This label was applied by you." msgstr "Bu işaret sizin tarafınızdan uygulandı." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Bu işaretleyici hangi işaretleri yayınladığını şimdilik bildirmedi ve etkin olmayabilir." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Bu bağlantı sizi aşağıdaki web sitesine götürüyor:" @@ -8235,29 +8839,28 @@ msgstr "Bu liste boş." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Bu moderasyon hizmeti kullanılamıyor. Daha fazla ayrıntı için aşağıya bakın. Bu sorun devam ederse bizimle iletişime geçin." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Bu gönderi <0>{0} tarihinde oluşturulduğunu beyan ediyor, ancak Bluesky'da ilk olarak <1>{1} tarihinde görüldü." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Bu gönderide bilinmeyen bir threadgate türü var. Uygulamanız güncel olmayabilir." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Bu gönderi silindi." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Bu gönderi sadece giriş yapmış kullanıcılara görünür. Giriş yapmamış kullanıcılara görünmeyecektir." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "Bu gönderi yalnızca giriş yapmış kullanıcılara görünür." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Bu gönderi akışlarınızdan ve konularınızdan gizlenecektir. Bu işlem geri alınamaz." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "Bu gönderinin yazarı alıntılanmasını engellemiş." @@ -8265,11 +8868,11 @@ msgstr "Bu gönderinin yazarı alıntılanmasını engellemiş." msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Bu profil sadece giriş yapmış kullanıcılara görünür. Giriş yapmamış kullanıcılara görünmeyecektir." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Bu yanıt konunuzun altındaki gizli bir bölüme sıralanacaktır ve ona gelen yanıtlar hem sizin hem de başkaları için sessize alınacaktır." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Bu hizmet, kullanım şartları veya bir gizlilik politikası sunmamış." @@ -8277,6 +8880,10 @@ msgstr "Bu hizmet, kullanım şartları veya bir gizlilik politikası sunmamış msgid "This should create a domain record at:" msgstr "Bu şöyle bir alan adı kaydı açmalı:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "Bu sadece birkaç dakika alacaktır." + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Bir görünür adı olmadığından bu kullanıcı doğrulanamaz." @@ -8318,16 +8925,18 @@ msgstr "Bu kullanıcı kimseyi takip etmiyor." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Bu \"{0}\" kelimesini sessize alınmış kelimlerden silecek. Sonra her zaman geri ekleyebilirsiniz." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Bu @{0} kullanıcısını çabuk erişim listesinden kaldıracak." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Bu işlem, gönderinizin bu alıntıyla ilişiğini tüm kullanıcılar için kesecek ve yerine bir yer tutucu koyacaktır." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Konu seçenekleri" @@ -8336,24 +8945,27 @@ msgstr "Konu seçenekleri" msgid "Thread preferences" msgstr "Konu tercihleri" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Konu Tercihleri" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Dallanmalı" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Dallanmalı mod" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Konu Tercihleri" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "Kalan zaman: {0, plural, other {# saniye}}" @@ -8378,42 +8990,56 @@ msgstr "Bu raporu kime göndermek istersiniz?" msgid "Today" msgstr "Bugün" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Açılır menüyü aç/kapat" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Yetişkin içeriği etkinleştirmek veya devre dışı bırakmak için açın/kapayın" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Sesi açar/kapar" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "En öne çıkan" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "Önce en öne çıkan yanıtlar" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Konu başlığı" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Çevir" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "Ağaç görünümü" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Gündem" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Gündemdeki Videolar" @@ -8430,14 +9056,10 @@ msgstr "Tekrar dene" msgid "TV" msgstr "TV" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "İki adımlı doğrulama (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Kullanıcı adınızı girin" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Mesajınızı buraya yazın" @@ -8455,7 +9077,7 @@ msgstr "Bağlanılamıyor. Lütfen internet bağlantınızı kontrol edip tekrar #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8465,18 +9087,34 @@ msgstr "Hizmetinize ulaşılamıyor. Lütfen internet bağlantınızı kontrol e msgid "Unable to delete" msgstr "Silinemedi" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "Pull Request'i sök" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "Pull Request'i sök {currentChannel}" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "Erişilmez" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "Erişilemeyen akış bilgisi" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Engeli kaldır" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Engeli kaldır" @@ -8488,7 +9126,7 @@ msgstr "Engeli kaldır" msgid "Unblock account" msgstr "Hesabın engelini kaldır" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Hesabı Engelle?" @@ -8497,13 +9135,13 @@ msgstr "Hesabı Engelle?" msgid "Unblock list" msgstr "Listeden engeli kaldır" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Yeniden göndermeyi geri al" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Yeniden gönderiyi geri al ({0, plural, other {# yeniden gönderi}})" @@ -8512,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Takibi bırak" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "{0} adresini takibi bırak" @@ -8525,7 +9163,7 @@ msgstr "Hesabı takibi bırak" msgid "Unfollows the user" msgstr "Kullanıcıyı takipten çıkarır" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Maalesef abone olduğunuz işaretleyicilerin hiçbiri bu rapor türünü desteklemiyor." @@ -8538,12 +9176,12 @@ msgid "Unlike" msgstr "Beğenmeyi geri al" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Beğeniyi kaldır ({0, plural, other {# beğeni}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Sessizden çıkar" @@ -8557,8 +9195,8 @@ msgstr "Sessizden çıkar" msgid "Unmute {tag}" msgstr "{tag} etiketini sessizden çıkar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8566,18 +9204,18 @@ msgstr "Hesabı sessizden çıkar" #: src/components/dms/ConvoMenu.tsx:236 msgid "Unmute conversation" -msgstr "Görüşmeyi sessizden çıkar" +msgstr "Yazışmayı sessizden çıkar" #: src/view/screens/ProfileList.tsx:605 msgid "Unmute list" msgstr "Listeyi sessizden çıkar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Konunun sessizliğini kaldır" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Videonun sesini aç" @@ -8599,8 +9237,8 @@ msgstr "Akışı Sabitlemeyi Kaldır" msgid "Unpin from home" msgstr "Ana sayfadan sabitlemeyi kaldır" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Profilden sabitlemeyi kaldır" @@ -8616,8 +9254,8 @@ msgstr "{0} akışının ana sayfadan sabitlemesi kaldırıldı" msgid "Unpinned from your feeds" msgstr "Akışlarınızdan sabitlemesi kaldırıldı" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "E-posta hatırlatıcısını ertelemeyi kaldır" @@ -8638,7 +9276,7 @@ msgstr "Bu işaretleyicinin aboneliğinden ayrıl" msgid "Unsubscribed from list" msgstr "Liste aboneliğinden çıktınız" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Desteklenmeyen video türü" @@ -8664,8 +9302,8 @@ msgstr "<0>{displayName} kullanıcısının listelerini düzenleyin" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "E-postayı güncelle" @@ -8678,17 +9316,17 @@ msgstr "{domain} adresine güncelle" msgid "Update your email" msgstr "E-postanızı güncelleyin" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Alıntı ilişiğinin güncellenmesi başarısız oldu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Yanıt görünürlüğünü güncelleme başarısız oldu" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Güncelleniyor..." @@ -8700,20 +9338,20 @@ msgstr "Bunun yerine bir görsel ekle" msgid "Upload a text file to:" msgstr "Bir metin dosyası yükleyin:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Kameradan Yükle" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Dosyalardan Yükle" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8723,12 +9361,12 @@ msgstr "Kütüphaneden Yükle" msgid "Uploading images..." msgstr "Resimler yükleniyor..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Web bağlantısının görseli gönderiliyor..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Video yükleniyor..." @@ -8763,6 +9401,10 @@ msgstr "Önerileni kullan" msgid "Use this to sign in to the other app along with your handle." msgstr "Bunu, kullanıcı adınızla birlikte diğer uygulamada giriş yapmak için kullanın." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "KWS veya Bluesky'ın size ulaşma ihtimaline karşın hesabınızın e-posta adresini ya da sizin kontrolünüzde olan başka bir gerçek e-posta adresi kullanın." + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Kullanıcı:" @@ -8815,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Kullanıcı listesi güncellendi" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "Kullanıcı adı {MAX_SERVICE_HANDLE_LENGTH, plural, other {# karakter}}den daha uzun olamaz" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "Kullanıcı adı tire işareti ile başlayamaz veya bitemez" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "Kullanıcı adı sadece İngilizce harfler (a-z), rakamlar ve tire işareti barındırabilir" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Kullanıcı adı veya e-posta adresi" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "<0>@{0} tarafından takip edilen kullanıcılar" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "<0>@{0} kullanıcısını takip edenler" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Takip ettiğim kişiler" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "\"{0}\" içindeki kullanıcılar" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Takip ettiğiniz kullanıcılar" @@ -8848,11 +9502,11 @@ msgstr "Değer:" msgid "Verification failed, please try again." msgstr "Doğrulama başarısız, lütfen tekrar deneyin." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "Doğrulama ayarları" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "Doğrulama Ayarları" @@ -8872,8 +9526,15 @@ msgstr "Doğrulayan:" msgid "Verify account" msgstr "Hesabı doğrula" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "Tekrar onayla" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "Kodu doğrula" @@ -8882,21 +9543,20 @@ msgstr "Kodu doğrula" msgid "Verify DNS Record" msgstr "DNS Kaydını Doğrula" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "E-postayı doğrula" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "E-posta kodunu doğrulayın" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "E-posta onay diyaloğu" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "Şimdi onayla" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8906,23 +9566,31 @@ msgstr "Metin Dosyasını Doğrula" msgid "Verify this account?" msgstr "Bu hesap doğrulansın mı?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "Yaşınızı onaylayın" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "E-postanızı onaylayın" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "E-postanızı Doğrulayın" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "Onaylanıyor" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "Yaş güvencesi durumunuz onaylanıyor" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Versiyon {appVersion}" +msgid "Version {0}" +msgstr "Sürüm {0}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Video" @@ -8930,7 +9598,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "Video işlenemedi" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Video Akışı" @@ -8944,15 +9612,15 @@ msgstr "{0} videosu: {text}" msgid "Video Games" msgstr "Video Oyunları" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Video duraklatıldı" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Video oynatılıyor" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Video bulunamadı." @@ -8960,11 +9628,11 @@ msgstr "Video bulunamadı." msgid "Video settings" msgstr "Video ayarları" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Video yüklendi" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Video: {0}" @@ -8981,11 +9649,11 @@ msgstr "Videolar 3 dakikadan kısa olmalıdır" msgid "View {0}'s avatar" msgstr "{0}'ın avatarını görüntüle" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "{0} kullanıcısının profilini görüntüle" @@ -8993,7 +9661,7 @@ msgstr "{0} kullanıcısının profilini görüntüle" msgid "View {displayName}'s profile" msgstr "{displayName} kullanıcısının profilini görüntüle" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Engelli kullanıcının profilini görüntüle" @@ -9011,7 +9679,6 @@ msgstr "Hata ayıklama girişini görüntüle" msgid "View details" msgstr "Ayrıntıları görüntüle" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Bir telif ihlalini raporlamanın ayrıntılarını görüntüle" @@ -9024,23 +9691,23 @@ msgstr "Tam konuyu görüntüle" msgid "View information about these labels" msgstr "Bu işaretler hakkında bilgi al" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Daha fazlasını görüntüle" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Profili görüntüle" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Avatarı görüntüle" @@ -9056,28 +9723,28 @@ msgstr "Bu kullanıcının doğrulamalarını görüntüle" msgid "View users who like this feed" msgstr "Bu akışı beğenen kullanıcıları görün" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Videoyu izle" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Engellediğiniz hesapları görün" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "Varsayılan gönderi etkileşim ayarlarınızı görün" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Akışlarınızı görün ve daha fazlasını keşfedin" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Moderasyon listelerini görün" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Sessize aldığınız hesapları görün" @@ -9085,8 +9752,8 @@ msgstr "Sessize aldığınız hesapları görün" msgid "View your verifications" msgstr "Doğrulamalarınızı görüntüleyin" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Görseli tam boy gösterir" @@ -9094,16 +9761,20 @@ msgstr "Görseli tam boy gösterir" msgid "Views video in immersive mode" msgstr "Videoyu içine dalınan modda gösterir" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "Siteyi Ziyaret Et" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "Siteyi ziyaret et" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "Bildirim ayarlarınızı ziyaret edin" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Ses" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9122,6 +9793,14 @@ msgstr "İçeriği uyar ve akışlarda filtrele" msgid "Watch now" msgstr "Şimdi izle" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "Bu özelleştirilmiş akışı sağlayan hizmete bağlanamadık. Geçici olarak erişilmez ve sorunlar yaşıyor ya da kalıcı olarak devre dışı kalmış olabilir." + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "Bu listeyi bulamadık. Muhtemelen silinmiş." + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "Bu etiket için bir sonuç bulamadık." @@ -9130,14 +9809,18 @@ msgstr "Bu etiket için bir sonuç bulamadık." msgid "We couldn't find any results for that topic." msgstr "Bu konu başlığı için bir sonuç bulamadık." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" -msgstr "Bu görüşmeyi yükleyemedik" +msgstr "Bu yazışmayı yükleyemedik" #: src/screens/SignupQueued.tsx:160 msgid "We estimate {estimatedTime} until your account is ready." msgstr "Hesabınızın hazır olmasına {estimatedTime} tahmin ediyoruz." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "Yetişkin olduğunuzu onaylamak için <0>KWS ile işbirliği yapmaktayız. Aşağıdaki \"Başla\"ya tıkladığınızda KWS verdiğiniz email adresini kullanarak KWS teknolojisi kullanan başka oyunlar/hizmetler tarafından daha önce onaylı olup olmadığınızı kontrol edecektir. Eğer değilse, KWS size yaşınızı onaylama adımlarını e-posta ile yollayacaktır. Bitirdiğinizde Bluesky'ı kullanmaya devam etmeniz için geri yönlendirileceksiniz." + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "<0>{0} adresine başka bir doğrulama e-postası gönderdik." @@ -9150,15 +9833,15 @@ msgstr "Harika vakit geçirmenizi umuyoruz. Unutmayın, Bluesky:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Takip ettiklerinizden gönderi kalmadı. İşte <0/> akışından son gelenler." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "En az iki ilgi alanı seçmenizi öneririz." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "<0>{0} adresine bir bağlantı içeren bir e-posta yolladık. Lütfen e-posta doğrulama sürecini tamamlamak için o bağlantıya tıklayın." -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Video yüklemenize izin verilip verilmediğini belirleyemedik. Lütfen tekrar deneyin." @@ -9166,10 +9849,14 @@ msgstr "Video yüklemenize izin verilip verilmediğini belirleyemedik. Lütfen t msgid "We were unable to load your birth date preferences. Please try again." msgstr "Doğum tarihinizi yükleyemedik. Lütfen tekrar deneyin." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "Yapılandırılmış işaretleyicilerinizi şu anda yükleyemedik." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "Bir bağlantı probleminden dolayı onayı alamadık. Daha sonra gelebilir. Geldiği takdirde hesabınız kendiliğinden güncellenecektir." + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Bağlantı kuramadık. Hesabınızı kurmaya devam etmek için tekrar deneyin. Başarısız olmaya devam ederse bu akışı atlayabilirsiniz." @@ -9178,7 +9865,7 @@ msgstr "Bağlantı kuramadık. Hesabınızı kurmaya devam etmek için tekrar de msgid "We will let you know when your account is ready." msgstr "Hesabınız hazır olduğunda size bildireceğiz." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "<0>{0} adresine bir bağlantı içeren bir e-posta yollayacağız. Lütfen e-posta doğrulama sürecini tamamlamak için o bağlantıya tıklayın." @@ -9186,6 +9873,22 @@ msgstr "<0>{0} adresine bir bağlantı içeren bir e-posta yollayacağız. L msgid "We'll use this to help customize your experience." msgstr "Bu, deneyiminizi özelleştirmenize yardımcı olmak için kullanılacak." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Ayrıca <0>Topluluk Kurallarımızı güncelliyor ve görüşlerinizi istiyoruz! Bu yeni kurallar 15 Ekim 2025 tarihinde devreye girecektir." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "Ayrıca Topluluk Kurallarımızı güncelliyor ve görüşlerinizi istiyoruz! Bu yeni kurallar 15 Ekim 2025 tarihinde devreye girecektir." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "Yaş güvencesi durumunuzu sunucularımızla onaylıyoruz. Bu birkaç saniye sürer." + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "Hesabınızın yaş güvencesi işlemini başlatmakta sıkıntı yaşıyoruz. Lütfen yardım için <0>desteğe ulaşın." + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9195,7 +9898,7 @@ msgstr "Ağ sorunları yaşıyoruz, tekrar deneyin" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Bluesky'da yeni bir doğrulama katmanı sunuyoruz - kolay görülebilen bir onay işareti." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Sizi aramızda görmekten çok mutluyuz!" @@ -9207,15 +9910,15 @@ msgstr "Üzgünüz, ancak bu listeyi çözemedik. Bu durum devam ederse, lütfen msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Üzgünüz, ancak sessize alınmış kelimelerinizi şu anda yükleyemedik. Lütfen tekrar deneyin." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Üzgünüz, ancak aramanız tamamlanamadı. Lütfen birkaç dakika içinde tekrar deneyin." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Üzgünüz! Yanıtladığınız gönderi silindi." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Üzgünüz! Aradığınız sayfayı bulamıyoruz." @@ -9224,6 +9927,26 @@ msgstr "Üzgünüz! Aradığınız sayfayı bulamıyoruz." msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Üzgünüz! Sadece yirmi işaretleyiciye abone olabilirsiniz ve yirmilik sınırınıza ulaştınız." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "15 Eylül 2025 itibariyle <0>Hizmet Şartlarımızı, <1>Gizlilik Politikamızı ve <2>Telif Politikamızı güncelliyoruz." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "Politikalarımızı güncelliyoruz" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "15 Eylül 2025 itibariyle Hizmet Şartlarımızı, Gizlilik Politikamızı ve Telif Politikamızı güncelliyoruz." + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "15 Eylül 2025 itibariyle Hizmet Şartlarımızı, Gizlilik Politikamızı ve Telif Politikamızı güncelliyoruz. Ayrıca Topluluk Kurallarımızı da güncelliyor ve görüşlerinizi istiyoruz! Bu yeni kurallar 15 Ekim 2025 tarihinde devreye girecektir. Blog gönderimizi okuyarak bu değişikliklere ve düşüncelerinizi bize nasıl iletebileceğinize dair bilgi edinebilirsiniz." + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "Yaş güvencesi durumunuzu onayladık. Bu diyalogu artık kapatabilirsiniz." + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Tekrar hoş geldiniz!" @@ -9242,7 +9965,7 @@ msgstr "Başlangıç ​​paketinize ne ad vermek istersiniz?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Nasılsınız?" @@ -9258,11 +9981,11 @@ msgstr "Bu gönderide hangi diller kullanılıyor?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Algoritmik akışlarınızda hangi dilleri görmek istersiniz?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Bu gönderiyle kim etkileşime geçebilir?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Kimler yanıtlayabilir" @@ -9271,12 +9994,12 @@ msgid "Who can verify?" msgstr "Kim doğrulayabilir?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Ay ay!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "Ah! Gündemdeki videolar yüklenemedi." @@ -9324,12 +10047,12 @@ msgstr "Bu kullanıcı neden gözden geçirilmeli?" msgid "Write a message" msgstr "Bir mesaj yaz" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Gönderi yaz" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Yanıtınızı yazın" @@ -9360,11 +10083,11 @@ msgstr "Evet, devre dışı bırak" msgid "Yes, delete this starter pack" msgstr "Evet, bu başlangıç ​​paketini sil" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Evet, ilişiğini kes" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Evet, gizle" @@ -9380,6 +10103,10 @@ msgstr "Dün" msgid "You" msgstr "Siz" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "Ayrıca <0>Bluesky’ın Topluluk Kurallarını da kabul ediyorsunuz. <1>Topluluk Kurallarımızın güncel sürümü 15 Ekim'de devreye girecektir." + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "Güvenilir bir doğrulayıcısınız" @@ -9388,6 +10115,10 @@ msgstr "Güvenilir bir doğrulayıcısınız" msgid "You are creating an account on" msgstr "Hesabınızın oluşturulacağı yer sağlayıcı" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "Şu anda Bluesky'ın Yaş Güvencesi işlemine erişemiyorsunuz. Bunun bir hatadan kaynaklı olduğunu düşünüyorsanız lütfen <0>moderasyon ekibimize ulaşın." + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Sıradasınız." @@ -9405,7 +10136,7 @@ msgstr "Artık canlı yayında değilsiniz" msgid "You are not allowed to go live" msgstr "Canlı yayın başlatma yetkiniz yok" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Video yükleme izniniz yok." @@ -9422,7 +10153,6 @@ msgid "You are verified" msgstr "Doğrulanmışsınız" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "Doğrulanmışsınız. Görünen adınızı değiştirirseniz doğrulama durumunuzu kaybedeceksiniz. <0>Daha fazla bilgi edinin." @@ -9443,10 +10173,18 @@ msgstr "Ayrıca takip edebileceğiniz yeni Özel Akışlar keşfedebilirsiniz." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Ayrıca hesabınızı geçici olarak devre dışı bırakabilir ve istediğiniz zaman yeniden etkinleştirebilirsiniz." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "Uygulama içindeki sohbet ayarlarından sohbet bildirimlerinin sesli olup olmayacağını seçebilirsiniz" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Hangi ayarı seçerseniz seçin devam eden yazışmaları sürdürebilirsiniz." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "Artık belirli kişiler gönderi paylaştığında bildirim almayı seçebilirsiniz. Güncellemelerini zamanlı almak istediğiniz biri varsa, profiline gidin ve takip et düğmesinin yanındaki yeni zil simgesini bulun." + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9456,12 +10194,12 @@ msgstr "Artık yeni şifrenizle giriş yapabilirsiniz." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Giriş yapmaya devam etmek için hesabınızı yeniden etkinleştirebilirsiniz. Profiliniz ve gönderileriniz diğer kullanıcılar tarafından görülebilir hale gelecektir." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "Varsayılan etkileşim ayarlarını <0>Ayarlar → Moderasyon → Etkileşim ayarları bölümünden belirleyebilirsiniz." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Bunu daha sonra ayarlarınızdan güncelleyebilirsiniz." @@ -9474,7 +10212,7 @@ msgstr "Hiç takipçiniz yok." msgid "You don't follow any users who follow @{name}." msgstr "@{name} kullanıcısını takip eden hiçbir kullanıcıyı takip etmiyorsunuz." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "Şu anda herhangi bir sohbet isteğiniz yok." @@ -9482,15 +10220,15 @@ msgstr "Şu anda herhangi bir sohbet isteğiniz yok." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Henüz hiç davet kodunuz yok! Bluesky'de biraz daha uzun süre kaldıktan sonra size bazı kodlar göndereceğiz." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Sabitlemiş akışınız yok." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Kaydedilmiş akışınız yok." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Yazarı engellediniz veya yazar tarafından engellendiniz." @@ -9504,6 +10242,10 @@ msgstr "Bu kullanıcıyı engellediniz" msgid "You have blocked this user. You cannot view their content." msgstr "Bu kullanıcıyı engellediniz. İçeriklerini göremezsiniz." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "Yanıtlama, alıntılama ve bahsetme bildirimlerini tamamen devre dışı bıraktınız, bu nedenle bu sekme artık güncellenmeyecek. Bunu ayarlamak için <0>bildirim ayarlarınızı ziyaret edin." + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9528,9 +10270,9 @@ msgstr "Bu hesabı sessize almışsınız." msgid "You have muted this user" msgstr "Bu kullanıcıyı sessize almışsınız" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" -msgstr "Henüz hiç görüşmeniz yok. Bir tane başlatın!" +msgstr "Henüz hiç yazışmanız yok. Bir tane başlatın!" #: src/view/com/feeds/ProfileFeedgens.tsx:139 msgid "You have no feeds." @@ -9549,7 +10291,7 @@ msgstr "Henüz hiçbir hesabı engellemediniz. Bir hesabı engellemek için prof msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Henüz hiçbir hesabı sessize almadınız. Bir hesabı sessize almak için, profillerine gidin ve hesabındaki menüden \"Hesabı sessize al\"ı seçin." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Sonuna ulaştınız" @@ -9574,6 +10316,10 @@ msgstr "Henüz hiçbir kelimeyi veya etiketi sessize almadınız" msgid "You hid this reply." msgstr "Bu yanıtı gizlediniz." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "Bu işlemi zaten {0} önce başlattınız. E-postaların gelen kutunuza ulaşması 5 dakikaya kadar sürebilir. Lütfen tekrar denemeden önce birkaç dakika bekleyin." + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Yanlış yerleştirildiğini düşünüyorsanız, kendi koymadığınız işaretlere itiraz edebilirsiniz." @@ -9594,7 +10340,7 @@ msgstr "En fazla 3 akış ekleyebilirsiniz" msgid "You may only select up to 4 images" msgstr "En fazla 4 görsel seçebilirsiniz" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "Hesap oluşturmak için 13 yaşında veya daha büyük olmanız gerekir." @@ -9602,6 +10348,14 @@ msgstr "Hesap oluşturmak için 13 yaşında veya daha büyük olmanız gerekir. msgid "You must be following at least seven other people to generate a starter pack." msgstr "Başlangıç ​​paketi oluşturmak için en az yedi kişiyi takip etmeniz gerekir." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "Aşağıdaki ayarlara ulaşmak için yaş güvencesini tamamlamanız gerekmektedir." + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "Bu ekrana erişmek için yaş güvencesini tamamlamanız gerekmektedir." + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Karekod kaydetmek için fotoğraf galerinize erişim izni vermelisiniz" @@ -9610,6 +10364,11 @@ msgstr "Karekod kaydetmek için fotoğraf galerinize erişim izni vermelisiniz" msgid "You must select at least one labeler for a report" msgstr "Bir rapor için en az bir işaretleyici seçmelisiniz" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "Bu gönderiyi görüntülemek için giriş yapmalısınız." + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "E-posta iki adımlı doğrulamasını etkinleştirebilmeniz için öncelikle e-posta adresinizi doğrulamanız gerekmektedir." @@ -9618,7 +10377,7 @@ msgstr "E-posta iki adımlı doğrulamasını etkinleştirebilmeniz için öncel msgid "You previously deactivated @{0}." msgstr "@{0} kullanıcısını önceden devre dışı bırakmıştınız." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "Şimdi uygulamayı yeniden başlatmak isteyebilirsiniz." @@ -9630,16 +10389,20 @@ msgstr "{0} tepkisi verdiniz" msgid "You reacted {0} to {1}" msgstr "Şuna {0} tepkisi verdiniz: {1}" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Tüm hesaplarınızdan çıkış yapacaksınız." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "Artık {0} için bildirim almayacaksınız" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Artık bu konu için bildirim almayacaksınız" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Artık bu konu için bildirim alacaksınız" @@ -9659,11 +10422,11 @@ msgstr "Siz: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Siz {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Hesabınızı oluşturmayı tamamladığınızda önerilen kullanıcıları ve akışları takip edeceksiniz!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Hesabınızı oluşturmayı tamamladığınızda önerilen kullanıcıları takip edeceksiniz!" @@ -9675,9 +10438,9 @@ msgstr "Bu kişileri ve {0} kişiyi daha takip edeceksiniz" msgid "You'll follow these people right away" msgstr "Bu kişileri hemen takip edeceksiniz" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Siz olduğunuzu doğrulamak için <0>{0} adresine bir e-posta gönderilecektir." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "{0} için bildirim almaya başlayacaksınız!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9705,6 +10468,10 @@ msgstr "Bu gönderide bir kelimeyi veya etiketi gizlemeyi seçtiniz." msgid "You've found some people to follow" msgstr "Takip edebileceğiniz bazı kişiler buldunuz" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "Aktif içeriğin sonuna ulaştınız." + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Akışınızın sonuna ulaştınız! Takip edebileceğiniz daha fazla hesap bulun." @@ -9713,19 +10480,23 @@ msgstr "Akışınızın sonuna ulaştınız! Takip edebileceğiniz daha fazla he msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "İzin verilen en fazla istek sayısına ulaştınız. Lütfen daha sonra tekrar deneyin." -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "Aktif içeriğin başına ulaştınız." + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Günlük video yükleme limitinize ulaştınız (çok fazla bayt)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Günlük video yükleme limitinize ulaştınız (çok sayıda video)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "İzleyebileceğiniz video kalmadı. Belki de bir mola vermenin zamanı gelmiştir?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Hesabınız" @@ -9737,7 +10508,7 @@ msgstr "Hesabınız silindi" msgid "Your account has been suspended" msgstr "Hesabınız askıya alındı" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Hesabınız video yüklemek için yeterince eski değil. Lütfen daha sonra tekrar deneyin." @@ -9753,11 +10524,11 @@ msgstr "Hesabınızın <0>Bluesky Social Hizmet Şartları'nı ihlal ettiği msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "İtirazınız gönderildi. İtirazınız kabul edilirse size bir e-posta gönderilecektir." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Doğum tarihiniz" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Tarayıcınız video formatını desteklemiyor. Lütfen farklı bir tarayıcı deneyin." @@ -9773,13 +10544,15 @@ msgstr "Tercihiniz bundan sonraki web bağlantıları için hatırlanacaktır. O msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Mevcut kullanıcı adınız <0>{0} otomatik bir şekilde sizin için ayrılmış olarak kalacaktır. İstediğiniz zaman ona geri dönebilirsiniz." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "E-posta adresiniz güncellendi ancak henüz doğrulanmadı. Bir sonraki adım olarak lütfen yeni e-postanızı doğrulayın." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "E-posta adresiniz" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "E-postanız geçersiz gibi görünüyor." @@ -9788,15 +10561,11 @@ msgstr "E-postanız geçersiz gibi görünüyor." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "E-posta adresiniz doğrulanmamış. Lütfen Bluesky'ın tüm özelliklerinin tadını çıkarabilmek için e-postanızı doğrulayın." -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "E-postanız henüz doğrulanmadı. Bu, önerdiğimiz önemli bir güvenlik adımıdır." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "İlk beğeniniz!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "Takipçileriniz" @@ -9808,19 +10577,15 @@ msgstr "Takip ettiğiniz akış boş! Neler olduğunu görmek için daha fazla k msgid "Your full handle will be <0>@{0}" msgstr "Tam kullanıcı adınız <0>@{0} olacak" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "Tam kullanıcı adınız <0>@{0} olacaktır" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "İlgi alanlarınız" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "İlgi alanlarınız güncellendi!" @@ -9837,15 +10602,15 @@ msgstr "Sessize aldığınız kelimeler" msgid "Your password has been changed successfully!" msgstr "Şifreniz başarıyla değiştirildi!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "Şifreniz en az 8 karakter uzunluğunda olmalıdır." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Gönderiniz yayınlandı" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Gönderileriniz yayınlandı" @@ -9853,15 +10618,19 @@ msgstr "Gönderileriniz yayınlandı" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Gönderileriniz, beğenileriniz ve engellemeleriniz herkese açıktır. Sessizlikleriniz özeldir." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "Tercih ettiğiniz dil" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Profiliniz, gönderileriniz, akışlarınız ve listeleriniz artık diğer Bluesky kullanıcıları tarafından görülemeyecek. Hesabınızı istediğiniz zaman oturum açarak yeniden etkinleştirebilirsiniz." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Yanıtınız yayınlandı" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "Raporunuz <0>{0} işaretleyicisine gönderilecektir." @@ -9869,7 +10638,7 @@ msgstr "Raporunuz <0>{0} işaretleyicisine gönderilecektir." msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Raporunuz Bluesky Moderasyon Hizmetine gönderilecektir" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "Seçtiğiniz ilgi alanları, önemsediğiniz içerikleri size sunmamıza yardımcı olur." diff --git a/src/locale/locales/uk/messages.po b/src/locale/locales/uk/messages.po index 30b629cb40..554ee2eaf4 100644 --- a/src/locale/locales/uk/messages.po +++ b/src/locale/locales/uk/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: uk\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:41\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" @@ -27,7 +27,7 @@ msgstr "" msgid "(contains embedded content)" msgstr "(містить вбудований вміст)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(немає ел. адреси)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# репост} few {# репости} many {# репо msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# секунда} few {# секунди} many {# секунд} other {# секунд}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -90,17 +90,18 @@ msgstr "" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {підписник} few {підписники} many {підписників} other {підписників}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {читаю} few {читаю} many {читаю} other {читаю}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {вподобайка} few {вподобайки} many {вподобайки} other {вподобайки}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {вподобайка} few {вподобайки} many { msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {пост} few {пости} many {постів} other {постів}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {цитата} few {цитати} many {цитати} other {цитата}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {репост} few {репости} many {репостів} other {репостів}}" @@ -135,6 +138,10 @@ msgstr "{0} <0>у <1>мітки" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>у <1>словах та мітках" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "" @@ -143,11 +150,15 @@ msgstr "" msgid "{0} is not a valid URL" msgstr "" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} приєдналися цього тижня" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} з {1}" @@ -164,8 +175,16 @@ msgstr "" msgid "{0} reacted {1} to {2}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "Аватарка користувача {0}" @@ -197,12 +216,12 @@ msgstr "{0}хв" msgid "{0}s" msgstr "{0}с" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Власна підбірка {displayName}" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {година} few {години} many { msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {хвилина} few {хвилини} many {хвилин} other {хвилин}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} та <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} інші} few {{formattedAuthorsCount} інші} many {{formattedAuthorsCount} інші} other {{formattedAuthorsCount} інші}} почали вас читати" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} та <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} інший} few {{formattedAuthorsCount} інші} many {{formattedAuthorsCount} інші} other {{formattedAuthorsCount} інші}} вподобали створену вами стрічку" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} та <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} інший} few {{formattedAuthorsCount} інші} many {{formattedAuthorsCount} інші} other {{formattedAuthorsCount} інші}} вподобали ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} та <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} інший} few {{formattedAuthorsCount} інші} many {{formattedAuthorsCount} інші} other {{formattedAuthorsCount} інші}} зробили репост" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} та <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} інший} few {{formattedAuthorsCount} інші} many {{formattedAuthorsCount} інші} other {{formattedAuthorsCount} інші}} зареєструвались зі створеним вами початковим набором" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} почали вас читати" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} теж почали вас читати" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} вподобав створену вами стрічку" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} вподобав ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} зробив репост" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} зареєструвався зі створеним вами початковим набором" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} та {additionalAuthorsCount, plural, one {{formattedAuthorsCount} інші} few {{formattedAuthorsCount} інші} many {{formattedAuthorsCount} інші} other {{formattedAuthorsCount} інші}} почали вас читати" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} та {additionalAuthorsCount, plural, one {{formattedAuthorsCount} інші} few {{formattedAuthorsCount} інші} many {{formattedAuthorsCount} інші} other {{formattedAuthorsCount} інші}} вподобали створену вами стрічку" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} та {additionalAuthorsCount, plural, one {{formattedAuthorsCount} інші} few {{formattedAuthorsCount} інші} many {{formattedAuthorsCount} інші} other {{formattedAuthorsCount} інші}} вподобали ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} та {additionalAuthorsCount, plural, one {{formattedAuthorsCount} інші} few {{formattedAuthorsCount} інші} many {{formattedAuthorsCount} інші} other {{formattedAuthorsCount} інші}} зробили репост" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} та {additionalAuthorsCount, plural, one {{formattedAuthorsCount} інші} few {{formattedAuthorsCount} інші} many {{formattedAuthorsCount} інші} other {{formattedAuthorsCount} інші}} зареєструвались зі створеним вами початковим набором" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} почали вас читати" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} теж почали вас читати" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} сподобалась ваша стрічка" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} сподобався ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} зробив репост" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} зареєструвався з вашим початковим набором" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} підписок" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "{handle} неможливо написати" @@ -392,7 +410,7 @@ msgstr "" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -432,12 +450,12 @@ msgstr "" msgid "+{computedTotal}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, та {2, plural, one {# інші} few {# інші} many {# інші} other {# інші}} долучені до вашої підбірки" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, та {2, plural, one {# інші} few {# інші} many {# інші} other {# інші}} долучені до вашої підбірки" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {читач} few {читачі} many {чит msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {читаєте} few {читаєте} many {читаєте} other {читаєте}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} та<1> <2>{1} у підбірці" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} у вашій підбірці" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} учасників" @@ -466,11 +484,11 @@ msgstr "<0>{0} учасників" msgid "<0>{date} at {time}" msgstr "<0>{date} о {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Ви та<1> <2>{0} у вашій підбірці" @@ -503,10 +521,14 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Інформація" @@ -524,25 +546,25 @@ msgstr "" msgid "Accept Request" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Доступність" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Налаштування доступності" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Обліковий запис" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Обліковий запис відстежується" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Обліковий запис ігнорується" msgid "Account Muted by List" msgstr "Обліковий запис ігноровано списком" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Параметри облікового запису" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Обліковий запис вилучено зі швидкого доступу" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Обліковий запис не відстежується" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Обліковий запис не ігнорується" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Додати" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Додати ще {0} для продовження" @@ -634,8 +666,8 @@ msgstr "Додати обліковий запис" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Додати альтернативний текст" msgid "Add alt text (optional)" msgstr "Додати альтернативний текст (за бажанням)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Додати інший обліковий запис" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Написати ще" @@ -670,8 +702,8 @@ msgstr "Додати пароль застосунку" msgid "Add emoji reaction" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "" @@ -683,7 +715,7 @@ msgstr "" msgid "Add muted words and tags" msgstr "Додати ігноровані слова та теги" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Написати" @@ -704,7 +736,7 @@ msgstr "" msgid "Add recommended feeds" msgstr "Додати рекомендовані стрічки" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Додати стрічки до початкового списку!" @@ -725,10 +757,6 @@ msgstr "Додати цю стрічку до вашої стрічки" msgid "Add to lists" msgstr "Додати до списку" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Додати до моїх стрічок" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "" @@ -738,11 +766,11 @@ msgstr "" msgid "Added to list" msgstr "Додано до списку" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Додано до моїх стрічок" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "" @@ -750,18 +778,18 @@ msgstr "" msgid "Adult" msgstr "Дорослий" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Вміст для дорослих" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Вміст для дорослих може бути увімкнено лише через вебверсію <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Контент для дорослих вимкнено." @@ -770,16 +798,32 @@ msgstr "Контент для дорослих вимкнено." msgid "Adult Content labels" msgstr "Мітки вмісту для дорослих" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Розширені" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Усе" @@ -793,7 +837,7 @@ msgstr "Здійснено підписку на усі облікові зап msgid "All languages" msgstr "" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Усі збережені стрічки в одному місці." @@ -802,16 +846,21 @@ msgstr "Усі збережені стрічки в одному місці." msgid "Allow access to your direct messages" msgstr "Дозволити доступ до ваших особистих повідомлень" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Дозволяти нові повідомлення від" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Дозволити відповіді від:" @@ -828,13 +877,13 @@ msgstr "Вже маєте код?" msgid "Already signed in as @{0}" msgstr "Вже увійшли як @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "" msgid "Alt text" msgstr "Альтернативний текст" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Альтернативний текст" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Альтернативний текст описує зображення для незрячих та користувачів із вадами зору, та надає додатковий контекст для всіх." @@ -861,27 +910,19 @@ msgstr "" msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Було надіслано лист на адресу {0}. Він містить код підтвердження, який можна ввести нижче." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Лист надіслано! Будь ласка, введіть код підтвердження з надісланого листа внизу." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Виникла помилка" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Виникла помилка" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Виникла помилка під час стискання цього відео." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "" @@ -889,11 +930,11 @@ msgstr "" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Сталася помилка під час генерації вашої підбірки. Хочете спробувати ще раз?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Сталася помилка під час завантаження відео. Будь ласка, спробуйте пізніше." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Сталася помилка під час завантаження відео. Будь ласка, спробуйте ще." @@ -910,7 +951,7 @@ msgstr "Сталася помилка під час обрання відео" msgid "An error occurred while trying to follow all" msgstr "Сталася помилка при спробі читати усіх" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Сталася помилка під час завантаження відео." @@ -934,8 +975,8 @@ msgstr "Сталася помилка при спробі відкрити ча #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "Сталася невідома помилка" msgid "an unknown labeler" msgstr "невідомий мітник" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "та" @@ -963,10 +1004,14 @@ msgstr "та" msgid "Animals" msgstr "Тварини" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "Анімована GIF" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "" @@ -980,7 +1025,13 @@ msgstr "Антисоціальна поведінка" msgid "Anybody can interact" msgstr "Усі можуть взаємодіяти" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "Назва може містити лише латинські літе msgid "App password names must be at least 4 characters long" msgstr "Назва повинна бути не менше 4 символів у довжину" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Паролі застосунку" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Паролі для застосунків" @@ -1053,10 +1104,10 @@ msgstr "" msgid "Appeal this decision" msgstr "Оскаржити це рішення" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Оформлення" @@ -1065,12 +1116,20 @@ msgstr "Оформлення" msgid "Apply default recommended feeds" msgstr "Застосувати рекомендовані стрічки за замовчуванням" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Архівовано {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Архівований пост" @@ -1078,7 +1137,7 @@ msgstr "Архівований пост" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Ви дійсно хочете видалити пароль застосунку «{0}»?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Ви впевнені, що хочете видалити це повідомлення? Повідомлення буде видалено для вас, але не для іншого учасника розмови." @@ -1098,19 +1157,15 @@ msgstr "" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Ви впевнені, що хочете залишити цю розмову? Повідомлення зникнуть для вас, але не для співрозмовника." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Ви впевнені, що бажаєте видалити {0} зі стрічки?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Ви впевнені, що бажаєте вилучити це зі своїх стрічок?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Ви дійсно бажаєте видалити цю чернетку?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Ви справді хочете не публікувати пост?" @@ -1131,29 +1186,26 @@ msgstr "Мистецтво" msgid "Artistic or non-erotic nudity." msgstr "Художня або нееротична оголеність." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Не менше 3 символів" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Параметри автовідтворення перенесено до розділу налаштувань <0>Вміст та медіа." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Автовідтворення відео та GIF" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Автовідтворення відео та GIF" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Назад" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "" @@ -1195,28 +1247,44 @@ msgstr "Перед створенням початкового набору ви msgid "Before you can accept this chat request, you must first verify your email." msgstr "" +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Дата народження" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Заблокувати" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Заблокувати" msgid "Block account" msgstr "Заблокувати обліковий запис" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Заблокувати обліковий запис?" @@ -1262,20 +1330,20 @@ msgstr "" msgid "Block User" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Заблоковано" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Заблоковані облікові записи" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Заблоковані облікові записи" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Заблоковані облікові записи не можуть вам відповідати, згадувати вас у своїх постах, і взаємодіяти з вами будь-яким іншим чином." @@ -1284,11 +1352,11 @@ msgstr "Заблоковані облікові записи не можуть msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Заблоковані облікові записи не можуть вам відповідати, згадувати вас у своїх постах, і взаємодіяти з вами будь-яким іншим чином. Ви не будете бачити їхні пости і вони не будуть бачити ваші." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Заблокований пост." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Блокування не перешкоджає мітнику розміщувати мітки на ваш обліковий запис." @@ -1309,11 +1377,12 @@ msgstr "Блог" msgid "Bluesky" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky не може підтвердити автентичність зазначеної дати." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1347,6 +1416,14 @@ msgstr "Bluesky не буде показувати ваш профіль і по msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "" @@ -1368,23 +1445,20 @@ msgstr "Розмити зображення і фільтрувати їх зі msgid "Books" msgstr "Книги" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Переглянути більше облікових записів на сторінці Відкриття" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Переглянути більше стрічок на сторінці Відкриття" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Переглянути більше пропозицій" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Переглянути більше запропонованого на сторінці Відкриття" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Організація" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Від {0}" @@ -1428,15 +1502,23 @@ msgstr "Від {0}" msgid "By <0>{0}" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Зі створенням облікового запису ви погоджуєтеся з <0>Політикою конфіденційності." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Зі створенням облікового запису ви погоджуєтеся з <0>Умовами надання послуг та <1>Політикою конфіденційності." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Зі створенням облікового запису ви погоджуєтеся з <0>Умовами надання послуг." @@ -1448,14 +1530,17 @@ msgstr "" msgid "Camera" msgstr "Камера" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Камера" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Скасувати" @@ -1500,11 +1582,7 @@ msgstr "Скасувати видалення облікового запису" msgid "Cancel image crop" msgstr "Скасувати обрізання зображення" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Скасувати зміни облікового запису" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Скасувати цитування посту" @@ -1516,14 +1594,10 @@ msgstr "" msgid "Cancel search" msgstr "Скасувати пошук" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Скасовує відкриття посилання" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Не можна взаємодіяти із заблокованим користувачем" @@ -1553,17 +1627,12 @@ msgstr "" msgid "Change app language" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Змінити адресу електронної пошти" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Змінити псевдонім" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "" @@ -1579,14 +1648,6 @@ msgstr "" msgid "Change report reason" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Змінити адресу електронної пошти" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Змінити адресу електронної пошти" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "" @@ -1596,10 +1657,15 @@ msgstr "" msgid "Changes hosting provider" msgstr "" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Чат" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Чат стишено" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Налаштування чату" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Налаштування чату" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Сповіщення чату увімкнено" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "" @@ -1661,7 +1738,7 @@ msgstr "Перевірте свою поштову скриньку на ная msgid "Choose domain verification method" msgstr "Змінити метод підтвердження домену" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Обрати стрічки" @@ -1669,7 +1746,7 @@ msgstr "Обрати стрічки" msgid "Choose for me" msgstr "Обрати для мене" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Обрати людей" @@ -1685,23 +1762,23 @@ msgstr "Обрати цей колір для свого аватару" msgid "Choose your account provider" msgstr "" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Вкажіть пароль" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Ваш псевдонім" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "" @@ -1714,23 +1791,27 @@ msgstr "" msgid "Clear search query" msgstr "Очистити пошуковий запит" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "торкніться тут" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Торкніться, щоб вимкнути цитування цього допису." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Торкніться, щоб увімкнути цитування цього допису." @@ -1750,14 +1831,16 @@ msgstr "Клімат" msgid "Clip 🐴 clop 🐴" msgstr "Тик 🐴 тигидик 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Тик 🐴 тигидик 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Закрити" @@ -1789,13 +1876,15 @@ msgstr "Закрити сповіщення" msgid "Close bottom drawer" msgstr "Закрити нижнє меню" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Закрити діалогове вікно" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "" @@ -1804,7 +1893,7 @@ msgstr "" msgid "Close emoji picker" msgstr "" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Закрити діалогове вікно GIF" @@ -1822,7 +1911,7 @@ msgstr "Закрити перегляд зображення" msgid "Close menu" msgstr "" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Закрити діалогове вікно" @@ -1830,7 +1919,7 @@ msgstr "Закрити діалогове вікно" msgid "Closes password update alert" msgstr "Закриває сповіщення про оновлення пароля" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "" @@ -1843,16 +1932,16 @@ msgstr "" msgid "Closes viewer for header image" msgstr "Закриває перегляд зображення" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Згорнути список користувачів" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Згортає список користувачів для даного сповіщення" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Колірний режим" @@ -1870,7 +1959,8 @@ msgstr "Комедія" msgid "Comics" msgstr "Комікси" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Правила спільноти" @@ -1879,38 +1969,34 @@ msgstr "Правила спільноти" msgid "Complete onboarding and start using your account" msgstr "Завершити ознайомлення та розпочати користуватися обліковим записом" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Завершити завдання" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Новий пост" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Відповісти" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Стискання відео..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Налаштувати фільтрування вмісту для категорії: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Налаштовано <0>у налаштуваннях модерації." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Підтвердити налаштування мови вмісту" msgid "Confirm delete account" msgstr "Підтвердити видалення облікового запису" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Підтвердити ваш вік:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Підтвердити вашу дату народження" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Підтвердити вашу дату народження" msgid "Confirmation code" msgstr "Код підтвердження" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Код підтвердження" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "З’єднання..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Служба підтримки" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Вміст та медіа" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Вміст та медіа" @@ -1977,7 +2069,8 @@ msgstr "Вміст та медіа" msgid "Content Blocked" msgstr "Вміст заблоковано" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Фільтри контенту" @@ -2006,10 +2099,12 @@ msgstr "Попередження про вміст" msgid "Content warnings" msgstr "Попередження про вміст" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Тло контекстного меню натисніть, щоб закрити меню." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Далі" msgid "Continue as {0} (currently signed in)" msgstr "Продовжити як {0} (поточний користувач)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Продовжити гілку..." @@ -2029,6 +2129,10 @@ msgstr "Продовжити гілку..." msgid "Continue to next step" msgstr "Продовжити до наступного кроку" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Скопійовано" msgid "Copied build version to clipboard" msgstr "Скопійовано версію збірки до буфера обміну" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "" msgid "Copy" msgstr "Скопіювати" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Копіювати пароль застосунку" @@ -2087,8 +2187,8 @@ msgstr "Копіювати пароль застосунку" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "" @@ -2120,10 +2220,10 @@ msgstr "Копіювати посилання" msgid "Copy link to list" msgstr "Копіювати посилання на список" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Копіювати посилання на пост" @@ -2136,18 +2236,18 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Копіювати текст повідомлення" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Копіювати текст повідомлення" @@ -2159,11 +2259,25 @@ msgstr "Копіювати QR-код" msgid "Copy TXT record value" msgstr "Копіювати значення запису TXT" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Політика захисту авторського права" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "Не вдалось стишити чат" msgid "Could not process your video" msgstr "Не вдалось обробити відео" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Створити" @@ -2195,7 +2317,7 @@ msgstr "Створити QR-код для підбірки" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Створити власну підбірку" @@ -2205,21 +2327,22 @@ msgstr "Створення власної підбірки для мене" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Реєстрація" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Створити обліковий запис" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Створити обліковий запис" @@ -2241,7 +2364,7 @@ msgstr "Створити інший" msgid "Create new account" msgstr "Створити новий обліковий запис" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Створити звіт для {0}" @@ -2268,7 +2391,7 @@ msgstr "Користувацький" msgid "Customization options" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Налаштуйте, хто може взаємодіяти з цим постом." @@ -2278,12 +2401,12 @@ msgstr "" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Темна" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Темна" @@ -2292,21 +2415,21 @@ msgstr "Темна" msgid "Dark mode" msgstr "Темний режим" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Темна тема" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Дата народження" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Деактивувати обліковий запис" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Налагодження модерації" @@ -2314,7 +2437,7 @@ msgstr "Налагодження модерації" msgid "Debug panel" msgstr "Панель налагодження" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Типово" @@ -2322,8 +2445,8 @@ msgstr "Типово" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "" msgid "Delete" msgstr "Видалити" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Видалити обліковий запис" @@ -2355,7 +2478,7 @@ msgstr "Видалити пароль застосунку?" msgid "Delete chat" msgstr "" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "" @@ -2370,7 +2493,7 @@ msgstr "" msgid "Delete Conversation" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Видалити для мене" @@ -2378,11 +2501,11 @@ msgstr "Видалити для мене" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Видалити повідомлення" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Видалити повідомлення для мене" @@ -2390,9 +2513,9 @@ msgstr "Видалити повідомлення для мене" msgid "Delete my account" msgstr "Видалити мій обліковий запис" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Видалити пост" @@ -2409,11 +2532,11 @@ msgstr "Видалити власну підбірку?" msgid "Delete this list?" msgstr "Видалити цей список?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Видалити цей пост?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Видалено" @@ -2422,15 +2545,20 @@ msgstr "Видалено" msgid "Deleted Account" msgstr "Видалений обліковий запис" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Видалений пост." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Опис" @@ -2447,12 +2575,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Альтернативний текст опису" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Вилучити цитування" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Вилучити цитований пост?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Режим розробника ввімкнено" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Налаштування для розробників" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Діалог: налаштувати, хто може взаємодіяти з цим постом" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Тьмяна" @@ -2492,27 +2620,27 @@ msgstr "" msgid "Disable Email 2FA" msgstr "Вимкнути двофакторну автентифікацію електронної пошти" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Вимкнути тактильний зворотний зв'язок" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Вимкнути субтитри" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Вимкнено" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Видалити" @@ -2520,11 +2648,11 @@ msgstr "Видалити" msgid "Discard changes?" msgstr "Відхилити зміни?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Відхилити чернетку?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Не зберігати пост?" @@ -2542,7 +2670,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "Відкрити для себе нові стрічки" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Відкрити для себе нові стрічки" @@ -2550,7 +2678,7 @@ msgstr "Відкрити для себе нові стрічки" msgid "Dismiss" msgstr "Відхилити" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Пропустити помилку" @@ -2562,26 +2690,26 @@ msgstr "Пропустити посібник нового користувач msgid "Dismiss interests" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Показувати більші мітки альтернативного тексту" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Ім'я" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Ім'я" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Ім'я задовге" @@ -2603,15 +2731,11 @@ msgstr "Не застосовувати ігнороване слово для msgid "Does not include nudity." msgstr "Не містить оголеності." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Не починається або закінчується дефісом" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Домен перевірено!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -2619,6 +2743,15 @@ msgstr "" msgid "Don't see an email? <0>Click here to resend." msgstr "" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "" msgid "Double tap to close the dialog" msgstr "Торкніться двічі для закриття діалогу" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "" @@ -2673,7 +2806,7 @@ msgstr "Завантажити Bluesky" msgid "Download CAR file" msgstr "Завантажити CAR файл" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Перетягнути і відпустити, щоб додати зображення" @@ -2689,18 +2822,10 @@ msgstr "для прикладу, olenka" msgid "e.g. Alice Lastname" msgstr "Як-от Анастасія Прізвище" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "напр. Тарас Шевченко" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "для прикладу, olenka.ua" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "напр. Художниця, собачниця та завзята читачка." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Напр. художня оголеність." @@ -2725,10 +2850,11 @@ msgstr "напр. Користувачі, що неодноразово відп msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Кожен код запрошення працює лише один раз. Час від часу ви будете отримувати нові коди." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Редагувати" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Редагувати" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Редагувати фото профілю" @@ -2749,12 +2875,12 @@ msgstr "Редагувати стрічки" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Редагувати зображення" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Редагувати налаштування взаємодії" @@ -2776,33 +2902,33 @@ msgstr "" msgid "Edit Moderation List" msgstr "Редагувати список модерації" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Редагувати мої стрічки" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Редагувати мій профіль" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Редагувати користувачів" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Редагувати налаштування взаємодії з постом" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Редагувати профіль" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Редагувати профіль" @@ -2814,19 +2940,11 @@ msgstr "Редагувати власну підбірку" msgid "Edit User List" msgstr "Редагувати список користувачів" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Редагувати, хто може відповідати" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Редагувати ваш псевдонім для показу" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Редагувати опис вашого профілю" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Редагувати вашу власну підбірку" @@ -2839,8 +2957,8 @@ msgstr "Освіта" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "" -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "Електронна пошта" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "Двофакторну автентифікацію електронної пошти вимкнено" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "Двофакторну автентифікацію за допомогою електронної пошти увімкнено" @@ -2865,10 +2983,6 @@ msgstr "Лист надіслано знов" msgid "Email sent!" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "" @@ -2883,8 +2997,8 @@ msgstr "Вбудований HTML код" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Вбудований пост" @@ -2892,7 +3006,7 @@ msgstr "Вбудований пост" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Вставте цей пост у Ваш сайт. Просто скопіюйте цей скрипт і вставте його в HTML код вашого сайту." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Вбудований відеоплеєр" @@ -2906,7 +3020,7 @@ msgstr "Увімкнути" msgid "Enable {0} only" msgstr "Увімкнути лише {0}" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Дозволити вміст для дорослих" @@ -2919,16 +3033,20 @@ msgstr "" msgid "Enable external media" msgstr "Увімкнути зовнішні медіа" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Увімкнути медіапрогравачі для" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Увімкнути важливі сповіщення" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Увімкнути субтитри" @@ -2941,17 +3059,14 @@ msgstr "Увімкнути лише джерело" msgid "Enable trending topics" msgstr "" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "" - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Увімкнено" @@ -2963,7 +3078,7 @@ msgstr "Кінець стрічки" msgid "Ensure you have selected a language for each subtitle file." msgstr "Переконайтеся, що ви вибрали мову для кожного файлу з субтитрами." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Введіть пароль" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Введіть слово або мітку" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Ввести код" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Повноекранний режим" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Введіть вашу дату народження" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Введіть адресу електронної пошти" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Введіть нову адресу електронної пошти." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "" @@ -3022,7 +3129,7 @@ msgstr "" msgid "Enter your username and password" msgstr "Введіть псевдонім та пароль" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "" @@ -3030,16 +3137,28 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Помилка" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Сталася помилка під час збереження" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Помилка отримання відповіді Captcha." @@ -3047,27 +3166,34 @@ msgstr "Помилка отримання відповіді Captcha." msgid "Error:" msgstr "Помилка:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Усі" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Всі можуть відповідати" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Всі можуть відповідати на цей пост." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Будь-хто" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Окрім користувачів, на яких ви підписан msgid "Excludes users you follow" msgstr "Окрім користувачів, на яких ви підписані" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Вийти з повноекранного режиму" @@ -3106,24 +3232,28 @@ msgstr "Вийти з режиму перегляду" msgid "Expand alt text" msgstr "Розгорнути опис" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Розгорнути список користувачів" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Розгорнути або згорнути весь пост, на який ви відповідаєте" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Експериментальні" @@ -3153,15 +3283,15 @@ msgstr "Відверто або потенційно проблемний вмі msgid "Explicit sexual images." msgstr "Відверті сексуальні зображення." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Експорт моїх даних" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Зовнішні медіа" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 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:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Налаштування зовнішніх медіа" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "" @@ -3211,8 +3341,8 @@ msgstr "Не вдалось створити пароль застосунку. msgid "Failed to create conversation" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Не вдалось створити власну підбірку" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Не вдалося видалити повідомлення" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Не вдалося видалити пост, спробувати ще раз" @@ -3238,8 +3368,8 @@ msgstr "Не вдалося видалити пост, спробувати ще msgid "Failed to delete starter pack" msgstr "Не вдалось видалити власну підбірку" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "" @@ -3250,14 +3380,32 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Не вдалося завантажити параметри стрічок" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Не вдалося завантажити GIF" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Не вдалося завантажити останні повідомлення" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Не вдалося завантажити рекомендовані с msgid "Failed to load suggested follows" msgstr "Не вдалося завантажити запропоновані для читання облікові записи" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Не вдалось закріпити пост" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "" @@ -3291,15 +3439,11 @@ msgstr "" msgid "Failed to save image: {0}" msgstr "Не вдалося зберегти зображення: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Не вдалося зберегти налаштування сповіщень, будь ласка, спробуйте ще раз" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "" @@ -3318,7 +3462,7 @@ msgstr "" msgid "Failed to submit appeal, please try again." msgstr "Не вдалося подати апеляцію. Будь ласка, спробуйте ще раз." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Не вдалося ігнорувати гілку, будь ласка, спробуйте пізніше" @@ -3335,7 +3479,11 @@ msgstr "" msgid "Failed to update feeds" msgstr "Не вдалося оновити стрічки" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Не вдалося оновити налаштування" @@ -3354,15 +3502,23 @@ msgstr "" msgid "Failed to verify handle. Please try again." msgstr "Не вдалось підтвердити псевдонім. Будь ласка, спробуйте ще раз." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Стрічка" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Стрічка від {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "" @@ -3371,35 +3527,39 @@ msgstr "" msgid "Feed toggle" msgstr "Перемикач стрічки" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Зворотний зв'язок" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Відгук надіслано!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Стрічки" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Стрічки – це алгоритми, створені користувачами з деяким досвідом програмування. <0/> для додаткової інформації." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Стрічки оновлено!" @@ -3428,6 +3588,14 @@ msgstr "" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Завершення" @@ -3448,7 +3616,7 @@ msgstr "" msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Завершити" @@ -3456,17 +3624,17 @@ msgstr "Завершити" msgid "Fitness" msgstr "Фітнес" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Гнучкий" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Підписатися" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Підписатися на {0}" @@ -3518,7 +3686,7 @@ msgstr "" msgid "Follow all" msgstr "Читати усіх" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Підписатися навзаєм" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Підписатися навзаєм" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Читають <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Читають <0>{0} та {1, plural, one {# інші} few {# інші} many {# інші} other {# інші}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Читають <0>{0} та <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Читають <0>{0}, <1>{1}, та {2, plural, one {# інші} few {# інші} many {# інші} other {# інші}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Читачі @{0}, яких читаєте ви" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Читачі, яких читаєте ви" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Читаю" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Читаю" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Читають {0}" @@ -3579,8 +3751,8 @@ msgstr "" msgid "Following feed preferences" msgstr "Налаштування стрічки тих, кого ви читаєте" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Налаштування стрічки тих, кого ви читаєте" @@ -3592,11 +3764,11 @@ msgstr "Підписаний(-на) на вас" msgid "Follows You" msgstr "Читає вас" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Шрифт" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Розмір шрифту" @@ -3613,7 +3785,7 @@ msgstr "З міркувань безпеки нам потрібно буде в msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "З міркувань безпеки ви бачите цей пароль лише один раз. Якщо ви втратите цей пароль застосунку, вам потрібно буде згенерувати новий." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Для отримання найкращого користувацького досвіду рекомендується використовувати шрифт теми." @@ -3643,11 +3815,15 @@ msgstr "Забули пароль?" msgid "Frequently Posts Unwanted Content" msgstr "Часто публікує неприйнятний контент" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "Від @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "Від <0/>" @@ -3660,14 +3836,68 @@ msgstr "Галерея" msgid "Generate a starter pack" msgstr "Згенерувати особисту підбірку" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Допомога" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "" @@ -3688,14 +3918,16 @@ msgstr "Створити обличчя для вашого облікового msgid "Glaring violations of law or terms of service" msgstr "Грубі порушення закону чи умов використання" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Перейти до розмови з {0}" @@ -3779,8 +4017,8 @@ msgstr "Графічний медіаконтент" msgid "Half way there!" msgstr "На пів шляху!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Псевдонім" @@ -3797,7 +4035,7 @@ msgstr "Псевдонім змінено!" msgid "Handle too long. Please try a shorter one." msgstr "Псевдонім задовгій. Будь ласка, спробуйте коротший." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Тактильний відгук" @@ -3806,7 +4044,7 @@ msgstr "Тактильний відгук" msgid "Harassment, trolling, or intolerance" msgstr "Домагання, тролінг або нетерпимість" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Хештег" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "" -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Виникли проблеми?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Довідка" @@ -3839,8 +4077,13 @@ msgstr "Дайте людям знати, що ви не бот, заванта msgid "Here is your app password!" msgstr "Це ваш пароль застосунку!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "" @@ -3848,16 +4091,16 @@ msgstr "" msgid "Hidden by your moderation settings." msgstr "" -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Прихований список" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Прихований список" msgid "Hide" msgstr "Приховати" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Приховати" @@ -3875,18 +4118,18 @@ msgstr "Приховати" msgid "Hide customization options" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Приховати пост від мене" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Приховати відповідь від усіх" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Приховати відповідь від мене" @@ -3894,12 +4137,12 @@ msgstr "Приховати відповідь від мене" msgid "Hide this card" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Приховати цей пост?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Приховати цю відповідь?" @@ -3913,11 +4156,11 @@ msgstr "" msgid "Hide trending topics?" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Приховати список користувачів" @@ -3926,32 +4169,32 @@ msgstr "Приховати список користувачів" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Хм, при зв'язку з сервером стрічки виникла якась проблема. Будь ласка, повідомте про це її власника." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Хм, здається сервер стрічки налаштовано неправильно. Будь ласка, повідомте про це її власника." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Хм, здається сервер стрічки зараз не працює. Будь ласка, повідомте про це її власника." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Хм, сервер стрічки надіслав нам незрозумілу відповідь. Будь ласка, повідомте про це її власника." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Хм, ми не можемо знайти цю стрічку. Можливо вона була видалена." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Хм, ми маємо проблеми зі завантаженням цих даних. Поглянути деталі нижче. Якщо проблема не зникне, просимо звʼязатися з нами." @@ -3959,15 +4202,15 @@ msgstr "Хм, ми маємо проблеми зі завантаженням msgid "Hmmmm, we couldn't load that moderation service." msgstr "Хм, ми не змогли завантажити цей сервіс модерації." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Чекай-но! Ми поступово даємо доступ до відео, а ви поки що чекаєте в черзі. Спробуйте пізніше!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Головна" @@ -3984,10 +4227,10 @@ msgstr "Хостинг-провайдер" msgid "Hot" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Спочатку найновіші" @@ -3996,10 +4239,6 @@ msgstr "Спочатку найновіші" msgid "How should we open this link?" msgstr "Як ви хочете відкрити це посилання?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Я зрозумів" msgid "If alt text is long, toggles alt text expanded state" msgstr "Розкриває альтернативний текст, якщо текст задовгий" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Якщо ви ще не досягли повноліття відповідно до законів вашої країни, ваш батьківський або юридичний опікун повинен прочитати ці Умови від вашого імені." @@ -4031,11 +4270,11 @@ msgstr "Якщо ви видалите цей список, ви не зможе msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Якщо ви видалите цей пост, ви не зможете його відновити." @@ -4047,6 +4286,10 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Якщо ви хочете змінити пароль, ми надішлемо вам код, щоб переконатися, що це ваш обліковий запис." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "" @@ -4091,13 +4334,41 @@ msgstr "Видавання себе за іншу особу або неправ msgid "Impersonation, misinformation, or false claims" msgstr "Привласнення особистості іншої особи, введення в оману або хибні твердження" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Непристойні повідомлення або посилання з відвертим вмістом" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "" @@ -4105,7 +4376,7 @@ msgstr "" msgid "Incorrect username or password" msgstr "Невірне ім'я користувача або пароль" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Вести код, надісланий на вашу електронну пошту для скидання пароля" @@ -4113,7 +4384,7 @@ msgstr "Вести код, надісланий на вашу електронн msgid "Input confirmation code for account deletion" msgstr "Ввести код підтвердження для видалення облікового запису" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Ввести новий пароль" @@ -4129,10 +4400,14 @@ msgstr "Введіть код, надісланий вам на електрон msgid "Interaction limited" msgstr "Взаємодія обмежена" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Невірний код підтвердження двофакторн msgid "Invalid handle. Please try a different one." msgstr "Хибний псевдонім. Будь ласка, спробуйте ввести інший." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Невірний або непідтримуваний пост" @@ -4158,7 +4433,7 @@ msgstr "Недійсний код підтвердження" msgid "Invite a Friend" msgstr "Запросити друга" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Код запрошення" @@ -4186,15 +4461,15 @@ msgstr "Запросіть друзів стежити за вашими улю msgid "Invites, but personal" msgstr "Запрошення окрім особистих" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Все вірно" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Зараз ви на самоті. Додайте користувачів до власної підбірки шукаючи їх вище." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "Вакансія: {0}" @@ -4220,11 +4495,27 @@ msgstr "Приєднатися до розмови" msgid "Journalism" msgstr "Журналістика" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "{0} додав мітки." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Автор додав мітки." @@ -4237,7 +4528,7 @@ msgstr "Мітки" msgid "Labels added" msgstr "Мітки додано" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Мітки є анотаціями на користувачів і вміст. Вони можуть використані для приховання, попередження та категоризації мережі." @@ -4253,22 +4544,30 @@ msgstr "Мітки на вашому контенті" msgid "Language selection" msgstr "Вибір мови" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Налаштування мови" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Мови" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Більше" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Нещодавні" @@ -4282,7 +4581,6 @@ msgstr "дізнатись більше" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "" @@ -4290,6 +4588,10 @@ msgstr "" msgid "Learn More" msgstr "Дізнатися більше" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Дізнатись більше про Bluesky" @@ -4298,15 +4600,23 @@ msgstr "Дізнатись більше про Bluesky" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Дізнатися більше про застосовану модерацію до цього вмісту." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Дізнатися більше про це попередження" @@ -4316,12 +4626,16 @@ msgstr "Дізнатися більше про це попередження" msgid "Learn more about verification on Bluesky" msgstr "" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Дізнатися більше про те, що є публічним в Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Дізнатися більше." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Залишити розмову" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Залишити їх усі невідміченими, щоб побачити будь-яку мову." +msgid "Leave them all unselected to see any language." +msgstr "" -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Залишити Bluesky" @@ -4370,7 +4685,7 @@ msgstr "Злітаємо!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Світла" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Вподобати" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -4397,6 +4712,10 @@ msgstr "Вподобати 10 постів" msgid "Like 10 posts to train the Discover feed" msgstr "Вподобати 10 постів задля тренування Стрічки відкриття" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Вподобати цю стрічку" @@ -4405,8 +4724,8 @@ msgstr "Вподобати цю стрічку" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Вподобано" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Вподобано" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" @@ -4428,20 +4747,36 @@ msgstr "" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Уподобання" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Уподобання цього посту" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Список" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Список заблоковано" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Список від {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Список більше не ігноровано" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Списки" @@ -4537,7 +4876,7 @@ msgstr "Завантажити більше" msgid "Load more suggested feeds" msgstr "Завантажити більше запропонованих стрічок" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Завантажити нові сповіщення" @@ -4552,11 +4891,11 @@ msgstr "Завантажити нові пости" msgid "Loading..." msgstr "Завантаження..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Звіт" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Видимість для користувачів без облікового запису" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Лого від <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Лого від <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Тривале натискання відкриває меню тегів для #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Виглядає як XXXXX-XXXXXXX" @@ -4597,7 +4936,7 @@ msgstr "" msgid "Make one for me" msgstr "Згенерувати для мене" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Переконайтеся, що це дійсно той сайт, що ви збираєтеся відвідати!" @@ -4606,7 +4945,7 @@ msgstr "Переконайтеся, що це дійсно той сайт, що msgid "Manage saved feeds" msgstr "Керувати збереженими стрічками" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "" @@ -4614,9 +4953,9 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "Налаштувати ваші ігноровані слова і теги" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "" @@ -4625,15 +4964,13 @@ msgstr "" msgid "Mark as read" msgstr "Відмітити як прочитане" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "" @@ -4645,19 +4982,26 @@ msgstr "Медіа" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Медіавміст, який може бути тривожним або недоречним для певних глядачів." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "згадані користувачі" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Згадані користувачі" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Згадування" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Меню" @@ -4665,7 +5009,7 @@ msgstr "Меню" msgid "Message {0}" msgstr "Повідомлення {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Повідомлення видалено" @@ -4674,11 +5018,11 @@ msgstr "Повідомлення видалено" msgid "Message deleted" msgstr "Повідомлення видалено" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Повідомлення від сервера: {0}" @@ -4691,19 +5035,23 @@ msgstr "Поле введення повідомлення" msgid "Message is too long" msgstr "Повідомлення задовге" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Повідомлення" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Оманливий обліковий запис" msgid "Misleading Post" msgstr "Оманливий пост" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Модерація" @@ -4725,17 +5073,17 @@ msgstr "Модерація" msgid "Moderation details" msgstr "Деталі модерації" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Список модерації від {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Список модерації від <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Список модерації від вас" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Список модерації оновлено" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Списки для модерації" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Списки для модерації" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "Налаштування модерації" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Статус модерації" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Інструменти модерації" @@ -4775,7 +5123,7 @@ msgstr "Інструменти модерації" msgid "Moderator has chosen to set a general warning on the content." msgstr "Модератор вирішив встановити загальне попередження на вміст." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Більше" @@ -4790,13 +5138,13 @@ msgstr "Більше стрічок" msgid "More options" msgstr "Додаткові опції" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Спочатку найбільш вподобані" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "За кількістю вподобань" @@ -4808,8 +5156,8 @@ msgstr "Кіно" msgid "Music" msgstr "Музика" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Стишити" @@ -4819,8 +5167,8 @@ msgstr "Стишити" msgid "Mute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Ігнорувати це слово лише у тегах" msgid "Mute this word until you unmute it" msgstr "Ігнорувати це слово безстроково" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Ігнорувати обговорення" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Ігнорувати слова та теги" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Ігноровані облікові записи" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Ігноровані облікові записи" @@ -4898,7 +5246,7 @@ msgstr "Ігноровані облікові записи автоматичн msgid "Muted by \"{0}\"" msgstr "Ігноровано від \"{0}\"" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Ігноровані слова та теги" @@ -4911,7 +5259,7 @@ msgstr "Ігнорування є приватним. Ігноровані ко msgid "My Birthday" msgstr "Мій день народження" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Мої стрічки" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Природа" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Перейти до {0}" @@ -4958,11 +5306,11 @@ msgstr "Переходить до наступного екрана" msgid "Navigates to your profile" msgstr "Переходить до вашого профілю" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Потрібно змінити?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Хочете повідомити про порушення авторських прав?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Новий" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Новий чат" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Нові повідомлення" msgid "New Moderation List" msgstr "Новий список модерації" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Новий пароль" @@ -5029,7 +5396,7 @@ msgstr "Новий пароль" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Новий пост" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Новий пост" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Інформація про нового користувача" @@ -5054,10 +5429,14 @@ msgstr "Інформація про нового користувача" msgid "New User List" msgstr "Новий список користувачів" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Спочатку найновіші" @@ -5071,15 +5450,15 @@ msgstr "Новини" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "Відсутня панель DNS" msgid "No expiry set" msgstr "" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "GIF-файлів не знайдено. З Tenor можуть бути проблеми." @@ -5119,32 +5498,35 @@ msgstr "" msgid "No likes yet" msgstr "Ще немає вподобань" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Ви більше не читаєте {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Ще немає повідомлень" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Ще ніяких сповіщень!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Ніхто" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Ніхто, окрім автора, не може цитувати цей пост." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Постів ще немає." @@ -5171,7 +5553,7 @@ msgstr "Нічого не знайдено" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Нічого не знайдено" @@ -5179,9 +5561,9 @@ msgstr "Нічого не знайдено" msgid "No results found for \"{query}\"" msgstr "Нічого не знайдено за запитом «{query}»" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Нічого не знайдено за запитом «{query}»" @@ -5189,7 +5571,7 @@ msgstr "Нічого не знайдено за запитом «{query}»" msgid "No results." msgstr "" -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "За запитом \"{search}\" нічого не знайдено." @@ -5198,7 +5580,7 @@ msgstr "За запитом \"{search}\" нічого не знайдено." msgid "No thanks" msgstr "Ні, дякую" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Ніхто" @@ -5223,59 +5605,76 @@ msgstr "Нікого не знайдено. Спробуйте пошукати msgid "Non-sexual Nudity" msgstr "Несексуальна оголеність" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Не знайдено" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Примітка щодо поширення" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Примітка: Bluesky є відкритою і публічною мережею. Цей параметр обмежує видимість вашого вмісту лише у застосунках і на сайті Bluesky, але інші застосунки можуть цього не дотримуватися. Ваш вміст все ще може бути показаний відвідувачам без облікового запису іншими застосунками і вебсайтами." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Тут нічого немає" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Фільтри сповіщень" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Налаштування сповіщень" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Налаштування сповіщень" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Звуки сповіщень" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Звуки сповіщень" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Сповіщення" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "щойно" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Нагота чи матеріали для дорослих не позначені відповідним чином" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Вимкнено" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "О, ні!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "Добре" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Спочатку найдавніші" @@ -5331,19 +5736,19 @@ msgstr "Спочатку найдавніші" msgid "on<0><1/><2><3/>" msgstr "на<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Скинути ознайомлення" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "Одна або декілька GIF не мають описового тексту." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Для одного або кількох зображень відсутній опис." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Одне або більше відео не мають описового тексту." @@ -5351,13 +5756,15 @@ msgstr "Одне або більше відео не мають описовог msgid "Only .jpg and .png files are supported" msgstr "Підтримуються лише файли формату .jpg і .png" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Тільки {0} можуть відповідати." -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Тільки літери, цифри та дефіс" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Підтримуються лише файли зображень" msgid "Only WebVTT (.vtt) files are supported" msgstr "Підтримуються лише файли WebVTT (.vtt)" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Ой, щось пішло не так!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Ой!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Емоджі" @@ -5416,7 +5822,7 @@ msgstr "Відкрити меню налаштувань стрічки" msgid "Open full emoji list" msgstr "" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Відкрити посилання на {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Відкрити посилання на {niceUrl}" msgid "Open message options" msgstr "Відкрити налаштування повідомлень" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Відкрити налаштування ігнорування слів і міток" @@ -5453,16 +5859,16 @@ msgstr "" msgid "Open starter pack menu" msgstr "Відкрити меню власних підбірок" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Відкрити storybook сторінку" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Відкрити системний журнал" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Відкриє параметри {numItems}" @@ -5490,11 +5896,11 @@ msgstr "Відкриє камеру на пристрої" msgid "Opens captions and alt text dialog" msgstr "" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Відкриє редактор" @@ -5502,7 +5908,7 @@ msgstr "Відкриє редактор" msgid "Opens device photo gallery" msgstr "Відкриє фотогалерею пристрою" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "" @@ -5520,15 +5926,19 @@ msgstr "" msgid "Opens GIF select dialog" msgstr "Відкриє діалогове вікно вибору GIF" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Відкриє список кодів запрошення" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "" @@ -5536,12 +5946,8 @@ msgstr "" msgid "Opens password reset form" msgstr "Відкриває форму скидання пароля" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Відкриває посилання" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Відкриває цей профіль" @@ -5558,7 +5964,7 @@ msgstr "За бажанням надайте додаткову інформац msgid "Options:" msgstr "Параметри:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Або поєднайте ці параметри:" @@ -5600,6 +6006,10 @@ msgstr "Інший обліковий запис" msgid "Other..." msgstr "Інші..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "" @@ -5608,7 +6018,7 @@ msgstr "" msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Наші модератори переглянули скарги та вирішили позбавити вас доступу до чатів у Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Сторінку не знайдено" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Сторінку не знайдено" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Пароль змінено" msgid "Password updated!" msgstr "Пароль змінено!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Пауза" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Призупинити відео" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Люди" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Люди, яких читає @{0}" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Люди, які читають @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "" @@ -5704,12 +6119,12 @@ msgstr "Закріпити на головній" msgid "Pin to Home" msgstr "Закріпити на головній" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Закріпити у своєму обліковому записі" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Закріплені" @@ -5718,7 +6133,7 @@ msgstr "Закріплені" msgid "Pinned {0} to Home" msgstr "" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Закріплені стрічки" @@ -5726,38 +6141,38 @@ msgstr "Закріплені стрічки" msgid "Pinned to your feeds" msgstr "Прикріплено до ваших стрічок" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Відтворити" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Відтворити {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Відтворити відео" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Відтворити відео" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Відтворює GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "" @@ -5765,12 +6180,16 @@ msgstr "" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Просимо обрати псевдонім." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Просимо обрати ваш пароль." @@ -5782,7 +6201,8 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Просимо завершити перевірку Captcha." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "" @@ -5804,6 +6224,7 @@ msgstr "Будь ласка, введіть унікальну назву для msgid "Please enter a valid code." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "" @@ -5812,7 +6233,11 @@ msgstr "" msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Просимо ввести допустиме слово, тег або фразу для ігнорування" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "" #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Просимо ввести адресу ел. пошти." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Будь ласка, введіть код запрошення." @@ -5853,6 +6278,19 @@ msgstr "Просимо пояснити чому ви вважаєте, що ц msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Будь ласка, поясніть, чому ви вважаєте, що ваші чати були хибно відключені" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "" @@ -5870,9 +6308,9 @@ msgstr "Будь ласка, увійдіть як @{0}" msgid "Please verify your email" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Просимо підтвердити свою адресу ел. пошти" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Політика" msgid "Porn" msgstr "Порнографія" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Запостити" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Запостити" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Запостити" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Опублікувати все" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Пост від {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Пост від @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Пост видалено" @@ -5919,11 +6362,14 @@ msgstr "Пост видалено" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Не вдалось завантажити пост. Будь ласка, перевірте з'єднання з інтернетом та спробуйте ще раз." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Пост приховано" @@ -5937,11 +6383,11 @@ msgstr "Пост приховано через ігнороване слово" msgid "Post Hidden by You" msgstr "Пост приховано вами" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Налаштування взаємодії з постом" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "" @@ -5954,8 +6400,10 @@ msgstr "Мова посту" msgid "Post Languages" msgstr "Мови посту" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Пост не знайдено" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Пост відкріплено" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Пости" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Пости можуть бути приглушені залежно від їхнього тексту, тегів або обох. Ми рекомендуємо уникати загальних слів, що з'являються у багатьох постах, оскільки це може призвести до того, що жоден пост не показуватиметься." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Пости приховано" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Потенційно оманливе посилання" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Налаштування збережено" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Натисніть для повторної спроби з'єднання" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Натиснути для повторної спроби" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Натисніть для перегляду підписників цього облікового запису, яких ви також читаєте" @@ -6015,40 +6469,46 @@ msgstr "Попереднє зображення" msgid "Primary Language" msgstr "Основна мова" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Віддати перевагу тим, кого читаєте" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Важливі сповіщення" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Конфіденційність" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Конфіденційність та безпека" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Конфіденційність та безпека" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Політика конфіденційності" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Обробка відео..." @@ -6062,15 +6522,14 @@ msgstr "Обробка..." msgid "profile" msgstr "профіль" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Профіль" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Профіль оновлено" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "QR-код скопійовано до буфера обміну!" @@ -6119,44 +6594,52 @@ msgstr "QR-код завантажено!" msgid "QR code saved to your camera roll!" msgstr "QR-код збережено до галереї!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Цитувати пост" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "Цитування посту повторно додано" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "Цитування посту успішно відкріплено" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Цитування постів вимкнено" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Налаштування цитування" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Цитування" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Цитування цього поста" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "У випадковому порядку" @@ -6164,8 +6647,8 @@ msgstr "У випадковому порядку" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Перевищено ліміт — ви намагались змінити свій псевдонім занадто багато разів за короткий період. Будь ласка, зачекайте хвилину перед повторною спробою." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Додати повторно цитування" @@ -6177,30 +6660,42 @@ msgstr "" msgid "Reactivate your account" msgstr "Повторна активація облікового запису" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Читати блог Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Читати Політику конфіденційності Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Читати Умови використання Bluesky" @@ -6213,6 +6708,14 @@ msgstr "" msgid "Reason:" msgstr "Підстава:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Останні запити" @@ -6234,8 +6737,8 @@ msgstr "" msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Перезавантажити розмови" @@ -6244,10 +6747,9 @@ msgstr "Перезавантажити розмови" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Видалити" @@ -6259,17 +6761,17 @@ msgstr "Видалити {displayName} з підбірки" msgid "Remove {historyItem}" msgstr "" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Видалити обліковий запис" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Видалити вкладення" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Видалити аватар" @@ -6284,24 +6786,22 @@ msgstr "Видалити вбудування" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Видалити стрічку" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Видалити стрічку?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Вилучити з моїх стрічок" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Прибрати зі швидкого доступу?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "Прибрати зі збережених стрічок" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Видалити зображення" @@ -6332,12 +6831,8 @@ msgstr "Видалити ігноровані слова з вашого спи msgid "Remove profile" msgstr "Вилучити обліковий запис" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Вилучити цитату" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Видалити репост" @@ -6345,7 +6840,7 @@ msgstr "Видалити репост" msgid "Remove subtitle file" msgstr "Видалити файл з субтитрами" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Видалити цю стрічку зі збережених стрічок" @@ -6364,11 +6859,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Вилучено автором" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Вилучено вами" @@ -6377,10 +6872,6 @@ msgstr "Вилучено вами" msgid "Removed from list" msgstr "Видалено зі списку" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Видалено з моїх стрічок" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Вилучено зі збережених стрічок" @@ -6395,34 +6886,36 @@ msgstr "Видалено з моїх стрічок" msgid "Removed verification" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Вилучає цитований допис" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Замінити на Стрічку відкриття" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Відповіді" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Відповіді вимкнуто" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Відповіді в цьому пості вимкнено." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Відповісти" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -6436,50 +6929,55 @@ msgstr "Відповідь прихована автором гілки" msgid "Reply Hidden by You" msgstr "Відповідь прихована вами" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Налаштування відповідей" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "Налаштування відповіді визначаються автором гілки" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Відповідь до <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Відповісти на заблокований пост" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Відповідь на пост" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Відповідь вам" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Оновлено видимість відповідей" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Відповідь успішно приховано" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Поскаржитись на стрічку" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Поскаржитися на повідомлення" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Поскаржитись на пост" @@ -6567,25 +7065,26 @@ msgstr "Поскаржитись на цю підбірку" msgid "Report this user" msgstr "Поскаржитись на цього користувача" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Репост" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Репост" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Репости ({0, plural, one {# репост} few {# репости} many {# репостів} other {# репостів}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Репостити або цитувати" @@ -6594,26 +7093,38 @@ msgstr "Репостити або цитувати" msgid "Reposted By" msgstr "Зробив(-ла) репост" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "{0} зробив(-ла) репост" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Репост від <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Ви зробили репост" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Репости цього поста" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" msgstr "" #: src/view/com/modals/ChangePassword.tsx:253 @@ -6621,8 +7132,8 @@ msgstr "" msgid "Request Code" msgstr "Отримати код" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Вимагати опис зображень перед публікацією" @@ -6630,7 +7141,7 @@ msgstr "Вимагати опис зображень перед публікац msgid "Require an email code to sign in to your account." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Вимагається цим хостинг-провайдером" @@ -6642,10 +7153,6 @@ msgstr "Необхідно для вашого регіону" msgid "Resend" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Надіслати лист ще раз" msgid "Resend Verification Email" msgstr "Надіслати лист з підтвердженням ще раз" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Код скидання" @@ -6667,8 +7180,8 @@ msgstr "Код скидання" msgid "Reset Code" msgstr "Код скидання" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "" @@ -6687,21 +7200,23 @@ msgstr "Повторити останню дію, яка спричинила п #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Повторити спробу" @@ -6721,19 +7236,19 @@ msgstr "Повертає до головної сторінки" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Повертає до попередньої сторінки" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Зберегти" @@ -6762,15 +7276,13 @@ msgstr "Зберегти" msgid "Save birthday" msgstr "Зберегти день народження" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Зберегти зміни" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Зберегти зміни" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Зберегти QR-код" msgid "Save to my feeds" msgstr "Зберегти до моїх стрічок" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Збережені стрічки" @@ -6802,18 +7314,14 @@ msgstr "Збережені стрічки" msgid "Saved to your feeds" msgstr "Збережено до ваших стрічок" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Зберігає зміни вашого профілю" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Зберігає налаштування обрізання зображення" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Привітайтесь!" @@ -6826,16 +7334,16 @@ msgstr "Наука" msgid "Scroll to top" msgstr "Прогорнути вгору" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Пошук" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -6861,7 +7369,7 @@ msgstr "Шукати \"{query}\"" msgid "Search for \"{searchText}\"" msgstr "Пошук \"{searchText}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Шукати стрічки, якими ви б хотіли поділитись з іншими." @@ -6877,10 +7385,14 @@ msgstr "" msgid "Search for posts, users, or feeds" msgstr "" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Пошук GIF-файлів" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "" @@ -6890,12 +7402,12 @@ msgstr "" msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Пошук профілів" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Пошук Tenor" @@ -6903,7 +7415,7 @@ msgstr "Пошук Tenor" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "" @@ -6912,10 +7424,6 @@ msgstr "" msgid "Security step required" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Потрібен код підтвердження" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "" @@ -6936,14 +7444,31 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Переглянути вакансії у Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Перегляньте цей посібник" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Повзунок пошуку. Використовуйте клавіші зі стрілками для пошуку вперед і назад та пробіл для відтворення або паузи" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Вибрати колір" @@ -6988,7 +7513,7 @@ msgstr "Вибрати існуючий обліковий запис" msgid "Select GIF" msgstr "Вибрати GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Вибрати GIF \"{0}\"" @@ -6996,6 +7521,11 @@ msgstr "Вибрати GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "Оберіть, як довго ігнорувати це слово." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Обрати мову..." @@ -7004,7 +7534,7 @@ msgstr "Обрати мову..." msgid "Select languages" msgstr "Вибрати мови" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "" @@ -7045,12 +7575,12 @@ msgstr "" msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Оберіть мови постів, які ви хочете бачити у збережених каналах. Якщо не вибрано жодної – буде показано пости всіма мовами." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Вибрати дату народження" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Вибрати ваші інтереси з варіантів нижче" @@ -7058,7 +7588,11 @@ msgstr "Вибрати ваші інтереси з варіантів нижч msgid "Select your preferred language for translations in your feed." msgstr "Оберіть бажану мову для перекладів у вашій стрічці." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "" @@ -7066,17 +7600,9 @@ msgstr "" msgid "Send a neat website!" msgstr "Надішліть нарядний сайт!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Надіслати підтвердження на електронну пошту" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Надіслати ел. листа" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Надіслати ел. лист" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Надіслати відгук" @@ -7095,7 +7621,7 @@ msgstr "Надіслати відгук" msgid "Send message" msgstr "Надіслати повідомлення" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "" @@ -7114,20 +7640,20 @@ msgstr "Поскаржитись" msgid "Send report to {0}" msgstr "Поскаржитися до {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Надіслати електронний лист підтвердження" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Надіслати в особисті повідомлення" @@ -7143,7 +7669,7 @@ msgstr "Адреса сервера" msgid "Set app icon to {0}" msgstr "" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Додати дату народження" @@ -7159,13 +7685,57 @@ msgstr "Налаштуйте ваш обліковий запис" msgid "Sets email for password reset" msgstr "Встановлює ел. адресу для скидання пароля" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Налаштування" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "Поділіться цікавою історією!" msgid "Share a fun fact!" msgstr "Поділіться веселим фактом!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Все одно поширити" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Поділитись посиланням" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Поділитись посиланням" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Поділитись посиланням на діалог" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "" @@ -7247,8 +7812,8 @@ msgstr "Поділитись цією підбіркою" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Поділіться цією підбіркою та допоможіть людям долучитись до своєї спільности у Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "" msgid "Share your favorite feed!" msgstr "Поділіться улюбленою стрічкою!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Тестувальник спільних налаштувань" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Поширює посилання" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Показати" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Показати альтернативний текст" @@ -7303,8 +7864,8 @@ msgstr "" msgid "Show hidden replies" msgstr "Показати приховані відповіді" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Показувати менше таких публікацій" @@ -7312,55 +7873,63 @@ msgstr "Показувати менше таких публікацій" msgid "Show list anyway" msgstr "Все одно показати список" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Показати більше" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Показувати більше таких публікацій" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Показати стишені відповіді" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Показувати цитовані пости" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Показувати відповіді" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Показувати відповіді тих, за ким ви слідкуєте, перед іншими відповідями" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Показувати відповіді усім" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Показувати репости" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Показувати уривки збережених стрічок у стрічці користувачів, яких читаю" @@ -7372,16 +7941,17 @@ msgstr "Показати попередження" msgid "Show warning and filter from feeds" msgstr "Показати попередження і фільтрувати зі стрічки" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "" @@ -7390,14 +7960,15 @@ msgstr "" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "" msgid "Sign in to Bluesky or create a new account" msgstr "" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Вийти" @@ -7444,8 +8020,8 @@ msgstr "Вийти" msgid "Sign Out" msgstr "" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Вийти?" @@ -7459,12 +8035,12 @@ msgstr "Необхідно увійти для перегляду" msgid "Signed in as @{0}" msgstr "Ви увійшли як @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Схожі облікові записи" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Пропустити" @@ -7472,12 +8048,11 @@ msgstr "Пропустити" msgid "Skip this flow" msgstr "Пропустити цей процес" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Менше" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "" @@ -7490,11 +8065,11 @@ msgstr "Розробка П/З" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Інші стрічки, які можуть вам сподобатися" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Певні користувачі можуть відповідати" @@ -7510,10 +8085,11 @@ msgstr "" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "" -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Щось пішло не так" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Щось пішло не так. Будь ласка, спробуйте ще раз" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Щось пішло не так. Просимо спробувати ще раз." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Щось пішло не так!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "" @@ -7539,20 +8118,23 @@ msgstr "" msgid "Something wrong? Let us know." msgstr "" -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Сортувати відповіді" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Сортувати відповіді за" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Сортувати відповіді до постів за:" @@ -7579,7 +8161,7 @@ msgstr "Спам; надмірні згадки або відповіді" msgid "Sports" msgstr "Спорт" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "" @@ -7601,9 +8183,9 @@ msgstr "" msgid "Start chat with {displayName}" msgstr "Розпочати чат з {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Набір початківця" @@ -7611,12 +8193,12 @@ msgstr "Набір початківця" msgid "Starter pack by {0}" msgstr "Набір початківця від {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Початкові набори, створені вами" @@ -7638,19 +8220,21 @@ msgstr "Власні підбірки дозволяють легко ділит msgid "Status Page" msgstr "Сторінка стану" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Крок {0} з {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Сховище очищено, тепер вам треба перезапустити застосунок." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "" @@ -7676,10 +8260,14 @@ msgstr "" msgid "Subscribe" msgstr "Підписатися" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Підписатися на @{0}, щоб використовувати ці мітки:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Підписатися на мітника" @@ -7692,8 +8280,12 @@ msgstr "Підписатися на цього мітника" msgid "Subscribe to this list" msgstr "Підписатися на цей список" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Успіх!" @@ -7705,7 +8297,7 @@ msgstr "" msgid "Suggested Accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Пропоновано для вас" @@ -7714,26 +8306,26 @@ msgstr "Пропоновано для вас" msgid "Suggestive" msgstr "Непристойний" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Підтримка" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Перемкнути обліковий запис" @@ -7742,24 +8334,24 @@ msgstr "Перемкнути обліковий запис" msgid "Switch Account" msgstr "Перемикнути обліковий запис" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Системна" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Системний журнал" @@ -7767,6 +8359,18 @@ msgstr "Системний журнал" msgid "Tags only" msgstr "Лише мітки" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Розкажіть нам ще трохи" msgid "Terms" msgstr "Умови" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Умови Використання" @@ -7848,10 +8454,6 @@ msgstr "Поле вводу тексту" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Дякуємо! Адресу електронної пошти було успішно підтверджено." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Дякуємо. Вашу скаргу було надіслано." @@ -7864,28 +8466,28 @@ msgstr "Дякуємо, ви успішно підтвердили адресу msgid "That contains the following:" msgstr "Що містить наступне:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Цей псевдонім вже зайнятий." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Підбірку не вдалось знайти." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "На цьому все!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "Обліковий запис зможе взаємодіяти з вами після розблокування." @@ -7900,7 +8502,7 @@ msgstr "" msgid "The author of this thread has hidden this reply." msgstr "Автор цієї гілки приховав цю відповідь." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Веб — застосунок BlueSky" @@ -7920,10 +8522,6 @@ msgstr "Стрічка відкриття" msgid "The Discover feed now knows what you like" msgstr "Тепер Стрічка відкриття знає ваші уподобання" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "" - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "Досвід використання кращий у застосунку. Завантажте Bluesky вже зараз та продовжуйте з того місця, де зупинились." @@ -7944,8 +8542,16 @@ msgstr "Наступні мітки були додані до вашого ко msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Можливо цей пост було видалено." @@ -7953,9 +8559,10 @@ msgstr "Можливо цей пост було видалено." msgid "The Privacy Policy has been moved to <0/>" msgstr "Політика конфіденційності була переміщена до <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "Обране відео понад 100 Мб." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "" #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "Умови Використання перенесено до" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "Введений вами код підтвердження хибний. Переконайтеся, що ви використали правильне посилання або запросіть новий код." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Тема" @@ -7990,14 +8597,14 @@ msgstr "Тема" msgid "There is no time limit for account deactivation, come back any time." msgstr "Немає граничного часу для деактивації облікового запису, повертайтеся коли завгодно." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Виникла проблема при з'єднанні до Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "При з'єднанні з сервером виникла проблема" @@ -8006,17 +8613,12 @@ msgstr "При з'єднанні з сервером виникла пробле msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Виникла проблема зі з'єднанням з сервером. Перевірте підключення до Інтернету і повторіть спробу знову." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "При з'єднанні з вашим сервером виникла проблема" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Виникла проблема з завантаженням сповіщень. Натисніть тут, щоб повторити спробу." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Виникла проблема з завантаженням постів. Натисніть тут, щоб повторити спробу." @@ -8037,7 +8639,7 @@ msgstr "Виникла проблема з завантаженням ваших msgid "There was an issue fetching your service info" msgstr "Під час отримання інформації про використання виникла проблема" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Виникла проблема під час видалення цієї стрічки. Будь ласка, перевірте з'єднання з інтернетом та спробуйте знов." @@ -8052,9 +8654,9 @@ msgstr "Виникла проблема з надсиланням вашої с msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Виникла проблема з оновленням ваших стрічок. Будь ласка, перевірте підключення до Інтернету і повторіть спробу." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Виникла проблема з оновленням ваших ст msgid "There was an issue! {0}" msgstr "Виникла проблема! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Виникла проблема! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Виникла проблема. Перевірте підключення до Інтернету і повторіть спробу." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "У застосунку сталася неочікувана проблема. Будь ласка, повідомте нас, якщо ви отримали це повідомлення!" @@ -8089,7 +8691,7 @@ msgstr "У застосунку сталася неочікувана пробл msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Відбувався наплив нових користувачів у Bluesky! Ми активуємо ваш обліковий запис як тільки зможемо." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Ці налаштування застосовуються лише для стрічки тих, кого ви читаєте." @@ -8146,7 +8748,7 @@ msgstr "Цей вміст розміщено {0}. Увімкнути зовні msgid "This content is not available because one of the users involved has blocked the other." msgstr "Цей контент недоступний, оскільки один із залучених користувачів заблокував іншого." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Цей вміст не доступний для перегляду без облікового запису Bluesky." @@ -8158,6 +8760,10 @@ msgstr "" msgid "This email is already associated with your account." msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Ця функція знаходиться в беті. Ви можете дізнатися більше про експорт репозиторіїв у <0>цьому блозі.." @@ -8170,7 +8776,7 @@ msgstr "" msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Ця функція недоступна за використання пароля застосунку. Будь ласка, увійдіть за допомогою вашого основного пароля." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Ця стрічка зараз отримує забагато запитів і тимчасово недоступна. Спробуйте ще раз пізніше." @@ -8209,11 +8815,11 @@ msgstr "Ця мітка була додана автором." msgid "This label was applied by you." msgstr "Ця мітка була додана вами." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Цей мітник ще не заявив, які мітки він публікує, і може бути неактивним." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Це посилання веде на сайт:" @@ -8233,29 +8839,28 @@ msgstr "" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Даний сервіс модерації недоступний. Перегляньте деталі нижче. Якщо проблема не зникне, зв'яжіться з нами." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Зазначається, що пост було створено — <0>{0}, але вперше цей пост було оприлюднено на Bluesky — <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Цей пост було видалено." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Цей пост буде приховано від стрічок та гілок. Цю дію не можна скасувати." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "Автор цього поста вимкнув можливість його цитувати." @@ -8263,11 +8868,11 @@ msgstr "Автор цього поста вимкнув можливість й msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Цей сервіс не надав умови обслуговування або політики конфіденційності." @@ -8275,6 +8880,10 @@ msgstr "Цей сервіс не надав умови обслуговуван msgid "This should create a domain record at:" msgstr "Це має створити обліковий запис домену:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" @@ -8316,16 +8925,18 @@ msgstr "Цей користувач не підписаний ні на кого msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Це видалить «{0}» з ваших ігнорованих слів. Ви зможете повернути його будь-коли." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Це прибере @{0} зі списку швидкого доступу." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Це видалить ваш пост з цитованого посту для усіх користувачів та замінить його на заповнювач." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "" @@ -8334,24 +8945,27 @@ msgstr "" msgid "Thread preferences" msgstr "Налаштування гілок" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Налаштування гілок" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Режим розмови" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Налаштування обговорень" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "" @@ -8376,42 +8990,56 @@ msgstr "Кому ви хотіли б відправити цю скаргу?" msgid "Today" msgstr "Сьогодні" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Розкрити/сховати" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Увімкнути або вимкнути вміст для дорослих" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Топ" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Перекласти" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "" @@ -8428,14 +9056,10 @@ msgstr "Спробувати ще раз" msgid "TV" msgstr "ТВ" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Двофакторна автентифікація (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Введіть ваш псевдонім" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Введіть своє повідомлення тут" @@ -8453,7 +9077,7 @@ msgstr "Не вдається з'єднатись. Будь ласка, пере #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Не вдалося зв'язатися з вашим хостинг-п msgid "Unable to delete" msgstr "Неможливо видалити" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Розблокувати" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Розблокувати" @@ -8486,7 +9126,7 @@ msgstr "Розблокувати" msgid "Unblock account" msgstr "Розблокувати обліковий запис" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Розблокувати обліковий запис?" @@ -8495,13 +9135,13 @@ msgstr "Розблокувати обліковий запис?" msgid "Unblock list" msgstr "" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Скасувати репост" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Відписатись" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Відписатися від {0}" @@ -8523,7 +9163,7 @@ msgstr "" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "Прибрати вподобання" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "" @@ -8555,8 +9195,8 @@ msgstr "Не ігнорувати" msgid "Unmute {tag}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Не ігнорувати розмову" msgid "Unmute list" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Перестати ігнорувати" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Увімкнути звук відео" @@ -8597,8 +9237,8 @@ msgstr "" msgid "Unpin from home" msgstr "Відкріпити від головної сторінки" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Відкріпити від облікового запису" @@ -8614,8 +9254,8 @@ msgstr "" msgid "Unpinned from your feeds" msgstr "Відкріплено від ваших стрічок" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "" @@ -8636,7 +9276,7 @@ msgstr "Відписатися від цього мітника" msgid "Unsubscribed from list" msgstr "Відписано від списку" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Непідтримуваний тип відео" @@ -8662,8 +9302,8 @@ msgstr "Оновити <0>{displayName} у Списках" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "" @@ -8676,17 +9316,17 @@ msgstr "Оновити на {domain}" msgid "Update your email" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Не вдалось оновити вкладення з цитуванням" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Не вдалось оновити видимість відповіді" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Оновлення..." @@ -8698,20 +9338,20 @@ msgstr "Натомість завантажити фото" msgid "Upload a text file to:" msgstr "Завантажити текстовий файл до:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Завантажити з камери" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Завантажити з файлів" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Завантажити з бібліотеки" msgid "Uploading images..." msgstr "Завантаження зображень..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Завантаження ескізу посилання..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Завантаження відео..." @@ -8761,6 +9401,10 @@ msgstr "Використовувати рекомендоване" msgid "Use this to sign in to the other app along with your handle." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Використано:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Список користувачів оновлено" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Ім'я користувача або електронна адреса" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "користувачі, яких читає <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Користувачі, яких я читаю" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Користувачі в «{0}»" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "" @@ -8846,11 +9502,11 @@ msgstr "Значення:" msgid "Verification failed, please try again." msgstr "" -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "" @@ -8870,8 +9526,15 @@ msgstr "" msgid "Verify account" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "" @@ -8880,21 +9543,20 @@ msgstr "" msgid "Verify DNS Record" msgstr "Необхідно підтвердити запис DNS" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Діалог підтвердження адреси електронної пошти" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Підтвердити текстовий файл" msgid "Verify this account?" msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Підтвердити адресу електронної пошти" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Підтвердьте адресу вашої електронної пошти" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Версія {appVersion}" +msgid "Version {0}" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Відео" @@ -8928,7 +9598,7 @@ msgstr "Відео" msgid "Video failed to process" msgstr "Не вдалось обробити відео" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "" @@ -8942,15 +9612,15 @@ msgstr "" msgid "Video Games" msgstr "Відеоігри" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Відео не знайдено." @@ -8958,11 +9628,11 @@ msgstr "Відео не знайдено." msgid "Video settings" msgstr "Налаштування відео" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Відео завантажено" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Відео: {0}" @@ -8979,11 +9649,11 @@ msgstr "" msgid "View {0}'s avatar" msgstr "Переглянути аватар {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Переглянути профіль {0}" @@ -8991,7 +9661,7 @@ msgstr "Переглянути профіль {0}" msgid "View {displayName}'s profile" msgstr "Переглянути профіль {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Переглянути заблокований профіль користувача" @@ -9009,7 +9679,6 @@ msgstr "Переглянути запис для налагодження" msgid "View details" msgstr "Переглянути деталі" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Переглянути деталі як надіслати скаргу про порушення авторських прав" @@ -9022,23 +9691,23 @@ msgstr "Переглянути обговорення" msgid "View information about these labels" msgstr "Переглянути інформацію про мітки" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Переглянути профіль" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Переглянути аватар" @@ -9054,28 +9723,28 @@ msgstr "" msgid "View users who like this feed" msgstr "Переглянути користувачів, які вподобали цю стрічку" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Переглянути заблоковані облікові записи" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Переглянути власні стрічки та дослідити ще більше" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Перегляньте списки модерації" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Переглянути ігноровані облікові записи" @@ -9083,8 +9752,8 @@ msgstr "Переглянути ігноровані облікові запис msgid "View your verifications" msgstr "" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "" @@ -9092,16 +9761,20 @@ msgstr "" msgid "Views video in immersive mode" msgstr "" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "Відвідати сайт" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Гучність" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Попереджувати про вміст і фільтрувати msgid "Watch now" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "" + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "Ми не змогли знайти жодних результатів для цього хештегу." @@ -9128,7 +9809,7 @@ msgstr "Ми не змогли знайти жодних результатів msgid "We couldn't find any results for that topic." msgstr "" -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Не вдалось завантажити цю розмову" @@ -9136,6 +9817,10 @@ msgstr "Не вдалось завантажити цю розмову" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Ми оцінюємо {estimatedTime} до готовності вашого облікового запису." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Ми надіслали ще один лист з підтвердженням на <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "Ми сподіваємося, що ви проведете чудово msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "У нас закінчилися дописи у ваших підписках. Ось останні пости зі стрічки <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Ми не змогли визначити, чи ви можете завантажувати відео. Будь ласка, спробуйте ще раз." @@ -9164,10 +9849,14 @@ msgstr "Ми не змогли визначити, чи ви можете зав msgid "We were unable to load your birth date preferences. Please try again." msgstr "Не вдалося завантажити ваші налаштування дати дня народження. Повторіть спробу." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "Наразі ми не змогли завантажити список ваших маркувальників." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Ми не змогли під'єднатися. Будь ласка, спробуйте ще раз, щоб продовжити налаштування свого облікового запису. Якщо помилка повторюється, то ви можете пропустити цей процес." @@ -9176,7 +9865,7 @@ msgstr "Ми не змогли під'єднатися. Будь ласка, с msgid "We will let you know when your account is ready." msgstr "Ми повідомимо вас, коли ваш обліковий запис буде готовий." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -9184,6 +9873,22 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "Ми скористаємося цим, щоб підлаштувати Ваш досвід." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "У нас виникли проблеми з мережею, спроб msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Ми дуже раді, що ви приєдналися!" @@ -9205,15 +9910,15 @@ msgstr "Дуже прикро, але нам не вдалося знайти ц msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "На жаль, ми не змогли зараз завантажити ваші ігноровані слова. Будь ласка, спробуйте ще раз." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Даруйте, нам не вдалося виконати пошук за вашим запитом. Будь ласка, спробуйте ще раз через кілька хвилин." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Нам прикро! Пост, на який ви відповідаєте, видалено." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Нам дуже прикро! Ми не можемо знайти сторінку, яку ви шукали." @@ -9222,6 +9927,26 @@ msgstr "Нам дуже прикро! Ми не можемо знайти сто msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Вибачте, підписатися можна лише на двадцять мітників. Ви вже досягли свого ліміту." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "З поверненням!" @@ -9240,7 +9965,7 @@ msgstr "Яку назву оберете для власної підбірки? #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Як справи?" @@ -9256,11 +9981,11 @@ msgstr "Які мови використані в цьому пості?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Якими мовами ви хочете бачити пости у алгоритмічних стрічках?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Хто може взаємодіяти з цим постом?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Хто може відповідати" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Упс!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "" @@ -9322,12 +10047,12 @@ msgstr "Чому слід переглянути цього користувач msgid "Write a message" msgstr "Уведіть повідомлення" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Написати пост" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Написати відповідь" @@ -9358,11 +10083,11 @@ msgstr "Так, деактивувати" msgid "Yes, delete this starter pack" msgstr "Так, видалити цю підбірку" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Так, вилучити" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Так, сховати" @@ -9378,6 +10103,10 @@ msgstr "Вчора" msgid "You" msgstr "Ви" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "" @@ -9386,6 +10115,10 @@ msgstr "" msgid "You are creating an account on" msgstr "" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Ви в черзі." @@ -9403,7 +10136,7 @@ msgstr "" msgid "You are not allowed to go live" msgstr "" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Ви не можете завантажувати відео." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "" @@ -9441,10 +10173,18 @@ msgstr "Також ви можете знайти кастомні стрічк msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Ви також можете тимчасово деактивувати ваш обліковий запис замість цього та відновити його в будь-який час." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Ви можете продовжувати поточні розмови незалежно від того, які налаштування ви оберете." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Тепер ви можете увійти за допомогою нов msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Ви можете відновити свій обліковий запис для продовження входу. Ваш обліковий запис та пости побачать інші користувачі." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "" #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "" @@ -9472,7 +10212,7 @@ msgstr "Ніхто не підписаний на вас." msgid "You don't follow any users who follow @{name}." msgstr "Ви не підписані на жодного користувача, який підписався на @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "" @@ -9480,15 +10220,15 @@ msgstr "" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "У вас ще немає кодів запрошення! З часом ми надамо вам декілька." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "У вас немає закріплених стрічок." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "У вас немає збережених стрічок." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "Ви заблокували автора або автор заблокував вас." @@ -9502,6 +10242,10 @@ msgstr "Ви заблокували цього користувача" msgid "You have blocked this user. You cannot view their content." msgstr "Ви заблокували цього користувача. Ви не можете бачити їх вміст." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Ви увімкнули ігнорування цього обліков msgid "You have muted this user" msgstr "Ви увімкнули ігнорування цього користувача" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "У вас поки немає розмов. Розпочніть першу!" @@ -9547,7 +10291,7 @@ msgstr "Ви ще не заблокували жодного обліковог msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Ви ще не ігноруєте жодного облікового запису. Щоб ігнорувати, треба перейти до їхнього профілю та вибрати опцію «Ігнорувати» з меню їхнього облікового запису." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Ви досягли кінця" @@ -9572,6 +10316,10 @@ msgstr "У вас ще немає ігнорованих слів чи тегі msgid "You hid this reply." msgstr "Ви приховали цю відповідь." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Ви можете оскаржити мітки, що були додані не вами, якщо вважаєте, що їх додано помилково." @@ -9592,7 +10340,7 @@ msgstr "Ви можете додати лише 3 стрічки" msgid "You may only select up to 4 images" msgstr "Можна обрати не більше 4 зображень" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "" @@ -9600,6 +10348,14 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Ви маєте читати щонайменше сімох користувачів для генерування власної підбірки." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Ви маєте надати доступ до Фотографій для збереження QR-коду" @@ -9608,6 +10364,11 @@ msgstr "Ви маєте надати доступ до Фотографій дл msgid "You must select at least one labeler for a report" msgstr "Ви мусите обрати хоча б одного мітника для скарги" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "" @@ -9616,7 +10377,7 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "Раніше ви деактивували @{0}." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "" @@ -9628,16 +10389,20 @@ msgstr "" msgid "You reacted {0} to {1}" msgstr "" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Ви вийдете з усіх облікових записів." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Ви більше не будете отримувати сповіщення з цього обговорення" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Ви будете отримувати сповіщення з цього обговорення" @@ -9657,11 +10422,11 @@ msgstr "Ви: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Ви: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Ви читатимете запропонованих користувачів та стрічки щойно завершите створення облікового запису!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Ви читатимете запропонованих користувачів щойно завершите створення облікового запису!" @@ -9673,9 +10438,9 @@ msgstr "Ви підпишетесь на цих людей та інших {0}" msgid "You'll follow these people right away" msgstr "Ви миттєво почнете читати цих людей" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Ви отримаєте листа на <0>{0} для підтвердження, що це ви." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "Ви обрали приховувати слово або тег в ц msgid "You've found some people to follow" msgstr "" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Ваша домашня стрічка закінчилась! Підпишіться на більше користувачів щоб отримувати більше постів." @@ -9711,19 +10480,23 @@ msgstr "Ваша домашня стрічка закінчилась! Підп msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Ви досягли денного ліміту завантаження відео (забагато байтів)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Ви досягли денного ліміту завантаження відео (забагато відео)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Ваш акаунт" @@ -9735,7 +10508,7 @@ msgstr "Ваш обліковий запис видалено" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Ваш обліковий запис створено недостатньо давно для завантаження відео. Будь ласка, спробуйте пізніше." @@ -9751,11 +10524,11 @@ msgstr "" msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Ваша дата народження" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Ваш браузер не підтримує цей формат відео. Будь ласка, спробуйте інший браузер." @@ -9771,13 +10544,15 @@ msgstr "" msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Не вдалося розпізнати адресу електронної пошти." @@ -9786,15 +10561,11 @@ msgstr "Не вдалося розпізнати адресу електронн msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Ваша електронна пошта ще не підтверджена. Це важливий крок для безпеки вашого облікового запису, який ми рекомендуємо вам зробити." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "Ваша перша вподобайка!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "" @@ -9806,19 +10577,15 @@ msgstr "Ваша домашня стрічка порожня! Підпишіт msgid "Your full handle will be <0>@{0}" msgstr "Вашим повним псевдонімом буде <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "" @@ -9835,15 +10602,15 @@ msgstr "Ваші ігноровані слова" msgid "Your password has been changed successfully!" msgstr "Ваш пароль успішно змінено!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Пост опубліковано" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Ваші пости опубліковано" @@ -9851,15 +10618,19 @@ msgstr "Ваші пости опубліковано" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Ваші повідомлення, вподобання і блоки є публічними. Ігнорування - приватні." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Ваш обліковий запис, пости, стрічки та списки більше не будуть видимі іншим користувачам Bluesky. Ви можете відновити свій обліковий запис в будь-який момент ввівши дані облікового запису у поле для входу." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Відповідь опубліковано" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -9867,7 +10638,7 @@ msgstr "" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Вашу скаргу буде надіслано до Служби модерації Bluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "" diff --git a/src/locale/locales/vi/messages.po b/src/locale/locales/vi/messages.po index d7b85eb703..7eeafab8d3 100644 --- a/src/locale/locales/vi/messages.po +++ b/src/locale/locales/vi/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: vi\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:41\n" +"PO-Revision-Date: 2025-08-12 00:28\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -27,7 +27,7 @@ msgstr "(hoạt động)" msgid "(contains embedded content)" msgstr "(chứa nội dung nhúng)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(không có email)" @@ -79,9 +79,9 @@ msgstr "{0, plural, other {# lượt đăng lại}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, other {# giây}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, other {# mục chưa đọc}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, other {# mục chưa đọc}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, other {# tháng}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, other {người theo dõi}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, other {đang theo dõi}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, other {lượt thích}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, other {lượt thích}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, other {bài đăng}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, other {trích dẫn}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, other {lượt đăng lại}}" @@ -135,6 +138,10 @@ msgstr "{0} <0>trong <1>thẻ" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>trong <1>văn bản & thẻ" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "" @@ -143,11 +150,15 @@ msgstr "" msgid "{0} is not a valid URL" msgstr "" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} tham gia tuần này" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "{0} trên {1}" @@ -164,8 +175,16 @@ msgstr "{0} đã bày tỏ cảm xúc {1}" msgid "{0} reacted {1} to {2}" msgstr "{0} đã bày tỏ cảm xúc {1} cho {2}" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "hình đại diện của {0}" @@ -197,12 +216,12 @@ msgstr "{0} phút" msgid "{0}s" msgstr "{0} giây" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, other {# mục chưa đọc}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "Gói khởi đầu của {displayName}" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, other {giờ}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, other {phút}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} và <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã theo dõi bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} và <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã thích bảng tin của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} và <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã thích bài của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} và <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã xoá xác minh của họ khỏi tài khoản của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} và <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã đăng lại bài của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} và <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã đăng ký gói khởi đầu của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} và <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã xác thực bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} đã theo dõi bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} đã theo dõi lại bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} đã thích bảng tin của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} đã thích bài của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} đã xoá xác minh khỏi tài khoản tài khoản của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} đã đăng lại bài của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} đã đăng ký gói khởi đầu của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} đã xác thực bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} và {additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã theo dõi bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} và {additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã thích bảng tin của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} và {additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã thích bài của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} và {additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã xoá xác minh của họ khỏi tài khoản của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} và {additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã đăng lại bài của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} và {additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã đăng ký gói khởi đầu của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} và {additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã xác thực bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} đã theo dõi bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} đã theo dõi lại bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} đã thích bảng tin của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} đã thích bài của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} đã xoá xác minh khỏi tài khoản tài khoản của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} đã đăng lại bài của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} đã đăng ký gói khởi đầu của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} đã xác thực bạn" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} đang theo dõi" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "không thể nhắn tin cho {handle}" @@ -392,7 +410,7 @@ msgstr "{joinedAllTimeCount, plural, other {# người dùng}} đã đăng ký!" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, other {# mục chưa đọc}}" @@ -432,12 +450,12 @@ msgstr "Các xác minh của {userName}" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, và {2, plural, other {# người khác}} nằm trong trong gói khởi đầu của bạn" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, và {2, plural, other {# người khác}} nằm trong trong gói khởi đầu của bạn" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, other {người theo dõi}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, other {đang theo dõi}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} và<1> <2>{1} nằm trong gói khởi đầu của bạn" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} nằm trong gói khởi đầu của bạn" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} thành viên" @@ -466,11 +484,11 @@ msgstr "<0>{0} thành viên" msgid "<0>{date} at {time}" msgstr "<0>{date} lúc {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>Thử nghiệm: Khi tùy chọn này được bật, bạn chỉ nhận thông báo về trả lời và trích dẫn từ người dùng bạn theo dõi. Các điều khiển khác sẽ được thêm trong tương lai." +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Bạn và<1> <2>{0} nằm trong gói khởi đầu của bạn" @@ -503,10 +521,14 @@ msgstr "một tin nhắn" msgid "A new form of verification" msgstr "Một dạng xác thực hoàn toàn mới" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "Giới thiệu" @@ -524,25 +546,25 @@ msgstr "Chấp nhận yêu cầu trò chuyện" msgid "Accept Request" msgstr "Chấp nhận yêu cầu" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "Trợ năng" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "Cài đặt trợ năng" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "Tài khoản" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "Tài khoản được theo dõi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "Tài khoản đã bị ẩn" msgid "Account Muted by List" msgstr "Tài khoản đã bị ẩn bởi Danh sách" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "Tùy chọn tài khoản" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "Tài khoản đã bị xóa khỏi truy cập nhanh" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "Tài khoản đã bị bỏ theo dõi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "Tài khoản đã được bật lại thông báo" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Tài khoản có dấu tích xanh hình viền răng cưa <0><1/> có thể xác minh người khác. Những người xác minh đáng tin cậy này được chọn bởi Bluesky." +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "Thêm" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "Thêm {0} để tiếp tục" @@ -634,8 +666,8 @@ msgstr "Thêm tài khoản" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "Thêm văn bản thay thế" msgid "Add alt text (optional)" msgstr "Thêm văn bản thay thế (không bắt buộc)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "Thêm tài khoản khác" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "Thêm bài" @@ -670,8 +702,8 @@ msgstr "Thêm mật khẩu ứng dụng" msgid "Add emoji reaction" msgstr "Thêm emoji để bày tỏ cảm xúc" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "Thêm thông tin chi tiết (không bắt buộc)" @@ -683,7 +715,7 @@ msgstr "Thêm từ ẩn với những thiết lập hiện tại" msgid "Add muted words and tags" msgstr "Thêm từ cấm và thẻ" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "Thêm bài mới" @@ -704,7 +736,7 @@ msgstr "Thêm bày tỏ cảm xúc" msgid "Add recommended feeds" msgstr "Thêm bảng tin được đề xuất" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "Thêm bảng tin từ gói khởi đầu của bạn!" @@ -725,10 +757,6 @@ msgstr "Thêm bảng tin này vào danh sách bảng tin của bạn" msgid "Add to lists" msgstr "Thêm vào danh sách" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "Thêm vào bảng tin của tôi" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "Thêm tài khoản vào danh sách" @@ -738,11 +766,11 @@ msgstr "Thêm tài khoản vào danh sách" msgid "Added to list" msgstr "Thêm vào danh sách" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "Đã thêm vào bảng tin của tôi" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "Thông tin chi tiết thêm (tối đa 300 kí tự)" @@ -750,18 +778,18 @@ msgstr "Thông tin chi tiết thêm (tối đa 300 kí tự)" msgid "Adult" msgstr "18+" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "Nội dung 18+" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Nội dung 18+ chỉ có thể được bật qua Web tại <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "Nội dung 18+ đã bị tắt." @@ -770,16 +798,32 @@ msgstr "Nội dung 18+ đã bị tắt." msgid "Adult Content labels" msgstr "Nhãn cho nội dung 18+" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "Nâng cao" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "alice@example.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "Tất cả" @@ -793,7 +837,7 @@ msgstr "Tất cả tài khoản đã được theo dõi!" msgid "All languages" msgstr "Mọi ngôn ngữ" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "Tất cả bảng tin bạn đã lưu tại cùng một nơi." @@ -802,16 +846,21 @@ msgstr "Tất cả bảng tin bạn đã lưu tại cùng một nơi." msgid "Allow access to your direct messages" msgstr "Cho phép truy cập tin nhắn của bạn" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "Cho phép tin nhắn mới từ" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "Cho phép trích dẫn bài đăng" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "Cho phép trả lời từ:" @@ -828,13 +877,13 @@ msgstr "Bạn đã có mã rồi?" msgid "Already signed in as @{0}" msgstr "Đã đăng nhập dưới tên @{0}" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "ALT" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "ALT" msgid "Alt text" msgstr "Văn bản thay thế" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "Văn bản thay thế" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Văn bản thay thế mô tả hình ảnh cho người khiếm thị hoặc thị lực yếu, giúp bổ sung ngữ cảnh." @@ -861,27 +910,19 @@ msgstr "Văn bản thay thế sẽ bị cắt ngắn. {MAX_ALT_TEXT, plural, oth msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Email đã được gửi đến {0}, bao gồm mã xác nhận để nhập ở phía dưới." -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "Một email đã được gửi đến địa chỉ email trước đây của bạn, {currentEmail}. Trong đó có bao gồm một mã xác nhận bạn có thể dùng để điền vào phía dưới." - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Email đã được gởi! Vui lòng nhập mã xác nhận trong email vào phía dưới." - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Đã có lỗi xảy ra" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "Đã có lỗi xảy ra" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "Đã có lỗi xảy ra khi đang nén video." -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "Đã có lỗi xảy ra khi tải bảng tin." @@ -889,11 +930,11 @@ msgstr "Đã có lỗi xảy ra khi tải bảng tin." msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Đã có lỗi xảy ra khi đang tạo gói khởi đầu của bạn. Bạn muốn thử lại không?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "Đã có lỗi xảy ra khi đang tải video. Vui lòng thử lại sau." -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "Đã có lỗi xảy ra khi đang tải video. Vui lòng thử lại." @@ -910,7 +951,7 @@ msgstr "Đã có lỗi xảy ra khi đang chọn video" msgid "An error occurred while trying to follow all" msgstr "Đã có lỗi xảy ra khi đang cố gắng theo dõi tất cả" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "Đã có lỗi xảy ra khi đang tải lên video." @@ -934,8 +975,8 @@ msgstr "Có vấn đề xảy ra khi đang mở cuộc trò chuyện" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "có vấn đề không xác định xảy ra" msgid "an unknown labeler" msgstr "dịch vụ nhãn không xác định" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "và" @@ -963,10 +1004,14 @@ msgstr "và" msgid "Animals" msgstr "Động vật" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "GIF động" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "Giới thiệu xác minh trên Bluesky" @@ -980,7 +1025,13 @@ msgstr "Hành vi phản xã hội" msgid "Anybody can interact" msgstr "Mọi người có thể tương tác" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "Mật khẩu ứng ụng chỉ chứa chữ cái, số, dấu cách, d msgid "App password names must be at least 4 characters long" msgstr "Mật khẩu ứng dụng phải dài tối thiểu 4 ký tự" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "Mật khẩu ứng dụng" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Mật khẩu ứng dụng" @@ -1053,10 +1104,10 @@ msgstr "Khiếu nại việc đình chỉ" msgid "Appeal this decision" msgstr "Kháng nghị quyết định này" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "Giao diện" @@ -1065,12 +1116,20 @@ msgstr "Giao diện" msgid "Apply default recommended feeds" msgstr "Áp dụng bảng tin được đề xuất mặc định" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "Lưu trữ từ {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "Bài đăng lưu trữ" @@ -1078,7 +1137,7 @@ msgstr "Bài đăng lưu trữ" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Bạn có chắc chắn muốn xóa mật khẩu ứng dụng \"{0}\" không?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Bạn có chắc chắn muốn xóa tin nhắn này? Tin nhắn sẽ bị xóa cho bạn, nhưng không phải cho người khác." @@ -1098,19 +1157,15 @@ msgstr "Bạn có chắc muốn rời khỏi cuộc trò chuyện này?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Bạn có chắc chắn muốn rời hội thoại này? Tin nhắn của bạn sẽ bị xóa cho bạn, nhưng không phải cho người khác." -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Bạn có chắc chắn muốn xóa {0} khỏi bảng tin của bạn không?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "Bạn có chắc chắn muốn xóa khỏi bảng tin của bạn không?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "Bạn có chắc chắn muốn hủy bỏ bản nháp này không?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "Bạn có chắc chắn muốn hủy bỏ bài đăng này không?" @@ -1131,29 +1186,26 @@ msgstr "Nghệ thuật" msgid "Artistic or non-erotic nudity." msgstr "Khỏa thân nghệ thuật hoặc không khiêu dâm." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "Tối thiểu 3 ký tự" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "Tùy chọn tự động phát đã được chuyển sang <0>Cài đặt Nội dung và Phương tiện." - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "Tự động phát video và GIF" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "Tự động phát video và GIF" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "Trở lại" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "Trở lại Chats" @@ -1195,28 +1247,44 @@ msgstr "Bạn cần xác minh email trước khi có thể tạo gói khởi đ msgid "Before you can accept this chat request, you must first verify your email." msgstr "" +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "Ngày sinh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "Chặn" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "Chặn" msgid "Block account" msgstr "Chặn tài khoản" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "Chặn tài khoản" @@ -1262,20 +1330,20 @@ msgstr "Chặn người dùng" msgid "Block User" msgstr "Chặn người dùng" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "Đã bị chặn" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "Tài khoản đã bị chặn" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "Tài khoản đã bị chặn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Tài khoản bị chặn không thể trả lời bài đăng của bạn, đề cập đến bạn hoặc tương tác với bạn." @@ -1284,11 +1352,11 @@ msgstr "Tài khoản bị chặn không thể trả lời bài đăng của bạ msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Tài khoản bị chặn không thể trả lời bài đăng của bạn, đề cập đến bạn hoặc tương tác với bạn. Bạn sẽ không thể xem nội dung của họ và họ sẽ không được phép xem nội dung của bạn." -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "Bài đăng đã bị chặn." -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Việc chặn không ngăn dịch vụ gắn nhãn này đặt nhãn trên tài khoản của bạn." @@ -1309,11 +1377,12 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky không thể xác nhận tính xác thực của ngày được tuyên bố." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1347,6 +1416,14 @@ msgstr "Bluesky sẽ không hiển thị hồ sơ và bài đăng của bạn ch msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky sẽ chủ động xác thực các tài khoản nổi bật và đáng tin." +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "Làm mờ hình ảnh và lọc từ bảng tin" msgid "Books" msgstr "Sách" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "Xem nhiều tài khoản hơn trên trang Khám phá" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "Xem nhiều bảng tin hơn trên trang Khám phá" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "Xem thêm đề xuất" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "Xem thêm đề xuất trên trang Khám phá" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "Doanh nghiệp" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "Bởi {0}" @@ -1428,15 +1502,23 @@ msgstr "Bởi {0}" msgid "By <0>{0}" msgstr "Bởi <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "Bằng việc tạo tài khoản, bạn đồng ý với <0>Chính sách Bảo mật." -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "Bằng việc tạo tài khoản, bạn đồng ý với <0>Điều khoản dịch vụ và <1>Chính sách Bảo mật." -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Bằng việc tạo tài khoản, bạn đồng ý với <0>Điều khoản dịch vụ." @@ -1448,14 +1530,17 @@ msgstr "Bởi bạn" msgid "Camera" msgstr "Máy ảnh" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "Máy ảnh" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "Hủy bỏ" @@ -1500,11 +1582,7 @@ msgstr "Hủy xóa tài khoản" msgid "Cancel image crop" msgstr "Huỷ cắt ảnh" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "Hủy chỉnh sửa hồ sơ" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "Hủy bài đăng trích dẫn" @@ -1516,14 +1594,10 @@ msgstr "Hủy kích hoạt lại và đăng xuất" msgid "Cancel search" msgstr "Huỷ tìm kiếm" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "Hủy mở trang web liên kết" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "Không thể tương tác với người dùng đã bị chặn" @@ -1553,17 +1627,12 @@ msgstr "Thay đổi biểu tượng ứng dụng sang \"{0}\"" msgid "Change app language" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "Thay đổi địa chỉ email" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "Thay đổi tên tài khoản" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "Thay đổi dịch vụ kiểm duyệt" @@ -1579,14 +1648,6 @@ msgstr "Thay đổi ngôn ngữ bài đăng thành {suggestedLanguageName}" msgid "Change report reason" msgstr "Thay đổi lý do báo cáo" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "Thay đổi email của bạn" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "Thay đổi địa chỉ email của bạn" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "Thay đổi biểu tượng ứng dụng" @@ -1596,10 +1657,15 @@ msgstr "Thay đổi biểu tượng ứng dụng" msgid "Changes hosting provider" msgstr "Thay đổi nơi quản lý tài khoản" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "Chat" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "Đã xóa đoạn chat" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "Đã tắt thông báo chat" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "Hộp thư yêu cầu trò chuyện" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "Yêu cầu trò chuyện" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "Cài đặt chat" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "Cài đặt chat" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Đã bật lại thông báo chat" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "Chats" @@ -1661,7 +1738,7 @@ msgstr "Kiểm tra hộp thư đến của bạn để nhận email với mã x msgid "Choose domain verification method" msgstr "Chọn phương pháp xác minh tên miền" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "Chọn bảng tin" @@ -1669,7 +1746,7 @@ msgstr "Chọn bảng tin" msgid "Choose for me" msgstr "Chọn cho tôi" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "Chọn người" @@ -1685,23 +1762,23 @@ msgstr "Chọn màu này làm hình đại diện của bạn" msgid "Choose your account provider" msgstr "Chọn nơi quản lý tài khoản của bạn" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "Chọn bảng tin của riêng bạn! Các bảng tin được xây dựng bởi cộng đồng giúp bạn tìm nội dung bạn yêu thích." -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "Chọn mật khẩu của bạn" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "Chọn tên người dùng của bạn" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "Xóa tất cả dữ liệu lưu trữ" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "Xóa tất cả dữ liệu lưu trữ (khởi động lại sau đó)" @@ -1714,23 +1791,27 @@ msgstr "Xoá bộ nhớ đệm hình ảnh" msgid "Clear search query" msgstr "Xóa truy vấn tìm kiếm" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "nhấn vào đây" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "Nhấn để vô hiệu hóa trích dẫn cho bài đăng này." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "Nhấn để cho phép trích dẫn cho bài đăng này." @@ -1750,14 +1831,16 @@ msgstr "Khí hậu" msgid "Clip 🐴 clop 🐴" msgstr "Lộp 🐴 cộp 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Lộp 🐴 cộp 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Đóng" @@ -1789,13 +1876,15 @@ msgstr "Đóng cảnh báo" msgid "Close bottom drawer" msgstr "Đóng trình đơn kéo dưới" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "Đóng hộp thoại" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "Đóng trình đơn" @@ -1804,7 +1893,7 @@ msgstr "Đóng trình đơn" msgid "Close emoji picker" msgstr "Đóng bảng chọn emoji" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "Đóng hộp thoại GIF" @@ -1822,7 +1911,7 @@ msgstr "Đóng trình xem hình ảnh" msgid "Close menu" msgstr "Đóng bảng chọn" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "Đóng hộp thoại này" @@ -1830,7 +1919,7 @@ msgstr "Đóng hộp thoại này" msgid "Closes password update alert" msgstr "Đóng cảnh báo cập nhật mật khẩu" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "Đóng trình soạn bài đăng và huỷ bỏ nháp" @@ -1843,16 +1932,16 @@ msgstr "Đóng bảng chọn emoji" msgid "Closes viewer for header image" msgstr "Đóng trình xem hình ảnh tiêu đề" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "Thu gọn danh sách người dung" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "Thu gọn danh sách người dùng cho một thông báo cụ thể" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "Chế độ màu" @@ -1870,7 +1959,8 @@ msgstr "Hài kịch" msgid "Comics" msgstr "Truyện tranh" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Quy tắc cộng đồng" @@ -1879,38 +1969,34 @@ msgstr "Quy tắc cộng đồng" msgid "Complete onboarding and start using your account" msgstr "Hoàn thành quá trình hướng dẫn và bắt đầu sử dụng tài khoản của bạn" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "Hoàn thành thử thách" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "Soạn bài đăng mới" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Soạn bài đăng với độ dài tối đa {0, plural, other {# kí tự}}" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "Soạn trả lời" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "Đang nén video..." -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "Cấu hình cài đặt lọc nội dung cho danh mục: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "Đã cấu hình trong <0>cài đặt kiểm duyệt." -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "Xác nhận cài đặt ngôn ngữ nội dung" msgid "Confirm delete account" msgstr "Xác nhận xóa tài khoản" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "Xác nhận tuổi của bạn:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "Xác nhận ngày sinh của bạn" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "Xác nhận ngày sinh của bạn" msgid "Confirmation code" msgstr "Mã xác nhận" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "Mã xác nhận" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "Đang kết nối..." -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "Liên hệ hỗ trợ" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "Nội dung & phương tiện" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "Nội dung và phương tiện" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "Nội dung và phương tiện" @@ -1977,7 +2069,8 @@ msgstr "Nội dung và phương tiện" msgid "Content Blocked" msgstr "Nội dung đã bị chặn" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "Lọc nội dung" @@ -2006,10 +2099,12 @@ msgstr "Cảnh báo nội dung" msgid "Content warnings" msgstr "Cảnh báo nội dung" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "Nền trình đơn, nhấn để đóng trình đơn." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "Tiếp tục" msgid "Continue as {0} (currently signed in)" msgstr "Tiếp tục dưới tên {0} (đang đăng nhập)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "Tiếp tục thảo luận..." @@ -2029,6 +2129,10 @@ msgstr "Tiếp tục thảo luận..." msgid "Continue to next step" msgstr "Tiếp tục bước tiếp theo" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "Đã sao chép" msgid "Copied build version to clipboard" msgstr "Đã sao chép phiên bản xây dựng vào bảng ghi tạm" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "Sao chép mã số phiên bản vào bản ghi tạm" msgid "Copy" msgstr "Sao chép" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "Sao chép mật khẩu ứng dụng" @@ -2087,8 +2187,8 @@ msgstr "Sao chép mật khẩu ứng dụng" msgid "Copy at:// URI" msgstr "Sao chép URI at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "Sao chép mã DID của tác giả" @@ -2120,10 +2220,10 @@ msgstr "Sao chép liên kết" msgid "Copy link to list" msgstr "Sao chép liên kết đến danh sách" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "Sao chép liên kết đến bài đăng" @@ -2136,18 +2236,18 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "Sao chép văn bản tin nhắn" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "Sao chép URI at:// của bài đăng" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "Sao chép văn bản bài đăng" @@ -2159,11 +2259,25 @@ msgstr "Sao chép mã QR" msgid "Copy TXT record value" msgstr "Sao chép giá trị bản ghi TXT" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Chính sách bản quyền" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "Không thể tắt thông báo chat" msgid "Could not process your video" msgstr "Không thể xử lý video của bạn" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "Tạo" @@ -2195,7 +2317,7 @@ msgstr "Tạo mã QR cho gói khởi đầu" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "Tạo gói khởi đầu" @@ -2205,21 +2327,22 @@ msgstr "Tạo gói khởi đầu cho tôi" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "Tạo tài khoản" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "Tạo tài khoản" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "Tạo tài khoản" @@ -2241,7 +2364,7 @@ msgstr "Tạo thêm" msgid "Create new account" msgstr "Tạo tài khoản mới" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "Tạo báo cáo cho {0}" @@ -2268,7 +2391,7 @@ msgstr "Tùy chỉnh" msgid "Customization options" msgstr "Tùy chọn tùy chỉnh" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "Tùy chỉnh ai có thể tương tác với bài đăng này." @@ -2278,12 +2401,12 @@ msgstr "Tuỳ biến trải nghiệm Bluesky của bạn" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "Tối" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "Tối" @@ -2292,21 +2415,21 @@ msgstr "Tối" msgid "Dark mode" msgstr "Chế độ tối" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "Chế độ tối" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "Ngày sinh" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "Vô hiệu hóa tài khoản" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "Gỡ lỗi kiểm duyệt" @@ -2314,7 +2437,7 @@ msgstr "Gỡ lỗi kiểm duyệt" msgid "Debug panel" msgstr "Bảng gỡ lỗi" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "Mặc định" @@ -2322,8 +2445,8 @@ msgstr "Mặc định" msgid "Default icons" msgstr "Biểu tượng mặc định" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "Biểu tượng mặc định" msgid "Delete" msgstr "Xóa" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "Xóa tài khoản" @@ -2355,7 +2478,7 @@ msgstr "Xóa mật khẩu ứng dụng?" msgid "Delete chat" msgstr "Xóa đoạn chat" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "Xóa bản ghi khai báo chat" @@ -2370,7 +2493,7 @@ msgstr "Xóa cuộc trò chuyện" msgid "Delete Conversation" msgstr "Xoá cuộc trò chuyện" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "Xóa cho tôi" @@ -2378,11 +2501,11 @@ msgstr "Xóa cho tôi" msgid "Delete list" msgstr "Xoá danh sách" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "Xóa tin nhắn" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "Xóa tin nhắn cho tôi" @@ -2390,9 +2513,9 @@ msgstr "Xóa tin nhắn cho tôi" msgid "Delete my account" msgstr "Xóa tài khoản của tôi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "Xóa bài đăng" @@ -2409,11 +2532,11 @@ msgstr "Xóa gói khởi đầu?" msgid "Delete this list?" msgstr "Xóa danh sách này?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "Xóa bài đăng này?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "Đã xóa" @@ -2422,15 +2545,20 @@ msgstr "Đã xóa" msgid "Deleted Account" msgstr "Đã xóa tài khoản" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "Đã xóa bài đăng." #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "Mô tả" @@ -2447,12 +2575,12 @@ msgstr "Mô tả quá dài. {DESCRIPTION_MAX_GRAPHEMES, plural, other {Số kí msgid "Descriptive alt text" msgstr "Văn bản thay thế mô tả" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "Gỡ trích dẫn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "Gỡ trích dẫn bài đăng?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "Đã bật chế độ dành cho nhà phát triển" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "Lựa chọn phát triển" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "Hộp thoại: điều chỉnh ai có thể tương tác với bài đăng này" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "Mờ" @@ -2492,27 +2620,27 @@ msgstr "" msgid "Disable Email 2FA" msgstr "Tắt Email 2FA" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "Tắt phản hồi xúc giác" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "Tắt phụ đề" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "Đã tắt" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "Hủy bỏ" @@ -2520,11 +2648,11 @@ msgstr "Hủy bỏ" msgid "Discard changes?" msgstr "Hủy thay đổi?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "Hủy bản nháp?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "Hủy bài đăng?" @@ -2542,7 +2670,7 @@ msgstr "Khám quá các bảng tin" msgid "Discover new custom feeds" msgstr "Khám phá bảng tin mới" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "Khám phá bảng tin mới" @@ -2550,7 +2678,7 @@ msgstr "Khám phá bảng tin mới" msgid "Dismiss" msgstr "Bỏ qua" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "Bỏ qua lỗi " @@ -2562,26 +2690,26 @@ msgstr "Bỏ qua hướng dẫn bắt đầu" msgid "Dismiss interests" msgstr "Bỏ qua mục quan tâm" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Đóng phần này" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "Hiển thị biểu tượng văn bản thay thế lớn hơn" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "Tên hiển thị" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "Tên hiển thị" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "Tên hiển thị quá dài" @@ -2603,15 +2731,11 @@ msgstr "Đừng áp dụng từ cấm này cho người dùng bạn đang theo d msgid "Does not include nudity." msgstr "Không chứa hình khỏa thân." -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "Không bắt đầu hoặc kết thúc bằng dấu gạch ngang" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "Tên miền đã được xác minh!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -2619,6 +2743,15 @@ msgstr "" msgid "Don't see an email? <0>Click here to resend." msgstr "" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "Nhấp đúp hoặc nhấp và giữ tin nhắn để thêm bày tỏ c msgid "Double tap to close the dialog" msgstr "Nhấn đúp để đóng hộp thoại" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "Chạm hai lần để thích" @@ -2673,7 +2806,7 @@ msgstr "Tải Bluesky" msgid "Download CAR file" msgstr "Tải tệp CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "Thả vào để thêm hình ảnh" @@ -2689,18 +2822,10 @@ msgstr "vd: alice" msgid "e.g. Alice Lastname" msgstr "vd: Alice Lastname" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "vd: Alice Roberts" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "vd: alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "vd: nghệ sĩ, người yêu chó, và người thích đọc." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "vd: khỏa thân nghệ thuật." @@ -2725,10 +2850,11 @@ msgstr "vd: người dùng hay trả lời bằng quảng cáo." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Mỗi mã chỉ được dùng một lần. Bạn sẽ nhận thêm mã mời theo định kỳ." -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "Chỉnh sửa" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "Chỉnh sửa" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "Chỉnh sửa hình đại diện" @@ -2749,12 +2875,12 @@ msgstr "Chỉnh sửa bảng tin" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "Chỉnh sửa hình ảnh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "Chỉnh sửa cài đặt tương tác" @@ -2776,33 +2902,33 @@ msgstr "" msgid "Edit Moderation List" msgstr "Chỉnh sửa danh sách kiểm duyệt" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "Chỉnh sửa bảng tin của tôi" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "Chỉnh sửa hồ sơ của tôi" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Thay đổi người" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "Chỉnh sửa cài đặt tương tác bài đăng" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "Chỉnh sửa hồ sơ" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "Chỉnh sửa hồ sơ" @@ -2814,19 +2940,11 @@ msgstr "Chỉnh sửa gói khởi đầu" msgid "Edit User List" msgstr "Chỉnh sửa danh sách người dùng" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "Chỉnh sửa ai có thể trả lời" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "Chỉnh sửa tên hiển thị của bạn" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "Chỉnh sửa mô tả hồ sơ của bạn" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "Chỉnh sửa gói khởi đầu của bạn" @@ -2839,8 +2957,8 @@ msgstr "Giáo dục" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "Người tạo danh sách này đã chặn bạn hoặc bạn đã chặn người đó." -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "Email" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "Đã tắt Email 2FA" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "Đã bật Email 2FA" @@ -2865,10 +2983,6 @@ msgstr "Đã gởi lại email" msgid "Email sent!" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "Đã cập nhật email!" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "" @@ -2883,8 +2997,8 @@ msgstr "Mã HTML nhúng" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "Nhúng bài đăng" @@ -2892,7 +3006,7 @@ msgstr "Nhúng bài đăng" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Nhúng bài đăng vào trang web của bạn. Chỉ cần sao chép đoạn mã sau và dán vào mã HTML của trang web của bạn." -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "Trình phát video nhúng" @@ -2906,7 +3020,7 @@ msgstr "Bật" msgid "Enable {0} only" msgstr "Chỉ bật cho {0}" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "Bật nội dung 18+" @@ -2919,16 +3033,20 @@ msgstr "" msgid "Enable external media" msgstr "Bật phương tiện ngoại vi" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "Bật trình phát phương tiện cho" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "Bật thông báo ưu tiên" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "Bật phụ đề" @@ -2941,17 +3059,14 @@ msgstr "Chỉ bật nguồn này" msgid "Enable trending topics" msgstr "Mở chủ đề nổi trội" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "Bật video nổi bật trong bảng tin Discover" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "Bật video nổi bật trong bảng tin Discover." - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "Đã bật" @@ -2963,7 +3078,7 @@ msgstr "Cuối bảng tin" msgid "Ensure you have selected a language for each subtitle file." msgstr "Hãy bảo đảm bạn đã chọn ngôn ngữ cho mỗi tệp phụ đề." -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "Nhập mật khẩu" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "Nhập từ hoặc thẻ" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "Nhập mã" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "Vào chế độ toàn màn hình" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "Nhập ngày sinh của bạn" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "Nhập địa chỉ email của bạn" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "Nhập email mới của bạn ở dưới." - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "Nhập mật khẩu" @@ -3022,7 +3129,7 @@ msgstr "Nhập mật khẩu" msgid "Enter your username and password" msgstr "Nhập tên đăng nhập và mật khẩu" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "Mở toàn màn hình" @@ -3030,16 +3137,28 @@ msgstr "Mở toàn màn hình" msgid "Entertainment" msgstr "Giải trí" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "Lỗi" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "Đã có lỗi xảy ra khi đang lưu tệp" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "Nhận được lỗi phản hồi captcha." @@ -3047,27 +3166,34 @@ msgstr "Nhận được lỗi phản hồi captcha." msgid "Error:" msgstr "Lỗi:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "Lỗi: {error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "Mọi người" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "Mọi người có thể trả lời" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "Mọi người có thể trả lời bài đăng này." -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Tất cả mọi người" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "Trừ người dùng bạn đang theo dõi" msgid "Excludes users you follow" msgstr "Trừ người dùng bạn đang theo dõi" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "Thoát toàn màn hình" @@ -3106,24 +3232,28 @@ msgstr "Thoát xem ảnh" msgid "Expand alt text" msgstr "Mở rộng văn bản thay thế" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "Mở rộng danh sách người dùng" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "Mở rộng hoặc thu gọn toàn bộ bài đăng bạn đang trả lời" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "Mở rộng hoặc thu gọn nội dung bài đăng" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "Dự kiến uri sẽ phân giải thành một bản ghi" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "Thử nghiệm" @@ -3153,15 +3283,15 @@ msgstr "Phương tiện phản cảm hoặc có khả năng phản cảm." msgid "Explicit sexual images." msgstr "Hình ảnh khiêu dâm." -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "Khám phá" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "Xuất dữ liệu của tôi" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "Phương tiện ngoại vi" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Phương tiện ngoại vi có thể cho phép trang web thu thập thông tin về bạn và thiết bị của bạn. Thông tin không được gởi đi hoặc yêu cầu cho đến khi bạn nhấn nút \"phát\"." -#: src/Navigation.tsx:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "Tùy chỉnh phương tiện ngoại vi" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "Chấp nhận yêu cầu không thành công" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "Đã xảy ra lỗi khi thêm bày tỏ cảm xúc" @@ -3211,8 +3341,8 @@ msgstr "Không tạo được mật khẩu ứng dụng. Vui lòng thử lại." msgid "Failed to create conversation" msgstr "Tạo cuộc trò chuyện không thành công" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "Không tạo được gói khởi đầu" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "Xóa đoạn chat không thành công" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "Không xóa được tin nhắn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "Không xóa được bài đăng, vui lòng thử lại" @@ -3238,8 +3368,8 @@ msgstr "Không xóa được bài đăng, vui lòng thử lại" msgid "Failed to delete starter pack" msgstr "Không xóa được gói khởi đầu" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "Tải cuộc trò chuyện không thành công" @@ -3250,14 +3380,32 @@ msgstr "Tải cuộc trò chuyện không thành công" msgid "Failed to load feeds preferences" msgstr "Không tải được cài đặt bảng tin" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "Không tải được GIF" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Không tải được tin nhắn trước" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "" + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "Không tải được gợi ý bảng tin" msgid "Failed to load suggested follows" msgstr "Không tải được gợi ý theo dõi" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "Đánh dấu tất cả yêu cầu là đã đọc không thành công" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "Không ghim được bài đăng" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "Đã xảy ra lỗi khi xoá bày tỏ cảm xúc" @@ -3291,15 +3439,11 @@ msgstr "Đã có lỗi xảy ra khi xoá xác minh" msgid "Failed to save image: {0}" msgstr "Không lưu được ảnh: {0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "Không lưu được cài đặt thông báo, vui lòng thử lại" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "Không thể lưu cài đặt. Vui lòng thử lại." -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "Đã xảy ra lỗi khi lưu những mục quan tâm." @@ -3318,7 +3462,7 @@ msgstr "" msgid "Failed to submit appeal, please try again." msgstr "Không gởi được kháng nghị, vui lòng thử lại." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "Không thay đổi được chế độ im lặng thảo luận, vui lòng thử lại" @@ -3335,7 +3479,11 @@ msgstr "" msgid "Failed to update feeds" msgstr "Không thể cập nhật bảng tin" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "Không thể cập nhật cài đặt" @@ -3354,15 +3502,23 @@ msgstr "" msgid "Failed to verify handle. Please try again." msgstr "Không thể xác minh tên tài khoản. Vui lòng thử lại." -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "Bảng tin" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "Bảng tin bởi {0}" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "Menu bảng tin" @@ -3371,35 +3527,39 @@ msgstr "Menu bảng tin" msgid "Feed toggle" msgstr "Bật/tắt bảng tin" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "Phản hồi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "Đã gởi phản hồi!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "Bảng tin" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Bảng tin là thuật toán tùy chỉnh mà người dùng xây dựng với một chút kiến thức về lập trình. <0/> để biết thêm thông tin." #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "Đã cập nhật bảng tin!" @@ -3428,6 +3588,14 @@ msgstr "Lọc tìm kiếm theo ngôn ngữ" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Lọc tìm kiếm theo ngôn ngữ (hiện tại: {currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "Đang hoàn tất" @@ -3448,7 +3616,7 @@ msgstr "Tìm người để theo dõi" msgid "Find posts, users, and feeds on Bluesky" msgstr "Tìm bài đăng, người dùng, và bảng tin trên Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "Hoàn tất" @@ -3456,17 +3624,17 @@ msgstr "Hoàn tất" msgid "Fitness" msgstr "Thể hình" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Thuần đen" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Thuần xanh" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Thuần trắng" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "Linh hoạt" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "Theo dõi" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "Theo dõi {0}" @@ -3518,7 +3686,7 @@ msgstr "Theo dõi tài khoản" msgid "Follow all" msgstr "Theo dõi tất cả" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "Theo dõi lại" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "Theo dõi lại" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "Theo dõi bởi <0>{0}" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Theo dõi bởi <0>{0} và {1, plural, other {# người khác}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "Theo dõi bởi <0>{0} và <1>{1}" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Theo dõi bởi <0>{0}, <1>{1}, và {2, plural, other {# người khác}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "Người đang theo dõi @{0} mà bạn biết" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "Người theo dõi bạn biết" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "Đang theo dõi" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "Đang theo dõi" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "Đang theo dõi {0}" @@ -3579,8 +3751,8 @@ msgstr "Đang theo dõi {handle}" msgid "Following feed preferences" msgstr "Cài đặt bảng tin Đang theo dõi" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "Cài đặt bảng tin Đang theo dõi" @@ -3592,11 +3764,11 @@ msgstr "Theo dõi bạn" msgid "Follows You" msgstr "Theo dõi bạn" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "Phông chữ" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "Kích cỡ phông chữ" @@ -3613,7 +3785,7 @@ msgstr "Vì lý do bảo mật, chúng tôi cần gởi mã xác nhận đến msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Vì lý do bảo mật, bạn sẽ không thể xem lại trang này. Nếu bạn làm mất mật khẩu ứng dụng, bạn sẽ cần tạo một mật khẩu mới." -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "Chúng tôi khuyến nghị sử dụng phông chữ chủ đề để có trải nghiệm tốt nhất." @@ -3643,11 +3815,15 @@ msgstr "Quên?" msgid "Frequently Posts Unwanted Content" msgstr "Bài đăng thường xuyên Nội dung không mong muốn" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "Từ @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "Từ <0/>" @@ -3660,14 +3836,68 @@ msgstr "Thư viện ảnh" msgid "Generate a starter pack" msgstr "Tạo gói khởi đầu" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "Trợ giúp" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "Bắt đầu" @@ -3688,14 +3918,16 @@ msgstr "Chọn hình cho hồ sơ của bạn" msgid "Glaring violations of law or terms of service" msgstr "Vi phạm rõ ràng luật pháp hoặc điều khoản dịch vụ" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "Đi đến hồ sơ của {firstAuthorName}" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "Đến hội thoại với {0}" @@ -3779,8 +4017,8 @@ msgstr "Phương tiện phản cảm" msgid "Half way there!" msgstr "Nửa đường rồi!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "Tên tài khoản" @@ -3797,7 +4035,7 @@ msgstr "Đã thay đổi tên tài khoản!" msgid "Handle too long. Please try a shorter one." msgstr "Tên tài khoản quá dài. Vui lòng thử tên ngắn hơn." -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "Xúc giác" @@ -3806,7 +4044,7 @@ msgstr "Xúc giác" msgid "Harassment, trolling, or intolerance" msgstr "Quấy rối, gây rối hoặc phân biệt đối xử" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "Hashtag" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "Hashtag {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "" -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "Gặp trục trặc?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "Giúp đỡ" @@ -3839,8 +4077,13 @@ msgstr "Giúp người khác biết bạn không phải là bot bằng cách t msgid "Here is your app password!" msgstr "Đây là mật khẩu ứng dụng của bạn!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "Bị ẩn" @@ -3848,16 +4091,16 @@ msgstr "Bị ẩn" msgid "Hidden by your moderation settings." msgstr "Bị ẩn bởi cài đặt kiểm duyệt của bạn." -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "Danh sách ẩn" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "Danh sách ẩn" msgid "Hide" msgstr "Ẩn" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "Ẩn" @@ -3875,18 +4118,18 @@ msgstr "Ẩn" msgid "Hide customization options" msgstr "Ẩn tùy chọn trùy chỉnh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "Ẩn bài đăng cho tôi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "Ẩn trả lời cho tất cả mọi người" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "Ẩn trả lời cho tôi" @@ -3894,12 +4137,12 @@ msgstr "Ẩn trả lời cho tôi" msgid "Hide this card" msgstr "Ẩn thẻ này" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "Ẩn bài đăng này?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "Ẩn trả lời này?" @@ -3913,11 +4156,11 @@ msgstr "Ẩn chủ đề nổi trội" msgid "Hide trending topics?" msgstr "Ẩn chủ đề nổi trội?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Ẩn video nổi trội?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "Ẩn danh sách người dùng" @@ -3926,32 +4169,32 @@ msgstr "Ẩn danh sách người dùng" msgid "Hide verification badges" msgstr "Ẩn các dấu xác minh" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "Ẩn nội dung" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm, đã có lỗi xảy ra khi đang kết nối với máy chủ bảng tin. Vui lòng thông báo cho chủ bảng tin về vấn đề này." -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm, máy chủ bảng tin có vẻ không được cấu hình đúng. Vui lòng thông báo cho chủ bảng in về vấn đề này." -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm, máy chủ bảng tin có vẻ đang ngoại tuyến. Vui lòng thông báo cho chủ bảng tin về vấn đề này." -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm, máy chủ bảng tin trả về phản hồi không tốt. Vui lòng thông báo cho chủ bảng tin về vấn đề này." -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, có vấn đề khi tìm bảng tin này. Có thể nó đã bị xóa." -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmmmm, có vấn đề khi tải dữ liệu này. Xem bên dưới để biết thêm chi tiết. Nếu vấn đề này vẫn tiếp tục, vui lòng liên hệ với chúng tôi." @@ -3959,15 +4202,15 @@ msgstr "Hmmmm, có vấn đề khi tải dữ liệu này. Xem bên dưới đ msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, không thể tải dịch vụ kiểm duyệt đó." -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Chờ nhé! Chúng tôi đang dần dần cấp quyền truy cập video, và bạn vẫn đang trong hàng chờ. Hãy kiểm tra lại sau!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "Trang chủ" @@ -3984,10 +4227,10 @@ msgstr "Nhà cung cấp lưu trữ" msgid "Hot" msgstr "Nổi bật" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "Trả lời nổi bật trước" @@ -3996,10 +4239,6 @@ msgstr "Trả lời nổi bật trước" msgid "How should we open this link?" msgstr "Liên kết này nên được mở thế nào?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "Tôi hiểu" msgid "If alt text is long, toggles alt text expanded state" msgstr "Hãy mở rộng nếu văn bản thay thế quá dài" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Nếu bạn không phải là người lớn theo luật pháp tại nước bạn, phụ huynh hoặc người giám hộ pháp lý của bạn phải đọc những Điều khoản này thay bạn." @@ -4031,11 +4270,11 @@ msgstr "Danh sách không thể được khôi phục sau khi đã bị xóa." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Nếu bạn có tên miền riêng, bạn có thể sử dụng nó làm tên người dùng. Điều này giúp bạn tự xác minh danh tính của mình. <0>Tìm hiểu thêm tại đây." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "Bài đăng không thể được khôi phục sau khi đã bị xóa." @@ -4047,6 +4286,10 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Nếu bạn muốn thay đổi mật khẩu, chúng tôi sẽ gởi mã xác minh để xác nhận rằng đây là tài khoản của bạn." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "Nếu bạn là một lập trình viên, bạn có thể tự quản lý máy chủ riêng của mình." @@ -4091,13 +4334,41 @@ msgstr "Mạo danh hoặc tuyên bố sai danh tính hoặc liên kết" msgid "Impersonation, misinformation, or false claims" msgstr "Mạo danh, sai thông tin, hoặc tuyên bố sai" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Tin nhắn không phù hợp hoặc liên kết nhạy cảm" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "Không có yêu cầu nào!" @@ -4105,7 +4376,7 @@ msgstr "Không có yêu cầu nào!" msgid "Incorrect username or password" msgstr "Tên người dùng hoặc mật khẩu không hợp lệ" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "Nhập mã được gởi đến email của bạn để đặt lại mật khẩu" @@ -4113,7 +4384,7 @@ msgstr "Nhập mã được gởi đến email của bạn để đặt lại m msgid "Input confirmation code for account deletion" msgstr "Nhập mã xác nhận để xóa tài khoản" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "Nhập mật khẩu mới" @@ -4129,10 +4400,14 @@ msgstr "Nhập mã đã được gởi đến email của bạn" msgid "Interaction limited" msgstr "Tương tác bị giới hạn" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "Cài đặt tương tác" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "Mã xác nhận 2FA không hợp lệ" msgid "Invalid handle. Please try a different one." msgstr "Tên người dùng không hợp lệ. Vui lòng thử tên khác." -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "Bản ghi bài đăng không hợp lệ hoặc không được hỗ trợ" @@ -4158,7 +4433,7 @@ msgstr "Mã xác minh không hợp lệ" msgid "Invite a Friend" msgstr "Mời bạn" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "Mã mời" @@ -4186,15 +4461,15 @@ msgstr "Mời bạn bè theo dõi bảng tin và người bạn yêu thích" msgid "Invites, but personal" msgstr "Lời mời, nhưng cá nhân" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "Đúng" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Chỉ mới có bạn thôi! Thêm người khác vào gói khởi đầu của bạn bằng cách tìm kiếm ở trên." -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "ID công việc: {0}" @@ -4220,11 +4495,27 @@ msgstr "Tham gia trò chuyện" msgid "Journalism" msgstr "Báo chí" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "Gắn nhãn bởi {0}." -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "Gắn nhãn bởi người đăng." @@ -4237,7 +4528,7 @@ msgstr "Nhãn" msgid "Labels added" msgstr "Đã thêm nhãn" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Nhãn là chú thích cho người dùng và nội dung. Chúng có thể được sử dụng để ẩn, cảnh báo, và phân loại mạng lưới." @@ -4253,22 +4544,30 @@ msgstr "Nhãn trên nội dung của bạn" msgid "Language selection" msgstr "Lựa chọn ngôn ngữ" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "Cài đặt ngôn ngữ" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "Ngôn ngữ" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "Lớn hơn" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "Mới nhất" @@ -4282,7 +4581,6 @@ msgstr "tìm hiểu thêm" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "Tìm hiểm thêm" @@ -4290,6 +4588,10 @@ msgstr "Tìm hiểm thêm" msgid "Learn More" msgstr "Tìm hiểu thêm" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "Tìm hiểu thêm về Bluesky" @@ -4298,15 +4600,23 @@ msgstr "Tìm hiểu thêm về Bluesky" msgid "Learn more about self hosting your PDS." msgstr "Tìm hiểu thêm về việc tự lưu trữ PDS của bạn." -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "Tìm hiểu thêm về kiểm duyệt được áp dụng cho nội dung này" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "Tìm hiểu thêm về kiểm duyệt được áp dụng cho nội dung này." -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Tìm hiểu thêm về cảnh báo này" @@ -4316,12 +4626,16 @@ msgstr "Tìm hiểu thêm về cảnh báo này" msgid "Learn more about verification on Bluesky" msgstr "Tìm hiểu thêm về xác minh trên Bluesky" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Tìm hiểu thêm về những gì công khai trên Bluesky." -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "Tìm hiểu thêm." @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "Rời đối thoại" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." -msgstr "Bỏ chọn tất cả để xem bất kỳ ngôn ngữ nào." +msgid "Leave them all unselected to see any language." +msgstr "" -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "Rời Bluesky" @@ -4370,7 +4685,7 @@ msgstr "Bắt đầu nào!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "Sáng" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "Thích" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Thích ({0, plural, other {# lượt thích}})" @@ -4397,6 +4712,10 @@ msgstr "Thích 10 bài" msgid "Like 10 posts to train the Discover feed" msgstr "Thích 10 bài để dạy cho bảng tin Khám phá" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "Thích bảng tin này" @@ -4405,8 +4724,8 @@ msgstr "Thích bảng tin này" msgid "Like this labeler" msgstr "Thích dịch vụ gắn nhãn này" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "Thích bởi" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "Thích bởi" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Thích bởi {0, plural, other {# người dùng}}" @@ -4428,20 +4747,36 @@ msgstr "Thích bởi {0, plural, other {# người dùng}}" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Thích bởi {likeCount, plural, other {# người dùng}}" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "Lượt thích" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "Lượt thích cho bài đăng này" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "Ngang hàng" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "Danh sách" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "Đã chặn danh sách" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "Danh sách bởi {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "Danh sách tạo bởi <0/>" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "Danh sách của bạn" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Đã đã bỏ ẩn toàn danh sách" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "Danh sách" @@ -4537,7 +4876,7 @@ msgstr "Tải thêm" msgid "Load more suggested feeds" msgstr "Tải thêm gợi ý bảng tin" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "Tải thông báo mới" @@ -4552,11 +4891,11 @@ msgstr "Tải bài đăng mới" msgid "Loading..." msgstr "Đang tải..." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "Log" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "Trạng thái hiển thị sau đăng xuất" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo bởi @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo bởi <0>@sawaratsuki.bsky.social" @@ -4573,7 +4912,7 @@ msgstr "Logo bởi <0>@sawaratsuki.bsky.social" msgid "Long press to open tag menu for #{tag}" msgstr "Nhấn giữ lâu để mở trình đơn thẻ cho #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "Có dạng XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "" msgid "Make one for me" msgstr "Tạo cho tôi một cái" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "Hãy chắc rằng đây là nơi bạn muốn đến!" @@ -4606,7 +4945,7 @@ msgstr "Hãy chắc rằng đây là nơi bạn muốn đến!" msgid "Manage saved feeds" msgstr "Quản lý bảng tin đã lưu" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "Quản lý cài đặt xác minh" @@ -4614,9 +4953,9 @@ msgstr "Quản lý cài đặt xác minh" msgid "Manage your muted words and tags" msgstr "Quản lý từ cấm và thẻ" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "Đánh dấu tất cả là đã đọc" @@ -4625,15 +4964,13 @@ msgstr "Đánh dấu tất cả là đã đọc" msgid "Mark as read" msgstr "Đánh dấu đã đọc" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "Đã đánh dấu tất cả là đã đọc" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "Để sau" @@ -4645,19 +4982,26 @@ msgstr "Phương tiện" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Phương tiện có thể gây phản cảm cho một số khán giả." -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "người dùng được đề cập" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "Người dùng được đề cập" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "Nhắc đến" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "Trình đơn" @@ -4665,7 +5009,7 @@ msgstr "Trình đơn" msgid "Message {0}" msgstr "Tin nhắn {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "Đã xóa tin nhắn" @@ -4674,11 +5018,11 @@ msgstr "Đã xóa tin nhắn" msgid "Message deleted" msgstr "Đã xóa tin nhắn" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "Tin nhắn từ @{0}: {1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "Tin nhắn từ máy chủ: {0}" @@ -4691,19 +5035,23 @@ msgstr "Trường nhập tin nhắn" msgid "Message is too long" msgstr "Tin nhắn quá dài" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "Tuỳ chọn tin nhắn" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "Tin nhắn" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Nửa đêm" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "Tài khoản sai lệch" msgid "Misleading Post" msgstr "Bài đăng sai lệch" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "Kiểm duyệt" @@ -4725,17 +5073,17 @@ msgstr "Kiểm duyệt" msgid "Moderation details" msgstr "Chi tiết kiểm duyệt" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Danh sách kiểm duyệt bởi {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "Danh sách kiểm duyệt bởi <0/>" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "Danh sách kiểm duyệt bởi bạn" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "Đã cập nhật danh sách kiểm duyệt" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "Danh sách kiểm duyệt" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "Danh sách kiểm duyệt" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "Cài đặt kiểm duyệt" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "Trạng thái kiểm duyệt" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "Công cụ kiểm duyệt" @@ -4775,7 +5123,7 @@ msgstr "Công cụ kiểm duyệt" msgid "Moderator has chosen to set a general warning on the content." msgstr "Kiểm duyệt viên đã đặt cảnh báo chung cho nội dung." -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "Khác" @@ -4790,13 +5138,13 @@ msgstr "Bảng tin khác" msgid "More options" msgstr "Lựa chọn khác" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "Được thích nhiều nhất trước" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "Trả lời được thích nhiều nhất trước" @@ -4808,8 +5156,8 @@ msgstr "Phim ảnh" msgid "Music" msgstr "Âm nhạc" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "Tắt tiếng" @@ -4819,8 +5167,8 @@ msgstr "Tắt tiếng" msgid "Mute {tag}" msgstr "Ẩn {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "Chỉ ẩn từ này trong thẻ" msgid "Mute this word until you unmute it" msgstr "Ẩn từ này cho đến khi bạn bật lại" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "Tắt thông báo thảo luận" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "Ẩn từ & thẻ" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "Tài khoản bị ẩn" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "Tài khoản bị ẩn" @@ -4898,7 +5246,7 @@ msgstr "Bài đăng từ tài khoản đã bị ẩn sẽ bị xóa khỏi bản msgid "Muted by \"{0}\"" msgstr "Ẩn bởi \"{0}\"" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "Từ & thẻ bị ẩn" @@ -4911,7 +5259,7 @@ msgstr "Việc ẩn là riêng tư. Tài khoản bị ẩn có thể tương tá msgid "My Birthday" msgstr "Ngày sinh của tôi" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "Bảng tin của tôi" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "Thiên nhiên" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "Điều hướng đến {0}" @@ -4958,11 +5306,11 @@ msgstr "Điều hướng đến màn hình kế tiếp" msgid "Navigates to your profile" msgstr "Điều hướng đến hồ sơ của bạn" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "Cần phải thay đổi?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "Cần báo cáo vi phạm bản quyền?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "Tạo mới" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "Chat mới" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "Địa chỉ email mới" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "Tính năng mới" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "Tin nhắn mới" msgid "New Moderation List" msgstr "Danh sách kiểm duyệt mới" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "Mật khẩu mới" @@ -5029,7 +5396,7 @@ msgstr "Mật khẩu mới" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "Bài đăng mới" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "Bài đăng mới" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Hộp thoại thông tin người dùng mới" @@ -5054,10 +5429,14 @@ msgstr "Hộp thoại thông tin người dùng mới" msgid "New User List" msgstr "Danh sách người dùng mới" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "Trả lời mới nhất trước" @@ -5071,15 +5450,15 @@ msgstr "Tin tức" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "Không có bảng DNS" msgid "No expiry set" msgstr "" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Không tìm thấy GIF nào. Có thể có vấn đề với Tenor." @@ -5119,32 +5498,35 @@ msgstr "" msgid "No likes yet" msgstr "Chưa có lượt thích nào" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "Không còn theo dõi {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "Không dài hơn {MAX_SERVICE_HANDLE_LENGTH, plural, other {# kí tự}}" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "Chưa có tin nhắn nào" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "Chưa có thông báo nào!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "Không ai" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "Không ai ngoài tác giả có thể trích dẫn bài đăng này." +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "Chưa có bài đăng nào." @@ -5171,7 +5553,7 @@ msgstr "Không có kết quả" msgid "No results for \"{0}\"." msgstr "Không có kết quả nào cho \"{0}\"." -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "Không tìm thấy kết quả nào" @@ -5179,9 +5561,9 @@ msgstr "Không tìm thấy kết quả nào" msgid "No results found for \"{query}\"" msgstr "Không tìm thấy kết quả nào cho \"{query}\"" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "Không tìm thấy kết quả nào cho {query}" @@ -5189,7 +5571,7 @@ msgstr "Không tìm thấy kết quả nào cho {query}" msgid "No results." msgstr "Không có kểt quả nào." -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "Không tìm thấy kết quả nào cho \"{search}\"." @@ -5198,7 +5580,7 @@ msgstr "Không tìm thấy kết quả nào cho \"{search}\"." msgid "No thanks" msgstr "Không, cảm ơn" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "Không ai" @@ -5223,59 +5605,76 @@ msgstr "Không tìm thấy ai. Hãy thử tìm người khác." msgid "Non-sexual Nudity" msgstr "Khỏa thân không khiêu dâm" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "Không được theo dõi bởi một ai trong số những người mà bạn theo dõi" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "Không tìm thấy" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "Chú ý về việc chia sẻ" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Chú ý: Bluesky là một trang mạng mở và công khai. Cài đặt này chỉ giới hạn trạng thái hiển thị nội dung của bạn trên ứng dụng và trang web Bluesky, các ứng dụng khác có thể không tôn trọng cài đặt này. Nội dung của bạn vẫn có thể được hiển thị bởi các ứng dụng và trang web khác cho người dùng sau đăng xuất." -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "Không có gì ở đây" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "Lọc thông báo" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "Cài đặt thông báo" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "Cài đặt thông báo" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "Âm thanh thông báo" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "Âm thanh thông báo" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "Thông báo" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "" + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "bây giờ" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "Hình khỏa thân hoặc nội dung 18+ không được gắn nhãn đúng" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "Tắt" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Ôi không!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "OK" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "OK" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "Trả lời cũ nhất trước" @@ -5331,19 +5736,19 @@ msgstr "Trả lời cũ nhất trước" msgid "on<0><1/><2><3/>" msgstr "trên<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "Đặt lại quá trình hướng dẫn" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "Một hoặc nhiều GIF thiếu văn bản thay thế." -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "Một hoặc nhiều hình ảnh thiếu văn bản thay thế." -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "Một hoặc nhiều video thiếu văn bản thay thế" @@ -5351,13 +5756,15 @@ msgstr "Một hoặc nhiều video thiếu văn bản thay thế" msgid "Only .jpg and .png files are supported" msgstr "Chỉ hỗ trợ tệp .jpg và .png" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "Chỉ {0} có thể trả lời" -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "Chỉ chứa chữ cái, số và dấu gạch ngang" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "Chỉ hỗ trợ tệp hình ảnh" msgid "Only WebVTT (.vtt) files are supported" msgstr "Chỉ hỗ trợ tệp WebVTT (.vtt)" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "Ôi, có gì đó không đúng!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "Ôi!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "Mở trình đơn" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "Mở trình chọn biểu tượng cảm xúc" @@ -5416,7 +5822,7 @@ msgstr "Mở trình đơn tùy chọn bảng tin" msgid "Open full emoji list" msgstr "Mở danh sách emoji đầy đủ" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "Mở liên kết đến {niceUrl}" @@ -5424,11 +5830,11 @@ msgstr "Mở liên kết đến {niceUrl}" msgid "Open message options" msgstr "Mở tùy chọn tin nhắn" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "Mở trang gỡ lỗi kiểm duyệt" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "Mở cài đặt thẻ và từ cấm" @@ -5453,16 +5859,16 @@ msgstr "" msgid "Open starter pack menu" msgstr "Mở trình đơn gói khởi đầu" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "Mở trang storybook" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "Mở log hệ thống" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "Mở {numItems} trình đơn" @@ -5490,11 +5896,11 @@ msgstr "Mở máy ảnh trên thiết bị" msgid "Opens captions and alt text dialog" msgstr "Mở hộp thoại phụ đề và văn bản thay thế" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "Mở hộp thoại thay đổi tên tài khoản" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "Mở trình soạn thảo" @@ -5502,7 +5908,7 @@ msgstr "Mở trình soạn thảo" msgid "Opens device photo gallery" msgstr "Mở thư viện ảnh trên thiết bị" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "Mở trình chọn emoji" @@ -5520,15 +5926,19 @@ msgstr "Mở quy trình đăng nhập vào tài khoản Bluesky hiện tại c msgid "Opens GIF select dialog" msgstr "Mở hộp thoại chọn GIF" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "Mở trợ giúp trong trình duyệt" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Mở danh sách mã mời" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "" @@ -5536,12 +5946,8 @@ msgstr "" msgid "Opens password reset form" msgstr "Mở biểu mẫu đặt lại mật khẩu" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "Mở trang web liên kết" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "Mở hồ sơ này" @@ -5558,7 +5964,7 @@ msgstr "Cung cấp thêm thông tin bên dưới (không bắt buộc):" msgid "Options:" msgstr "Lựa chọn:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "Hoặc kết hợp các lựa chọn sau:" @@ -5600,6 +6006,10 @@ msgstr "Tài khoản khác" msgid "Other..." msgstr "Khác..." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "Đội ngũ kiểm duyệt của chúng tôi đã nhận được báo cáo của bạn." @@ -5608,7 +6018,7 @@ msgstr "Đội ngũ kiểm duyệt của chúng tôi đã nhận được báo c msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Kiểm duyệt viên của chúng tôi đã xem xét các báo cáo và quyết định vô hiệu hóa quyền truy cập chat của bạn trên Bluesky." -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Không tìm thấy trang" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "Không tìm thấy trang" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "Đã cập nhật mật khẩu" msgid "Password updated!" msgstr "Đã cập nhật mật khẩu!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "Dừng" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "Dừng video" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "Con người" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "Người\tđược @{0} theo dõi" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "Người đang theo dõi @{0}" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "" @@ -5704,12 +6119,12 @@ msgstr "Ghim vào trang chủ" msgid "Pin to Home" msgstr "Ghim vào trang chủ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "Ghim vào hồ sơ của bạn" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "Đã ghim" @@ -5718,7 +6133,7 @@ msgstr "Đã ghim" msgid "Pinned {0} to Home" msgstr "Đã ghim {0} vào trang chủ" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "Bảng tin đã ghim" @@ -5726,38 +6141,38 @@ msgstr "Bảng tin đã ghim" msgid "Pinned to your feeds" msgstr "Đã ghim vào bảng tin của bạn" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "Phát" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "Phát {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "Phát video" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "Phát video" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "Phát hoặc dừng GIF" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "Phát hoặc dừng video" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "Phát GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "Phát video" @@ -5765,12 +6180,16 @@ msgstr "Phát video" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "Xin hãy thêm nhãn cảnh báo phù hợp với nội dung mà bạn đang đăng." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "Vui lòng chọn tên tài khoản." #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "Vui lòng chọn mật khẩu." @@ -5782,7 +6201,8 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Vui lòng hoàn thành xác minh captcha." -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "Vui lòng kiểm tra lại là bạn đã điền đúng địa chỉ email." @@ -5804,6 +6224,7 @@ msgstr "Vui lòng nhập tên cho mật khẩu ứng dụng này hoặc sử d msgid "Please enter a valid code." msgstr "" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "" @@ -5812,7 +6233,11 @@ msgstr "" msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Vui lòng nhập một từ, thẻ hoặc cụm từ hợp lệ để ẩn" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "" #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "Vui lòng nhập email của bạn." -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "Vui lòng nhập mã mời." @@ -5853,6 +6278,19 @@ msgstr "Vui lòng giải thích vì sao bạn nghĩ nhãn này đã được áp msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Vui lòng giải thích vì sao bạn nghĩ chat của bạn đã bị vô hiệu hóa sai" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "Vui lòng chọn một dịch vụ kiểm duyệt" @@ -5870,9 +6308,9 @@ msgstr "Vui lòng đăng nhập bằng @{0}" msgid "Please verify your email" msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "Vui lòng xác minh email của bạn" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "Chính trị" msgid "Porn" msgstr "Hình ảnh khiêu dâm" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "Đăng" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "Đăng" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "Đăng" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "Đăng tất cả" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "Đăng bởi {0}" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "Đăng bởi @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "Đã xóa bài đăng" @@ -5919,11 +6362,14 @@ msgstr "Đã xóa bài đăng" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Không đăng bài đăng được. Vui lòng kiểm tra kết nối mạng và thử lại." +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "Bài đăng đã bị xoá" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "Đã ẩn bài đăng" @@ -5937,11 +6383,11 @@ msgstr "Bài đăng bị ẩn do từ cấm" msgid "Post Hidden by You" msgstr "Bài đăng ẩn bởi bạn" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "Cài đặt tương tác bài đăng" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "Cài đặt tương tác bài đăng" @@ -5954,8 +6400,10 @@ msgstr "Ngôn ngữ bài đăng" msgid "Post Languages" msgstr "Ngôn ngữ bài đăng" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "Không tìm thấy bài đăng" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "Đã gở ghim bài đăng" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "Bài đăng" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Bài đăng có thể bị ẩn dựa trên văn bản, thẻ, hoặc cả hai. Chúng tôi đề xuất tránh các từ phổ biến xuất hiện trong nhiều bài đăng, vì nó có thể dẫn đến việc không có bài nào được hiển thị." -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "Bài đăng đã ẩn" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "Liên kết có thể sai lệch" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "Đã lưu cài đặt" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Nhấn để thử kết nối lại" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "Nhấn để thử lại" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "Nhấn để xem người theo dõi của tài khoản này mà bạn cũng theo dõi" @@ -6015,40 +6469,46 @@ msgstr "Hình trước" msgid "Primary Language" msgstr "Ngôn ngữ chính" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "Ưu tiên người bạn theo dõi" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "Thông báo ưu tiên" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "Quyền riêng tư" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "Quyền riêng tư và bảo mật" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Quyền riêng tư và bảo mật" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "Chính sách bảo mật" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "Đang xử lý video..." @@ -6062,15 +6522,14 @@ msgstr "Đang xử lý..." msgid "profile" msgstr "hồ sơ" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "Hồ sơ" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "Đã cập nhật hồ sơ" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "Danh sách công khai và chia sẻ được có thể thúc đẩy bảng tin." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "Đăng bài" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "Đăng bài" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "Đăng trả lời" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "Đăng trả lời" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "Mã QR đã được sao chép vào bảng ghi tạm!" @@ -6119,44 +6594,52 @@ msgstr "Đã tải mã QR!" msgid "QR code saved to your camera roll!" msgstr "Đã lưu mã QR vào camera roll!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "Trích dẫn bài đăng" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "Bài đăng trích dẫn đã được đính kèm lại" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "Bài đăng trích dẫn đã được gỡ thành công" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "Trích dẫn bài đăng đã bị tắt" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "Cài đặt trích dẫn" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "Trích dẫn" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "Trích dẫn của bài đăng này" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "Ngẫu nhiên (còn gọi là \"Poster's Roulette\")" @@ -6164,8 +6647,8 @@ msgstr "Ngẫu nhiên (còn gọi là \"Poster's Roulette\")" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "Vượt quá giới hạn - bạn đã thử thay đổi tên người dùng quá nhiều lần trong thời gian ngắn. Vui lòng chờ một chút trước khi thử lại." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "Đính kèm lại trích dẫn" @@ -6177,30 +6660,42 @@ msgstr "Bày tỏ cảm xúc với {emoji}" msgid "Reactivate your account" msgstr "Tái kích hoạt tài khoản của bạn" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Đọc bài blog" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "Thu gọn" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "Xem thêm" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "Đọc blog của Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "Đọc Chính sách bảo mật của Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "Đọc Điều khoản dịch vụ của Bluesky" @@ -6213,6 +6708,14 @@ msgstr "Lý do khiếu nại" msgid "Reason:" msgstr "Lý do:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "Tìm kiếm gần đây" @@ -6234,8 +6737,8 @@ msgstr "Từ chối" msgid "Reject chat request" msgstr "Từ chối yêu cầu trò chuyện" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "Tải lại hội thoại" @@ -6244,10 +6747,9 @@ msgstr "Tải lại hội thoại" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "Xóa" @@ -6259,17 +6761,17 @@ msgstr "Xóa {displayName} khỏi gói khởi đầu" msgid "Remove {historyItem}" msgstr "Xóa {historyItem}" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "Xóa tài khoản" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "Xóa tệp đính kèm" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "Xóa hình đại diện" @@ -6284,24 +6786,22 @@ msgstr "Xóa nhúng" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "Xóa bảng tin" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "Xóa bảng tin?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "Xóa khỏi bảng tin của tôi" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "Xóa khỏi truy cập nhanh?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "Xóa khỏi bảng tin đã lưu" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "Xóa khỏi bảng tin của bạn?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "Xóa hình" @@ -6332,12 +6831,8 @@ msgstr "Xóa từ cấm khỏi danh sách của bạn" msgid "Remove profile" msgstr "Xóa hồ sơ" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "Xóa trích dẫn" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "Xóa lượt đăng lại" @@ -6345,7 +6840,7 @@ msgstr "Xóa lượt đăng lại" msgid "Remove subtitle file" msgstr "Xóa tệp phụ đề" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "Xóa bảng tin này khỏi bảng tin đã lưu của bạn" @@ -6364,11 +6859,11 @@ msgstr "Xoá xác minh" msgid "Remove your verification for this account?" msgstr "Xoá xác minh của bạn khỏi tài khoản này?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "Xóa bởi tác giả" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "Xóa bởi bạn" @@ -6377,10 +6872,6 @@ msgstr "Xóa bởi bạn" msgid "Removed from list" msgstr "Đã xóa khỏi danh sách" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "Đã xóa khỏi bảng tin của tôi" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "Đã xóa khỏi bảng tin được lưu" @@ -6395,34 +6886,36 @@ msgstr "Đã xóa khỏi bảng tin của tôi" msgid "Removed verification" msgstr "Đã xoá xác minh" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "Xóa bài đăng trích dẫn" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Thay thế bằng Discover" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "Trả lời" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "Trả lời đã bị tắt" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "Trả lời cho bài đăng này đã bị tắt." -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "Trả lời" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Trả lời ({0, plural, other {# trả lời}})" @@ -6436,50 +6929,55 @@ msgstr "Trả lời bị ẩn bởi tác giả của thảo luận" msgid "Reply Hidden by You" msgstr "Trả lời bị ẩn bởi bạn" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "Cài đặt trả lời" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "Cài đặt trả lời được chọn bởi tác giả của thảo luận" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "Sắp xếp trả lời" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Trả lời <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "Trả lời bài đăng đã bị chặn" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "Trả lời bài đăng" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "Trả lời bạn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "Đã cập nhật trạng thái hiển thị trả lời" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "Ẩn thành công trả lời" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "Báo cáo bảng tin" msgid "Report list" msgstr "Báo cáo danh sách" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "Báo cáo tin nhắn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "Báo cáo bài đăng" @@ -6567,25 +7065,26 @@ msgstr "Báo cáo gói khởi đầu này" msgid "Report this user" msgstr "Báo cáo người dùng này" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "Đăng lại" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "Đăng lại" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Đăng lại ({0, plural, other {# đăng lại}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "Đăng lại hoặc trích dẫn bài đăng" @@ -6594,35 +7093,47 @@ msgstr "Đăng lại hoặc trích dẫn bài đăng" msgid "Reposted By" msgstr "Đăng lại bởi" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "Đăng lại bởi {0}" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "Đăng lại bởi <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "Đăng lại bởi bạn" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "Lượt đăng lại của bài đăng này" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "Yêu cầu thay đổi" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "Yêu cầu mã" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "Yêu cầu văn bản thay thế trước khi đăng" @@ -6630,7 +7141,7 @@ msgstr "Yêu cầu văn bản thay thế trước khi đăng" msgid "Require an email code to sign in to your account." msgstr "Yêu cầu một mã gửi qua email để đăng nhập vào tài khoản của bạn." -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "Bắt buộc đối với nhà quản lý này" @@ -6642,10 +7153,6 @@ msgstr "Bắt buộc đối với khu vực của bạn" msgid "Resend" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "Gửi lại email" msgid "Resend Verification Email" msgstr "Gửi lại email xác minh" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "Mã đặt lại" @@ -6667,8 +7180,8 @@ msgstr "Mã đặt lại" msgid "Reset Code" msgstr "Mã đặt lại" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "Đặt lại trại thái hướng dẫn" @@ -6687,21 +7200,23 @@ msgstr "Thử lại hành động cuối cùng (đã xảy ra lỗi)" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Thử lại" @@ -6721,19 +7236,19 @@ msgstr "Trở về trang chủ" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "Trở về trang trước" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "Quay lại bước trước đó" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "Quay lại bước trước đó" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "Lưu" @@ -6762,15 +7276,13 @@ msgstr "Lưu" msgid "Save birthday" msgstr "Lưu ngày sinh" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "Lưu thay đổi" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "Lưu thay đổi" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "Lưu mã QR" msgid "Save to my feeds" msgstr "Lưu vào bảng tin của tôi" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "Bảng tin đã lưu" @@ -6802,18 +7314,14 @@ msgstr "Bảng tin đã lưu" msgid "Saved to your feeds" msgstr "Đã lưu vào bảng tin của bạn" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "Lưu thay đổi vào hồ sơ của bạn" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Lưu cài đặt cắt hình" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Gửi lời chào!" @@ -6826,16 +7334,16 @@ msgstr "Khoa học" msgid "Scroll to top" msgstr "Cuộn đến đầu trang" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "Tìm kiếm" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Tìm kiếm bài đăng của @{0}" @@ -6861,7 +7369,7 @@ msgstr "Tìm kiếm \"{query}\"" msgid "Search for \"{searchText}\"" msgstr "Tìm kiếm \"{searchText}\"" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "Tìm kiếm bảng tin bạn muốn đề xuất cho người khác." @@ -6877,10 +7385,14 @@ msgstr "Tìm thêm bảng tin" msgid "Search for posts, users, or feeds" msgstr "Tìm kiếm bài đăng, người dùng hoặc bảng tin" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "Tìm GIF" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Tìm kiếm bài đăng của tôi" @@ -6890,12 +7402,12 @@ msgstr "Tìm kiếm bài đăng của tôi" msgid "Search posts" msgstr "Tìm kiếm bài đăng" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "Tìm hồ sơ" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "Tìm Tenor" @@ -6903,7 +7415,7 @@ msgstr "Tìm Tenor" msgid "Search..." msgstr "Tìm kiếm..." -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "Tìm hồ sơ" @@ -6912,10 +7424,6 @@ msgstr "Tìm hồ sơ" msgid "Security step required" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "Yêu cầu bước bảo mật" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "Xem bài đăng {tag}" @@ -6936,14 +7444,31 @@ msgstr "Xem bài đăng #{tag} từ người dùng" msgid "See jobs at Bluesky" msgstr "Xem công việc tại Bluesky" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "Xem hướng dẫn này" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "Thanh trượt. Sử dụng các phím mũi tên để tìm kiếm về phía trước và phía sau, và phím cách để phát / tạm dừng" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Chọn màu" @@ -6988,7 +7513,7 @@ msgstr "Chọn từ một tài khoản đã tồn tại" msgid "Select GIF" msgstr "Chọn GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Chọn GIF \"{0}\"" @@ -6996,6 +7521,11 @@ msgstr "Chọn GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "Chọn thời gian ẩn cho từ này." +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "Chọn ngôn ngữ..." @@ -7004,7 +7534,7 @@ msgstr "Chọn ngôn ngữ..." msgid "Select languages" msgstr "Chọn ngôn ngữ..." -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "Chọn dịch vụ kiểm duyệt" @@ -7045,12 +7575,12 @@ msgstr "Chọn một ngôn ngữ để dùng làm giao diện người dùng cho msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Chọn ngôn ngữ bạn muốn bảng tin đăng ký của mình bao gồm. Nếu không chọn, tất cả ngôn ngữ sẽ được hiển thị." -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "Chọn ngày sinh" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "Chọn sở thích của bạn từ các tùy chọn dưới đây" @@ -7058,7 +7588,11 @@ msgstr "Chọn sở thích của bạn từ các tùy chọn dưới đây" msgid "Select your preferred language for translations in your feed." msgstr "Chọn ngôn ngữ ưa thích cho bản dịch trong bảng tin của bạn." -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "Lựa chọn {0} trong {numItems}" @@ -7066,17 +7600,9 @@ msgstr "Lựa chọn {0} trong {numItems}" msgid "Send a neat website!" msgstr "Gửi một trang web hay!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "Gửi xác nhận" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "Gửi email xác nhận" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "Gửi email" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "Gửi email" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Gửi phản hồi" @@ -7095,7 +7621,7 @@ msgstr "Gửi phản hồi" msgid "Send message" msgstr "Gửi tin nhắn" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "" @@ -7114,20 +7640,20 @@ msgstr "Gửi báo cáo" msgid "Send report to {0}" msgstr "Gửi báo cáo đến {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "Gửi báo cáo cho {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "Gửi email xác minh" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "Gửi qua tin nhắn" @@ -7143,7 +7669,7 @@ msgstr "Địa chỉ máy chủ" msgid "Set app icon to {0}" msgstr "Đặt biểu tượng ứng dụng thành {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "Đặt ngày sinh" @@ -7159,13 +7685,57 @@ msgstr "Thiết lập tài khoản của bạn" msgid "Sets email for password reset" msgstr "Đặt email để đặt lại mật khẩu" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "Cài đặt" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "Chia sẻ một mẫu chuyện hay!" msgid "Share a fun fact!" msgstr "Chia sẻ một sự thật thú vị!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "Vẫn chia sẻ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "Chia sẻ liên kết" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "Chia sẻ liên kết" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "Hộp thoại chia sẻ liên kết" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "" @@ -7247,8 +7812,8 @@ msgstr "Chia sẻ gói khởi đầu này" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Chia sẻ gói khởi đầu này và giúp mọi người tham gia cộng đồng của bạn trên Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "" msgid "Share your favorite feed!" msgstr "Chia sẻ bảng tin yêu thích của bạn" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "Trình kiểm tra cài đặt đã chia sẻ" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "Chia sẻ trang web được liên kết" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "Hiện" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "Hiển thị văn bản thay thế" @@ -7303,8 +7864,8 @@ msgstr "Hiện tùy chọn tùy chỉnh" msgid "Show hidden replies" msgstr "Hiển thị trả lời ẩn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "Hiển thị ít bài như thế này hơn" @@ -7312,55 +7873,63 @@ msgstr "Hiển thị ít bài như thế này hơn" msgid "Show list anyway" msgstr "Vẫn hiển thị danh sách" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "Hiển thị thêm" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "Hiển thị nhiều bài như thế này hơn" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "Hiển thị trả lời đã bị ẩn" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "Hiển thị bài đăng trích dẫn" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "Hiển thị trả lời" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "Hiển thị trả lời dưới dạng" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "Hiển thị trả lời dưới dạng phân luồng" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "Hiển thị trước các trả lời từ người bạn theo dõi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "Hiển thị trả lời cho tất cả mọi người" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "Hiển thị bài đăng lại" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "Hiển thị mẫu từ bảng tin đã lưu vào bảng tin Đang theo dõi của bạn" @@ -7372,16 +7941,17 @@ msgstr "Hiển thị cảnh báo" msgid "Show warning and filter from feeds" msgstr "Hiển thị cảnh báo và bộ lọc từ bảng tin" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "Hiển thị thông tin về thời gian đăng của bài này" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "Hiển thị các tài khoản khác bạn có thể chuyển đổi sang" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "Hiển thị nội dung" @@ -7390,14 +7960,15 @@ msgstr "Hiển thị nội dung" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "Đăng nhập vào tải khoản chưa được liệt kê" msgid "Sign in to Bluesky or create a new account" msgstr "Đăng nhập vào Bluesky hoặc tạo tài khoản mới" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "Đăng xuất" @@ -7444,8 +8020,8 @@ msgstr "Đăng xuất" msgid "Sign Out" msgstr "Đăng xuất" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "Đăng xuất?" @@ -7459,12 +8035,12 @@ msgstr "Yêu cầu đăng nhập" msgid "Signed in as @{0}" msgstr "Đăng nhâp bằng @{0}" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "Tài khoản tương tự" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "Bỏ qua" @@ -7472,12 +8048,11 @@ msgstr "Bỏ qua" msgid "Skip this flow" msgstr "Bỏ qua quy trình này" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "Nhỏ hơn" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "Tạm bỏ qua lời nhắc" @@ -7490,11 +8065,11 @@ msgstr "Lập trình viên" msgid "Some of your verifications are invalid." msgstr "Một vài xác minh của bạn không hợp lệ." -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "Một số bảng tin khác bạn có thể thích" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "Một số người có thể trả lời" @@ -7510,10 +8085,11 @@ msgstr "Ai đó đã bày tỏ cảm xúc {0} cho {1}" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "Có điều gì đó không đúng với dữ liệu bạn đang cố gắng báo cáo. Vui lòng liên hệ bộ phận hỗ trợ." -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "Có gì đó không đúng" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "Có gì đó không đúng, vui lòng thử lại" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "Có gì đó không đúng, vui lòng thử lại." -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "Có gì đó không đúng!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "Có lỗi xảy ra. Xin vui lòng thử lại." @@ -7539,20 +8118,23 @@ msgstr "Có lỗi xảy ra. Xin vui lòng thử lại." msgid "Something wrong? Let us know." msgstr "Có gì không đúng? Hãy cho chúng tôi biết." -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "Sử dụng để đăng nhập vào ứng dụng khác cùng với tên người d...ùng của bạn." -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "Sắp xếp trả lời" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "Sắp xếp trả lời theo" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "Sắp xếp trả lời cùng bài đăng theo:" @@ -7579,7 +8161,7 @@ msgstr "Spam; tag người hoặc trả lời liên tục" msgid "Sports" msgstr "Thể thao" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "" @@ -7601,9 +8183,9 @@ msgstr "Bắt đầu thêm người!" msgid "Start chat with {displayName}" msgstr "Bắt đầu trò chuyện với {displayName}" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "Gói khởi đầu" @@ -7611,12 +8193,12 @@ msgstr "Gói khởi đầu" msgid "Starter pack by {0}" msgstr "Gói khởi đầu bởi {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "Gói khởi đầu bởi <0/>" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "Gói khởi đầu bởi bạn" @@ -7638,19 +8220,21 @@ msgstr "Gói khởi đầu giúp bạn dễ dàng chia sẻ bảng tin và ngư msgid "Status Page" msgstr "Trang trạng thái" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "Bước {0} / {1}" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "Dữ liệu đã được xóa, bạn cần khởi động lại ứng dụng ngay bây giờ." -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "Storybook" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "Gửi khiếu nại" msgid "Submit Appeal" msgstr "Gửi khiếu nại" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "Gửi báo cáo" @@ -7676,10 +8260,14 @@ msgstr "Gửi báo cáo" msgid "Subscribe" msgstr "Đăng ký" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "Đăng ký @{0} để sử dụng nhãn:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "Đăng ký dịch vụ gắn nhãn" @@ -7692,8 +8280,12 @@ msgstr "Đăng ký dịch vụ gắn nhãn này" msgid "Subscribe to this list" msgstr "Đăng ký danh sách này" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "Thành công!" @@ -7705,7 +8297,7 @@ msgstr "Đã xác minh thành công" msgid "Suggested Accounts" msgstr "Tài khoản đề xuất" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "Được đề xuất dành cho bạn" @@ -7714,26 +8306,26 @@ msgstr "Được đề xuất dành cho bạn" msgid "Suggestive" msgstr "Đề xuất" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Bình minh" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Hoàng hôn" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Hỗ trợ" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "Chuyển tài khoản" @@ -7742,24 +8334,24 @@ msgstr "Chuyển tài khoản" msgid "Switch Account" msgstr "Chuyển tài khoản" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "Chuyển tài khoản" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "Chuyển sang {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "Hệ thống" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "Log hệ thống" @@ -7767,6 +8359,18 @@ msgstr "Log hệ thống" msgid "Tags only" msgstr "Chỉ thẻ tag" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "Kể thêm một chút nữa" msgid "Terms" msgstr "Điều khoản" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "Điều khoản dịch vụ" @@ -7848,10 +8454,6 @@ msgstr "Trường nhập văn bản" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "Cảm ơn! Email của bạn đã được xác minh thành công." - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "Cảm ơn. Báo cáo của bạn đã được gửi." @@ -7864,28 +8466,28 @@ msgstr "Cảm ơn, bạn đã xác minh địa chỉ email thành công. Bạn c msgid "That contains the following:" msgstr "Chứa giá trị sau đây:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "Tên tài khoản đó đã được sử dụng." - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "Không thể tìm thấy gói khởi đầu đó." +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "Hết!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "Hết bảng tin video!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "Tài khoản có thể tương tác với bạn sau khi bỏ chặn." @@ -7900,7 +8502,7 @@ msgstr "Ứng dụng sẽ khởi động lại" msgid "The author of this thread has hidden this reply." msgstr "Tác giả thảo luận này đã ẩn trả lời này." -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Ứng dụng web Bluesky" @@ -7920,10 +8522,6 @@ msgstr "Bảng tin Discover" msgid "The Discover feed now knows what you like" msgstr "Bảng tin Discover đã biết được bạn thích gì" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "Địa chỉ email bạn vừa nhập là địa chỉ email hiện tại của bạn." - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "Trải nghiệm tốt hơn bằng ứng dụng. Tải Bluesky bây giờ và tiếp tục hành trình đang dở của bạn." @@ -7944,8 +8542,16 @@ msgstr "Các nhãn sau đây đã được gắn cho nội dung của bạn." msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "Các cài đặt sau sẽ được sử dụng làm mặc định khi bạn tạo bài đăng mới. Bạn có thể chỉnh sửa chúng cho từng bài đăng cụ thể từ trình soạn thảo." -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "Bài đăng có thể đã bị xóa." @@ -7953,9 +8559,10 @@ msgstr "Bài đăng có thể đã bị xóa." msgid "The Privacy Policy has been moved to <0/>" msgstr "Chính sách bảo mật đã được chuyển đến <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "Video được chọn lớn hơn 100 MB." +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "" #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "Điều khoản dịch vụ đã được chuyển đến" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "Mã xác minh bạn cung cấp là không hợp lệ. Vui lòng chắc chắn rằng bạn đã sử dụng đúng liên kết xác mình hoặc yêu cầu một liên kết mới." -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "Giao diện" @@ -7990,14 +8597,14 @@ msgstr "Giao diện" msgid "There is no time limit for account deactivation, come back any time." msgstr "Không có giới hạn thời gian cho việc vô hiệu hóa tài khoản, hãy quay lại bất cứ lúc nào." -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "Có vấn đề khi kết nối với Tenor." #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "Có vấn đề khi kết nối với máy chủ" @@ -8006,17 +8613,12 @@ msgstr "Có vấn đề khi kết nối với máy chủ" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Có vấn đề khi kết nối với máy chủ, vui lòng kiểm tra kết nối mạng của bạn và thử lại." -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "Có vấn đề khi kết nối với máy chủ của bạn" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Có vấn đề khi tải thông báo. Nhấn vào đây để thử lại." -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Có vấn đề khi tải bài đăng. Nhấn vào đây để thử lại." @@ -8037,7 +8639,7 @@ msgstr "Có vấn đề khi tải danh sách của bạn. Nhấn vào đây đ msgid "There was an issue fetching your service info" msgstr "Có vấn đề khi tải thông tin dịch vụ của bạn" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Có vấn đề khi xóa bảng tin này. Vui lòng kiểm tra kết nối mạng của bạn và thử lại." @@ -8052,9 +8654,9 @@ msgstr "Có vấn đề khi gửi báo cáo. Vui lòng kiểm tra kết nối m msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "Có vấn đề cập nhật bảng tin của bạn, vui lòng kiểm tra kết nối mạng của bạn và thử lại." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "Có vấn đề cập nhật bảng tin của bạn, vui lòng kiểm tr msgid "There was an issue! {0}" msgstr "Đã xảy ra vấn đề! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "Đã xảy ra vấn đề! {0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "Đã xảy ra vấn đề. Vui lòng kiểm tra kết nối mạng của bạn và thử lại." -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Đã xảy ra một vấn đề không mong muốn trong ứng dụng. Vui lòng cho chúng tôi biết nếu điều này xảy ra với bạn!" @@ -8089,7 +8691,7 @@ msgstr "Đã xảy ra một vấn đề không mong muốn trong ứng dụng. V msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Có một lượng lớn người dùng mới đến Bluesky! Chúng tôi sẽ kích hoạt tài khoản của bạn ngay khi có thể." -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "Các cài đặt này chỉ áp dụng cho bảng tin Following." @@ -8146,7 +8748,7 @@ msgstr "Nội dung này được lưu trữ bởi {0}. Bạn có muốn kích ho msgid "This content is not available because one of the users involved has blocked the other." msgstr "Nội dung này không có hiệu lực vì một trong số người dùng liên quan đã chặn người còn lại." -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "Không thể xem nội dung này nếu không có tài khoản Bluesky." @@ -8158,6 +8760,10 @@ msgstr "Nội dung này thuộc tài khoản đã xóa hoặc vô hiệu hóa. N msgid "This email is already associated with your account." msgstr "" +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Tính năng này đang ở phiên bản thử nghiệm. Bạn có thể đọc thêm về việc xuất kho dữ liệu trong <0>bài đăng blog này." @@ -8170,7 +8776,7 @@ msgstr "" msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "Tính năng này không khả dụng khi sử dụng Mật khẩu ứng dụng. Vui lòng đăng nhập bằng mật khẩu chính của bạn." -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Bảng tin này đang nhận lượng truy cập cao và tạm thời không khả dụng. Vui lòng thử lại sau." @@ -8209,11 +8815,11 @@ msgstr "Nhãn này đã được gắn bởi tác giả." msgid "This label was applied by you." msgstr "Nhãn này đã được bắn bởi bạn." -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Dịch vụ gắn nhãn này chưa khai báo các nhãn, và có thể không hoạt động." -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "Liên kết này dẫn bạn đến trang web sau đây:" @@ -8233,29 +8839,28 @@ msgstr "Danh sách này đang trống." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Dịch vụ kiểm duyệt này không khả dụng. Xem bên dưới để biết thêm chi tiết. Nếu vấn đề này vẫn tiếp tục, hãy liên hệ với chúng tôi." -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Bài đăng này khai rằng đã được tạo vào <0>{0}, nhưng lần đầu tiên được Bluesky nhìn thấy vào <1>{1}." -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Bài đăng này có loại threadgate không xác định. Ứng dụng của bạn có thể đã lỗi thời." -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "Bài đăng này đã bị xóa." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "Bài đăng này chỉ hiển thị cho người dùng đã đăng nhập. Nó sẽ không hiển thị cho người không đăng nhập." +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Bài đăng này sẽ bị ẩn khỏi bảng tin và thảo luận. Hành động này không thể hoàn tác." -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "Tác giả bài đăng này đã tắt chức năng trích dẫn bài đăng." @@ -8263,11 +8868,11 @@ msgstr "Tác giả bài đăng này đã tắt chức năng trích dẫn bài đ msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Chỉ những người dùng đã đăng nhập mới xem được hồ sơ người dùng này. Người chưa đăng nhập sẽ không thể xem được." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Trả lời này sẽ được sắp xếp vào mục ẩn ở cuối thảo luận của bạn và sẽ tắt thông báo cho các trả lời tiếp theo - cho cả bạn và người khác." -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "Dịch vụ này không cung cấp điều khoản dịch vụ hoặc chính sách bảo mật." @@ -8275,6 +8880,10 @@ msgstr "Dịch vụ này không cung cấp điều khoản dịch vụ hoặc ch msgid "This should create a domain record at:" msgstr "Tác vụ này sẽ tạo một bản ghi tên miền tại:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Người dùng này không có tên hiển thị, vì vậy không thể được xác minh." @@ -8316,16 +8925,18 @@ msgstr "Người dùng này không theo dõi ai cả." msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Tác vụ này sẽ xóa \"{0}\" khỏi danh sách từ cấm của bạn. Bạn luôn có thể thêm lại sau này." -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "Tác vụ này sẽ xóa @{0} khỏi danh sách truy cập nhanh." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Tác vụ này sẽ xóa bài đăng của bạn khỏi bài đăng trích dẫn này cho tất cả người dùng, và thay thế nó bằng một chỗ trống." -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "Tùy chọn thảo luận" @@ -8334,24 +8945,27 @@ msgstr "Tùy chọn thảo luận" msgid "Thread preferences" msgstr "Cài đặt thảo luận" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "Cài đặt thảo luận" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "Phân luồng" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "Chế độ phân luồng" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "Cài đặt thảo luận" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "Thời gian còn lại: {0, plural, one {# giây} other {# giây}}" @@ -8376,42 +8990,56 @@ msgstr "Bạn muốn gởi báo cáo này cho ai?" msgid "Today" msgstr "Hôm nay" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "Bật/tắt trình đơn" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "Bật/tắt nội dung 18+" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "Bật/tắt tiếng" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "Hàng đầu" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "Chủ đề" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "Dịch" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "Chủ đề nổi trội" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "Video nổi bật" @@ -8428,14 +9056,10 @@ msgstr "Thử lại" msgid "TV" msgstr "TV" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "Xác thực hai bước (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "Nhập tên tài khoản bạn mong muốn" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "Gõ tin nhắn của bạn ở đây" @@ -8453,7 +9077,7 @@ msgstr "Không thể kết nối. Vui lòng kiểm tra kết nối mạng của #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "Không thể kết nối với dịch vụ của bạn. Vui lòng kiểm msgid "Unable to delete" msgstr "Không thể xóa" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "Bỏ chặn" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "Bỏ chặn" @@ -8486,7 +9126,7 @@ msgstr "Bỏ chặn" msgid "Unblock account" msgstr "Bỏ chặn tài khoản" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "Bỏ chặn tài khoản" @@ -8495,13 +9135,13 @@ msgstr "Bỏ chặn tài khoản" msgid "Unblock list" msgstr "Mở khoá danh sách" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "Bỏ chặn bài đăng lại" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Huỷ đăng lại ({0, plural, other {# đăng lại}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Bỏ theo dõi" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "Bỏ theo dõi {0}" @@ -8523,7 +9163,7 @@ msgstr "Bỏ theo dõi tài khoản" msgid "Unfollows the user" msgstr "Bỏ theo dõi người này" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Rất tiếc, không có dịch vụ gắn nhãn nào bạn đã đăng ký hỗ trợ loại báo cáo này." @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "Bỏ thích" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Bỏ thích ({0, plural, other {# lượt thích}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "Bỏ ẩn" @@ -8555,8 +9195,8 @@ msgstr "Bỏ ẩn" msgid "Unmute {tag}" msgstr "Bỏ ẩn {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "Bật lại thông báo cho hội thoại" msgid "Unmute list" msgstr "Bỏ ẩn danh sách" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "Bật lại thông báo cho thảo luận" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "Bật lại thông báo cho video" @@ -8597,8 +9237,8 @@ msgstr "Bỏ ghim bảng tin" msgid "Unpin from home" msgstr "Bỏ ghim khỏi trang chủ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "Bỏ ghim khỏi hồ sơ" @@ -8614,8 +9254,8 @@ msgstr "Đã bỏ ghim {0} khỏi Trang chủ" msgid "Unpinned from your feeds" msgstr "Bỏ ghim khỏi bảng ghi của bạn" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "Huỷ tạm bỏ qua lời nhắc email" @@ -8636,7 +9276,7 @@ msgstr "Bỏ đăng ký dịch vụ gắn nhãn" msgid "Unsubscribed from list" msgstr "Đã bỏ đăng ký danh sách" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "Định dạng video không được hỗ trợ" @@ -8662,8 +9302,8 @@ msgstr "Cập nhật <0>{displayName} trong danh sách" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "" @@ -8676,17 +9316,17 @@ msgstr "Cập nhật thành {domain}" msgid "Update your email" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Không thể cập nhật tệp đính kèm trong trích dẫn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Không thể cập nhật trạng thái hiển thị của trả lời" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "Đang cập nhật..." @@ -8698,20 +9338,20 @@ msgstr "Tải lên ảnh" msgid "Upload a text file to:" msgstr "Tải lên tệp văn bản đến:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "Tải lên từ máy ảnh" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "Tải lên từ Files" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "Tải lên từ Thư viện" msgid "Uploading images..." msgstr "Đang tải lên hình..." -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "Đang tải lên hình cho liên kết..." -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "Đang tải lên video..." @@ -8761,6 +9401,10 @@ msgstr "Sử dụng đề xuất" msgid "Use this to sign in to the other app along with your handle." msgstr "Sử dụng để đăng nhập vào ứng dụng khác cùng với tên người dùng của bạn." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Sử dụng bởi:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "Đã cập nhật danh sách người dùng" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "Tên tài khoản hoặc địa chỉ email" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "người dùng theo dõi bởi <0>@{0}" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "người dùng theo dõi <0>@{0}" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "Người dùng tôi theo dõi" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "Người dùng trong \"{0}\"" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "Người bạn theo dõi" @@ -8846,11 +9502,11 @@ msgstr "Giá trị:" msgid "Verification failed, please try again." msgstr "Xác minh không thành công, xin vui lòng thử lại." -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "Cài đặt xác minh" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "Cài đặt xác minh" @@ -8870,8 +9526,15 @@ msgstr "Xác minh bởi:" msgid "Verify account" msgstr "Xác minh tài khoản" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "" @@ -8880,21 +9543,20 @@ msgstr "" msgid "Verify DNS Record" msgstr "Xác minh bản ghi DNS" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "Xác thực email" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Hộp thoại xác minh email" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "Xác minh tệp văn bản" msgid "Verify this account?" msgstr "Xác minh tài khoản này?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "Xác minh email của bạn" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "Xác minh email của bạn" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "Phiên bản {appVersion}" +msgid "Version {0}" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "Video" @@ -8928,7 +9598,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "Không thể xử lý video" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "Bảng tin video" @@ -8942,15 +9612,15 @@ msgstr "Video từ {0}: {text}" msgid "Video Games" msgstr "Trò chơi điện tử" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "Đã tạm dừng video" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "Đang phát video" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "Không tìm thấy video." @@ -8958,11 +9628,11 @@ msgstr "Không tìm thấy video." msgid "Video settings" msgstr "Cài đặt video" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "Đã tải lên video" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "Video: {0}" @@ -8979,11 +9649,11 @@ msgstr "Video phải ngắn hơn 3 phút" msgid "View {0}'s avatar" msgstr "Xem hình đại diện của {0}" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "Xem hồ sơ của {0}" @@ -8991,7 +9661,7 @@ msgstr "Xem hồ sơ của {0}" msgid "View {displayName}'s profile" msgstr "Xem hồ sơ của {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "Xem hồ sơ của người dùng bị chặn" @@ -9009,7 +9679,6 @@ msgstr "Xem bản ghi gỡ lỗi" msgid "View details" msgstr "Xem chi tiết" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "Xem chi tiết về báo cáo vi phạm bản quyền" @@ -9022,23 +9691,23 @@ msgstr "Xem toàn bộ thảo luận" msgid "View information about these labels" msgstr "Xem thông tin về những nhãn này" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "Xem thêm" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "Xem hồ sơ" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "Xem hình đại diện" @@ -9054,28 +9723,28 @@ msgstr "Xem xác minh của người dùng này" msgid "View users who like this feed" msgstr "Xem người dùng thích bảng tin này" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "Xem video" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "Xem tài khoản bạn đã chặn" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "Xem cài đặt tương tác mặc định cho bài đăng" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "Xem bảng tin của bạn và khám phá thêm" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "Xem danh sách kiểm duyệt của bạn" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "Xem tài khoản bạn đã ẩn" @@ -9083,8 +9752,8 @@ msgstr "Xem tài khoản bạn đã ẩn" msgid "View your verifications" msgstr "Xem xác minh của bạn" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "Xem hình đầy đủ" @@ -9092,16 +9761,20 @@ msgstr "Xem hình đầy đủ" msgid "Views video in immersive mode" msgstr "Xem video ở chế độ toàn màn hình" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "Xem trang" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "Ẩm lượng" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "Cảnh bảo nội dung và lọc từ bảng tin" msgid "Watch now" msgstr "" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "" + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "Không tìm thấy nội dung nào cho hashtag." @@ -9128,7 +9809,7 @@ msgstr "Không tìm thấy nội dung nào cho hashtag." msgid "We couldn't find any results for that topic." msgstr "Chúng tôi không tìm thấy kết quả nào cho chủ đề đó." -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "Không thể tải hội thoại này" @@ -9136,6 +9817,10 @@ msgstr "Không thể tải hội thoại này" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Chúng tôi ước lượng {estimatedTime} cho đến khi tài khoản của bạn sẵn sàng." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Chúng tôi đã gởi một email xác minh khác đến <0>{0}." @@ -9148,15 +9833,15 @@ msgstr "Chúng tôi mong bạn có một trải nghiệm tuyệt vời. Hãy nh msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Hết bài đăng từ theo đõi của bạn. Đây là những bài đăng mới nhất từ <0/>." -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "Chúng tôi đề xuất chọn ít nhất hai mục quan tâm." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Chúng tôi không thể xác định bạn có được phép tải lên video hay không. Vui lòng thử lại." @@ -9164,10 +9849,14 @@ msgstr "Chúng tôi không thể xác định bạn có được phép tải lê msgid "We were unable to load your birth date preferences. Please try again." msgstr "Chúng tôi không thể tải cài đặt ngày sinh của bạn. Vui lòng thử lại." -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "Chúng tôi không thể tải những dịch vụ dán nhãn bạn đã cấu hình." +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Chúng tôi không thể kết nối. Vui lòng thử lại để tiếp tục thiết lập tài khoản của bạn. Nếu vẫn xảy ra vấn đề, bạn có thể bỏ qua quy trình này." @@ -9176,7 +9865,7 @@ msgstr "Chúng tôi không thể kết nối. Vui lòng thử lại để tiếp msgid "We will let you know when your account is ready." msgstr "Chúng tôi sẽ thông báo cho bạn khi tài khoản của bạn đã sẵn sàng." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -9184,6 +9873,22 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "Chúng tôi sẽ sử dụng việc này để tùy chỉnh trải nghiệm của bạn." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "Chúng tôi đang gặp vấn đề mạng, hãy thử lại" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Chúng tôi đang giới thiệu một lớp xác minh mới trên Bluesky — một dấu tích dễ nổi bật." -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "Chúng tôi rất vui khi có bạn cùng tham gia!" @@ -9205,15 +9910,15 @@ msgstr "Xin lỗi, chúng tôi không thể xử lý danh sách này. Nếu vẫ msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Xin lỗi, chung tối không thể tải từ cấm của bạn vào lúc này. Vui lòng thử lại." -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Xin lỗi, chúng tôi không thể hoàn thành tìm kiếm của bạn. Vui lòng thử lại sau vài phút." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Xin lỗi! Bài đăng bạn đang trả lời đã bị xóa." -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Xin lỗi! Chúng tôi không thể tìm thấy trang bạn đang tìm kiếm." @@ -9222,6 +9927,26 @@ msgstr "Xin lỗi! Chúng tôi không thể tìm thấy trang bạn đang tìm k msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Xin lỗi! Bạn chỉ có thể đăng ký tối đa hai mươi dịch vụ gắn nhãn, và bạn đã đạt giới hạn hai mươi." +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "Chào mừng trở lại!" @@ -9240,7 +9965,7 @@ msgstr "Bạn muốn gọi gói khởi đầu của mình là gì?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "Có gì mới?" @@ -9256,11 +9981,11 @@ msgstr "Bạn sử dụng ngôn ngữ nào cho bài đăng này?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Bạn muốn thấy ngôn ngữ nào trong bảng tin theo thuật toán của mình?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "Ai có thể tương tác với bài đăng này?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "Ai có thể trả lời" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "Ai có thể xác minh?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "Ôi không!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "Đã xảy ra lỗi khi tải video nổi bật." @@ -9322,12 +10047,12 @@ msgstr "Tại sao người dùng này cần được xem xét?" msgid "Write a message" msgstr "Soạn một tin nhắn" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "Soạn bài đăng" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "Soạn trả lời" @@ -9358,11 +10083,11 @@ msgstr "Có, vô hiệu hóa" msgid "Yes, delete this starter pack" msgstr "Có, xóa gói khởi đầu này" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "Có, gỡ bỏ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "Có, ẩn" @@ -9378,6 +10103,10 @@ msgstr "Hôm qua" msgid "You" msgstr "Bạn" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "Bạn là người xác minh đáng tin cậy" @@ -9386,6 +10115,10 @@ msgstr "Bạn là người xác minh đáng tin cậy" msgid "You are creating an account on" msgstr "Bạn đang tạo tài khoản trên" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "Bạn đang trong hàng chờ." @@ -9403,7 +10136,7 @@ msgstr "" msgid "You are not allowed to go live" msgstr "" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Bạn không được phép tải lên video." @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "Bạn đã được xác minh" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "Bạn đã được xác minh. Bạn sẽ bị mất dấu xác minh nếu bạn thay đổi tên hiển thị. <0>Tìm hiểu thêm." @@ -9441,10 +10173,18 @@ msgstr "Bạn cũng có thể khám phá và theo dõi các bảng tin tùy ch msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Bạn cũng có thể tạm thời vô hiệu hóa tài khoản của mình, và kích hoạt lại bất kỳ lúc nào." -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Bạn có thể tiếp tục cuộc trò chuyện đang diễn ra bất kể cài đặt nào bạn chọn." +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "Bạn có thể đăng nhập bằng mật khẩu mới của mình." msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "Bạn có thể kích hoạt lại tài khoản của mình để tiếp tục đăng nhập. Hồ sơ và bài đăng của bạn sẽ hiển thị cho người dùng khác." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "Bạn có thể thiết lập cài đặt tương tác mặc định trong <0>Cài đặt → Kiểm duyệt → Cài đặt tương tác." #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "Bạn có thể cập nhật lại sau trong phần cài đặt." @@ -9472,7 +10212,7 @@ msgstr "Bạn không có người nào theo dõi." msgid "You don't follow any users who follow @{name}." msgstr "Bạn không theo dõi người dùng nào theo dõi @{name}." -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "Hiện tại bạn không có yêu cầu trò chuyện nào." @@ -9480,15 +10220,15 @@ msgstr "Hiện tại bạn không có yêu cầu trò chuyện nào." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Bạn không có mã mời nào cả! Chúng tôi sẽ gửi cho bạn một số mã khi bạn đã sử dụng Bluesky lâu hơn." -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "Bạn không có bảng tin nào được ghim." -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "Bạn không có bảng tin nào được lưu." -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "bạn đã chặn tác giả hoặc đã bị chặn bởi tác giả." @@ -9502,6 +10242,10 @@ msgstr "Bạn đã chặn người dùng này" msgid "You have blocked this user. You cannot view their content." msgstr "Bạn đã chặn người dùng này. Bạn không thể xem nội dung của họ." +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "Bạn đã ẩn tài khoản này." msgid "You have muted this user" msgstr "Bạn đã ẩn người dùng này." -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "Bạn chưa có hội thoại nào. Bắt đầu ngay!" @@ -9547,7 +10291,7 @@ msgstr "Bạn chưa chặn tài khoản nào. Để chặn một tài khoản, h msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Bạn chưa ẩn tài khoản nào. Để ẩn từ một tài khoản, hãy vào hồ sơ của họ và chọn \"Ẩn tài khoản\" từ trình đơn trên tài khoản của họ." -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "Bạn đã đến cuối" @@ -9572,6 +10316,10 @@ msgstr "Bạn chưa ẩn từ hoặc thẻ nào cả" msgid "You hid this reply." msgstr "Bạn đã ẩn trả lời này." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Bạn có thể kháng nghị nhãn không phải của mình nếu bạn cảm thấy chúng được đặt sai." @@ -9592,7 +10340,7 @@ msgstr "Bạn chỉ có thể thêm tối đa 3 bảng tin" msgid "You may only select up to 4 images" msgstr "Bạn chỉ có thể chọn tối đa 4 hình ảnh" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "Bạn phải đủ 13 tuổi trở lên để tạo tài khoản." @@ -9600,6 +10348,14 @@ msgstr "Bạn phải đủ 13 tuổi trở lên để tạo tài khoản." msgid "You must be following at least seven other people to generate a starter pack." msgstr "Bạn phải theo dõi ít nhất bảy người khác để tạo gói khởi đầu." +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "Bạn phải cấp quyền truy cập vào thư viện ảnh của mình để lưu mã QR" @@ -9608,6 +10364,11 @@ msgstr "Bạn phải cấp quyền truy cập vào thư viện ảnh của mình msgid "You must select at least one labeler for a report" msgstr "Bạn phải chọn ít nhất một dịch vụ gắn nhãn cho một báo cáo" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "" + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "Bạn cần phải xác thực địa chỉ email trước khi mở xác thực hai lớp qua email." @@ -9616,7 +10377,7 @@ msgstr "Bạn cần phải xác thực địa chỉ email trước khi mở xác msgid "You previously deactivated @{0}." msgstr "Bạn đã vô hiệu hóa @{0} trước đây." -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "Bạn có thể cần phải khởi động lại ứng ngay bây giờ." @@ -9628,16 +10389,20 @@ msgstr "Bạn đã bày tỏ cảm xúc {0}" msgid "You reacted {0} to {1}" msgstr "Bạn đã bày tỏ cảm xúc {0} cho {1}" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "Bạn sẽ đăng xuất khỏi tất cả tài khoản của mình." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "Bạn sẽ không còn nhận thông báo cho thảo luận này" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "Bạn sẽ bắt đầu nhận thông báo cho thảo luận này" @@ -9657,11 +10422,11 @@ msgstr "Bạn: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Bạn: {short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Bạn sẽ theo dõi người dùng và bảng tin được đề xuất sau khi hoàn tất việc tạo tài khoản!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Bạn sẽ theo dõi người dùng được đề xuất sau khi hoàn tất việc tạo tài khoản!" @@ -9673,9 +10438,9 @@ msgstr "Bạn sẽ theo dõi những người này và {0} người khác" msgid "You'll follow these people right away" msgstr "Bạn sẽ theo dõi những người này ngay lập tức" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Bạn sẽ nhận một email tại <0>{0} để xác minh đây đúng là bạn." +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "Bạn đã chọn ẩn một từ hoặc thẻ trong bài đăng này." msgid "You've found some people to follow" msgstr "Bạn đã tìm thấy một số người để theo dõi" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Bạn đã đến cuối bảng tin! Hãy tìm thêm một số tài khoản để theo dõi." @@ -9711,19 +10480,23 @@ msgstr "Bạn đã đến cuối bảng tin! Hãy tìm thêm một số tài kho msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Bạn đã đến quá giới hạn tải lên video hàng ngày (quá nhiều byte)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Bạn đã đến giới hạn tải lên video hàng ngày (quá nhiều video)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Không còn video để xem nữa. Có lẽ đây là thời điểm thích hợp để nghỉ giải lao?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "Tài khoản của bạn" @@ -9735,7 +10508,7 @@ msgstr "Tài khoản của bạn đã bị xóa" msgid "Your account has been suspended" msgstr "Tài khoản của bạn đã bị đình chỉ" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Tài khoản của bạn chưa đủ tuổi để tải lên video. Vui lòng thử lại sau." @@ -9751,11 +10524,11 @@ msgstr "Tài khoản của bạn đã vi phạm <0>Điều khoản Dịch vụ c msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "Khiếu nại của bạn đã được gửi. Nếu khiếu nại của bạn được chấp thuận, bạn sẽ nhận được một email." -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "Ngày sinh của bạn" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "Trình duyệt của bạn không hỗ trợ định dạng video. Vui lòng thử trình duyệt khác." @@ -9771,13 +10544,15 @@ msgstr "Lựa chọn của bạn sẽ được ghi nhớ cho các liên kết t msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "Tên tài khoản hiện tại <0>{0} sẽ tự động được giữ lại cho bạn. Bạn có thể chuyển lại vào bất kỳ lúc nào từ tài khoản này." -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "Địa chỉ email của bạn đã được cập nhật nhưng chưa được xác minh. Bước tiếp theo, vui lòng xác minh email mới của bạn." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Email của bạn có vẻ không hợp lệ." @@ -9786,15 +10561,11 @@ msgstr "Email của bạn có vẻ không hợp lệ." msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "" -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Email của bạn chưa được xác minh. Chúng tôi khuyến khích thực hiện bước bảo mật quan trọng này." - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "Lượt thích đầu của bạn!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "Người theo dõi bạn" @@ -9806,19 +10577,15 @@ msgstr "Bảng tin theo dõi còn trống! Hãy theo dõi thêm người dùng msgid "Your full handle will be <0>@{0}" msgstr "Tên tài khoản đầy đủ của bạn sẽ là <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "Tên tài khoản đầy đủ của bạn sẽ là <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "Mục quan tâm của bạn" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "Mục quan tâm của bạn đã được cập nhật!" @@ -9835,15 +10602,15 @@ msgstr "Từ cấm của bạn" msgid "Your password has been changed successfully!" msgstr "Mật khẩu đã được thay đổi thành công!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "Mật khẩu của bạn phải có ít nhất 8 ký tự." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "Bài đăng của bạn đã được đăng" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "Bài đăng của bạn đã được đăng" @@ -9851,15 +10618,19 @@ msgstr "Bài đăng của bạn đã được đăng" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Bài đăng, lượt thích, và lượt chặn của bạn là công khai. Việc ẩn là riêng tư." +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Hồ sơ, bài đăng, bảng tin, và danh sách của bạn sẽ không còn hiển thị cho người dùng Bluesky khác. Bạn có thể kích hoạt lại tài khoản bất kì lúc nào bằng cách đăng nhập." -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "Trả lời của bạn đã được đăng" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "Báo cáo của bạn sẽ được gửi tới <0>{0}." @@ -9867,7 +10638,7 @@ msgstr "Báo cáo của bạn sẽ được gửi tới <0>{0}." msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Báo cáo của bạn sẽ được gởi đến dịch vụ kiểm duyệt của Bluesky" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "Mục quan tâm mà bạn chọn giúp chúng tôi đưa nội dung mà bạn quan tâm đến." diff --git a/src/locale/locales/zh-CN/messages.po b/src/locale/locales/zh-CN/messages.po index 1749efaa85..ee56d485ea 100644 --- a/src/locale/locales/zh-CN/messages.po +++ b/src/locale/locales/zh-CN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: zh\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 01:46\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -27,7 +27,7 @@ msgstr "(活动)" msgid "(contains embedded content)" msgstr "(包含嵌入内容)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(没有电子邮箱)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# 次转发} other {# 次转发}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# 秒} other {# 秒}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# 条未读} other {# 条未读}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {# 条未读} other {# 条未读}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {#个月} other {#个月}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {关注者} other {关注者}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {正在关注} other {正在关注}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {喜欢} other {喜欢}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {喜欢} other {喜欢}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {帖文} other {帖文}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {引用} other {引用}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {转发} other {转发}}" @@ -135,6 +138,10 @@ msgstr "{0} <0> - <1>标签" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0> - <1>文本及标签" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} 位正在关注" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "{0} 正在直播" @@ -143,11 +150,15 @@ msgstr "{0} 正在直播" msgid "{0} is not a valid URL" msgstr "{0} 不是有效的 URL 地址" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "{0} 已被占用" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "本周新加入了 {0} 人" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "第 {0} 个(共 {1} 个)" @@ -164,8 +175,16 @@ msgstr "{0} 作出了 {1} 反应" msgid "{0} reacted {1} to {2}" msgstr "{0} 对 {2} 作出了 {1} 反应" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0},由 {1} 提供的动态源,被 {2} 喜欢" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0},由 {1} 创建的列表" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "{0}的头像" @@ -197,12 +216,12 @@ msgstr "{0} 分钟前" msgid "{0}s" msgstr "{0} 秒前" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# 条未读} other {# 条未读}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "{displayName}的新手包" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {时} other {时}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {分} other {分}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} 及<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 关注了你" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} 及<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 喜欢了你的自定义动态源" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} 及<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 喜欢了你的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} 及<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 喜欢了你转发的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} 及 <0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 撤回了对你账户的认证" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} 及<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 转发了你的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} 及<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 转发了你转发的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} 及<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 使用了你的新手包注册" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} 及 <0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 对你授予了认证" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} 关注了你" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} 回关了你" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} 喜欢了你的自定义动态源" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} 喜欢了你的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} 喜欢了你转发的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} 撤回了对你账户的认证" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} 转发了你的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} 转发了你转发的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} 使用了你的新手包注册" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} 对你授予了认证" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} 及{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 关注了你" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} 及{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 喜欢了你的自定义动态源" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} 及{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 喜欢了你的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} 及{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 喜欢了你转发的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} 及 {additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 撤回了对你账户的认证" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} 及{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 转发了你的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} 及{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 转发了你转发的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} 及{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 使用了你的新手包注册" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} 及 {additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 对你授予了认证" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} 关注了你" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} 回关了你" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} 喜欢了你的自定义动态源" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} 喜欢了你的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} 喜欢了你转发的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} 撤回了对你账户的认证" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} 转发了你的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} 转发了你转发的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} 使用了你的新手包注册" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} 对你授予了认证" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} 位正在关注" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "目前无法向 {handle} 发送私信" @@ -392,7 +410,7 @@ msgstr "{joinedAllTimeCount, plural,other {# 位用户}}已加入!" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "{minutes, plural, one {# 分钟} other {# 分钟}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# 条未读通知} other {# 条未读通知}}" @@ -432,12 +450,12 @@ msgstr "{userName} 的认证" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}、<1>{1} 及{2, plural, one {其他 # } other {其他 # }}人已包含在你的新手包中" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}、<1>{1} 及{2, plural, one {其他 # } other {其他 # }}人已包含在你的新手包中" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {关注者} other {关注者}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {正在关注} other {正在关注}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0}及<1><2>{1} 已包含在你的新手包中" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} 已包含在你的新手包中" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} 的成员" @@ -466,11 +484,11 @@ msgstr "<0>{0} 的成员" msgid "<0>{date} at {time}" msgstr "<0>{date} {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>实验性:启用后,你将只会收到已关注用户的回复及引用通知。我们会在逐步在这里添加更多设置项。" +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "请<0>登录<1>或<2>创建账户<3><4>以便于使用 Bluesky 的搜索功能寻找新闻、体育、政治等你所感兴趣的新鲜事。" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>你 及<1> <2>{0} 已包含在你的新手包中" @@ -503,10 +521,14 @@ msgstr "一条私信" msgid "A new form of verification" msgstr "全新的认证机制" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "一张个人主页的截图,显示“关注”按钮旁新增的提醒图标,用于介绍全新动态提醒功能。" + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "关于" @@ -524,25 +546,25 @@ msgstr "接受私信请求" msgid "Accept Request" msgstr "接受请求" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "无障碍" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "无障碍设置" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "账户" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "已关注该账户" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "已隐藏该账户" msgid "Account Muted by List" msgstr "该账户已被列表隐藏" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "账户选项" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "已从快速访问中移除该账户" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "已取消关注该账户" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "已取消隐藏该账户" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "带有蓝色扇形外观认证徽章的账户 <0><1/> 可以为其他账户授予认证,这些可信认证人由 Bluesky 官方所挑选。" +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "其他人的动态" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "动态提醒" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "添加" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "再添加至少 {0} 个以继续" @@ -634,8 +666,8 @@ msgstr "添加账户" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "添加替代文本" msgid "Add alt text (optional)" msgstr "添加替代文本(可选)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "添加其他账户" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "添加另一则帖文" @@ -670,8 +702,8 @@ msgstr "添加应用密码" msgid "Add emoji reaction" msgstr "添加表情符号反应" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "补充更多细节(可选)" @@ -683,7 +715,7 @@ msgstr "使用所选配置添加隐藏字词" msgid "Add muted words and tags" msgstr "添加隐藏字词和标签" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "添加新帖文" @@ -704,7 +736,7 @@ msgstr "添加反应" msgid "Add recommended feeds" msgstr "添加推荐的动态源" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "添加一些推荐的动态源到你的新手包里面!" @@ -725,10 +757,6 @@ msgstr "添加到你的动态源" msgid "Add to lists" msgstr "添加至列表" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "添加至“我的动态源”" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "将用户新增至列表" @@ -738,11 +766,11 @@ msgstr "将用户新增至列表" msgid "Added to list" msgstr "已添加至列表" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "已添加至“我的动态源”" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "补充说明(一千个字以内)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" msgstr "补充说明(300 个字以内)" @@ -750,18 +778,18 @@ msgstr "补充说明(300 个字以内)" msgid "Adult" msgstr "色情" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "成人内容" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "仅可通过网页端(<0>bsky.app)启用成人内容显示。" -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "成人内容显示已停用。" @@ -770,16 +798,32 @@ msgstr "成人内容显示已停用。" msgid "Adult Content labels" msgstr "成人内容标记" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "详细设置" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "年龄验证" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "无法提交年龄验证信息,请再试一次。" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "已提交年龄验证信息" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "只需几分钟即可完成年龄验证" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "alice@example.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "全部" @@ -793,7 +837,7 @@ msgstr "已关注所有账户!" msgid "All languages" msgstr "全部语言" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "以下是你已保存的动态源。" @@ -802,16 +846,21 @@ msgstr "以下是你已保存的动态源。" msgid "Allow access to your direct messages" msgstr "允许读取你的私信" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "允许以下来源向你发送私信" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "允许其他人在你发帖时收到提醒" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "允许引用帖文" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "允许这些来源回复:" @@ -828,13 +877,13 @@ msgstr "已经有验证码了?" msgid "Already signed in as @{0}" msgstr "已经以 @{0} 身份登录" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "替代文本" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "替代文本" msgid "Alt text" msgstr "替代文本" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "替代文本" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "为图片新增替代文本,从而帮助视障者大致了解图片内容。" @@ -861,27 +910,19 @@ msgstr "替代文本太长将被截断,{MAX_ALT_TEXT, plural,other {限制为 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "已发送一封电子邮件至 {0}。它包含你需要在下方输入的验证码。" -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "已发送一封电子邮件至你先前填写的电子邮箱地址 {currentEmail},请查阅邮件并在下方输入验证码。" - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "已发送电子邮件!请在下方输入邮件中的验证码。" - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "发生错误" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "发生错误" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "压缩视频时发生错误。" -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "载入动态源时发生错误。" @@ -889,11 +930,11 @@ msgstr "载入动态源时发生错误。" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "创建新手包时发生错误,要再试一次吗?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "播放视频时发生错误,请重试。" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "播放视频时发生错误,请重试。" @@ -910,7 +951,7 @@ msgstr "选择视频时发生错误" msgid "An error occurred while trying to follow all" msgstr "关注全部账户时发生错误" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "上传视频时发生错误。" @@ -934,8 +975,8 @@ msgstr "开启私信时出现问题" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "出现未知错误" msgid "an unknown labeler" msgstr "未知标记者" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "和" @@ -963,10 +1004,14 @@ msgstr "和" msgid "Animals" msgstr "动物" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "GIF 动画" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "公告" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "为你介绍 Bluesky 上的认证机制" @@ -980,7 +1025,13 @@ msgstr "反社会行为" msgid "Anybody can interact" msgstr "任何人都可以参与互动" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "关注我的人" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "应用密码只能包含字母、数字、空格、连字符(-)及 msgid "App password names must be at least 4 characters long" msgstr "应用密码至少应含有 4 个字符" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "应用密码" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "应用密码" @@ -1053,10 +1104,10 @@ msgstr "暂停申诉" msgid "Appeal this decision" msgstr "对此决定提出申诉" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "外观" @@ -1065,12 +1116,20 @@ msgstr "外观" msgid "Apply default recommended feeds" msgstr "使用默认推荐的动态源" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "应用提交变更" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "自 {0} 起被归档" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "已归档帖文" @@ -1078,7 +1137,7 @@ msgstr "已归档帖文" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "你确定要删除此应用密码“{0}”吗?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "你确定要删除这条私信吗?此操作将仅为你删除私信,而不会为其他参与者删除。" @@ -1098,19 +1157,15 @@ msgstr "你确定要离开这个对话吗?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "你确定要离开此对话吗?此操作将仅为你删除对话,而不会为其他参与者删除。" -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "你确定要从你的动态源中删除 {0} 吗?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "你确定要将此从你的动态源中删除吗?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "你确定要舍弃这段草稿吗?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "你确定要放弃发布这则帖文吗?" @@ -1131,29 +1186,26 @@ msgstr "艺术" msgid "Artistic or non-erotic nudity." msgstr "带有艺术性或非色情的裸露。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "为算法指定主题" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "至少应含有 3 个字符" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "极光" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "自动播放选项已移动到<0>内容与媒体设置。" - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "自动播放视频及 GIF" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "可用" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "自动播放视频及 GIF" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "返回" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "返回私信" @@ -1195,28 +1247,44 @@ msgstr "在创建新手包之前,你必须首先验证你的电子邮箱。" msgid "Before you can accept this chat request, you must first verify your email." msgstr "在你接受此私信请求之前,你必须首先验证你的电子邮箱。" +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "在你接收 {name} 的发帖提醒之前,你必须首先验证你的电子邮箱。" + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." -msgstr "在向其他人发送私信之前,你必须首先验证你的电子邮箱。" +msgstr "在与其他人展开对话以前,你必须首先验证你的电子邮箱。" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "开始" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "开始年龄验证流程" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "请填写以下栏位,以开始年龄验证流程。" #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "生日" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "屏蔽" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "屏蔽" msgid "Block account" msgstr "屏蔽账户" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "要屏蔽账户吗?" @@ -1262,20 +1330,20 @@ msgstr "屏蔽用户" msgid "Block User" msgstr "屏蔽用户" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "已被屏蔽" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "已屏蔽账户" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "已屏蔽账户" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "已被屏蔽的账户无法在你的帖文下回复、提及你或以其他方式与你互动。" @@ -1284,11 +1352,11 @@ msgstr "已被屏蔽的账户无法在你的帖文下回复、提及你或以其 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "已被屏蔽的账户无法在你的帖文下回复、提及你或以其他方式与你互动。你将不会看到他们所发布的内容,同样他们也无法查看你发布的内容。" -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "这则帖文已被屏蔽。" -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "屏蔽该用户不会阻止其继续标记你的账户。" @@ -1309,11 +1377,12 @@ msgstr "博客" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky 无法确认帖文发布时间的真实性。" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky 经典™" @@ -1347,6 +1416,14 @@ msgstr "Bluesky 将不会向未登录的用户显示你的个人资料和帖文 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky 官方会主动确认部分知名账户的真实性并授予认证。" +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "Bluesky 的社群准则" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "Bluesky 的社群准则更新" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "模糊化图片并从动态源中过滤" msgid "Books" msgstr "书籍" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "在探索页面浏览更多账户" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "在探索页面浏览更多动态源" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "浏览更多建议" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "在探索页面浏览更多建议" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "商务" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "来自 {0}" @@ -1428,15 +1502,23 @@ msgstr "来自 {0}" msgid "By <0>{0}" msgstr "来自 <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "按下“继续”即表示你了解并同意这些改动。" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "继续即代表你同意<0> KWS 服务条款并了解 KWS 会依据<1> LWS 隐私政策保存你的验证状态及经哈希匿名处理的电子邮件地址。这将使你下次使用此电子邮箱地址登录其他由 KWS 提供技术支持的应用、游戏及服务时,无需再次进行验证。" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "继续创建账户即代表你同意我们的<0>隐私政策。" -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "继续创建账户即代表你同意我们的<0>服务条款和<1>隐私政策。" -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "继续创建账户即代表你同意我们的<0>服务条款。" @@ -1448,14 +1530,17 @@ msgstr "由你创建" msgid "Camera" msgstr "相机" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "相机" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "取消" @@ -1500,11 +1582,7 @@ msgstr "取消删除账户" msgid "Cancel image crop" msgstr "取消裁剪图片" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "取消编辑个人资料" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "取消引用帖文" @@ -1516,14 +1594,10 @@ msgstr "取消重新启用账户并登出" msgid "Cancel search" msgstr "取消搜索" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "取消开启网站链接" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "无法与被屏蔽的用户进行互动" @@ -1553,17 +1627,12 @@ msgstr "更改应用图标为“{0}”" msgid "Change app language" msgstr "更改应用语言" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "更改电子邮箱地址" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "更改账户代码" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "更改内容审核提供方" @@ -1579,14 +1648,6 @@ msgstr "更改帖文发布语言为 {suggestedLanguageName}" msgid "Change report reason" msgstr "更改举报原因" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "更改你的电子邮箱地址" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "更改你的电子邮箱地址" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "更改应用图标" @@ -1596,10 +1657,15 @@ msgstr "更改应用图标" msgid "Changes hosting provider" msgstr "更改托管服务提供商" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "已保存更改" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "私信" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "已删除私信" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "私信 - 静音" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "私信 - 提示音" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "已隐藏私信" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "私信请求收件箱" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "私信请求" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "私信设置" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "私信设置" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "已取消隐藏私信" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "私信" @@ -1661,7 +1738,7 @@ msgstr "请在下方输入发送到你电子邮箱的验证码:" msgid "Choose domain verification method" msgstr "选择验证域名的方式" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "选择动态源" @@ -1669,7 +1746,7 @@ msgstr "选择动态源" msgid "Choose for me" msgstr "帮我选择" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "选择用户" @@ -1685,23 +1762,23 @@ msgstr "选择此颜色作为你的头像背景" msgid "Choose your account provider" msgstr "选择你的服务提供商" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "自定义专属于你的时间线!由社群打造的动态源能帮助你找到喜欢的内容。" -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "设置你的密码" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "设置你的用户名" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "清除所有数据" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "清除所有数据(并重新启动应用)" @@ -1714,23 +1791,27 @@ msgstr "清除图片缓存" msgid "Clear search query" msgstr "清除搜索历史记录" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "点击以了解详情" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "点击这里" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "点击这里来重新开始验证流程。" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "点击这里来更新你的电子邮箱" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "点击来禁止其他人引用这则帖文。" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "点击来允许其他人引用这则帖文。" @@ -1750,14 +1831,16 @@ msgstr "气象" msgid "Clip 🐴 clop 🐴" msgstr "哒哒🐴哒哒🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "哒哒🐴哒哒🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "关闭" @@ -1789,13 +1876,15 @@ msgstr "关闭警告" msgid "Close bottom drawer" msgstr "关闭底部抽屉" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "关闭对话框" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "关闭抽屉菜单" @@ -1804,7 +1893,7 @@ msgstr "关闭抽屉菜单" msgid "Close emoji picker" msgstr "关闭表情符号选择器" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "关闭 GIF 对话框" @@ -1822,7 +1911,7 @@ msgstr "关闭图片查看器" msgid "Close menu" msgstr "关闭菜单" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "关闭此窗口" @@ -1830,7 +1919,7 @@ msgstr "关闭此窗口" msgid "Closes password update alert" msgstr "关闭密码更新警告" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "关闭编辑器并舍弃草稿" @@ -1843,16 +1932,16 @@ msgstr "关闭表情符号选择器" msgid "Closes viewer for header image" msgstr "关闭标题图片查看器" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "折叠用户列表" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "折叠指定通知的用户列表" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "主题模式" @@ -1870,7 +1959,8 @@ msgstr "喜剧" msgid "Comics" msgstr "漫画" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "社群准则" @@ -1879,38 +1969,34 @@ msgstr "社群准则" msgid "Complete onboarding and start using your account" msgstr "完成入门引导并开始使用你的账户" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "完成验证" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "撰写新帖文" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "撰写最多 {0, plural,other {# 个字符}} 的帖文" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "撰写回复" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "正在压缩视频……" -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "配置 {name} 类别的内容过滤设置" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "已在 <0>内容审核设置 中进行配置。" -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "确认内容语言设置" msgid "Confirm delete account" msgstr "确认删除账户" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "确认你的年龄:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "确认你的出生日期" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "确认你的出生日期" msgid "Confirmation code" msgstr "验证码" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "验证码" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "连接中……" -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "连接问题" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "联系我们的内容审核团队" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "联系支持" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "联系我们" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "内容与媒体" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "内容与媒体" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "内容与媒体" @@ -1977,7 +2069,8 @@ msgstr "内容与媒体" msgid "Content Blocked" msgstr "已屏蔽该内容" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "内容过滤器" @@ -2006,10 +2099,12 @@ msgstr "内容警告" msgid "Content warnings" msgstr "内容警告" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "上下文菜单背景,点击以关闭菜单。" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "继续" msgid "Continue as {0} (currently signed in)" msgstr "以 {0} 的身份继续(当前已登录)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "加载更多帖文串" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "加载更多帖文串……" @@ -2029,6 +2129,10 @@ msgstr "加载更多帖文串……" msgid "Continue to next step" msgstr "继续下一步" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "对话" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "已复制" msgid "Copied build version to clipboard" msgstr "已复制构建版本号至剪贴板" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "已复制构建版本号至剪贴板" msgid "Copy" msgstr "复制" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "仍然复制" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "复制应用密码" @@ -2087,8 +2187,8 @@ msgstr "复制应用密码" msgid "Copy at:// URI" msgstr "复制 at:// 链接" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "复制发布者 DID" @@ -2120,10 +2220,10 @@ msgstr "复制链接" msgid "Copy link to list" msgstr "复制列表链接" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "复制帖文链接" @@ -2136,18 +2236,18 @@ msgstr "复制个人资料链接" msgid "Copy link to starter pack" msgstr "复制新手包链接" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "复制私信文字" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "复制帖文 at:// 链接" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "复制帖文文字" @@ -2159,11 +2259,25 @@ msgstr "复制二维码" msgid "Copy TXT record value" msgstr "复制 TXT 记录值" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "版权许可" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "无法连接到自定义动态源" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "无法连接到动态源服务" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "无法找到个人资料" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "无法隐藏对话" msgid "Could not process your video" msgstr "无法处理你的视频" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "无法保存如下更改:{0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "无法更新通知设置" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "创建" @@ -2195,7 +2317,7 @@ msgstr "为新手包创建二维码" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "创建新手包" @@ -2205,21 +2327,22 @@ msgstr "为我创建新手包" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "创建账户" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "创建账户" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "创建一个账户" @@ -2241,7 +2364,7 @@ msgstr "再创建一个" msgid "Create new account" msgstr "创建新的账户" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "创建针对 {0} 的举报" @@ -2268,7 +2391,7 @@ msgstr "自定义" msgid "Customization options" msgstr "自定义选项" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "自定义哪些人可以参与这则帖文的互动。" @@ -2278,12 +2401,12 @@ msgstr "自定义你的 Bluesky 体验" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "深色" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "深色" @@ -2292,21 +2415,21 @@ msgstr "深色" msgid "Dark mode" msgstr "深色模式" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "深色模式" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "出生日期" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "停用账户" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "调试内容审核" @@ -2314,7 +2437,7 @@ msgstr "调试内容审核" msgid "Debug panel" msgstr "调试面板" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "默认" @@ -2322,8 +2445,8 @@ msgstr "默认" msgid "Default icons" msgstr "默认图标" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "默认图标" msgid "Delete" msgstr "删除" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "删除账户" @@ -2355,7 +2478,7 @@ msgstr "要删除应用密码吗?" msgid "Delete chat" msgstr "删除私信" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "删除聊天记录" @@ -2370,7 +2493,7 @@ msgstr "删除对话" msgid "Delete Conversation" msgstr "删除对话" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "仅为我删除" @@ -2378,11 +2501,11 @@ msgstr "仅为我删除" msgid "Delete list" msgstr "删除列表" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "删除私信" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "仅为我删除私信" @@ -2390,9 +2513,9 @@ msgstr "仅为我删除私信" msgid "Delete my account" msgstr "删除我的账户" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "删除帖文" @@ -2409,11 +2532,11 @@ msgstr "要删除新手包吗?" msgid "Delete this list?" msgstr "要删除此列表吗?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "要删除这则帖文吗?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "已删除" @@ -2422,15 +2545,20 @@ msgstr "已删除" msgid "Deleted Account" msgstr "已删除的账户" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "删除列表" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "这则帖文已删除。" #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "简介" @@ -2447,12 +2575,12 @@ msgstr "简介太长,{DESCRIPTION_MAX_GRAPHEMES, plural, other {不能超过 # msgid "Descriptive alt text" msgstr "扩充描述替代文本" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "分离引用" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "要分离引用帖文吗?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "已启用开发者模式" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "开发者选项" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "对话框:调整哪些人可以参与这则帖文的互动" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "昏暗" @@ -2492,27 +2620,27 @@ msgstr "停用电子邮箱两步验证" msgid "Disable Email 2FA" msgstr "停用电子邮箱两步验证" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "停用触觉反馈" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "停用字幕" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "停用" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "舍弃" @@ -2520,11 +2648,11 @@ msgstr "舍弃" msgid "Discard changes?" msgstr "要放弃更改吗?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "要舍弃草稿吗?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "要放弃发布吗?" @@ -2542,7 +2670,7 @@ msgstr "探索动态源" msgid "Discover new custom feeds" msgstr "探索新的自定义动态源" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "探索新的动态源" @@ -2550,7 +2678,7 @@ msgstr "探索新的动态源" msgid "Dismiss" msgstr "跳过" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "忽略错误" @@ -2562,26 +2690,26 @@ msgstr "跳过入门指南" msgid "Dismiss interests" msgstr "忽略兴趣" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "忽略信息" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "忽略此部分" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "显示更大的替代文本标签" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "名称" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "名称" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "名称太长" @@ -2603,15 +2731,11 @@ msgstr "不使用此隐藏字词来隐藏你已关注用户的帖文" msgid "Does not include nudity." msgstr "不包含裸露内容。" -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "不以连字符(-)开头或结尾" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "域名已通过验证!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "没有验证码或需要重新请求一个?<0>点击这里。" @@ -2619,6 +2743,15 @@ msgstr "没有验证码或需要重新请求一个?<0>点击这里。" msgid "Don't see an email? <0>Click here to resend." msgstr "没有看到电子邮件?<0>点击这里来重新发送。" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "不再显示" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "别担心!你现有的对话及设置都已保存,只需验证你已成年即可恢复访问。" + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "双击或长按私信以添加反应" msgid "Double tap to close the dialog" msgstr "双击以关闭对话框" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "双击以点赞" @@ -2673,7 +2806,7 @@ msgstr "下载 Bluesky" msgid "Download CAR file" msgstr "下载 CAR 文件" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "拖放以新增图片" @@ -2689,18 +2822,10 @@ msgstr "例如:alice" msgid "e.g. Alice Lastname" msgstr "例如:张蓝天" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "例如:张蓝天" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "例如:alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "例如:艺术家、爱狗人士和资深书迷。" - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "例如:人体艺术。" @@ -2725,10 +2850,11 @@ msgstr "例如:散布广告内容的用户。" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "每个邀请码仅可被使用一次。后续你将不定期获得新的邀请码。" -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "编辑" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "编辑" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "编辑头像" @@ -2749,12 +2875,12 @@ msgstr "编辑动态源" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "编辑图片" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "编辑互动选项" @@ -2776,33 +2902,33 @@ msgstr "编辑直播状态" msgid "Edit Moderation List" msgstr "编辑内容审核列表" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "编辑我的动态源" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "编辑个人资料" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "编辑来自 {0} 的动态提醒" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "编辑用户" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "编辑帖文互动选项" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "编辑个人资料" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "编辑个人资料" @@ -2814,19 +2940,11 @@ msgstr "编辑新手包" msgid "Edit User List" msgstr "编辑用户列表" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "编辑哪些人可以回复" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "编辑你的名称" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "编辑你的描述" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "编辑你的新手包" @@ -2839,8 +2957,8 @@ msgstr "教育" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "此列表的创建者屏蔽了你,或你已屏蔽了对方。" -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "电子邮箱" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "已停用电子邮箱两步验证" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "已启用电子邮箱两步验证" @@ -2865,10 +2983,6 @@ msgstr "重新发送电子邮件" msgid "Email sent!" msgstr "已发送电子邮件!" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "已更改电子邮箱!" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "已验证电子邮箱!" @@ -2883,8 +2997,8 @@ msgstr "嵌入 HTML 代码" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "嵌入帖文" @@ -2892,7 +3006,7 @@ msgstr "嵌入帖文" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "将这则帖文嵌入到你的网站。只需复制以下代码片段,并将其插入到你网站的 HTML 代码中的合适位置即可。" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "嵌入式视频播放器" @@ -2906,7 +3020,7 @@ msgstr "启用" msgid "Enable {0} only" msgstr "仅启用 {0}" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "启用成人内容显示" @@ -2919,16 +3033,20 @@ msgstr "启用电子邮箱两步验证" msgid "Enable external media" msgstr "启用外部媒体" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "启用媒体播放器" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "启用优先通知" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "转到其个人主页,点击 <0>提醒图标 即可接收该账户的动态提醒<1/>。" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "启用推送通知" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "启用字幕" @@ -2941,17 +3059,14 @@ msgstr "仅启用此来源" msgid "Enable trending topics" msgstr "启用热门话题" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "在你的“Discover”动态源中启用热门视频" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "在你的“Discover”动态源中启用热门视频。" - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "启用" @@ -2963,7 +3078,7 @@ msgstr "已浏览到末尾" msgid "Ensure you have selected a language for each subtitle file." msgstr "请确认你已为每个字幕文件都选择了一种语言。" -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "输入密码" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "输入字词或标签" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "输入验证码" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "输入验证码" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "进入全屏模式" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "输入你的出生日期" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "输入你的电子邮箱地址" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "请在下方输入你的新电子邮箱地址。" - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "输入你的密码" @@ -3022,7 +3129,7 @@ msgstr "输入你的密码" msgid "Enter your username and password" msgstr "输入你的用户名和密码" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "进入全屏模式" @@ -3030,16 +3137,28 @@ msgstr "进入全屏模式" msgid "Entertainment" msgstr "娱乐" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "错误" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "加载帖文时出错" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "加载首选项时出错" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "错误信息" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "保存文件时发生错误" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "CAPTCHA(人机验证)响应错误。" @@ -3047,27 +3166,34 @@ msgstr "CAPTCHA(人机验证)响应错误。" msgid "Error:" msgstr "错误:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "错误:{error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "所有人" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "任何人都可以回复" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "任何人都可以回复这则帖文。" -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "所有人" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "其他内容" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "排除你已关注的用户" msgid "Excludes users you follow" msgstr "排除你已关注的用户" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "退出全屏模式" @@ -3106,24 +3232,28 @@ msgstr "退出图片查看器" msgid "Expand alt text" msgstr "展开替代文本" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "展开用户列表" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "展开或折叠你正在回复的完整帖文" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "展开帖文文本" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "展开或折叠帖文文本" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "URL 应解析为记录" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "实验性功能" @@ -3153,15 +3283,15 @@ msgstr "血腥、露骨或其他可能引起不适的媒体内容。" msgid "Explicit sexual images." msgstr "露骨的色情图片。" -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "探索" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "导出账户数据" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "外部媒体" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 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:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "外部媒体偏好设置" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "无法接受私信请求" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "无法添加表情符号反应" @@ -3211,8 +3341,8 @@ msgstr "无法创建应用密码。请重试。" msgid "Failed to create conversation" msgstr "无法创建对话" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "无法创建新手包" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "无法删除私信" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "无法删除私信" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "无法删除帖文,请重试" @@ -3238,8 +3368,8 @@ msgstr "无法删除帖文,请重试" msgid "Failed to delete starter pack" msgstr "无法删除新手包" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "无法加载对话" @@ -3250,14 +3380,32 @@ msgstr "无法加载对话" msgid "Failed to load feeds preferences" msgstr "无法加载动态源偏好设置" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "无法加载 GIF" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "无法加载通知设置。" + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "无法加载过去的私信" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "无法加载首选项。" + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "无法加载建议的动态源" msgid "Failed to load suggested follows" msgstr "无法加载建议关注" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "无法标记所有为已读" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "无法固定帖文" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "无法删除表情符号反应" @@ -3291,15 +3439,11 @@ msgstr "无法撤回认证" msgid "Failed to save image: {0}" msgstr "无法保存图片:{0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "无法保存通知偏好设置,请重试" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "无法保存设置,请重试。" -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "无法保存你的兴趣。" @@ -3318,7 +3462,7 @@ msgstr "无法发送电子邮件,请重试。" msgid "Failed to submit appeal, please try again." msgstr "无法提交申诉,请重试。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "无法隐藏讨论串,请重试" @@ -3335,7 +3479,11 @@ msgstr "无法更新电子邮箱,请重试。" msgid "Failed to update feeds" msgstr "无法更新动态源" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "无法更新动态提醒范围" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "无法更新设置" @@ -3354,15 +3502,23 @@ msgstr "无法验证电子邮箱,请重试。" msgid "Failed to verify handle. Please try again." msgstr "无法验证账户代码,请重试。" -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "动态源" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "由 {0} 创建的动态源" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "动态源创建者" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "动态源标识符" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "动态源菜单" @@ -3371,35 +3527,39 @@ msgstr "动态源菜单" msgid "Feed toggle" msgstr "切换动态源" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "动态源不可用" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "反馈" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "已发送反馈!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "动态源" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "动态源是一种自定义算法,用户仅需掌握一点编程知识即可轻松创建。<0/>以获取更多资讯。" #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "已更新动态源!" @@ -3428,6 +3588,14 @@ msgstr "按语言过滤搜索" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "按语言过滤搜索(当前:{currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "筛选谁可以选择接收你的动态提醒" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "筛选你想接收的通知来源" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "正在完成" @@ -3448,7 +3616,7 @@ msgstr "寻找一些用户关注" msgid "Find posts, users, and feeds on Bluesky" msgstr "在 Bluesky 寻找感兴趣的帖文、用户和动态源" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "完成" @@ -3456,17 +3624,17 @@ msgstr "完成" msgid "Fitness" msgstr "健康" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "哑光黑" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "哑光蓝" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "哑光白" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "灵活" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "关注" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "关注 {0}" @@ -3518,7 +3686,7 @@ msgstr "关注账户" msgid "Follow all" msgstr "全部关注" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "回关" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "回关" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "已被你认识的 <0>{0} 关注" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "已被你认识的 <0>{0} 及{1, plural, one {其他#人} other {其他#人}}关注" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "已被你认识的 <0>{0} 及 <1>{1} 关注" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "已被你认识的<0>{0}、<1>{1} 及{2, plural, one {其他#人} other {其他#人}}关注" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "已被你认识的 @{0} 关注" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "你认识的关注者" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "正在关注" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "正在关注" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "已关注 {0}" @@ -3579,8 +3751,8 @@ msgstr "已关注 {handle}" msgid "Following feed preferences" msgstr "“Following”动态源偏好设置" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "“Following”动态源偏好设置" @@ -3592,11 +3764,11 @@ msgstr "关注了你" msgid "Follows You" msgstr "关注了你" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "字体" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "字体大小" @@ -3613,7 +3785,7 @@ msgstr "出于安全原因,我们将发送验证码到你的电子邮箱地址 msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "出于安全原因,你将无法再次查看此应用密码。若你忘记了此密码,则需重新生成。" -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "我们建议你使用主题字体,以获得最佳使用体验。" @@ -3643,11 +3815,15 @@ msgstr "忘记了?" msgid "Frequently Posts Unwanted Content" msgstr "频繁发布不受欢迎的内容" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "发自" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "来自 @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "来自 <0/>" @@ -3660,14 +3836,68 @@ msgstr "相册" msgid "Generate a starter pack" msgstr "创建一个新手包" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "获取帮助" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "当有人关注你时收到通知。" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "当有人喜欢了你转发的帖文时收到通知。" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "当有人喜欢了你的帖文时收到通知。" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "当有人提及你时收到通知。" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "当有人引用了你的帖文时收到通知。" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "当有人回复了你的帖文时收到通知。" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "当有人转发了你转发的帖文时收到通知。" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "当有人转发了你的帖文时收到通知。" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "当其发布新帖文时收到提醒" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "当你选择的账户发布新帖文或回复时收到提醒。" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "当 {name} 发布新帖文时收到提醒" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "当该账户有新动态时收到提醒" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "当 {name} 发帖时收到提醒" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "当某人发帖时收到提醒" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "开始吧" @@ -3688,14 +3918,16 @@ msgstr "为你的个人资料选择头像" msgid "Glaring violations of law or terms of service" msgstr "明显违反法规或服务条款" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "开始直播" msgid "Go live for" msgstr "直播时间" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "转到 {firstAuthorName} 的个人资料" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "转至账户设置" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "转到你与 {0} 的对话" @@ -3779,8 +4017,8 @@ msgstr "敏感/写实媒体" msgid "Half way there!" msgstr "已经完成一半了!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "账户代码" @@ -3797,7 +4035,7 @@ msgstr "已更改账户代码!" msgid "Handle too long. Please try a shorter one." msgstr "账户代码太长,请缩短后重试。" -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "触感" @@ -3806,7 +4044,7 @@ msgstr "触感" msgid "Harassment, trolling, or intolerance" msgstr "骚扰、恶作剧或歧视行为" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "标签" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "标签 {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "拥有验证码?<0>点击这里。" -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "遇到问题了?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "帮助" @@ -3839,8 +4077,13 @@ msgstr "通过上传图片或生成头像,来让大家知道你不是机器人 msgid "Here is your app password!" msgstr "以下是你的应用密码!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "嗨👋" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "隐藏" @@ -3848,16 +4091,16 @@ msgstr "隐藏" msgid "Hidden by your moderation settings." msgstr "由你的内容审核设置所隐藏。" -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "隐藏列表" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "隐藏列表" msgid "Hide" msgstr "隐藏" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "隐藏" @@ -3875,18 +4118,18 @@ msgstr "隐藏" msgid "Hide customization options" msgstr "隐藏自定义选项" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "仅为我隐藏这则帖文" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "为所有人隐藏回复" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "仅为我隐藏回复" @@ -3894,12 +4137,12 @@ msgstr "仅为我隐藏回复" msgid "Hide this card" msgstr "隐藏这张卡片" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "要隐藏这则帖文吗?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "要隐藏这则回复吗?" @@ -3913,11 +4156,11 @@ msgstr "隐藏热门话题" msgid "Hide trending topics?" msgstr "要隐藏热门话题吗?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "要隐藏热门视频吗?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "隐藏用户列表" @@ -3926,32 +4169,32 @@ msgstr "隐藏用户列表" msgid "Hide verification badges" msgstr "隐藏认证徽章" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "隐藏内容" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "抱歉,连接动态源服务器出现问题。请联系动态源的维护者反馈此问题。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "抱歉,动态源服务器似乎配置错误。请联系动态源的维护者反馈此问题。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "抱歉,动态源服务器似乎已下线。请联系动态源的维护者反馈此问题。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "抱歉,动态源服务器返回错误响应。请联系动态源的维护者反馈此问题。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "抱歉,我们无法找到该动态源。它似乎已被删除。" -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "抱歉,看起来在加载数据时遇到了问题。请查看下方获取更多详情。如果问题仍然存在,请联系我们。" @@ -3959,15 +4202,15 @@ msgstr "抱歉,看起来在加载数据时遇到了问题。请查看下方获 msgid "Hmmmm, we couldn't load that moderation service." msgstr "抱歉,我们无法加载该内容审核提供服务方。" -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "请稍等!我们正在逐步开放上传视频的权限。你目前仍在等待队伍中,请稍后再回来查看!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "主页" @@ -3984,10 +4227,10 @@ msgstr "托管服务提供商" msgid "Hot" msgstr "热门" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "热门回复优先" @@ -3996,10 +4239,6 @@ msgstr "热门回复优先" msgid "How should we open this link?" msgstr "我们应该如何开启这条链接?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "我了解" msgid "If alt text is long, toggles alt text expanded state" msgstr "若替代文本过长,切换替代文本的展开状态" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "若你是所在国家法律定义的未成年人,则你的父母或法定监护人必须代表你阅读这些条款。" @@ -4031,11 +4270,11 @@ msgstr "如果你删除此列表,则以后将无法恢复。" msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "若你拥有自己的域名,你可以将其用作自己的账户代码,这同时还能帮你验证身份。<0>了解详情。" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "如果你需要更新你的电子邮箱,请<0>点击这里。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "如果你删除这则帖文,则以后将无法恢复。" @@ -4047,6 +4286,10 @@ msgstr "如果你更新电子邮箱地址,电子邮箱两步验证将会停用 msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "如果你想要更改密码,我们将发送验证码到你的电子邮箱地址,以验证这是你的账户。" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "如果你想限制其他人接收你账户的动态提醒,可以转到<0>设置 → 隐私与安全更改允许范围。" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "如果你是开发者,你可以自行托管服务器。" @@ -4091,13 +4334,41 @@ msgstr "冒充、虚假声明身份或隶属关系" msgid "Impersonation, misinformation, or false claims" msgstr "冒充、提供虚假信息或提出虚假声明" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "应用内" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "应用内通知" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "应用内、所有人" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "应用内、你关注的人" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "应用内、系统推送" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "应用内、系统推送、所有人" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "应用内、系统推送、你关注的人" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "不当消息或敏感链接" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "收件箱清空啦!" @@ -4105,7 +4376,7 @@ msgstr "收件箱清空啦!" msgid "Incorrect username or password" msgstr "用户名或密码不正确" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "输入发送到你电子邮箱的验证码以重置密码" @@ -4113,7 +4384,7 @@ msgstr "输入发送到你电子邮箱的验证码以重置密码" msgid "Input confirmation code for account deletion" msgstr "输入删除用户的验证码" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "输入新的密码" @@ -4129,10 +4400,14 @@ msgstr "输入发送至你电子邮箱的验证码" msgid "Interaction limited" msgstr "已限制互动" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "互动选项" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "全新推出动态提醒" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "两步验证码无效。" msgid "Invalid handle. Please try a different one." msgstr "账户代码无效,请尝试输入另一个。" -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "帖文记录无效或不受支持" @@ -4158,7 +4433,7 @@ msgstr "验证码无效" msgid "Invite a Friend" msgstr "邀请朋友" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "邀请码" @@ -4186,15 +4461,15 @@ msgstr "邀请朋友关注你喜欢的动态源和用户" msgid "Invites, but personal" msgstr "以个性化的方式邀请朋友加入" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "这是正确的电子邮箱地址" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "现在只有你一个!通过上面的列表将更多人添加到你的新手包里面。" -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "作业 ID:{0}" @@ -4220,11 +4495,27 @@ msgstr "加入对话" msgid "Journalism" msgstr "新闻学" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "保持联系" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "KWS 隐私政策" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "KWS 服务条款" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "KWS 官网" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "由 {0} 标记。" -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "由发布者标记。" @@ -4237,7 +4528,7 @@ msgstr "标记" msgid "Labels added" msgstr "已添加标记" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "标记可用于隐藏特定内容、显示警告或分类用户和内容。" @@ -4253,22 +4544,30 @@ msgstr "你内容上的标记" msgid "Language selection" msgstr "语言选择" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "语言设置" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "语言" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "更大" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "最后一次请求于 {timeAgo} 前" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "最后一次请求于不久前" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "最新" @@ -4282,7 +4581,6 @@ msgstr "了解详情" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "了解详情" @@ -4290,6 +4588,10 @@ msgstr "了解详情" msgid "Learn More" msgstr "了解详情" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "深入了解年龄验证" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "深入了解有关 Bluesky 的信息" @@ -4298,15 +4600,23 @@ msgstr "深入了解有关 Bluesky 的信息" msgid "Learn more about self hosting your PDS." msgstr "深入了解有关自行托管 PDS 的信息。" -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "深入了解有关应用于该内容的内容审核信息" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "深入了解有关应用于该内容的内容审核信息。" -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "要了解有关改动的更多资讯,以及如何与我们分享你的想法,请阅读<0>我们的博客文章。" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "你可以阅读我们的博客文章,了解有关改动的更多资讯,以及如何与我们分享你的想法。" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "深入了解有关此警告的信息" @@ -4316,12 +4626,16 @@ msgstr "深入了解有关此警告的信息" msgid "Learn more about verification on Bluesky" msgstr "深入了解 Bluesky 的认证机制" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "深入了解有关 Bluesky 公开内容的信息。" -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "在你的<0>账户设置了解详情" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "了解详情。" @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "离开对话" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." +msgid "Leave them all unselected to see any language." msgstr "全部留空以显示所有语言的帖文。" -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "离开 Bluesky" @@ -4370,7 +4685,7 @@ msgstr "让我们开始吧!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "浅色" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "喜欢" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "喜欢({0, plural, one {# 次喜欢} other {# 次喜欢}})" @@ -4397,6 +4712,10 @@ msgstr "喜欢 10 则帖文" msgid "Like 10 posts to train the Discover feed" msgstr "喜欢 10 则帖文以训练“Discover”资讯源" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "喜欢通知" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "喜欢此动态源" @@ -4405,8 +4724,8 @@ msgstr "喜欢此动态源" msgid "Like this labeler" msgstr "喜欢此标记者" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "喜欢的用户" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "喜欢的用户" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, one {# 位用户} other {# 位用户}}喜欢" @@ -4428,20 +4747,36 @@ msgstr "{0, plural, one {# 位用户} other {# 位用户}}喜欢" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, one {# 位用户} other {# 位用户}}喜欢" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "喜欢" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "喜欢你转发的帖文" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "喜欢你转发帖文的通知" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "这则帖文的喜欢数" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "线性视图" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "列表" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "已屏蔽该列表" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "由 {0} 创建的列表" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "由 <0/> 创建的列表" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "你创建的列表" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "列表创建者" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "已取消隐藏该列表" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "列表" @@ -4537,7 +4876,7 @@ msgstr "加载更多" msgid "Load more suggested feeds" msgstr "加载更多建议的动态源" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "加载更多通知" @@ -4552,11 +4891,11 @@ msgstr "加载更多帖文" msgid "Loading..." msgstr "加载中……" -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "日志" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "未登录用户可见性" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "网站标志由 @sawaratsuki.bsky.social 绘制" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "网站标志由 <0>@sawaratsuki.bsky.social 绘制" @@ -4573,7 +4912,7 @@ msgstr "网站标志由 <0>@sawaratsuki.bsky.social 绘制" msgid "Long press to open tag menu for #{tag}" msgstr "长按开启 #{tag} 标签菜单" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "应该类似这样 XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "调整你账户关联的电子邮箱设置" msgid "Make one for me" msgstr "帮我选择" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "请确认目标页面地址是否正确!" @@ -4606,7 +4945,7 @@ msgstr "请确认目标页面地址是否正确!" msgid "Manage saved feeds" msgstr "管理已保存的动态源" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "管理认证设置" @@ -4614,9 +4953,9 @@ msgstr "管理认证设置" msgid "Manage your muted words and tags" msgstr "管理你的隐藏字词和标签" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "标记所有为已读" @@ -4625,15 +4964,13 @@ msgstr "标记所有为已读" msgid "Mark as read" msgstr "标记为已读" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "已标记所有为已读" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "之后再说" @@ -4645,19 +4982,26 @@ msgstr "媒体" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "可能会令部分受众不安或造成不适的媒体内容。" -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "提及通知" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "被提及的用户" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "被提及的用户" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "提及" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "菜单" @@ -4665,7 +5009,7 @@ msgstr "菜单" msgid "Message {0}" msgstr "传送私信给 {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "已删除私信" @@ -4674,11 +5018,11 @@ msgstr "已删除私信" msgid "Message deleted" msgstr "已删除私信" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "来自 @{0} 的私信:{1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "来自服务器的信息:{0}" @@ -4691,19 +5035,23 @@ msgstr "私信输入框" msgid "Message is too long" msgstr "私信过长" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "私信选项" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "私信" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "午夜" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "其他通知" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "误导性账户" msgid "Misleading Post" msgstr "误导性帖文" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "内容审核" @@ -4725,17 +5073,17 @@ msgstr "内容审核" msgid "Moderation details" msgstr "内容审核详情" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "由 {0} 创建的内容审核列表" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "由 <0/> 创建的内容审核列表" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "你创建的内容审核列表" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "已更新内容审核列表" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "内容审核列表" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "内容审核列表" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "内容审核设置" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "内容审核状态" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "内容审核工具" @@ -4775,7 +5123,7 @@ msgstr "内容审核工具" msgid "Moderator has chosen to set a general warning on the content." msgstr "内容审核服务提供方已对该内容标记一般警告。" -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "更多" @@ -4790,13 +5138,13 @@ msgstr "更多动态源" msgid "More options" msgstr "更多选项" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "最多喜欢数优先" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "最多喜欢数的回复优先" @@ -4808,8 +5156,8 @@ msgstr "电影" msgid "Music" msgstr "音乐" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "隐藏" @@ -4819,8 +5167,8 @@ msgstr "隐藏" msgid "Mute {tag}" msgstr "隐藏 {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "仅隐藏包含该字词的标签" msgid "Mute this word until you unmute it" msgstr "将这个字词隐藏,直到你取消为止" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "隐藏讨论串" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "隐藏字词和标签" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "已隐藏账户" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "已隐藏账户" @@ -4898,7 +5246,7 @@ msgstr "已隐藏的账户不会出现在你的通知或时间线里面。隐藏 msgid "Muted by \"{0}\"" msgstr "被“{0}”隐藏" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "隐藏字词和标签" @@ -4911,7 +5259,7 @@ msgstr "你隐藏的账号仅对你自己可见。他们仍能与你互动,但 msgid "My Birthday" msgstr "我的生日" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "我的动态源" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "自然" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "转到 {0}" @@ -4958,11 +5306,11 @@ msgstr "转到下一页" msgid "Navigates to your profile" msgstr "转到个人资料" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "需要更改吗?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "需要举报侵害版权、法律要求及合规性问题?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "需要举报侵权行为吗?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "新建" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "来自 {firstAuthorLink} 的新{postsCount, plural, one {帖文} other {帖文}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "来自 {firstAuthorName} 的新{postsCount, plural, one {帖文} other {帖文}}" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "新私信" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "新的电子邮箱地址" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "新功能" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "新关注者通知" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "新关注者" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "新私信" msgid "New Moderation List" msgstr "新的内容审核列表" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "新密码" @@ -5029,7 +5396,7 @@ msgstr "新密码" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "新帖文" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "新帖文" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "来自 {firstAuthorLink} 及<0>其他 {additionalAuthorsCount, plural, one {{formattedAuthorsCount} 人} other {{formattedAuthorsCount} 人}}的新帖文" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "来自 {firstAuthorName} 及其他 {additionalAuthorsCount, plural,one {{formattedAuthorsCount} 人} other {{formattedAuthorsCount} 人}}的新帖文" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "新的用户信息对话框" @@ -5054,10 +5429,14 @@ msgstr "新的用户信息对话框" msgid "New User List" msgstr "新的用户列表" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "最新回复优先" @@ -5071,15 +5450,15 @@ msgstr "新闻" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "没有 DNS 面板" msgid "No expiry set" msgstr "未设置到期时间" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "找不到精选 GIF,Tenor 可能存在问题。" @@ -5119,32 +5498,35 @@ msgstr "没有图片" msgid "No likes yet" msgstr "目前还没有喜欢" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "已不再关注 {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "不能超过 {MAX_SERVICE_HANDLE_LENGTH, plural,other {# 个字符}}" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "目前还没有私信" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "目前还没有通知!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "没有人" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "仅限发布者可以引用这则帖文。" +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "目前这里还没有帖文" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "目前还没有帖文。" @@ -5171,7 +5553,7 @@ msgstr "没有结果" msgid "No results for \"{0}\"." msgstr "找不到符合“{0}”的结果。" -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "找不到结果" @@ -5179,9 +5561,9 @@ msgstr "找不到结果" msgid "No results found for \"{query}\"" msgstr "找不到符合“{query}”的结果" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "找不到符合 {query} 的结果" @@ -5189,7 +5571,7 @@ msgstr "找不到符合 {query} 的结果" msgid "No results." msgstr "没有结果。" -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "找不到符合“{search}”的搜索结果。" @@ -5198,7 +5580,7 @@ msgstr "找不到符合“{search}”的搜索结果。" msgid "No thanks" msgstr "不,谢谢" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "没有人" @@ -5223,59 +5605,76 @@ msgstr "找不到任何人,试试搜点其他关键字。" msgid "Non-sexual Nudity" msgstr "非色情裸露" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "无" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "没有任何你认识的人关注" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "找不到" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "分享注意事项" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "注意:Bluesky 是一个开放的社交网络。此设置仅限制你的内容在 Bluesky 应用及网页上的可见性,但第三方应用未必会遵从此设置,仍可能会向未登录的用户显示你发布的内容。" -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "注:这则帖文仅对已登录用户可见。" + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "这里什么也没有" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "通知过滤器" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "通知设置" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "通知设置" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "通知提示音" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "通知提示音" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "通知" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "其他通知,例如有人使用了你的新手包注册账号。" + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "现在" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "未标记的裸露或成人内容" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "显示" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "糟糕!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "好的" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "好的" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "最早回复优先" @@ -5331,19 +5736,19 @@ msgstr "最早回复优先" msgid "on<0><1/><2><3/>" msgstr "于<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "重新开始入门引导" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "至少有一张 GIF 缺失了替代文本。" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "至少有一张图片缺失了替代文本。" -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "至少有一段视频缺失了替代文本。" @@ -5351,13 +5756,15 @@ msgstr "至少有一段视频缺失了替代文本。" msgid "Only .jpg and .png files are supported" msgstr "目前仅支持上传 .jpg 或 .png 格式的图片" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "仅限{0}可以回复。" -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "只能包含字母、数字和连字符(-)" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "仅限我关注的人" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "仅支持图片文件" msgid "Only WebVTT (.vtt) files are supported" msgstr "仅支持 WebVTT(.vtt)格式" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "糟糕,出了点问题!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "糟糕!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "开启抽屉菜单" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "开启表情符号选择器" @@ -5416,7 +5822,7 @@ msgstr "开启动态源选项菜单" msgid "Open full emoji list" msgstr "开启完整的表情符号列表" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "开启指向 {niceUrl} 的链接" @@ -5424,11 +5830,11 @@ msgstr "开启指向 {niceUrl} 的链接" msgid "Open message options" msgstr "开启私信选项" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "开启内容审核调试页面" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "开启隐藏字词和标签设置" @@ -5453,16 +5859,16 @@ msgstr "开启分享菜单" msgid "Open starter pack menu" msgstr "开启新手包菜单" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" -msgstr "开启故事书页面" +msgstr "开启 Storybook 页面" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "开启系统日志" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "开启 {numItems} 个选项" @@ -5490,11 +5896,11 @@ msgstr "开启设备相机" msgid "Opens captions and alt text dialog" msgstr "打开字幕和替代文本对话框" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "开启更改账户代码对话框" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "开启编辑器" @@ -5502,7 +5908,7 @@ msgstr "开启编辑器" msgid "Opens device photo gallery" msgstr "开启设备相册" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "开启表情符号选择器" @@ -5520,15 +5926,19 @@ msgstr "开启登录到你现有的 Bluesky 账户流程" msgid "Opens GIF select dialog" msgstr "开启 GIF 选择对话框" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "在浏览器中打开说明中心" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "开启链接 {0}" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "开启邀请码列表" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "打开直播状态对话框" @@ -5536,12 +5946,8 @@ msgstr "打开直播状态对话框" msgid "Opens password reset form" msgstr "开启密码重置申请" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "开启链接到的网页" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "开启该个人资料" @@ -5558,7 +5964,7 @@ msgstr "在下方提供额外信息(可选):" msgid "Options:" msgstr "选项:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "或者组合选择这些选项:" @@ -5600,6 +6006,10 @@ msgstr "其他账户" msgid "Other..." msgstr "其他……" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "我们的博客文章" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "我们的审核团队已收到你的举报。" @@ -5608,7 +6018,7 @@ msgstr "我们的审核团队已收到你的举报。" msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "内容审核服务提供方已收到相关举报,并决定停用你的 Bluesky 私信功能。" -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "无法找到此页面" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "无法找到此页面" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "已更新密码" msgid "Password updated!" msgstr "已更新密码!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "暂停" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "暂停视频" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "用户" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "被 @{0} 关注的用户" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "关注 @{0} 的用户" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "我关注的人" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "已被拒绝访问照片图库,请在系统设置中授权。" @@ -5704,12 +6119,12 @@ msgstr "固定到主页" msgid "Pin to Home" msgstr "固定到主页" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "固定到你的个人资料" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "已固定" @@ -5718,7 +6133,7 @@ msgstr "已固定" msgid "Pinned {0} to Home" msgstr "固定 {0} 到主页" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "已固定的动态源列表" @@ -5726,38 +6141,38 @@ msgstr "已固定的动态源列表" msgid "Pinned to your feeds" msgstr "已固定到你的动态源中" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "播放" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "播放 {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "播放视频" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "播放视频" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "播放或暂停 GIF" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "播放或暂停视频" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "播放 GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "播放视频" @@ -5765,12 +6180,16 @@ msgstr "播放视频" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "请为你所发布的媒体内容添加适当的内容警告标签。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "请转到你的电子邮箱地址以继续完成验证流程,相关邮件应该会在两分钟内发送到你的电子邮箱。" + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "请设置你的账户代码。" #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "请设置你的密码。" @@ -5782,7 +6201,8 @@ msgstr "请点击我们发送给你电子邮件中的链接来验证你的新电 msgid "Please complete the verification captcha." msgstr "请完成 CAPTCHA(人机验证)。" -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "请再次确认你输入的电子邮箱地址是否正确。" @@ -5804,6 +6224,7 @@ msgstr "请输入此应用密码的唯一名称,或使用我们提供的随机 msgid "Please enter a valid code." msgstr "请输入有效的验证码。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "请输入有效的电子邮件地址。" @@ -5812,7 +6233,11 @@ msgstr "请输入有效的电子邮件地址。" msgid "Please enter a valid word, tag, or phrase to mute" msgstr "请输入有效的字词或标签以进行隐藏" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "请输入一个有效、非临时的电子邮箱地址,你日后可能需要再次使用此电子邮箱。" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "请输入我们发送到 <0>{0} 的验证码。" @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "请输入我们之前发送到你电子邮箱地址的验证码。" #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "请输入你的电子邮箱地址。" -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "请输入你的邀请码。" @@ -5853,6 +6278,19 @@ msgstr "请说明你为什么认为 {0} 错误应用了此标记" msgid "Please explain why you think your chats were incorrectly disabled" msgstr "请说明你为什么你认为你的私信被错误停用" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "请返回,或触发这个元素以回到内容的开头。" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "请提供你认为支持团队所需要的任何额外补充信息,以便评估你的年龄验证状态。" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "请选择语言" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "请选择内容审核服务提供方" @@ -5870,9 +6308,9 @@ msgstr "请以 @{0} 身份登录" msgid "Please verify your email" msgstr "请验证你的电子邮箱" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "请验证你的电子邮箱地址" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "请在以下栏位填写你的信息:" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "政治" msgid "Porn" msgstr "色情" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "发布" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "帖文" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "发布" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "全部发布" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "帖文已被屏蔽" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "{0} 的帖文" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "@{0} 的帖文" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "已删除帖文" @@ -5919,11 +6362,14 @@ msgstr "已删除帖文" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "帖文发布失败。请检查网络连接并重试。" +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "帖文已被删除" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "已隐藏帖文" @@ -5937,11 +6383,11 @@ msgstr "这则帖文因设置的隐藏字词而被隐藏" msgid "Post Hidden by You" msgstr "你已隐藏这则帖文" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "帖文互动选项" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "帖文互动选项" @@ -5954,8 +6400,10 @@ msgstr "帖文发布语言" msgid "Post Languages" msgstr "帖文发布语言" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "无法找到帖文" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "已取消固定帖文" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "帖文" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "可以根据文本、标签或结合两者来隐藏帖文。我们建议你尽量避免添加常用字词,因为这可能会导致你的主页不显示任何帖文。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "已隐藏帖文" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "帖文、回复" + +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" msgstr "潜在误导性链接" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "已保存偏好设置" +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "潜在误导性链接警告" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "点按此处以重试连接" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "点按以重试" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "点按此处以查看同样关注该账户的关注者" @@ -6015,40 +6469,46 @@ msgstr "上一张图片" msgid "Primary Language" msgstr "主要语言" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "优先显示你关注的人" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "优先通知" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "隐私" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "隐私与安全" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "隐私与安全" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "隐私与安全设置" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "隐私政策" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "正在处理视频……" @@ -6062,15 +6522,14 @@ msgstr "处理中……" msgid "profile" msgstr "个人资料" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "个人资料" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "已更新个人资料" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "公开且可对外分享的列表,也可作为动态源来使用。" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "发布帖文" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "发布帖文" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "发布回复" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "发布回复" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "推送" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "推送通知" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "系统推送、所有人" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "系统推送、你关注的人" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "已复制二维码到剪切板!" @@ -6119,44 +6594,52 @@ msgstr "已下载二维码!" msgid "QR code saved to your camera roll!" msgstr "已保存二维码至照片图库!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "引用通知" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "引用帖文" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "已重新关联引用帖文" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "已成功分离引用帖文" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "已停用帖文引用" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "引用选项" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "引用" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "引用这则帖文" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "随机显示(又名“试试手气”)" @@ -6164,8 +6647,8 @@ msgstr "随机显示(又名“试试手气”)" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "超过速率限制——你在短时间内尝试修改账户代码的次数过多,请稍后再试。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "重新关联引用帖文" @@ -6177,30 +6660,42 @@ msgstr "使用 {emoji} 做出反应" msgid "Reactivate your account" msgstr "重新启用你的账户" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "显示更多 {0} 则{1, plural,one {回复}other {回复}}" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "阅读博客文章" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "查看更少" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "查看更多" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "查看更多回复" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "阅读我们的博客文章" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "浏览 Bluesky 博客" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "浏览 Bluesky 隐私设置" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "浏览 Bluesky 服务条款" @@ -6213,6 +6708,14 @@ msgstr "申诉原因" msgid "Reason:" msgstr "原因:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "接收应用内通知" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "接收推送通知" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "最近的搜索记录" @@ -6234,8 +6737,8 @@ msgstr "拒绝" msgid "Reject chat request" msgstr "拒绝私信请求" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "重新加载对话" @@ -6244,10 +6747,9 @@ msgstr "重新加载对话" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "移除" @@ -6259,17 +6761,17 @@ msgstr "从你的新手包中删除 {displayName}" msgid "Remove {historyItem}" msgstr "删除 {historyItem}" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "移除账户" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "删除关联" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "删除头像" @@ -6284,24 +6786,22 @@ msgstr "删除嵌入" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "删除此动态源" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "要删除动态源吗?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "从我的动态源中删除" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "要从快速访问中移除吗?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "从已保存的动态源中删除" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "要从你的动态源中删除吗?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "删除图片" @@ -6332,12 +6831,8 @@ msgstr "从你的隐藏字词列表中删除" msgid "Remove profile" msgstr "删除个人资料" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "删除引用" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "删除转发" @@ -6345,7 +6840,7 @@ msgstr "删除转发" msgid "Remove subtitle file" msgstr "删除字幕文件" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "将此动态源从已保存的动态源中删除" @@ -6364,11 +6859,11 @@ msgstr "撤回认证" msgid "Remove your verification for this account?" msgstr "要撤回你对这个账户的认证吗?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "已被发布者删除" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "你已删除" @@ -6377,10 +6872,6 @@ msgstr "你已删除" msgid "Removed from list" msgstr "已从列表中删除" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "已从我的动态源中删除" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "已从已保存的动态源中删除" @@ -6395,34 +6886,36 @@ msgstr "已从你的动态源中删除" msgid "Removed verification" msgstr "已撤回认证" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "删除引用的帖文" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "替换为“Discover”" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "回复" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "已停用回复" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "这则帖文的回复已被停用。" -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "回复" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "回复({0, plural, one {# 则回复} other {# 则回复}})" @@ -6436,50 +6929,55 @@ msgstr "已被这条讨论串的发布者隐藏回复" msgid "Reply Hidden by You" msgstr "你已隐藏这则回复" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "回复通知" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "回复选项" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "由这条讨论串的发布者设置的回复选项" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "回复排序" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "回复 <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "回复已被屏蔽的帖文" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "回复这则帖文" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "对你进行回复" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "已更新回复可见性" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "已成功隐藏回复" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "举报动态源" msgid "Report list" msgstr "举报列表" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "举报私信" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "举报帖文" @@ -6567,25 +7065,26 @@ msgstr "举报此新手包" msgid "Report this user" msgstr "举报此用户" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "转发" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "转发" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "转发({0, plural, one {# 次转发} other {# 次转发}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "转发通知" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "转发或引用帖文" @@ -6594,35 +7093,47 @@ msgstr "转发或引用帖文" msgid "Reposted By" msgstr "转发" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "由 {0} 转发" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "由 <0><1/> 转发" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "你已转发" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "转发" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "转发这则帖文" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "提交更改" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "转发你转发的帖文" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "转发你转发帖文的通知" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "验证码" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "发布时检查媒体是否提供替代文本" @@ -6630,7 +7141,7 @@ msgstr "发布时检查媒体是否提供替代文本" msgid "Require an email code to sign in to your account." msgstr "需要电子邮件验证码才能登录到你的账户。" -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "服务提供商有此要求" @@ -6642,10 +7153,6 @@ msgstr "你所在的地区有此要求" msgid "Resend" msgstr "重新发送" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "重新发送电子邮件" msgid "Resend Verification Email" msgstr "重新发送验证码电子邮件" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "重置动态提醒功能提示" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "重置码" @@ -6667,8 +7180,8 @@ msgstr "重置码" msgid "Reset Code" msgstr "重置码" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "重置入门引导状态" @@ -6687,21 +7200,23 @@ msgstr "重试上次出错的操作" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "重试" @@ -6721,19 +7236,19 @@ msgstr "返回主页" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "返回上一页" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "返回上一步" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "返回上一步" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "保存" @@ -6762,15 +7276,13 @@ msgstr "保存" msgid "Save birthday" msgstr "保存生日" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "保存更改" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "保存更改" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "保存二维码" msgid "Save to my feeds" msgstr "保存到我的动态源" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "已保存动态源" @@ -6802,18 +7314,14 @@ msgstr "已保存动态源" msgid "Saved to your feeds" msgstr "已保存到你的动态源" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "保存个人资料的所有更改" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "保存图片裁剪设置" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "问声好!" @@ -6826,16 +7334,16 @@ msgstr "科学" msgid "Scroll to top" msgstr "滚动到顶部" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "搜索" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "搜索 @{0} 的帖文" @@ -6861,7 +7369,7 @@ msgstr "搜索“{query}”" msgid "Search for \"{searchText}\"" msgstr "搜索“{searchText}”" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "通过搜索来添加你想分享的动态源。" @@ -6877,10 +7385,14 @@ msgstr "搜索更多动态源" msgid "Search for posts, users, or feeds" msgstr "搜索帖文、用户或动态源" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "搜索 GIF" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "未登录状态无法使用搜索功能" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "搜索我的帖文" @@ -6890,12 +7402,12 @@ msgstr "搜索我的帖文" msgid "Search posts" msgstr "搜索帖文" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "搜索个人资料" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "搜索 Tenor" @@ -6903,7 +7415,7 @@ msgstr "搜索 Tenor" msgid "Search..." msgstr "搜索……" -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "搜索个人资料" @@ -6912,10 +7424,6 @@ msgstr "搜索个人资料" msgid "Security step required" msgstr "所需的安全步骤" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "所需的安全步骤" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "查看 {tag} 的帖文" @@ -6936,14 +7444,31 @@ msgstr "查看该用户包含 #{tag} 的帖文" msgid "See jobs at Bluesky" msgstr "查看 Bluesky 的工作职缺" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "浏览更多" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "浏览更多你可能感兴趣的账户" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "在探索页面浏览更多推荐的个人资料" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "查看指南" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" msgstr "播放进度条。使用方向键来前进或后退,按空格键控制播放或暂停。" +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "选择 {0}" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "选择一个颜色" @@ -6988,7 +7513,7 @@ msgstr "从现有账户中选择" msgid "Select GIF" msgstr "选择 GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "选择 GIF “{0}”" @@ -6996,6 +7521,11 @@ msgstr "选择 GIF “{0}”" msgid "Select how long to mute this word for." msgstr "选择要将这个字词隐藏多长时间。" +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "选择语言" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "选择语言……" @@ -7004,7 +7534,7 @@ msgstr "选择语言……" msgid "Select languages" msgstr "选择语言" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "选择内容审核服务提供方" @@ -7045,12 +7575,12 @@ msgstr "选择应用界面所使用的语言。" msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "选择你希望在动态源中显示的语言。如果留空,将默认显示全部语言的帖文。" -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "输入你的出生日期" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "在下面选择你感兴趣的选项" @@ -7058,7 +7588,11 @@ msgstr "在下面选择你感兴趣的选项" msgid "Select your preferred language for translations in your feed." msgstr "选择你在订阅的动态源中翻译的目标语言。" -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "自定义你的通知推送选项" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "第 {0} 个选项,共 {numItems} 个" @@ -7066,17 +7600,9 @@ msgstr "第 {0} 个选项,共 {numItems} 个" msgid "Send a neat website!" msgstr "发送一个有趣的网站吧!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "发送验证邮件" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "发送验证电子邮件" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "发送电子邮件" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "发送电子邮件" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "提交反馈" @@ -7095,7 +7621,7 @@ msgstr "提交反馈" msgid "Send message" msgstr "发送私信" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "发送帖文给 {name}" @@ -7114,20 +7640,20 @@ msgstr "提交举报" msgid "Send report to {0}" msgstr "将举报提交给 {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "将举报提交给 {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "发送验证电子邮件" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "通过私信发送" @@ -7143,7 +7669,7 @@ msgstr "服务器地址" msgid "Set app icon to {0}" msgstr "将应用图标更改为 {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "设置出生日期" @@ -7159,13 +7685,57 @@ msgstr "设置你的账户" msgid "Sets email for password reset" msgstr "设置用于重置密码的电子邮箱" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "设置" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "来自其他人的动态提醒设置" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "允许他人接收你发布贴文提醒的设置" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "喜欢通知设置" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "提及通知设置" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "新关注者通知设置" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "其他通知设置" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "转发的喜欢通知设置" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "转发的转发通知设置" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "引用通知设置" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "回复通知设置" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "转发通知设置" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "分享一件很酷的事吧!" msgid "Share a fun fact!" msgstr "分享一件趣闻吧!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "仍然分享" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "分享作者 DID" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "分享链接" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "分享链接" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "分享链接对话框" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "分享帖文 at:// 链接" @@ -7247,8 +7812,8 @@ msgstr "分享此新手包" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "分享此新手包,以帮助其他人更快融入你在 Bluesky 上的关系网。" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "分享到……" msgid "Share your favorite feed!" msgstr "分享你最喜欢的动态源吧!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "共享偏好测试器" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "分享链接的网站" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "显示" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "显示替代文本" @@ -7303,8 +7864,8 @@ msgstr "显示自定义选项" msgid "Show hidden replies" msgstr "显示已隐藏的回复" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "显示更少类似内容" @@ -7312,55 +7873,63 @@ msgstr "显示更少类似内容" msgid "Show list anyway" msgstr "仍然显示列表" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "显示更多" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "显示更多类似内容" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "显示更多回复" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "显示已隐藏的回复" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "使用树形视图显示帖文回复串" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "显示引用帖文" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "显示回复" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "将回复显示为" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "使用树形视图显示回复" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "将来自你关注的人的回复排在最前面" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "公开显示回复" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "显示转发" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "在你的“Following”动态源中显示你已保存的动态源中的精选帖文" @@ -7372,16 +7941,17 @@ msgstr "显示警告" msgid "Show warning and filter from feeds" msgstr "显示警告并从动态源中过滤" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "显示这则帖文的创建时间" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "显示可供你切换的其他账户" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "显示内容" @@ -7390,14 +7960,15 @@ msgstr "显示内容" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "登录未列出的账户" msgid "Sign in to Bluesky or create a new account" msgstr "登录 Bluesky 或创建新账户" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "登录以查看帖文" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "登出" @@ -7444,8 +8020,8 @@ msgstr "登出" msgid "Sign Out" msgstr "登出" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "确定要登出吗?" @@ -7459,12 +8035,12 @@ msgstr "需要登录" msgid "Signed in as @{0}" msgstr "以 @{0} 的身份登录" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "类似账户" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "跳过" @@ -7472,12 +8048,11 @@ msgstr "跳过" msgid "Skip this flow" msgstr "跳过这段流程" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "更小" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "暂停提醒" @@ -7490,11 +8065,11 @@ msgstr "程序开发" msgid "Some of your verifications are invalid." msgstr "你当前被授予的部分认证无效。" -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "其他你可能喜欢的动态源" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "一些人可以回复" @@ -7510,10 +8085,11 @@ msgstr "有人对 {1} 作出了 {0} 反应" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "你试图提交的举报信息可能有误,请联系支持获取帮助。" -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "出了点问题" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "出了点问题,请重试" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "出了点问题,请重试。" -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "出了点问题!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "发生错误,请稍后重试。" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "发生错误,请重试。" @@ -7539,20 +8118,23 @@ msgstr "发生错误,请重试。" msgid "Something wrong? Let us know." msgstr "有点问题?请告诉我们。" -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." msgstr "很抱歉,你的登录会话已过期,请重新登录。" -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "回复排序" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "回复排序" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "对同一帖文的回复进行排序:" @@ -7579,7 +8161,7 @@ msgstr "垃圾内容、过于频繁的提及或回复" msgid "Sports" msgstr "运动" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "当你和其他人开启一段对话后,对话就会出现在这里。" @@ -7601,9 +8183,9 @@ msgstr "开始添加用户!" msgid "Start chat with {displayName}" msgstr "与 {displayName} 开始私信" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "新手包" @@ -7611,12 +8193,12 @@ msgstr "新手包" msgid "Starter pack by {0}" msgstr "由 {0} 创建的新手包" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "由 <0/> 创建的新手包" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "你创建的新手包" @@ -7638,19 +8220,21 @@ msgstr "新手包能使你轻松与朋友分享你喜欢的用户和动态源。 msgid "Status Page" msgstr "状态页" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "第 {0} 步(共 {1} 步)" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "已清除数据,请立即重新启动应用。" -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" -msgstr "故事书" +msgstr "Storybook" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "提交申诉" msgid "Submit Appeal" msgstr "提交申诉" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "提交举报" @@ -7676,10 +8260,14 @@ msgstr "提交举报" msgid "Subscribe" msgstr "订阅" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "订阅 @{0} 以使用这些标记:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "订阅账户动态" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "订阅标记者" @@ -7692,8 +8280,12 @@ msgstr "订阅此标记者" msgid "Subscribe to this list" msgstr "订阅此列表" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "完成" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "完成!" @@ -7705,7 +8297,7 @@ msgstr "成功认证" msgid "Suggested Accounts" msgstr "推荐账户" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "为你推荐" @@ -7714,26 +8306,26 @@ msgstr "为你推荐" msgid "Suggestive" msgstr "性暗示" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "日出" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "日落" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "支持" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "切换账户" @@ -7742,24 +8334,24 @@ msgstr "切换账户" msgid "Switch Account" msgstr "切换账户" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "切换账户" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "切换到 {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "系统" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "系统日志" @@ -7767,6 +8359,18 @@ msgstr "系统日志" msgid "Tags only" msgstr "仅限标签" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "点击以了解详情" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "点击以了解详情" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "点击这里以表示你已了解并同意这些改动,并继续使用 Bluesky" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7811,12 +8415,14 @@ msgstr "告诉我们更多" msgid "Terms" msgstr "条款" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "服务条款" @@ -7848,10 +8454,6 @@ msgstr "文本输入框" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "感谢你的反馈,相关信息将会发送给动态源维护者。" -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "谢谢!你的电子邮箱已成功验证。" - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "谢谢,你的举报已提交。" @@ -7864,28 +8466,28 @@ msgstr "谢谢,你已成功验证电子邮箱地址,现在你可以关闭此 msgid "That contains the following:" msgstr "其中包含以下内容:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "此账户代码已被占用。" - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "找不到那个新手包。" +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "该用户名已被占用" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "就这些,完毕!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "就这些了!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "取消屏蔽后,该账户将重新能够与你互动。" @@ -7900,7 +8502,7 @@ msgstr "应用将会重新启动" msgid "The author of this thread has hidden this reply." msgstr "这条讨论串的发布者隐藏了这则回复。" -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Bluesky 网页客户端" @@ -7920,10 +8522,6 @@ msgstr "“Discover”动态源" msgid "The Discover feed now knows what you like" msgstr "现在“Discover”动态源了解你的喜好内容了" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "你输入的电子邮件地址与你当前使用的相同。" - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "使用 App 的体验会更好。现在下载 Bluesky,我们将从你离开的的地方继续。" @@ -7944,8 +8542,16 @@ msgstr "以下标记已应用到你发布的内容。" msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." msgstr "在发布新帖文时,以下设置将被用作默认值。你可以通过帖文编辑器针对特定帖文编辑这些设置。" -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "你所在地的相关法律要求验证你已成年,才能使用 Bluesky 上的部分功能,例如显示成人内容及对话功能。" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "你所在地的相关法律要求需要验证你已成年后,才能使用 Bluesky 上的部分功能。点击以了解详情。" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "这则帖文可能已被删除。" @@ -7953,9 +8559,10 @@ msgstr "这则帖文可能已被删除。" msgid "The Privacy Policy has been moved to <0/>" msgstr "隐私政策已移动到 <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "选择的视频大小超过 100 MB。" +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "你所选择的视频体积大于 100 MB,请选择其他较小的视频文件。" #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "服务条款已移动到" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "你提供的验证码无效。请检查你使用的验证链接是否正确,或重试请求新验证链接。" -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "主题" @@ -7990,14 +8597,14 @@ msgstr "主题" msgid "There is no time limit for account deactivation, come back any time." msgstr "停用账户没有时间限制,你可以随时决定重新回来。" -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "连接 Tenor 时出现问题。" #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "连接服务器时出现问题" @@ -8006,17 +8613,12 @@ msgstr "连接服务器时出现问题" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "连接至服务器时出现问题。请检查网络连接并重试。" -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "连接服务器时出现问题" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "刷新通知时出现问题,点击重试。" -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "刷新帖文时出现问题,点击重试。" @@ -8037,7 +8639,7 @@ msgstr "刷新列表时出现问题,点击重试。" msgid "There was an issue fetching your service info" msgstr "获取你的服务信息时出现问题" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "更新动态源时出现问题。请检查网络连接并重试。" @@ -8052,9 +8654,9 @@ msgstr "提交举报时出现问题。请检查网络连接。" msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "更新动态源时出现问题。请检查网络连接并重试。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "更新动态源时出现问题。请检查网络连接并重试。" msgid "There was an issue! {0}" msgstr "出现问题了!{0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "出现问题了!{0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "出现问题了。请检查网络连接并重试。" -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "应用发生意外错误,请联系我们进行错误反馈!" @@ -8089,7 +8691,7 @@ msgstr "应用发生意外错误,请联系我们进行错误反馈!" msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Bluesky 目前迎来了大量新用户!我们将尽快启用你的账户。" -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "这些偏好设置只适用于“Following”动态源。" @@ -8146,7 +8748,7 @@ msgstr "该内容由 {0} 托管。要启用外部媒体吗?" msgid "This content is not available because one of the users involved has blocked the other." msgstr "由于有用户被另一个用户屏蔽,导致无法查看该内容。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "该内容需要登录 Bluesky 账户方可查看。" @@ -8158,6 +8760,10 @@ msgstr "此对话的参与者已停用或删除账户,点击以获取更多详 msgid "This email is already associated with your account." msgstr "此电子邮箱已与你的账户关联。" +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "此功能可让其他用户在你发布新帖或回复时收到提醒,你希望允许谁接收你的动态提醒?" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "该功能正在测试。你可以在<0>这篇博客文章中获得关于导出数据的更多详情。" @@ -8170,7 +8776,7 @@ msgstr "该功能在使用应用密码登录时不可用,请改用你的主密 msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "该功能在使用应用密码登录时不可用。请改用你的主密码登录。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "目前此动态源的使用人数较多,服务暂时不可用。请稍后再试。" @@ -8209,11 +8815,11 @@ msgstr "此标签是由该发布者标记的。" msgid "This label was applied by you." msgstr "此标签是你标记的。" -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "此标记者尚未公开他发布的标记类型,也可能不再提供服务。" -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "这条链接将带你前往以下网站:" @@ -8233,29 +8839,28 @@ msgstr "此列表为空。" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "该内容审核提供服务不可用,请查看下方获取更多详情。如果问题持续存在,请联系我们。" -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "这则帖文声称发布于 <0>{0},但首次出现在 Bluesky 的时间为 <1>{1}。" -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "此帖文存在未知的内容类型,你的应用版本可能已过时。" -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "这则帖文已被删除。" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "这则帖文只对已登录用户可见。未登录的用户将无法看到。" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "这则帖文仅对已登录用户可见。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "这则帖文将从动态源和讨论串中隐藏。注意:此操作无法撤消。" -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "这则帖文的发布者已停用引用帖文。" @@ -8263,11 +8868,11 @@ msgstr "这则帖文的发布者已停用引用帖文。" msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "此个人资料只对已登录用户可见,未登录的用户将无法看到。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "这则回复将被折叠到你讨论串底部的隐藏部分,并且会对你自己和其他人隐藏后续回复的通知。" -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "该服务没有提供服务条款或隐私政策。" @@ -8275,6 +8880,10 @@ msgstr "该服务没有提供服务条款或隐私政策。" msgid "This should create a domain record at:" msgstr "这应该在以下位置创建一个域名记录:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "这应该只需要几分钟。" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "此用户没有设置名称,因此无法授予认证。" @@ -8316,16 +8925,18 @@ msgstr "该账户目前没有关注任何人。" msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "这将从你的隐藏字词中删除“{0}”。你随时可以将其重新添加回来。" -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "这将从你的快速访问中移除 @{0}。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "你的帖文将从这则引用中删除,并替换为一个占位符。" -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "讨论串选项" @@ -8334,24 +8945,27 @@ msgstr "讨论串选项" msgid "Thread preferences" msgstr "讨论串偏好设置" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "讨论串偏好设置" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "树形视图" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "树形显示模式" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "讨论串偏好设置" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "剩余时间:{0, plural, one {# 秒} other {# 秒}}" @@ -8376,42 +8990,56 @@ msgstr "你想将向谁提交这份举报?" msgid "Today" msgstr "今天" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "切换下拉式菜单" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "切换以启用或停用成人内容" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "切换音量状态" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "热门" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "热门回复优先" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "话题" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "翻译" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "树形视图" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "热门" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "热门视频" @@ -8428,14 +9056,10 @@ msgstr "重试" msgid "TV" msgstr "电视节目" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "两步验证(2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "输入你想使用的用户名" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "请在这里输入消息" @@ -8453,7 +9077,7 @@ msgstr "无法连接到服务器。请检查网络连接并重试。" #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "无法连接到服务,请检查网络连接。" msgid "Unable to delete" msgstr "无法删除" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "回滚提交变更" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "回滚提交变更 {currentChannel}" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "目前无法使用" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "动态源信息不可用" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "取消屏蔽" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "取消屏蔽" @@ -8486,7 +9126,7 @@ msgstr "取消屏蔽" msgid "Unblock account" msgstr "取消屏蔽账户" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "要取消屏蔽账户吗?" @@ -8495,13 +9135,13 @@ msgstr "要取消屏蔽账户吗?" msgid "Unblock list" msgstr "取消屏蔽列表" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "取消转发" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "取消转发({0, plural, one {# 次转发} other {# 次转发}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "取消关注" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "取消关注 {0}" @@ -8523,7 +9163,7 @@ msgstr "取消关注账户" msgid "Unfollows the user" msgstr "取消关注用户" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "抱歉,你订阅的标记者不支持此举报类型。" @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "取消喜欢" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "取消喜欢({0, plural, one {# 次喜欢} other {# 次喜欢}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "取消隐藏" @@ -8555,8 +9195,8 @@ msgstr "取消隐藏" msgid "Unmute {tag}" msgstr "取消隐藏 {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "取消隐藏对话" msgid "Unmute list" msgstr "取消隐藏列表" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "取消隐藏讨论串" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "取消隐藏视频" @@ -8597,8 +9237,8 @@ msgstr "取消固定动态源" msgid "Unpin from home" msgstr "从主页取消固定" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "从个人资料取消固定" @@ -8614,8 +9254,8 @@ msgstr "从主页取消固定 {0}" msgid "Unpinned from your feeds" msgstr "已从你的动态源中取消固定" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "取消暂停邮件提醒" @@ -8636,7 +9276,7 @@ msgstr "取消订阅此标记者" msgid "Unsubscribed from list" msgstr "已从列表中取消订阅" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "不支持的视频格式" @@ -8662,8 +9302,8 @@ msgstr "要把 <0>{displayName} 更新或删除自哪些列表?" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "更新电子邮箱" @@ -8676,17 +9316,17 @@ msgstr "更新至 {domain}" msgid "Update your email" msgstr "更新你的电子邮箱" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "更新引用关联状态失败" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "更新回复可见性失败" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "更新中……" @@ -8698,20 +9338,20 @@ msgstr "上传图片" msgid "Upload a text file to:" msgstr "将文本文件上传至:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "从相机上传" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "从文件上传" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "从照片图库上传" msgid "Uploading images..." msgstr "正在上传图片……" -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "正在上传链接缩略图……" -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "正在上传视频……" @@ -8761,6 +9401,10 @@ msgstr "使用推荐" msgid "Use this to sign in to the other app along with your handle." msgstr "使用这个和你的账户代码一起登录其他应用。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "直接使用你账户绑定的电子邮件地址,或提供一个你拥有的其他电子邮件地址,以防日后 KWS 或 Bluesky 需要与你联系。" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "使用者:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "已更新用户列表" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "用户名不能超过 {MAX_SERVICE_HANDLE_LENGTH, plural, other {# 个字符}}" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "用户名不能使用连字符(-)开头或结尾" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "用户名只能包含字母(a-z)、数字及连字符(-)" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "用户名或电子邮箱地址" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "被 <0>@{0} 关注的用户" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "正在关注 <0>@{0} 的用户" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "我关注的用户" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "“{0}”中的用户" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "你关注的用户" @@ -8846,11 +9502,11 @@ msgstr "值:" msgid "Verification failed, please try again." msgstr "无法授予认证,请重试。" -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "认证设置" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "认证设置" @@ -8870,8 +9526,15 @@ msgstr "认证人:" msgid "Verify account" msgstr "认证账户" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "重新验证" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "验证码" @@ -8880,21 +9543,20 @@ msgstr "验证码" msgid "Verify DNS Record" msgstr "验证 DNS 记录" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "验证电子邮箱" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "电子邮箱验证码" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "验证电子邮箱对话框" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "现在验证" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "验证文本文件" msgid "Verify this account?" msgstr "要对此账户授予认证吗?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "验证你的年龄" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "验证你的电子邮箱" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "验证你的电子邮箱" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "验证中" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "正在确认你的年龄验证状态" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "版本号 {appVersion}" +msgid "Version {0}" +msgstr "版本号 {0}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "视频" @@ -8928,7 +9598,7 @@ msgstr "视频" msgid "Video failed to process" msgstr "视频处理失败" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "视频动态源" @@ -8942,15 +9612,15 @@ msgstr "视频来自{0}:{text}" msgid "Video Games" msgstr "电子游戏" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "视频已暂停" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "视频正在播放" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "无法找到视频。" @@ -8958,11 +9628,11 @@ msgstr "无法找到视频。" msgid "Video settings" msgstr "视频设置" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "已上传视频" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "视频:{0}" @@ -8979,11 +9649,11 @@ msgstr "视频长度不得超过 3 分钟" msgid "View {0}'s avatar" msgstr "查看 {0} 的头像" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "查看 {0} 的个人资料" @@ -8991,7 +9661,7 @@ msgstr "查看 {0} 的个人资料" msgid "View {displayName}'s profile" msgstr "查看 {displayName} 的个人资料" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "查看该屏蔽账户的个人资料" @@ -9009,7 +9679,6 @@ msgstr "查看调试项目" msgid "View details" msgstr "查看详情" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "查看举报版权侵权的详情" @@ -9022,23 +9691,23 @@ msgstr "查看完整讨论串" msgid "View information about these labels" msgstr "查看关于此标记的详细信息" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "查看更多" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "查看个人资料" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "查看头像" @@ -9054,28 +9723,28 @@ msgstr "查看此用户的认证" msgid "View users who like this feed" msgstr "查看此动态源被谁喜欢" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "查看视频" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "查看你已屏蔽的账户" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "查看你的默认帖文互动选项" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "查看你的动态源并探索更多内容" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "查看你的内容审核列表" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "查看你隐藏的账户" @@ -9083,8 +9752,8 @@ msgstr "查看你隐藏的账户" msgid "View your verifications" msgstr "查看你的认证" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "查看完整图片" @@ -9092,16 +9761,20 @@ msgstr "查看完整图片" msgid "Views video in immersive mode" msgstr "进入沉浸模式观看视频" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "访问网站" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "访问站点" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "访问你的通知设置" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "音量" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "警告内容并从动态源中过滤" msgid "Watch now" msgstr "立即观看" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "无法连接到此提供动态源的服务,服务可能遇到问题而暂时离线,或已经不再提供服务。" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "无法找到该列表,可能已被删除。" + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "我们无法找到任何与该标签相关的结果。" @@ -9128,7 +9809,7 @@ msgstr "我们无法找到任何与该标签相关的结果。" msgid "We couldn't find any results for that topic." msgstr "我们无法找到任何与该话题相关的结果。" -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "我们目前无法加载此对话" @@ -9136,6 +9817,10 @@ msgstr "我们目前无法加载此对话" msgid "We estimate {estimatedTime} until your account is ready." msgstr "我们估计还需要 {estimatedTime} 才能完成你的账户准备。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "我们已经与 <0>KWS 合作来确认你已成年。当你按下“开始”后,KWS 会确认你是否曾经在其他使用 KWS 技术的游戏或服务使用过你的电子邮箱地址验证年龄。如果没有,KWS 会向你的电子邮箱发送一封包含年龄验证流程的邮件。当你完成验证后,你将会重新跳转回来以继续使用 Bluesky。" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "我们将发送另一封验证邮件至 <0>{0}。" @@ -9148,15 +9833,15 @@ msgstr "我们希望你在此度过愉快的时光。请记住,Bluesky 是:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "我们已经看完了所有你关注的帖文。这里是来自 <0/> 的最新帖文。" -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "我们建议至少选择两个感兴趣的主题。" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "我们将向 <0>{0} 发送一封含有链接的电子邮件,请点击邮件内容来完成电子邮箱的验证流程。" -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "我们无法确定你是否有权上传视频,请重试。" @@ -9164,10 +9849,14 @@ msgstr "我们无法确定你是否有权上传视频,请重试。" msgid "We were unable to load your birth date preferences. Please try again." msgstr "我们无法加载你的生日偏好设置,请重试。" -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "我们暂时无法记载你已配置的标记者。" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "我们因连接问题无法接收验证状态,可能需要等待一段时间。你的账户会在确认验证后自动恢复。" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "我们无法连接到网络,请重试以继续设置你的账户。若屡次出错,你可选择跳过这段流程。" @@ -9176,7 +9865,7 @@ msgstr "我们无法连接到网络,请重试以继续设置你的账户。若 msgid "We will let you know when your account is ready." msgstr "我们会在你的账户准备好时通知你。" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "我们将向 <0>{0} 发送一封含有链接的电子邮件,请点击邮件内容来完成电子邮箱的验证流程。" @@ -9184,6 +9873,22 @@ msgstr "我们将向 <0>{0} 发送一封含有链接的电子邮件,请点 msgid "We'll use this to help customize your experience." msgstr "我们将使用这些信息来帮助定制你的体验。" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "我们正在改进<0>社群准则,希望能得到你的宝贵意见!新的准则将于 2025 年 10 月 15 日生效。" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "我们正在改进社群准则,希望能得到你的宝贵意见!新的准则将于 2025 年 10 月 15 日生效。" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "我们正在与服务器连接确认你的年龄验证状态,这应该只需要几分钟。" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "我们在初始化年龄验证流程时遇到了问题,请<0>联系支持以获取帮助。" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "我们遇到了网络问题,请再试一次" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "为你介绍 Bluesky 的全新认证机制 —— 认证徽章。" -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "我们非常高兴你加入我们!" @@ -9205,15 +9910,15 @@ msgstr "很抱歉,我们无法解析此列表。如果问题持续发生,请 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "很抱歉,我们无法加载你的隐藏字词列表。请重试。" -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "很抱歉,无法完成你的搜索。请重试。" -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "很抱歉!你回复的帖文已被删除。" -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "很抱歉!我们找不到你正在寻找的页面。" @@ -9222,6 +9927,26 @@ msgstr "很抱歉!我们找不到你正在寻找的页面。" msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "很抱歉!你目前只能订阅 20 个标记者,你已达到上限。" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "我们正在更新<0>服务条款、<1>隐私政策以及<2>版权政策,自 2025 年 9 月 15 日起生效。" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "我们正在更新相关政策" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "我们正在更新服务条款、隐私政策以及版权政策,自 2025 年 9 月 15 日起生效。" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "我们正在更新我们的服务条款、隐私政策以及版权政策,自 2025 年 9 月 15 日起生效。同时我们也在改进我们的社群准则,希望能得到你的意见!新的准则将于 2025 年 10 月 15 日生效。你可以阅读我们的博客文章。了解有关这些改动的更多资讯,以及如何与我们分享你的想法。" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "我们已确认你的年龄验证状态,你现在可以关闭此对话框。" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "欢迎回来!" @@ -9240,7 +9965,7 @@ msgstr "你希望如何命名你的新手包?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "发生了什么新鲜事?" @@ -9256,11 +9981,11 @@ msgstr "这则帖文中使用了哪些语言?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "你想在动态源算法中看到哪些语言?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "哪些人可以参与这则帖文的互动?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "哪些人可以回复" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "哪些人可以获得认证?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "糟糕!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "糟糕!无法加载热门视频。" @@ -9322,12 +10047,12 @@ msgstr "为什么应该审核此用户?" msgid "Write a message" msgstr "撰写私信" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "撰写帖文" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "撰写你的回复" @@ -9358,11 +10083,11 @@ msgstr "确定停用" msgid "Yes, delete this starter pack" msgstr "确定删除此新手包" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "确定分离" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "确定隐藏" @@ -9378,6 +10103,10 @@ msgstr "昨天" msgid "You" msgstr "你" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "你也同意<0>Bluesky 社群准则,<1>一个更新版本的社群准则将于 10 月 15 日生效。" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "你是可信的认证人" @@ -9386,6 +10115,10 @@ msgstr "你是可信的认证人" msgid "You are creating an account on" msgstr "你的账户将创建在" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "你现在无法访问 Bluesky 的年龄验证流程,如果你认为这是系统误判,请<0>联系我们的支持团队。" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "你已在等待名单中。" @@ -9403,7 +10136,7 @@ msgstr "你已停止直播" msgid "You are not allowed to go live" msgstr "你没有开始直播的权限" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "你目前无法上传视频。" @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "你已获得认证" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "你已获得认证。一旦你更改名称,你将会失去认证状态。<0>了解详情。" @@ -9441,10 +10173,18 @@ msgstr "你也可以探索并关注新的自定义动态源。" msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "你也可以暂时停用你的账户,日后随时都可以重新启用。" -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "你可以自定义应用内的私信通知是否播放提示音" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "无论使用哪种设置,都不会影响已发起的对话。" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "你可以在其他人发帖时收到提醒了。如果你不希望错过其他人的最新动态,只需转到其个人首页,点击“关注”按钮旁的提醒按钮即可。" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "你现在可以使用新密码登录。" msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "你可以继续登录以重新启用你的账户,其他用户将能够重新看到你的个人资料和帖文。" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "你可以在 <0>设置 → 内容审核 → 互动选项 里调整默认互动设置。" #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "你可以随时在设置里重新更改。" @@ -9472,7 +10212,7 @@ msgstr "你还没有任何关注者。" msgid "You don't follow any users who follow @{name}." msgstr "你没有关注任何同样关注 @{name} 的用户。" -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "你目前没有任何私信请求。" @@ -9480,15 +10220,15 @@ msgstr "你目前没有任何私信请求。" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "你目前还没有邀请码!当你持续使用 Bluesky 一段时间后,我们将提供一些给你。" -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "你还没有固定的动态源。" -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "你还没有已保存的动态源。" -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "你已屏蔽该发布者,或已被该发布者屏蔽。" @@ -9502,6 +10242,10 @@ msgstr "你已屏蔽该用户" msgid "You have blocked this user. You cannot view their content." msgstr "你已屏蔽该用户,无法查看其内容。" +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "你已完全禁用了回复、引用及提及通知,因此此选项卡将不再更新。要调整此功能,请访问 <0>通知设置。" + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,9 +10270,9 @@ msgstr "你已隐藏该账户。" msgid "You have muted this user" msgstr "你已隐藏该用户" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" -msgstr "你还没有任何私信,试着与其他人展开对话吧!" +msgstr "你还没有任何对话,试着与其他人展开对话吧!" #: src/view/com/feeds/ProfileFeedgens.tsx:139 msgid "You have no feeds." @@ -9547,7 +10291,7 @@ msgstr "你还没有屏蔽任何账户。要屏蔽账户,请转到其个人资 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "你还没有隐藏任何账户。要隐藏账户,请转到其个人资料,并在账户菜单中选择“隐藏账户”。" -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "你已经浏览到末尾了" @@ -9572,6 +10316,10 @@ msgstr "你还没有隐藏任何字词或标签" msgid "You hid this reply." msgstr "你隐藏了这则回复。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "你已在 {0} 前开始此流程,电子邮件应该会在 5 分钟内发送到你的电子邮箱,请考虑稍后几分钟再试一次。" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "如果你认为任何由他人标记的信息有误,你可以随时提出申诉。" @@ -9592,7 +10340,7 @@ msgstr "你最多只能添加 3 个动态源" msgid "You may only select up to 4 images" msgstr "你最多只能选择 4 张图片" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "你必须年满 13 岁才能注册账户。" @@ -9600,6 +10348,14 @@ msgstr "你必须年满 13 岁才能注册账户。" msgid "You must be following at least seven other people to generate a starter pack." msgstr "你必须至少关注 7 个人以创建新手包。" +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "要访问此设置,你必须首先完成年龄验证。" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "要访问此页面,你必须首先完成年龄验证。" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "你必须授权访问照片图库以保存二维码" @@ -9608,6 +10364,11 @@ msgstr "你必须授权访问照片图库以保存二维码" msgid "You must select at least one labeler for a report" msgstr "你必须选择至少一个标记者来进行举报" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "你必须先登录才能查看这则帖文。" + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "你需要验证你的电子邮箱地址才能启用电子邮箱两步验证。" @@ -9616,7 +10377,7 @@ msgstr "你需要验证你的电子邮箱地址才能启用电子邮箱两步验 msgid "You previously deactivated @{0}." msgstr "你之前停用了 @{0}。" -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "你可能需要重启应用程序。" @@ -9628,16 +10389,20 @@ msgstr "你作出了 {0} 反应" msgid "You reacted {0} to {1}" msgstr "你对 {1} 作出了 {0} 反应" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "你将登出所有账户。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "你将不再收到 {0} 的动态提醒" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "你将不再收到这条讨论串的通知" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "你将收到这条讨论串的通知" @@ -9657,11 +10422,11 @@ msgstr "你:{defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "你:{short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "当你完成创建账户后,你将自动关注建议的用户和动态源!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "当你完成创建账户后,你将自动关注建议的用户!" @@ -9673,9 +10438,9 @@ msgstr "你将关注这些用户以及其他 {0} 位" msgid "You'll follow these people right away" msgstr "你将立即关注这些人" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "你将在 <0>{0} 收到一封电子邮件,以验证你的身份。" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "你将开始收到 {0} 的动态提醒!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "你选择隐藏了这则帖文中的字词或标签。" msgid "You've found some people to follow" msgstr "你发现了一些可以关注的人" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "你已到达内容的结尾。" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "你已经浏览完动态源的所有帖文啦!寻找一些更多的账户关注吧。" @@ -9711,19 +10480,23 @@ msgstr "你已经浏览完动态源的所有帖文啦!寻找一些更多的账 msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "你已达到请求上限,请稍后再试。" -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "你已到达内容的开头。" + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "你已达到每日上传视频上限(文件太大)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "你已达到每日上传视频上限(数量太多)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "你已经看完了所有视频,或许是时候休息一下?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "你的账户" @@ -9735,7 +10508,7 @@ msgstr "你的账户已删除" msgid "Your account has been suspended" msgstr "你的账户已停用" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "你的账户注册时间过短,暂时无法上传视频。请稍后再试。" @@ -9751,11 +10524,11 @@ msgstr "你的账户被判定违反了<0>Bluesky 服务条款。你应该已 msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "已提交申诉。如果申诉成功,我们会通过电子邮件通知你。" -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "你的生日" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "你的浏览器不支持此视频格式,请试试其他浏览器。" @@ -9771,13 +10544,15 @@ msgstr "你的选择将会应用于今后开启的链接,你可以随时在设 msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "你当前使用的账户代码 <0>{0} 将自动预留给你,以便你能够在日后随时切换回来。" -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "你的电子邮箱地址已更新但尚未验证。接下来,请验证你的新电子邮箱地址。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "你的电子邮件" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "你的电子邮箱似乎无效。" @@ -9786,15 +10561,11 @@ msgstr "你的电子邮箱似乎无效。" msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "你的电子邮箱尚未验证,请验证你的电子邮箱以便继续使用 Bluesky 的所有功能。" -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "你的电子邮箱尚未验证。这是一个重要的安全措施,我们建议你完成验证。" - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "你的第一次喜欢!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "你的关注者" @@ -9806,19 +10577,15 @@ msgstr "你的“Following”动态源看起来空荡荡的。快去关注更多 msgid "Your full handle will be <0>@{0}" msgstr "你的完整账户代码将修改为 <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "你的完整用户名将是 <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "你的兴趣" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "已更新你的兴趣!" @@ -9835,15 +10602,15 @@ msgstr "你的隐藏字词" msgid "Your password has been changed successfully!" msgstr "已成功更改你的密码!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "你输入的密码应至少包含 8 个字符。" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "已发布你的帖文" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "已发布你的帖文" @@ -9851,15 +10618,19 @@ msgstr "已发布你的帖文" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "你发布的帖文、喜欢的内容和屏蔽列表都是公开可见的,而隐藏列表仅对你自己可见。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "你的主要语言" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "其他 Bluesky 用户将无法看到你的个人资料、帖文、列表与其他相关个人信息。你可以随时登录以重新启用你的账户。" -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "你的回复已发布" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "你的举报信息将提交给 <0>{0}。" @@ -9867,7 +10638,7 @@ msgstr "你的举报信息将提交给 <0>{0}。" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "你的举报将发送至 Bluesky 内容审核服务" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "你选择的兴趣可帮助我们提供你所关心的内容。" diff --git a/src/locale/locales/zh-HK/messages.po b/src/locale/locales/zh-HK/messages.po index ce1e5950ec..1f0374cf90 100644 --- a/src/locale/locales/zh-HK/messages.po +++ b/src/locale/locales/zh-HK/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: zh\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 01:46\n" "Last-Translator: \n" "Language-Team: Chinese Traditional, Hong Kong\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -27,7 +27,7 @@ msgstr "(活躍)" msgid "(contains embedded content)" msgstr "(包含嵌入內容)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(冇電郵)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# 次轉發} other {# 次轉發}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# 秒鐘} other {# 秒鐘}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# 條未讀} other {# 條未讀}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {# 條未讀} other {# 條未讀}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {# 個月} other {# 個月}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {擁躉} other {擁躉}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {跟緊} other {跟緊}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {讚佢} other {讚佢}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {讚佢} other {讚佢}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {帖文} other {帖文}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {引用} other {引用}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {轉發} other {轉發}}" @@ -135,6 +138,10 @@ msgstr "{0} <0> - <1>標籤" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0> - <1>文字同標籤" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} 個跟緊" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "{0} 直播緊" @@ -143,11 +150,15 @@ msgstr "{0} 直播緊" msgid "{0} is not a valid URL" msgstr "{0} 唔係一個有效嘅 URL" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "{0} 用唔到" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "呢個禮拜有 {0} 人加入" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "第 {0} 個(共 {1} 個)" @@ -164,8 +175,16 @@ msgstr "{0} 畀咗個 {1} 反應" msgid "{0} reacted {1} to {2}" msgstr "{0} 對 {2} 畀咗個 {1} 反應" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0},嚟自 {1} 嘅動態源,{2} 讚過佢" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0},嚟自 {1} 清單" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "{0} 嘅頭像" @@ -197,12 +216,12 @@ msgstr "{0} 分鐘前" msgid "{0}s" msgstr "{0} 秒鐘前" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# 條未讀} other {# 條未讀}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "{displayName}嘅新手包" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {個鐘} other {個鐘}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {分鐘} other {分鐘}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} 同<0>{additionalAuthorsCount, plural, one {另外 {formattedAuthorsCount} 個人} other {另外 {formattedAuthorsCount} 個人}}跟咗你" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} 同<0>{additionalAuthorsCount, plural, one {另外 {formattedAuthorsCount} 個人} other {另外 {formattedAuthorsCount} 個人}}讚咗你嘅自訂動態源" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} 同<0>{additionalAuthorsCount, plural, one {另外 {formattedAuthorsCount} 個人} other {另外 {formattedAuthorsCount} 個人}}讚咗你嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} 同<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}讚咗你轉發嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} 同<0>{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}撤回咗你帳號嘅驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} 同<0>{additionalAuthorsCount, plural, one {另外 {formattedAuthorsCount} 個人} other {另外 {formattedAuthorsCount} 個人}}轉發咗你嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} 同<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}轉發咗你轉發嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} 同<0>{additionalAuthorsCount, plural, one {另外 {formattedAuthorsCount} 個人} other {另外 {formattedAuthorsCount} 個人}}用咗你嘅新手包註冊" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} 同<0>{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}授予咗你驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} 跟咗你" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} 跟返你" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} 讚咗你嘅自訂動態源" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} 讚咗你嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} 讚咗你轉發嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} 撤回咗你帳號嘅驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} 轉發咗你嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} 轉發咗你轉發嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} 用咗你嘅新手包註冊" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} 授予咗你驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} 同{additionalAuthorsCount, plural, one {另外 {formattedAuthorsCount} 人} other {另外 {formattedAuthorsCount} 人}}跟咗你" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} 同{additionalAuthorsCount, plural, one {另外 {formattedAuthorsCount} 個人} other {另外 {formattedAuthorsCount} 個人}}讚咗你嘅自訂動態源" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} 同{additionalAuthorsCount, plural, one {另外 {formattedAuthorsCount} 個人} other {另外 {formattedAuthorsCount} 個人}}讚咗你嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} 同{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}讚咗你轉發嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} 同{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}撤回咗你帳號嘅驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} 同{additionalAuthorsCount, plural, one {另外 {formattedAuthorsCount} 個人} other {另外 {formattedAuthorsCount} 個人}}轉發咗你嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} 同{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}轉發咗你轉發嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} 同{additionalAuthorsCount, plural, one {另外 {formattedAuthorsCount} 個人} other {另外 {formattedAuthorsCount} 個人}}用咗你嘅新手包註冊" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} 同{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}授予咗你驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} 跟咗你" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} 跟返你" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} 讚咗你嘅自訂動態源" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} 讚咗你嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} 讚咗你轉發嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} 撤回咗你帳號嘅驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} 轉發咗你嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} 轉發咗你轉發嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} 用咗你嘅新手包註冊" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} 授權咗你驗證" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} 個跟緊" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "唔得同 {handle} 傳送訊息" @@ -392,7 +410,7 @@ msgstr "{joinedAllTimeCount, plural, other {# 個用戶}}已加入!" msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "{minutes, plural, other {# 分鐘}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# 條未讀} other {# 條未讀}}" @@ -432,12 +450,12 @@ msgstr "{userName} 嘅驗證" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}、<1>{1} 同{2, plural, one {另外 # } other {另外 # }}人經已喺你嘅新手包度" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}、<1>{1} 同{2, plural, one {另外 # } other {另外 # }}人經已喺你嘅新手包度" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {個擁躉} other {個擁躉}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {個跟緊} other {個跟緊}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} 同<1> <2>{1} 經已喺你嘅新手包度" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} 經已喺你嘅新手包度" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} 嘅成員" @@ -466,11 +484,11 @@ msgstr "<0>{0} 嘅成員" msgid "<0>{date} at {time}" msgstr "<0>{date} {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>實驗性選項:啓用呢個設定之後,你淨係會收到你跟咗嘅用戶啲回覆同引用通知。我哋會喺未來逐步增加更多控制選項。" +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<0>登入<1>或<2>建立帳號<3><4>就可以搵到新聞、體育、政治,同埋 Bluesky 上面嘅大小事。" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>你 同<1> <2>{0} 經已喺你嘅新手包度" @@ -503,10 +521,14 @@ msgstr "一條訊息" msgid "A new form of verification" msgstr "全新嘅驗證機制" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "一張個人檔案頁面嘅截圖,「跟佢」掣隔籬有隻鐘仔圖標,用於介紹全新嘅動態通知功能。" + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "關於" @@ -524,25 +546,25 @@ msgstr "接受傾偈邀請" msgid "Accept Request" msgstr "接受邀請" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "無障礙" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "無障礙設定" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "帳號" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "帳號經已跟" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "帳號經已靜音" msgid "Account Muted by List" msgstr "帳號經已被清單靜音" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "帳號設定" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "帳號經已喺快速存取度移除" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "帳號經已唔再跟" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "帳號經已唔再靜音" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "帶有圓齒藍色剔號嘅帳號<0><1/>可以授權驗證其他帳號。呢啲受信任嘅驗證者係由 Bluesky 官方所揀。" +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "其他人嘅動態" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "動態通知" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "新增" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "加多至少 {0} 個繼續" @@ -634,8 +666,8 @@ msgstr "新增帳號" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "新增替代文字" msgid "Add alt text (optional)" msgstr "新增替代文字(可選)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "加多個帳號" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "加多另一條帖文" @@ -670,8 +702,8 @@ msgstr "新增 App 專用密碼" msgid "Add emoji reaction" msgstr "加入 Emoji 反應" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "補充更多資料(可選)" @@ -683,7 +715,7 @@ msgstr "以所選設定新增靜音字詞" msgid "Add muted words and tags" msgstr "新增靜音文字同標籤" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "新開帖文" @@ -704,7 +736,7 @@ msgstr "加入反應" msgid "Add recommended feeds" msgstr "加入推薦嘅動態源" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "加啲動態源落你個新手包度!" @@ -725,10 +757,6 @@ msgstr "將佢加入到你嘅動態源" msgid "Add to lists" msgstr "加到清單" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "加入到我嘅動態源" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "加入用戶到清單" @@ -738,30 +766,30 @@ msgstr "加入用戶到清單" msgid "Added to list" msgstr "經已加入到清單" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "加入到我嘅動態源" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "補充資訊(1000 個字元以內)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" -msgstr "補充說明(300 個字元內)" +msgstr "補充資訊(300 個字元以內)" #: src/view/com/composer/labels/LabelsBtn.tsx:159 msgid "Adult" msgstr "色情" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "成人內容" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "淨係可以喺網頁版 (<0>bsky.app) 啓用成人內容顯示。" -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "成人內容經已停用。" @@ -770,16 +798,32 @@ msgstr "成人內容經已停用。" msgid "Adult Content labels" msgstr "成人內容標記" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "進階設定" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "年齡驗證" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "提交唔到年齡驗證資訊,唔該試多次。" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "年齡驗證資訊經已提交" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "淨係用幾分鐘就攪掂年齡認證" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "alice@example.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "所有" @@ -793,7 +837,7 @@ msgstr "你經已跟晒所有帳號喇!" msgid "All languages" msgstr "所有語言" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "下低係你儲存咗嘅動態源。" @@ -802,16 +846,21 @@ msgstr "下低係你儲存咗嘅動態源。" msgid "Allow access to your direct messages" msgstr "允許取用你嘅私人訊息" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "允許呢啲人同你傾偈" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "允許其他人喺你出新帖嗰陣收到通知" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "允許引用帖文" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "允許呢啲人回覆你嘅帖文:" @@ -828,13 +877,13 @@ msgstr "有咗重設碼?" msgid "Already signed in as @{0}" msgstr "用咗 @{0} 身分登入" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "替代文字" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "替代文字" msgid "Alt text" msgstr "替代文字" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "替代文字" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "加入替代文字會幫盲人同視障人士講述圖片內容,同埋幫助每個人提供更多資料。" @@ -861,41 +910,33 @@ msgstr "替代文字超出部分會斬斷,{MAX_ALT_TEXT, plural, other {限制 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "電郵送咗去 {0} 度。你可以抄低郵件度個驗證碼跟住喺下低用咗佢。" -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "一封電郵送咗去你之前嘅地址 {currentEmail} 度。封電郵入邊有個驗證碼可以喺下低輸入返佢。" - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "電郵經已送出!請你抄低郵件度個驗證碼跟住喺下低用咗佢。" - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "發生錯誤" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "發生錯誤" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "壓縮影片嗰陣發生錯誤。" -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "攞緊動態源嗰陣出咗錯誤。" #: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "An error occurred while generating your starter pack. Want to try again?" -msgstr "幫手砌緊你嘅新手包嗰陣發生錯誤。使唔使試多一次?" +msgstr "幫手砌緊你嘅新手包嗰陣發生錯誤。使唔使試多次?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." -msgstr "撈緊影片嗰陣發生錯誤。唔該遲啲試多一次。" +msgstr "撈緊影片嗰陣發生錯誤。唔該遲啲試多次。" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." -msgstr "撈緊影片嗰陣發生錯誤。唔該試多一次。" +msgstr "撈緊影片嗰陣發生錯誤。唔該試多次。" #: src/components/StarterPack/QrCodeDialog.tsx:72 msgid "An error occurred while saving the QR code!" @@ -910,7 +951,7 @@ msgstr "揀緊條片嗰陣發生錯誤" msgid "An error occurred while trying to follow all" msgstr "試緊跟晒所有帳號嗰陣發生錯誤" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "上載影片嗰陣發生錯誤。" @@ -934,12 +975,12 @@ msgstr "開啓傾偈嗰陣出咗問題" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." -msgstr "出咗問題,唔該試多一次。" +msgstr "出咗問題,唔該試多次。" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118 msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name." @@ -954,7 +995,7 @@ msgstr "發生未知錯誤" msgid "an unknown labeler" msgstr "未知嘅標記服務" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "同" @@ -963,10 +1004,14 @@ msgstr "同" msgid "Animals" msgstr "動物" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "GIF 動畫" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "公告" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "同你介紹 Bluesky 上嘅認證機制" @@ -980,7 +1025,13 @@ msgstr "反社會行爲" msgid "Anybody can interact" msgstr "所有人都可以參與互動" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "跟我嘅人" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1012,12 +1063,12 @@ msgstr "App 嘅密碼淨係用得字母、數字、空格、連字號(-)、 msgid "App password names must be at least 4 characters long" msgstr "App 專用密碼嘅名稱必須至少有4個字元" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "App 專用密碼" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "App 專用密碼" @@ -1053,10 +1104,10 @@ msgstr "申請解除停權" msgid "Appeal this decision" msgstr "對此決定提出申訴" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "外觀" @@ -1065,12 +1116,20 @@ msgstr "外觀" msgid "Apply default recommended feeds" msgstr "使用預設嘅推薦動態源" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "套用 Pull Request" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "封存於 {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "封存咗嘅帖文" @@ -1078,7 +1137,7 @@ msgstr "封存咗嘅帖文" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "你確定要刪咗呢個 App 專用密碼「{0}」?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "你確定要刪咗呢條訊息?呢條訊息會喺你嗰邊刪除,但係其他參與者仲係睇到。" @@ -1098,19 +1157,15 @@ msgstr "你確定要離開呢個對話?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "你確定要離開呢個對話?你嘅訊息會喺你嗰邊刪除,但係其他參與者仲係睇到。" -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "你確定要喺你嘅動態源度刪除 {0}?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "你確定要喺你嘅動態源度刪除呢個?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "你確定要棄置呢份草稿?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "你確定要放棄發布呢條帖文?" @@ -1131,29 +1186,26 @@ msgstr "藝術" msgid "Artistic or non-erotic nudity." msgstr "藝術或非情色嘅裸體。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "爲演算法指定主題" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "至少 3 個字元" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "極光" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "自動播放選項擺咗去<0>內容同媒體設定。" - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "自動播放影片同 GIF" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "用到" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "自動播放影片同 GIF" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "返去" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "返去傾偈" @@ -1195,28 +1247,44 @@ msgstr "喺建立新手包之前,你必須驗證你嘅電郵先。" msgid "Before you can accept this chat request, you must first verify your email." msgstr "喺你接受呢個傾偈邀請之前,你必須驗證你嘅電郵先。" +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "喺你接收 {name} 帖文通知之前,你必須驗證你嘅電郵。" + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "喺你傳送訊息畀其他人之前,你必須驗證你嘅電郵先。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "開始" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "開始年齡驗證流程" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "請填寫下低欄位,以開始年齡驗證流程。" + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "生日" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "封鎖" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "封鎖" msgid "Block account" msgstr "封鎖帳號" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "封鎖帳號?" @@ -1262,20 +1330,20 @@ msgstr "封鎖用戶" msgid "Block User" msgstr "封鎖用戶" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "已被封鎖" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "封鎖咗嘅帳號" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "封鎖咗嘅帳號" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "封鎖咗嘅帳號唔得喺你嘅討論串度回覆、提及你或用其他方式同你互動。" @@ -1284,11 +1352,11 @@ msgstr "封鎖咗嘅帳號唔得喺你嘅討論串度回覆、提及你或用其 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "封鎖咗嘅帳號唔得喺你嘅討論串度回覆、提及你或用其他方式同你互動。你唔會睇到佢哋嘅內容,而且佢哋會都被阻止睇到你嘅內容。" -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "封鎖咗嘅帖文。" -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "封鎖唔會阻止呢個用戶標記你嘅帳號。" @@ -1309,11 +1377,12 @@ msgstr "網誌" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky 無法確認貼文發布日期嘅真實性。" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1341,12 +1410,20 @@ msgstr "Bluesky 將會喺你社交網絡度揀一啲推薦嘅帳號。" #: src/screens/Settings/components/PwiOptOut.tsx:99 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." -msgstr "Bluesky 官方平臺唔會向未登入嘅用戶顯示你嘅個人檔案同帖文,但其他 Apps 未必會聽 Bluesky 支笛。佢哋唔會令你嘅帳號成爲非公開狀態。" +msgstr "Bluesky 官方平臺唔會向未登入嘅用戶顯示你嘅個人檔案同帖文,但其他 App 未必會聽 Bluesky 支笛。佢哋唔會令你嘅帳號成爲非公開狀態。" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky 官方會主動幫一啲出名同眞實嘅帳號授權驗證。" +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "Bluesky 嘅社羣守則" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "Bluesky 嘅社羣守則更新" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "模糊圖片同埋喺動態源度篩選" msgid "Books" msgstr "書" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "喺探索頁面瀏覽更多帳號" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "喺探索頁面瀏覽更多動態源" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "瀏覽更多建議" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "喺探索頁面瀏覽更多建議" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "商業" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "嚟自 {0}" @@ -1428,15 +1502,23 @@ msgstr "嚟自 {0}" msgid "By <0>{0}" msgstr "嚟自 <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "撳「繼續」當你瞭解兼同意呢啲更新。" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "繼續就代表你同意<0>KWS 服務條款,兼瞭解 KWS 將會根據<1>KWS 私隱政策儲存你嘅驗證狀態同埋經過雜湊處理嘅電郵地址。亦即係話,你下次再用呢個電郵地址登入其他由 KWS 技術支援嘅 App、遊戲同服務嗰陣,就唔使再驗證喇。" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "建立帳號即係表示你同意<0>私隱政策。" -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "建立帳號即係表示你同意<0>服務條款同<1>私隱政策。" -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "建立帳號即係表示你同意<0>服務條款。" @@ -1448,14 +1530,17 @@ msgstr "你所建立" msgid "Camera" msgstr "相機" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "相機" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "咪喇" @@ -1500,11 +1582,7 @@ msgstr "唔再刪除帳號" msgid "Cancel image crop" msgstr "唔再裁剪圖片" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "唔再編輯個人檔案" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "唔再引用帖文" @@ -1516,14 +1594,10 @@ msgstr "取消重新啓動兼登出" msgid "Cancel search" msgstr "唔再搵嘢" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "唔再打開網站連結" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "唔得同封鎖咗嘅用戶互動" @@ -1553,17 +1627,12 @@ msgstr "將 App 圖標改成「{0}」" msgid "Change app language" msgstr "變更 App 語言" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "變更電郵" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "變更帳號代碼" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "切換內容審覈服務" @@ -1579,14 +1648,6 @@ msgstr "將帖文語言改成 {suggestedLanguageName}" msgid "Change report reason" msgstr "變更擧報理由" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "變更你嘅電郵" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "變更你嘅電郵地址" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "變更 App 圖標" @@ -1596,10 +1657,15 @@ msgstr "變更 App 圖標" msgid "Changes hosting provider" msgstr "變更託管服務提供者" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "變更經已儲存" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "傾偈" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "傾偈經已刪除" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "傾偈訊息 - 靜音" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "傾偈訊息 - 聲音" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "傾偈經已靜音" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "傾偈請求收件箱" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "傾偈邀請" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "傾偈設定" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "傾偈設定" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "傾偈經已唔再靜音" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "傾偈" @@ -1661,7 +1738,7 @@ msgstr "喺下低輸入傳送到你電郵嘅驗證碼:" msgid "Choose domain verification method" msgstr "揀選網域驗證方法" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "揀選動態源" @@ -1669,7 +1746,7 @@ msgstr "揀選動態源" msgid "Choose for me" msgstr "幫我揀" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "揀人" @@ -1685,23 +1762,23 @@ msgstr "用呢隻色做你嘅頭像背景" msgid "Choose your account provider" msgstr "揀選你嘅服務提供者" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." msgstr "自訂你自己嘅時間軸!社羣建立嘅動態源會幫你搵到啱心水嘅內容。" -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "設定你嘅密碼" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "設定你嘅用戶名" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "剷走所有儲存資料" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "剷走所有儲存資料(跟住重啓)" @@ -1714,23 +1791,27 @@ msgstr "剷走圖片快取" msgid "Clear search query" msgstr "剷走你啲搵嘢記錄" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "撳低去瞭解詳細資訊" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "撳呢度" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "撳呢度重新開始驗證流程。" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "撳呢度更新你嘅電郵" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "撳低去唔畀其他人引用呢條帖文。" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "撳低去畀返人引用呢條帖文。" @@ -1740,7 +1821,7 @@ msgstr "撳低去打開 {tag} 嘅標籤選單" #: src/components/dms/MessageItem.tsx:317 msgid "Click to retry failed message" -msgstr "撳低去試多一次傳送訊息" +msgstr "撳低去試多次傳送訊息" #: src/screens/Onboarding/index.tsx:32 msgid "Climate" @@ -1750,14 +1831,16 @@ msgstr "氣候" msgid "Clip 🐴 clop 🐴" msgstr "Clip 🐴 clop 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "Clip 🐴 clop 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "閂" @@ -1789,13 +1876,15 @@ msgstr "閂咗警示" msgid "Close bottom drawer" msgstr "閂咗下低櫃桶" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "閂咗對話框" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "閂櫃桶選單" @@ -1804,7 +1893,7 @@ msgstr "閂櫃桶選單" msgid "Close emoji picker" msgstr "閂咗 Emoji 選擇器" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "閂咗 GIF 對話框" @@ -1822,7 +1911,7 @@ msgstr "閂咗圖片檢視器" msgid "Close menu" msgstr "閂咗選單" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "閂呢個對話框" @@ -1830,7 +1919,7 @@ msgstr "閂呢個對話框" msgid "Closes password update alert" msgstr "閂咗密碼更新警示" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "閂咗帖文編輯器兼棄置草稿" @@ -1843,16 +1932,16 @@ msgstr "閂咗 Emoji 選擇器" msgid "Closes viewer for header image" msgstr "閂咗標題圖片嘅檢視器" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "摺疊用戶清單" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" -msgstr "摺疊特定通知嘅使用者清單" +msgstr "摺疊特定通知嘅用戶清單" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "顏色模式" @@ -1870,7 +1959,8 @@ msgstr "喜劇" msgid "Comics" msgstr "漫畫" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "社羣守則" @@ -1879,38 +1969,34 @@ msgstr "社羣守則" msgid "Complete onboarding and start using your account" msgstr "攪掂入門指導跟住開始使用你嘅帳號" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "完成呢個挑戰" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" -msgstr "寫新帖文" +msgstr "撰寫新帖文" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "撰寫最多 {0, plural,other {# 個字元}}嘅帖文" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "撰寫回覆" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "壓縮緊條片……" -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "設定 {name} 類別嘅內容篩選" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "經已喺 <0>內容審覈設定 度設定。" -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "確認內容語言設定" msgid "Confirm delete account" msgstr "確認刪除帳號" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "確認你嘅年齡:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "確認你嘅出世日期" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "確認你嘅出世日期" msgid "Confirmation code" msgstr "驗證碼" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "驗證碼" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "連緊線……" -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "連線問題" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "聯絡我哋嘅支援團隊" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "聯絡支援" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "聯絡我哋" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "內容同媒體" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "內容同媒體" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "內容同媒體" @@ -1977,7 +2069,8 @@ msgstr "內容同媒體" msgid "Content Blocked" msgstr "封鎖咗嘅內容" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "內容篩選器" @@ -1993,7 +2086,7 @@ msgstr "內容語言" #: src/components/moderation/ModerationDetailsDialog.tsx:82 #: src/lib/moderation/useModerationCauseDescription.ts:82 msgid "Content Not Available" -msgstr "內容冇得用" +msgstr "睇唔到呢個內容" #: src/components/moderation/ModerationDetailsDialog.tsx:50 #: src/components/moderation/ScreenHider.tsx:93 @@ -2006,10 +2099,12 @@ msgstr "內容警告" msgid "Content warnings" msgstr "內容警告" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "內容選單背景,撳低去閂咗選單。" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "繼續" msgid "Continue as {0} (currently signed in)" msgstr "用 {0} 繼續 (目前已登入)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "繼續撈啲討論串" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "繼續撈啲討論串……" @@ -2029,6 +2129,10 @@ msgstr "繼續撈啲討論串……" msgid "Continue to next step" msgstr "繼續去下一步" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "對話" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "複製咗喇" msgid "Copied build version to clipboard" msgstr "複製咗組建版本去剪貼簿喇" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "複製構建版本去剪貼簿" msgid "Copy" msgstr "複製" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "點都要複製" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "複製 App 專用密碼" @@ -2087,8 +2187,8 @@ msgstr "複製 App 專用密碼" msgid "Copy at:// URI" msgstr "複製 at:// 連結" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "複製發布者 DID" @@ -2120,10 +2220,10 @@ msgstr "複製連結" msgid "Copy link to list" msgstr "複製清單連結" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "複製貼文連結" @@ -2136,18 +2236,18 @@ msgstr "複製個人檔案連結" msgid "Copy link to starter pack" msgstr "複製新手包連結" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "複製訊息文字" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "複製貼文 at:// 連結" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "複製帖文文字" @@ -2159,15 +2259,29 @@ msgstr "複製 QR Code" msgid "Copy TXT record value" msgstr "複製 TXT 記錄值" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "版權政策" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "連線唔到自訂動態源" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "連線唔到動態源服務" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "搵唔到個人檔案" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" -msgstr "唔得離開呢度嘅傾偈" +msgstr "離開唔到傾偈" #: src/screens/Profile/ProfileFeed/index.tsx:83 msgid "Could not load feed" @@ -2179,12 +2293,20 @@ msgstr "撈唔到清單" #: src/components/dms/ConvoMenu.tsx:182 msgid "Could not mute chat" -msgstr "靜音唔到呢度嘅傾偈" +msgstr "靜音唔到對話" #: src/view/com/composer/videos/VideoPreview.web.tsx:66 msgid "Could not process your video" msgstr "處理唔到你條片" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "存唔到呢啲變更:{0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "更新唔到通知設定" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "建立" @@ -2195,7 +2317,7 @@ msgstr "幫新手包建立 QR Code" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "建立一個新手包" @@ -2205,21 +2327,22 @@ msgstr "幫我建立一個新手包" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "建立帳號" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "建立帳號" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "建立一個帳號" @@ -2241,7 +2364,7 @@ msgstr "建立多一個" msgid "Create new account" msgstr "建立新帳號" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "擧報 {0}" @@ -2268,7 +2391,7 @@ msgstr "自訂" msgid "Customization options" msgstr "自訂選項" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "調整邊啲人可以喺呢條帖文度互動。" @@ -2278,12 +2401,12 @@ msgstr "自訂你嘅 Bluesky 體驗" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "深色" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "深色" @@ -2292,21 +2415,21 @@ msgstr "深色" msgid "Dark mode" msgstr "深色模式" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "深色主題" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "出世日期" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "停用帳號" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "內容審覈偵錯" @@ -2314,7 +2437,7 @@ msgstr "內容審覈偵錯" msgid "Debug panel" msgstr "偵錯面板" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "預設" @@ -2322,8 +2445,8 @@ msgstr "預設" msgid "Default icons" msgstr "預設圖標" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "預設圖標" msgid "Delete" msgstr "刪除" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "刪除帳號" @@ -2355,7 +2478,7 @@ msgstr "係咪要刪咗呢個 App 嘅密碼?" msgid "Delete chat" msgstr "刪除傾偈" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "刪除傾偈申報記錄" @@ -2370,7 +2493,7 @@ msgstr "刪除對話" msgid "Delete Conversation" msgstr "刪除對話" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "幫我刪除" @@ -2378,11 +2501,11 @@ msgstr "幫我刪除" msgid "Delete list" msgstr "刪除清單" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "刪除訊息" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "淨係刪我嗰度嘅訊息" @@ -2390,9 +2513,9 @@ msgstr "淨係刪我嗰度嘅訊息" msgid "Delete my account" msgstr "刪除我嘅帳號" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "刪除帖文" @@ -2409,11 +2532,11 @@ msgstr "係咪要刪除新手包?" msgid "Delete this list?" msgstr "係咪要刪咗呢份清單?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "係咪要刪咗呢條帖文?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "已刪除" @@ -2422,15 +2545,20 @@ msgstr "已刪除" msgid "Deleted Account" msgstr "刪除咗嘅帳號" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "刪除咗嘅清單" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "刪咗嘅帖文。" #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "簡介" @@ -2447,12 +2575,12 @@ msgstr "簡介太長,{DESCRIPTION_MAX_GRAPHEMES, plural, other {唔得超過 # msgid "Descriptive alt text" msgstr "描述性替代文字" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "拆開引用" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "係咪要拆開引用帖文?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "開發者模式經已啓用" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "開發人員選項" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "對話框:調整邊啲人可以喺呢條帖文度互動" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "昏暗" @@ -2492,27 +2620,27 @@ msgstr "停用電郵雙重驗證" msgid "Disable Email 2FA" msgstr "停用電郵雙重驗證" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "停用觸覺回饋" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "停用字幕" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "停用" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "棄置" @@ -2520,18 +2648,18 @@ msgstr "棄置" msgid "Discard changes?" msgstr "係咪要放棄變更?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "係咪要棄置份草稿?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "係咪要放棄發布?" #: src/screens/Settings/components/PwiOptOut.tsx:87 #: src/screens/Settings/components/PwiOptOut.tsx:91 msgid "Discourage apps from showing my account to logged-out users" -msgstr "阻止其他 Apps 向未登入嘅用戶顯示我嘅帳號" +msgstr "阻止其他 App 向未登入嘅用戶顯示我嘅帳號" #: src/screens/Search/Explore.tsx:434 msgid "Discover Feeds" @@ -2542,7 +2670,7 @@ msgstr "發掘動態源" msgid "Discover new custom feeds" msgstr "發掘新嘅自訂動態源" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "發掘新嘅動態源" @@ -2550,7 +2678,7 @@ msgstr "發掘新嘅動態源" msgid "Dismiss" msgstr "跳過" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "跳過錯誤" @@ -2562,26 +2690,26 @@ msgstr "跳過入門指南" msgid "Dismiss interests" msgstr "唔啱心水" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "忽略訊息" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "忽略呢部分" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "顯示大啲嘅替代文字標誌" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "名稱" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "名稱" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "名稱太長" @@ -2603,15 +2731,11 @@ msgstr "唔好將呢個靜音字用到你跟咗嘅用戶啲帖文度" msgid "Does not include nudity." msgstr "唔包括裸體。" -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "唔得用連字號(-)開頭或結尾" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "網域經已驗證!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "未有代碼定係要個新嘅代碼?<0>撳呢度。" @@ -2619,6 +2743,15 @@ msgstr "未有代碼定係要個新嘅代碼?<0>撳呢度。" msgid "Don't see an email? <0>Click here to resend." msgstr "未有見到電郵?<0>撳呢度重新傳送。" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "唔再顯示" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "唔使驚!你所有現存嘅訊息同設定都經已儲存,只要驗證咗你係成年人,就可以用返㗎喇。" + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2658,9 +2791,9 @@ msgstr "撳兩下或撳住訊息去加入反應" #: src/components/Dialog/index.tsx:322 msgid "Double tap to close the dialog" -msgstr "撳兩下閂咗呢個對話框去" +msgstr "撳兩下閂咗呢個對話框" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "撳兩下讚佢" @@ -2673,7 +2806,7 @@ msgstr "下載 Bluesky" msgid "Download CAR file" msgstr "下載 CAR 檔案" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "拖放即可加入圖片" @@ -2689,18 +2822,10 @@ msgstr "例如:alice" msgid "e.g. Alice Lastname" msgstr "例如:張藍天" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "例如:張藍天" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "例如:alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "例如:藝術家、愛狗人士同好鍾意睇書嘅人。" - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "例如:藝術裸體。" @@ -2725,10 +2850,11 @@ msgstr "例如:不停用廣告洗版嘅用戶。" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "每個邀請碼淨係得用一次。之後你會定期收到更多邀請碼。" -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "編輯" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "編輯" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "編輯頭像" @@ -2749,12 +2875,12 @@ msgstr "編輯動態源" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "編輯圖片" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "編輯互動設定" @@ -2776,33 +2902,33 @@ msgstr "編輯直播狀態" msgid "Edit Moderation List" msgstr "編輯內容審覈清單" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "編輯我嘅動態源" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "編輯個人檔案" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "編輯嚟自 {0} 嘅動態通知" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "編輯用戶" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "編輯帖文互動設定" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "編輯個人檔案" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "編輯個人檔案" @@ -2814,19 +2940,11 @@ msgstr "編輯新手包" msgid "Edit User List" msgstr "編輯用戶清單" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "調整邊啲人可以回覆" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "編輯你嘅名稱" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "編輯你嘅個人簡介" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "編輯你嘅新手包" @@ -2839,8 +2957,8 @@ msgstr "教育" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "呢個清單嘅建立者封鎖咗你,或係你封鎖咗個佢。" -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "電郵" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "電郵雙重驗證經已停用" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "電郵雙重驗證經已啓用" @@ -2865,10 +2983,6 @@ msgstr "重新傳送電郵" msgid "Email sent!" msgstr "電郵經已傳送!" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "電郵經已更新!" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "電郵驗證完成!" @@ -2883,8 +2997,8 @@ msgstr "嵌入 HTML 程式碼" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "嵌入帖文" @@ -2892,7 +3006,7 @@ msgstr "嵌入帖文" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "將呢條帖文嵌入到你嘅網站嘅話,淨係需要複製下低程式碼片段,跟住將佢貼到落你網站嘅 HTML 程式碼度。" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "嵌入式影片播放器" @@ -2906,7 +3020,7 @@ msgstr "啓用" msgid "Enable {0} only" msgstr "只啓用 {0}" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "啓用成人內容" @@ -2919,16 +3033,20 @@ msgstr "啓用電郵雙重驗證" msgid "Enable external media" msgstr "啓用外部媒體" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "啓用媒體播放器" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "啓用優先通知" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "去到該帳號嘅個人檔案,撳<0>鐘仔圖標,即可收到該帳號動態通知<1/>。" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "啓用推播通知" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "啓用字幕" @@ -2941,17 +3059,14 @@ msgstr "只啓用呢個來源" msgid "Enable trending topics" msgstr "啓用時興話題" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "喺你「Discover」動態源度啓用時興影片" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "喺你「Discover」動態源度啓用時興影片。" - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "啓用" @@ -2963,7 +3078,7 @@ msgstr "睇晒冇嘢喇" msgid "Ensure you have selected a language for each subtitle file." msgstr "請確保你幫每個字幕檔案到揀選過一種語言。" -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "輸入密碼" @@ -2973,21 +3088,17 @@ msgid "Enter a word or tag" msgstr "輸入字詞或標籤" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "輸入代碼" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "輸入驗證碼" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "進入全螢幕" #: src/view/com/modals/ChangePassword.tsx:165 msgid "Enter the code you received to change your password." -msgstr "輸入你收到嘅驗證碼去到變更你嘅密碼。" +msgstr "輸入你收到嘅驗證碼去變更你嘅密碼。" #: src/screens/Settings/components/ChangeHandleDialog.tsx:370 msgid "Enter the domain you want to use" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "輸入你嘅出世日期" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "輸入你嘅電郵地址" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "喺下低輸入你嘅新電郵地址。" - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "輸入你嘅密碼" @@ -3022,7 +3129,7 @@ msgstr "輸入你嘅密碼" msgid "Enter your username and password" msgstr "輸入你嘅用戶名同密碼" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "進入全螢幕" @@ -3030,16 +3137,28 @@ msgstr "進入全螢幕" msgid "Entertainment" msgstr "娛樂" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "錯誤" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "撈緊帖文嗰陣出錯" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "撈緊偏好設定嗰陣出咗錯" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "錯誤資訊" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "儲存檔案嗰陣發生錯誤" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." msgstr "接收 CAPTCHA 回覆嗰陣發生錯誤。" @@ -3047,27 +3166,34 @@ msgstr "接收 CAPTCHA 回覆嗰陣發生錯誤。" msgid "Error:" msgstr "錯誤:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "錯誤:{error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "所有人" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "所有人都可以回覆" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "所有人都可以回覆呢條帖文。" -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "所有人" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "其他內容" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "排除你跟嘅用戶" msgid "Excludes users you follow" msgstr "排除你跟嘅用戶" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "離開全螢幕" @@ -3106,24 +3232,28 @@ msgstr "離開圖片檢視" msgid "Expand alt text" msgstr "展開替代文字" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "展開用戶清單" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "展開或摺疊你覆緊嘅完整帖文" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "展開帖文文字" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "展開或摺疊帖文文字" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "URI 應解析爲記錄" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "實驗性" @@ -3153,15 +3283,15 @@ msgstr "血腥、暴露或獵奇等其他可能令人反感嘅媒體內容。" msgid "Explicit sexual images." msgstr "打大赤肋嘅鹹溼相。" -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "探索" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "匯出我嘅數據" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "外部媒體" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 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:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "外部媒體偏好設定" @@ -3195,30 +3325,30 @@ msgid "Failed to accept chat" msgstr "接受唔到傾偈邀請" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "加唔到 Emoji 反應" #: src/screens/Settings/components/ChangeHandleDialog.tsx:587 msgid "Failed to change handle. Please try again." -msgstr "改唔到帳號代碼,唔該試多一次。" +msgstr "改唔到帳號代碼,唔該試多次。" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:173 msgid "Failed to create app password. Please try again." -msgstr "建立唔到 App 專用密碼,唔該試多一次。" +msgstr "建立唔到 App 專用密碼,唔該試多次。" #: src/components/dms/MessageProfileButton.tsx:36 msgid "Failed to create conversation" msgstr "建唔到對話" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "建立唔到新手包" #: src/view/com/modals/CreateOrEditList.tsx:184 msgid "Failed to create the list. Check your internet connection and try again." -msgstr "建立唔到清單。請檢查你嘅互聯網連線,跟住試多一次。" +msgstr "建立唔到清單。請檢查你嘅互聯網連線,跟住試多次。" #: src/screens/Messages/components/RequestButtons.tsx:64 #: src/screens/Messages/components/RequestButtons.tsx:291 @@ -3226,20 +3356,20 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "刪唔到傾偈" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "刪唔到訊息" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" -msgstr "刪唔到帖文,唔該試多一次" +msgstr "刪唔到帖文,唔該試多次" #: src/screens/StarterPack/StarterPackScreen.tsx:722 msgid "Failed to delete starter pack" msgstr "刪唔到新手包" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "撈唔到對話" @@ -3250,14 +3380,32 @@ msgstr "撈唔到對話" msgid "Failed to load feeds preferences" msgstr "撈唔到動態源偏好設定" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "撈唔到 GIF" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "撈唔到通知設定。" + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "撈唔到過去嘅訊息" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "撈唔到偏好設定。" + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "撈唔到建議嘅動態源" msgid "Failed to load suggested follows" msgstr "撈唔到建議你跟嘅人" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "標記唔到所有邀請做已讀" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "固定唔到帖文" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "刪唔到 Emoji 反應" @@ -3291,15 +3439,11 @@ msgstr "撤回唔到認證" msgid "Failed to save image: {0}" msgstr "儲存唔到圖片:{0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "儲存唔到通知偏好設定,唔該試多一次" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." -msgstr "儲存唔到設定,唔該試多一次。" +msgstr "儲存唔到設定,唔該試多次。" -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "儲存唔到你嘅心水主題。" @@ -3311,16 +3455,16 @@ msgstr "傳送唔到" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122 #: src/components/dialogs/EmailDialog/screens/Verify.tsx:136 msgid "Failed to send email, please try again." -msgstr "傳送唔到郵件,唔該試多一次。" +msgstr "傳送唔到郵件,唔該試多次。" #: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." -msgstr "未能提交申訴,唔該試多一次。" +msgstr "未能提交申訴,唔該試多次。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" -msgstr "靜音唔到討論串,唔該試多一次" +msgstr "靜音唔到討論串,唔該試多次" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83 @@ -3329,13 +3473,17 @@ msgstr "更新唔到電郵雙重驗證設定" #: src/components/dialogs/EmailDialog/screens/Update.tsx:195 msgid "Failed to update email, please try again." -msgstr "更新唔到電郵,唔該試多一次。" +msgstr "更新唔到電郵,唔該試多次。" #: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "更新唔到動態源" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "更新唔到動態通知範圍" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "更新唔到設定" @@ -3348,21 +3496,29 @@ msgstr "上載唔到條片" #: src/components/dialogs/EmailDialog/screens/Verify.tsx:168 msgid "Failed to verify email, please try again." -msgstr "驗證唔到電郵,唔該試多一次。" +msgstr "驗證唔到電郵,唔該試多次。" #: src/screens/Settings/components/ChangeHandleDialog.tsx:360 msgid "Failed to verify handle. Please try again." -msgstr "驗證唔到帳號代碼,唔該試多一次。" +msgstr "驗證唔到帳號代碼,唔該試多次。" -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "動態源" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "{0} 建立嘅動態源" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "動態源建立者" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "動態源 ID" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "動態源選單" @@ -3371,35 +3527,39 @@ msgstr "動態源選單" msgid "Feed toggle" msgstr "切換動態源" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "動態源用唔到" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "意見" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "意見經已送出!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "動態源" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "動態源係用戶嘅自訂演算法,用戶淨係需要小小 coding 經驗就可以整到出嚟。想知多啲<0/>。" #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "動態源經已更新!" @@ -3428,6 +3588,14 @@ msgstr "按語言篩選去搵" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "按語言篩選去搵(目前:{currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "篩選邊個可以選擇接收你嘅動態通知" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "篩選你想接收嘅通知來源" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "幫緊你幫緊你" @@ -3448,7 +3616,7 @@ msgstr "睇下跟啲乜人好" msgid "Find posts, users, and feeds on Bluesky" msgstr "喺 Bluesky 度搵帖文、用戶同埋動態源" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "攪掂" @@ -3456,17 +3624,17 @@ msgstr "攪掂" msgid "Fitness" msgstr "健康" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "啞黑" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "啞藍" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "啞白" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "靈活" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "跟佢" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "跟 {0}" @@ -3518,7 +3686,7 @@ msgstr "跟佢" msgid "Follow all" msgstr "跟晒佢哋" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "跟返佢" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "跟返佢" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "你識嘅 <0>{0} 亦都跟咗佢" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "你識嘅 <0>{0} 同{1, plural, one {另外 # 人亦都跟咗佢} other {另外 # 人亦都跟咗佢}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "你識嘅 <0>{0} 同 <1>{1} 亦都跟咗佢" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "你識嘅 <0>{0}, <1>{1} 同{2, plural, one {另外 # 人亦都跟咗佢} other {另外 # 人亦都跟咗佢}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "你識嘅 @{0} 亦都跟咗佢" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "你識嘅擁躉" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "跟緊" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "跟緊" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "跟緊 {0}" @@ -3579,8 +3751,8 @@ msgstr "跟緊 {handle}" msgid "Following feed preferences" msgstr "「Following」動態源偏好設定" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "「Following」動態源偏好設定" @@ -3592,11 +3764,11 @@ msgstr "跟緊你" msgid "Follows You" msgstr "跟緊你" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "字型" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "字型大細" @@ -3607,13 +3779,13 @@ msgstr "食物" #: src/view/com/modals/DeleteAccount.tsx:125 msgid "For security reasons, we'll need to send a confirmation code to your email address." -msgstr "爲咗保安起見,我哋需要將驗證碼傳送到你嘅電郵地址。" +msgstr "基於保安理由,我哋需要將驗證碼傳送到你嘅電郵地址。" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:209 msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." -msgstr "爲咗保安起見,你唔可以再睇返呢個密碼。若然你真係唔知呢個密碼嘅話,你最好去生成一個新嘅密碼。" +msgstr "基於保安理由,你唔可以再睇返呢個密碼。若然你真係唔知呢個密碼嘅話,你最好去生成一個新嘅密碼。" -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "爲咗有最佳體驗,我哋建議使用主題字型。" @@ -3643,14 +3815,18 @@ msgstr "唔記得?" msgid "Frequently Posts Unwanted Content" msgstr "頻繁發布不受歡迎嘅內容" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "嚟自" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "嚟自 @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" -msgstr "來自 <0/>" +msgstr "嚟自 <0/>" #: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 msgid "Gallery" @@ -3660,14 +3836,68 @@ msgstr "相簿" msgid "Generate a starter pack" msgstr "生成一個新手包" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "尋求協助" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "喺有人跟你嗰陣收到通知。" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "喺有人讚你轉發嘅帖文嗰陣收到通知。" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "喺有人讚你帖文嗰陣收到通知。" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "喺有人提及你嗰陣收到通知。" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "喺有人引用你帖文嗰陣收到通知。" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "喺有人回覆你帖文嗰陣收到通知。" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "喺有人轉發你轉發嘅帖文嗰陣收到通知。" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "喺有人轉發你帖文嗰陣收到通知。" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "喺佢出新帖嗰陣收到通知" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "喺你揀嘅帳號出新帖或回覆嗰陣收到通知。" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "喺 {name} 出新帖嗰陣收到通知" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "喺呢個帳號有新動態嗰陣收到通知" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "喺 {name} 出新帖嗰陣收到通知" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "喺有人出新帖嗰陣收到通知" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "開始啦" @@ -3688,14 +3918,16 @@ msgstr "整張相喺你嘅 profile 嗰度先啦" msgid "Glaring violations of law or terms of service" msgstr "明顯違反法律或服務條款" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "開始直播" msgid "Go live for" msgstr "直播已進行" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "去到 {firstAuthorName} 嘅個人檔案" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "去到帳號設定" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "同 {0} 傾偈" @@ -3779,8 +4017,8 @@ msgstr "敏感媒體" msgid "Half way there!" msgstr "攪掂一半喇!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "帳號代碼" @@ -3797,7 +4035,7 @@ msgstr "帳號代碼經已改好!" msgid "Handle too long. Please try a shorter one." msgstr "呢個帳號代碼太長,唔該試下校短啲。" -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "觸覺" @@ -3806,7 +4044,7 @@ msgstr "觸覺" msgid "Harassment, trolling, or intolerance" msgstr "騷擾、惡搞或歧視行爲" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "標籤" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "標籤 {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "有咗代碼?<0>撳呢度。" -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "遇到問題?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "協助" @@ -3839,8 +4077,13 @@ msgstr "上載一張相或整張頭像,等大家知道你唔係機械人。" msgid "Here is your app password!" msgstr "呢個係你嘅 App 專用密碼!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "哈佬 👋" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "隱藏" @@ -3848,16 +4091,16 @@ msgstr "隱藏" msgid "Hidden by your moderation settings." msgstr "俾你嘅內容審覈設定所隱藏。" -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "隱藏清單" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "隱藏清單" msgid "Hide" msgstr "隱藏" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "隱藏" @@ -3875,18 +4118,18 @@ msgstr "隱藏" msgid "Hide customization options" msgstr "隱藏自訂選項" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "幫我隱藏帖文" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "幫所有人隱藏回覆" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "幫我隱藏回覆" @@ -3894,12 +4137,12 @@ msgstr "幫我隱藏回覆" msgid "Hide this card" msgstr "隱藏呢張卡片" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "係咪要隱藏呢條帖文?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "係咪要隱藏呢個回覆?" @@ -3913,11 +4156,11 @@ msgstr "隱藏時興話題" msgid "Hide trending topics?" msgstr "係咪要隱藏時興話題?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "係咪要隱藏時興影片?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "隱藏用戶清單" @@ -3926,32 +4169,32 @@ msgstr "隱藏用戶清單" msgid "Hide verification badges" msgstr "隱藏認證標記" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "隱藏內容" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "唔好意思,連線到動態源伺服器嗰陣發生問題,請話畀動態源擁有者知呢個問題。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "唔好意思,動態源伺服器似乎配置錯誤,請話畀動態源擁有者知呢個問題。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "唔好意思,動態源伺服器似乎離線,請話畀動態源擁有者知呢個問題。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "唔好意思,動態源伺服器畀咗個錯誤嘅回覆,請話畀動態源擁有者知呢個問題。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "唔好意思,我哋搵唔到呢個動態源。佢可能經已刪咗。" -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "唔好意思,我哋好似喺撈緊數據嗰陣遇到問題。睇下下低資訊瞭解詳情。若然仲係有呢個問題,請聯絡我哋。" @@ -3959,15 +4202,15 @@ msgstr "唔好意思,我哋好似喺撈緊數據嗰陣遇到問題。睇下下 msgid "Hmmmm, we couldn't load that moderation service." msgstr "唔好意思,我哋撈唔到嗰個審覈服務。" -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "幫緊你幫緊你!我哋而家逐步開放影片功能,而你仲喺等候名單嗰度。遲啲返嚟睇下啦!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "首頁" @@ -3984,22 +4227,18 @@ msgstr "託管服務提供者" msgid "Hot" msgstr "熱門" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" -msgstr "熱門回覆優先" +msgstr "熱門回覆行先" #: src/components/dialogs/InAppBrowserConsent.tsx:62 #: src/components/dialogs/InAppBrowserConsent.tsx:66 msgid "How should we open this link?" msgstr "我哋應該點樣打開呢條連結?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "我明" msgid "If alt text is long, toggles alt text expanded state" msgstr "若然替代文字太長,就會切換替代文字展開狀態" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "若然你嘅年齡根據所在國家/地區嘅法律仲未夠秤嘅話,噉你父母或法定監護人就必須代表你閱讀呢啲條款。" @@ -4031,11 +4270,11 @@ msgstr "若然你刪咗呢份清單,之後就冇得恢復。" msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "若然你有自己嘅網域,你可以用佢作爲你嘅帳號代碼。同時亦都可以證明你嘅身份。<0> 想知多啲 。" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "若然你需要更新你嘅電郵,<0>撳呢度。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "若然你刪咗呢條帖文,之後就冇得恢復。" @@ -4047,6 +4286,10 @@ msgstr "若然你更新咗電郵地址,電郵雙重驗證將會停用。" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "若然你想改你嘅密碼,我哋會就會傳送一個驗證碼畀你驗證呢個係你嘅帳號。" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "若然你想限制邊個可以收到你帳號嘅動態通知,可去到<0>設定 → 私隱同保安變更呢個設定。" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "若然你係開發人員,你可以自己托管伺服器。" @@ -4079,7 +4322,7 @@ msgstr "圖片經已儲存" #: src/lib/media/save-image.ts:45 msgid "Images cannot be saved unless permission is granted to access your photo library." -msgstr "儲存唔到圖片,除非授予相片圖庫取用權限。" +msgstr "儲存唔到圖片,需要授予相片圖庫取用權限。" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49 #: src/lib/moderation/useReportOptions.ts:49 @@ -4091,13 +4334,41 @@ msgstr "冒認、僞造身份或所隸屬關係" msgid "Impersonation, misinformation, or false claims" msgstr "冒充、虛假資訊或虛假聲稱" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "App 內" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "App 內通知" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "App 內,所有人" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "App 內,你跟嘅人" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "App 內,推播" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "App 內,推播,所有人" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "App 內,推播,你跟嘅人" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "不當嘅訊息或敏感內容連結" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "收件箱乾淨晒!" @@ -4105,21 +4376,21 @@ msgstr "收件箱乾淨晒!" msgid "Incorrect username or password" msgstr "用戶名或密碼唔啱" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" -msgstr "輸入傳送到你電郵嘅驗證碼去到重設密碼" +msgstr "輸入傳送到你電郵嘅驗證碼去重設密碼" #: src/view/com/modals/DeleteAccount.tsx:228 msgid "Input confirmation code for account deletion" msgstr "輸入刪除帳號嘅驗證碼" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "輸入新密碼" #: src/view/com/modals/DeleteAccount.tsx:247 msgid "Input password for account deletion" -msgstr "輸入密碼去到刪除帳號" +msgstr "輸入密碼去刪除帳號" #: src/screens/Login/LoginForm.tsx:289 msgid "Input the code which has been emailed to you" @@ -4129,10 +4400,14 @@ msgstr "輸入電郵到你嘅驗證碼" msgid "Interaction limited" msgstr "已限制互動" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "互動設定" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "全新推出動態通知" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "雙重驗證確認碼無效。" msgid "Invalid handle. Please try a different one." msgstr "無效嘅帳號代碼,唔該試下用第個。" -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "無效或唔支援嘅帖文記錄" @@ -4158,21 +4433,21 @@ msgstr "無效嘅驗證碼" msgid "Invite a Friend" msgstr "邀請朋友" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "邀請碼" #: src/screens/Signup/state.ts:339 msgid "Invite code not accepted. Check that you input it correctly and try again." -msgstr "邀請碼無效。請檢查你輸入嘅驗證碼啱定唔啱,跟住試多一次。" +msgstr "邀請碼無效。請檢查你輸入嘅驗證碼啱定唔啱,跟住試多次。" #: src/view/com/modals/InviteCodes.tsx:171 msgid "Invite codes: {0} available" -msgstr "邀請碼:{0} 個可用" +msgstr "邀請碼:{0} 個用到" #: src/view/com/modals/InviteCodes.tsx:170 msgid "Invite codes: 1 available" -msgstr "邀請碼:1 個可用" +msgstr "邀請碼:1 個用到" #: src/components/StarterPack/ShareDialog.tsx:77 msgid "Invite people to this starter pack!" @@ -4186,15 +4461,15 @@ msgstr "邀請你嘅朋友去跟返你最鍾意嘅動態源同用戶" msgid "Invites, but personal" msgstr "邀請朋友加入,同時保持個人化" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "係啱嘅" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "而家淨係得你一個人!用上高搵嘢功能將更加多人擺到落你嘅新手包度。" -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "作業 ID:{0}" @@ -4220,11 +4495,27 @@ msgstr "加入對話" msgid "Journalism" msgstr "記者" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "有新動態嗰陣通知我" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "KWS 私隱政策" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "KWS 服務條款" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "KWS 網站" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "{0} 所標記。" -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "發布者所標記。" @@ -4237,7 +4528,7 @@ msgstr "標記" msgid "Labels added" msgstr "標記經已加入" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "標記係用戶同內容嘅註解。佢哋可以用嚟隱藏、警告同管理你嘅社交網絡。" @@ -4253,22 +4544,30 @@ msgstr "你內容上嘅標記" msgid "Language selection" msgstr "語言揀選" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "語言設定" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "語言" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "大啲" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "最後一次請求喺 {timeAgo} 前" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "最後一次請求喺冇幾耐前" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "最新" @@ -4282,7 +4581,6 @@ msgstr "想知多啲" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "想知多啲" @@ -4290,6 +4588,10 @@ msgstr "想知多啲" msgid "Learn More" msgstr "想知多啲" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "想知多啲年齡驗證" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "想知多啲 Bluesky" @@ -4298,15 +4600,23 @@ msgstr "想知多啲 Bluesky" msgid "Learn more about self hosting your PDS." msgstr "想知多啲點樣自行架設 PDS。" -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "想知多啲呢個內容所套用嘅內容審覈措施" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "想知多啲呢個內容所套用嘅內容審覈措施。" -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "想知多啲呢啲變化資訊以及點樣同我哋分享你嘅睇法,可以<0>閱讀我哋嘅網誌文章。" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "想知多啲呢啲變化資訊以及點樣同我哋分享你嘅睇法,可以閱讀我哋嘅網誌文章。" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "想知多啲呢個警告" @@ -4316,12 +4626,16 @@ msgstr "想知多啲呢個警告" msgid "Learn more about verification on Bluesky" msgstr "想知多啲 Bluesky 嘅驗證機制" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "想知多啲 Bluesky 上面公開嘅內容。" -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "想知多啲去你嘅<0>帳號設定。" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "想知多啲。" @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "離開對話" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." +msgid "Leave them all unselected to see any language." msgstr "唔剔語言就可以睇到晒所有語言嘅帖文。" -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "離開 Bluesky" @@ -4370,7 +4685,7 @@ msgstr "行啦我哋!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "淺色" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "讚佢" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "讚佢({0, plural, one {# 人讚佢} other {# 人讚佢}})" @@ -4397,6 +4712,10 @@ msgstr "讚好 10 條帖文" msgid "Like 10 posts to train the Discover feed" msgstr "讚夠 10 條帖文去訓練「Discover」動態源" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "讚好通知" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "讚好呢個動態源" @@ -4405,8 +4724,8 @@ msgstr "讚好呢個動態源" msgid "Like this labeler" msgstr "讚呢個標記服務" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "讚過" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "讚過" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "有 {0, plural, one {# 人} other {# 人}}讚佢" @@ -4428,20 +4747,36 @@ msgstr "有 {0, plural, one {# 人} other {# 人}}讚佢" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "有 {likeCount, plural, one {# 人} other {# 人}}讚佢" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "讚好" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "讚好你轉發嘅帖文" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "讚好你轉發嘅帖文之通知" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "呢條帖文嘅讚數" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "直列模式" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "清單" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "清單經已封鎖" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "{0} 建立嘅清單" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "<0/> 建立嘅清單" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "你嘅清單" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "清單建立者" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "清單經已唔再靜音" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "清單" @@ -4537,7 +4876,7 @@ msgstr "再撈啲" msgid "Load more suggested feeds" msgstr "再撈啲建議動態源" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "撈下新嘅通知" @@ -4552,11 +4891,11 @@ msgstr "撈下新嘅帖文" msgid "Loading..." msgstr "撈緊……" -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "日誌" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "登出可見度" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "LOGO 由 @sawaratsuki.bsky.social 所繪製" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "LOGO 由 <0>@sawaratsuki.bsky.social 所繪製" @@ -4573,7 +4912,7 @@ msgstr "LOGO 由 <0>@sawaratsuki.bsky.social 所繪製" msgid "Long press to open tag menu for #{tag}" msgstr "撳住去打開 #{tag} 嘅標籤選單" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "似係 XXXXX-XXXXXX 噉" @@ -4597,7 +4936,7 @@ msgstr "調整你帳號綁定嘅電郵設定" msgid "Make one for me" msgstr "幫我整一個" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "睇清楚呢度係咪你真係想去嘅網站!" @@ -4606,7 +4945,7 @@ msgstr "睇清楚呢度係咪你真係想去嘅網站!" msgid "Manage saved feeds" msgstr "管理儲存咗嘅動態源" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "管理驗證設定" @@ -4614,9 +4953,9 @@ msgstr "管理驗證設定" msgid "Manage your muted words and tags" msgstr "管理你嘅靜音字詞同標籤" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "標記晒做已讀" @@ -4625,15 +4964,13 @@ msgstr "標記晒做已讀" msgid "Mark as read" msgstr "標記爲已讀" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "經已標記晒做已讀" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "遲啲先啦" @@ -4645,19 +4982,26 @@ msgstr "媒體" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "可能會令某啲受眾感到不安或造成不適嘅媒體內容。" -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "提及通知" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "提到嘅用戶" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "提到嘅用戶" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "提及" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "選單" @@ -4665,7 +5009,7 @@ msgstr "選單" msgid "Message {0}" msgstr "訊息 {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "訊息經已刪除" @@ -4674,11 +5018,11 @@ msgstr "訊息經已刪除" msgid "Message deleted" msgstr "訊息經已刪除" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "嚟自 @{0} 嘅訊息:{1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "嚟自伺服器嘅訊息:{0}" @@ -4691,19 +5035,23 @@ msgstr "訊息輸入欄位" msgid "Message is too long" msgstr "訊息太長" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "訊息選項" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "傾偈" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "半夜" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "其他通知" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "誤導性帳號" msgid "Misleading Post" msgstr "誤導性帖文" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "內容審覈" @@ -4725,17 +5073,17 @@ msgstr "內容審覈" msgid "Moderation details" msgstr "內容審覈詳情" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "{0} 所建立嘅內容審覈清單" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "<0/> 所建立嘅內容審覈清單" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "你嘅內容審覈清單" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "內容審覈清單經已更新" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "內容審覈清單" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "內容審覈清單" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "內容審覈設定" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "內容審覈狀態" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "內容審覈工具" @@ -4775,7 +5123,7 @@ msgstr "內容審覈工具" msgid "Moderator has chosen to set a general warning on the content." msgstr "內容審覈服務提供者經已將呢個內容標記普通警告。" -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "更多" @@ -4790,15 +5138,15 @@ msgstr "更多動態源" msgid "More options" msgstr "更多選項" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "顯示最多人讚嘅回覆先" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" -msgstr "最多人讚嘅回覆優先" +msgstr "最多人讚回覆行先" #: src/screens/Onboarding/state.ts:105 msgid "Movies" @@ -4808,8 +5156,8 @@ msgstr "電影" msgid "Music" msgstr "音樂" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "靜音" @@ -4819,8 +5167,8 @@ msgstr "靜音" msgid "Mute {tag}" msgstr "靜音 {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "淨係靜音包含呢個字詞嘅標籤" msgid "Mute this word until you unmute it" msgstr "將呢個字詞靜音,直至你唔再靜音爲止" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "靜音討論串" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "靜音字詞同標籤" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "靜音咗嘅帳號" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "靜音咗嘅帳號" @@ -4898,7 +5246,7 @@ msgstr "靜音咗嘅帳號唔會再喺你嘅動態源同通知度出現,兼且 msgid "Muted by \"{0}\"" msgstr "俾 「{0}」 靜音" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "靜音字詞同標籤" @@ -4911,7 +5259,7 @@ msgstr "靜音咗嘅帳號淨係得你睇到。佢哋仲係可以同你互動, msgid "My Birthday" msgstr "我嘅生日" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "我嘅動態源" @@ -4921,7 +5269,7 @@ msgstr "名稱" #: src/view/com/modals/CreateOrEditList.tsx:133 msgid "Name is required" -msgstr "個名點都要你填" +msgstr "名稱係必填欄位" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:59 #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:98 @@ -4940,13 +5288,13 @@ msgid "Nature" msgstr "自然" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "去到 {0}" #: src/components/StarterPack/StarterPackCard.tsx:131 msgid "Navigate to starter pack" -msgstr "前往新手包" +msgstr "去到新手包" #: src/screens/Login/ForgotPasswordForm.tsx:166 #: src/screens/Login/LoginForm.tsx:344 @@ -4958,18 +5306,18 @@ msgstr "去到下一個畫面" msgid "Navigates to your profile" msgstr "去到你嘅個人檔案" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "係咪要改下佢?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "需要擧報侵犯版權、法律要求,或監管合規問題?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "需要擧報侵犯版權行爲?" #: src/screens/Onboarding/StepFinished.tsx:282 msgid "Never lose access to your followers or data." -msgstr "你永遠唔會失去對擁躉或個人資訊嘅掌握權。" +msgstr "你永遠唔會失去對擁躉或個人資訊嘅取用權。" #: src/screens/Settings/components/ChangeHandleDialog.tsx:567 msgid "Nevermind, create a handle for me" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "新增" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "嚟自 {firstAuthorLink} 嘅新{postsCount, plural, one {帖文} other {帖文}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "嚟自 {firstAuthorName} 嘅新{postsCount, plural, one {帖文} other {帖文}}" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "同人傾偈" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "新嘅電郵地址" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "新功能" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "新擁躉通知" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "新擁躉" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "新訊息" msgid "New Moderation List" msgstr "建立內容審覈名單" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "新密碼" @@ -5029,7 +5396,7 @@ msgstr "新密碼" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "新帖文" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "新帖文" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "嚟自 {firstAuthorLink} 及<0>其他 {additionalAuthorsCount, plural, one {{formattedAuthorsCount} 人} other {{formattedAuthorsCount} 人}}嘅新帖文" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "嚟自 {firstAuthorName} 及其他 {additionalAuthorsCount, plural,one {{formattedAuthorsCount} 人} other {{formattedAuthorsCount} 人}}嘅新帖文" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "新用戶資訊對話框" @@ -5054,12 +5429,16 @@ msgstr "新用戶資訊對話框" msgid "New User List" msgstr "建立用戶清單" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" -msgstr "最新回覆優先" +msgstr "最新回覆行先" #: src/screens/Onboarding/index.tsx:20 #: src/screens/Onboarding/state.ts:108 @@ -5071,15 +5450,15 @@ msgstr "新聞" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "冇 DNS 控制台" msgid "No expiry set" msgstr "未有設定過期時間" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "搵唔到精選 GIF,Tenor 嗰度可能出咗問題。" @@ -5119,32 +5498,35 @@ msgstr "冇圖片" msgid "No likes yet" msgstr "仲未有人讚" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "唔再跟住 {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "唔得超過 {MAX_SERVICE_HANDLE_LENGTH, plural, other {# 個字元}}" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "仲未有任何訊息" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "而家仲未有通知!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "冇人" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "凈係得作者可以引用呢篇帖文。" +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "呢度未有任何帖文" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "仲未有帖文。" @@ -5171,7 +5553,7 @@ msgstr "冇嘢到" msgid "No results for \"{0}\"." msgstr "搵唔到「{0}」嘅結果。" -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "搵唔到結果" @@ -5179,9 +5561,9 @@ msgstr "搵唔到結果" msgid "No results found for \"{query}\"" msgstr "搵唔到「{query}」嘅結果。" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "搵唔到 {query} 嘅結果" @@ -5189,7 +5571,7 @@ msgstr "搵唔到 {query} 嘅結果" msgid "No results." msgstr "冇嘢到。" -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "搵唔到「{search}」嘅搵嘢結果。" @@ -5198,7 +5580,7 @@ msgstr "搵唔到「{search}」嘅搵嘢結果。" msgid "No thanks" msgstr "唔使,多謝" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "冇人" @@ -5223,59 +5605,76 @@ msgstr "搵唔到人,試下搵第個。" msgid "Non-sexual Nudity" msgstr "非性裸體" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "冇" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "冇任何你識得嘅人跟緊佢" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "搵唔到" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "關於分享嘅注意事項" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." -msgstr "註:Bluesky 係一個開放同公開嘅社羣網絡。呢個設定淨係會限制你嘅內容喺 Bluesky App 同網站上面嘅可見度,而其他 Apps 可能唔會遵守呢個設定。你嘅內容仍然有可能會俾其他 Apps 同網站顯示畀未登入嘅用戶。" +msgstr "註:Bluesky 係一個開放同公開嘅社羣網絡。呢個設定淨係會限制你嘅內容喺 Bluesky App 同網站上面嘅可見度,而其他 App 可能唔會遵守呢個設定。你嘅內容仍然有可能會俾其他 App 同網站顯示畀未登入嘅用戶。" -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "註:呢條帖文淨係得登入咗嘅用戶先睇到。" + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "呢度乜都冇" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "通知篩選器" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "通知設定" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "通知設定" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" -msgstr "通知聲" +msgstr "通知音效" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" -msgstr "通知聲" +msgstr "通知音效" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "通知" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "其他通知,譬如有人用咗你嘅新手包註冊帳號嗰陣。" + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "而家" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "未貼上呢類標記嘅裸體或成人內容" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "顯示" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "大鑊!" @@ -5316,34 +5716,39 @@ msgid "OK" msgstr "好嘅" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "好嘅" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" -msgstr "最舊嘅回覆優先" +msgstr "最舊回覆行先" #: src/components/StarterPack/QrCode.tsx:82 msgid "on<0><1/><2><3/>" msgstr "喺<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "重新開始引導流程" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "一張或多張 GIF 圖片冇咗替代文字。" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "一張或多張圖片冇咗替代文字。" -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "一條或多條影片冇咗替代文字。" @@ -5351,13 +5756,15 @@ msgstr "一條或多條影片冇咗替代文字。" msgid "Only .jpg and .png files are supported" msgstr "淨係支援 .jpg 同 .png 檔圖片" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "淨係得{0}可以回覆。" -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "淨係包含字母、數字同連字號(-)" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "僅限我跟返嘅人" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "淨係支援圖片檔案" msgid "Only WebVTT (.vtt) files are supported" msgstr "淨係支援 WebVTT(.vtt)檔案" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "弊,出咗問題!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "大鑊!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "打開櫃桶選單" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "打開 Emoji 選擇器" @@ -5416,19 +5822,19 @@ msgstr "打開動態源選項選單" msgid "Open full emoji list" msgstr "打開完整 Emoji 清單" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" -msgstr "打開去到 {niceUrl} 嘅連結" +msgstr "打開去 {niceUrl} 嘅連結" #: src/components/dms/ActionsWrapper.tsx:35 msgid "Open message options" msgstr "打開訊息選項" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "開啓內容審覈偵錯頁面" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "打開靜音字詞同標籤設定" @@ -5453,16 +5859,16 @@ msgstr "打開分享選單" msgid "Open starter pack menu" msgstr "打開新手包選單" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "打開故仔書頁面" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "打開系統日誌" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "打開 {numItems} 個選項" @@ -5490,11 +5896,11 @@ msgstr "打開你嘅裝置上嘅相機" msgid "Opens captions and alt text dialog" msgstr "打開字幕同埋替代文字對話框" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "打開變更帳號代碼對話框" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "打開帖文編輯器" @@ -5502,33 +5908,37 @@ msgstr "打開帖文編輯器" msgid "Opens device photo gallery" msgstr "打開裝置相簿" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "打開 Emoji 選擇器" #: src/view/com/auth/SplashScreen.tsx:49 #: src/view/com/auth/SplashScreen.web.tsx:111 msgid "Opens flow to create a new Bluesky account" -msgstr "打開流程去到建立一個新嘅 Bluesky 帳號" +msgstr "打開流程去建立一個新嘅 Bluesky 帳號" #: src/view/com/auth/SplashScreen.tsx:63 #: src/view/com/auth/SplashScreen.web.tsx:125 msgid "Opens flow to sign in to your existing Bluesky account" -msgstr "打開流程去到登入你現有嘅 Bluesky 帳號" +msgstr "打開流程去登入你現有嘅 Bluesky 帳號" #: src/view/com/composer/photos/SelectGifBtn.tsx:36 msgid "Opens GIF select dialog" msgstr "打開揀選 GIF 對話框" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "喺瀏覽器度打開說明中心" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "打開連結 {0}" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "打開邀請碼清單" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "打開直播狀態對話框" @@ -5536,12 +5946,8 @@ msgstr "打開直播狀態對話框" msgid "Opens password reset form" msgstr "打開密碼重設表單" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "打開網站連結" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "打開呢個人嘅個人檔案" @@ -5558,7 +5964,7 @@ msgstr "喺下低提供額外資料(可選):" msgid "Options:" msgstr "選項:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "或加埋呢啲條件:" @@ -5576,7 +5982,7 @@ msgstr "OTA 狀態:……" #: src/screens/Settings/components/OTAInfo.tsx:48 msgid "OTA status: Available!" -msgstr "OTA 狀態:可用!" +msgstr "OTA 狀態:有新嘅更新!" #: src/screens/Settings/components/OTAInfo.tsx:50 msgid "OTA status: Error fetching update" @@ -5584,7 +5990,7 @@ msgstr "OTA 狀態:攞緊更新嗰陣出咗問題" #: src/screens/Settings/components/OTAInfo.tsx:54 msgid "OTA status: None available" -msgstr "OTA狀態:冇可用資訊" +msgstr "OTA狀態:冇更新" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27 #: src/lib/moderation/useReportOptions.ts:27 @@ -5600,6 +6006,10 @@ msgstr "其他帳號" msgid "Other..." msgstr "其他……" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "我哋嘅網誌文章" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "我哋嘅內容審覈團隊經已收到你嘅擧報。" @@ -5608,7 +6018,7 @@ msgstr "我哋嘅內容審覈團隊經已收到你嘅擧報。" msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "我哋嘅內容審覈服務提供者已經睇過你嘅擧報,決定停用你使用 Bluesky 嘅傾偈功能。" -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "搵唔到頁面" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "搵唔到頁面" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "密碼經已更新" msgid "Password updated!" msgstr "密碼經已更新!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "暫停" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "暫停影片" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "用戶" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "@{0} 跟咗嘅人" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "跟緊 @{0} 嘅人" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "我跟嘅人" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "相片圖庫取用權限被拒絕,請喺系統設定度授予權限。" @@ -5704,12 +6119,12 @@ msgstr "固定到首頁" msgid "Pin to Home" msgstr "固定到首頁" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "固定到你嘅個人檔案" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "固定咗" @@ -5718,7 +6133,7 @@ msgstr "固定咗" msgid "Pinned {0} to Home" msgstr "固定 {0} 到首頁" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "固定咗嘅動態源" @@ -5726,38 +6141,38 @@ msgstr "固定咗嘅動態源" msgid "Pinned to your feeds" msgstr "固定喺你嘅動態源" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "播放" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "播放 {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "播放影片" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "播放影片" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "播放或暫停 GIF" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "播放或暫停影片" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "播放 GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "播放影片" @@ -5765,12 +6180,16 @@ msgstr "播放影片" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "請喺你發布媒體內容度加入適當嘅內容警告標記。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "請去到你嘅電郵信箱以取得後續指示。電郵可能需要一兩分鐘先會送達。" + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "請設定你嘅帳號代碼。" #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "請設定你嘅密碼。" @@ -5782,7 +6201,8 @@ msgstr "請打開我哋正話送咗去你新電郵入邊嗰條連結嚟驗證新 msgid "Please complete the verification captcha." msgstr "請完成 Captcha 驗證(人機驗證)。" -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "請你檢查多次你輸入嘅電郵地址啱唔啱。" @@ -5804,6 +6224,7 @@ msgstr "請幫呢個 App 專用密碼輸入一個獨特嘅名稱,或用我哋 msgid "Please enter a valid code." msgstr "請輸入有效嘅代碼。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "請輸入有效嘅電郵地址。" @@ -5812,7 +6233,11 @@ msgstr "請輸入有效嘅電郵地址。" msgid "Please enter a valid word, tag, or phrase to mute" msgstr "請輸入有效嘅字詞、標籤或短語嚟靜音" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "請輸入有效、非臨時嘅電郵地址。你日後可能需要再次使用呢個電郵信箱。" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "請輸入我哋傳送到 <0>{0} 嘅代碼。" @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "請輸入我哋正話送咗去你電郵地址嗰個保安編碼。" #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "請輸入你嘅電郵地址。" -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "請輸入你嘅邀請碼。" @@ -5853,6 +6278,19 @@ msgstr "請解釋點解你覺得 {0} 唔應該套用呢個標籤" msgid "Please explain why you think your chats were incorrectly disabled" msgstr "請解釋點解你以爲我哋唔應該停用你傾偈功能" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "請返去,或觸發呢個元素去返到頭位。" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "爲咗等支援團隊可以評估你嘅年齡驗證狀態,請提供任何你認爲係可以幫到評估嘅補充資訊。" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "請揀選語言" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "請揀選內容審覈服務" @@ -5870,9 +6308,9 @@ msgstr "請用 @{0} 身份登入" msgid "Please verify your email" msgstr "請驗證你嘅電郵" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "請驗證你嘅電郵" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "請喺下低寫低你嘅訊息:" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,46 +6322,54 @@ msgstr "政治" msgid "Porn" msgstr "色情" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "發文" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "帖文" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "發布" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "發晒佢哋" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "帖文經已封鎖" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "{0} 嘅帖文" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "@{0} 嘅帖文" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "帖文經已刪除" #: src/lib/api/index.ts:186 msgid "Post failed to upload. Please check your Internet connection and try again." -msgstr "帖文發布失敗。請檢查你嘅互聯網連線,跟住試多一次。" +msgstr "帖文發布失敗。請檢查你嘅互聯網連線,跟住試多次。" +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "帖文經已刪除" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "帖文隱藏咗" @@ -5937,11 +6383,11 @@ msgstr "帖文因設定嘅靜音字詞所隱藏" msgid "Post Hidden by You" msgstr "呢條帖文俾你隱藏咗" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "帖文互動設定" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "帖文互動設定" @@ -5954,8 +6400,10 @@ msgstr "帖文語言" msgid "Post Languages" msgstr "帖文語言" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "搵唔到帖文" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "帖文經已唔再固定" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "帖文" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "可以根據字詞、標籤,又或兩種一齊去靜音帖文。我哋建議避開大量帖文度會出現嘅常見字詞,唔係嘅話令到你主頁冇晒帖文。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "帖文隱藏咗" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" -msgstr "潛在誤導性嘅連結" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "帖文、回覆" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "偏好設定經已儲存" +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" +msgstr "潛在誤導性連結" + +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "潛在誤導性連結警告" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "撳低去試下重新連線" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "撳低去試多次" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "撳低去睇下有邊啲你識嘅人跟咗呢個帳號" @@ -6015,40 +6469,46 @@ msgstr "上一張圖片" msgid "Primary Language" msgstr "慣用語言" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "睇你跟緊嘅人先" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "優先通知" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "私隱" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "私隱同保安" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "私隱同保安" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "私隱同保安設定" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "私隱政策" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "處理緊條片……" @@ -6062,15 +6522,14 @@ msgstr "幫緊你……" msgid "profile" msgstr "個人檔案" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "個人檔案" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "個人檔案經已更新" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "公開、可分享嘅清單,可以當動態源噉用。" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "發布帖文" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "發布帖文" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "發布回覆" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "發布回覆" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "推送" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "推播通知" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "推播,所有人" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "推播,你跟嘅人" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "QR code 複製咗去你嘅剪貼簿喇!" @@ -6119,53 +6594,61 @@ msgstr "QR code 下載咗喇!" msgid "QR code saved to your camera roll!" msgstr "QR code 存咗去你嘅相簿度喇!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "引用通知" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "引用帖文" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "引用帖文經已重新連結" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "引用帖文經已成功分離" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "引用帖文經已停用" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "引用設定" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "引用" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "引用呢條篇帖文" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "隨機顯示(又名試試手氣)" #: src/screens/Settings/components/ChangeHandleDialog.tsx:600 msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." -msgstr "超過咗速率限制——你喺短時間內改過帳號代碼太多,唔該等陣試多一次。" +msgstr "超過咗速率限制——你喺短時間內改過帳號代碼太多,唔該等陣試多次。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "重新連結引用" @@ -6177,30 +6660,42 @@ msgstr "用 {emoji} 畀個反應" msgid "Reactivate your account" msgstr "重新啓用你嘅帳號" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "閱讀更多 {0} 條{1, plural,one {回覆}other {回覆}}" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "閱讀網誌文章" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "睇少啲" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "睇多啲" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "閱讀更多回覆" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "閱讀我哋嘅網誌文章" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "睇下 Bluesky 網誌" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "睇下 Bluesky 私隱政策" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "睇下 Bluesky 服務條款" @@ -6213,6 +6708,14 @@ msgstr "申訴理由" msgid "Reason:" msgstr "原因:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "接收 App 內通知" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "接收推播通知" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "近排嘅搵嘢記錄" @@ -6234,8 +6737,8 @@ msgstr "拒絕" msgid "Reject chat request" msgstr "拒絕傾偈邀請" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "撈多次對話" @@ -6244,10 +6747,9 @@ msgstr "撈多次對話" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "刪除" @@ -6259,17 +6761,17 @@ msgstr "喺新手包度刪除 {displayName}" msgid "Remove {historyItem}" msgstr "刪除 {historyItem}" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "移除帳號" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "刪除關聯" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "刪除頭像" @@ -6284,24 +6786,22 @@ msgstr "刪除嵌入" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "刪除動態源" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "係咪要刪除動態源?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "喺我嘅動態源度刪除" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "係咪要喺快速存取中刪除?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "喺儲存咗嘅動態源度刪除" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "係咪要喺你嘅動態源度刪除?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "刪除圖片" @@ -6332,12 +6831,8 @@ msgstr "喺你嘅清單度刪除靜音字詞" msgid "Remove profile" msgstr "刪除個人檔案" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "刪除引用帖文" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "刪除轉發" @@ -6345,7 +6840,7 @@ msgstr "刪除轉發" msgid "Remove subtitle file" msgstr "移除字幕檔案" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "將呢個動態源喺你儲存咗嘅動態源度刪除" @@ -6364,11 +6859,11 @@ msgstr "撤回驗證" msgid "Remove your verification for this account?" msgstr "係咪要撤回你對呢個帳號嘅驗證?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "俾發布者刪咗" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "俾你刪咗" @@ -6377,10 +6872,6 @@ msgstr "俾你刪咗" msgid "Removed from list" msgstr "經已喺清單度刪除" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "經已喺我嘅動態源度刪除" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "經已喺儲存咗嘅動態源度刪除" @@ -6395,34 +6886,36 @@ msgstr "經已喺你嘅動態源度刪除" msgid "Removed verification" msgstr "經已撤回認證" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "刪除引用過嘅帖文" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "用「Discover」取代" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "回覆" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "回覆經已停用" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "呢條帖文嘅回覆經已關閉。" -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "回覆" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "回覆({0, plural, one {# 個回覆} other {# 個回覆}})" @@ -6436,50 +6929,55 @@ msgstr "回覆俾呢個討論串嘅發布者隱藏" msgid "Reply Hidden by You" msgstr "呢個回覆俾你隱藏咗" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "回覆通知" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "回覆設定" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "回覆設定係由討論串嘅作者所設" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "回覆排序" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "覆畀 <0><1/>" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "回覆到封鎖咗嘅帖文度" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "回覆帖文" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "覆你" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "回覆可見度經已更新" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "回覆經已成功隱藏" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "擧報動態源" msgid "Report list" msgstr "擧報清單" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "擧報訊息" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "擧報帖文" @@ -6567,25 +7065,26 @@ msgstr "擧報呢個新手包" msgid "Report this user" msgstr "擧報呢個用戶" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "轉發" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "轉發" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "轉發({0, plural, one {# 次轉發} other {# 次轉發}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "轉發通知" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "轉發或引用帖文" @@ -6594,35 +7093,47 @@ msgstr "轉發或引用帖文" msgid "Reposted By" msgstr "轉發" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "{0} 所轉發" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "<0><1/> 所轉發" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "你所轉發" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "轉發" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "轉發呢條帖文" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "要求變更" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "轉發你轉發嘅帖文" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "轉發你轉發帖文嘅通知" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "要求代碼" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "發布之前要提供替代文字" @@ -6630,7 +7141,7 @@ msgstr "發布之前要提供替代文字" msgid "Require an email code to sign in to your account." msgstr "登入嗰陣要用埋電郵驗證碼先至得。" -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "服務提供者要求此必填" @@ -6642,10 +7153,6 @@ msgstr "你所在嘅區域必填" msgid "Resend" msgstr "重新傳送" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "重新傳送電郵" msgid "Resend Verification Email" msgstr "重新傳送驗證郵件" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "重設動態訂閱通知提示" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "重設驗證碼" @@ -6667,8 +7180,8 @@ msgstr "重設驗證碼" msgid "Reset Code" msgstr "重設驗證碼" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "去返引導流程重設個人檔案" @@ -6687,21 +7200,23 @@ msgstr "試多次執行上一個出錯誤嘅動作" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "試多次" @@ -6721,19 +7236,19 @@ msgstr "返去首頁" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "返去上一頁" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "返去上一步" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "返去上一步" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "儲存" @@ -6762,15 +7276,13 @@ msgstr "儲存" msgid "Save birthday" msgstr "儲存生日" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "儲存變更" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "儲存變更" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "儲存 QR code" msgid "Save to my feeds" msgstr "儲存到我嘅動態源度" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "儲存咗嘅動態源" @@ -6802,18 +7314,14 @@ msgstr "儲存咗嘅動態源" msgid "Saved to your feeds" msgstr "經已存到你嘅動態源度" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "儲存你個人檔案嘅所有變更" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "儲存圖片裁剪設定" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "Say 哈嘍!" @@ -6826,16 +7334,16 @@ msgstr "科學" msgid "Scroll to top" msgstr "轆到去頂部" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "搵嘢" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "搵 @{0} 嘅帖文" @@ -6861,7 +7369,7 @@ msgstr "搵「{query}」" msgid "Search for \"{searchText}\"" msgstr "搵「{searchText}」" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "搵你想同其他人推薦嘅動態源。" @@ -6877,10 +7385,14 @@ msgstr "搵更多動態源" msgid "Search for posts, users, or feeds" msgstr "搵帖文、用戶或動態源" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "搵 GIF" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "未登入狀態用唔到搵嘢功能" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "搵我嘅帖文" @@ -6890,12 +7402,12 @@ msgstr "搵我嘅帖文" msgid "Search posts" msgstr "搵帖文" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "搵個人檔案" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "搵 Tenor" @@ -6903,7 +7415,7 @@ msgstr "搵 Tenor" msgid "Search..." msgstr "搵……" -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "搵個人檔案" @@ -6912,10 +7424,6 @@ msgstr "搵個人檔案" msgid "Security step required" msgstr "所需嘅保安步驟" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "所需嘅保安步驟" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "睇下包含 {tag} 嘅帖文" @@ -6936,13 +7444,30 @@ msgstr "睇下呢位用戶包含 #{tag} 嘅帖文" msgid "See jobs at Bluesky" msgstr "喺 Bluesky 度搵工" -#: src/view/screens/SavedFeeds.tsx:205 -msgid "See this guide" -msgstr "睇下呢份指南" +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "瀏覽更多" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "瀏覽更多可能啱你心水嘅帳號" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "喺探索頁面瀏覽更多建議嘅個人檔案" + +#: src/view/screens/SavedFeeds.tsx:213 +msgid "See this guide" +msgstr "查詢指南" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" -msgstr "播放進度條。用方向掣控制行前同褪後,撳空白掣控制播放同暫停。" +msgstr "播放進度條。用方向掣控制行前同褪後,撳空白掣控制播放或暫停" + +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "揀選 {0}" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" @@ -6988,7 +7513,7 @@ msgstr "喺而家有嘅帳號度揀" msgid "Select GIF" msgstr "揀選 GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "揀選 GIF「{0}」" @@ -6996,6 +7521,11 @@ msgstr "揀選 GIF「{0}」" msgid "Select how long to mute this word for." msgstr "揀選靜音將呢個字詞要幾耐。" +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "揀選語言" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "揀選語言……" @@ -7004,7 +7534,7 @@ msgstr "揀選語言……" msgid "Select languages" msgstr "揀選語言" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "揀選內容審覈服務" @@ -7045,12 +7575,12 @@ msgstr "揀選隻 App 介面要用返乜語言。" msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "揀選邊啲語言你想喺你訂閱嘅動態源度出現。唔揀嘅話,就會顯示所有語言。" -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "揀選你個出世日期" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "喺下低揀選啱你心水嘅選項" @@ -7058,7 +7588,11 @@ msgstr "喺下低揀選啱你心水嘅選項" msgid "Select your preferred language for translations in your feed." msgstr "揀選你喺訂閱嘅動態源度要翻譯嘅目標語言" -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "揀選你想要嘅通知類型" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "揀算第 {0} 個選項(共 {numItems} 個)" @@ -7066,17 +7600,9 @@ msgstr "揀算第 {0} 個選項(共 {numItems} 個)" msgid "Send a neat website!" msgstr "傳送個趣緻嘅網站!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "傳送確認電郵" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "傳送確認電郵" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "傳送電郵" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "傳送電郵" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "提交意見" @@ -7095,9 +7621,9 @@ msgstr "提交意見" msgid "Send message" msgstr "傳送訊息" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" -msgstr "傳送帖文到 {name}" +msgstr "傳送帖文畀 {name}" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." @@ -7114,20 +7640,20 @@ msgstr "提交擧報" msgid "Send report to {0}" msgstr "將擧報提交到 {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "將擧報提交到 {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "傳送驗證電郵" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "將呢件嘢同人傾偈單獨講" @@ -7143,7 +7669,7 @@ msgstr "伺服器位址" msgid "Set app icon to {0}" msgstr "將 App 圖標改成 {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "設定出世日期" @@ -7159,13 +7685,57 @@ msgstr "設定你嘅帳號" msgid "Sets email for password reset" msgstr "設定電郵嚟重設密碼" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "設定" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "嚟自其他人嘅動態通知設定" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "允許其他人接收你出新貼通知設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "讚好通知設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "提及通知設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "新擁躉通知設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "其他通知設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "轉發嘅讚好通知設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "轉發嘅轉發通知設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "引用通知設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "回覆通知設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "轉發通知設定" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "分享一個好趣緻嘅古仔畀人!" msgid "Share a fun fact!" msgstr "分享一個勁攪嘢嘅事實!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "點都要分享" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" -msgstr "分享作者 DID" +msgstr "分享發布者 DID" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "分享連結" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "分享連結" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "分享連結對話框" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "分享帖文 at:// 連結" @@ -7247,8 +7812,8 @@ msgstr "分享呢個新手包" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "分享呢個新手包,等更多人加入你喺 Bluesky 度嘅社羣。" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "分享到……" msgid "Share your favorite feed!" msgstr "分享你至鍾意嘅動態源!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "共用偏好測試器" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "分享網站嘅連結" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "顯示" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "顯示替代文字" @@ -7303,8 +7864,8 @@ msgstr "顯示自訂選項" msgid "Show hidden replies" msgstr "顯示隱藏咗嘅回覆" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "推少啲噉嘅嘢畀我" @@ -7312,55 +7873,63 @@ msgstr "推少啲噉嘅嘢畀我" msgid "Show list anyway" msgstr "點都要顯示呢個清單" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "顯示更多" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "推多啲噉嘅嘢畀我" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "顯示更多回覆" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "顯示靜音咗嘅回覆" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "用樹狀介面顯示帖文回覆" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "顯示引用帖文" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "顯示回覆" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "回覆顯示成" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" -msgstr "用樹狀視圖顯示回覆" +msgstr "用樹狀介面顯示回覆" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "將你跟緊嘅人啲回覆擺喺其他人回覆之前" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "公開顯示回覆" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "顯示轉發" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "喺「Following」動態源度顯示你儲存咗嘅動態源中嘅精選帖文" @@ -7372,16 +7941,17 @@ msgstr "顯示警告" msgid "Show warning and filter from feeds" msgstr "顯示警告兼且喺動態源度篩選" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "顯示關於呢條帖文嘅建立時間資訊" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "顯示其他你切換得到嘅帳號" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "顯示內容" @@ -7390,14 +7960,15 @@ msgstr "顯示內容" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "登入未有列出嘅帳號" msgid "Sign in to Bluesky or create a new account" msgstr "登入 Bluesky 或整個新帳號" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "登入以檢視帖文" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "登出" @@ -7444,8 +8020,8 @@ msgstr "登出" msgid "Sign Out" msgstr "登出" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "係咪要登出?" @@ -7459,12 +8035,12 @@ msgstr "需要登入" msgid "Signed in as @{0}" msgstr "用 @{0} 身份登入" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "類似帳號" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "跳過" @@ -7472,12 +8048,11 @@ msgstr "跳過" msgid "Skip this flow" msgstr "跳過呢段流程" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "細啲" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "暫停提醒" @@ -7490,11 +8065,11 @@ msgstr "軟件開發" msgid "Some of your verifications are invalid." msgstr "你目前被授予嘅部分驗證無效。" -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "其他可能都會啱你心水嘅動態源" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "淨係得部分人可以回覆" @@ -7510,49 +8085,56 @@ msgstr "有人對 {1} 畀咗個 {0} 反應" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "你想擧報嘅內容好似有啲唔啱,請聯絡支援取得協助。" -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "出咗問題" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 msgid "Something went wrong, please try again" -msgstr "出咗問題,唔該試多一次" +msgstr "出咗問題,唔該試多次" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." -msgstr "出咗問題,唔該試多一次。" +msgstr "出咗問題,唔該試多次。" -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "出咗問題!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "出咗問題,唔該遲啲試多次。" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." -msgstr "出咗問題,唔該試多一次。" +msgstr "出咗問題,唔該試多次。" #: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Something wrong? Let us know." msgstr "有輘輷?話畀我哋知。" -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." -msgstr "對唔住!你嘅登入狀態過咗期,唔該試多次登入。" +msgstr "對唔住!你嘅登入階段過咗期,請重新登入。" -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "回覆排序" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "回覆排序" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "對同一條帖文下嘅回覆排序:" @@ -7579,9 +8161,9 @@ msgstr "垃圾訊息、頻繁提及或回覆" msgid "Sports" msgstr "運動" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." -msgstr "開始一段對話,內容會喺度出現。" +msgstr "當你同第個人傾偈之後,對話內容就會喺度出現。" #: src/components/dms/dialogs/NewChatDialog.tsx:74 msgid "Start a new chat" @@ -7601,9 +8183,9 @@ msgstr "開始搵人加入!" msgid "Start chat with {displayName}" msgstr "開始同 {displayName} 傾偈" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "新手包" @@ -7611,12 +8193,12 @@ msgstr "新手包" msgid "Starter pack by {0}" msgstr "{0} 整嘅新手包" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "<0/> 整嘅新手包" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "你嘅新手包" @@ -7638,19 +8220,21 @@ msgstr "新手包可以幫你好輕鬆噉同你嘅朋友分享你最鍾意嘅動 msgid "Status Page" msgstr "狀態頁面" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "第 {0} 步(共 {1} 步)" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "儲存資料經已剷走,你而家需要重啓隻 App 令佢即刻生效。" -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "故仔書" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "提交申訴" msgid "Submit Appeal" msgstr "提交申訴" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "提交擧報" @@ -7676,10 +8260,14 @@ msgstr "提交擧報" msgid "Subscribe" msgstr "訂閱" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "訂閱 @ {0} 去用呢啲標記:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "訂閱帳號動態" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "訂閱標記服務" @@ -7692,8 +8280,12 @@ msgstr "訂閱呢個標記服務" msgid "Subscribe to this list" msgstr "訂閱呢份清單" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "攪掂" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "攪掂!" @@ -7705,7 +8297,7 @@ msgstr "成功驗證" msgid "Suggested Accounts" msgstr "建議帳號" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "估你心水" @@ -7714,26 +8306,26 @@ msgstr "估你心水" msgid "Suggestive" msgstr "性暗示" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "日出" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "日落" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "支援" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "切換帳號" @@ -7742,24 +8334,24 @@ msgstr "切換帳號" msgid "Switch Account" msgstr "切換帳號" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "切換帳號" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "切換去 {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "系統" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "系統日誌" @@ -7767,15 +8359,27 @@ msgstr "系統日誌" msgid "Tags only" msgstr "只限標籤" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "撳去睇詳細資訊" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "撳去睇更多資訊" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "撳下即表示你瞭解同同意呢啲更新,兼繼續使用 Bluesky" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 msgid "Tap to close context menu" -msgstr "撳低去閂咗內容選單" +msgstr "撳下即閂咗內容選單" #: src/components/ProgressGuide/Toast.tsx:156 msgid "Tap to dismiss" -msgstr "撳低去跳過佢" +msgstr "撳下即跳過" #: src/state/shell/progress-guide.tsx:233 msgid "Task complete - 10 follows!" @@ -7811,12 +8415,14 @@ msgstr "講多少少嘢畀我哋聽" msgid "Terms" msgstr "條款" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "服務條款" @@ -7848,10 +8454,6 @@ msgstr "文字輸入欄位" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "多謝你嘅意見!意見經已轉達畀相關動態源維護者。" -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "多謝!你嘅電郵經已驗證成功。" - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "多謝,你嘅擧報經已送出。" @@ -7864,28 +8466,28 @@ msgstr "多謝,你經已成功驗證你嘅電郵地址。而家你可以閂咗 msgid "That contains the following:" msgstr "當中包含以下內容:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "呢個帳號代碼俾人用咗。" - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "搵唔到嗰個新手包。" +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "呢個用戶名俾人用咗" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "就噉先,咁多位!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "就係咁多喇!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "解除封鎖之後,呢個帳號就可以同你互動。" @@ -7900,7 +8502,7 @@ msgstr "App 將會重啓" msgid "The author of this thread has hidden this reply." msgstr "呢個討論串嘅作者隱藏咗呢個回覆。" -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Bluesky 網頁應用程式" @@ -7920,10 +8522,6 @@ msgstr "「Discover」動態源" msgid "The Discover feed now knows what you like" msgstr "「Discover」動態源而家明你鍾意啲咩喇" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "你輸入嘅電郵地址同你現時使用嘅地址一樣。" - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "用 App 嘅話體驗會更加好。即刻下載 Bluesky ,我哋會喺你離開嘅地方繼續。" @@ -7942,10 +8540,18 @@ msgstr "以下標記經已套用到你嘅內容度。" #: src/screens/ModerationInteractionSettings/index.tsx:42 msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." -msgstr "下低嘅設定會當成預設值套用到你新帖文度。你亦都可以出新帖文嗰陣去改返佢哋。" +msgstr "下低嘅設定會套用到你新帖文度。你亦都可以對個別帖文去變更設定。" -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "你所在地區嘅法例需要先驗證你係成年人,先至可以喺 Bluesky 度使用部分特定功能,譬如成人內容同對話功能。" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "你所在地區嘅法例需要先驗證你係成年人,先至可以喺 Bluesky 度使用部分特定功能。撳下即時知多啲。" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "呢條帖文可能經已刪咗。" @@ -7953,14 +8559,15 @@ msgstr "呢條帖文可能經已刪咗。" msgid "The Privacy Policy has been moved to <0/>" msgstr "私隱政策擺咗去 <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "揀咗嘅嗰條片大過 100 MB。" +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "你揀選嘅影片大過 100 MB。唔該用細啲嘅檔案試多次。" #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 msgid "The server appears to be experiencing issues. Please try again in a few moments." -msgstr "伺服器似乎遇到問題。唔該遲啲試多一次。" +msgstr "伺服器似乎遇到問題。唔該遲啲試多次。" #: src/screens/StarterPack/StarterPackScreen.tsx:741 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." @@ -7982,7 +8589,7 @@ msgstr "服務條款擺咗去" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "你提供嘅驗證碼無效。請確保你用咗正確嘅驗證連結,或申請多一次新嘅連結。" -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "主題" @@ -7990,14 +8597,14 @@ msgstr "主題" msgid "There is no time limit for account deactivation, come back any time." msgstr "帳號停用冇時間限制,幾時用返你話事。" -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "連線到 Tenor 嗰陣出咗問題。" #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "連線到伺服器嗰陣出咗問題" @@ -8006,23 +8613,18 @@ msgstr "連線到伺服器嗰陣出咗問題" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "連線到伺服器嗰陣出咗問題,請檢查互聯網連線跟住試多次。" -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "連線到你嘅伺服器嗰陣出咗問題" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." -msgstr "攞緊通知嗰陣出咗問題,撳呢度試多一次。" +msgstr "攞緊通知嗰陣出咗問題,撳呢度試多次。" -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." -msgstr "攞緊帖文嗰陣出咗問題,撳呢度試多一次。" +msgstr "攞緊帖文嗰陣出咗問題,撳呢度試多次。" #: src/view/com/lists/ListMembers.tsx:151 msgid "There was an issue fetching the list. Tap here to try again." -msgstr "攞緊清單嗰陣出咗問題,撳呢度試多一次。" +msgstr "攞緊清單嗰陣出咗問題,撳呢度試多次。" #: src/screens/Settings/AppPasswords.tsx:60 msgid "There was an issue fetching your app passwords" @@ -8031,15 +8633,15 @@ msgstr "取得 App 專用密碼嗰陣出咗問題" #: src/view/com/feeds/ProfileFeedgens.tsx:151 #: src/view/com/lists/ProfileLists.tsx:150 msgid "There was an issue fetching your lists. Tap here to try again." -msgstr "攞緊清單嗰陣出咗問題,撳呢度試多一次。" +msgstr "攞緊清單嗰陣出咗問題,撳呢度試多次。" #: src/screens/Settings/components/ChangeHandleDialog.tsx:107 msgid "There was an issue fetching your service info" msgstr "取得你嘅服務資料嗰陣出咗問題" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." -msgstr "刪除動態源嗰陣出咗問題。請檢查你嘅互聯網連線,跟住試多一次。" +msgstr "刪除動態源嗰陣出咗問題。請檢查你嘅互聯網連線,跟住試多次。" #: src/components/dms/ReportDialog.tsx:259 #: src/components/ReportDialog/SubmitView.tsx:88 @@ -8050,11 +8652,11 @@ msgstr "交緊你嘅擧報嗰陣出咗問題,請檢查你嘅互聯網連線。 #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:71 msgid "There was an issue updating your feeds, please check your internet connection and try again." -msgstr "更新你嘅動態源嗰陣出咗問題,請檢查你嘅互聯網連線,跟住試多一次。" +msgstr "更新你嘅動態源嗰陣出咗問題,請檢查你嘅互聯網連線,跟住試多次。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "更新你嘅動態源嗰陣出咗問題,請檢查你嘅互聯網連線 msgid "There was an issue! {0}" msgstr "{0} 出咗問題!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8078,9 +8680,9 @@ msgstr "{0} 出咗問題!" #: src/view/screens/ProfileList.tsx:447 #: src/view/screens/ProfileList.tsx:465 msgid "There was an issue. Please check your internet connection and try again." -msgstr "出咗問題。請檢查你嘅互聯網連線,跟住試多一次。" +msgstr "出咗問題。請檢查你嘅互聯網連線,跟住試多次。" -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "應用程式出現咗一個估都估唔到嘅問題。若然你有呢種情況嘅話唔該話畀我哋知!" @@ -8089,7 +8691,7 @@ msgstr "應用程式出現咗一個估都估唔到嘅問題。若然你有呢種 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Bluesky 家陣有一大班人加入!我哋會盡快啓用你嘅帳號。" -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "呢啲設定淨係俾「Following」動態源用。" @@ -8146,7 +8748,7 @@ msgstr "呢個內容係 {0} 所託管。你有冇諗過去啓用外部媒體嚟 msgid "This content is not available because one of the users involved has blocked the other." msgstr "由於佢哋其中一人封鎖咗對方,導致睇唔到呢個內容。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "呢個內容要你有 Bluesky 帳號先至睇到。" @@ -8158,6 +8760,10 @@ msgstr "同你對話嗰個人經已停用或刪除帳號,撳低去檢視選項 msgid "This email is already associated with your account." msgstr "呢個電郵經已綁定咗你嘅帳號。" +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "呢個功能可以畀其他用戶喺你出新帖或回覆嗰陣收到通知。你想開畀邊啲人?" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "呢個功能仲喺測試階段。你可以睇 <0>呢篇網誌 知多啲匯出資料嘅資訊。" @@ -8170,9 +8776,9 @@ msgstr "呢個功能喺用 App 專用密碼嗰陣唔畀用。請用你嘅主密 msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "呢個功能喺用 App 專用密碼嗰陣唔畀用,請用返你嘅主要密碼登入。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." -msgstr "而家呢個動態源皆因好多人用緊導致暫時用唔到。唔該遲啲試多一次。" +msgstr "而家呢個動態源皆因好多人用緊導致暫時用唔到。唔該遲啲試多次。" #: src/view/com/posts/CustomFeedEmptyState.tsx:38 msgid "This feed is empty! You may need to follow more users or tune your language settings." @@ -8209,11 +8815,11 @@ msgstr "呢個標記係發布者所加。" msgid "This label was applied by you." msgstr "呢個標記係你所加。" -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "呢個標記服務仲未公開佢發布嘅標記類型,亦有可能唔會再提供服務。" -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "呢個連結會帶你去到下低嘅網站:" @@ -8231,31 +8837,30 @@ msgstr "呢份清單度得個吉。" #: src/screens/Profile/ErrorState.tsx:40 msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." -msgstr "呢個內容審覈服務用唔到,留意下低詳情瞭解更多嘢。若然呢個問題仲有嘅話,請聯絡我哋。" +msgstr "呢個內容審覈服務用唔到,留意下低瞭解更多資訊。若然呢個問題仲係持續發生,請聯絡我哋。" -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "呢條帖文話係話喺 <0>{0} 發布嘅,但係最先出現喺 Bluesky 嘅時間係喺 <1>{1}。" -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "呢條帖文存在未知嘅內容類型,你 App 嘅版本可能過咗期。" -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "呢條帖文經已刪咗。" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "呢條帖文淨係畀登入咗嘅用戶睇,冇得俾未登入嘅人睇。" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "呢條帖文淨係得登入咗嘅用戶先睇到。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "呢條帖文將會喺討論串同動態源度隱藏,呢個操作冇得取消。" -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "呢條帖文嘅發布者唔俾人引用。" @@ -8263,11 +8868,11 @@ msgstr "呢條帖文嘅發布者唔俾人引用。" msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "呢份個人檔案淨係畀登入咗嘅用戶睇,冇得俾未登入嘅人睇。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "呢個回覆會摺疊到你討論串下底嘅隱藏部分,兼且會爲你自己同其他人靜音後續回覆嘅通知。" -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "呢個服務未有提供服務條款或私隱政策。" @@ -8275,6 +8880,10 @@ msgstr "呢個服務未有提供服務條款或私隱政策。" msgid "This should create a domain record at:" msgstr "呢個應該會喺以下位置建立一個網域名稱記錄:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "呢個過程幾分鐘就攪掂。" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "呢個用戶仲未設定名稱,因此唔得授予驗證。" @@ -8316,16 +8925,18 @@ msgstr "呢個用戶未有跟過任何人。" msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "噉做會喺你要靜音嘅字詞度刪咗「{0}」去,你鍾意嘅話幾時加返佢都得。" -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "噉樣會喺快速存取清單度移除 @{0}。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "你嘅帖文會喺呢篇引用嘅帖文度刪除,兼且將佢換成一個佔位標記。" -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "討論串選項" @@ -8334,24 +8945,27 @@ msgstr "討論串選項" msgid "Thread preferences" msgstr "討論串偏好設定" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "討論串偏好設定" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "樹狀模式" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" -msgstr "樹狀視圖模式" +msgstr "樹狀介面模式" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "討論串偏好設定" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "剩餘時間:{0, plural, one {# 秒} other {# 秒}}" @@ -8376,42 +8990,56 @@ msgstr "你諗住將呢份擧報提交畀邊位?" msgid "Today" msgstr "今日" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "切換下拉式選單" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "切換控制啓用或停用成人內容" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "切換聲音" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "至 Hit" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "熱門回覆行先" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "話題" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "翻譯" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "樹狀介面" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "時興話題" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "時興影片" @@ -8422,20 +9050,16 @@ msgstr "信任源於人際關係、社羣同共享嘅背景,所以我哋亦都 #: src/view/com/util/error/ErrorScreen.tsx:103 msgctxt "action" msgid "Try again" -msgstr "試多一次" +msgstr "試多次" #: src/screens/Onboarding/state.ts:115 msgid "TV" msgstr "電視節目" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "雙重驗證(2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "輸入你想要嘅用戶名" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "喺呢度輸入你嘅訊息" @@ -8447,34 +9071,50 @@ msgstr "種類:" #: src/lib/hooks/useCleanError.ts:27 #: src/lib/strings/errors.ts:11 msgid "Unable to connect. Please check your internet connection and try again." -msgstr "無法連線到伺服器。請檢查你嘅互聯網連線,跟住試多一次。" +msgstr "連線唔到伺服器。請檢查你嘅互聯網連線,跟住試多次。" #: src/screens/Login/ForgotPasswordForm.tsx:68 #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." -msgstr "無法連接到服務,請檢查你嘅互聯網連線。" +msgstr "連線唔到服務,請檢查你嘅互聯網連線。" #: src/screens/StarterPack/StarterPackScreen.tsx:673 msgid "Unable to delete" msgstr "刪唔到" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "唔再套用 Pull Request" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "唔再套用 Pull Request {currentChannel}" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "目前用唔到" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "取用唔到動態源資訊" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "解除封鎖" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "解除封鎖" @@ -8486,7 +9126,7 @@ msgstr "解除封鎖" msgid "Unblock account" msgstr "解除封鎖帳號" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "係咪要解除封鎖帳號?" @@ -8495,13 +9135,13 @@ msgstr "係咪要解除封鎖帳號?" msgid "Unblock list" msgstr "解除封鎖清單" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "唔再轉發" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "唔再轉發({0, plural, one {# 次轉發} other {# 次轉發}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "唔再跟佢" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "唔再跟 {0}" @@ -8523,7 +9163,7 @@ msgstr "唔再跟佢" msgid "Unfollows the user" msgstr "唔再跟呢位用戶" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "唔好意思,你訂閱嘅標記服務冇一個係支援呢個擧報類型。" @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "唔再讚佢" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "唔再讚佢({0, plural, one {# 人讚佢} other {# 人讚佢}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "唔再靜音" @@ -8555,8 +9195,8 @@ msgstr "唔再靜音" msgid "Unmute {tag}" msgstr "唔再靜音 {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "唔再靜音對話" msgid "Unmute list" msgstr "唔再靜音清單" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "唔再靜音討論串" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "唔再靜音影片" @@ -8597,8 +9237,8 @@ msgstr "唔再固定動態源" msgid "Unpin from home" msgstr "唔再喺首頁度固定" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "唔再喺個人檔案度固定" @@ -8614,8 +9254,8 @@ msgstr "唔再喺首頁度固定 {0}" msgid "Unpinned from your feeds" msgstr "唔再喺你嘅動態源度固定" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "唔再暫停電郵提醒" @@ -8636,7 +9276,7 @@ msgstr "唔再訂閱呢個標記服務" msgid "Unsubscribed from list" msgstr "經已喺清單度唔再訂閱" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "唔支援嘅影片類型" @@ -8662,8 +9302,8 @@ msgstr "要喺邊啲清單度加入或刪除 <0> {displayName} ?" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "更新電郵" @@ -8676,17 +9316,17 @@ msgstr "更新成 {domain}" msgid "Update your email" msgstr "更新你嘅電郵" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "更新唔到引用連結狀態" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "更新唔到回覆可見度" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "更新緊……" @@ -8698,35 +9338,35 @@ msgstr "或上載圖片" msgid "Upload a text file to:" msgstr "上載文字檔案到:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "喺相機度上載" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "喺檔案度上載" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" -msgstr "喺圖片庫度上載" +msgstr "喺相片圖庫度上載" #: src/lib/api/index.ts:302 msgid "Uploading images..." msgstr "上載緊圖片……" -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "上載緊連結縮圖……" -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "上載緊條片……" @@ -8761,6 +9401,10 @@ msgstr "使用建議選項" msgid "Use this to sign in to the other app along with your handle." msgstr "用呢個嚟登入另一個 App 同埋你嘅帳號代碼。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "用你帳號嘅電郵地址,抑或係擁有嘅其他眞實電郵地址,以防 KWS 或 Bluesky 需要同你聯絡。" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "用戶:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "用戶清單經已更新" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "用戶名或電郵地址" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "<0>@{0} 跟咗嘅用戶" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "跟緊 <0>@{0} 嘅用戶" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "我跟嘅用戶" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "「{0}」中嘅用戶" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "你跟嘅用戶" @@ -8844,13 +9500,13 @@ msgstr "值:" #: src/components/verification/VerificationCreatePrompt.tsx:39 msgid "Verification failed, please try again." -msgstr "授予唔到驗證,唔該試多一次。" +msgstr "授予唔到驗證,唔該試多次。" -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "驗證設定" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "驗證設定" @@ -8870,8 +9526,15 @@ msgstr "驗證者:" msgid "Verify account" msgstr "驗證帳號" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "重新驗證" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "驗證碼" @@ -8880,21 +9543,20 @@ msgstr "驗證碼" msgid "Verify DNS Record" msgstr "驗證 DNS 記錄" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "驗證電郵" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "驗證電郵碼" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "驗證電郵對話框" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "即刻驗證" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "驗證文字檔案" msgid "Verify this account?" msgstr "係咪要授予驗證呢個帳號?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "驗證你嘅年齡" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "驗證你嘅電郵" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "驗證你嘅電郵" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "驗證緊" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "確認緊你嘅年齡驗證狀態" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "版本 {appVersion}" +msgid "Version {0}" +msgstr "版本 {0}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "影片" @@ -8928,7 +9598,7 @@ msgstr "影片" msgid "Video failed to process" msgstr "影片處理失敗" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "影片動態源" @@ -8942,15 +9612,15 @@ msgstr "影片嚟自 {0}:{text}" msgid "Video Games" msgstr "電子遊戲" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "條片經已暫停" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "條片播緊" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "搵唔到條片。" @@ -8958,11 +9628,11 @@ msgstr "搵唔到條片。" msgid "Video settings" msgstr "影片設定" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "影片上載成功" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "影片:{0}" @@ -8979,11 +9649,11 @@ msgstr "啲片一定要短過 3 分鐘" msgid "View {0}'s avatar" msgstr "睇下 {0} 嘅頭像" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "睇下 {0} 嘅個人檔案" @@ -8991,7 +9661,7 @@ msgstr "睇下 {0} 嘅個人檔案" msgid "View {displayName}'s profile" msgstr "睇下 {displayName} 嘅個人檔案" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "睇下被封鎖用戶嘅個人檔案" @@ -9009,7 +9679,6 @@ msgstr "睇下調試條目" msgid "View details" msgstr "睇下詳細資訊" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "睇下報告侵犯版權嘅詳細資訊" @@ -9022,23 +9691,23 @@ msgstr "睇下完整嘅討論串" msgid "View information about these labels" msgstr "睇下同呢啲標記有挐掕嘅詳細資訊" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "睇晒佢哋" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "睇下個人檔案" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "睇下頭像" @@ -9054,28 +9723,28 @@ msgstr "睇下呢個用戶嘅認證" msgid "View users who like this feed" msgstr "睇下邊啲人讚過呢個動態源" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "睇片" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "睇下你封鎖咗嘅帳號" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "睇下你預設嘅帖文互動設定" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "睇下你嘅動態源同埋探索更多" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "睇下你嘅內容審覈清單" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "睇下你靜音咗嘅帳號" @@ -9083,8 +9752,8 @@ msgstr "睇下你靜音咗嘅帳號" msgid "View your verifications" msgstr "睇下你嘅認證" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "睇下完整圖片" @@ -9092,16 +9761,20 @@ msgstr "睇下完整圖片" msgid "Views video in immersive mode" msgstr "進入沉浸模式睇片" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" -msgstr "去到網站" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" +msgstr "訪問網站" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "去到你嘅通知設定" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "音量" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "警告內容兼且喺動態源度篩選" msgid "Watch now" msgstr "即刻去睇" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "我哋連線唔到提供呢個動態源嘅服務。服務可能遇到問題以至暫時用唔到,或經已唔再提供服務。" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "我哋搵唔到呢份清單,可能已經刪咗。" + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "我哋搵唔到同呢個標籤有挐掕嘅結果。" @@ -9128,7 +9809,7 @@ msgstr "我哋搵唔到同呢個標籤有挐掕嘅結果。" msgid "We couldn't find any results for that topic." msgstr "我哋搵唔到同呢個話題有挐掕嘅結果。" -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "我哋撈唔到呢個對話" @@ -9136,6 +9817,10 @@ msgstr "我哋撈唔到呢個對話" msgid "We estimate {estimatedTime} until your account is ready." msgstr "我哋估計仲要 {estimatedTime} 先至可以攪掂你個帳號。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "我哋同 <0>KWS 合作去驗證你係一個成年人。喺你撳「開始」掣之後,KWS 會檢查你係咪用過呢個電郵地址,喺其他由 KWS 技術支援嘅遊戲/服務度驗證過年齡。若然未驗證過,KWS 會用電郵寄指示畀你,敎你點樣驗證年齡。攪掂之後,你會俾帶返嚟去繼續用 Bluesky。" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "我哋傳送咗另一封驗證電郵去到 <0>{0} 度。" @@ -9148,35 +9833,39 @@ msgstr "我哋希望你玩得開心。唔好忘記,Bluesky 係:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "你經已睇晒你跟緊啲人嘅帖文。呢個係 <0/> 嘅最新消息。" -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "我哋建議你至少揀兩個啱心水嘅主題。" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "我哋送咗封含有連結嘅電郵去 <0>{0} 度。請撳開佢去完成電郵驗證流程。" -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." -msgstr "我哋確定唔到你有冇上載影片權限,唔該試多一次。" +msgstr "我哋確定唔到你有冇上載影片權限,唔該試多次。" #: src/components/dialogs/BirthDateSettings.tsx:52 msgid "We were unable to load your birth date preferences. Please try again." -msgstr "我哋撈唔到你嘅出世日期偏好設定,唔該試多一次。" +msgstr "我哋撈唔到你嘅出世日期偏好設定,唔該試多次。" -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "我哋而家撈唔到你訂閱咗嘅標記服務。" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "我哋因遇着連線問題接收唔到驗證狀態,可能需要啲時間。你個帳號會喺確認後自動恢復。" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." -msgstr "我哋無法連線到網絡,唔該試多一次去繼續設定你嘅帳號。仲係唔得嘅話,你可以跳過呢段流程。" +msgstr "我哋連線唔到網絡,唔該試多次去繼續設定你嘅帳號。仲係唔得嘅話,你可以跳過呢段流程。" #: src/screens/SignupQueued.tsx:164 msgid "We will let you know when your account is ready." msgstr "我哋會喺攪掂你嘅帳號嗰陣通知你。" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "我哋將送封含有連結嘅電郵去 <0>{0} 度。請撳開佢去完成電郵驗證流程。" @@ -9184,16 +9873,32 @@ msgstr "我哋將送封含有連結嘅電郵去 <0>{0} 度。請撳開佢去 msgid "We'll use this to help customize your experience." msgstr "我哋會用呢啲資料去幫你度身訂造體驗。" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "我哋同時都改進緊<0>社羣守則,亦都希望聽取你嘅意見!新守則會喺 2025 年 10 月 15 號生效。" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "我哋同時都改進緊社羣守則,亦都希望聽取你嘅意見!新守則會喺 2025 年 10 月 15 號生效。" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "我哋喺伺服器度確認緊你嘅年齡驗證狀態。呢個過程幾秒鐘就攪掂。" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "我哋喺請求開始你嘅帳號年齡驗證流程遇着問題。請<0>聯絡支援以取得協助。" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" -msgstr "我哋遇到網絡問題,唔該試多一次" +msgstr "我哋遇到網絡問題,唔該試多次" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "同你介紹 Bluesky 嘅全新驗證機制 —— 驗證標記。" -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "我哋好高興你可以加入 Bluesky!" @@ -9203,17 +9908,17 @@ msgstr "對唔住,但係我哋解析唔到呢份清單。若然呢個問題仲 #: src/components/dialogs/MutedWords.tsx:378 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." -msgstr "對唔住,我哋而家撈唔到你啲靜音字詞。唔該試多一次。" +msgstr "對唔住,我哋而家撈唔到你啲靜音字詞。唔該試多次。" -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "對唔住,你嘅搵嘢任務未攪得掂。唔該等多幾分鐘試下。" -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "對唔住!你覆緊嘅帖文經已俾人刪咗。" -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "對唔住!我哋搵唔到你要搵嘅頁面。" @@ -9222,6 +9927,26 @@ msgstr "對唔住!我哋搵唔到你要搵嘅頁面。" msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "對唔住!你淨係可以訂閱 20 個標記服務,而你經已達到上限。" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "我哋正在更新<0>服務條款、<1>私隱政策,同<2>版權政策,於 2025 年 9 月 15 號開始生效。" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "我哋正在更新政策" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "我哋正在更新服務條款、私隱政策,同版權政策,於 2025 年 9 月 15 號開始生效。" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "我哋正在更新服務條款、私隱政策,同版權政策,於 2025 年 9 月 15 號開始生效。我哋同時都改進緊社羣守則,亦都希望聽取你嘅意見!新守則會喺 2025 年 10 月 15 號生效。想知多啲呢啲變化資訊以及點樣同我哋分享你嘅睇法,可以閱讀我哋嘅網誌文章。" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "我哋經已確認你嘅年齡驗證狀態。你而家可以閂咗呢個對話框。" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "歡迎返嚟!" @@ -9240,7 +9965,7 @@ msgstr "你諗住點嗌你嘅新手包?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "有咩大件事?" @@ -9256,11 +9981,11 @@ msgstr "呢條帖文用咗邊啲語言?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "你諗住喺演算法動態源度睇到邊啲語言?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "邊個可以喺呢篇帖文度互動?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "邊個可以回覆" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "邊啲人可以授權認證?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "大鑊!" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "大鑊!撈唔度時興影片。" @@ -9322,12 +10047,12 @@ msgstr "點解要審查呢個用戶?" msgid "Write a message" msgstr "撰寫訊息" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "撰寫帖文" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "寫低你嘅回覆" @@ -9358,11 +10083,11 @@ msgstr "係,停用佢" msgid "Yes, delete this starter pack" msgstr "係,刪咗呢個新手包" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "係,分離佢" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "係,隱藏佢" @@ -9378,6 +10103,10 @@ msgstr "尋日" msgid "You" msgstr "你" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "你亦同意<0>社羣守則。<1>新嘅社羣守則將於 10 月 15 號生效。" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "你係受信任嘅認證者" @@ -9386,6 +10115,10 @@ msgstr "你係受信任嘅認證者" msgid "You are creating an account on" msgstr "你嘅帳號將建立於" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "你而家取用唔到 Bluesky 嘅年齡驗證流程。若然你覺得係系統誤判,請<0>聯絡我哋嘅支援團隊。" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "你而家喺等待名單度。" @@ -9403,7 +10136,7 @@ msgstr "你已停止直播" msgid "You are not allowed to go live" msgstr "你唔得開直播" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "你唔得上載影片。" @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "你經已驗證" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "你經已驗證。若然你變更名稱,將會失去驗證狀態。<0>想知多啲。" @@ -9441,10 +10173,18 @@ msgstr "你亦都可以探索同埋去跟其他啲自訂動態源。" msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "你亦都可以暫時停用你嘅帳號,重新啓用嘅話幾時都得。" -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "你可以喺 App 度嘅傾偈設定揀返通知想唔想有聲" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "無論你揀咗邊個設定,你都可以繼續返之前嘅對話。" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "你而家可以揀喺邊個人出新帖嗰陣收到通知喇。若然你想快啲收到某人嘅通知,可以去佢嘅個人檔案,撳「跟佢」掣隔籬嘅鐘仔圖標接收通知。" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "你而家可以用你嘅新密碼登入。" msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "你可以重新啓用你嘅帳號嚟繼續登入,你嘅個人檔案同帖文會畀返其他用戶睇到。" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "你可以喺 <0>設定 → 內容審覈 → 互動設定 度調整預設互動設定。" #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "你可以遲啲喺設定度改返。" @@ -9472,7 +10212,7 @@ msgstr "你未有任何擁躉。" msgid "You don't follow any users who follow @{name}." msgstr "你未有跟任何跟咗 @{name} 嘅用戶。" -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "你而家未有任何傾偈邀請。" @@ -9480,15 +10220,15 @@ msgstr "你而家未有任何傾偈邀請。" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "你仲未有任何邀請碼!當你用開 Bluesky 一排,我哋就會送啲邀請碼畀你。" -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "你仲未有任何固定咗嘅動態源。" -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "你仲未有任何儲存咗嘅動態源。" -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "你經已封鎖咗個發布者,或你俾個發布者封鎖咗。" @@ -9502,6 +10242,10 @@ msgstr "你經已封鎖呢個用戶" msgid "You have blocked this user. You cannot view their content." msgstr "你經已封鎖咗呢個用戶,你冇得睇佢哋嘅內容。" +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "你經已停用晒回覆、引用同提及嘅通知,因此呢個頁面將唔會再更新。要校返嘅話,請去到你嘅<0>通知設定。" + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "你經已靜音咗呢個帳號。" msgid "You have muted this user" msgstr "你經已將呢個用戶靜音" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "你仲未同人傾過偈,試下同其他人傾偈啦!" @@ -9547,7 +10291,7 @@ msgstr "你仲未封鎖過任何帳號。若然想封鎖帳號,去到佢個人 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "你仲未有靜音過任何帳號。若然想靜音帳號,去到佢個人檔案,喺佢個帳號上高嘅選單度揀「靜音帳號」。" -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "你經已睇晒所有嘢喇" @@ -9557,7 +10301,7 @@ msgstr "你經已成功驗證電郵地址。你而家可以閂咗呢個對話框 #: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." -msgstr "你暫時經已達到上載影片嘅上限,唔該遲啲試多一次。" +msgstr "你暫時經已達到上載影片嘅上限,唔該遲啲試多次。" #: src/components/StarterPack/ProfileStarterPacks.tsx:263 msgid "You haven't created a starter pack yet!" @@ -9572,6 +10316,10 @@ msgstr "你仲未靜音過任何字詞或標籤" msgid "You hid this reply." msgstr "你隱藏咗呢個回覆。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "你喺 {0} 前經已開始咗呢個流程,電郵應該喺 5 分鐘內送達你嘅電郵信箱。唔該等多幾分鐘再試多次。" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "若然你覺得其他人標記內容唔啱,可以提出申訴。" @@ -9592,7 +10340,7 @@ msgstr "你最多可以加入 3 個動態源" msgid "You may only select up to 4 images" msgstr "你最多可以揀選 4 張圖片" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "你一定要年滿 13 歲先可以建立帳號。" @@ -9600,6 +10348,14 @@ msgstr "你一定要年滿 13 歲先可以建立帳號。" msgid "You must be following at least seven other people to generate a starter pack." msgstr "你必須跟住至少 7 個人先至可以生成新手套裝。" +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "你必須通過年齡驗證以取用下低嘅設定。" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "你必須通過年齡驗證以取用呢個畫面。" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "你必須授予相片圖庫取用權限先至可以儲存 QR code" @@ -9608,6 +10364,11 @@ msgstr "你必須授予相片圖庫取用權限先至可以儲存 QR code" msgid "You must select at least one labeler for a report" msgstr "你必須揀選至少一個標記服務嚟提交擧報" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "你必須登入先睇到呢條帖文。" + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "你需要驗證你個電郵地址先至啓用到電郵雙重驗證。" @@ -9616,7 +10377,7 @@ msgstr "你需要驗證你個電郵地址先至啓用到電郵雙重驗證。" msgid "You previously deactivated @{0}." msgstr "你之前停用咗 @{0}。" -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "你家陣可能要重新啓用個 App。" @@ -9628,18 +10389,22 @@ msgstr "你畀咗個 {0} 反應" msgid "You reacted {0} to {1}" msgstr "你對 {1} 畀咗個 {0} 反應" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "你將會登出所有帳號。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "你將唔會再收到 {0} 嘅動態通知" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "你唔會再收到呢個討論串嘅通知" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" -msgstr "你而家會收到呢個討論串嘅通知" +msgstr "你而家會持續收到呢個討論串嘅通知" #: src/screens/Login/SetNewPasswordForm.tsx:108 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." @@ -9657,11 +10422,11 @@ msgstr "你:{defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "你:{short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "建立完帳號之後,你就會自動跟啲建議嘅用戶同動態源!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "建立完帳號之後,你就會自動跟啲建議嘅用戶!" @@ -9673,9 +10438,9 @@ msgstr "你會跟住呢啲人同另外 {0} 人" msgid "You'll follow these people right away" msgstr "你會即刻跟住呢啲人" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "你會喺 <0>{0} 收到一封電郵嚟驗證係你。" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "你將開始收到 {0} 嘅動態通知!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,27 +10468,35 @@ msgstr "你揀咗喺呢條帖文度隱藏字詞或標籤。" msgid "You've found some people to follow" msgstr "你經已搵到你要跟邊啲人" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "你經已轆到最㞘。" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "你經已睇晒你嘅動態源喇!去搵更多人嚟跟佢哋啦。" #: src/lib/hooks/useCleanError.ts:58 msgid "You've reached the maximum number of requests allowed. Please try again later." -msgstr "你經已達到請求數上限。唔該遲啲試多一次。" +msgstr "你經已達到請求數上限。唔該遲啲試多次。" -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "你經已轆到頭位。" + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "你經已達到每日上載影片嘅上限(總計影片大細過大)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "你經已達到每日上載影片嘅上限(影片數量過多)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "你睇晒所有嘢喇。可能係時候要唞陣先?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "你嘅帳號" @@ -9735,9 +10508,9 @@ msgstr "你嘅帳號經已刪除" msgid "Your account has been suspended" msgstr "你嘅帳號經已被停權" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." -msgstr "你嘅帳號太新未得畀你上載影片。唔該遲啲試多一次。" +msgstr "你嘅帳號太新未得畀你上載影片。唔該遲啲試多次。" #: src/screens/Settings/components/ExportCarDialog.tsx:67 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." @@ -9751,11 +10524,11 @@ msgstr "你嘅帳號被判定違反咗 <0>Bluesky Social 服務條款。你 msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "你嘅申訴經已提交。若然判決上訴得直我哋會透過電郵通知你。" -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "你嘅出世日期" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "你個瀏覽器唔支援呢種影片格式,請試下用唔同嘅瀏覽器。" @@ -9771,30 +10544,28 @@ msgstr "系統會記住你嘅選擇,之後開啓連結嗰陣會用返佢。你 msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "你而家嘅帳號代碼 <0>{0} 會自動幫你留住。方便你之後轉返去用之前嘅頭銜。" -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "你個電郵地址經已更新,但仲未驗證。跟住唔該你驗證返個新電郵地址。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "你嘅電郵" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "你嘅電郵似乎無效。" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65 msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." -msgstr "你嘅電郵仲未驗證。請驗證你嘅電郵先至可以享用所有 Bluesky 嘅功能。" - -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "你嘅電郵仲未驗證。呢個係我哋建議嘅重要保安措施,點都好攪掂個驗證先。" +msgstr "你嘅電郵仲未驗證。請驗證你嘅電郵以便享用所有 Bluesky 嘅功能。" #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "你嘅第一個讚!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "你嘅擁躉" @@ -9806,19 +10577,15 @@ msgstr "你嘅「Following」動態源度得個吉!跟多啲用戶睇下發生 msgid "Your full handle will be <0>@{0}" msgstr "你嘅完整帳號代碼會係 <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "你嘅完整用戶名會係 <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "你嘅心水主題" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "你嘅心水主題經已更新!" @@ -9835,15 +10602,15 @@ msgstr "你設定咗嘅靜音字" msgid "Your password has been changed successfully!" msgstr "你嘅密碼經已變更成功!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "你輸入嘅密碼必須至少要 8 個字元。" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "你嘅帖文經已發布" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "你嘅帖文經已發布" @@ -9851,15 +10618,19 @@ msgstr "你嘅帖文經已發布" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "你嘅帖文、讚好同封鎖都係公開嘅。之但係靜音嗰度淨係得你至知。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "你嘅偏好語言" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "你嘅個人檔案、帖文、動態源同埋清單唔會再畀其他 Bluesky 用戶睇到。你幾時都可以登入重新啓用你嘅帳號。" -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "你嘅回覆經已發布" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "你嘅擧報會提交去 <0>{0}。" @@ -9867,7 +10638,7 @@ msgstr "你嘅擧報會提交去 <0>{0}。" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "你嘅擧報會提交到 Bluesky 內容審覈服務度" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "你揀選嘅心水主題可以幫我哋提供更多你所關注嘅內容。" diff --git a/src/locale/locales/zh-TW/messages.po b/src/locale/locales/zh-TW/messages.po index 9b2e440015..509abc7db5 100644 --- a/src/locale/locales/zh-TW/messages.po +++ b/src/locale/locales/zh-TW/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: zh\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-30 23:40\n" +"PO-Revision-Date: 2025-08-12 01:46\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -27,7 +27,7 @@ msgstr "(活躍)" msgid "(contains embedded content)" msgstr "(包含嵌入內容)" -#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:69 msgid "(no email)" msgstr "(沒有電子信箱)" @@ -79,9 +79,9 @@ msgstr "{0, plural, one {# 則轉發} other {# 則轉發}}" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {# 秒} other {# 秒}}" -#: src/view/shell/bottom-bar/BottomBar.tsx:215 -#: src/view/shell/bottom-bar/BottomBar.tsx:247 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:225 +#: src/view/shell/bottom-bar/BottomBar.tsx:257 +#: src/view/shell/Drawer.tsx:487 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# 則未讀} other {# 則未讀}}" @@ -90,17 +90,18 @@ msgstr "{0, plural, one {# 則未讀} other {# 則未讀}}" msgid "{0, plural, one {#mo} other {#mo}}" msgstr "{0, plural, one {# 個月前} other {# 個月前}}" -#: src/components/ProfileHoverCard/index.web.tsx:442 +#: src/components/ProfileHoverCard/index.web.tsx:444 #: src/screens/Profile/Header/Metrics.tsx:22 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {個跟隨者} other {個跟隨者}}" -#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:448 #: src/screens/Profile/Header/Metrics.tsx:26 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {個跟隨中} other {個跟隨中}}" -#: src/view/com/post-thread/PostThreadItem.tsx:529 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 +#: src/view/com/post-thread/PostThreadItem.tsx:537 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {個喜歡} other {個喜歡}}" @@ -108,11 +109,13 @@ msgstr "{0, plural, one {個喜歡} other {個喜歡}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {則貼文} other {則貼文}}" -#: src/view/com/post-thread/PostThreadItem.tsx:513 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +#: src/view/com/post-thread/PostThreadItem.tsx:521 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {次引用} other {次引用}}" -#: src/view/com/post-thread/PostThreadItem.tsx:495 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:434 +#: src/view/com/post-thread/PostThreadItem.tsx:503 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {則轉發} other {則轉發}}" @@ -135,6 +138,10 @@ msgstr "{0} <0> — <1>標籤" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0> — <1>文字和標籤" +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "{0} 個跟隨中" + #: src/components/live/LiveStatusDialog.tsx:68 msgid "{0} is live" msgstr "{0} 正在直播" @@ -143,11 +150,15 @@ msgstr "{0} 正在直播" msgid "{0} is not a valid URL" msgstr "{0} 不是有效的網址" +#: src/screens/Signup/StepHandle/index.tsx:189 +msgid "{0} is not available" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "本週加入了 {0} 人" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:202 msgid "{0} of {1}" msgstr "第 {0} 個 (共 {1} 個)" @@ -164,14 +175,22 @@ msgstr "{0} 做出了 {1} 反應" msgid "{0} reacted {1} to {2}" msgstr "{0} 對 {2} 做出了 {1} 反應" -#: src/view/com/util/UserAvatar.tsx:559 -#: src/view/com/util/UserAvatar.tsx:577 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "{0},來自 {1} 的動態源,{2} 對此表示喜歡" + +#: src/view/com/feeds/FeedSourceCard.tsx:188 +msgid "{0}, a list by {1}" +msgstr "{0},來自 {1} 的列表" + +#: src/view/com/util/UserAvatar.tsx:572 +#: src/view/com/util/UserAvatar.tsx:590 msgid "{0}'s avatar" msgstr "「{0}」的大頭貼照" #: src/screens/StarterPack/Wizard/StepDetails.tsx:74 msgid "{0}'s favorite feeds and people - join me!" -msgstr "「{0}」最愛的動態源和人物 - 快來加入我的行列吧!" +msgstr "「{0}」最愛的動態源和人物⸺快來加入我的行列吧!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:46 msgid "{0}'s starter pack" @@ -197,12 +216,12 @@ msgstr "{0} 分鐘前" msgid "{0}s" msgstr "{0} 秒前" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# 則未讀} other {# 則未讀}}" #: src/lib/generate-starterpack.ts:111 -#: src/screens/StarterPack/Wizard/index.tsx:178 +#: src/screens/StarterPack/Wizard/index.tsx:184 msgid "{displayName}'s Starter Pack" msgstr "「{displayName}」的新手包" @@ -214,164 +233,163 @@ msgstr "{estimatedTimeHrs, plural, one {時} other {時}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {分} other {分}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} 和<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}跟隨了您" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} 和<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}對您的自訂動態源表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:254 +#: src/view/com/notifications/NotificationFeedItem.tsx:272 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} 和<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}表示喜歡您的貼文" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:484 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" +msgstr "{firstAuthorLink} 和<0>{additionalAuthorsCount, plural, other {其他{formattedAuthorsCount} 人}}對您轉發的貼文表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:439 +#: src/view/com/notifications/NotificationFeedItem.tsx:457 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} 和<0>{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}撤回了對您帳號的驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:278 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} 和<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}轉發了您的貼文" -#: src/view/com/notifications/NotificationFeedItem.tsx:490 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "{firstAuthorLink} 和<0>{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}轉發了您轉發的貼文" -#: src/view/com/notifications/NotificationFeedItem.tsx:385 +#: src/view/com/notifications/NotificationFeedItem.tsx:403 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} 和<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}使用了您的新手包註冊" -#: src/view/com/notifications/NotificationFeedItem.tsx:414 +#: src/view/com/notifications/NotificationFeedItem.tsx:432 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} 和<0>{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}對您授予了驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:347 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} 跟隨了您" -#: src/view/com/notifications/NotificationFeedItem.tsx:324 +#: src/view/com/notifications/NotificationFeedItem.tsx:342 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} 回跟了您" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:391 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} 對您的自訂動態源表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:266 +#: src/view/com/notifications/NotificationFeedItem.tsx:284 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} 對您的貼文表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} liked your repost" -msgstr "" +msgstr "{firstAuthorLink} 對您轉發的貼文表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} 撤回了對您帳號的驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:290 +#: src/view/com/notifications/NotificationFeedItem.tsx:308 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} 轉發了您的貼文" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:520 msgid "{firstAuthorLink} reposted your repost" -msgstr "" +msgstr "{firstAuthorLink} 轉發了您轉發的貼文" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} 使用了您的新手包註冊" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:444 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} 對您授予了驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:346 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} 和{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}跟隨了您" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} 和{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}對您的自訂動態源表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:265 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} 和{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}對您的貼文表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:459 +#: src/view/com/notifications/NotificationFeedItem.tsx:477 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -msgstr "" +msgstr "{firstAuthorName} 和{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}對您轉發的貼文表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:432 +#: src/view/com/notifications/NotificationFeedItem.tsx:450 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} 和{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}撤回了對您帳號的驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:271 +#: src/view/com/notifications/NotificationFeedItem.tsx:289 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} 和{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}轉發了您的貼文" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:501 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -msgstr "" +msgstr "{firstAuthorName} 和{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}轉發了您轉發的貼文" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:396 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} 和{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}使用了您的新手包註冊" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} 和{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}對您授予了驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:333 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} 跟隨了您" -#: src/view/com/notifications/NotificationFeedItem.tsx:323 +#: src/view/com/notifications/NotificationFeedItem.tsx:341 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} 回跟了您" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:377 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} 對您的自訂動態源表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:252 +#: src/view/com/notifications/NotificationFeedItem.tsx:270 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} 對您的貼文表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:464 +#: src/view/com/notifications/NotificationFeedItem.tsx:482 msgid "{firstAuthorName} liked your repost" -msgstr "" +msgstr "{firstAuthorName} 對您轉發的貼文表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:437 +#: src/view/com/notifications/NotificationFeedItem.tsx:455 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} 撤回了對您帳號的驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:276 +#: src/view/com/notifications/NotificationFeedItem.tsx:294 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} 轉發了您的貼文" -#: src/view/com/notifications/NotificationFeedItem.tsx:488 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorName} reposted your repost" -msgstr "" +msgstr "{firstAuthorName} 轉發了您轉發的貼文" -#: src/view/com/notifications/NotificationFeedItem.tsx:383 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} 使用了您的新手包註冊" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:430 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} 對您授予了驗證" -#: src/components/ProfileHoverCard/index.web.tsx:570 -#: src/screens/Profile/Header/Metrics.tsx:49 +#: src/components/ProfileHoverCard/index.web.tsx:572 msgid "{following} following" msgstr "{following} 個跟隨中" -#: src/components/dialogs/SearchablePeopleList.tsx:412 +#: src/components/dialogs/SearchablePeopleList.tsx:413 msgid "{handle} can't be messaged" msgstr "無法傳送訊息給 {handle}" @@ -392,7 +410,7 @@ msgstr "已有 {joinedAllTimeCount, plural, other {# 個用戶}}加入了行列 msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "{minutes, plural, other {# 分鐘}}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# 則未讀通知} other {# 則未讀通知}}" @@ -432,12 +450,12 @@ msgstr "{userName} 的驗證" msgid "+{computedTotal}" msgstr "+{computedTotal}" -#: src/screens/StarterPack/Wizard/index.tsx:449 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}、<1>{1} 和{2, plural, one {其他 # } other {其他 # }}人已包含在您的新手包中" -#: src/screens/StarterPack/Wizard/index.tsx:502 +#: src/screens/StarterPack/Wizard/index.tsx:541 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}、<1>{1} 和{2, plural, one {其他 # } other {其他 # }}人已包含在您的新手包中" @@ -450,15 +468,15 @@ msgstr "<0>{0} {1, plural, one {個跟隨者} other {個跟隨者}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {個跟隨中} other {個跟隨中}}" -#: src/screens/StarterPack/Wizard/index.tsx:490 +#: src/screens/StarterPack/Wizard/index.tsx:529 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} 和<1> <2>{1} 已包含在您的新手包中" -#: src/screens/StarterPack/Wizard/index.tsx:483 +#: src/screens/StarterPack/Wizard/index.tsx:522 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} 已在您的新手包中" -#: src/components/WhoCanReply.tsx:296 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "<0>{0} 的成員" @@ -466,11 +484,11 @@ msgstr "<0>{0} 的成員" msgid "<0>{date} at {time}" msgstr "<0>{date} {time}" -#: src/screens/Settings/NotificationSettings.tsx:85 -msgid "<0>Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "<0>實驗性功能:啟用後,您將只會收到來自您已跟隨用戶的回覆和引用通知。我們會逐步在這裡新增更多控制選項。" +#: src/screens/Search/SearchResults.tsx:255 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "<0>登入<1>或<2>建立帳號<3><4>即可在 Bluesky 上搜尋有關新聞、體育、政治等新鮮事。" -#: src/screens/StarterPack/Wizard/index.tsx:440 +#: src/screens/StarterPack/Wizard/index.tsx:479 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>您和<1> <2>{0} 已包含在您的新手包中" @@ -503,10 +521,14 @@ msgstr "一則訊息" msgid "A new form of verification" msgstr "全新的驗證機制" -#: src/Navigation.tsx:403 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "一張個人檔案頁面的截圖,顯示跟隨按鈕旁邊新增的鈴鐺圖示,用於介紹全新的動態通知功能。" + +#: src/Navigation.tsx:523 #: src/screens/Settings/AboutSettings.tsx:75 -#: src/screens/Settings/Settings.tsx:225 -#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:244 +#: src/screens/Settings/Settings.tsx:247 msgid "About" msgstr "關於" @@ -524,25 +546,25 @@ msgstr "接受對話邀請" msgid "Accept Request" msgstr "接受邀請" -#: src/screens/Settings/AccessibilitySettings.tsx:46 -#: src/screens/Settings/Settings.tsx:201 -#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/AccessibilitySettings.tsx:44 +#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:223 msgid "Accessibility" msgstr "無障礙" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:382 msgid "Accessibility Settings" msgstr "無障礙設定" -#: src/Navigation.tsx:371 +#: src/Navigation.tsx:398 #: src/screens/Login/LoginForm.tsx:194 -#: src/screens/Settings/AccountSettings.tsx:48 -#: src/screens/Settings/Settings.tsx:163 -#: src/screens/Settings/Settings.tsx:166 +#: src/screens/Settings/AccountSettings.tsx:49 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 msgid "Account" msgstr "帳號" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 #: src/screens/Messages/components/RequestButtons.tsx:91 #: src/view/com/profile/ProfileMenu.tsx:158 msgctxt "toast" @@ -554,7 +576,7 @@ msgctxt "toast" msgid "Account followed" msgstr "成功跟隨帳號" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380 #: src/view/com/profile/ProfileMenu.tsx:134 msgctxt "toast" msgid "Account muted" @@ -569,11 +591,11 @@ msgstr "已靜音該帳號" msgid "Account Muted by List" msgstr "帳號已被列表靜音" -#: src/screens/Settings/Settings.tsx:505 +#: src/screens/Settings/Settings.tsx:624 msgid "Account options" msgstr "帳號設定" -#: src/screens/Settings/Settings.tsx:541 +#: src/screens/Settings/Settings.tsx:660 msgid "Account removed from quick access" msgstr "成功從快速存取中移除帳號" @@ -588,7 +610,7 @@ msgctxt "toast" msgid "Account unfollowed" msgstr "成功取消跟隨帳號" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:124 msgctxt "toast" msgid "Account unmuted" @@ -598,13 +620,23 @@ msgstr "成功取消靜音帳號" msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "帶有圓齒藍色勾號的帳號<0><1/>可以對其他帳號授予驗證。這些受信任的驗證者由 Bluesky 官方所挑選。" +#: src/lib/hooks/useNotificationHandler.ts:182 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +msgid "Activity from others" +msgstr "來自其他人的動態" + +#: src/Navigation.tsx:491 +msgid "Activity notifications" +msgstr "動態通知" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/UserAddRemoveLists.tsx:235 msgid "Add" msgstr "新增" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:572 msgid "Add {0} more to continue" msgstr "再新增至少 {0} 個以繼續" @@ -634,8 +666,8 @@ msgstr "新增帳號" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/composer/GifAltText.tsx:210 -#: src/view/com/composer/photos/Gallery.tsx:169 -#: src/view/com/composer/photos/Gallery.tsx:216 +#: src/view/com/composer/photos/Gallery.tsx:170 +#: src/view/com/composer/photos/Gallery.tsx:217 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" @@ -645,14 +677,14 @@ msgstr "新增替代文字" msgid "Add alt text (optional)" msgstr "新增替代文字 (選填)" -#: src/screens/Settings/Settings.tsx:445 -#: src/screens/Settings/Settings.tsx:448 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/screens/Settings/Settings.tsx:564 +#: src/screens/Settings/Settings.tsx:567 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "新增其他帳號" -#: src/view/com/composer/Composer.tsx:731 +#: src/view/com/composer/Composer.tsx:776 msgid "Add another post" msgstr "加入另一則貼文" @@ -670,8 +702,8 @@ msgstr "新增應用程式專用密碼" msgid "Add emoji reaction" msgstr "加入表情符號反應" -#: src/components/moderation/ReportDialog/index.tsx:400 -#: src/components/moderation/ReportDialog/index.tsx:404 +#: src/components/moderation/ReportDialog/index.tsx:403 +#: src/components/moderation/ReportDialog/index.tsx:407 msgid "Add more details (optional)" msgstr "補充更多資訊 (可選)" @@ -683,7 +715,7 @@ msgstr "使用所選設定新增靜音字詞" msgid "Add muted words and tags" msgstr "新增靜音字詞和標籤" -#: src/view/com/composer/Composer.tsx:1287 +#: src/view/com/composer/Composer.tsx:1340 msgid "Add new post" msgstr "加入貼文" @@ -704,7 +736,7 @@ msgstr "加入反應" msgid "Add recommended feeds" msgstr "加入推薦的動態源" -#: src/screens/StarterPack/Wizard/index.tsx:471 +#: src/screens/StarterPack/Wizard/index.tsx:510 msgid "Add some feeds to your starter pack!" msgstr "新增一些動態源至您的新手包!" @@ -725,10 +757,6 @@ msgstr "將此新增至您的動態源" msgid "Add to lists" msgstr "新增至列表" -#: src/view/com/feeds/FeedSourceCard.tsx:269 -msgid "Add to my feeds" -msgstr "新增到我的動態源" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 msgid "Add user to list" msgstr "將用戶新增至列表" @@ -738,30 +766,30 @@ msgstr "將用戶新增至列表" msgid "Added to list" msgstr "成功新增至列表" -#: src/view/com/feeds/FeedSourceCard.tsx:125 -msgid "Added to my feeds" -msgstr "成功新增至我的動態源" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 +msgid "Additional details (limit 1000 characters)" +msgstr "補充資訊 (1000 個字元以內)" -#: src/components/moderation/ReportDialog/index.tsx:418 +#: src/components/moderation/ReportDialog/index.tsx:421 msgid "Additional details (limit 300 characters)" -msgstr "補充說明 (300 個字元以內)" +msgstr "補充資訊 (300 個字元以內)" #: src/view/com/composer/labels/LabelsBtn.tsx:159 msgid "Adult" msgstr "色情" -#: src/components/moderation/ContentHider.tsx:113 +#: src/components/moderation/ContentHider.tsx:116 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:148 #: src/view/com/composer/labels/LabelsBtn.tsx:127 msgid "Adult Content" msgstr "成人內容" -#: src/screens/Moderation/index.tsx:374 +#: src/screens/Moderation/index.tsx:404 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "成人內容只能透過網頁版 (<0>bsky.app) 啟用。" -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:247 msgid "Adult content is disabled." msgstr "已停用成人內容。" @@ -770,16 +798,32 @@ msgstr "已停用成人內容。" msgid "Adult Content labels" msgstr "成人內容標記" -#: src/screens/Moderation/index.tsx:418 +#: src/screens/Moderation/index.tsx:454 msgid "Advanced" msgstr "進階設定" -#: src/components/dialogs/ChangeEmailDialog.tsx:143 +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "年齡驗證" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "無法提交年齡驗證資訊,請再試一次。" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:78 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "成功提交年齡驗證資訊" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 +msgid "Age assurance only takes a few minutes" +msgstr "只需幾分鐘即可完成年齡驗證" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 msgid "alice@example.com" msgstr "alice@example.com" -#: src/view/screens/Notifications.tsx:86 +#: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "全部" @@ -793,7 +837,7 @@ msgstr "成功跟隨所有帳號!" msgid "All languages" msgstr "全部語言" -#: src/view/screens/Feeds.tsx:705 +#: src/view/screens/Feeds.tsx:707 msgid "All the feeds you've saved, right in one place." msgstr "以下是您儲存的動態源。" @@ -802,16 +846,21 @@ msgstr "以下是您儲存的動態源。" msgid "Allow access to your direct messages" msgstr "允許存取您的私人訊息" -#: src/screens/Messages/Settings.tsx:70 -#: src/screens/Messages/Settings.tsx:73 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Allow new messages from" msgstr "允許這些人向您發起對話:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344 +#: src/screens/Settings/ActivityPrivacySettings.tsx:52 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "允許其他人在您發布貼文時收到通知" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 msgid "Allow quote posts" msgstr "允許引用貼文" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 msgid "Allow replies from:" msgstr "允許這些人回覆您的貼文:" @@ -828,13 +877,13 @@ msgstr "已經有重設碼了?" msgid "Already signed in as @{0}" msgstr "已經以 @{0} 的身分登入" +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:186 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/composer/photos/Gallery.tsx:188 msgid "ALT" msgstr "替代文字" -#: src/screens/Settings/AccessibilitySettings.tsx:56 +#: src/screens/Settings/AccessibilitySettings.tsx:54 #: src/view/com/composer/GifAltText.tsx:154 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:40 @@ -844,11 +893,11 @@ msgstr "替代文字" msgid "Alt text" msgstr "替代文字" -#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191 msgid "Alt Text" msgstr "替代文字" -#: src/view/com/composer/photos/Gallery.tsx:255 +#: src/view/com/composer/photos/Gallery.tsx:260 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "替代文字可協助失明及弱視人士瞭解圖片內容,也有助於為每個人提供更多資訊。" @@ -861,27 +910,19 @@ msgstr "替代文字超出字數上限,將被截斷。{MAX_ALT_TEXT, plural, o msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "一封電子郵件已傳送至 {0}。請查看郵件並在下方輸入驗證碼。" -#: src/components/dialogs/ChangeEmailDialog.tsx:59 -msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below." -msgstr "一封電子郵件已傳送至先前填寫的信箱地址 {currentEmail}。請查看郵件並在下方輸入驗證碼。" - -#: src/components/dialogs/VerifyEmailDialog.tsx:120 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "電子郵件已傳送!請查看郵件並在下方輸入驗證碼。" - -#: src/components/dialogs/GifSelect.tsx:265 +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "發生錯誤" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:420 msgid "An error occurred" msgstr "發生錯誤" -#: src/view/com/composer/state/video.ts:398 +#: src/view/com/composer/state/video.ts:400 msgid "An error occurred while compressing the video." msgstr "壓縮影片時發生錯誤。" -#: src/state/queries/explore-feed-previews.tsx:184 +#: src/state/queries/explore-feed-previews.tsx:173 msgid "An error occurred while fetching the feed." msgstr "載入動態源時發生錯誤。" @@ -889,11 +930,11 @@ msgstr "載入動態源時發生錯誤。" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "產生您的新手包時發生錯誤。要再試一次嗎?" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:160 +#: src/components/Post/Embed/VideoEmbed/index.tsx:157 msgid "An error occurred while loading the video. Please try again later." msgstr "載入影片時發生錯誤。請稍後再試。" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 msgid "An error occurred while loading the video. Please try again." msgstr "載入影片時發生錯誤。請稍後再試。" @@ -910,7 +951,7 @@ msgstr "選擇影片時發生錯誤" msgid "An error occurred while trying to follow all" msgstr "跟隨所有帳號時發生錯誤" -#: src/view/com/composer/state/video.ts:435 +#: src/view/com/composer/state/video.ts:441 msgid "An error occurred while uploading the video." msgstr "上傳影片時發生錯誤。" @@ -934,8 +975,8 @@ msgstr "開啟對話時發生問題" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:386 -#: src/components/ProfileCard.tsx:407 +#: src/components/ProfileCard.tsx:484 +#: src/components/ProfileCard.tsx:505 #: src/view/com/profile/FollowButton.tsx:38 #: src/view/com/profile/FollowButton.tsx:48 msgid "An issue occurred, please try again." @@ -954,7 +995,7 @@ msgstr "發生未知錯誤" msgid "an unknown labeler" msgstr "未知的標記服務" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "和" @@ -963,10 +1004,14 @@ msgstr "和" msgid "Animals" msgstr "動物" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:149 msgid "Animated GIF" msgstr "GIF 動畫" +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "公告" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 msgid "Announcing verification on Bluesky" msgstr "為您介紹 Bluesky 上的驗證機制" @@ -980,7 +1025,13 @@ msgstr "反社會行為" msgid "Anybody can interact" msgstr "任何人都可以參與互動" -#: src/Navigation.tsx:411 +#: src/screens/Settings/ActivityPrivacySettings.tsx:111 +#: src/screens/Settings/ActivityPrivacySettings.tsx:116 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "跟隨我的人" + +#: src/Navigation.tsx:531 #: src/screens/Settings/AppIconSettings/index.tsx:67 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 @@ -1002,7 +1053,7 @@ msgstr "成功刪除應用程式專用密碼" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:84 msgid "App password name must be unique" -msgstr "密碼名稱不得與現有的重複" +msgstr "專用密碼名稱不得與現有的重複" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 msgid "App password names can only contain letters, numbers, spaces, dashes, and underscores" @@ -1012,12 +1063,12 @@ msgstr "密碼名稱只能包含字母、數字、空格、連字號 (-)、底 msgid "App password names must be at least 4 characters long" msgstr "密碼名稱必須至少包含 4 個字元" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 msgid "App passwords" msgstr "應用程式專用密碼" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:350 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "應用程式專用密碼" @@ -1053,10 +1104,10 @@ msgstr "申請解除停權" msgid "Appeal this decision" msgstr "對此決定提出上訴" -#: src/Navigation.tsx:363 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:193 -#: src/screens/Settings/Settings.tsx:196 +#: src/Navigation.tsx:390 +#: src/screens/Settings/AppearanceSettings.tsx:88 +#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:215 msgid "Appearance" msgstr "外觀" @@ -1065,12 +1116,20 @@ msgstr "外觀" msgid "Apply default recommended feeds" msgstr "使用預設推薦的動態源" -#: src/view/com/post-thread/PostThreadItem.tsx:945 +#: src/screens/Settings/Settings.tsx:498 +#: src/screens/Settings/Settings.tsx:500 +msgid "Apply Pull Request" +msgstr "套用拉取請求 (Pull Request)" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:638 +#: src/view/com/post-thread/PostThreadItem.tsx:953 msgid "Archived from {0}" msgstr "封存於 {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:914 -#: src/view/com/post-thread/PostThreadItem.tsx:953 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:646 +#: src/view/com/post-thread/PostThreadItem.tsx:922 +#: src/view/com/post-thread/PostThreadItem.tsx:961 msgid "Archived post" msgstr "已封存的貼文" @@ -1078,7 +1137,7 @@ msgstr "已封存的貼文" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "您確定要刪除此應用程式專用密碼「{0}」嗎?" -#: src/components/dms/MessageContextMenu.tsx:189 +#: src/components/dms/MessageContextMenu.tsx:183 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "您確定要刪除這則訊息嗎?該訊息將為您刪除,但不會為其他參與者刪除。" @@ -1098,19 +1157,15 @@ msgstr "您確定要離開這個對話嗎?" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "您確定要離開這段對話嗎?訊息將為您刪除,但不會為其他參與者刪除。" -#: src/view/com/feeds/FeedSourceCard.tsx:319 -msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "您確定要從您的動態源中移除 {0} 嗎?" - #: src/components/FeedCard.tsx:340 msgid "Are you sure you want to remove this from your feeds?" msgstr "您確定要將此從您的動態源中移除嗎?" -#: src/view/com/composer/Composer.tsx:682 +#: src/view/com/composer/Composer.tsx:725 msgid "Are you sure you'd like to discard this draft?" msgstr "您確定要捨棄這份草稿嗎?" -#: src/view/com/composer/Composer.tsx:861 +#: src/view/com/composer/Composer.tsx:910 msgid "Are you sure you'd like to discard this post?" msgstr "您確定要放棄發布這則貼文嗎?" @@ -1131,29 +1186,26 @@ msgstr "藝術" msgid "Artistic or non-erotic nudity." msgstr "帶有藝術性或非色情的裸體。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:491 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493 msgid "Assign topic for algo" msgstr "為演算法指定主題" -#: src/screens/Signup/StepHandle.tsx:194 -msgid "At least 3 characters" -msgstr "至少 3 個字元" - -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "極光" -#: src/screens/Settings/AccessibilitySettings.tsx:105 -msgid "Autoplay options have moved to the <0>Content and Media settings." -msgstr "自動播放選項已移至<0>內容與媒體設定。" - #: src/screens/Settings/ContentAndMediaSettings.tsx:116 #: src/screens/Settings/ContentAndMediaSettings.tsx:122 msgid "Autoplay videos and GIFs" msgstr "自動播放影片和 GIF" +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 +msgid "Available" +msgstr "" + #: src/components/dms/MessagesListHeader.tsx:84 #: src/components/moderation/LabelsOnMeDialog.tsx:315 #: src/components/moderation/LabelsOnMeDialog.tsx:316 @@ -1163,17 +1215,17 @@ msgstr "自動播放影片和 GIF" #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/LoginForm.tsx:310 #: src/screens/Login/LoginForm.tsx:316 -#: src/screens/Login/SetNewPasswordForm.tsx:164 -#: src/screens/Login/SetNewPasswordForm.tsx:170 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Messages/components/ChatDisabled.tsx:133 #: src/screens/Messages/components/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:158 #: src/screens/Signup/BackNextButtons.tsx:41 -#: src/screens/StarterPack/Wizard/index.tsx:286 +#: src/screens/StarterPack/Wizard/index.tsx:303 msgid "Back" msgstr "返回" -#: src/screens/Messages/Inbox.tsx:238 +#: src/screens/Messages/Inbox.tsx:259 msgid "Back to Chats" msgstr "返回對話" @@ -1195,28 +1247,44 @@ msgstr "在建立新手包之前,您必須先驗證您的電子信箱。" msgid "Before you can accept this chat request, you must first verify your email." msgstr "在接受此對話邀請之前,您必須先驗證您的電子信箱。" +#: src/components/activity-notifications/SubscribeProfileButton.tsx:43 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "在您開始接收 {name} 的貼文通知之前,您必須先驗證您的電子信箱。" + #: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/components/dms/MessageProfileButton.tsx:58 -#: src/screens/Messages/ChatList.tsx:332 -#: src/screens/Messages/Conversation.tsx:213 +#: src/screens/Messages/ChatList.tsx:358 +#: src/screens/Messages/Conversation.tsx:228 msgid "Before you can message another user, you must first verify your email." msgstr "在向其他人傳送訊息之前,您必須先驗證您的電子信箱。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "開始" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "開始年齡驗證程序" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "請填寫以下欄位,以開始年齡驗證程序。" + #: src/components/dialogs/BirthDateSettings.tsx:103 -#: src/screens/Settings/AccountSettings.tsx:120 +#: src/screens/Settings/AccountSettings.tsx:140 msgid "Birthday" msgstr "生日" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 msgid "Block" msgstr "封鎖" #: src/components/dms/ConvoMenu.tsx:247 #: src/components/dms/ConvoMenu.tsx:250 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:640 #: src/screens/Messages/components/RequestButtons.tsx:144 #: src/screens/Messages/components/RequestButtons.tsx:146 #: src/view/com/profile/ProfileMenu.tsx:384 @@ -1224,7 +1292,7 @@ msgstr "封鎖" msgid "Block account" msgstr "封鎖帳號" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748 #: src/view/com/profile/ProfileMenu.tsx:456 msgid "Block Account?" msgstr "要封鎖帳號嗎?" @@ -1262,20 +1330,20 @@ msgstr "封鎖用戶" msgid "Block User" msgstr "封鎖用戶" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +#: src/components/Post/Embed/index.tsx:180 msgid "Blocked" msgstr "已被封鎖" -#: src/screens/Moderation/index.tsx:273 +#: src/screens/Moderation/index.tsx:282 msgid "Blocked accounts" msgstr "已封鎖帳號" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:191 #: src/view/screens/ModerationBlockedAccounts.tsx:104 msgid "Blocked Accounts" msgstr "已封鎖帳號" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750 #: src/view/com/profile/ProfileMenu.tsx:468 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "被封鎖的帳號無法在您的討論串中回覆、提及您,或以其他方式與您互動。" @@ -1284,11 +1352,11 @@ msgstr "被封鎖的帳號無法在您的討論串中回覆、提及您,或以 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "被封鎖的帳號無法在您的討論串中回覆、提及您,或以其他方式與您互動。您將看不到他們的內容,他們也會被阻止看到您的內容。" -#: src/view/com/post-thread/PostThread.tsx:468 +#: src/view/com/post-thread/PostThread.tsx:488 msgid "Blocked post." msgstr "該貼文被封鎖。" -#: src/screens/Profile/Sections/Labels.tsx:170 +#: src/screens/Profile/Sections/Labels.tsx:203 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "封鎖該帳號無法阻止其標記您的帳號。" @@ -1309,11 +1377,12 @@ msgstr "部落格" msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/post-thread/PostThreadItem.tsx:970 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +#: src/view/com/post-thread/PostThreadItem.tsx:978 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky 無法確認貼文發布日期的真實性。" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky 經典™" @@ -1347,6 +1416,14 @@ msgstr "Bluesky 的官方平台將不會向未登入的用戶顯示您的個人 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky 官方會主動確認部分知名帳號的真實性並授予驗證。" +#: src/screens/Signup/StepInfo/Policies.tsx:26 +msgid "Bluesky's Community Guidelines" +msgstr "Bluesky 的社群準則" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "Bluesky's Updated Community Guidelines" +msgstr "Bluesky 的社群準則更新" + #: src/screens/Settings/AppIconSettings/index.tsx:99 msgid "Bluesky+" msgstr "Bluesky+" @@ -1368,23 +1445,20 @@ msgstr "模糊圖片,並從動態中排除內容" msgid "Books" msgstr "書籍" -#: src/components/FeedInterstitials.tsx:373 +#: src/components/FeedInterstitials.tsx:435 msgid "Browse more accounts on the Explore page" msgstr "在探索頁面瀏覽更多帳號" -#: src/components/FeedInterstitials.tsx:511 +#: src/components/FeedInterstitials.tsx:566 msgid "Browse more feeds on the Explore page" msgstr "在探索頁面瀏覽更多動態源" -#: src/components/FeedInterstitials.tsx:353 -#: src/components/FeedInterstitials.tsx:356 -#: src/components/FeedInterstitials.tsx:492 -#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:547 +#: src/components/FeedInterstitials.tsx:550 msgid "Browse more suggestions" msgstr "瀏覽更多建議" -#: src/components/FeedInterstitials.tsx:381 -#: src/components/FeedInterstitials.tsx:520 +#: src/components/FeedInterstitials.tsx:575 msgid "Browse more suggestions on the Explore page" msgstr "在探索頁面瀏覽更多建議" @@ -1418,9 +1492,9 @@ msgid "Business" msgstr "商務" #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:680 +#: src/components/moderation/ReportDialog/index.tsx:683 #: src/screens/Search/components/StarterPackCard.tsx:106 -#: src/screens/Search/Explore.tsx:934 +#: src/screens/Search/Explore.tsx:930 msgid "By {0}" msgstr "來自 {0}" @@ -1428,15 +1502,23 @@ msgstr "來自 {0}" msgid "By <0>{0}" msgstr "來自 <0>{0}" -#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "按下「開始」即表示您瞭解並同意這些更新。" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:329 +msgid "By continuing, you agree to the <0>KWS Terms of Use and acknowledge that KWS will store your verified status with your hashed email address in accordance with the <1>KWS Privacy Policy. This means you won’t need to verify again the next time you use this email for other apps, games, and services powered by KWS technology." +msgstr "繼續即代表您同意 <0>KWS 服務條款,並瞭解 KWS 會根據 <1>KWS 隱私權政策儲存您的驗證狀態以及經雜湊處理過的電子郵件地址。這表示您下次使用此電子郵件地址存取其他由 KWS 技術支援的應用程式、遊戲和服務時,不需要再次進行驗證程序。" + +#: src/screens/Signup/StepInfo/Policies.tsx:111 msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "建立帳號即表示您同意<0>隱私權政策。" -#: src/screens/Signup/StepInfo/Policies.tsx:48 +#: src/screens/Signup/StepInfo/Policies.tsx:78 msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." msgstr "建立帳號即表示您同意<0>服務條款及<1>隱私權政策。" -#: src/screens/Signup/StepInfo/Policies.tsx:68 +#: src/screens/Signup/StepInfo/Policies.tsx:98 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "建立帳號即表示您同意<0>服務條款。" @@ -1448,14 +1530,17 @@ msgstr "由您建立" msgid "Camera" msgstr "相機" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:129 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:135 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 #: src/components/dialogs/InAppBrowserConsent.tsx:98 #: src/components/dialogs/InAppBrowserConsent.tsx:104 #: src/components/live/GoLiveDialog.tsx:247 #: src/components/live/GoLiveDialog.tsx:253 -#: src/components/Menu/index.tsx:339 -#: src/components/PostControls/RepostButton.tsx:198 +#: src/components/Menu/index.tsx:350 +#: src/components/PostControls/RepostButton.tsx:209 #: src/components/Prompt.tsx:143 #: src/components/Prompt.tsx:145 #: src/screens/Deactivated.tsx:158 @@ -1466,21 +1551,18 @@ msgstr "相機" #: src/screens/Settings/AppIconSettings/index.tsx:225 #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 -#: src/screens/Settings/Settings.tsx:270 +#: src/screens/Settings/Settings.tsx:289 #: src/screens/Takendown.tsx:99 #: src/screens/Takendown.tsx:102 -#: src/view/com/composer/Composer.tsx:916 -#: src/view/com/composer/Composer.tsx:927 +#: src/view/com/composer/Composer.tsx:965 +#: src/view/com/composer/Composer.tsx:976 #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/com/modals/EditProfile.tsx:269 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "取消" @@ -1500,11 +1582,7 @@ msgstr "放棄刪除帳號" msgid "Cancel image crop" msgstr "放棄裁剪圖片" -#: src/view/com/modals/EditProfile.tsx:264 -msgid "Cancel profile editing" -msgstr "放棄編輯個人檔案" - -#: src/components/PostControls/RepostButton.tsx:192 +#: src/components/PostControls/RepostButton.tsx:203 msgid "Cancel quote post" msgstr "放棄引用貼文" @@ -1516,14 +1594,10 @@ msgstr "取消重新啟用並登出" msgid "Cancel search" msgstr "放棄搜尋" -#: src/view/com/modals/LinkWarning.tsx:106 -msgid "Cancels opening the linked website" -msgstr "取消開啟網站連結" - #: src/components/PostControls/index.tsx:101 #: src/components/PostControls/index.tsx:132 #: src/components/PostControls/index.tsx:160 -#: src/state/shell/composer/index.tsx:82 +#: src/state/shell/composer/index.tsx:91 msgid "Cannot interact with a blocked user" msgstr "無法與被封鎖的用戶進行互動" @@ -1553,17 +1627,12 @@ msgstr "將應用程式圖示變更為「{0}」" msgid "Change app language" msgstr "變更應用程式語言" -#: src/components/dialogs/VerifyEmailDialog.tsx:200 -#: src/components/dialogs/VerifyEmailDialog.tsx:225 -msgid "Change email address" -msgstr "變更電子郵件地址" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 msgid "Change Handle" msgstr "變更帳號代碼" -#: src/components/moderation/ReportDialog/index.tsx:322 +#: src/components/moderation/ReportDialog/index.tsx:325 msgid "Change moderation service" msgstr "切換內容管理服務" @@ -1579,14 +1648,6 @@ msgstr "將貼文的發布語言變更為 {suggestedLanguageName}" msgid "Change report reason" msgstr "變更檢舉理由" -#: src/components/dialogs/ChangeEmailDialog.tsx:53 -msgid "Change Your Email" -msgstr "變更您的電子郵件地址" - -#: src/components/dialogs/VerifyEmailDialog.tsx:209 -msgid "Change your email address" -msgstr "變更您的電子郵件地址" - #: src/screens/Settings/AppIconSettings/index.tsx:216 msgid "Changes app icon" msgstr "變更應用程式圖示" @@ -1596,10 +1657,15 @@ msgstr "變更應用程式圖示" msgid "Changes hosting provider" msgstr "變更託管服務提供者" -#: src/Navigation.tsx:428 -#: src/view/shell/bottom-bar/BottomBar.tsx:211 -#: src/view/shell/desktop/LeftNav.tsx:553 -#: src/view/shell/Drawer.tsx:441 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 +msgid "Changes saved" +msgstr "成功儲存變更" + +#: src/lib/hooks/useNotificationHandler.ts:99 +#: src/Navigation.tsx:548 +#: src/view/shell/bottom-bar/BottomBar.tsx:221 +#: src/view/shell/desktop/LeftNav.tsx:554 +#: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "對話" @@ -1609,28 +1675,38 @@ msgctxt "toast" msgid "Chat deleted" msgstr "成功刪除對話" +#: src/lib/hooks/useNotificationHandler.ts:114 +msgid "Chat messages - silent" +msgstr "對話訊息 - 靜音" + +#: src/lib/hooks/useNotificationHandler.ts:105 +msgid "Chat messages - sound" +msgstr "對話訊息 - 聲音" + #: src/components/dms/ConvoMenu.tsx:176 msgctxt "toast" msgid "Chat muted" msgstr "成功靜音對話" -#: src/Navigation.tsx:438 -#: src/screens/Messages/components/InboxPreview.tsx:24 +#: src/Navigation.tsx:558 +#: src/screens/Messages/components/InboxPreview.tsx:22 msgid "Chat request inbox" msgstr "對話邀請收件匣" -#: src/screens/Messages/components/InboxPreview.tsx:64 -#: src/screens/Messages/Inbox.tsx:77 +#: src/screens/Messages/components/InboxPreview.tsx:62 +#: src/screens/Messages/Inbox.tsx:56 +#: src/screens/Messages/Inbox.tsx:98 msgid "Chat requests" msgstr "對話邀請" #: src/components/dms/ConvoMenu.tsx:75 -#: src/Navigation.tsx:433 -#: src/screens/Messages/ChatList.tsx:341 +#: src/Navigation.tsx:553 +#: src/screens/Messages/ChatList.tsx:367 msgid "Chat settings" msgstr "對話設定" -#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:33 +#: src/screens/Messages/Settings.tsx:78 msgid "Chat Settings" msgstr "對話設定" @@ -1639,8 +1715,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "成功取消靜音對話" -#: src/screens/Messages/ChatList.tsx:357 -#: src/screens/Messages/ChatList.tsx:381 +#: src/screens/Messages/ChatList.tsx:76 +#: src/screens/Messages/ChatList.tsx:383 +#: src/screens/Messages/ChatList.tsx:407 msgid "Chats" msgstr "對話" @@ -1661,7 +1738,7 @@ msgstr "在下方輸入傳送至您電子信箱的驗證碼:" msgid "Choose domain verification method" msgstr "選擇網域驗證方式" -#: src/screens/StarterPack/Wizard/index.tsx:194 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Choose Feeds" msgstr "選擇動態源" @@ -1669,7 +1746,7 @@ msgstr "選擇動態源" msgid "Choose for me" msgstr "為我挑選" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:196 msgid "Choose People" msgstr "選擇人物" @@ -1685,23 +1762,23 @@ msgstr "選擇這個顏色作為您的大頭貼照背景" msgid "Choose your account provider" msgstr "選擇您的服務提供者" -#: src/view/screens/Feeds.tsx:731 +#: src/view/screens/Feeds.tsx:733 msgid "Choose your own timeline! Feeds built by the community help you find content you love." -msgstr "自訂屬於您自己的河道!由社群打造的動態源能協助您找到喜愛的內容。" +msgstr "自行設計專屬於您的河道!由社群打造的動態源能協助您找到喜愛的內容。" -#: src/screens/Signup/StepInfo/index.tsx:241 +#: src/screens/Signup/StepInfo/index.tsx:245 msgid "Choose your password" msgstr "設定您的密碼" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:175 msgid "Choose your username" msgstr "選擇您的用戶名稱" -#: src/screens/Settings/Settings.tsx:423 +#: src/screens/Settings/Settings.tsx:490 msgid "Clear all storage data" msgstr "清除所有資料" -#: src/screens/Settings/Settings.tsx:425 +#: src/screens/Settings/Settings.tsx:492 msgid "Clear all storage data (restart after this)" msgstr "清除所有資料 (並重新啟動)" @@ -1714,23 +1791,27 @@ msgstr "清除圖片快取" msgid "Clear search query" msgstr "清除搜尋記錄" +#: src/view/com/feeds/MissingFeed.tsx:87 +msgid "Click for information" +msgstr "點此以瞭解詳細資訊" + #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "點一下這裡" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 msgid "Click here to restart the verification process." msgstr "點一下這裡以重新開始驗證程序。" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 msgid "Click here to update your email" msgstr "點一下這裡來更新您的電子信箱" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Click to disable quote posts of this post." msgstr "點此以拒絕其他人引用這則貼文。" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:342 msgid "Click to enable quote posts of this post." msgstr "點此以允許其他人引用這則貼文。" @@ -1740,7 +1821,7 @@ msgstr "點此以開啟 {tag} 的標籤選單" #: src/components/dms/MessageItem.tsx:317 msgid "Click to retry failed message" -msgstr "點此以重試傳送訊息" +msgstr "點此以重新傳送訊息" #: src/screens/Onboarding/index.tsx:32 msgid "Climate" @@ -1750,14 +1831,16 @@ msgstr "氣象" msgid "Clip 🐴 clop 🐴" msgstr "達達的馬蹄 🐴 是美麗的錯誤 🐴" -#: src/components/dialogs/ChangeEmailDialog.tsx:244 -#: src/components/dialogs/ChangeEmailDialog.tsx:250 -#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:184 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:243 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 #: src/components/dialogs/SearchablePeopleList.tsx:295 -#: src/components/dialogs/VerifyEmailDialog.tsx:346 -#: src/components/dialogs/VerifyEmailDialog.tsx:352 #: src/components/dms/EmojiPopup.android.tsx:58 #: src/components/dms/ReportDialog.tsx:381 #: src/components/dms/ReportDialog.tsx:390 @@ -1765,14 +1848,18 @@ msgstr "達達的馬蹄 🐴 是美麗的錯誤 🐴" #: src/components/live/EditLiveDialog.tsx:235 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 #: src/components/ProgressGuide/FollowDialog.tsx:386 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 +#: src/view/com/feeds/MissingFeed.tsx:208 +#: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 #: src/view/com/modals/ChangePassword.tsx:282 -#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "關閉" @@ -1789,13 +1876,15 @@ msgstr "關閉警告" msgid "Close bottom drawer" msgstr "關閉底部導航列" -#: src/components/dialogs/GifSelect.tsx:275 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:224 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:230 +#: src/components/dialogs/GifSelect.tsx:276 #: src/components/verification/VerificationsDialog.tsx:136 #: src/components/verification/VerifierDialog.tsx:136 msgid "Close dialog" msgstr "關閉對話框" -#: src/view/shell/index.web.tsx:85 +#: src/view/shell/index.web.tsx:100 msgid "Close drawer menu" msgstr "關閉側邊選單" @@ -1804,7 +1893,7 @@ msgstr "關閉側邊選單" msgid "Close emoji picker" msgstr "關閉表情符號選擇器" -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Close GIF dialog" msgstr "關閉 GIF 對話框" @@ -1822,7 +1911,7 @@ msgstr "關閉圖片檢視器" msgid "Close menu" msgstr "關閉選單" -#: src/components/Menu/index.tsx:333 +#: src/components/Menu/index.tsx:344 msgid "Close this dialog" msgstr "關閉這個對話框" @@ -1830,7 +1919,7 @@ msgstr "關閉這個對話框" msgid "Closes password update alert" msgstr "關閉密碼更新警告" -#: src/view/com/composer/Composer.tsx:924 +#: src/view/com/composer/Composer.tsx:973 msgid "Closes post composer and discards post draft" msgstr "關閉貼文編輯器並捨棄草稿" @@ -1843,16 +1932,16 @@ msgstr "關閉表情符號選擇器" msgid "Closes viewer for header image" msgstr "關閉標題圖片檢視器" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:591 msgid "Collapse list of users" msgstr "折疊用戶列表" -#: src/view/com/notifications/NotificationFeedItem.tsx:748 +#: src/view/com/notifications/NotificationFeedItem.tsx:805 msgid "Collapses list of users for a given notification" msgstr "折疊指定通知的用戶列表" #: src/components/dialogs/Embed.tsx:154 -#: src/screens/Settings/AppearanceSettings.tsx:93 +#: src/screens/Settings/AppearanceSettings.tsx:96 msgid "Color mode" msgstr "色彩模式" @@ -1870,7 +1959,8 @@ msgstr "喜劇" msgid "Comics" msgstr "漫畫" -#: src/Navigation.tsx:313 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 +#: src/Navigation.tsx:340 #: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "社群準則" @@ -1879,38 +1969,34 @@ msgstr "社群準則" msgid "Complete onboarding and start using your account" msgstr "完成入門引導以開始使用您的帳號" -#: src/screens/Signup/index.tsx:162 +#: src/screens/Signup/index.tsx:177 msgid "Complete the challenge" msgstr "完成驗證" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "撰寫新貼文" -#: src/view/com/composer/Composer.tsx:825 +#: src/view/com/composer/Composer.tsx:874 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "撰寫最多 {0, plural,other {# 個字元}}的貼文" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:62 msgid "Compose reply" msgstr "撰寫回覆" -#: src/view/com/composer/Composer.tsx:1669 +#: src/view/com/composer/Composer.tsx:1734 msgid "Compressing video..." msgstr "正在壓縮影片……" -#: src/components/moderation/LabelPreference.tsx:82 +#: src/components/moderation/LabelPreference.tsx:88 msgid "Configure content filtering setting for category: {name}" msgstr "設定 {name} 類別的內容篩選" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:249 msgid "Configured in <0>moderation settings." msgstr "在 <0>內容篩選 中設定。" -#: src/components/dialogs/ChangeEmailDialog.tsx:203 -#: src/components/dialogs/ChangeEmailDialog.tsx:210 -#: src/components/dialogs/VerifyEmailDialog.tsx:316 -#: src/components/dialogs/VerifyEmailDialog.tsx:323 #: src/components/Prompt.tsx:186 #: src/components/Prompt.tsx:189 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 @@ -1926,18 +2012,15 @@ msgstr "確認內容語言設定" msgid "Confirm delete account" msgstr "確認刪除帳號" -#: src/screens/Moderation/index.tsx:322 +#: src/screens/Moderation/index.tsx:330 msgid "Confirm your age:" msgstr "確認您的年齡:" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:321 msgid "Confirm your birthdate" msgstr "確認您的出生日期" -#: src/components/dialogs/ChangeEmailDialog.tsx:160 -#: src/components/dialogs/ChangeEmailDialog.tsx:164 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 -#: src/components/dialogs/VerifyEmailDialog.tsx:252 #: src/screens/Login/LoginForm.tsx:274 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 @@ -1946,30 +2029,39 @@ msgstr "確認您的出生日期" msgid "Confirmation code" msgstr "驗證碼" -#: src/components/dialogs/VerifyEmailDialog.tsx:248 -msgid "Confirmation Code" -msgstr "驗證碼" - #: src/screens/Login/LoginForm.tsx:337 msgid "Connecting..." msgstr "連線中……" -#: src/screens/Signup/index.tsx:197 -#: src/screens/Signup/index.tsx:200 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Connection issue" +msgstr "連線問題" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 +msgid "Contact our moderation team" +msgstr "聯絡我們的支援團隊" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 +#: src/screens/Signup/index.tsx:212 +#: src/screens/Signup/index.tsx:215 msgid "Contact support" msgstr "聯絡支援" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 +msgid "Contact us" +msgstr "聯絡我們" + #: src/screens/Settings/ContentAndMediaSettings.tsx:51 msgid "Content & Media" msgstr "內容與媒體" -#: src/screens/Settings/AccessibilitySettings.tsx:109 -#: src/screens/Settings/Settings.tsx:185 -#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:204 +#: src/screens/Settings/Settings.tsx:207 msgid "Content and media" msgstr "內容與媒體" -#: src/Navigation.tsx:387 +#: src/Navigation.tsx:507 msgid "Content and Media" msgstr "內容與媒體" @@ -1977,7 +2069,8 @@ msgstr "內容與媒體" msgid "Content Blocked" msgstr "已封鎖內容" -#: src/screens/Moderation/index.tsx:306 +#: src/screens/Moderation/index.tsx:317 +#: src/screens/Moderation/index.tsx:351 msgid "Content filters" msgstr "內容篩選" @@ -2006,10 +2099,12 @@ msgstr "內容警告" msgid "Content warnings" msgstr "內容警告" -#: src/components/Menu/index.web.tsx:85 +#: src/components/Menu/index.web.tsx:91 msgid "Context menu backdrop, click to close the menu." msgstr "內容選單背景,點一下以關閉選單。" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:244 #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Continue" @@ -2019,6 +2114,11 @@ msgstr "繼續" msgid "Continue as {0} (currently signed in)" msgstr "以 {0} 的身分繼續 (目前已登入)" +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 +msgid "Continue thread" +msgstr "繼續載入討論串" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 #: src/view/com/post-thread/PostThreadLoadMore.tsx:60 msgid "Continue thread..." msgstr "繼續載入討論串……" @@ -2029,6 +2129,10 @@ msgstr "繼續載入討論串……" msgid "Continue to next step" msgstr "繼續下一步" +#: src/screens/Messages/Conversation.tsx:57 +msgid "Conversation" +msgstr "對話" + #: src/components/dms/ReportDialog.tsx:318 #: src/components/dms/ReportDialog.tsx:321 msgctxt "toast" @@ -2051,10 +2155,10 @@ msgstr "已複製" msgid "Copied build version to clipboard" msgstr "成功複製組建版本號至剪貼簿" -#: src/components/dms/MessageContextMenu.tsx:56 -#: src/components/PostControls/DiscoverDebug.tsx:42 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68 +#: src/components/dms/MessageContextMenu.tsx:55 +#: src/components/PostControls/DiscoverDebug.tsx:41 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:230 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 #: src/lib/sharing.ts:25 #: src/lib/sharing.ts:41 #: src/view/com/modals/InviteCodes.tsx:153 @@ -2074,10 +2178,6 @@ msgstr "複製組建版本號至剪貼簿" msgid "Copy" msgstr "複製" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186 -msgid "Copy anyway" -msgstr "仍然複製" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" msgstr "複製應用程式專用密碼" @@ -2087,8 +2187,8 @@ msgstr "複製應用程式專用密碼" msgid "Copy at:// URI" msgstr "複製 at:// 連結" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156 msgid "Copy author DID" msgstr "複製發布者 DID" @@ -2120,10 +2220,10 @@ msgstr "複製連結" msgid "Copy link to list" msgstr "複製列表連結" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90 msgid "Copy link to post" msgstr "複製貼文連結" @@ -2136,18 +2236,18 @@ msgstr "複製個人檔案連結" msgid "Copy link to starter pack" msgstr "複製新手包連結" -#: src/components/dms/MessageContextMenu.tsx:150 -#: src/components/dms/MessageContextMenu.tsx:153 +#: src/components/dms/MessageContextMenu.tsx:144 +#: src/components/dms/MessageContextMenu.tsx:147 msgid "Copy message text" msgstr "複製訊息文字" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147 msgid "Copy post at:// URI" msgstr "複製貼文 at:// 連結" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:448 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 msgid "Copy post text" msgstr "複製貼文文字" @@ -2159,11 +2259,25 @@ msgstr "複製 QR Code" msgid "Copy TXT record value" msgstr "複製 TXT 記錄值" -#: src/Navigation.tsx:318 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 +#: src/Navigation.tsx:345 #: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "著作權政策" +#: src/view/com/feeds/MissingFeed.tsx:41 +msgid "Could not connect to custom feed" +msgstr "無法連線到自訂動態源" + +#: src/view/com/feeds/MissingFeed.tsx:133 +msgid "Could not connect to feed service" +msgstr "無法連線到動態源服務" + +#: src/view/com/feeds/MissingFeed.tsx:182 +msgid "Could not find profile" +msgstr "找不到個人檔案" + #: src/components/dms/LeaveConvoPrompt.tsx:35 #: src/components/dms/ReportDialog.tsx:310 msgid "Could not leave chat" @@ -2185,6 +2299,14 @@ msgstr "無法靜音對話" msgid "Could not process your video" msgstr "無法處理您的影片" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 +msgid "Could not save changes: {0}" +msgstr "無法儲存這些變更:{0}" + +#: src/state/queries/notifications/settings.ts:49 +msgid "Could not update notification settings" +msgstr "無法更新通知設定" + #: src/components/StarterPack/ProfileStarterPacks.tsx:300 msgid "Create" msgstr "建立" @@ -2195,7 +2317,7 @@ msgstr "為新手包建立 QR Code" #: src/components/StarterPack/ProfileStarterPacks.tsx:178 #: src/components/StarterPack/ProfileStarterPacks.tsx:287 -#: src/Navigation.tsx:463 +#: src/Navigation.tsx:588 msgid "Create a starter pack" msgstr "建立一個新手包" @@ -2205,21 +2327,22 @@ msgstr "為我產生一個新手包" #: src/view/com/auth/SplashScreen.tsx:55 #: src/view/com/auth/SplashScreen.web.tsx:117 -#: src/view/shell/bottom-bar/BottomBar.tsx:335 -#: src/view/shell/bottom-bar/BottomBar.tsx:340 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:350 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 #: src/view/shell/NavSignupCard.tsx:47 #: src/view/shell/NavSignupCard.tsx:52 msgid "Create account" msgstr "建立帳號" -#: src/screens/Signup/index.tsx:108 +#: src/screens/Signup/index.tsx:122 msgid "Create Account" msgstr "建立帳號" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 +#: src/screens/Search/SearchResults.tsx:266 msgid "Create an account" msgstr "建立帳號" @@ -2241,7 +2364,7 @@ msgstr "再建立一個" msgid "Create new account" msgstr "建立新帳號" -#: src/components/moderation/ReportDialog/index.tsx:582 +#: src/components/moderation/ReportDialog/index.tsx:585 #: src/components/ReportDialog/SelectReportOptionView.tsx:99 msgid "Create report for {0}" msgstr "建立 {0} 的檢舉" @@ -2268,7 +2391,7 @@ msgstr "自訂" msgid "Customization options" msgstr "自訂選項" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:107 msgid "Customize who can interact with this post." msgstr "調整哪些人能夠與這則貼文互動。" @@ -2278,12 +2401,12 @@ msgstr "自訂您的 Bluesky 體驗" #: src/components/dialogs/Embed.tsx:167 #: src/components/dialogs/Embed.tsx:169 -#: src/screens/Settings/AppearanceSettings.tsx:105 -#: src/screens/Settings/AppearanceSettings.tsx:126 +#: src/screens/Settings/AppearanceSettings.tsx:108 +#: src/screens/Settings/AppearanceSettings.tsx:129 msgid "Dark" msgstr "深色" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 msgctxt "Name of app icon variant" msgid "Dark" msgstr "深色" @@ -2292,21 +2415,21 @@ msgstr "深色" msgid "Dark mode" msgstr "深色模式" -#: src/screens/Settings/AppearanceSettings.tsx:118 +#: src/screens/Settings/AppearanceSettings.tsx:121 msgid "Dark theme" msgstr "深色主題" -#: src/screens/Signup/StepInfo/index.tsx:269 +#: src/screens/Signup/StepInfo/index.tsx:273 msgid "Date of birth" msgstr "出生日期" -#: src/screens/Settings/AccountSettings.tsx:157 -#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/AccountSettings.tsx:159 +#: src/screens/Settings/AccountSettings.tsx:164 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 msgid "Deactivate account" msgstr "停用帳號" -#: src/screens/Settings/Settings.tsx:397 +#: src/screens/Settings/Settings.tsx:455 msgid "Debug Moderation" msgstr "內容管理偵錯" @@ -2314,7 +2437,7 @@ msgstr "內容管理偵錯" msgid "Debug panel" msgstr "偵錯面板" -#: src/screens/Settings/AppearanceSettings.tsx:168 +#: src/screens/Settings/AppearanceSettings.tsx:171 msgid "Default" msgstr "預設" @@ -2322,8 +2445,8 @@ msgstr "預設" msgid "Default icons" msgstr "預設圖示" -#: src/components/dms/MessageContextMenu.tsx:191 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 +#: src/components/dms/MessageContextMenu.tsx:185 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 #: src/screens/Settings/AppPasswords.tsx:212 #: src/screens/StarterPack/StarterPackScreen.tsx:599 @@ -2333,8 +2456,8 @@ msgstr "預設圖示" msgid "Delete" msgstr "刪除" -#: src/screens/Settings/AccountSettings.tsx:167 -#: src/screens/Settings/AccountSettings.tsx:172 +#: src/screens/Settings/AccountSettings.tsx:169 +#: src/screens/Settings/AccountSettings.tsx:174 msgid "Delete account" msgstr "刪除帳號" @@ -2355,7 +2478,7 @@ msgstr "要刪除應用程式專用密碼嗎?" msgid "Delete chat" msgstr "刪除對話" -#: src/screens/Settings/Settings.tsx:404 +#: src/screens/Settings/Settings.tsx:462 msgid "Delete chat declaration record" msgstr "刪除對話聲明紀錄" @@ -2370,7 +2493,7 @@ msgstr "刪除對話" msgid "Delete Conversation" msgstr "刪除對話" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:158 msgid "Delete for me" msgstr "為我刪除" @@ -2378,11 +2501,11 @@ msgstr "為我刪除" msgid "Delete list" msgstr "刪除列表" -#: src/components/dms/MessageContextMenu.tsx:187 +#: src/components/dms/MessageContextMenu.tsx:181 msgid "Delete message" msgstr "刪除訊息" -#: src/components/dms/MessageContextMenu.tsx:162 +#: src/components/dms/MessageContextMenu.tsx:156 msgid "Delete message for me" msgstr "為我刪除訊息" @@ -2390,9 +2513,9 @@ msgstr "為我刪除訊息" msgid "Delete my account" msgstr "刪除我的帳號" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669 -#: src/view/com/composer/Composer.tsx:835 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:678 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:680 +#: src/view/com/composer/Composer.tsx:884 msgid "Delete post" msgstr "刪除貼文" @@ -2409,11 +2532,11 @@ msgstr "要刪除新手包嗎?" msgid "Delete this list?" msgstr "要刪除這個列表嗎?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 msgid "Delete this post?" msgstr "要刪除這則貼文嗎?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +#: src/components/Post/Embed/index.tsx:173 msgid "Deleted" msgstr "已刪除" @@ -2422,15 +2545,20 @@ msgstr "已刪除" msgid "Deleted Account" msgstr "已刪除的帳號" -#: src/view/com/post-thread/PostThread.tsx:454 +#: src/view/com/feeds/MissingFeed.tsx:42 +#: src/view/com/feeds/MissingFeed.tsx:75 +#: src/view/com/feeds/MissingFeed.tsx:127 +#: src/view/com/feeds/MissingFeed.tsx:135 +msgid "Deleted list" +msgstr "已刪除的列表" + +#: src/view/com/post-thread/PostThread.tsx:474 msgid "Deleted post." msgstr "該貼文已刪除。" #: src/screens/Profile/Header/EditProfileDialog.tsx:369 #: src/view/com/modals/CreateOrEditList.tsx:278 #: src/view/com/modals/CreateOrEditList.tsx:299 -#: src/view/com/modals/EditProfile.tsx:218 -#: src/view/com/modals/EditProfile.tsx:230 msgid "Description" msgstr "簡介" @@ -2447,12 +2575,12 @@ msgstr "簡介太長了,{DESCRIPTION_MAX_GRAPHEMES, plural, other {不得超 msgid "Descriptive alt text" msgstr "描述性替代文字" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592 msgid "Detach quote" msgstr "分離引用" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:728 msgid "Detach quote post?" msgstr "要解除引用貼文嗎?" @@ -2466,16 +2594,16 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "成功啟用開發者模式" -#: src/screens/Settings/Settings.tsx:252 -#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:271 +#: src/screens/Settings/Settings.tsx:274 msgid "Developer options" msgstr "開發人員選項" -#: src/components/WhoCanReply.tsx:179 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "對話框:調整哪些人能夠與這則貼文互動" -#: src/screens/Settings/AppearanceSettings.tsx:122 +#: src/screens/Settings/AppearanceSettings.tsx:125 msgid "Dim" msgstr "昏暗" @@ -2492,27 +2620,27 @@ msgstr "停用電子郵件雙重驗證" msgid "Disable Email 2FA" msgstr "停用電子郵件雙重驗證" -#: src/screens/Settings/AccessibilitySettings.tsx:91 -#: src/screens/Settings/AccessibilitySettings.tsx:96 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +#: src/screens/Settings/AccessibilitySettings.tsx:94 msgid "Disable haptic feedback" msgstr "關閉觸覺回饋" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386 msgid "Disable subtitles" msgstr "關閉字幕" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:142 -#: src/screens/Moderation/index.tsx:364 +#: src/screens/Messages/Settings.tsx:155 +#: src/screens/Messages/Settings.tsx:158 +#: src/screens/Moderation/index.tsx:394 msgid "Disabled" msgstr "停用" #: src/screens/Profile/Header/EditProfileDialog.tsx:88 -#: src/view/com/composer/Composer.tsx:684 -#: src/view/com/composer/Composer.tsx:868 +#: src/view/com/composer/Composer.tsx:727 +#: src/view/com/composer/Composer.tsx:917 msgid "Discard" msgstr "捨棄" @@ -2520,11 +2648,11 @@ msgstr "捨棄" msgid "Discard changes?" msgstr "要放棄變更嗎?" -#: src/view/com/composer/Composer.tsx:681 +#: src/view/com/composer/Composer.tsx:724 msgid "Discard draft?" msgstr "要捨棄草稿嗎?" -#: src/view/com/composer/Composer.tsx:860 +#: src/view/com/composer/Composer.tsx:909 msgid "Discard post?" msgstr "要放棄發布嗎?" @@ -2542,7 +2670,7 @@ msgstr "探索動態源" msgid "Discover new custom feeds" msgstr "探索新的自訂動態源" -#: src/view/screens/Feeds.tsx:728 +#: src/view/screens/Feeds.tsx:730 msgid "Discover New Feeds" msgstr "探索新的動態源" @@ -2550,7 +2678,7 @@ msgstr "探索新的動態源" msgid "Dismiss" msgstr "跳過" -#: src/view/com/composer/Composer.tsx:1593 +#: src/view/com/composer/Composer.tsx:1658 msgid "Dismiss error" msgstr "跳過錯誤" @@ -2562,26 +2690,26 @@ msgstr "跳過入門指南" msgid "Dismiss interests" msgstr "忽略興趣" -#: src/components/interstitials/TrendingVideos.tsx:92 +#. Accessibility label for dismissing a toast notification +#: src/components/Toast/index.web.tsx:82 +msgid "Dismiss message" +msgstr "忽略訊息" + +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "忽略此部分" -#: src/screens/Settings/AccessibilitySettings.tsx:71 -#: src/screens/Settings/AccessibilitySettings.tsx:76 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +#: src/screens/Settings/AccessibilitySettings.tsx:74 msgid "Display larger alt text badges" msgstr "顯示較大的替代文字標誌" #: src/screens/Profile/Header/EditProfileDialog.tsx:320 #: src/screens/Profile/Header/EditProfileDialog.tsx:326 #: src/screens/Profile/Header/EditProfileDialog.tsx:376 -#: src/view/com/modals/EditProfile.tsx:194 msgid "Display name" msgstr "名稱" -#: src/view/com/modals/EditProfile.tsx:182 -msgid "Display Name" -msgstr "名稱" - #: src/screens/Profile/Header/EditProfileDialog.tsx:339 msgid "Display name is too long" msgstr "名稱太長了" @@ -2603,15 +2731,11 @@ msgstr "不要使用此靜音字詞來隱藏您所跟隨用戶的貼文" msgid "Does not include nudity." msgstr "不包含裸露內容。" -#: src/screens/Signup/StepHandle.tsx:173 -msgid "Doesn't begin or end with a hyphen" -msgstr "不以連字號 (-) 開頭或結尾" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:507 msgid "Domain verified!" msgstr "成功驗證網域!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 msgid "Don't have a code or need a new one? <0>Click here." msgstr "還沒有代碼或需要新的代碼?<0>點一下這裡。" @@ -2619,6 +2743,15 @@ msgstr "還沒有代碼或需要新的代碼?<0>點一下這裡。" msgid "Don't see an email? <0>Click here to resend." msgstr "沒有看到電子郵件嗎?<0>點一下這裡來重新傳送。" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:113 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:36 +msgid "Don't show again" +msgstr "不再顯示" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "不用擔心!您現有的訊息和設定都已儲存,只需驗證您已成年即可恢復。" + #: src/components/dialogs/BirthDateSettings.tsx:115 #: src/components/dialogs/BirthDateSettings.tsx:121 #: src/components/dms/ReportDialog.tsx:314 @@ -2660,7 +2793,7 @@ msgstr "點兩下或長按訊息以加入反應" msgid "Double tap to close the dialog" msgstr "點兩下以關閉對話框" -#: src/screens/VideoFeed/index.tsx:1077 +#: src/screens/VideoFeed/index.tsx:1080 msgid "Double tap to like" msgstr "點兩下以表示喜歡" @@ -2673,7 +2806,7 @@ msgstr "下載 Bluesky" msgid "Download CAR file" msgstr "下載 CAR 檔案" -#: src/view/com/composer/text-input/TextInput.web.tsx:342 +#: src/view/com/composer/text-input/TextInput.web.tsx:344 msgid "Drop to add images" msgstr "拖放即可新增圖片" @@ -2689,18 +2822,10 @@ msgstr "例如:alice" msgid "e.g. Alice Lastname" msgstr "例如:張藍天" -#: src/view/com/modals/EditProfile.tsx:187 -msgid "e.g. Alice Roberts" -msgstr "例如:張藍天" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:376 msgid "e.g. alice.com" msgstr "例如:alice.com" -#: src/view/com/modals/EditProfile.tsx:223 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "例如:藝術家、狗派人士或書迷。" - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "例如:人體藝術。" @@ -2725,10 +2850,11 @@ msgstr "例如:不斷使用廣告洗版的帳號。" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "每組邀請碼只能使用一次。後續您將定期收到更多邀請碼。" -#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Settings/AccountSettings.tsx:143 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:249 #: src/screens/StarterPack/StarterPackScreen.tsx:588 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/Wizard/index.tsx:319 +#: src/screens/StarterPack/Wizard/index.tsx:324 msgid "Edit" msgstr "編輯" @@ -2738,7 +2864,7 @@ msgctxt "action" msgid "Edit" msgstr "編輯" -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/util/UserAvatar.tsx:439 #: src/view/com/util/UserBanner.tsx:119 msgid "Edit avatar" msgstr "編輯大頭貼照" @@ -2749,12 +2875,12 @@ msgstr "編輯動態源" #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 -#: src/view/com/composer/photos/Gallery.tsx:194 +#: src/view/com/composer/photos/Gallery.tsx:195 msgid "Edit image" msgstr "編輯圖片" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 msgid "Edit interaction settings" msgstr "編輯互動設定" @@ -2776,33 +2902,33 @@ msgstr "編輯直播狀態" msgid "Edit Moderation List" msgstr "編輯內容管理列表" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:355 #: src/view/screens/Feeds.tsx:518 msgid "Edit My Feeds" msgstr "編輯我的動態源" -#: src/view/com/modals/EditProfile.tsx:154 -msgid "Edit my profile" -msgstr "編輯個人檔案" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:240 +msgid "Edit notifications from {0}" +msgstr "編輯來自 {0} 的動態通知" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "編輯用戶" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:73 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:243 msgid "Edit post interaction settings" msgstr "編輯貼文互動設定" #: src/screens/Profile/Header/EditProfileDialog.tsx:275 #: src/screens/Profile/Header/EditProfileDialog.tsx:281 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:185 msgid "Edit profile" msgstr "編輯個人檔案" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 msgid "Edit Profile" msgstr "編輯個人檔案" @@ -2814,19 +2940,11 @@ msgstr "編輯新手包" msgid "Edit User List" msgstr "編輯用戶列表" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Edit who can reply" msgstr "修改哪些人可以回覆" -#: src/view/com/modals/EditProfile.tsx:195 -msgid "Edit your display name" -msgstr "編輯您的名稱" - -#: src/view/com/modals/EditProfile.tsx:231 -msgid "Edit your profile description" -msgstr "編輯您的個人簡介" - -#: src/Navigation.tsx:468 +#: src/Navigation.tsx:593 msgid "Edit your starter pack" msgstr "編輯您的新手包" @@ -2839,8 +2957,8 @@ msgstr "教育" msgid "Either the creator of this list has blocked you or you have blocked the creator." msgstr "此列表的建立者已封鎖您,或您已封鎖了對方。" -#: src/screens/Settings/AccountSettings.tsx:63 -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Settings/AccountSettings.tsx:64 +#: src/screens/Signup/StepInfo/index.tsx:197 msgid "Email" msgstr "電子信箱" @@ -2849,7 +2967,7 @@ msgctxt "toast" msgid "Email 2FA disabled" msgstr "成功停用電子郵件雙重驗證" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 msgid "Email 2FA enabled" msgstr "已啟用電子郵件雙重驗證" @@ -2865,10 +2983,6 @@ msgstr "重新傳送電子郵件" msgid "Email sent!" msgstr "已傳送電子郵件!" -#: src/components/dialogs/ChangeEmailDialog.tsx:63 -msgid "Email Updated!" -msgstr "已更新電子郵件地址!" - #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 msgid "Email verification complete!" msgstr "已完成驗證電子信箱!" @@ -2883,8 +2997,8 @@ msgstr "嵌入 HTML 程式碼" #: src/components/dialogs/Embed.tsx:104 #: src/components/dialogs/Embed.tsx:108 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 msgid "Embed post" msgstr "嵌入貼文" @@ -2892,7 +3006,7 @@ msgstr "嵌入貼文" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "將這則貼文嵌入到您的網站。只需複製以下程式碼片段,並將其貼上到您網站的 HTML 程式碼中即可。" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58 msgid "Embedded video player" msgstr "嵌入式影片播放器" @@ -2906,7 +3020,7 @@ msgstr "啟用" msgid "Enable {0} only" msgstr "僅啟用 {0}" -#: src/screens/Moderation/index.tsx:351 +#: src/screens/Moderation/index.tsx:381 msgid "Enable adult content" msgstr "顯示成人內容" @@ -2919,16 +3033,20 @@ msgstr "啟用電子郵件雙重驗證" msgid "Enable external media" msgstr "啟用外部媒體" -#: src/screens/Settings/ExternalMediaPreferences.tsx:49 +#: src/screens/Settings/ExternalMediaPreferences.tsx:52 msgid "Enable media players for" msgstr "啟用媒體播放器" -#: src/screens/Settings/NotificationSettings.tsx:74 -#: src/screens/Settings/NotificationSettings.tsx:77 -msgid "Enable priority notifications" -msgstr "啟用優先通知" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "前往其個人檔案,點一下旁邊的<0>鈴鐺圖示 <1/>,即可接收該帳號的動態通知。" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:102 +#: src/screens/Settings/NotificationSettings/index.tsx:106 +msgid "Enable push notifications" +msgstr "啟用推播通知" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 msgid "Enable subtitles" msgstr "開啟字幕" @@ -2941,17 +3059,14 @@ msgstr "僅啟用此來源" msgid "Enable trending topics" msgstr "啟用流行趨勢" +#: src/screens/Settings/ContentAndMediaSettings.tsx:153 #: src/screens/Settings/ContentAndMediaSettings.tsx:167 msgid "Enable trending videos in your Discover feed" msgstr "在您的「Discover」動態源中啟用熱門影片" -#: src/screens/Settings/ContentAndMediaSettings.tsx:153 -msgid "Enable trending videos in your Discover feed." -msgstr "在您的「Discover」動態源中啟用熱門影片。" - -#: src/screens/Messages/Settings.tsx:130 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Moderation/index.tsx:362 +#: src/screens/Messages/Settings.tsx:146 +#: src/screens/Messages/Settings.tsx:149 +#: src/screens/Moderation/index.tsx:392 msgid "Enabled" msgstr "啟用" @@ -2963,7 +3078,7 @@ msgstr "已經到底啦!" msgid "Ensure you have selected a language for each subtitle file." msgstr "請確認您已為每個字幕檔案選擇一種語言。" -#: src/screens/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Login/SetNewPasswordForm.tsx:147 msgid "Enter a password" msgstr "輸入密碼" @@ -2973,15 +3088,11 @@ msgid "Enter a word or tag" msgstr "輸入字詞或標籤" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 msgid "Enter code" msgstr "輸入代碼" -#: src/components/dialogs/VerifyEmailDialog.tsx:118 -msgid "Enter Code" -msgstr "輸入驗證碼" - -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 msgid "Enter fullscreen" msgstr "進入全螢幕" @@ -3006,14 +3117,10 @@ msgid "Enter your birth date" msgstr "輸入您的出生日期" #: src/screens/Login/ForgotPasswordForm.tsx:99 -#: src/screens/Signup/StepInfo/index.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:217 msgid "Enter your email address" msgstr "輸入您的電子郵件地址" -#: src/components/dialogs/ChangeEmailDialog.tsx:138 -msgid "Enter your new email address below." -msgstr "請在下方輸入您的新電子郵件地址。" - #: src/screens/Login/LoginForm.tsx:243 msgid "Enter your password" msgstr "輸入您的密碼" @@ -3022,7 +3129,7 @@ msgstr "輸入您的密碼" msgid "Enter your username and password" msgstr "輸入您的用戶名稱和密碼" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 msgid "Enters full screen" msgstr "進入全螢幕" @@ -3030,44 +3137,63 @@ msgstr "進入全螢幕" msgid "Entertainment" msgstr "娛樂" -#: src/view/com/composer/Composer.tsx:1678 +#: src/view/com/composer/Composer.tsx:1743 #: src/view/com/util/error/ErrorScreen.tsx:42 msgid "Error" msgstr "錯誤" +#: src/screens/PostThread/components/ThreadError.tsx:26 +msgid "Error loading post" +msgstr "載入貼文時發生錯誤" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "載入偏好設定時發生錯誤" + +#: src/view/com/feeds/MissingFeed.tsx:198 +msgid "Error message" +msgstr "錯誤資訊" + #: src/screens/Settings/components/ExportCarDialog.tsx:47 msgid "Error occurred while saving file" msgstr "儲存檔案時發生錯誤" -#: src/screens/Signup/StepCaptcha/index.tsx:55 +#: src/screens/Signup/StepCaptcha/index.tsx:124 msgid "Error receiving captcha response." -msgstr "接收人機驗證回應時發生錯誤。" +msgstr "取得人機驗證 (Captcha) 回應時發生錯誤。" #: src/screens/Onboarding/StepInterests/index.tsx:183 msgid "Error:" msgstr "錯誤:" -#: src/screens/Search/SearchResults.tsx:131 +#: src/screens/Search/SearchResults.tsx:144 msgid "Error: {error}" msgstr "錯誤:{error}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:398 msgid "Everybody" msgstr "所有人" -#: src/components/WhoCanReply.tsx:71 +#: src/components/WhoCanReply.tsx:77 msgid "Everybody can reply" msgstr "所有人都可以回覆" -#: src/components/WhoCanReply.tsx:222 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "所有人都可以回覆這則貼文。" -#: src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:99 +#: src/screens/Messages/Settings.tsx:102 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:164 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "所有人" +#: src/screens/Settings/NotificationSettings/index.tsx:235 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +msgid "Everything else" +msgstr "其他內容" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73 #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" @@ -3086,7 +3212,7 @@ msgstr "排除已跟隨的用戶" msgid "Excludes users you follow" msgstr "排除已跟隨的用戶" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404 msgid "Exit fullscreen" msgstr "退出全螢幕" @@ -3106,24 +3232,28 @@ msgstr "離開圖片檢視器" msgid "Expand alt text" msgstr "展開替代文字" -#: src/view/com/notifications/NotificationFeedItem.tsx:538 +#: src/view/com/notifications/NotificationFeedItem.tsx:592 msgid "Expand list of users" msgstr "展開用戶列表" -#: src/view/com/composer/ComposerReplyTo.tsx:84 +#: src/view/com/composer/ComposerReplyTo.tsx:91 msgid "Expand or collapse the full post you are replying to" msgstr "展開或摺疊您正在回覆的完整貼文" -#: src/screens/VideoFeed/index.tsx:962 +#: src/components/Post/ShowMoreTextButton.tsx:32 +msgid "Expand post text" +msgstr "展開貼文文字" + +#: src/screens/VideoFeed/index.tsx:965 msgid "Expands or collapses post text" msgstr "展開或摺疊貼文文字" -#: src/lib/api/index.ts:406 +#: src/lib/api/index.ts:418 msgid "Expected uri to resolve to a record" msgstr "URI 應解析為記錄" -#: src/screens/Settings/FollowingFeedPreferences.tsx:123 -#: src/screens/Settings/ThreadPreferences.tsx:137 +#: src/screens/Settings/FollowingFeedPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:271 msgid "Experimental" msgstr "實驗性功能" @@ -3153,15 +3283,15 @@ msgstr "血腥、露骨或災害等可能會引起不適的媒體內容。" msgid "Explicit sexual images." msgstr "露骨的色情圖片。" -#: src/Navigation.tsx:652 +#: src/Navigation.tsx:750 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 -#: src/view/shell/Drawer.tsx:389 +#: src/view/shell/desktop/LeftNav.tsx:636 +#: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "探索" -#: src/screens/Settings/AccountSettings.tsx:148 -#: src/screens/Settings/AccountSettings.tsx:152 +#: src/screens/Settings/AccountSettings.tsx:150 +#: src/screens/Settings/AccountSettings.tsx:154 msgid "Export my data" msgstr "匯出我的資料" @@ -3180,12 +3310,12 @@ msgid "External Media" msgstr "外部媒體" #: src/components/dialogs/EmbedConsent.tsx:70 -#: src/screens/Settings/ExternalMediaPreferences.tsx:40 +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 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:347 -#: src/screens/Settings/ExternalMediaPreferences.tsx:31 +#: src/Navigation.tsx:374 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 msgid "External Media Preferences" msgstr "外部媒體選項" @@ -3195,7 +3325,7 @@ msgid "Failed to accept chat" msgstr "無法接受對話邀請" #: src/components/dms/ActionsWrapper.web.tsx:67 -#: src/components/dms/MessageContextMenu.tsx:104 +#: src/components/dms/MessageContextMenu.tsx:99 msgid "Failed to add emoji reaction" msgstr "無法加入表情符號反應" @@ -3211,8 +3341,8 @@ msgstr "無法建立應用程式專用密碼,請再試一次。" msgid "Failed to create conversation" msgstr "無法建立對話" -#: src/screens/StarterPack/Wizard/index.tsx:233 -#: src/screens/StarterPack/Wizard/index.tsx:241 +#: src/screens/StarterPack/Wizard/index.tsx:239 +#: src/screens/StarterPack/Wizard/index.tsx:247 msgid "Failed to create starter pack" msgstr "無法建立新手包" @@ -3226,11 +3356,11 @@ msgctxt "toast" msgid "Failed to delete chat" msgstr "無法刪除對話" -#: src/components/dms/MessageContextMenu.tsx:84 +#: src/components/dms/MessageContextMenu.tsx:79 msgid "Failed to delete message" msgstr "無法刪除訊息" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 msgid "Failed to delete post, please try again" msgstr "無法刪除貼文,請再試一次" @@ -3238,8 +3368,8 @@ msgstr "無法刪除貼文,請再試一次" msgid "Failed to delete starter pack" msgstr "無法刪除新手包" -#: src/screens/Messages/ChatList.tsx:244 -#: src/screens/Messages/Inbox.tsx:187 +#: src/screens/Messages/ChatList.tsx:270 +#: src/screens/Messages/Inbox.tsx:208 msgid "Failed to load conversations" msgstr "無法載入對話" @@ -3250,14 +3380,32 @@ msgstr "無法載入對話" msgid "Failed to load feeds preferences" msgstr "無法載入動態源偏好設定" -#: src/components/dialogs/GifSelect.tsx:225 +#: src/components/dialogs/GifSelect.tsx:226 msgid "Failed to load GIFs" msgstr "無法載入 GIF" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:115 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +msgid "Failed to load notification settings." +msgstr "無法載入通知設定。" + #: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "無法載入過去的訊息" +#: src/screens/Settings/ActivityPrivacySettings.tsx:65 +msgid "Failed to load preference." +msgstr "無法載入偏好設定。" + #: src/screens/Search/Explore.tsx:463 #: src/screens/Search/Explore.tsx:515 #: src/screens/Search/Explore.tsx:553 @@ -3269,8 +3417,8 @@ msgstr "無法載入推薦動態源" msgid "Failed to load suggested follows" msgstr "無法載入推薦跟隨的帳號" -#: src/screens/Messages/Inbox.tsx:295 -#: src/screens/Messages/Inbox.tsx:318 +#: src/screens/Messages/Inbox.tsx:316 +#: src/screens/Messages/Inbox.tsx:339 msgid "Failed to mark all requests as read" msgstr "無法將所有邀請標示為已讀" @@ -3279,7 +3427,7 @@ msgid "Failed to pin post" msgstr "無法釘選貼文" #: src/components/dms/ActionsWrapper.web.tsx:61 -#: src/components/dms/MessageContextMenu.tsx:98 +#: src/components/dms/MessageContextMenu.tsx:93 msgid "Failed to remove emoji reaction" msgstr "無法刪除表情符號反應" @@ -3291,15 +3439,11 @@ msgstr "無法撤回驗證" msgid "Failed to save image: {0}" msgstr "無法儲存圖片:{0}" -#: src/state/queries/notifications/settings.ts:39 -msgid "Failed to save notification preferences, please try again" -msgstr "無法儲存通知偏好設定,請再試一次" - #: src/screens/ModerationInteractionSettings/index.tsx:108 msgid "Failed to save settings. Please try again." msgstr "無法儲存設定,請再試一次。" -#: src/screens/Settings/SettingsInterests.tsx:133 +#: src/screens/Settings/InterestsSettings.tsx:132 msgctxt "toast" msgid "Failed to save your interests." msgstr "無法儲存感興趣的主題。" @@ -3318,7 +3462,7 @@ msgstr "無法傳送郵件,請再試一次。" msgid "Failed to submit appeal, please try again." msgstr "無法提交申訴,請再試一次。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 msgid "Failed to toggle thread mute, please try again" msgstr "無法將討論串設為靜音,請再試一次" @@ -3335,7 +3479,11 @@ msgstr "無法更新電子信箱,請再試一次。" msgid "Failed to update feeds" msgstr "無法更新動態" -#: src/screens/Messages/Settings.tsx:34 +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "無法更新通知類別" + +#: src/screens/Messages/Settings.tsx:50 msgid "Failed to update settings" msgstr "無法更新設定" @@ -3354,15 +3502,23 @@ msgstr "無法驗證電子信箱,請再試一次。" msgid "Failed to verify handle. Please try again." msgstr "無法驗證帳號代碼,請再試一次。" -#: src/Navigation.tsx:263 +#: src/Navigation.tsx:290 msgid "Feed" msgstr "動態源" #: src/components/FeedCard.tsx:139 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/view/com/feeds/FeedSourceCard.tsx:150 msgid "Feed by {0}" msgstr "來自 {0} 的動態源" +#: src/view/com/feeds/MissingFeed.tsx:152 +msgid "Feed creator" +msgstr "動態源建立者" + +#: src/view/com/feeds/MissingFeed.tsx:188 +msgid "Feed identifier" +msgstr "動態源 ID" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:354 msgid "Feed menu" msgstr "動態源選單" @@ -3371,35 +3527,39 @@ msgstr "動態源選單" msgid "Feed toggle" msgstr "切換動態源" +#: src/view/com/feeds/MissingFeed.tsx:73 +msgid "Feed unavailable" +msgstr "動態源目前無法使用" + #: src/view/shell/desktop/RightNav.tsx:102 #: src/view/shell/desktop/RightNav.tsx:103 -#: src/view/shell/Drawer.tsx:343 +#: src/view/shell/Drawer.tsx:357 msgid "Feedback" msgstr "意見回饋" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:285 msgctxt "toast" msgid "Feedback sent!" msgstr "成功送出意見回饋!" -#: src/Navigation.tsx:448 -#: src/screens/Search/SearchResults.tsx:68 +#: src/Navigation.tsx:573 +#: src/screens/Search/SearchResults.tsx:73 #: src/screens/StarterPack/StarterPackScreen.tsx:190 #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 -#: src/view/screens/SavedFeeds.tsx:96 -#: src/view/shell/desktop/LeftNav.tsx:673 -#: src/view/shell/Drawer.tsx:505 +#: src/view/screens/SavedFeeds.tsx:104 +#: src/view/shell/desktop/LeftNav.tsx:674 +#: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "動態源" -#: src/view/screens/SavedFeeds.tsx:198 +#: src/view/screens/SavedFeeds.tsx:206 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "動態源是可讓用戶自行設計的演算法,只需掌握一點開發技巧即可輕鬆構建。詳細資訊請<0/>。" #: src/components/FeedCard.tsx:282 -#: src/view/screens/SavedFeeds.tsx:82 +#: src/view/screens/SavedFeeds.tsx:86 msgctxt "toast" msgid "Feeds updated!" msgstr "成功更新動態源!" @@ -3428,6 +3588,14 @@ msgstr "依語言篩選搜尋" msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "依語言篩選搜尋(目前:{currentLanguageLabel})" +#: src/screens/Settings/ActivityPrivacySettings.tsx:105 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "篩選哪些人可以選擇接收您的動態通知" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158 +msgid "Filter who you receive notifications from" +msgstr "篩選您想接收的通知來源" + #: src/screens/Onboarding/StepFinished.tsx:314 msgid "Finalizing" msgstr "正在完成" @@ -3448,7 +3616,7 @@ msgstr "尋找一些人來跟隨" msgid "Find posts, users, and feeds on Bluesky" msgstr "在 Bluesky 上尋找貼文、用戶和動態源" -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Finish" msgstr "完成" @@ -3456,17 +3624,17 @@ msgstr "完成" msgid "Fitness" msgstr "健康" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "消光黑" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "消光藍" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "消光白" @@ -3476,10 +3644,10 @@ msgid "Flexible" msgstr "靈活" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:419 -#: src/components/ProfileHoverCard/index.web.tsx:494 -#: src/components/ProfileHoverCard/index.web.tsx:505 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226 +#: src/components/ProfileCard.tsx:517 +#: src/components/ProfileHoverCard/index.web.tsx:496 +#: src/components/ProfileHoverCard/index.web.tsx:507 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:245 #: src/screens/VideoFeed/index.tsx:850 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:131 msgid "Follow" @@ -3490,7 +3658,7 @@ msgctxt "action" msgid "Follow" msgstr "跟隨" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:113 msgid "Follow {0}" msgstr "跟隨 {0}" @@ -3518,7 +3686,7 @@ msgstr "跟隨帳號" msgid "Follow all" msgstr "全部跟隨" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:243 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:129 msgid "Follow Back" msgstr "回跟" @@ -3528,23 +3696,23 @@ msgctxt "action" msgid "Follow Back" msgstr "回跟" -#: src/components/KnownFollowers.tsx:234 +#: src/components/KnownFollowers.tsx:238 msgid "Followed by <0>{0}" msgstr "被您認識的 <0>{0} 跟隨" -#: src/components/KnownFollowers.tsx:220 +#: src/components/KnownFollowers.tsx:224 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "被您認識的 <0>{0} 和{1, plural, one {其他 # 人跟隨} other {其他 # 人跟隨}}" -#: src/components/KnownFollowers.tsx:207 +#: src/components/KnownFollowers.tsx:211 msgid "Followed by <0>{0} and <1>{1}" msgstr "被您認識的 <0>{0} 和 <1>{1} 跟隨" -#: src/components/KnownFollowers.tsx:189 +#: src/components/KnownFollowers.tsx:193 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "被您認識的 <0>{0}, <1>{1} 和{2, plural, one {其他 # 人跟隨} other {其他 # 人跟隨}}" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:244 msgid "Followers of @{0} that you know" msgstr "您認識的這些人也跟隨了 @{0}" @@ -3554,18 +3722,22 @@ msgid "Followers you know" msgstr "您也認識的跟隨者" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:413 -#: src/components/ProfileHoverCard/index.web.tsx:493 -#: src/components/ProfileHoverCard/index.web.tsx:504 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/components/ProfileCard.tsx:511 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:241 #: src/screens/VideoFeed/index.tsx:848 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:134 -#: src/view/screens/Feeds.tsx:602 -#: src/view/screens/SavedFeeds.tsx:422 msgid "Following" msgstr "跟隨中" -#: src/components/ProfileCard.tsx:376 +#: src/view/screens/Feeds.tsx:603 +#: src/view/screens/SavedFeeds.tsx:420 +msgctxt "feed-name" +msgid "Following" +msgstr "跟隨中" + +#: src/components/ProfileCard.tsx:474 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 msgid "Following {0}" msgstr "成功跟隨 {0}" @@ -3579,8 +3751,8 @@ msgstr "成功跟隨 {handle}" msgid "Following feed preferences" msgstr "「Following」(跟隨中) 動態源選項" -#: src/Navigation.tsx:334 -#: src/screens/Settings/FollowingFeedPreferences.tsx:53 +#: src/Navigation.tsx:361 +#: src/screens/Settings/FollowingFeedPreferences.tsx:56 msgid "Following Feed Preferences" msgstr "「Following」(跟隨中) 動態源選項" @@ -3592,11 +3764,11 @@ msgstr "跟隨您" msgid "Follows You" msgstr "跟隨您" -#: src/screens/Settings/AppearanceSettings.tsx:140 +#: src/screens/Settings/AppearanceSettings.tsx:143 msgid "Font" msgstr "字型" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:163 msgid "Font size" msgstr "字型大小" @@ -3613,7 +3785,7 @@ msgstr "為了確保您的帳號安全,我們將傳送一組驗證碼到您的 msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "為了確保您的帳號安全,將無法再次查看此密碼。如果您不慎丟失了,則需要再產生一個新的密碼。" -#: src/screens/Settings/AppearanceSettings.tsx:142 +#: src/screens/Settings/AppearanceSettings.tsx:145 msgid "For the best experience, we recommend using the theme font." msgstr "我們建議使用主題字型,以享有最佳體驗。" @@ -3643,11 +3815,15 @@ msgstr "忘記了?" msgid "Frequently Posts Unwanted Content" msgstr "頻繁發布不當內容" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:154 +msgid "From" +msgstr "來自" + #: src/screens/Hashtag.tsx:120 msgid "From @{sanitizedAuthor}" msgstr "來自 @{sanitizedAuthor}" -#: src/view/com/posts/PostFeedItem.tsx:326 +#: src/view/com/posts/PostFeedItem.tsx:330 msgctxt "from-feed" msgid "From <0/>" msgstr "來自 <0/>" @@ -3660,14 +3836,68 @@ msgstr "相簿" msgid "Generate a starter pack" msgstr "產生一個新手包" -#: src/view/shell/Drawer.tsx:347 +#: src/view/shell/Drawer.tsx:361 msgid "Get help" msgstr "取得幫助" +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +msgid "Get notifications when people follow you." +msgstr "在有人跟隨您時收到通知。" + +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people like posts that you've reposted." +msgstr "在有人對您轉發的貼文表示喜歡時收到通知。" + +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +msgid "Get notifications when people like your posts." +msgstr "在有人對您的貼文表示喜歡時收到通知。" + +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +msgid "Get notifications when people mention you." +msgstr "在有人提及您時收到通知。" + +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +msgid "Get notifications when people quote your posts." +msgstr "在有人引用您的貼文時收到通知。" + +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +msgid "Get notifications when people reply to your posts." +msgstr "在有人回覆您的貼文時收到通知。" + +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 +msgid "Get notifications when people repost posts that you've reposted." +msgstr "在有人轉發您轉發的貼文時收到通知。" + +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +msgid "Get notifications when people repost your posts." +msgstr "在有人轉發您的貼文時收到通知。" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:77 +msgid "Get notified about new posts" +msgstr "在貼文發布時收到通知" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "在您選擇的帳號發布貼文或回覆時收到通知。" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 +msgid "Get notified of new posts from {name}" +msgstr "在 {name} 發布貼文時收到通知" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of this account’s activity" +msgstr "在這個帳號有新的動態時收到通知" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:70 +msgid "Get notified when {name} posts" +msgstr "在 {name} 發布貼文時收到通知" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 +msgid "Get notified when someone posts" +msgstr "在某人發布貼文時收到通知" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 -#: src/components/dialogs/VerifyEmailDialog.tsx:263 -#: src/components/dialogs/VerifyEmailDialog.tsx:269 msgid "Get started" msgstr "開始吧" @@ -3688,14 +3918,16 @@ msgstr "為您的個人檔案選擇大頭貼照" msgid "Glaring violations of law or terms of service" msgstr "明顯違反法律或服務條款" +#: src/components/dialogs/LinkWarning.tsx:111 +#: src/components/dialogs/LinkWarning.tsx:117 #: src/components/Layout/Header/index.tsx:127 #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:249 #: src/screens/Profile/ProfileFeed/index.tsx:92 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1138 -#: src/screens/VideoFeed/index.tsx:1142 +#: src/screens/VideoFeed/index.tsx:1141 +#: src/screens/VideoFeed/index.tsx:1145 #: src/view/com/auth/LoggedOut.tsx:72 #: src/view/screens/NotFound.tsx:57 #: src/view/screens/ProfileList.tsx:1038 @@ -3746,10 +3978,16 @@ msgstr "開始直播" msgid "Go live for" msgstr "直播已進行" -#: src/view/com/notifications/NotificationFeedItem.tsx:204 +#: src/view/com/notifications/NotificationFeedItem.tsx:221 msgid "Go to {firstAuthorName}'s profile" msgstr "前往 {firstAuthorName} 的個人檔案" +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:75 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:84 +msgid "Go to account settings" +msgstr "前往帳號設定" + #: src/screens/Messages/components/ChatListItem.tsx:360 msgid "Go to conversation with {0}" msgstr "與 {0} 對話" @@ -3779,8 +4017,8 @@ msgstr "敏感/寫實媒體" msgid "Half way there!" msgstr "已經完成一半了!" -#: src/screens/Settings/AccountSettings.tsx:137 -#: src/screens/Settings/AccountSettings.tsx:142 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/AccountSettings.tsx:133 msgid "Handle" msgstr "帳號代碼" @@ -3797,7 +4035,7 @@ msgstr "成功變更帳號代碼!" msgid "Handle too long. Please try a shorter one." msgstr "帳號代碼太長了,請縮短代碼再試一次。" -#: src/screens/Settings/AccessibilitySettings.tsx:87 +#: src/screens/Settings/AccessibilitySettings.tsx:85 msgid "Haptics" msgstr "觸覺" @@ -3806,7 +4044,7 @@ msgstr "觸覺" msgid "Harassment, trolling, or intolerance" msgstr "騷擾、惡作劇或歧視行為" -#: src/Navigation.tsx:418 +#: src/Navigation.tsx:538 msgid "Hashtag" msgstr "標籤" @@ -3815,19 +4053,19 @@ msgid "Hashtag {tag}" msgstr "標籤 {tag}" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 msgid "Have a code? <0>Click here." msgstr "已經有代碼了?<0>點一下這裡。" -#: src/screens/Signup/index.tsx:195 +#: src/screens/Signup/index.tsx:210 msgid "Having trouble?" msgstr "遇到問題?" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:221 +#: src/screens/Settings/Settings.tsx:236 +#: src/screens/Settings/Settings.tsx:240 #: src/view/shell/desktop/RightNav.tsx:120 #: src/view/shell/desktop/RightNav.tsx:121 -#: src/view/shell/Drawer.tsx:356 +#: src/view/shell/Drawer.tsx:370 msgid "Help" msgstr "幫助" @@ -3839,8 +4077,13 @@ msgstr "透過上傳圖片或建立大頭貼照,讓大家知道您不是機器 msgid "Here is your app password!" msgstr "以下是您的應用程式專用密碼!" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 +msgid "Hey there 👋" +msgstr "哩賀 👋" + #: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:454 +#: src/components/VideoPostCard.tsx:460 msgid "Hidden" msgstr "隱藏" @@ -3848,16 +4091,16 @@ msgstr "隱藏" msgid "Hidden by your moderation settings." msgstr "您在內容篩選設定中選擇隱藏了此類影片。" -#: src/components/ListCard.tsx:130 +#: src/components/ListCard.tsx:132 msgid "Hidden list" msgstr "隱藏列表" #: src/components/interstitials/Trending.tsx:131 -#: src/components/interstitials/TrendingVideos.tsx:140 -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:135 -#: src/components/moderation/PostHider.tsx:124 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:134 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 @@ -3866,7 +4109,7 @@ msgstr "隱藏列表" msgid "Hide" msgstr "隱藏" -#: src/view/com/notifications/NotificationFeedItem.tsx:755 +#: src/view/com/notifications/NotificationFeedItem.tsx:812 msgctxt "action" msgid "Hide" msgstr "隱藏" @@ -3875,18 +4118,18 @@ msgstr "隱藏" msgid "Hide customization options" msgstr "隱藏自訂選項" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 msgid "Hide post for me" msgstr "為我隱藏貼文" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 msgid "Hide reply for everyone" msgstr "為所有人隱藏回覆" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 msgid "Hide reply for me" msgstr "為我隱藏回覆" @@ -3894,12 +4137,12 @@ msgstr "為我隱藏回覆" msgid "Hide this card" msgstr "隱藏這張卡片" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 msgid "Hide this post?" msgstr "要隱藏這則貼文嗎?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 msgid "Hide this reply?" msgstr "要隱藏這則回覆嗎?" @@ -3913,11 +4156,11 @@ msgstr "隱藏流行趨勢" msgid "Hide trending topics?" msgstr "要隱藏流行趨勢嗎?" -#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "要隱藏熱門影片嗎?" -#: src/view/com/notifications/NotificationFeedItem.tsx:746 +#: src/view/com/notifications/NotificationFeedItem.tsx:803 msgid "Hide user list" msgstr "隱藏用戶列表" @@ -3926,32 +4169,32 @@ msgstr "隱藏用戶列表" msgid "Hide verification badges" msgstr "隱藏驗證標記" -#: src/components/moderation/ContentHider.tsx:151 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:154 +#: src/components/moderation/PostHider.tsx:89 msgid "Hides the content" msgstr "隱藏內容" -#: src/view/com/posts/PostFeedErrorMessage.tsx:117 +#: src/view/com/posts/PostFeedErrorMessage.tsx:121 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "抱歉,與動態源的伺服器連線時發生了一些問題。請向該動態源的擁有者回報這個問題。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:105 +#: src/view/com/posts/PostFeedErrorMessage.tsx:109 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "抱歉,動態源的伺服器設定似乎有誤。請向該動態源的擁有者回報這個問題。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:111 +#: src/view/com/posts/PostFeedErrorMessage.tsx:115 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "抱歉,動態源的伺服器似乎已離線。請向該動態源的提供者回報這個問題。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:108 +#: src/view/com/posts/PostFeedErrorMessage.tsx:112 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "抱歉,動態源的伺服器給出了錯誤的回應。請向該動態源的擁有者回報這個問題。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:102 +#: src/view/com/posts/PostFeedErrorMessage.tsx:106 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." -msgstr "抱歉,我們無法找到這個動態源,它可能已被刪除。" +msgstr "抱歉,我們找不到該動態源,它可能已被刪除。" -#: src/screens/Moderation/index.tsx:58 +#: src/screens/Moderation/index.tsx:59 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "抱歉,似乎在載入這些資料時遇到了問題,更多資訊請參見下方。如果問題持續發生,請聯絡我們。" @@ -3959,15 +4202,15 @@ msgstr "抱歉,似乎在載入這些資料時遇到了問題,更多資訊請 msgid "Hmmmm, we couldn't load that moderation service." msgstr "抱歉,我們無法載入該內容管理服務。" -#: src/view/com/composer/state/video.ts:413 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "等一下!我們正在逐步開放上傳影片功能。您還在等候名單中,請稍後再回來看看!" -#: src/Navigation.tsx:647 -#: src/Navigation.tsx:667 -#: src/view/shell/bottom-bar/BottomBar.tsx:168 -#: src/view/shell/desktop/LeftNav.tsx:617 -#: src/view/shell/Drawer.tsx:415 +#: src/Navigation.tsx:745 +#: src/Navigation.tsx:765 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:618 +#: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "首頁" @@ -3984,10 +4227,10 @@ msgstr "託管服務提供者" msgid "Hot" msgstr "熱門" -#: src/screens/Settings/ThreadPreferences.tsx:67 -#: src/screens/Settings/ThreadPreferences.tsx:70 -#: src/view/com/post-thread/PostThread.tsx:655 -#: src/view/com/post-thread/PostThread.tsx:660 +#: src/screens/Settings/ThreadPreferences.tsx:201 +#: src/screens/Settings/ThreadPreferences.tsx:204 +#: src/view/com/post-thread/PostThread.tsx:679 +#: src/view/com/post-thread/PostThread.tsx:684 msgid "Hot replies first" msgstr "熱門回覆優先" @@ -3996,10 +4239,6 @@ msgstr "熱門回覆優先" msgid "How should we open this link?" msgstr "我們該如何開啟這個連結?" -#: src/components/dialogs/ChangeEmailDialog.tsx:189 -#: src/components/dialogs/ChangeEmailDialog.tsx:196 -#: src/components/dialogs/VerifyEmailDialog.tsx:302 -#: src/components/dialogs/VerifyEmailDialog.tsx:309 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 msgid "I have a code" @@ -4019,7 +4258,7 @@ msgstr "我瞭解" msgid "If alt text is long, toggles alt text expanded state" msgstr "替代文字過長時,切換替代文字的展開狀態" -#: src/screens/Signup/StepInfo/Policies.tsx:112 +#: src/screens/Signup/StepInfo/Policies.tsx:142 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "如果您根據您所在國家的法律尚未成年,則您的父母或法定代理人必須代表您閱讀這些條款。" @@ -4031,11 +4270,11 @@ msgstr "一旦您刪除這個列表,以後將無法再恢復。" msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "如果您擁有自己的網域,可以將其設定為您的帳號代碼。同時還可以證明自己的身分。<0>瞭解詳情。" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 msgid "If you need to update your email, <0>click here." msgstr "如果您需要更新電子信箱,請<0>點一下這裡。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 msgid "If you remove this post, you won't be able to recover it." msgstr "一旦您刪除這則貼文,以後將無法再恢復。" @@ -4047,6 +4286,10 @@ msgstr "如果您更新了電子郵件地址,電子郵件雙重驗證將會自 msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "如果您想變更密碼,我們將向您傳送一組驗證碼,以確認這是您的帳號。" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:154 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "如果您想限制其他人接收您帳號的動態通知,可以前往 <0>設定 → 隱私與安全 變更設定。" + #: src/view/com/auth/server-input/index.tsx:208 msgid "If you're a developer, you can host your own server." msgstr "如果您是開發人員,也可以架設自己的伺服器。" @@ -4091,13 +4334,41 @@ msgstr "冒充/偽造身分或其隸屬關係" msgid "Impersonation, misinformation, or false claims" msgstr "冒充他人、散播錯誤資訊或提出不實指控" +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "In-app" +msgstr "應用程式內" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 +msgid "In-app notifications" +msgstr "應用程式內通知" + +#: src/screens/Settings/NotificationSettings/index.tsx:267 +msgid "In-app, Everyone" +msgstr "應用程式內、所有人" + +#: src/screens/Settings/NotificationSettings/index.tsx:275 +msgid "In-app, People you follow" +msgstr "應用程式內、您跟隨的人" + +#: src/screens/Settings/NotificationSettings/index.tsx:282 +msgid "In-app, Push" +msgstr "應用程式內、推播" + +#: src/screens/Settings/NotificationSettings/index.tsx:265 +msgid "In-app, Push, Everyone" +msgstr "應用程式內、推播、所有人" + +#: src/screens/Settings/NotificationSettings/index.tsx:273 +msgid "In-app, Push, People you follow" +msgstr "應用程式內、推播、您跟隨的人" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "低俗言論或敏感內容連結" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:208 +#: src/screens/Messages/Inbox.tsx:229 msgid "Inbox zero!" msgstr "收件匣清零!" @@ -4105,7 +4376,7 @@ msgstr "收件匣清零!" msgid "Incorrect username or password" msgstr "用戶名稱或密碼錯誤" -#: src/screens/Login/SetNewPasswordForm.tsx:131 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Input code sent to your email for password reset" msgstr "輸入傳送到您電子信箱的代碼以重設密碼" @@ -4113,7 +4384,7 @@ msgstr "輸入傳送到您電子信箱的代碼以重設密碼" msgid "Input confirmation code for account deletion" msgstr "輸入刪除帳號的驗證碼" -#: src/screens/Login/SetNewPasswordForm.tsx:155 +#: src/screens/Login/SetNewPasswordForm.tsx:159 msgid "Input new password" msgstr "輸入新密碼" @@ -4129,10 +4400,14 @@ msgstr "輸入傳送至您電子信箱的代碼" msgid "Interaction limited" msgstr "已限制互動" -#: src/screens/Moderation/index.tsx:213 +#: src/screens/Moderation/index.tsx:222 msgid "Interaction settings" msgstr "互動設定" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 +msgid "Introducing activity notifications" +msgstr "為您介紹動態通知" + #: src/screens/Login/LoginForm.tsx:156 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -4142,7 +4417,7 @@ msgstr "無效的雙重驗證碼。" msgid "Invalid handle. Please try a different one." msgstr "無法使用這個帳號代碼,請選擇不同的代碼再試一次。" -#: src/view/com/post-thread/PostThreadItem.tsx:339 +#: src/view/com/post-thread/PostThreadItem.tsx:347 msgid "Invalid or unsupported post record" msgstr "無效或不支援的貼文紀錄" @@ -4158,7 +4433,7 @@ msgstr "無效的驗證碼" msgid "Invite a Friend" msgstr "邀請朋友" -#: src/screens/Signup/StepInfo/index.tsx:163 +#: src/screens/Signup/StepInfo/index.tsx:167 msgid "Invite code" msgstr "邀請碼" @@ -4186,15 +4461,15 @@ msgstr "邀請朋友跟隨您喜歡的動態源和人物" msgid "Invites, but personal" msgstr "邀請,但更具個人風格" -#: src/screens/Signup/StepInfo/index.tsx:289 +#: src/screens/Signup/StepInfo/index.tsx:293 msgid "It's correct" msgstr "這是正確的電子郵件地址" -#: src/screens/StarterPack/Wizard/index.tsx:435 +#: src/screens/StarterPack/Wizard/index.tsx:474 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "現在新手包裡只有您一個人!使用上面的搜尋功能,將更多人新增到您的新手包中。" -#: src/view/com/composer/Composer.tsx:1612 +#: src/view/com/composer/Composer.tsx:1677 msgid "Job ID: {0}" msgstr "作業 ID:{0}" @@ -4213,18 +4488,34 @@ msgstr "加入 Bluesky" #: src/components/StarterPack/QrCode.tsx:68 #: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" -msgstr "加入對話" +msgstr "加入討論" #: src/screens/Onboarding/index.tsx:21 #: src/screens/Onboarding/state.ts:104 msgid "Journalism" msgstr "記者" -#: src/components/moderation/ContentHider.tsx:231 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 +msgid "Keep me posted" +msgstr "有新動態時通知我" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 +msgid "KWS Privacy Policy" +msgstr "KWS 隱私權政策" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 +msgid "KWS Terms of Use" +msgstr "KWS 服務條款" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 +msgid "KWS website" +msgstr "KWS 網站" + +#: src/components/moderation/ContentHider.tsx:234 msgid "Labeled by {0}." msgstr "由 {0} 標記。" -#: src/components/moderation/ContentHider.tsx:229 +#: src/components/moderation/ContentHider.tsx:232 msgid "Labeled by the author." msgstr "由發布者標記。" @@ -4237,7 +4528,7 @@ msgstr "標記" msgid "Labels added" msgstr "已加入標記" -#: src/screens/Profile/Sections/Labels.tsx:160 +#: src/screens/Profile/Sections/Labels.tsx:194 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "標記可用於隱藏、警告或分類用戶和內容。" @@ -4253,22 +4544,30 @@ msgstr "您內容上的標記" msgid "Language selection" msgstr "語言選擇" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:217 msgid "Language Settings" msgstr "語言設定" #: src/screens/Settings/LanguageSettings.tsx:78 -#: src/screens/Settings/Settings.tsx:209 -#: src/screens/Settings/Settings.tsx:212 +#: src/screens/Settings/Settings.tsx:228 +#: src/screens/Settings/Settings.tsx:231 msgid "Languages" msgstr "語言" -#: src/screens/Settings/AppearanceSettings.tsx:172 +#: src/screens/Settings/AppearanceSettings.tsx:175 msgid "Larger" msgstr "更大" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 +msgid "Last initiated {timeAgo} ago" +msgstr "最後一次請求於 {timeAgo} 前" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 +msgid "Last initiated just now" +msgstr "最後一次請求於不久前" + #: src/screens/Hashtag.tsx:95 -#: src/screens/Search/SearchResults.tsx:52 +#: src/screens/Search/SearchResults.tsx:57 #: src/screens/Topic.tsx:77 msgid "Latest" msgstr "最新" @@ -4282,7 +4581,6 @@ msgstr "瞭解詳情" #: src/screens/Moderation/VerificationSettings.tsx:47 #: src/screens/Profile/Header/EditProfileDialog.tsx:359 #: src/screens/Settings/components/ChangeHandleDialog.tsx:212 -#: src/view/com/modals/EditProfile.tsx:207 msgid "Learn more" msgstr "瞭解詳情" @@ -4290,6 +4588,10 @@ msgstr "瞭解詳情" msgid "Learn More" msgstr "瞭解詳情" +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:74 +msgid "Learn more about age assurance" +msgstr "深入瞭解年齡驗證" + #: src/view/com/auth/SplashScreen.web.tsx:168 msgid "Learn more about Bluesky" msgstr "深入瞭解 Bluesky" @@ -4298,15 +4600,23 @@ msgstr "深入瞭解 Bluesky" msgid "Learn more about self hosting your PDS." msgstr "深入瞭解如何自行架設 PDS。" -#: src/components/moderation/ContentHider.tsx:149 +#: src/components/moderation/ContentHider.tsx:152 msgid "Learn more about the moderation applied to this content" msgstr "深入瞭解對這項內容套用的審核措施" -#: src/components/moderation/ContentHider.tsx:215 +#: src/components/moderation/ContentHider.tsx:218 msgid "Learn more about the moderation applied to this content." msgstr "深入瞭解套用於這項內容的內容管理措施。" -#: src/components/moderation/PostHider.tsx:100 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "您可以<0>閱讀我們的部落格文章,瞭解有關這些變化的更多資訊,以及如何與我們分享您的想法。" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "您可以閱讀我們的部落格文章,瞭解有關這些變化的更多資訊,以及如何與我們分享您的想法。" + +#: src/components/moderation/PostHider.tsx:110 #: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "深入瞭解這個警告" @@ -4316,12 +4626,16 @@ msgstr "深入瞭解這個警告" msgid "Learn more about verification on Bluesky" msgstr "深入瞭解 Bluesky 的驗證機制" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "深入瞭解在 Bluesky 上公開的內容。" -#: src/components/moderation/ContentHider.tsx:239 +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 +msgid "Learn more in your <0>account settings." +msgstr "在您的<0>帳號設定瞭解詳情。" + +#: src/components/moderation/ContentHider.tsx:242 #: src/view/com/auth/server-input/index.tsx:220 msgid "Learn more." msgstr "瞭解詳情。" @@ -4344,10 +4658,11 @@ msgid "Leave conversation" msgstr "離開對話" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 -msgid "Leave them all unchecked to see any language." +msgid "Leave them all unselected to see any language." msgstr "全部留空以顯示所有語言的貼文。" -#: src/view/com/modals/LinkWarning.tsx:65 +#: src/components/dialogs/LinkWarning.tsx:67 +#: src/components/dialogs/LinkWarning.tsx:75 msgid "Leaving Bluesky" msgstr "離開 Bluesky" @@ -4370,7 +4685,7 @@ msgstr "讓我們開始吧!" #: src/components/dialogs/Embed.tsx:162 #: src/components/dialogs/Embed.tsx:164 -#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Light" msgstr "淺色" @@ -4384,7 +4699,7 @@ msgid "Like" msgstr "喜歡" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form -#: src/components/PostControls/index.tsx:246 +#: src/components/PostControls/index.tsx:253 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "喜歡 ({0, plural, one {# 個喜歡} other {# 個喜歡}})" @@ -4397,6 +4712,10 @@ msgstr "喜歡 10 則貼文" msgid "Like 10 posts to train the Discover feed" msgstr "喜歡 10 則貼文,以訓練「Discover」動態源" +#: src/Navigation.tsx:451 +msgid "Like notifications" +msgstr "喜歡通知" + #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 msgid "Like this feed" msgstr "對這個動態源表示喜歡" @@ -4405,8 +4724,8 @@ msgstr "對這個動態源表示喜歡" msgid "Like this labeler" msgstr "對這個標記服務表示喜歡" -#: src/Navigation.tsx:268 -#: src/Navigation.tsx:273 +#: src/Navigation.tsx:295 +#: src/Navigation.tsx:300 msgid "Liked by" msgstr "表示喜歡的用戶" @@ -4417,7 +4736,7 @@ msgid "Liked By" msgstr "表示喜歡的用戶" #: src/components/FeedCard.tsx:218 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/view/com/feeds/FeedSourceCard.tsx:172 msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, one {# 個用戶} other {# 個用戶}}表示喜歡" @@ -4428,20 +4747,36 @@ msgstr "{0, plural, one {# 個用戶} other {# 個用戶}}表示喜歡" msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, one {# 個用戶} other {# 個用戶}}表示喜歡" +#: src/lib/hooks/useNotificationHandler.ts:126 +#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:229 msgid "Likes" msgstr "喜歡" -#: src/view/com/post-thread/PostThreadItem.tsx:232 +#: src/lib/hooks/useNotificationHandler.ts:168 +#: src/screens/Settings/NotificationSettings/index.tsx:207 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +msgid "Likes of your reposts" +msgstr "喜歡您轉發的貼文" + +#: src/Navigation.tsx:475 +msgid "Likes of your reposts notifications" +msgstr "喜歡您轉發貼文的通知" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 +#: src/view/com/post-thread/PostThreadItem.tsx:243 msgid "Likes on this post" msgstr "這則貼文的喜歡數" -#: src/view/com/post-thread/PostThread.tsx:629 -#: src/view/com/post-thread/PostThread.tsx:634 +#: src/screens/PostThread/components/HeaderDropdown.tsx:47 +#: src/screens/PostThread/components/HeaderDropdown.tsx:52 +#: src/view/com/post-thread/PostThread.tsx:653 +#: src/view/com/post-thread/PostThread.tsx:658 msgid "Linear" msgstr "直列模式" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:250 msgid "List" msgstr "列表" @@ -4454,19 +4789,23 @@ msgctxt "toast" msgid "List blocked" msgstr "成功封鎖列表" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:152 +#: src/view/com/feeds/FeedSourceCard.tsx:152 msgid "List by {0}" msgstr "來自 {0} 的列表" -#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "List by <0/>" msgstr "來自 <0/> 的列表" -#: src/view/com/profile/ProfileSubpageHeader.tsx:154 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "List by you" msgstr "您的列表" +#: src/view/com/feeds/MissingFeed.tsx:154 +msgid "List creator" +msgstr "列表建立者" + #: src/view/screens/ProfileList.tsx:485 msgctxt "toast" msgid "List deleted" @@ -4499,12 +4838,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "成功取消靜音列表" -#: src/Navigation.tsx:144 +#: src/Navigation.tsx:171 #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 -#: src/view/shell/Drawer.tsx:520 +#: src/view/shell/desktop/LeftNav.tsx:692 +#: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "列表" @@ -4537,7 +4876,7 @@ msgstr "載入更多" msgid "Load more suggested feeds" msgstr "載入更多推薦動態源" -#: src/view/screens/Notifications.tsx:270 +#: src/view/screens/Notifications.tsx:278 msgid "Load new notifications" msgstr "載入更多通知" @@ -4552,11 +4891,11 @@ msgstr "載入更多貼文" msgid "Loading..." msgstr "載入中……" -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:320 msgid "Log" msgstr "記錄檔" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" msgstr "登出可見度" @@ -4565,7 +4904,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "網站標誌由 @sawaratsuki.bsky.social 繪製" #: src/view/shell/desktop/RightNav.tsx:127 -#: src/view/shell/Drawer.tsx:658 +#: src/view/shell/Drawer.tsx:672 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "網站標誌由 <0>@sawaratsuki.bsky.social 繪製" @@ -4573,7 +4912,7 @@ msgstr "網站標誌由 <0>@sawaratsuki.bsky.social 繪製" msgid "Long press to open tag menu for #{tag}" msgstr "長按以開啟 #{tag} 的標籤選單" -#: src/screens/Login/SetNewPasswordForm.tsx:120 +#: src/screens/Login/SetNewPasswordForm.tsx:122 msgid "Looks like XXXXX-XXXXX" msgstr "看起來像是 XXXXX-XXXXX" @@ -4597,7 +4936,7 @@ msgstr "調整您帳號綁定的電子信箱設定" msgid "Make one for me" msgstr "為我製作一個" -#: src/view/com/modals/LinkWarning.tsx:79 +#: src/components/dialogs/LinkWarning.tsx:85 msgid "Make sure this is where you intend to go!" msgstr "請確認這是您想前往的網站!" @@ -4606,7 +4945,7 @@ msgstr "請確認這是您想前往的網站!" msgid "Manage saved feeds" msgstr "管理儲存的動態源" -#: src/screens/Moderation/index.tsx:283 +#: src/screens/Moderation/index.tsx:292 msgid "Manage verification settings" msgstr "管理驗證設定" @@ -4614,9 +4953,9 @@ msgstr "管理驗證設定" msgid "Manage your muted words and tags" msgstr "管理您靜音的字詞和標籤" -#: src/screens/Messages/Inbox.tsx:305 -#: src/screens/Messages/Inbox.tsx:324 -#: src/screens/Messages/Inbox.tsx:331 +#: src/screens/Messages/Inbox.tsx:326 +#: src/screens/Messages/Inbox.tsx:345 +#: src/screens/Messages/Inbox.tsx:352 msgid "Mark all as read" msgstr "全部標示為已讀" @@ -4625,15 +4964,13 @@ msgstr "全部標示為已讀" msgid "Mark as read" msgstr "標記為已讀" -#: src/screens/Messages/Inbox.tsx:292 -#: src/screens/Messages/Inbox.tsx:315 +#: src/screens/Messages/Inbox.tsx:313 +#: src/screens/Messages/Inbox.tsx:336 msgid "Marked all as read" msgstr "成功全部標示為已讀" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 -#: src/components/dialogs/VerifyEmailDialog.tsx:273 -#: src/components/dialogs/VerifyEmailDialog.tsx:281 msgid "Maybe later" msgstr "之後再說" @@ -4645,19 +4982,26 @@ msgstr "媒體" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "可能會使部分受眾感到不安或造成不適的媒體內容。" -#: src/components/WhoCanReply.tsx:263 +#: src/Navigation.tsx:435 +msgid "Mention notifications" +msgstr "提及通知" + +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "被提及的用戶" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 msgid "Mentioned users" msgstr "被提及的用戶" -#: src/view/screens/Notifications.tsx:99 +#: src/lib/hooks/useNotificationHandler.ts:147 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/view/screens/Notifications.tsx:101 msgid "Mentions" msgstr "提及" -#: src/components/Menu/index.tsx:105 +#: src/components/Menu/index.tsx:111 msgid "Menu" msgstr "選單" @@ -4665,7 +5009,7 @@ msgstr "選單" msgid "Message {0}" msgstr "傳送訊息給 {0}" -#: src/components/dms/MessageContextMenu.tsx:82 +#: src/components/dms/MessageContextMenu.tsx:77 msgctxt "toast" msgid "Message deleted" msgstr "成功刪除訊息" @@ -4674,11 +5018,11 @@ msgstr "成功刪除訊息" msgid "Message deleted" msgstr "訊息已刪除" -#: src/components/dms/MessageContextMenu.tsx:130 +#: src/components/dms/MessageContextMenu.tsx:125 msgid "Message from @{0}: {1}" msgstr "來自 @{0} 的訊息:{1}" -#: src/view/com/posts/PostFeedErrorMessage.tsx:201 +#: src/view/com/posts/PostFeedErrorMessage.tsx:205 msgid "Message from server: {0}" msgstr "來自伺服器的訊息:{0}" @@ -4691,19 +5035,23 @@ msgstr "訊息輸入欄位" msgid "Message is too long" msgstr "訊息太長了" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:123 msgid "Message options" msgstr "訊息選項" -#: src/Navigation.tsx:662 +#: src/Navigation.tsx:760 msgid "Messages" msgstr "訊息" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "午夜" +#: src/Navigation.tsx:499 +msgid "Miscellaneous notifications" +msgstr "其他通知" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" @@ -4714,10 +5062,10 @@ msgstr "誤導性帳號" msgid "Misleading Post" msgstr "誤導性貼文" -#: src/Navigation.tsx:149 -#: src/screens/Moderation/index.tsx:93 -#: src/screens/Settings/Settings.tsx:177 -#: src/screens/Settings/Settings.tsx:180 +#: src/Navigation.tsx:176 +#: src/screens/Moderation/index.tsx:99 +#: src/screens/Settings/Settings.tsx:188 +#: src/screens/Settings/Settings.tsx:191 msgid "Moderation" msgstr "內容管理" @@ -4725,17 +5073,17 @@ msgstr "內容管理" msgid "Moderation details" msgstr "內容管理詳情" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:151 #: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "來自 {0} 的內容管理列表" -#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +#: src/view/com/profile/ProfileSubpageHeader.tsx:173 msgid "Moderation list by <0/>" msgstr "來自 <0/> 的內容管理列表" #: src/view/com/modals/UserAddRemoveLists.tsx:220 -#: src/view/com/profile/ProfileSubpageHeader.tsx:167 +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 msgid "Moderation list by you" msgstr "您的內容管理列表" @@ -4749,24 +5097,24 @@ msgctxt "toast" msgid "Moderation list updated" msgstr "成功更新內容管理列表" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:252 msgid "Moderation lists" msgstr "內容管理列表" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:181 #: src/view/screens/ModerationModlists.tsx:65 msgid "Moderation Lists" msgstr "內容管理列表" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:252 msgid "moderation settings" msgstr "內容管理設定" -#: src/Navigation.tsx:283 +#: src/Navigation.tsx:310 msgid "Moderation states" msgstr "內容管理狀態" -#: src/screens/Moderation/index.tsx:197 +#: src/screens/Moderation/index.tsx:206 msgid "Moderation tools" msgstr "內容管理工具" @@ -4775,7 +5123,7 @@ msgstr "內容管理工具" msgid "Moderator has chosen to set a general warning on the content." msgstr "內容管理服務已對該內容標記普通警告。" -#: src/view/com/post-thread/PostThreadItem.tsx:721 +#: src/view/com/post-thread/PostThreadItem.tsx:727 msgid "More" msgstr "更多" @@ -4790,13 +5138,13 @@ msgstr "更多動態源" msgid "More options" msgstr "更多選項" -#: src/screens/Settings/ThreadPreferences.tsx:94 +#: src/screens/Settings/ThreadPreferences.tsx:228 msgid "Most-liked first" msgstr "最多喜歡數優先" -#: src/screens/Settings/ThreadPreferences.tsx:91 -#: src/view/com/post-thread/PostThread.tsx:685 -#: src/view/com/post-thread/PostThread.tsx:690 +#: src/screens/Settings/ThreadPreferences.tsx:225 +#: src/view/com/post-thread/PostThread.tsx:709 +#: src/view/com/post-thread/PostThread.tsx:714 msgid "Most-liked replies first" msgstr "最多喜歡回覆優先" @@ -4808,8 +5156,8 @@ msgstr "電影" msgid "Music" msgstr "音樂" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 msgctxt "video" msgid "Mute" msgstr "靜音" @@ -4819,8 +5167,8 @@ msgstr "靜音" msgid "Mute {tag}" msgstr "靜音 {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/com/profile/ProfileMenu.tsx:370 msgid "Mute account" @@ -4871,21 +5219,21 @@ msgstr "僅隱藏包含該標籤的貼文" msgid "Mute this word until you unmute it" msgstr "將這個字詞靜音,直到您取消靜音為止" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Mute thread" msgstr "靜音討論串" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 msgid "Mute words & tags" msgstr "靜音字詞或標籤" -#: src/screens/Moderation/index.tsx:258 +#: src/screens/Moderation/index.tsx:267 msgid "Muted accounts" msgstr "已靜音帳號" -#: src/Navigation.tsx:159 +#: src/Navigation.tsx:186 #: src/view/screens/ModerationMutedAccounts.tsx:118 msgid "Muted Accounts" msgstr "已靜音帳號" @@ -4898,7 +5246,7 @@ msgstr "被靜音的帳號將不會出現在您的通知或動態中,且靜音 msgid "Muted by \"{0}\"" msgstr "被「{0}」靜音" -#: src/screens/Moderation/index.tsx:228 +#: src/screens/Moderation/index.tsx:237 msgid "Muted words & tags" msgstr "靜音字詞和標籤" @@ -4911,7 +5259,7 @@ msgstr "您靜音的帳號僅對自己可見。他們仍然可以與您互動, msgid "My Birthday" msgstr "我的生日" -#: src/view/screens/Feeds.tsx:702 +#: src/view/screens/Feeds.tsx:704 msgid "My Feeds" msgstr "我的動態源" @@ -4940,7 +5288,7 @@ msgid "Nature" msgstr "自然" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "前往 {0}" @@ -4958,11 +5306,11 @@ msgstr "前往下一個畫面" msgid "Navigates to your profile" msgstr "前往您的個人檔案" -#: src/components/dialogs/VerifyEmailDialog.tsx:234 -msgid "Need to change it?" -msgstr "需要變更嗎?" - +#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/moderation/ReportDialog/index.tsx:288 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "需要檢舉侵害著作權、法律要求,或合規性問題嗎?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:128 msgid "Need to report a copyright violation?" msgstr "需要檢舉侵害著作權的內容嗎?" @@ -4985,21 +5333,39 @@ msgctxt "action" msgid "New" msgstr "新增" +#: src/view/com/notifications/NotificationFeedItem.tsx:553 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "來自 {firstAuthorLink} 的新{postsCount, plural, other {貼文}}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "來自 {firstAuthorName} 的新{postsCount, plural, other {貼文}}" + #: src/components/dms/dialogs/NewChatDialog.tsx:67 -#: src/screens/Messages/ChatList.tsx:364 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:390 +#: src/screens/Messages/ChatList.tsx:397 msgid "New chat" msgstr "新對話" -#: src/components/dialogs/ChangeEmailDialog.tsx:142 #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 msgid "New email address" msgstr "新的電子郵件地址" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 msgid "New Feature" msgstr "新功能" +#: src/Navigation.tsx:467 +msgid "New follower notifications" +msgstr "新跟隨者通知" + +#: src/lib/hooks/useNotificationHandler.ts:161 +#: src/screens/Settings/NotificationSettings/index.tsx:137 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +msgid "New followers" +msgstr "新跟隨者" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:221 #: src/screens/Settings/components/ChangeHandleDialog.tsx:229 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -5019,6 +5385,7 @@ msgstr "新訊息" msgid "New Moderation List" msgstr "建立內容管理列表" +#: src/screens/Login/SetNewPasswordForm.tsx:141 #: src/view/com/modals/ChangePassword.tsx:224 msgid "New password" msgstr "新密碼" @@ -5029,7 +5396,7 @@ msgstr "新密碼" #: src/screens/Profile/ProfileFeed/index.tsx:241 #: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Notifications.tsx:167 #: src/view/screens/Profile.tsx:510 #: src/view/screens/ProfileList.tsx:250 #: src/view/screens/ProfileList.tsx:288 @@ -5041,11 +5408,19 @@ msgctxt "action" msgid "New post" msgstr "新貼文" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "新貼文" +#: src/view/com/notifications/NotificationFeedItem.tsx:542 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "來自 {firstAuthorLink} 和<0>{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}的新貼文" + +#: src/view/com/notifications/NotificationFeedItem.tsx:527 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "來自 {firstAuthorName} 和{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}的新貼文" + #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "新用戶資訊對話框" @@ -5054,10 +5429,14 @@ msgstr "新用戶資訊對話框" msgid "New User List" msgstr "建立用戶列表" -#: src/screens/Settings/ThreadPreferences.tsx:83 -#: src/screens/Settings/ThreadPreferences.tsx:86 -#: src/view/com/post-thread/PostThread.tsx:675 -#: src/view/com/post-thread/PostThread.tsx:680 +#: src/screens/PostThread/components/HeaderDropdown.tsx:93 +#: src/screens/PostThread/components/HeaderDropdown.tsx:98 +#: src/screens/Settings/ThreadPreferences.tsx:96 +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:217 +#: src/screens/Settings/ThreadPreferences.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:699 +#: src/view/com/post-thread/PostThread.tsx:704 msgid "Newest replies first" msgstr "最新回覆優先" @@ -5071,15 +5450,15 @@ msgstr "新聞" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/LoginForm.tsx:343 #: src/screens/Login/LoginForm.tsx:350 -#: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Login/SetNewPasswordForm.tsx:184 +#: src/screens/Login/SetNewPasswordForm.tsx:182 +#: src/screens/Login/SetNewPasswordForm.tsx:188 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:341 -#: src/screens/StarterPack/Wizard/index.tsx:348 +#: src/screens/StarterPack/Wizard/index.tsx:193 +#: src/screens/StarterPack/Wizard/index.tsx:197 +#: src/screens/StarterPack/Wizard/index.tsx:376 +#: src/screens/StarterPack/Wizard/index.tsx:383 #: src/view/com/modals/ChangePassword.tsx:265 #: src/view/com/modals/ChangePassword.tsx:267 msgid "Next" @@ -5102,7 +5481,7 @@ msgstr "無 DNS 控制台" msgid "No expiry set" msgstr "沒有設定過期時間" -#: src/components/dialogs/GifSelect.tsx:231 +#: src/components/dialogs/GifSelect.tsx:232 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "找不到精選 GIF,Tenor 可能發生了一些問題。" @@ -5119,32 +5498,35 @@ msgstr "沒有圖片" msgid "No likes yet" msgstr "目前還沒有喜歡" -#: src/components/ProfileCard.tsx:398 +#: src/components/ProfileCard.tsx:496 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110 msgid "No longer following {0}" msgstr "成功取消跟隨 {0}" -#: src/screens/Signup/StepHandle.tsx:184 -msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "不得超過 {MAX_SERVICE_HANDLE_LENGTH, plural, other {# 個字元}}" - #: src/screens/Messages/components/ChatListItem.tsx:139 msgid "No messages yet" msgstr "目前還沒有訊息" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "目前還沒有通知!" -#: src/screens/Messages/Settings.tsx:101 -#: src/screens/Messages/Settings.tsx:104 +#: src/screens/Messages/Settings.tsx:117 +#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:129 +#: src/screens/Settings/ActivityPrivacySettings.tsx:134 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 msgid "No one" msgstr "沒有人" -#: src/components/WhoCanReply.tsx:246 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "僅限發布者可以引用這則貼文。" +#: src/screens/Notifications/ActivityList.tsx:38 +msgid "No posts here" +msgstr "這裡目前還沒有任何貼文" + #: src/screens/Profile/Sections/Feed.tsx:66 msgid "No posts yet." msgstr "目前還沒有任何貼文。" @@ -5171,7 +5553,7 @@ msgstr "沒有結果" msgid "No results for \"{0}\"." msgstr "找不到符合「{0}」的結果。" -#: src/components/Lists.tsx:189 +#: src/components/Lists.tsx:190 msgid "No results found" msgstr "找不到結果" @@ -5179,9 +5561,9 @@ msgstr "找不到結果" msgid "No results found for \"{query}\"" msgstr "找不到符合「{query}」的結果" -#: src/screens/Search/SearchResults.tsx:248 -#: src/screens/Search/SearchResults.tsx:284 -#: src/screens/Search/SearchResults.tsx:329 +#: src/screens/Search/SearchResults.tsx:311 +#: src/screens/Search/SearchResults.tsx:347 +#: src/screens/Search/SearchResults.tsx:392 msgid "No results found for {query}" msgstr "找不到符合 {query} 的結果" @@ -5189,7 +5571,7 @@ msgstr "找不到符合 {query} 的結果" msgid "No results." msgstr "沒有結果。" -#: src/components/dialogs/GifSelect.tsx:229 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No search results found for \"{search}\"." msgstr "找不到符合「{search}」的搜尋結果。" @@ -5198,7 +5580,7 @@ msgstr "找不到符合「{search}」的搜尋結果。" msgid "No thanks" msgstr "不用了,謝謝" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:409 msgid "Nobody" msgstr "沒有人" @@ -5223,59 +5605,76 @@ msgstr "找不到任何人。試試以其他關鍵字搜尋。" msgid "Non-sexual Nudity" msgstr "非色情裸露" -#: src/components/KnownFollowers.tsx:255 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 +msgid "None" +msgstr "無" + +#: src/components/KnownFollowers.tsx:259 msgid "Not followed by anyone you're following" msgstr "沒有被任何您認識的人跟隨" -#: src/Navigation.tsx:139 +#: src/Navigation.tsx:166 #: src/view/screens/Profile.tsx:125 msgid "Not Found" msgstr "找不到" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165 #: src/view/com/profile/ProfileMenu.tsx:480 msgid "Note about sharing" msgstr "關於分享的注意事項" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "註:Bluesky 是一個開放的公共社群網路。這項設定僅限制您的內容在 Bluesky 官方應用程式和網站上的可見度,其他第三方應用程式可能不會遵循這項設定。您的內容仍可能被其他應用程式和網站顯示給未登入的用戶。" -#: src/screens/Messages/ChatList.tsx:265 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134 +msgid "Note: This post is only visible to logged-in users." +msgstr "註:這則貼文僅限已登入用戶可以檢視。" + +#: src/screens/Messages/ChatList.tsx:291 msgid "Nothing here" msgstr "空空如也" -#: src/screens/Settings/NotificationSettings.tsx:64 -msgid "Notification filters" -msgstr "通知篩選器" - -#: src/Navigation.tsx:443 -#: src/view/screens/Notifications.tsx:134 +#: src/Navigation.tsx:421 +#: src/Navigation.tsx:568 +#: src/view/screens/Notifications.tsx:136 msgid "Notification settings" msgstr "通知設定" -#: src/screens/Settings/NotificationSettings.tsx:46 -msgid "Notification Settings" -msgstr "通知設定" - -#: src/screens/Messages/Settings.tsx:123 +#: src/screens/Messages/Settings.tsx:139 msgid "Notification sounds" msgstr "通知音效" -#: src/screens/Messages/Settings.tsx:120 +#: src/screens/Messages/Settings.tsx:136 msgid "Notification Sounds" msgstr "通知音效" -#: src/Navigation.tsx:657 -#: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:242 -#: src/view/shell/desktop/LeftNav.tsx:654 -#: src/view/shell/Drawer.tsx:468 +#: src/Navigation.tsx:563 +#: src/Navigation.tsx:755 +#: src/screens/Notifications/ActivityList.tsx:29 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 +#: src/screens/Settings/NotificationSettings/index.tsx:92 +#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/Settings.tsx:196 +#: src/screens/Settings/Settings.tsx:199 +#: src/view/screens/Notifications.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:252 +#: src/view/shell/desktop/LeftNav.tsx:655 +#: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "通知" +#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 +msgid "Notifications for everything else, such as when someone joins via one of your starter packs." +msgstr "所有其他的通知,例如有人使用了您的新手包註冊帳號。" + #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "剛剛" @@ -5295,10 +5694,11 @@ msgid "Nudity or adult content not labeled as such" msgstr "未貼上這類標記的裸露或色情內容" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Off" msgstr "顯示" -#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dialogs/GifSelect.tsx:269 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "糟糕!" @@ -5316,14 +5716,19 @@ msgid "OK" msgstr "好的" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/view/com/post-thread/PostThreadItem.tsx:975 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:668 +#: src/view/com/post-thread/PostThreadItem.tsx:983 msgid "Okay" msgstr "好的" -#: src/screens/Settings/ThreadPreferences.tsx:75 -#: src/screens/Settings/ThreadPreferences.tsx:78 -#: src/view/com/post-thread/PostThread.tsx:665 -#: src/view/com/post-thread/PostThread.tsx:670 +#: src/screens/PostThread/components/HeaderDropdown.tsx:83 +#: src/screens/PostThread/components/HeaderDropdown.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:88 +#: src/screens/Settings/ThreadPreferences.tsx:91 +#: src/screens/Settings/ThreadPreferences.tsx:209 +#: src/screens/Settings/ThreadPreferences.tsx:212 +#: src/view/com/post-thread/PostThread.tsx:689 +#: src/view/com/post-thread/PostThread.tsx:694 msgid "Oldest replies first" msgstr "最舊回覆優先" @@ -5331,19 +5736,19 @@ msgstr "最舊回覆優先" msgid "on<0><1/><2><3/>" msgstr "在<0><1/><2><3/>" -#: src/screens/Settings/Settings.tsx:358 +#: src/screens/Settings/Settings.tsx:388 msgid "Onboarding reset" msgstr "重新開始入門引導" -#: src/view/com/composer/Composer.tsx:342 +#: src/view/com/composer/Composer.tsx:347 msgid "One or more GIFs is missing alt text." msgstr "至少有一張 GIF 缺少了替代文字。" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:344 msgid "One or more images is missing alt text." msgstr "至少有一張圖片缺少了替代文字。" -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:354 msgid "One or more videos is missing alt text." msgstr "至少有一段影片缺少了替代文字。" @@ -5351,13 +5756,15 @@ msgstr "至少有一段影片缺少了替代文字。" msgid "Only .jpg and .png files are supported" msgstr "僅支援 .jpg 或 .png 格式的圖片" -#: src/components/WhoCanReply.tsx:226 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "只有{0}可以回覆。" -#: src/screens/Signup/StepHandle.tsx:166 -msgid "Only contains letters, numbers, and hyphens" -msgstr "只包含字母、數字和連字號 (-)" +#: src/screens/Settings/ActivityPrivacySettings.tsx:120 +#: src/screens/Settings/ActivityPrivacySettings.tsx:125 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "僅限我回跟的跟隨者" #: src/lib/media/picker.shared.ts:32 msgid "Only image files are supported" @@ -5367,16 +5774,15 @@ msgstr "僅支援圖片檔案" msgid "Only WebVTT (.vtt) files are supported" msgstr "僅支援 WebVTT (.vtt) 檔案" -#: src/components/Lists.tsx:94 +#: src/components/Lists.tsx:95 msgid "Oops, something went wrong!" msgstr "糟糕,發生錯誤!" -#: src/components/Lists.tsx:173 +#: src/components/Lists.tsx:174 #: src/components/StarterPack/ProfileStarterPacks.tsx:332 #: src/components/StarterPack/ProfileStarterPacks.tsx:341 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 -#: src/screens/Settings/NotificationSettings.tsx:54 #: src/view/screens/Profile.tsx:125 msgid "Oops!" msgstr "糟糕!" @@ -5399,7 +5805,7 @@ msgid "Open drawer menu" msgstr "開啟側邊選單" #: src/screens/Messages/components/MessageInput.web.tsx:181 -#: src/view/com/composer/Composer.tsx:1272 +#: src/view/com/composer/Composer.tsx:1325 msgid "Open emoji picker" msgstr "開啟表情符號選擇器" @@ -5416,7 +5822,7 @@ msgstr "開啟動態選項選單" msgid "Open full emoji list" msgstr "開啟完整表情符號列表" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79 +#: src/components/Post/Embed/ExternalEmbed/index.tsx:79 msgid "Open link to {niceUrl}" msgstr "開啟至 {niceUrl} 的連結" @@ -5424,11 +5830,11 @@ msgstr "開啟至 {niceUrl} 的連結" msgid "Open message options" msgstr "開啟訊息選項" -#: src/screens/Settings/Settings.tsx:395 +#: src/screens/Settings/Settings.tsx:453 msgid "Open moderation debug page" msgstr "開啟內容管理偵錯頁面" -#: src/screens/Moderation/index.tsx:224 +#: src/screens/Moderation/index.tsx:233 msgid "Open muted words and tags settings" msgstr "開啟靜音字詞和標籤設定" @@ -5453,16 +5859,16 @@ msgstr "開啟分享選單" msgid "Open starter pack menu" msgstr "開啟新手包選單" -#: src/screens/Settings/Settings.tsx:388 -#: src/screens/Settings/Settings.tsx:402 +#: src/screens/Settings/Settings.tsx:446 +#: src/screens/Settings/Settings.tsx:460 msgid "Open storybook page" msgstr "開啟故事書頁面" -#: src/screens/Settings/Settings.tsx:381 +#: src/screens/Settings/Settings.tsx:439 msgid "Open system log" msgstr "開啟系統記錄" -#: src/view/com/util/forms/DropdownButton.tsx:162 +#: src/view/com/util/forms/DropdownButton.tsx:167 msgid "Opens {numItems} options" msgstr "開啟 {numItems} 個選項" @@ -5490,11 +5896,11 @@ msgstr "開啟裝置相機" msgid "Opens captions and alt text dialog" msgstr "開啟字幕和替代文字對話框" -#: src/screens/Settings/AccountSettings.tsx:138 +#: src/screens/Settings/AccountSettings.tsx:129 msgid "Opens change handle dialog" msgstr "開啟變更帳號代碼對話框" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:63 msgid "Opens composer" msgstr "開啟編輯器" @@ -5502,7 +5908,7 @@ msgstr "開啟編輯器" msgid "Opens device photo gallery" msgstr "開啟裝置相簿" -#: src/view/com/composer/Composer.tsx:1273 +#: src/view/com/composer/Composer.tsx:1326 msgid "Opens emoji picker" msgstr "開啟表情符號選擇器" @@ -5520,15 +5926,19 @@ msgstr "開始登入您現有的 Bluesky 帳號流程" msgid "Opens GIF select dialog" msgstr "開啟 GIF 選擇對話框" -#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:237 msgid "Opens helpdesk in browser" msgstr "在瀏覽器中開啟說明中心" +#: src/components/dialogs/LinkWarning.tsx:97 +msgid "Opens link {0}" +msgstr "開啟連結 {0}" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "開啟邀請碼列表" -#: src/view/com/util/UserAvatar.tsx:563 +#: src/view/com/util/UserAvatar.tsx:576 msgid "Opens live status dialog" msgstr "開啟直播狀態對話框" @@ -5536,12 +5946,8 @@ msgstr "開啟直播狀態對話框" msgid "Opens password reset form" msgstr "開啟密碼重設表單" -#: src/view/com/modals/LinkWarning.tsx:93 -msgid "Opens the linked website" -msgstr "開啟網站連結" - -#: src/view/com/notifications/NotificationFeedItem.tsx:849 -#: src/view/com/util/UserAvatar.tsx:581 +#: src/view/com/notifications/NotificationFeedItem.tsx:906 +#: src/view/com/util/UserAvatar.tsx:594 msgid "Opens this profile" msgstr "開啟這個個人檔案" @@ -5558,7 +5964,7 @@ msgstr "在下方提供額外資訊 (選填):" msgid "Options:" msgstr "選項:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422 msgid "Or combine these options:" msgstr "或者組合這些選項:" @@ -5600,6 +6006,10 @@ msgstr "其他帳號" msgid "Other..." msgstr "其他……" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 +msgid "Our blog post" +msgstr "我們的部落格文章" + #: src/components/dms/ReportDialog.tsx:348 msgid "Our moderation team has received your report." msgstr "我們的內容審查團隊已收到您的檢舉。" @@ -5608,7 +6018,7 @@ msgstr "我們的內容審查團隊已收到您的檢舉。" msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "我們的內容審查員已收到相關檢舉,並決定停用您在 Bluesky 上的對話功能。" -#: src/components/Lists.tsx:190 +#: src/components/Lists.tsx:191 #: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "頁面不存在" @@ -5618,9 +6028,9 @@ msgid "Page Not Found" msgstr "頁面不存在" #: src/screens/Login/LoginForm.tsx:228 -#: src/screens/Settings/AccountSettings.tsx:128 -#: src/screens/Settings/AccountSettings.tsx:132 -#: src/screens/Signup/StepInfo/index.tsx:228 +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:232 #: src/view/com/modals/DeleteAccount.tsx:239 #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Password" @@ -5642,30 +6052,35 @@ msgstr "已更新密碼" msgid "Password updated!" msgstr "成功更新密碼!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 msgid "Pause" msgstr "暫停" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 msgid "Pause video" msgstr "暫停影片" -#: src/screens/Search/SearchResults.tsx:62 +#: src/screens/Search/SearchResults.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:189 #: src/view/screens/ProfileList.tsx:170 msgid "People" msgstr "用戶" -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:237 msgid "People followed by @{0}" msgstr "被 @{0} 跟隨的人" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:230 msgid "People following @{0}" msgstr "跟隨 @{0} 的人" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:188 +msgid "People I follow" +msgstr "我跟隨的人" + #: src/lib/media/save-image.ts:51 msgid "Permission to access your photo library was denied. Please enable it in your system settings." msgstr "已被拒絕存取相簿,請進入系統設定中授予權限。" @@ -5704,12 +6119,12 @@ msgstr "釘選到首頁" msgid "Pin to Home" msgstr "釘選到首頁" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:416 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 msgid "Pin to your profile" msgstr "釘選到您的個人檔案" -#: src/view/com/posts/PostFeedItem.tsx:407 +#: src/view/com/posts/PostFeedItem.tsx:411 msgid "Pinned" msgstr "已釘選" @@ -5718,7 +6133,7 @@ msgstr "已釘選" msgid "Pinned {0} to Home" msgstr "釘選 {0} 到首頁" -#: src/view/screens/SavedFeeds.tsx:123 +#: src/view/screens/SavedFeeds.tsx:131 msgid "Pinned Feeds" msgstr "釘選中的動態源" @@ -5726,38 +6141,38 @@ msgstr "釘選中的動態源" msgid "Pinned to your feeds" msgstr "成功釘選到您的動態源" -#: src/view/com/util/post-embeds/GifEmbed.tsx:43 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:370 msgid "Play" msgstr "播放" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 msgid "Play {0}" msgstr "播放 {0}" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:134 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/components/Post/Embed/VideoEmbed/index.tsx:132 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Play video" msgstr "播放影片" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 msgid "Play Video" msgstr "播放影片" -#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:42 msgid "Plays or pauses the GIF" msgstr "播放或暫停 GIF" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 msgid "Plays or pauses the video" msgstr "播放或暫停影片" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106 +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 msgid "Plays the GIF" msgstr "播放 GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 msgid "Plays the video" msgstr "播放影片" @@ -5765,12 +6180,16 @@ msgstr "播放影片" msgid "Please add any content warning labels that are applicable for the media you are posting." msgstr "請為您所發布的媒體內容上加入適當的內容警告標記。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "請前往您的電子信箱以完成接下來的程序。應該會在兩、三分鐘傳送至您的信箱。" + #: src/screens/Signup/state.ts:286 msgid "Please choose your handle." msgstr "請選擇您的帳號代碼。" #: src/screens/Signup/state.ts:278 -#: src/screens/Signup/StepInfo/index.tsx:120 +#: src/screens/Signup/StepInfo/index.tsx:123 msgid "Please choose your password." msgstr "請設定您的密碼。" @@ -5782,7 +6201,8 @@ msgstr "請查看我們先前傳送至您新電子信箱的郵件,並打開其 msgid "Please complete the verification captcha." msgstr "請完成人機驗證 (Captcha)。" -#: src/screens/Signup/StepInfo/index.tsx:109 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:112 msgid "Please double-check that you have entered your email address correctly." msgstr "請再次確認您是否輸入了正確的電子郵件地址。" @@ -5804,6 +6224,7 @@ msgstr "請為這個應用程式專用密碼選擇一個名稱,或直接使用 msgid "Please enter a valid code." msgstr "請輸入有效的代碼。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 msgid "Please enter a valid email address." msgstr "請輸入有效的電子郵件地址。" @@ -5812,7 +6233,11 @@ msgstr "請輸入有效的電子郵件地址。" msgid "Please enter a valid word, tag, or phrase to mute" msgstr "請輸入有效的字詞或標籤以靜音內容" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "請輸入有效、非臨時的電子郵件地址。您日後可能會需要存取這個電子信箱。" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "Please enter the code we sent to <0>{0} below." msgstr "請輸入我們傳送至 <0>{0} 的代碼。" @@ -5821,11 +6246,11 @@ msgid "Please enter the security code we sent to your previous email address." msgstr "請輸入我們先前傳送到您電子郵件地址的驗證碼。" #: src/screens/Signup/state.ts:262 -#: src/screens/Signup/StepInfo/index.tsx:91 +#: src/screens/Signup/StepInfo/index.tsx:94 msgid "Please enter your email." msgstr "請輸入您的電子郵件地址。" -#: src/screens/Signup/StepInfo/index.tsx:84 +#: src/screens/Signup/StepInfo/index.tsx:87 msgid "Please enter your invite code." msgstr "請輸入您的邀請碼。" @@ -5853,6 +6278,19 @@ msgstr "請說明您為什麼覺得「{0}」不應該新增這個標記" msgid "Please explain why you think your chats were incorrectly disabled" msgstr "請解釋為什麼您覺得我們不該停用您的對話功能" +#: src/components/FocusScope/index.tsx:93 +#: src/components/FocusScope/index.tsx:117 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "請返回,或觸發這個元素以回到內容的開頭。" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "請提供您認為支援團隊需要的任何補充資訊,以便評估您的年齡驗證狀態。" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 +msgid "Please select a language" +msgstr "請選擇語言" + #: src/components/moderation/ReportDialog/action.ts:31 msgid "Please select a moderation service" msgstr "請選擇內容管理服務" @@ -5870,9 +6308,9 @@ msgstr "請以 @{0} 的身分登入" msgid "Please verify your email" msgstr "請驗證您的電子信箱" -#: src/components/dialogs/VerifyEmailDialog.tsx:108 -msgid "Please Verify Your Email" -msgstr "請驗證您的電子信箱" +#: src/lib/hooks/useCreateSupportLink.ts:28 +msgid "Please write your message below:" +msgstr "請在下列欄位填寫您的訊息:" #: src/screens/Onboarding/index.tsx:34 #: src/screens/Onboarding/state.ts:111 @@ -5884,33 +6322,38 @@ msgstr "政治" msgid "Porn" msgstr "色情" -#: src/view/com/composer/Composer.tsx:987 -msgctxt "action" -msgid "Post" -msgstr "發布" - -#: src/view/com/post-thread/PostThread.tsx:540 +#: src/screens/PostThread/index.tsx:495 +#: src/view/com/post-thread/PostThread.tsx:561 msgctxt "description" msgid "Post" msgstr "貼文" -#: src/view/com/composer/Composer.tsx:985 +#: src/view/com/composer/Composer.tsx:1036 +msgctxt "action" +msgid "Post" +msgstr "發布" + +#: src/view/com/composer/Composer.tsx:1034 msgctxt "action" msgid "Post All" msgstr "全部發布" -#: src/view/com/post-thread/PostThreadItem.tsx:224 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "貼文已被封鎖" + +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Post by {0}" msgstr "{0} 的貼文" -#: src/Navigation.tsx:236 -#: src/Navigation.tsx:243 -#: src/Navigation.tsx:250 -#: src/Navigation.tsx:257 +#: src/Navigation.tsx:263 +#: src/Navigation.tsx:270 +#: src/Navigation.tsx:277 +#: src/Navigation.tsx:284 msgid "Post by @{0}" msgstr "@{0} 的貼文" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:179 msgctxt "toast" msgid "Post deleted" msgstr "成功刪除貼文" @@ -5919,11 +6362,14 @@ msgstr "成功刪除貼文" msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "貼文發布失敗。請檢查您的網路連線,然後再試一次。" +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:110 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:107 #: src/screens/VideoFeed/index.tsx:529 msgid "Post has been deleted" msgstr "貼文已被刪除" -#: src/view/com/post-thread/PostThread.tsx:269 +#: src/view/com/post-thread/PostThread.tsx:271 msgid "Post hidden" msgstr "已隱藏貼文" @@ -5937,11 +6383,11 @@ msgstr "這則貼文被靜音字詞隱藏" msgid "Post Hidden by You" msgstr "這則貼文被您隱藏" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:104 msgid "Post interaction settings" msgstr "貼文互動設定" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:197 #: src/screens/ModerationInteractionSettings/index.tsx:34 msgid "Post Interaction Settings" msgstr "貼文互動設定" @@ -5954,8 +6400,10 @@ msgstr "貼文語言" msgid "Post Languages" msgstr "貼文語言" -#: src/view/com/post-thread/PostThread.tsx:264 -#: src/view/com/post-thread/PostThread.tsx:276 +#: src/screens/PostThread/components/ThreadError.tsx:32 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +#: src/view/com/post-thread/PostThread.tsx:266 +#: src/view/com/post-thread/PostThread.tsx:278 msgid "Post not found" msgstr "找不到貼文" @@ -5969,6 +6417,9 @@ msgctxt "toast" msgid "Post unpinned" msgstr "成功取消釘選貼文" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:213 #: src/screens/StarterPack/StarterPackScreen.tsx:191 #: src/view/screens/Profile.tsx:225 #: src/view/screens/ProfileList.tsx:170 @@ -5979,31 +6430,34 @@ msgstr "貼文" msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "可以根據文字、標籤或結合兩者來靜音貼文。我們建議避免新增常用的詞彙,否則可能導致大量貼文被隱藏。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:68 +#: src/view/com/posts/PostFeedErrorMessage.tsx:72 msgid "Posts hidden" msgstr "已隱藏貼文" -#: src/view/com/modals/LinkWarning.tsx:60 -msgid "Potentially Misleading Link" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:211 +msgid "Posts, Replies" +msgstr "貼文、回覆" + +#: src/components/dialogs/LinkWarning.tsx:73 +msgid "Potentially misleading link" msgstr "潛在誤導性連結" -#: src/state/queries/notifications/settings.ts:44 -msgctxt "toast" -msgid "Preference saved" -msgstr "成功儲存偏好設定" +#: src/components/dialogs/LinkWarning.tsx:66 +msgid "Potentially misleading link warning" +msgstr "潛在誤導性連結警告" #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" -msgstr "點此以重試連線" +msgstr "點此以重新連線" #: src/components/Error.tsx:60 -#: src/components/Lists.tsx:99 +#: src/components/Lists.tsx:100 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:47 msgid "Press to retry" msgstr "點此再試一次" -#: src/components/KnownFollowers.tsx:125 +#: src/components/KnownFollowers.tsx:129 msgid "Press to view followers of this account that you also follow" msgstr "點此以檢視哪些您認識的人也跟隨了此帳號" @@ -6015,40 +6469,46 @@ msgstr "上一張圖片" msgid "Primary Language" msgstr "慣用語言" -#: src/screens/Settings/ThreadPreferences.tsx:112 -#: src/screens/Settings/ThreadPreferences.tsx:117 +#: src/screens/Settings/ThreadPreferences.tsx:110 +#: src/screens/Settings/ThreadPreferences.tsx:115 +#: src/screens/Settings/ThreadPreferences.tsx:246 +#: src/screens/Settings/ThreadPreferences.tsx:251 msgid "Prioritize your Follows" msgstr "優先顯示您跟隨的人" -#: src/screens/Settings/NotificationSettings.tsx:67 -msgid "Priority notifications" -msgstr "優先通知" - #: src/view/shell/desktop/RightNav.tsx:110 #: src/view/shell/desktop/RightNav.tsx:111 msgid "Privacy" msgstr "隱私" -#: src/screens/Settings/Settings.tsx:171 -#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 msgid "Privacy and security" msgstr "隱私與安全" -#: src/Navigation.tsx:379 -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36 +#: src/Navigation.tsx:406 +#: src/Navigation.tsx:414 +#: src/screens/Settings/ActivityPrivacySettings.tsx:40 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "隱私與安全" -#: src/Navigation.tsx:303 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:158 +msgid "Privacy and Security settings" +msgstr "隱私與安全設定" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 +#: src/Navigation.tsx:330 #: src/screens/Settings/AboutSettings.tsx:92 #: src/screens/Settings/AboutSettings.tsx:95 #: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:653 -#: src/view/shell/Drawer.tsx:654 +#: src/view/shell/Drawer.tsx:667 +#: src/view/shell/Drawer.tsx:668 msgid "Privacy Policy" msgstr "隱私權政策" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1740 msgid "Processing video..." msgstr "正在處理影片……" @@ -6062,15 +6522,14 @@ msgstr "處理中……" msgid "profile" msgstr "個人檔案" -#: src/view/shell/bottom-bar/BottomBar.tsx:306 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 -#: src/view/shell/Drawer.tsx:545 +#: src/view/shell/Drawer.tsx:559 msgid "Profile" msgstr "個人檔案" #: src/screens/Profile/Header/EditProfileDialog.tsx:196 -#: src/view/com/modals/EditProfile.tsx:128 msgctxt "toast" msgid "Profile updated" msgstr "成功更新個人檔案" @@ -6088,25 +6547,41 @@ msgid "Public, sharable lists which can be used to drive feeds." msgstr "公開、可分享的列表,也可作為動態源來使用。" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:967 +#: src/view/com/composer/Composer.tsx:1016 msgid "Publish post" msgstr "發布貼文" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:960 +#: src/view/com/composer/Composer.tsx:1009 msgid "Publish posts" msgstr "發布貼文" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:945 +#: src/view/com/composer/Composer.tsx:994 msgid "Publish replies" msgstr "發布回覆" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:952 +#: src/view/com/composer/Composer.tsx:1001 msgid "Publish reply" msgstr "發布回覆" +#: src/screens/Settings/NotificationSettings/index.tsx:286 +msgid "Push" +msgstr "推播" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:126 +msgid "Push notifications" +msgstr "推播通知" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Push, Everyone" +msgstr "推播、所有人" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Push, People you follow" +msgstr "推播、您跟隨的人" + #: src/components/StarterPack/QrCodeDialog.tsx:134 msgid "QR code copied to your clipboard!" msgstr "QR Code 已複製到您的剪貼簿!" @@ -6119,44 +6594,52 @@ msgstr "成功下載 QR Code!" msgid "QR code saved to your camera roll!" msgstr "QR Code 已儲存至您的裝置相簿!" -#: src/components/PostControls/RepostButton.tsx:163 -#: src/components/PostControls/RepostButton.tsx:186 -#: src/components/PostControls/RepostButton.web.tsx:78 -#: src/components/PostControls/RepostButton.web.tsx:85 +#: src/Navigation.tsx:443 +msgid "Quote notifications" +msgstr "引用通知" + +#: src/components/PostControls/RepostButton.tsx:174 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 msgid "Quote post" msgstr "引用貼文" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:304 msgid "Quote post was re-attached" msgstr "引用已重新連結" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303 msgid "Quote post was successfully detached" msgstr "成功分離貼文引用" -#: src/components/PostControls/RepostButton.tsx:162 -#: src/components/PostControls/RepostButton.tsx:184 -#: src/components/PostControls/RepostButton.web.tsx:77 -#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.tsx:173 +#: src/components/PostControls/RepostButton.tsx:195 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 msgid "Quote posts disabled" msgstr "已拒絕引用貼文" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:333 msgid "Quote settings" msgstr "引用設定" +#: src/lib/hooks/useNotificationHandler.ts:154 #: src/screens/Post/PostQuotes.tsx:38 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 msgid "Quotes" msgstr "引用" -#: src/view/com/post-thread/PostThreadItem.tsx:258 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/view/com/post-thread/PostThreadItem.tsx:269 msgid "Quotes of this post" msgstr "引用這則貼文" -#: src/screens/Settings/ThreadPreferences.tsx:99 -#: src/screens/Settings/ThreadPreferences.tsx:102 -#: src/view/com/post-thread/PostThread.tsx:695 -#: src/view/com/post-thread/PostThread.tsx:700 +#: src/screens/Settings/ThreadPreferences.tsx:233 +#: src/screens/Settings/ThreadPreferences.tsx:236 +#: src/view/com/post-thread/PostThread.tsx:719 +#: src/view/com/post-thread/PostThread.tsx:724 msgid "Random (aka \"Poster's Roulette\")" msgstr "隨機顯示 (或稱發文者大風吹)" @@ -6164,8 +6647,8 @@ msgstr "隨機顯示 (或稱發文者大風吹)" msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." msgstr "超過速率限制 —— 您在短時間內嘗試變更帳號代碼的次數過多,請稍等幾分鐘後再試一次。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:591 msgid "Re-attach quote" msgstr "重新連結引用" @@ -6177,30 +6660,42 @@ msgstr "使用 {emoji} 做出反應" msgid "Reactivate your account" msgstr "重新啟用您的帳號" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 +msgid "Read {0} more {1, plural, one {reply} other {replies}}" +msgstr "閱讀更多 {0} 則{1, plural, other {回覆}}" + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "閱讀部落格文章" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read less" msgstr "閱讀較少" -#: src/screens/VideoFeed/index.tsx:963 +#: src/screens/VideoFeed/index.tsx:966 msgid "Read more" msgstr "閱讀更多" +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 +msgid "Read more replies" +msgstr "閱讀更多回覆" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 +msgid "Read our blog post" +msgstr "閱讀我們的部落格文章" + #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Read the Bluesky blog" msgstr "閱讀 Bluesky 部落格" -#: src/screens/Signup/StepInfo/Policies.tsx:58 -#: src/screens/Signup/StepInfo/Policies.tsx:84 +#: src/screens/Signup/StepInfo/Policies.tsx:88 +#: src/screens/Signup/StepInfo/Policies.tsx:114 msgid "Read the Bluesky Privacy Policy" msgstr "閱讀 Bluesky 隱私權政策" -#: src/screens/Signup/StepInfo/Policies.tsx:51 -#: src/screens/Signup/StepInfo/Policies.tsx:71 +#: src/screens/Signup/StepInfo/Policies.tsx:81 +#: src/screens/Signup/StepInfo/Policies.tsx:101 msgid "Read the Bluesky Terms of Service" msgstr "閱讀 Bluesky 服務條款" @@ -6213,6 +6708,14 @@ msgstr "申訴理由" msgid "Reason:" msgstr "原因:" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:132 +msgid "Receive in-app notifications" +msgstr "接收應用程式內通知" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Receive push notifications" +msgstr "接收推播通知" + #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent Searches" msgstr "最近的搜尋記錄" @@ -6234,8 +6737,8 @@ msgstr "拒絕" msgid "Reject chat request" msgstr "拒絕對話邀請" -#: src/screens/Messages/ChatList.tsx:248 -#: src/screens/Messages/Inbox.tsx:191 +#: src/screens/Messages/ChatList.tsx:274 +#: src/screens/Messages/Inbox.tsx:212 msgid "Reload conversations" msgstr "重新載入對話" @@ -6244,10 +6747,9 @@ msgstr "重新載入對話" #: src/components/FeedCard.tsx:343 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 -#: src/screens/Settings/Settings.tsx:543 -#: src/view/com/feeds/FeedSourceCard.tsx:322 +#: src/screens/Settings/Settings.tsx:662 #: src/view/com/modals/UserAddRemoveLists.tsx:235 -#: src/view/com/posts/PostFeedErrorMessage.tsx:213 +#: src/view/com/posts/PostFeedErrorMessage.tsx:217 msgid "Remove" msgstr "刪除" @@ -6259,17 +6761,17 @@ msgstr "從您的新手包刪除 {displayName}" msgid "Remove {historyItem}" msgstr "刪除 {historyItem}" -#: src/screens/Settings/Settings.tsx:522 -#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:641 +#: src/screens/Settings/Settings.tsx:644 msgid "Remove account" msgstr "移除帳號" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 msgid "Remove attachment" msgstr "復原貼文分離" -#: src/view/com/util/UserAvatar.tsx:485 -#: src/view/com/util/UserAvatar.tsx:488 +#: src/view/com/util/UserAvatar.tsx:498 +#: src/view/com/util/UserAvatar.tsx:501 msgid "Remove Avatar" msgstr "刪除大頭貼照" @@ -6284,24 +6786,22 @@ msgstr "刪除嵌入" #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 -#: src/view/com/posts/PostFeedErrorMessage.tsx:169 +#: src/view/com/posts/PostFeedErrorMessage.tsx:173 msgid "Remove feed" msgstr "刪除動態源" -#: src/view/com/posts/PostFeedErrorMessage.tsx:210 +#: src/view/com/posts/PostFeedErrorMessage.tsx:214 msgid "Remove feed?" msgstr "要刪除動態源嗎?" #: src/screens/Profile/components/ProfileFeedHeader.tsx:319 #: src/screens/Profile/components/ProfileFeedHeader.tsx:325 -#: src/view/com/feeds/FeedSourceCard.tsx:190 -#: src/view/com/feeds/FeedSourceCard.tsx:268 #: src/view/screens/ProfileList.tsx:528 -#: src/view/screens/SavedFeeds.tsx:342 +#: src/view/screens/SavedFeeds.tsx:350 msgid "Remove from my feeds" msgstr "從我的動態源中刪除" -#: src/screens/Settings/Settings.tsx:535 +#: src/screens/Settings/Settings.tsx:654 msgid "Remove from quick access?" msgstr "要從快速存取中移除嗎?" @@ -6311,11 +6811,10 @@ msgid "Remove from saved feeds" msgstr "從儲存的動態源中刪除" #: src/components/FeedCard.tsx:338 -#: src/view/com/feeds/FeedSourceCard.tsx:317 msgid "Remove from your feeds?" msgstr "要從您的動態源中刪除嗎?" -#: src/view/com/composer/photos/Gallery.tsx:203 +#: src/view/com/composer/photos/Gallery.tsx:204 msgid "Remove image" msgstr "刪除圖片" @@ -6332,12 +6831,8 @@ msgstr "從您的列表中刪除靜音字詞" msgid "Remove profile" msgstr "刪除個人檔案" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290 -msgid "Remove quote" -msgstr "刪除引用貼文" - -#: src/components/PostControls/RepostButton.tsx:140 -#: src/components/PostControls/RepostButton.tsx:150 +#: src/components/PostControls/RepostButton.tsx:151 +#: src/components/PostControls/RepostButton.tsx:161 msgid "Remove repost" msgstr "刪除轉發" @@ -6345,7 +6840,7 @@ msgstr "刪除轉發" msgid "Remove subtitle file" msgstr "移除字幕檔案" -#: src/view/com/posts/PostFeedErrorMessage.tsx:211 +#: src/view/com/posts/PostFeedErrorMessage.tsx:215 msgid "Remove this feed from your saved feeds" msgstr "將這個動態源從已儲存的動態源中刪除" @@ -6364,11 +6859,11 @@ msgstr "撤回驗證" msgid "Remove your verification for this account?" msgstr "要撤回您對這個帳號的驗證嗎?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +#: src/components/Post/Embed/index.tsx:208 msgid "Removed by author" msgstr "已被發布者刪除" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +#: src/components/Post/Embed/index.tsx:206 msgid "Removed by you" msgstr "由您刪除" @@ -6377,10 +6872,6 @@ msgstr "由您刪除" msgid "Removed from list" msgstr "成功從列表中刪除" -#: src/view/com/feeds/FeedSourceCard.tsx:138 -msgid "Removed from my feeds" -msgstr "成功從我的動態源中刪除" - #: src/screens/List/ListHiddenScreen.tsx:94 msgid "Removed from saved feeds" msgstr "成功從儲存的動態源中刪除" @@ -6395,34 +6886,36 @@ msgstr "成功從您的動態源中刪除" msgid "Removed verification" msgstr "已撤回驗證" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291 -msgid "Removes quoted post" -msgstr "刪除已轉發貼文" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "取代為「Discover」動態源" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 +#: src/lib/hooks/useNotificationHandler.ts:140 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:215 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 #: src/view/screens/Profile.tsx:226 msgid "Replies" msgstr "回覆" -#: src/components/WhoCanReply.tsx:73 +#: src/components/WhoCanReply.tsx:79 msgid "Replies disabled" msgstr "已關閉回覆" -#: src/components/WhoCanReply.tsx:224 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "這則貼文的回覆已關閉。" -#: src/view/com/composer/Composer.tsx:983 +#: src/view/com/composer/Composer.tsx:1032 msgctxt "action" msgid "Reply" msgstr "回覆" #. Accessibility label for the reply button, verb form followed by number of replies and noun form -#: src/components/PostControls/index.tsx:200 +#: src/components/PostControls/index.tsx:207 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "回覆 ({0, plural, one {# 則回覆} other {# 則回覆}})" @@ -6436,50 +6929,55 @@ msgstr "這則回覆被討論串的發布者隱藏" msgid "Reply Hidden by You" msgstr "這則回覆被您隱藏" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385 +#: src/Navigation.tsx:427 +msgid "Reply notifications" +msgstr "回覆通知" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Reply settings" msgstr "回覆設定" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:374 msgid "Reply settings are chosen by the author of the thread" msgstr "由此討論串的發布者選擇的回覆設定" -#: src/view/com/post-thread/PostThread.tsx:651 +#: src/screens/PostThread/components/HeaderDropdown.tsx:69 +#: src/view/com/post-thread/PostThread.tsx:675 msgid "Reply sorting" msgstr "回覆排序" -#: src/view/com/post/Post.tsx:205 -#: src/view/com/posts/PostFeedItem.tsx:605 +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/PostFeedItem.tsx:602 msgctxt "description" msgid "Reply to <0><1/>" msgstr "對 <0><1/> 回覆" -#: src/view/com/posts/PostFeedItem.tsx:596 +#: src/view/com/posts/PostFeedItem.tsx:593 msgctxt "description" msgid "Reply to a blocked post" msgstr "對被封鎖的貼文回覆" -#: src/view/com/posts/PostFeedItem.tsx:598 +#: src/view/com/posts/PostFeedItem.tsx:595 msgctxt "description" msgid "Reply to a post" msgstr "對貼文回覆" -#: src/view/com/post/Post.tsx:203 -#: src/view/com/posts/PostFeedItem.tsx:602 +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/PostFeedItem.tsx:599 msgctxt "description" msgid "Reply to you" msgstr "對您回覆" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:335 msgctxt "toast" msgid "Reply visibility updated" msgstr "成功更新回覆可見度" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:334 msgid "Reply was successfully hidden" msgstr "成功隱藏回覆" -#: src/components/dms/MessageContextMenu.tsx:172 +#: src/components/dms/MessageContextMenu.tsx:166 #: src/components/dms/MessagesListBlockedFooter.tsx:85 #: src/components/dms/MessagesListBlockedFooter.tsx:92 msgid "Report" @@ -6513,12 +7011,12 @@ msgstr "檢舉動態源" msgid "Report list" msgstr "檢舉列表" -#: src/components/dms/MessageContextMenu.tsx:170 +#: src/components/dms/MessageContextMenu.tsx:164 msgid "Report message" msgstr "檢舉訊息" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 msgid "Report post" msgstr "檢舉貼文" @@ -6567,25 +7065,26 @@ msgstr "檢舉這個新手包" msgid "Report this user" msgstr "檢舉這個用戶" -#: src/components/PostControls/RepostButton.tsx:141 #: src/components/PostControls/RepostButton.tsx:152 +#: src/components/PostControls/RepostButton.tsx:163 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 msgctxt "action" msgid "Repost" msgstr "轉發" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 -msgid "Repost" -msgstr "轉發" - #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form -#: src/components/PostControls/RepostButton.tsx:65 +#: src/components/PostControls/RepostButton.tsx:76 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "轉發 ({0, plural, one {# 則轉發} other {# 則轉發}})" -#: src/components/PostControls/RepostButton.tsx:133 +#: src/Navigation.tsx:459 +msgid "Repost notifications" +msgstr "轉發通知" + +#: src/components/PostControls/RepostButton.tsx:144 #: src/components/PostControls/RepostButton.web.tsx:43 -#: src/components/PostControls/RepostButton.web.tsx:97 +#: src/components/PostControls/RepostButton.web.tsx:103 #: src/screens/StarterPack/StarterPackScreen.tsx:561 msgid "Repost or quote post" msgstr "轉發或引用貼文" @@ -6594,35 +7093,47 @@ msgstr "轉發或引用貼文" msgid "Reposted By" msgstr "轉發" -#: src/view/com/posts/PostFeedItem.tsx:347 +#: src/view/com/posts/PostFeedItem.tsx:351 msgid "Reposted by {0}" msgstr "由 {0} 轉發" -#: src/view/com/posts/PostFeedItem.tsx:366 +#: src/view/com/posts/PostFeedItem.tsx:370 msgid "Reposted by <0><1/>" msgstr "由 <0><1/> 轉發" -#: src/view/com/posts/PostFeedItem.tsx:345 -#: src/view/com/posts/PostFeedItem.tsx:364 +#: src/view/com/posts/PostFeedItem.tsx:349 +#: src/view/com/posts/PostFeedItem.tsx:368 msgid "Reposted by you" msgstr "由您轉發" -#: src/view/com/post-thread/PostThreadItem.tsx:237 +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +msgid "Reposts" +msgstr "轉發" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:427 +#: src/view/com/post-thread/PostThreadItem.tsx:248 msgid "Reposts of this post" msgstr "轉發這則貼文" -#: src/components/dialogs/ChangeEmailDialog.tsx:175 -#: src/components/dialogs/ChangeEmailDialog.tsx:182 -msgid "Request change" -msgstr "請求變更" +#: src/lib/hooks/useNotificationHandler.ts:175 +#: src/screens/Settings/NotificationSettings/index.tsx:222 +#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +msgid "Reposts of your reposts" +msgstr "轉發您轉發的貼文" + +#: src/Navigation.tsx:483 +msgid "Reposts of your reposts notifications" +msgstr "轉發您轉發貼文的通知" #: src/view/com/modals/ChangePassword.tsx:253 #: src/view/com/modals/ChangePassword.tsx:255 msgid "Request Code" msgstr "請求代碼" -#: src/screens/Settings/AccessibilitySettings.tsx:60 -#: src/screens/Settings/AccessibilitySettings.tsx:65 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +#: src/screens/Settings/AccessibilitySettings.tsx:63 msgid "Require alt text before posting" msgstr "要求發布前提供替代文字" @@ -6630,7 +7141,7 @@ msgstr "要求發布前提供替代文字" msgid "Require an email code to sign in to your account." msgstr "登入時要求電子郵件驗證碼。" -#: src/screens/Signup/StepInfo/index.tsx:177 +#: src/screens/Signup/StepInfo/index.tsx:181 msgid "Required for this provider" msgstr "此服務提供者要求必填" @@ -6642,10 +7153,6 @@ msgstr "您所在的區域要求必填" msgid "Resend" msgstr "重新傳送" -#: src/components/dialogs/ChangeEmailDialog.tsx:217 -#: src/components/dialogs/ChangeEmailDialog.tsx:227 -#: src/components/dialogs/VerifyEmailDialog.tsx:330 -#: src/components/dialogs/VerifyEmailDialog.tsx:340 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 msgid "Resend email" @@ -6659,6 +7166,12 @@ msgstr "重新傳送電子郵件" msgid "Resend Verification Email" msgstr "重新傳送驗證電子郵件" +#: src/screens/Settings/Settings.tsx:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Reset activity subscription nudge" +msgstr "重置動態訂閱通知提示" + +#: src/screens/Login/SetNewPasswordForm.tsx:116 #: src/view/com/modals/ChangePassword.tsx:197 msgid "Reset code" msgstr "重設碼" @@ -6667,8 +7180,8 @@ msgstr "重設碼" msgid "Reset Code" msgstr "重設碼" -#: src/screens/Settings/Settings.tsx:409 -#: src/screens/Settings/Settings.tsx:411 +#: src/screens/Settings/Settings.tsx:467 +#: src/screens/Settings/Settings.tsx:469 msgid "Reset onboarding state" msgstr "重設入門引導進度" @@ -6687,21 +7200,23 @@ msgstr "重新執行上一個出現錯誤的動作" #: src/components/dms/MessageItem.tsx:321 #: src/components/Error.tsx:65 -#: src/components/Lists.tsx:110 +#: src/components/Lists.tsx:111 #: src/components/moderation/ReportDialog/index.tsx:229 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:57 #: src/components/StarterPack/ProfileStarterPacks.tsx:346 #: src/screens/Login/LoginForm.tsx:323 #: src/screens/Login/LoginForm.tsx:330 -#: src/screens/Messages/ChatList.tsx:254 +#: src/screens/Messages/ChatList.tsx:280 #: src/screens/Messages/components/MessageListError.tsx:25 -#: src/screens/Messages/Inbox.tsx:197 +#: src/screens/Messages/Inbox.tsx:218 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/PostThread/components/ThreadError.tsx:75 +#: src/screens/PostThread/components/ThreadError.tsx:81 #: src/screens/Signup/BackNextButtons.tsx:53 #: src/view/com/util/error/ErrorMessage.tsx:60 #: src/view/com/util/error/ErrorScreen.tsx:97 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "重試" @@ -6721,19 +7236,19 @@ msgstr "返回首頁" #: src/screens/Profile/ProfileFeed/index.tsx:93 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 -#: src/screens/VideoFeed/index.tsx:1139 +#: src/screens/VideoFeed/index.tsx:1142 #: src/view/screens/NotFound.tsx:60 #: src/view/screens/ProfileList.tsx:1039 msgid "Returns to previous page" msgstr "返回上一頁" -#: src/screens/StarterPack/Wizard/index.tsx:287 +#: src/screens/StarterPack/Wizard/index.tsx:304 msgid "Returns to the previous step" msgstr "返回上一步" #: src/components/dialogs/BirthDateSettings.tsx:121 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:483 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:489 #: src/components/live/EditLiveDialog.tsx:216 #: src/components/live/EditLiveDialog.tsx:223 #: src/components/StarterPack/QrCodeDialog.tsx:192 @@ -6747,8 +7262,7 @@ msgstr "返回上一步" #: src/view/com/composer/photos/ImageAltTextDialog.tsx:153 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 #: src/view/com/modals/CreateOrEditList.tsx:315 -#: src/view/com/modals/EditProfile.tsx:244 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save" msgstr "儲存" @@ -6762,15 +7276,13 @@ msgstr "儲存" msgid "Save birthday" msgstr "儲存生日" -#: src/view/screens/SavedFeeds.tsx:105 -#: src/view/screens/SavedFeeds.tsx:109 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 +#: src/view/screens/SavedFeeds.tsx:113 +#: src/view/screens/SavedFeeds.tsx:117 msgid "Save changes" msgstr "儲存變更" -#: src/view/com/modals/EditProfile.tsx:252 -msgid "Save Changes" -msgstr "儲存變更" - #: src/components/StarterPack/ShareDialog.tsx:131 #: src/components/StarterPack/ShareDialog.tsx:138 msgid "Save image" @@ -6793,7 +7305,7 @@ msgstr "儲存 QR Code" msgid "Save to my feeds" msgstr "儲存到我的動態源" -#: src/view/screens/SavedFeeds.tsx:164 +#: src/view/screens/SavedFeeds.tsx:172 msgid "Saved Feeds" msgstr "已儲存的動態源" @@ -6802,18 +7314,14 @@ msgstr "已儲存的動態源" msgid "Saved to your feeds" msgstr "成功儲存到您的動態源" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Saves any changes to your profile" -msgstr "儲存對您個人檔案的所有變更" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "儲存圖片裁剪設定" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/NotificationFeedItem.tsx:694 -#: src/view/com/notifications/NotificationFeedItem.tsx:719 +#: src/view/com/notifications/NotificationFeedItem.tsx:751 +#: src/view/com/notifications/NotificationFeedItem.tsx:776 msgid "Say hello!" msgstr "說句「你好!👋」" @@ -6826,16 +7334,16 @@ msgstr "科學" msgid "Scroll to top" msgstr "捲動到頂部" -#: src/components/dialogs/SearchablePeopleList.tsx:513 +#: src/components/dialogs/SearchablePeopleList.tsx:514 #: src/components/forms/SearchInput.tsx:34 #: src/components/forms/SearchInput.tsx:36 #: src/screens/Search/Shell.tsx:307 #: src/screens/Search/Shell.tsx:464 -#: src/view/shell/bottom-bar/BottomBar.tsx:188 +#: src/view/shell/bottom-bar/BottomBar.tsx:198 msgid "Search" msgstr "搜尋" -#: src/Navigation.tsx:229 +#: src/Navigation.tsx:256 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "搜尋 @{0} 的貼文" @@ -6861,7 +7369,7 @@ msgstr "搜尋「{query}」" msgid "Search for \"{searchText}\"" msgstr "搜尋「{searchText}」" -#: src/screens/StarterPack/Wizard/index.tsx:474 +#: src/screens/StarterPack/Wizard/index.tsx:513 msgid "Search for feeds that you want to suggest to others." msgstr "搜尋您想推薦給別人的動態源。" @@ -6877,10 +7385,14 @@ msgstr "搜尋更多動態源" msgid "Search for posts, users, or feeds" msgstr "搜尋貼文、用戶或動態源" -#: src/components/dialogs/GifSelect.tsx:177 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search GIFs" msgstr "搜尋 GIF" +#: src/screens/Search/SearchResults.tsx:253 +msgid "Search is currently unavailable when logged out" +msgstr "未登入狀態無法使用搜尋功能" + #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "搜尋我的貼文" @@ -6890,12 +7402,12 @@ msgstr "搜尋我的貼文" msgid "Search posts" msgstr "搜尋貼文" -#: src/components/dialogs/SearchablePeopleList.tsx:533 +#: src/components/dialogs/SearchablePeopleList.tsx:534 #: src/components/ProgressGuide/FollowDialog.tsx:702 msgid "Search profiles" msgstr "搜尋用戶" -#: src/components/dialogs/GifSelect.tsx:178 +#: src/components/dialogs/GifSelect.tsx:179 msgid "Search Tenor" msgstr "搜尋 Tenor" @@ -6903,7 +7415,7 @@ msgstr "搜尋 Tenor" msgid "Search..." msgstr "搜尋……" -#: src/components/dialogs/SearchablePeopleList.tsx:534 +#: src/components/dialogs/SearchablePeopleList.tsx:535 #: src/components/ProgressGuide/FollowDialog.tsx:703 msgid "Searches for profiles" msgstr "搜尋個人檔案" @@ -6912,10 +7424,6 @@ msgstr "搜尋個人檔案" msgid "Security step required" msgstr "所需的安全步驟" -#: src/components/dialogs/ChangeEmailDialog.tsx:57 -msgid "Security Step Required" -msgstr "所需的安全步驟" - #: src/components/RichTextTag.tsx:111 msgid "See {tag} posts" msgstr "檢視包含 {tag} 的貼文" @@ -6936,13 +7444,30 @@ msgstr "檢視此用戶包含 #{tag} 的貼文" msgid "See jobs at Bluesky" msgstr "瀏覽在 Bluesky 的工作機會" -#: src/view/screens/SavedFeeds.tsx:205 +#: src/components/FeedInterstitials.tsx:397 +msgid "See more" +msgstr "檢視更多" + +#: src/components/FeedInterstitials.tsx:444 +msgid "See more accounts you might like" +msgstr "檢視更多您可能感興趣的帳號" + +#: src/components/FeedInterstitials.tsx:395 +msgid "See more suggested profiles on the Explore page" +msgstr "在探索頁面檢視更多推薦的個人檔案" + +#: src/view/screens/SavedFeeds.tsx:213 msgid "See this guide" msgstr "查詢指南" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" -msgstr "播放進度條。使用方向鍵來前進或後退,按空白鍵控制播放或暫停。" +msgstr "播放進度列。使用方向鍵來快轉或倒轉,空白鍵控制播放或暫停" + +#. Accessibility label for a username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 +msgid "Select {0}" +msgstr "" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" @@ -6988,7 +7513,7 @@ msgstr "從現有帳號中選擇" msgid "Select GIF" msgstr "選擇 GIF" -#: src/components/dialogs/GifSelect.tsx:306 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "選擇 GIF「{0}」" @@ -6996,6 +7521,11 @@ msgstr "選擇 GIF「{0}」" msgid "Select how long to mute this word for." msgstr "選擇要靜音此字詞的時間長度。" +#: src/components/LanguageSelect.tsx:35 +#: src/components/LanguageSelect.tsx:36 +msgid "Select language" +msgstr "選擇語言" + #: src/view/com/composer/videos/SubtitleDialog.tsx:248 msgid "Select language..." msgstr "選擇語言……" @@ -7004,7 +7534,7 @@ msgstr "選擇語言……" msgid "Select languages" msgstr "選擇語言" -#: src/components/moderation/ReportDialog/index.tsx:307 +#: src/components/moderation/ReportDialog/index.tsx:310 msgid "Select moderation service" msgstr "選擇內容管理服務" @@ -7045,12 +7575,12 @@ msgstr "選擇應用程式介面所使用的語言。" msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "選擇您希望在訂閱的動態源中所看到的語言。如果留空,將視為選擇所有語言。" -#: src/screens/Signup/StepInfo/index.tsx:270 +#: src/screens/Signup/StepInfo/index.tsx:274 msgid "Select your date of birth" msgstr "選擇您的出生日期" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/screens/Settings/SettingsInterests.tsx:162 +#: src/screens/Settings/InterestsSettings.tsx:161 msgid "Select your interests from the options below" msgstr "從下面選擇您感興趣的選項" @@ -7058,7 +7588,11 @@ msgstr "從下面選擇您感興趣的選項" msgid "Select your preferred language for translations in your feed." msgstr "選擇您在動態中翻譯的偏好目標語言。" -#: src/view/com/util/forms/DropdownButton.tsx:297 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:110 +msgid "Select your preferred notification channels" +msgstr "選擇您偏好的通知類型" + +#: src/view/com/util/forms/DropdownButton.tsx:302 msgid "Selects option {0} of {numItems}" msgstr "選擇第 {0} 個選項(共 {numItems} 個)" @@ -7066,17 +7600,9 @@ msgstr "選擇第 {0} 個選項(共 {numItems} 個)" msgid "Send a neat website!" msgstr "傳送一個有趣的網站吧!" -#: src/components/dialogs/VerifyEmailDialog.tsx:295 -msgid "Send confirmation" -msgstr "傳送確認郵件" - -#: src/components/dialogs/VerifyEmailDialog.tsx:288 -msgid "Send confirmation email" -msgstr "傳送確認電子郵件" - #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 #: src/view/com/modals/DeleteAccount.tsx:145 msgid "Send email" msgstr "傳送電子郵件" @@ -7086,7 +7612,7 @@ msgctxt "action" msgid "Send Email" msgstr "傳送電子郵件" -#: src/view/shell/Drawer.tsx:336 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "提交意見" @@ -7095,7 +7621,7 @@ msgstr "提交意見" msgid "Send message" msgstr "重送訊息" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:111 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:123 msgid "Send post to {name}" msgstr "傳送貼文給 {name}" @@ -7114,20 +7640,20 @@ msgstr "提交檢舉" msgid "Send report to {0}" msgstr "將檢舉提交至 {0}" -#: src/components/moderation/ReportDialog/index.tsx:646 +#: src/components/moderation/ReportDialog/index.tsx:649 msgid "Send report to {title}" msgstr "將檢舉提交至 {title}" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 msgid "Send verification email" msgstr "傳送驗證電子郵件" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104 #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116 msgid "Send via direct message" msgstr "透過私人訊息傳送" @@ -7143,7 +7669,7 @@ msgstr "伺服器位址" msgid "Set app icon to {0}" msgstr "將應用程式圖示變更為 {0}" -#: src/screens/Moderation/index.tsx:325 +#: src/screens/Moderation/index.tsx:333 msgid "Set birthdate" msgstr "設定出生日期" @@ -7159,13 +7685,57 @@ msgstr "設定您的帳號" msgid "Sets email for password reset" msgstr "設定用於重設密碼的電子郵件" -#: src/Navigation.tsx:185 -#: src/screens/Settings/Settings.tsx:90 -#: src/view/shell/desktop/LeftNav.tsx:727 -#: src/view/shell/Drawer.tsx:558 +#: src/Navigation.tsx:212 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:728 +#: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "設定" +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for activity from others" +msgstr "來自其他人的動態通知設定" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "允許其他人接收您的貼文發布通知設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:121 +msgid "Settings for like notifications" +msgstr "喜歡通知設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for mention notifications" +msgstr "提及通知設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:132 +msgid "Settings for new follower notifications" +msgstr "新跟隨者通知設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:230 +msgid "Settings for notifications for everything else" +msgstr "其他通知設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:201 +msgid "Settings for notifications for likes of your reposts" +msgstr "轉發的喜歡通知設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:216 +msgid "Settings for notifications for reposts of your reposts" +msgstr "轉發的轉發通知設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for quote notifications" +msgstr "引用通知設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:143 +msgid "Settings for reply notifications" +msgstr "回覆通知設定" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for repost notifications" +msgstr "轉發通知設定" + #: src/screens/ModerationInteractionSettings/index.tsx:102 msgctxt "toast" msgid "Settings saved" @@ -7200,33 +7770,28 @@ msgstr "分享一個有趣的故事!" msgid "Share a fun fact!" msgstr "分享一個趣聞!📰" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170 #: src/view/com/profile/ProfileMenu.tsx:485 msgid "Share anyway" msgstr "仍然分享" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:159 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162 msgid "Share author DID" msgstr "分享作者 DID" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:104 #: src/components/StarterPack/ShareDialog.tsx:111 msgid "Share link" msgstr "分享連結" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Share Link" -msgstr "分享連結" - #: src/components/StarterPack/ShareDialog.tsx:68 msgid "Share link dialog" msgstr "分享連結對話框" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:150 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153 msgid "Share post at:// URI" msgstr "分享貼文 at:// 連結" @@ -7247,8 +7812,8 @@ msgstr "分享這個新手包" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "分享這個新手包,以協助他人融入您在 Bluesky 上的社群。" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 #: src/screens/StarterPack/StarterPackScreen.tsx:611 #: src/screens/StarterPack/StarterPackScreen.tsx:619 #: src/view/com/profile/ProfileMenu.tsx:243 @@ -7260,21 +7825,17 @@ msgstr "分享到……" msgid "Share your favorite feed!" msgstr "分享您喜愛的動態源!" -#: src/Navigation.tsx:288 +#: src/Navigation.tsx:315 msgid "Shared Preferences Tester" msgstr "共用偏好測試器" -#: src/view/com/modals/LinkWarning.tsx:92 -msgid "Shares the linked website" -msgstr "分享網站的連結" - -#: src/components/moderation/ContentHider.tsx:200 -#: src/components/moderation/LabelPreference.tsx:137 -#: src/components/moderation/PostHider.tsx:124 +#: src/components/moderation/ContentHider.tsx:203 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:134 msgid "Show" msgstr "顯示" -#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:178 msgid "Show alt text" msgstr "顯示替代文字" @@ -7303,8 +7864,8 @@ msgstr "顯示自訂選項" msgid "Show hidden replies" msgstr "顯示隱藏回覆" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:479 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481 msgid "Show less like this" msgstr "減少顯示類似內容" @@ -7312,55 +7873,63 @@ msgstr "減少顯示類似內容" msgid "Show list anyway" msgstr "仍然顯示列表" -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post/Post.tsx:244 -#: src/view/com/posts/PostFeedItem.tsx:561 +#: src/components/Post/ShowMoreTextButton.tsx:51 msgid "Show More" msgstr "顯示更多" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:471 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:473 msgid "Show more like this" msgstr "顯示更多類似內容" +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 +msgid "Show more replies" +msgstr "顯示更多回覆" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22 msgid "Show muted replies" msgstr "顯示靜音回覆" -#: src/screens/Settings/FollowingFeedPreferences.tsx:104 -#: src/screens/Settings/FollowingFeedPreferences.tsx:114 +#: src/screens/Settings/ThreadPreferences.tsx:143 +msgid "Show post replies in a threaded tree view" +msgstr "使用樹狀介面顯示貼文回覆" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +#: src/screens/Settings/FollowingFeedPreferences.tsx:117 msgid "Show quote posts" msgstr "顯示引用貼文" -#: src/screens/Settings/FollowingFeedPreferences.tsx:68 -#: src/screens/Settings/FollowingFeedPreferences.tsx:78 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +#: src/screens/Settings/FollowingFeedPreferences.tsx:81 msgid "Show replies" msgstr "顯示回覆" -#: src/view/com/post-thread/PostThread.tsx:625 +#: src/screens/PostThread/components/HeaderDropdown.tsx:43 +#: src/view/com/post-thread/PostThread.tsx:649 msgid "Show replies as" msgstr "顯示回覆為" -#: src/screens/Settings/ThreadPreferences.tsx:151 +#: src/screens/Settings/ThreadPreferences.tsx:285 msgid "Show replies as threaded" msgstr "使用樹狀介面顯示回覆" -#: src/screens/Settings/ThreadPreferences.tsx:126 +#: src/screens/Settings/ThreadPreferences.tsx:120 +#: src/screens/Settings/ThreadPreferences.tsx:260 msgid "Show replies by people you follow before all other replies" msgstr "把來自您跟隨的人的回覆顯示在最前面" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565 msgid "Show reply for everyone" msgstr "為所有人顯示回覆" -#: src/screens/Settings/FollowingFeedPreferences.tsx:86 -#: src/screens/Settings/FollowingFeedPreferences.tsx:96 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +#: src/screens/Settings/FollowingFeedPreferences.tsx:99 msgid "Show reposts" msgstr "顯示轉發貼文" -#: src/screens/Settings/FollowingFeedPreferences.tsx:129 -#: src/screens/Settings/FollowingFeedPreferences.tsx:139 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +#: src/screens/Settings/FollowingFeedPreferences.tsx:142 msgid "Show samples of your saved feeds in your Following feed" msgstr "在「Following」動態源中,顯示來自您儲存動態源中的精選貼文" @@ -7372,16 +7941,17 @@ msgstr "顯示警告" msgid "Show warning and filter from feeds" msgstr "顯示警告,並從動態中排除內容" -#: src/view/com/post-thread/PostThreadItem.tsx:916 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609 +#: src/view/com/post-thread/PostThreadItem.tsx:924 msgid "Shows information about when this post was created" msgstr "顯示有關此貼文建立時間的資訊" -#: src/screens/Settings/Settings.tsx:114 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "顯示其他您可以切換的帳號" -#: src/components/moderation/ContentHider.tsx:152 -#: src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/PostHider.tsx:89 msgid "Shows the content" msgstr "顯示內容" @@ -7390,14 +7960,15 @@ msgstr "顯示內容" #: src/screens/Login/index.tsx:122 #: src/screens/Login/index.tsx:143 #: src/screens/Login/LoginForm.tsx:181 +#: src/screens/Search/SearchResults.tsx:258 #: src/view/com/auth/SplashScreen.tsx:61 #: src/view/com/auth/SplashScreen.tsx:69 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 -#: src/view/shell/bottom-bar/BottomBar.tsx:345 -#: src/view/shell/bottom-bar/BottomBar.tsx:350 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 #: src/view/shell/NavSignupCard.tsx:57 #: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" @@ -7428,15 +7999,20 @@ msgstr "登入未列出的帳號" msgid "Sign in to Bluesky or create a new account" msgstr "登入 Bluesky 或建立新的帳號" -#: src/screens/Settings/Settings.tsx:235 -#: src/screens/Settings/Settings.tsx:237 -#: src/screens/Settings/Settings.tsx:269 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:457 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:459 +msgid "Sign in to view post" +msgstr "登入以檢視貼文" + +#: src/screens/Settings/Settings.tsx:254 +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:288 #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "登出" @@ -7444,8 +8020,8 @@ msgstr "登出" msgid "Sign Out" msgstr "登出" -#: src/screens/Settings/Settings.tsx:266 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/screens/Settings/Settings.tsx:285 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "確定要登出嗎?" @@ -7459,12 +8035,12 @@ msgstr "需要登入" msgid "Signed in as @{0}" msgstr "以 @{0} 的身分登入" -#: src/components/FeedInterstitials.tsx:337 +#: src/components/FeedInterstitials.tsx:389 msgid "Similar accounts" msgstr "類似帳號" #: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:195 +#: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Skip" msgstr "跳過" @@ -7472,12 +8048,11 @@ msgstr "跳過" msgid "Skip this flow" msgstr "跳過此流程" -#: src/screens/Settings/AppearanceSettings.tsx:164 +#: src/screens/Settings/AppearanceSettings.tsx:167 msgid "Smaller" msgstr "更小" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/VerifyEmailDialog.tsx:274 msgid "Snoozes the reminder" msgstr "暫停提醒" @@ -7490,11 +8065,11 @@ msgstr "軟體開發" msgid "Some of your verifications are invalid." msgstr "您目前被授予的部分驗證無效。" -#: src/components/FeedInterstitials.tsx:474 +#: src/components/FeedInterstitials.tsx:529 msgid "Some other feeds you might like" msgstr "其他您可能喜歡的動態源" -#: src/components/WhoCanReply.tsx:74 +#: src/components/WhoCanReply.tsx:80 msgid "Some people can reply" msgstr "僅部分人可以回覆" @@ -7510,10 +8085,11 @@ msgstr "有人對 {1} 做出了 {0} 反應" msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "您目前提交的檢舉內容可能有誤,請聯絡支援以取得協助。" -#: src/screens/Messages/Conversation.tsx:129 +#: src/screens/Messages/Conversation.tsx:144 msgid "Something went wrong" msgstr "發生錯誤" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 #: src/components/moderation/ReportDialog/index.tsx:223 #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -7521,16 +8097,19 @@ msgid "Something went wrong, please try again" msgstr "發生錯誤,請再試一次" #: src/components/ReportDialog/index.tsx:54 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Profile/Sections/Labels.tsx:121 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:184 msgid "Something went wrong, please try again." msgstr "發生錯誤,請再試一次。" -#: src/components/Lists.tsx:174 -#: src/screens/Settings/NotificationSettings.tsx:55 +#: src/components/Lists.tsx:175 msgid "Something went wrong!" msgstr "發生錯誤!" +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Something went wrong. Please try again in a moment." +msgstr "發生錯誤,請稍待片刻後再試一次。" + #: src/components/moderation/ReportDialog/index.tsx:178 msgid "Something went wrong. Please try again." msgstr "發生錯誤,請再試一次。" @@ -7539,20 +8118,23 @@ msgstr "發生錯誤,請再試一次。" msgid "Something wrong? Let us know." msgstr "看起來有點問題?讓我們知道。" -#: src/App.native.tsx:122 -#: src/App.web.tsx:99 +#: src/App.native.tsx:124 +#: src/App.web.tsx:101 msgid "Sorry! Your session expired. Please sign in again." -msgstr "抱歉!您的登入狀態已過期。請重新登入。" +msgstr "抱歉!您的登入階段已過期。請重新登入。" -#: src/screens/Settings/ThreadPreferences.tsx:55 +#: src/screens/Settings/ThreadPreferences.tsx:68 +#: src/screens/Settings/ThreadPreferences.tsx:189 msgid "Sort replies" msgstr "排序回覆" -#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:75 +#: src/screens/Settings/ThreadPreferences.tsx:196 msgid "Sort replies by" msgstr "回覆排序方式" -#: src/screens/Settings/ThreadPreferences.tsx:59 +#: src/screens/Settings/ThreadPreferences.tsx:72 +#: src/screens/Settings/ThreadPreferences.tsx:193 msgid "Sort replies to the same post by:" msgstr "貼文下的回覆顯示順序:" @@ -7579,7 +8161,7 @@ msgstr "垃圾內容、過多的提及或回覆" msgid "Sports" msgstr "運動" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:196 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:208 msgid "Start a conversation, and it will appear here." msgstr "當您與其他人開始聊天後,對話就會出現在這裡。" @@ -7601,9 +8183,9 @@ msgstr "開始新增用戶!" msgid "Start chat with {displayName}" msgstr "與 {displayName} 開始對話" -#: src/Navigation.tsx:453 -#: src/Navigation.tsx:458 -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/Navigation.tsx:578 +#: src/Navigation.tsx:583 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Starter Pack" msgstr "新手包" @@ -7611,12 +8193,12 @@ msgstr "新手包" msgid "Starter pack by {0}" msgstr "來自 {0} 的新手包" -#: src/view/com/profile/ProfileSubpageHeader.tsx:182 +#: src/view/com/profile/ProfileSubpageHeader.tsx:186 msgid "Starter pack by <0/>" msgstr "來自 <0/> 的新手包" #: src/components/StarterPack/StarterPackCard.tsx:89 -#: src/view/com/profile/ProfileSubpageHeader.tsx:180 +#: src/view/com/profile/ProfileSubpageHeader.tsx:184 msgid "Starter pack by you" msgstr "您的新手包" @@ -7638,19 +8220,21 @@ msgstr "新手包能讓您輕鬆地與朋友分享喜愛的動態源與人物。 msgid "Status Page" msgstr "服務狀態頁面" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:163 msgid "Step {0} of {1}" msgstr "第 {0} 步(共 {1} 步)" -#: src/screens/Settings/Settings.tsx:363 +#: src/screens/Settings/Settings.tsx:393 msgid "Storage cleared, you need to restart the app now." msgstr "已清除儲存資料,請立即重新啟動應用程式。" -#: src/Navigation.tsx:278 -#: src/screens/Settings/Settings.tsx:390 +#: src/Navigation.tsx:305 +#: src/screens/Settings/Settings.tsx:448 msgid "Storybook" msgstr "故事書" +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:118 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:124 #: src/components/moderation/LabelsOnMeDialog.tsx:324 #: src/components/moderation/LabelsOnMeDialog.tsx:325 #: src/screens/Messages/components/ChatDisabled.tsx:142 @@ -7666,9 +8250,9 @@ msgstr "提交申訴" msgid "Submit Appeal" msgstr "提交申訴" -#: src/components/moderation/ReportDialog/index.tsx:384 -#: src/components/moderation/ReportDialog/index.tsx:441 -#: src/components/moderation/ReportDialog/index.tsx:448 +#: src/components/moderation/ReportDialog/index.tsx:387 +#: src/components/moderation/ReportDialog/index.tsx:444 +#: src/components/moderation/ReportDialog/index.tsx:451 msgid "Submit report" msgstr "提交檢舉" @@ -7676,10 +8260,14 @@ msgstr "提交檢舉" msgid "Subscribe" msgstr "套用" -#: src/screens/Profile/Sections/Labels.tsx:198 +#: src/screens/Profile/Sections/Labels.tsx:231 msgid "Subscribe to @{0} to use these labels:" msgstr "訂閱 @{0} 以使用這些標記:" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 +msgid "Subscribe to account activity" +msgstr "訂閱帳號動態" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235 msgid "Subscribe to Labeler" msgstr "訂閱標記服務" @@ -7692,8 +8280,12 @@ msgstr "訂閱這個標記服務" msgid "Subscribe to this list" msgstr "套用這個列表" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 +msgid "Success" +msgstr "完成" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 -#: src/components/dialogs/VerifyEmailDialog.tsx:124 msgid "Success!" msgstr "完成!" @@ -7705,7 +8297,7 @@ msgstr "成功驗證" msgid "Suggested Accounts" msgstr "推薦帳號" -#: src/components/FeedInterstitials.tsx:339 +#: src/components/FeedInterstitials.tsx:391 msgid "Suggested for you" msgstr "為您推薦" @@ -7714,26 +8306,26 @@ msgstr "為您推薦" msgid "Suggestive" msgstr "性暗示" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "日出" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "日落" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:325 #: src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "支援" -#: src/screens/Settings/Settings.tsx:112 -#: src/screens/Settings/Settings.tsx:126 -#: src/screens/Settings/Settings.tsx:485 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:137 +#: src/screens/Settings/Settings.tsx:604 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "切換帳號" @@ -7742,24 +8334,24 @@ msgstr "切換帳號" msgid "Switch Account" msgstr "切換帳號" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "切換帳號" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "切換到 {0}" #: src/components/dialogs/Embed.tsx:157 #: src/components/dialogs/Embed.tsx:159 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:147 +#: src/screens/Settings/AppearanceSettings.tsx:100 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "System" msgstr "系統" #: src/screens/Settings/AboutSettings.tsx:107 #: src/screens/Settings/AboutSettings.tsx:110 -#: src/screens/Settings/Settings.tsx:383 +#: src/screens/Settings/Settings.tsx:441 msgid "System log" msgstr "系統記錄" @@ -7767,6 +8359,18 @@ msgstr "系統記錄" msgid "Tags only" msgstr "僅限標籤" +#: src/view/com/feeds/MissingFeed.tsx:89 +msgid "Tap for information" +msgstr "輕觸以瞭解詳細資訊" + +#: src/view/com/feeds/MissingFeed.tsx:44 +msgid "Tap for more information" +msgstr "輕觸以瞭解更多資訊" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "點此以表示您瞭解且同意這些更新,並繼續使用 Bluesky" + #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 #: src/components/ContextMenu/Backdrop.tsx:46 @@ -7779,11 +8383,11 @@ msgstr "輕觸以跳過" #: src/state/shell/progress-guide.tsx:233 msgid "Task complete - 10 follows!" -msgstr "任務完成 - 跟隨 10 個人!" +msgstr "任務完成⸺跟隨 10 個人!" #: src/state/shell/progress-guide.tsx:223 msgid "Task complete - 10 likes!" -msgstr "任務完成 - 喜歡 10 則貼文!" +msgstr "任務完成⸺喜歡 10 則貼文!" #: src/components/ProgressGuide/List.tsx:64 msgid "Teach our algorithm what you like" @@ -7811,12 +8415,14 @@ msgstr "試著簡單說明一下" msgid "Terms" msgstr "條款" -#: src/Navigation.tsx:308 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 +#: src/Navigation.tsx:335 #: src/screens/Settings/AboutSettings.tsx:84 #: src/screens/Settings/AboutSettings.tsx:87 #: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:646 -#: src/view/shell/Drawer.tsx:648 +#: src/view/shell/Drawer.tsx:660 +#: src/view/shell/Drawer.tsx:662 msgid "Terms of Service" msgstr "服務條款" @@ -7848,10 +8454,6 @@ msgstr "文字輸入框" msgid "Thank you for your feedback! It has been sent to the feed operator." msgstr "感謝您的回饋!意見已經提交給動態源維護者。" -#: src/components/dialogs/VerifyEmailDialog.tsx:125 -msgid "Thank you! Your email has been successfully verified." -msgstr "謝謝!您的電子郵件地址已驗證成功。" - #: src/components/ReportDialog/SubmitView.tsx:83 msgid "Thank you. Your report has been sent." msgstr "謝謝,已送出您的檢舉。" @@ -7864,28 +8466,28 @@ msgstr "謝謝,您已成功驗證您的電子郵件地址。現在您可以關 msgid "That contains the following:" msgstr "其中包含以下內容:" -#: src/screens/Signup/StepHandle.tsx:55 -msgid "That handle is already taken." -msgstr "這個帳號代碼已被使用。" - #: src/screens/StarterPack/StarterPackScreen.tsx:110 #: src/screens/StarterPack/StarterPackScreen.tsx:111 #: src/screens/StarterPack/StarterPackScreen.tsx:155 #: src/screens/StarterPack/StarterPackScreen.tsx:156 -#: src/screens/StarterPack/Wizard/index.tsx:104 -#: src/screens/StarterPack/Wizard/index.tsx:114 +#: src/screens/StarterPack/Wizard/index.tsx:110 +#: src/screens/StarterPack/Wizard/index.tsx:120 msgid "That starter pack could not be found." msgstr "找不到那個新手包。" +#: src/screens/Signup/StepHandle/index.tsx:81 +msgid "That username is already taken" +msgstr "" + #: src/view/com/post-thread/PostQuotes.tsx:132 msgid "That's all, folks!" msgstr "就這些,報告完畢!" -#: src/screens/VideoFeed/index.tsx:1111 +#: src/screens/VideoFeed/index.tsx:1114 msgid "That's everything!" msgstr "就這些了!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:316 #: src/view/com/profile/ProfileMenu.tsx:461 msgid "The account will be able to interact with you after unblocking." msgstr "解除封鎖後,該帳號將能夠重新與您進行互動。" @@ -7900,7 +8502,7 @@ msgstr "應用程式將重新啟動" msgid "The author of this thread has hidden this reply." msgstr "此討論串的發布者隱藏了這則回覆。" -#: src/screens/Moderation/index.tsx:377 +#: src/screens/Moderation/index.tsx:407 msgid "The Bluesky web application" msgstr "Bluesky 網頁應用程式" @@ -7920,10 +8522,6 @@ msgstr "Discover 動態源" msgid "The Discover feed now knows what you like" msgstr "現在「Discover」動態源瞭解您喜歡的內容了" -#: src/components/dialogs/ChangeEmailDialog.tsx:74 -msgid "The email address you entered is the same as your current email address." -msgstr "您輸入的已經是目前使用的電子郵件地址。" - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:324 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "使用應用程式的體驗會更好。現在就下載 Bluesky,我們將從您離開的地方繼續。" @@ -7942,10 +8540,18 @@ msgstr "以下標記已套用到您的內容。" #: src/screens/ModerationInteractionSettings/index.tsx:42 msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." -msgstr "以下設定將自動套用到新的貼文。您也可以在撰寫貼文時自行修改這些選項。" +msgstr "以下設定將自動套用到新的貼文。您也可以針對個別貼文修改這些選項。" -#: src/view/com/post-thread/PostThread.tsx:265 -#: src/view/com/post-thread/PostThread.tsx:277 +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 +msgid "The laws in your location require you to verify you're an adult before accessing certain features on Bluesky, like adult content and direct messaging." +msgstr "您當地的法律要求需要驗證您已成年後,才能存取 Bluesky 上的部分功能,例如成人內容和對話功能。" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 +msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "您當地的法律要求需要驗證您已成年後,才能存取 Bluesky 上的部分功能。輕觸以瞭解詳情。" + +#: src/view/com/post-thread/PostThread.tsx:267 +#: src/view/com/post-thread/PostThread.tsx:279 msgid "The post may have been deleted." msgstr "這則貼文可能已被刪除。" @@ -7953,9 +8559,10 @@ msgstr "這則貼文可能已被刪除。" msgid "The Privacy Policy has been moved to <0/>" msgstr "隱私權政策已移動到 <0/>" -#: src/view/com/composer/state/video.ts:395 -msgid "The selected video is larger than 100 MB." -msgstr "選擇的影片檔案大小超過 100 MB。" +#: src/view/com/composer/state/video.ts:396 +#: src/view/com/composer/state/video.ts:435 +msgid "The selected video is larger than 100 MB. Please try again with a smaller file." +msgstr "您選擇的影片檔案大小大於 100 MB。請使用較小的檔案再試一次。" #: src/lib/hooks/useCleanError.ts:40 #: src/lib/strings/errors.ts:18 @@ -7982,7 +8589,7 @@ msgstr "服務條款已移動到" msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "您所使用的驗證碼無效。請檢查您是否使用了正確的驗證連結,或重新申請一個新的連結。" -#: src/screens/Settings/AppearanceSettings.tsx:151 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Theme" msgstr "主題" @@ -7990,14 +8597,14 @@ msgstr "主題" msgid "There is no time limit for account deactivation, come back any time." msgstr "停用帳號沒有時間限制,隨時歡迎您回來看看。" -#: src/components/dialogs/GifSelect.tsx:226 +#: src/components/dialogs/GifSelect.tsx:227 msgid "There was an issue connecting to Tenor." msgstr "連線到 Tenor 時發生問題。" #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 #: src/view/screens/ProfileList.tsx:375 #: src/view/screens/ProfileList.tsx:394 -#: src/view/screens/SavedFeeds.tsx:85 +#: src/view/screens/SavedFeeds.tsx:93 msgid "There was an issue contacting the server" msgstr "連線伺服器時發生問題" @@ -8006,17 +8613,12 @@ msgstr "連線伺服器時發生問題" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "連線至伺服器時發生問題,請檢查您的網路連線,然後再試一次。" -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:140 -msgid "There was an issue contacting your server" -msgstr "連線伺服器時發生問題" - -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "取得通知時發生問題,按這裡重試。" -#: src/screens/Search/Explore.tsx:990 -#: src/view/com/posts/PostFeed.tsx:657 +#: src/screens/Search/Explore.tsx:986 +#: src/view/com/posts/PostFeed.tsx:701 msgid "There was an issue fetching posts. Tap here to try again." msgstr "取得貼文時發生問題,按這裡重試。" @@ -8037,7 +8639,7 @@ msgstr "取得列表時發生問題,按這裡重試。" msgid "There was an issue fetching your service info" msgstr "取得您的服務資訊時發生問題" -#: src/view/com/posts/PostFeedErrorMessage.tsx:145 +#: src/view/com/posts/PostFeedErrorMessage.tsx:149 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "刪除動態源時發生問題,請檢查您的網路連線,然後再試一次。" @@ -8052,9 +8654,9 @@ msgstr "提交您的檢舉時發生問題,請檢查您的網路連線。" msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "更新動態源時發生問題,請檢查您的網路連線,然後再試一次。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132 @@ -8069,7 +8671,7 @@ msgstr "更新動態源時發生問題,請檢查您的網路連線,然後再 msgid "There was an issue! {0}" msgstr "發生問題!{0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:221 #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 @@ -8080,7 +8682,7 @@ msgstr "發生問題!{0}" msgid "There was an issue. Please check your internet connection and try again." msgstr "發生問題了。請檢查您的網路連線,然後再試一次。" -#: src/components/dialogs/GifSelect.tsx:270 +#: src/components/dialogs/GifSelect.tsx:271 #: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "應用程式中發生了意外問題。請告訴我們發生了什麼事!" @@ -8089,7 +8691,7 @@ msgstr "應用程式中發生了意外問題。請告訴我們發生了什麼事 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "目前有眾多新用戶湧入 Bluesky!我們會盡快啟用您的帳號。" -#: src/screens/Settings/FollowingFeedPreferences.tsx:62 +#: src/screens/Settings/FollowingFeedPreferences.tsx:65 msgid "These settings only apply to the Following feed." msgstr "這些設定只會影響「Following」(跟隨中) 動態源。" @@ -8146,7 +8748,7 @@ msgstr "該內容託管在 {0} 上。要啟用外部媒體嗎?" msgid "This content is not available because one of the users involved has blocked the other." msgstr "由於他們之中有一人封鎖了對方,導致無法檢視這項內容。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:114 +#: src/view/com/posts/PostFeedErrorMessage.tsx:118 msgid "This content is not viewable without a Bluesky account." msgstr "這項內容需要登入 Bluesky 帳號才能檢視。" @@ -8158,6 +8760,10 @@ msgstr "此對話的參與者已停用或刪除帳號。點此以檢視選項" msgid "This email is already associated with your account." msgstr "這個電子信箱已經綁定於您的帳號。" +#: src/screens/Settings/ActivityPrivacySettings.tsx:55 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "這個功能可以讓其他用戶在您發布新貼文或回覆時收到通知。您想允許哪些人接收通知?" + #: src/screens/Settings/components/ExportCarDialog.tsx:96 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "這項功能目前仍在測試階段。您可以閱讀<0>這篇部落格文章以瞭解有關匯出資料的更多資訊。" @@ -8170,7 +8776,7 @@ msgstr "使用應用程式專用密碼時,無法使用此功能。請改用您 msgid "This feature is not available while using an App Password. Please sign in with your main password." msgstr "使用應用程式專用密碼時,無法使用此功能。請改用您的主密碼登入。" -#: src/view/com/posts/PostFeedErrorMessage.tsx:120 +#: src/view/com/posts/PostFeedErrorMessage.tsx:124 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "目前這個動態源的使用人數較多,暫時無法使用。請稍後再試。" @@ -8209,11 +8815,11 @@ msgstr "這個標記由發布者新增。" msgid "This label was applied by you." msgstr "這個標記由您新增。" -#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Profile/Sections/Labels.tsx:218 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "此標記服務尚未公開其發布的標記類型,也可能已經不再提供服務。" -#: src/view/com/modals/LinkWarning.tsx:72 +#: src/components/dialogs/LinkWarning.tsx:79 msgid "This link is taking you to the following website:" msgstr "這個連結將帶您前往以下網站:" @@ -8231,31 +8837,30 @@ msgstr "這個列表是空的。" #: src/screens/Profile/ErrorState.tsx:40 msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." -msgstr "這項內容管理服務暫時無法使用,更多資訊請參見下方。如果問題持續發生,請聯絡我們。" +msgstr "這項內容管理服務目前無法使用,更多資訊請參見下方。如果問題持續發生,請聯絡我們。" -#: src/view/com/post-thread/PostThreadItem.tsx:956 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:649 +#: src/view/com/post-thread/PostThreadItem.tsx:964 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "這則貼文宣告的發布時間為 <0>{0},但首次出現在 Bluesky 的時間是 <1>{1}。" -#: src/components/WhoCanReply.tsx:217 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "這則貼文套用了不支援的內容限制。您的應用程式版本可能已經過舊。" -#: src/view/com/post-thread/PostThreadItem.tsx:163 +#: src/view/com/post-thread/PostThreadItem.tsx:171 msgid "This post has been deleted." msgstr "這則貼文已被刪除。" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in." -msgstr "此貼文僅限已登入用戶可以檢視。未登入者則無法查看。" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +msgid "This post is only visible to logged-in users." +msgstr "這則貼文僅限已登入用戶可以檢視。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "這則貼文將會從動態及討論串中隱藏,之後將無法取消。" -#: src/view/com/composer/Composer.tsx:424 +#: src/view/com/composer/Composer.tsx:463 msgid "This post's author has disabled quote posts." msgstr "這則貼文的發布者拒絕引用貼文。" @@ -8263,11 +8868,11 @@ msgstr "這則貼文的發布者拒絕引用貼文。" msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "此個人檔案僅限已登入用戶可以檢視。未登入者則無法查看。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "這則回覆將被折疊到您討論串底部的隱藏部分,並將為您自己和其他人靜音後續回覆的通知。" -#: src/screens/Signup/StepInfo/Policies.tsx:37 +#: src/screens/Signup/StepInfo/Policies.tsx:66 msgid "This service has not provided terms of service or a privacy policy." msgstr "這個服務尚未提供服務條款或隱私權政策。" @@ -8275,6 +8880,10 @@ msgstr "這個服務尚未提供服務條款或隱私權政策。" msgid "This should create a domain record at:" msgstr "這應該會在下列位置建立一個網域名稱記錄:" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:215 +msgid "This should only take a few minutes." +msgstr "這應該只需要幾分鐘。" + #: src/components/verification/VerificationCreatePrompt.tsx:93 msgid "This user does not have a display name, and therefore cannot be verified." msgstr "這個用戶尚未設定名稱,因此無法授予驗證。" @@ -8316,16 +8925,18 @@ msgstr "這個用戶尚未跟隨任何人。" msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "這將會把「{0}」從您的靜音字詞中刪除。您隨時可以重新新增回來。" -#: src/screens/Settings/Settings.tsx:537 +#: src/screens/Settings/Settings.tsx:656 msgid "This will remove @{0} from the quick access list." msgstr "這將從快速存取列表中移除 @{0}。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "您的貼文將從這則引用貼文中刪除,並取代為一個佔位標記。" -#: src/view/com/post-thread/PostThread.tsx:609 -#: src/view/com/post-thread/PostThread.tsx:612 +#: src/screens/PostThread/components/HeaderDropdown.tsx:23 +#: src/screens/PostThread/components/HeaderDropdown.tsx:26 +#: src/view/com/post-thread/PostThread.tsx:633 +#: src/view/com/post-thread/PostThread.tsx:636 msgid "Thread options" msgstr "討論串選項" @@ -8334,24 +8945,27 @@ msgstr "討論串選項" msgid "Thread preferences" msgstr "討論串選項" -#: src/screens/Settings/ThreadPreferences.tsx:45 +#: src/screens/Settings/ThreadPreferences.tsx:58 +#: src/screens/Settings/ThreadPreferences.tsx:179 msgid "Thread Preferences" msgstr "討論串選項" -#: src/view/com/post-thread/PostThread.tsx:639 -#: src/view/com/post-thread/PostThread.tsx:644 +#: src/screens/PostThread/components/HeaderDropdown.tsx:57 +#: src/screens/PostThread/components/HeaderDropdown.tsx:62 +#: src/view/com/post-thread/PostThread.tsx:663 +#: src/view/com/post-thread/PostThread.tsx:668 msgid "Threaded" msgstr "樹狀模式" -#: src/screens/Settings/ThreadPreferences.tsx:142 +#: src/screens/Settings/ThreadPreferences.tsx:276 msgid "Threaded mode" msgstr "樹狀顯示模式" -#: src/Navigation.tsx:341 +#: src/Navigation.tsx:368 msgid "Threads Preferences" msgstr "討論串選項" -#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" msgstr "剩餘時間:{0, plural, one {# 秒} other {# 秒}}" @@ -8376,42 +8990,56 @@ msgstr "您希望向誰提交這份檢舉?" msgid "Today" msgstr "今天" -#: src/view/com/util/forms/DropdownButton.tsx:258 +#: src/view/com/util/forms/DropdownButton.tsx:263 msgid "Toggle dropdown" msgstr "切換下拉式選單" -#: src/screens/Moderation/index.tsx:354 +#: src/screens/Moderation/index.tsx:384 msgid "Toggle to enable or disable adult content" msgstr "切換以啟用或停用成人內容" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 msgid "Toggles the sound" msgstr "切換聲音" #: src/screens/Hashtag.tsx:84 -#: src/screens/Search/SearchResults.tsx:42 +#: src/screens/Search/SearchResults.tsx:47 #: src/screens/Topic.tsx:71 msgid "Top" msgstr "熱門" -#: src/Navigation.tsx:423 +#: src/screens/PostThread/components/HeaderDropdown.tsx:73 +#: src/screens/PostThread/components/HeaderDropdown.tsx:78 +#: src/screens/Settings/ThreadPreferences.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:83 +msgid "Top replies first" +msgstr "熱門回覆優先" + +#: src/Navigation.tsx:543 msgid "Topic" msgstr "話題" -#: src/components/dms/MessageContextMenu.tsx:143 -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437 -#: src/view/com/post-thread/PostThreadItem.tsx:878 -#: src/view/com/post-thread/PostThreadItem.tsx:881 +#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:139 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:571 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:574 +#: src/view/com/post-thread/PostThreadItem.tsx:886 +#: src/view/com/post-thread/PostThreadItem.tsx:889 msgid "Translate" msgstr "翻譯" +#: src/screens/Settings/ThreadPreferences.tsx:131 +#: src/screens/Settings/ThreadPreferences.tsx:136 +msgid "Tree view" +msgstr "樹狀介面" + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 msgid "Trending" msgstr "流行趨勢" -#: src/components/interstitials/TrendingVideos.tsx:88 +#: src/components/interstitials/TrendingVideos.tsx:86 msgid "Trending Videos" msgstr "熱門影片" @@ -8428,14 +9056,10 @@ msgstr "再試一次" msgid "TV" msgstr "電視節目" -#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" msgstr "雙重驗證 (2FA)" -#: src/screens/Signup/StepHandle.tsx:126 -msgid "Type your desired username" -msgstr "輸入您想使用的用戶名稱" - #: src/screens/Messages/components/MessageInput.tsx:153 msgid "Type your message here" msgstr "在這裡輸入訊息" @@ -8453,7 +9077,7 @@ msgstr "無法連線到伺服器。請檢查您的網路連線,然後再試一 #: src/screens/Login/index.tsx:79 #: src/screens/Login/LoginForm.tsx:169 #: src/screens/Login/SetNewPasswordForm.tsx:81 -#: src/screens/Signup/index.tsx:72 +#: src/screens/Signup/index.tsx:76 #: src/view/com/modals/ChangePassword.tsx:71 #: src/view/com/modals/ChangePassword.tsx:117 msgid "Unable to contact your service. Please check your Internet connection." @@ -8463,18 +9087,34 @@ msgstr "無法連線到服務,請檢查您的網路連線。" msgid "Unable to delete" msgstr "無法刪除" +#: src/screens/Settings/Settings.tsx:507 +msgid "Unapply Pull Request" +msgstr "取消套用拉取請求 (Pull Request)" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Unapply Pull Request {currentChannel}" +msgstr "取消套用拉取請求 (PR) {currentChannel}" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 +msgid "Unavailable" +msgstr "目前無法使用" + +#: src/view/com/feeds/MissingFeed.tsx:126 +msgid "Unavailable feed information" +msgstr "無法取得動態源資訊" + #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:112 #: src/components/dms/MessagesListBlockedFooter.tsx:119 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:473 #: src/view/screens/ProfileList.tsx:723 msgid "Unblock" msgstr "解除封鎖" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 msgctxt "action" msgid "Unblock" msgstr "解除封鎖" @@ -8486,7 +9126,7 @@ msgstr "解除封鎖" msgid "Unblock account" msgstr "解除封鎖帳號" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unblock Account?" msgstr "要解除封鎖嗎?" @@ -8495,13 +9135,13 @@ msgstr "要解除封鎖嗎?" msgid "Unblock list" msgstr "解除封鎖列表" -#: src/components/PostControls/RepostButton.web.tsx:65 -#: src/components/PostControls/RepostButton.web.tsx:69 +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "取消轉發" #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun -#: src/components/PostControls/RepostButton.tsx:55 +#: src/components/PostControls/RepostButton.tsx:66 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "取消轉發 ({0, plural, one {# 則轉發} other {# 則轉發}})" @@ -8510,7 +9150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "取消跟隨" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 msgid "Unfollow {0}" msgstr "取消跟隨 {0}" @@ -8523,7 +9163,7 @@ msgstr "取消跟隨帳號" msgid "Unfollows the user" msgstr "取消跟隨用戶" -#: src/components/moderation/ReportDialog/index.tsx:369 +#: src/components/moderation/ReportDialog/index.tsx:372 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "抱歉,您訂閱的內容管理服務皆不支援此檢舉類型。" @@ -8536,12 +9176,12 @@ msgid "Unlike" msgstr "取消喜歡" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun -#: src/components/PostControls/index.tsx:236 +#: src/components/PostControls/index.tsx:243 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "取消喜歡 ({0, plural, one {# 個喜歡} other {# 個喜歡}})" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:95 msgctxt "video" msgid "Unmute" msgstr "取消靜音" @@ -8555,8 +9195,8 @@ msgstr "取消靜音" msgid "Unmute {tag}" msgstr "取消靜音 {tag}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:626 #: src/view/com/profile/ProfileMenu.tsx:362 #: src/view/com/profile/ProfileMenu.tsx:368 msgid "Unmute account" @@ -8570,12 +9210,12 @@ msgstr "取消靜音對話" msgid "Unmute list" msgstr "取消靜音列表" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 msgid "Unmute thread" msgstr "取消靜音討論串" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:318 msgid "Unmute video" msgstr "取消靜音影片" @@ -8595,10 +9235,10 @@ msgstr "取消釘選動態源" #: src/screens/Profile/components/ProfileFeedHeader.tsx:310 #: src/screens/Profile/components/ProfileFeedHeader.tsx:312 msgid "Unpin from home" -msgstr "自首頁取消釘選" +msgstr "從首頁取消釘選" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:415 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422 msgid "Unpin from profile" msgstr "從您的個人檔案中取消釘選" @@ -8608,14 +9248,14 @@ msgstr "取消釘選內容管理列表" #: src/screens/Profile/components/ProfileFeedHeader.tsx:163 msgid "Unpinned {0} from Home" -msgstr "自首頁取消釘選 {0}" +msgstr "從首頁取消釘選 {0}" #: src/view/screens/ProfileList.tsx:362 msgid "Unpinned from your feeds" msgstr "成功從您的動態源中取消釘選" -#: src/screens/Settings/Settings.tsx:416 -#: src/screens/Settings/Settings.tsx:418 +#: src/screens/Settings/Settings.tsx:474 +#: src/screens/Settings/Settings.tsx:476 msgid "Unsnooze email reminder" msgstr "取消暫停電子郵件提醒" @@ -8636,7 +9276,7 @@ msgstr "取消訂閱這個標記服務" msgid "Unsubscribed from list" msgstr "成功取消套用列表" -#: src/view/com/composer/Composer.tsx:769 +#: src/view/com/composer/Composer.tsx:814 msgid "Unsupported video type" msgstr "不支援的影片類型" @@ -8662,8 +9302,8 @@ msgstr "要把 <0> {displayName} 新增到或刪除自哪些列表?" #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 -#: src/screens/Settings/AccountSettings.tsx:104 -#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/Settings/AccountSettings.tsx:113 msgid "Update email" msgstr "更新電子信箱" @@ -8676,17 +9316,17 @@ msgstr "變更至 {domain}" msgid "Update your email" msgstr "更新您的電子信箱" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "無法更新引用分離狀態" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "無法更新回覆可見度" -#: src/screens/Login/SetNewPasswordForm.tsx:190 +#: src/screens/Login/SetNewPasswordForm.tsx:194 msgid "Updating..." msgstr "更新中……" @@ -8698,20 +9338,20 @@ msgstr "或是上傳圖片" msgid "Upload a text file to:" msgstr "上傳文字檔案至:" -#: src/view/com/util/UserAvatar.tsx:456 -#: src/view/com/util/UserAvatar.tsx:459 +#: src/view/com/util/UserAvatar.tsx:469 +#: src/view/com/util/UserAvatar.tsx:472 #: src/view/com/util/UserBanner.tsx:157 #: src/view/com/util/UserBanner.tsx:160 msgid "Upload from Camera" msgstr "從相機上傳" -#: src/view/com/util/UserAvatar.tsx:473 +#: src/view/com/util/UserAvatar.tsx:486 #: src/view/com/util/UserBanner.tsx:174 msgid "Upload from Files" msgstr "從檔案上傳" -#: src/view/com/util/UserAvatar.tsx:467 -#: src/view/com/util/UserAvatar.tsx:471 +#: src/view/com/util/UserAvatar.tsx:480 +#: src/view/com/util/UserAvatar.tsx:484 #: src/view/com/util/UserBanner.tsx:168 #: src/view/com/util/UserBanner.tsx:172 msgid "Upload from Library" @@ -8721,12 +9361,12 @@ msgstr "從相簿上傳" msgid "Uploading images..." msgstr "正在上傳圖片……" -#: src/lib/api/index.ts:356 -#: src/lib/api/index.ts:380 +#: src/lib/api/index.ts:368 +#: src/lib/api/index.ts:392 msgid "Uploading link thumbnail..." msgstr "正在上傳連結縮圖……" -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1737 msgid "Uploading video..." msgstr "正在上傳影片……" @@ -8761,6 +9401,10 @@ msgstr "新增建議的動態源" msgid "Use this to sign in to the other app along with your handle." msgstr "使用這個和您的帳號代碼一起登入其他應用程式。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:279 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "使用您帳號的電子郵件地址,或另外一個您擁有的電子郵件地址,以防 KWS 或 Bluesky 需要與您聯絡。" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "被這些用戶使用:" @@ -8813,28 +9457,40 @@ msgctxt "toast" msgid "User list updated" msgstr "成功更新用戶列表" +#: src/screens/Signup/StepHandle/index.tsx:235 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:223 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + #: src/screens/Login/LoginForm.tsx:201 msgid "Username or email address" msgstr "用戶名稱或電子郵件地址" -#: src/components/WhoCanReply.tsx:280 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "被 <0>@{0} 跟隨的用戶" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "正在跟隨 <0>@{0} 的用戶" -#: src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:111 msgid "Users I follow" msgstr "我跟隨的用戶" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:460 msgid "Users in \"{0}\"" msgstr "「{0}」中的用戶" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:437 msgid "Users you follow" msgstr "您跟隨的用戶" @@ -8846,11 +9502,11 @@ msgstr "值:" msgid "Verification failed, please try again." msgstr "無法授予驗證,請再試一次。" -#: src/screens/Moderation/index.tsx:288 +#: src/screens/Moderation/index.tsx:297 msgid "Verification settings" msgstr "驗證設定" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:205 #: src/screens/Moderation/VerificationSettings.tsx:32 msgid "Verification Settings" msgstr "驗證設定" @@ -8870,8 +9526,15 @@ msgstr "驗證者:" msgid "Verify account" msgstr "驗證帳號" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 +msgid "Verify again" +msgstr "重新驗證" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 +msgctxt "action" msgid "Verify code" msgstr "驗證代碼" @@ -8880,21 +9543,20 @@ msgstr "驗證代碼" msgid "Verify DNS Record" msgstr "驗證 DNS 紀錄" -#: src/components/dialogs/ChangeEmailDialog.tsx:234 -#: src/components/dialogs/ChangeEmailDialog.tsx:240 -msgid "Verify email" -msgstr "驗證電子郵件地址" - +#. Dialog title when a user is verifying their email address by entering a code they have been sent #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 msgid "Verify email code" msgstr "驗證郵件代碼" -#: src/components/dialogs/ChangeEmailDialog.tsx:122 -#: src/components/dialogs/VerifyEmailDialog.tsx:163 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "驗證電子信箱對話框" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:110 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "Verify now" +msgstr "開始驗證" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 #: src/screens/Settings/components/ChangeHandleDialog.tsx:551 msgid "Verify Text File" @@ -8904,23 +9566,31 @@ msgstr "驗證文字檔案" msgid "Verify this account?" msgstr "要對這個帳號授予驗證嗎?" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 +msgid "Verify your age" +msgstr "驗證您的年齡" + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 -#: src/screens/Settings/AccountSettings.tsx:78 -#: src/screens/Settings/AccountSettings.tsx:98 +#: src/screens/Settings/AccountSettings.tsx:79 +#: src/screens/Settings/AccountSettings.tsx:99 msgid "Verify your email" msgstr "驗證您的電子信箱" -#: src/components/dialogs/VerifyEmailDialog.tsx:114 -msgid "Verify Your Email" -msgstr "驗證您的電子信箱" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 +msgid "Verifying" +msgstr "正在驗證" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 +msgid "Verifying your age assurance status" +msgstr "正在確認您的年齡驗證狀態" #: src/screens/Settings/AboutSettings.tsx:126 #: src/screens/Settings/AboutSettings.tsx:155 -msgid "Version {appVersion}" -msgstr "版本 {appVersion}" +msgid "Version {0}" +msgstr "版本 {0}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 msgid "Video" msgstr "影片" @@ -8928,7 +9598,7 @@ msgstr "影片" msgid "Video failed to process" msgstr "影片處理失敗" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:599 msgid "Video Feed" msgstr "影片動態源" @@ -8942,15 +9612,15 @@ msgstr "影片來自 {0}:{text}" msgid "Video Games" msgstr "電子遊戲" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is paused" msgstr "影片已暫停" -#: src/screens/VideoFeed/index.tsx:1069 +#: src/screens/VideoFeed/index.tsx:1072 msgid "Video is playing" msgstr "影片正在播放" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 msgid "Video not found." msgstr "找不到影片。" @@ -8958,11 +9628,11 @@ msgstr "找不到影片。" msgid "Video settings" msgstr "影片設定" -#: src/view/com/composer/Composer.tsx:1682 +#: src/view/com/composer/Composer.tsx:1747 msgid "Video uploaded" msgstr "影片上傳成功" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 msgid "Video: {0}" msgstr "影片:{0}" @@ -8979,11 +9649,11 @@ msgstr "影片長度不得超過 3 分鐘" msgid "View {0}'s avatar" msgstr "檢視 {0} 的大頭貼照" -#: src/components/ProfileCard.tsx:116 +#: src/components/ProfileCard.tsx:124 #: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:790 -#: src/view/com/notifications/NotificationFeedItem.tsx:545 +#: src/view/com/notifications/NotificationFeedItem.tsx:599 msgid "View {0}'s profile" msgstr "檢視 {0} 的個人檔案" @@ -8991,7 +9661,7 @@ msgstr "檢視 {0} 的個人檔案" msgid "View {displayName}'s profile" msgstr "檢視 {displayName} 的個人檔案" -#: src/components/ProfileHoverCard/index.web.tsx:478 +#: src/components/ProfileHoverCard/index.web.tsx:480 msgid "View blocked user's profile" msgstr "檢視已封鎖用戶的個人檔案" @@ -9009,7 +9679,6 @@ msgstr "檢視偵錯項目" msgid "View details" msgstr "檢視詳細資訊" -#: src/components/moderation/ReportDialog/index.tsx:271 #: src/components/ReportDialog/SelectReportOptionView.tsx:132 msgid "View details for reporting a copyright violation" msgstr "檢視檢舉侵害著作權的具體步驟" @@ -9022,23 +9691,23 @@ msgstr "檢視完整討論串" msgid "View information about these labels" msgstr "檢視有關這些標記的詳細資訊" -#: src/components/interstitials/TrendingVideos.tsx:191 -#: src/components/interstitials/TrendingVideos.tsx:210 +#: src/components/interstitials/TrendingVideos.tsx:189 +#: src/components/interstitials/TrendingVideos.tsx:211 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:194 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:213 msgid "View more" msgstr "檢視更多" -#: src/components/ProfileHoverCard/index.web.tsx:464 -#: src/components/ProfileHoverCard/index.web.tsx:484 -#: src/components/ProfileHoverCard/index.web.tsx:511 -#: src/view/com/posts/PostFeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/components/ProfileHoverCard/index.web.tsx:486 +#: src/components/ProfileHoverCard/index.web.tsx:513 +#: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:126 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "檢視個人檔案" -#: src/view/com/profile/ProfileSubpageHeader.tsx:119 +#: src/view/com/profile/ProfileSubpageHeader.tsx:123 msgid "View the avatar" msgstr "檢視大頭貼照" @@ -9054,28 +9723,28 @@ msgstr "檢視此用戶的驗證" msgid "View users who like this feed" msgstr "檢視喜歡這個動態源的用戶" -#: src/components/VideoPostCard.tsx:398 +#: src/components/VideoPostCard.tsx:399 msgid "View video" msgstr "觀看影片" -#: src/screens/Moderation/index.tsx:268 +#: src/screens/Moderation/index.tsx:277 msgid "View your blocked accounts" msgstr "檢視您封鎖的帳號" -#: src/screens/Moderation/index.tsx:208 +#: src/screens/Moderation/index.tsx:217 msgid "View your default post interaction settings" msgstr "檢視您的預設貼文互動設定" #: src/view/com/home/HomeHeaderLayout.web.tsx:56 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:71 msgid "View your feeds and explore more" msgstr "瀏覽您的動態源並探索更多內容" -#: src/screens/Moderation/index.tsx:238 +#: src/screens/Moderation/index.tsx:247 msgid "View your moderation lists" msgstr "檢視您的內容管理列表" -#: src/screens/Moderation/index.tsx:253 +#: src/screens/Moderation/index.tsx:262 msgid "View your muted accounts" msgstr "檢視您靜音的帳號" @@ -9083,8 +9752,8 @@ msgstr "檢視您靜音的帳號" msgid "View your verifications" msgstr "檢視您的驗證" -#: src/view/com/util/images/AutoSizedImage.tsx:199 -#: src/view/com/util/images/AutoSizedImage.tsx:221 +#: src/view/com/util/images/AutoSizedImage.tsx:205 +#: src/view/com/util/images/AutoSizedImage.tsx:227 msgid "Views full image" msgstr "檢視完整圖片" @@ -9092,16 +9761,20 @@ msgstr "檢視完整圖片" msgid "Views video in immersive mode" msgstr "進入沉浸模式觀看影片" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 -msgid "Visit Site" +#: src/components/dialogs/LinkWarning.tsx:96 +#: src/components/dialogs/LinkWarning.tsx:106 +msgid "Visit site" msgstr "造訪網站" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +#: src/view/screens/Notifications.tsx:303 +msgid "Visit your notification settings" +msgstr "前往您的通知設定" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:81 msgid "Volume" msgstr "音量" -#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/LabelPreference.tsx:142 #: src/lib/moderation/useLabelBehaviorDescription.ts:17 #: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" @@ -9120,6 +9793,14 @@ msgstr "警告內容,並從動態中排除內容" msgid "Watch now" msgstr "現在觀看" +#: src/view/com/feeds/MissingFeed.tsx:140 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." +msgstr "無法連線到提供此動態源的服務,可能因遇到問題而暫時離線,或已經不再提供服務。" + +#: src/view/com/feeds/MissingFeed.tsx:146 +msgid "We could not find this list. It was probably deleted." +msgstr "找不到該列表。可能已被刪除。" + #: src/screens/Hashtag.tsx:205 msgid "We couldn't find any results for that hashtag." msgstr "我們找不到任何與該標籤相關的結果。" @@ -9128,7 +9809,7 @@ msgstr "我們找不到任何與該標籤相關的結果。" msgid "We couldn't find any results for that topic." msgstr "我們找不到任何與該話題相關的結果。" -#: src/screens/Messages/Conversation.tsx:130 +#: src/screens/Messages/Conversation.tsx:145 msgid "We couldn't load this conversation" msgstr "我們無法載入這個對話" @@ -9136,6 +9817,10 @@ msgstr "我們無法載入這個對話" msgid "We estimate {estimatedTime} until your account is ready." msgstr "我們預計還需要 {estimatedTime} 才能把您的帳號準備好。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 +msgid "We have partnered with <0>KWS to verify that you’re an adult. When you click \"Begin\" below, KWS will check if you have previously verified your age using this email address for other games/services powered by KWS technology. If not, KWS will email you instructions for verifying your age. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "我們已與 <0>KWS 合作來確認您已成年。當您按下「開始」後,KWS 會確認您是否曾經在其他使用 KWS 技術的遊戲或服務使用您的電子郵件地址驗證您的年齡。如果沒有,KWS 會向您的電子信箱傳送一封包含年齡驗證程序的郵件。當您完成驗證後,您會被重新導向回來以繼續使用 Bluesky。" + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "我們已傳送另一封驗證電子郵件至 <0>{0}。" @@ -9148,15 +9833,15 @@ msgstr "我們希望您在這裡度過愉快的時光。請記住,Bluesky 是 msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "您已經看完了所有您跟隨中帳號的貼文。接下來這些是來自 <0/> 的最新貼文。" -#: src/screens/Settings/SettingsInterests.tsx:155 +#: src/screens/Settings/InterestsSettings.tsx:154 msgid "We recommend selecting at least two interests." msgstr "我們建議至少選擇兩個感興趣的主題。" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." -msgstr "我們已向 <0>{0} 傳送了一封含有連結的郵件。請打開郵件中的連結以完成電子信箱的驗證程序。" +msgstr "我們已向 <0>{0} 傳送了一封包含連結的郵件。請打開郵件中的連結以完成電子信箱的驗證程序。" -#: src/view/com/composer/state/video.ts:417 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "我們無法確定您是否有上傳影片的權限。請稍後再試。" @@ -9164,10 +9849,14 @@ msgstr "我們無法確定您是否有上傳影片的權限。請稍後再試。 msgid "We were unable to load your birth date preferences. Please try again." msgstr "我們無法載入您的出生日期偏好設定,請再試一次。" -#: src/screens/Moderation/index.tsx:428 +#: src/screens/Moderation/index.tsx:464 msgid "We were unable to load your configured labelers at this time." msgstr "我們目前無法載入您訂閱的標記服務。" +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "我們因連線問題無法接收驗證狀態,可能會需要一段時間。您的帳號會在確認後自動恢復。" + #: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "我們無法連線到網路,請重試以繼續設定您的帳號。如果問題無法解決,也可以選擇跳過此段流程。" @@ -9176,14 +9865,30 @@ msgstr "我們無法連線到網路,請重試以繼續設定您的帳號。如 msgid "We will let you know when your account is ready." msgstr "我們會在您的帳號準備好時通知您。" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." -msgstr "我們將向 <0>{0} 傳送一封含有連結的郵件。請打開郵件中的連結以完成電子信箱的驗證程序。" +msgstr "我們將向 <0>{0} 傳送一封含有連結的郵件。請查看郵件並前往其中的連結以完成電子信箱的驗證程序。" #: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "我們將使用這些資訊來協助訂製您的體驗。" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "我們也在改進<0>社群準則,希望能得到您的意見!新的準則將於 2025 年 10 月 15 日生效。" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "我們也在改進社群準則,希望能得到您的意見!新的準則將於 2025 年 10 月 15 日生效。" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:227 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "我們正在與伺服器確認您的年齡驗證狀態。這應該只需要幾分鐘。" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "我們在請求開始您帳號的年齡驗證程序時遇到了問題。請<0>聯絡支援以取得協助。" + #: src/components/dialogs/SearchablePeopleList.tsx:107 #: src/components/ProgressGuide/FollowDialog.tsx:172 msgid "We're having network issues, try again" @@ -9193,7 +9898,7 @@ msgstr "我們遇到了網路問題,請再試一次" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "為您介紹 Bluesky 的全新驗證機制 —— 驗證標記。" -#: src/screens/Signup/index.tsx:109 +#: src/screens/Signup/index.tsx:123 msgid "We're so excited to have you join us!" msgstr "我們非常高興您加入我們!" @@ -9205,15 +9910,15 @@ msgstr "很抱歉,我們無法解析此列表。如果問題持續發生,請 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "很抱歉,我們目前無法載入您的靜音字詞。請稍後再試。" -#: src/screens/Search/SearchResults.tsx:222 +#: src/screens/Search/SearchResults.tsx:285 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "很抱歉,無法完成您的搜尋請求。請稍後再試。" -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:460 msgid "We're sorry! The post you are replying to has been deleted." msgstr "很抱歉!您要回覆的貼文已被刪除。" -#: src/components/Lists.tsx:194 +#: src/components/Lists.tsx:195 #: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "很抱歉!我們找不到您正在尋找的頁面。" @@ -9222,6 +9927,26 @@ msgstr "很抱歉!我們找不到您正在尋找的頁面。" msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "抱歉!目前最多只能訂閱 20 位標記服務,您已經達到上限。" +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "我們正在更新<0>服務條款、<1>隱私權政策,以及<2>著作權政策,自 2025 年 9 月 15 日起生效。" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 +msgid "We're updating our policies" +msgstr "我們正在更新政策" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "我們正在更新服務條款、隱私權政策,以及著作權政策,自 2025 年 9 月 15 日起生效。" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "我們正在更新服務條款、隱私權政策,以及著作權政策,自 2025 年 9 月 15 日起生效。我們也在改進社群準則,希望能得到您的意見!新的準則將於 2025 年 10 月 15 日生效。您可以閱讀我們的部落格文章,瞭解有關這些變化的更多資訊,以及如何與我們分享您的想法。" + +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "我們已確認您的年齡驗證狀態。您現在可以關閉這個對話框。" + #: src/screens/Deactivated.tsx:125 msgid "Welcome back!" msgstr "歡迎回來!" @@ -9240,7 +9965,7 @@ msgstr "您想怎麼命名這個新手包?" #: src/view/com/auth/SplashScreen.tsx:38 #: src/view/com/auth/SplashScreen.web.tsx:99 -#: src/view/com/composer/Composer.tsx:732 +#: src/view/com/composer/Composer.tsx:777 msgid "What's up?" msgstr "發生了什麼新鮮事?" @@ -9256,11 +9981,11 @@ msgstr "這則貼文使用了哪些語言?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "您想在演算法動態源中看到哪些語言?" -#: src/components/WhoCanReply.tsx:183 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "哪些人可以參與這則貼文的互動?" -#: src/components/WhoCanReply.tsx:91 +#: src/components/WhoCanReply.tsx:97 msgid "Who can reply" msgstr "哪些人可以回覆" @@ -9269,12 +9994,12 @@ msgid "Who can verify?" msgstr "哪些人可以授予驗證?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/Inbox.tsx:176 +#: src/screens/Messages/ChatList.tsx:258 +#: src/screens/Messages/Inbox.tsx:197 msgid "Whoops!" msgstr "咦?" -#: src/components/interstitials/TrendingVideos.tsx:127 +#: src/components/interstitials/TrendingVideos.tsx:125 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 msgid "Whoops! Trending videos failed to load." msgstr "唉呀!無法載入熱門影片。" @@ -9322,12 +10047,12 @@ msgstr "為什麼這個用戶需要被審查?" msgid "Write a message" msgstr "撰寫訊息" -#: src/view/com/composer/Composer.tsx:823 +#: src/view/com/composer/Composer.tsx:872 msgid "Write post" msgstr "撰寫貼文" -#: src/view/com/composer/Composer.tsx:730 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69 +#: src/view/com/composer/Composer.tsx:775 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:90 msgid "Write your reply" msgstr "撰寫您的回覆" @@ -9358,11 +10083,11 @@ msgstr "是,停用帳號" msgid "Yes, delete this starter pack" msgstr "是,刪除這個新手包" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:733 msgid "Yes, detach" msgstr "是,分離貼文" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 msgid "Yes, hide" msgstr "是,隱藏回覆" @@ -9378,6 +10103,10 @@ msgstr "昨天" msgid "You" msgstr "您" +#: src/screens/Signup/StepInfo/Policies.tsx:23 +msgid "You also agree to <0>Bluesky’s Community Guidelines. An <1>updated version of our Community Guidelines will take effect on October 15th." +msgstr "您也同意<0>社群準則。<1>新的社群準則將於 10 月 15 日生效。" + #: src/components/verification/VerifierDialog.tsx:59 msgid "You are a trusted verifier" msgstr "您是受信任的驗證者" @@ -9386,6 +10115,10 @@ msgstr "您是受信任的驗證者" msgid "You are creating an account on" msgstr "您的帳號將建立於" +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:80 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "您目前無法存取 Bluesky 的年齡驗證程序。如果您認為這是系統誤判,請<0>聯絡我們的支援團隊。" + #: src/screens/SignupQueued.tsx:157 msgid "You are in line." msgstr "您已在等待名單中。" @@ -9403,7 +10136,7 @@ msgstr "您已停止直播" msgid "You are not allowed to go live" msgstr "您沒有開始直播的權限" -#: src/view/com/composer/state/video.ts:410 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "您沒有上傳影片的權限。" @@ -9420,7 +10153,6 @@ msgid "You are verified" msgstr "您已得到驗證" #: src/screens/Profile/Header/EditProfileDialog.tsx:355 -#: src/view/com/modals/EditProfile.tsx:203 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." msgstr "您已得到驗證。一旦您修改名稱,將會失去驗證狀態。<0>瞭解詳情。" @@ -9441,10 +10173,18 @@ msgstr "您也可以探索並跟隨一些自訂動態源。" msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "您也可以暫時停用帳號,日後隨時都可以重新啟用。" -#: src/screens/Messages/Settings.tsx:111 +#: src/lib/hooks/useNotificationHandler.ts:101 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "您可以在應用程式內選擇通知是否需要播放提示聲" + +#: src/screens/Messages/Settings.tsx:127 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "無論選擇哪種設定,都不會影響已發起的對話。" +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "您現在可以選擇在其他人發布貼文時收到通知了。如果您不想錯過某人的最新動態,只需前往他們的個人檔案,點一下跟隨按鈕旁的鈴鐺即可開始接收通知。" + #: src/screens/Login/index.tsx:182 #: src/screens/Login/PasswordUpdatedForm.tsx:26 msgid "You can now sign in with your new password." @@ -9454,12 +10194,12 @@ msgstr "您可以使用新密碼登入了。" msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." msgstr "您可以登入以重新啟用帳號。其他用戶將可以重新看到您的個人檔案和貼文。" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:85 msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings." msgstr "您可以在 <0>設定 → 內容管理 → 互動設定 中調整預設互動設定。" #: src/components/interstitials/Trending.tsx:130 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/TrendingVideos.tsx:137 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:109 msgid "You can update this later from your settings." msgstr "您可以稍後在設定中變更。" @@ -9472,7 +10212,7 @@ msgstr "您還沒有任何跟隨者。" msgid "You don't follow any users who follow @{name}." msgstr "您沒有跟隨任何也跟隨 @{name} 的用戶。" -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:241 msgid "You don't have any chat requests at the moment." msgstr "您目前沒有任何對話邀請。" @@ -9480,15 +10220,15 @@ msgstr "您目前沒有任何對話邀請。" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "您目前還沒有任何邀請碼!當您持續使用 Bluesky 一段時間後,我們將提供一些新的邀請碼給您。" -#: src/view/screens/SavedFeeds.tsx:137 +#: src/view/screens/SavedFeeds.tsx:145 msgid "You don't have any pinned feeds." msgstr "您目前還沒有任何釘選的動態源。" -#: src/view/screens/SavedFeeds.tsx:177 +#: src/view/screens/SavedFeeds.tsx:185 msgid "You don't have any saved feeds." msgstr "您目前還沒有任何已儲存的動態源。" -#: src/view/com/post-thread/PostThread.tsx:271 +#: src/view/com/post-thread/PostThread.tsx:273 msgid "You have blocked the author or you have been blocked by the author." msgstr "您封鎖了該發布者,或您已被對方封鎖。" @@ -9502,6 +10242,10 @@ msgstr "您已封鎖該用戶" msgid "You have blocked this user. You cannot view their content." msgstr "您封鎖了此用戶,因此無法檢視他們發布的內容。" +#: src/view/screens/Notifications.tsx:298 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "您已完全停用回覆、引用以及提及的通知,因此這個頁面將不再更新。要調整此功能,請前往您的<0>通知設定。" + #: src/screens/Login/SetNewPasswordForm.tsx:49 #: src/screens/Login/SetNewPasswordForm.tsx:95 #: src/view/com/modals/ChangePassword.tsx:87 @@ -9526,7 +10270,7 @@ msgstr "您已隱藏這個帳號。" msgid "You have muted this user" msgstr "您已靜音這個用戶" -#: src/screens/Messages/ChatList.tsx:275 +#: src/screens/Messages/ChatList.tsx:301 msgid "You have no conversations yet. Start one!" msgstr "您還沒有加入任何對話。試著與其他人開始聊天吧!" @@ -9547,7 +10291,7 @@ msgstr "您還沒有封鎖任何帳號。要封鎖帳號,請前往其個人檔 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "您還沒有靜音任何帳號。要靜音帳號,請前往其個人檔案並在帳號上的選單中選擇「靜音帳號」。" -#: src/components/Lists.tsx:57 +#: src/components/Lists.tsx:58 msgid "You have reached the end" msgstr "已經到底啦!" @@ -9572,6 +10316,10 @@ msgstr "您還沒有隱藏任何文字或標籤" msgid "You hid this reply." msgstr "您隱藏了這則回覆。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:241 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "您已在 {0}前請求開始此程序。電子郵件應該會在 5 分鐘內傳送至您的信箱。請考慮稍後幾分鐘再試一次。" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "如果您覺得任何標記有誤,且並非由您自行新增,可以隨時提出申訴。" @@ -9592,7 +10340,7 @@ msgstr "您最多只能新增 3 個動態源" msgid "You may only select up to 4 images" msgstr "您最多只能選擇 4 張圖片" -#: src/screens/Signup/StepInfo/Policies.tsx:106 +#: src/screens/Signup/StepInfo/Policies.tsx:136 msgid "You must be 13 years of age or older to create an account." msgstr "您必須年滿 13 歲才能建立帳號。" @@ -9600,6 +10348,14 @@ msgstr "您必須年滿 13 歲才能建立帳號。" msgid "You must be following at least seven other people to generate a starter pack." msgstr "您必須跟隨至少 7 個人才能產生新手包。" +#: src/screens/Moderation/index.tsx:355 +msgid "You must complete age assurance in order to access the settings below." +msgstr "您必須完成年齡驗證以存取下列設定。" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:64 +msgid "You must complete age assurance in order to access this screen." +msgstr "您必須完成年齡驗證以存取這個介面。" + #: src/components/StarterPack/QrCodeDialog.tsx:61 msgid "You must grant access to your photo library to save a QR code" msgstr "您必須授予相簿權限才能儲存 QR Code" @@ -9608,6 +10364,11 @@ msgstr "您必須授予相簿權限才能儲存 QR Code" msgid "You must select at least one labeler for a report" msgstr "您必須至少選擇一個標記服務來提交檢舉" +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "You must sign in to view this post." +msgstr "您必須先登入才能檢視這則貼文。" + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "您需要先驗證您的電子郵件地址,才能啟用電子郵件雙重驗證。" @@ -9616,7 +10377,7 @@ msgstr "您需要先驗證您的電子郵件地址,才能啟用電子郵件雙 msgid "You previously deactivated @{0}." msgstr "您之前停用了 @{0}。" -#: src/screens/Settings/Settings.tsx:374 +#: src/screens/Settings/Settings.tsx:404 msgid "You probably want to restart the app now." msgstr "您或許需要重新啟動應用程式。" @@ -9628,16 +10389,20 @@ msgstr "您做出了 {0} 反應" msgid "You reacted {0} to {1}" msgstr "您對 {1} 做出了 {0} 反應" -#: src/screens/Settings/Settings.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/screens/Settings/Settings.tsx:286 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "您即將登出所有帳號。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 +msgid "You will no longer receive notifications for {0}" +msgstr "您將不會再收到 {0} 的動態通知" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212 msgid "You will no longer receive notifications for this thread" msgstr "您將不會再收到這條討論串的通知" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:208 msgid "You will now receive notifications for this thread" msgstr "您將繼續收到這條討論串的通知" @@ -9657,11 +10422,11 @@ msgstr "您:{defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "您:{short}" -#: src/screens/Signup/index.tsx:125 +#: src/screens/Signup/index.tsx:139 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "當您完成建立帳號後,您將會自動跟隨建議的用戶和動態源!" -#: src/screens/Signup/index.tsx:130 +#: src/screens/Signup/index.tsx:144 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "當您完成建立帳號後,您將會自動跟隨建議的用戶!" @@ -9673,9 +10438,9 @@ msgstr "您將跟隨這些人物和其他 {0} 人" msgid "You'll follow these people right away" msgstr "您將立即跟隨這些人物" -#: src/components/dialogs/VerifyEmailDialog.tsx:216 -msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "您將在 <0>{0} 收到一封電子郵件,以驗證您的身分。" +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 +msgid "You'll start receiving notifications for {0}!" +msgstr "您將開始收到 {0} 的動態通知!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:274 msgid "You'll stay updated with these feeds" @@ -9703,6 +10468,10 @@ msgstr "這則貼文內容中包含您的靜音字詞或標籤。" msgid "You've found some people to follow" msgstr "您發現了一些值得跟隨的人" +#: src/components/FocusScope/index.tsx:114 +msgid "You've reached the end of the active content." +msgstr "您已到達內容的尾端。" + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "您已經瀏覽完所有的貼文了!不妨試著再跟隨一些帳號吧。" @@ -9711,19 +10480,23 @@ msgstr "您已經瀏覽完所有的貼文了!不妨試著再跟隨一些帳號 msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "您已達到請求數上限,請稍後再試。" -#: src/view/com/composer/state/video.ts:421 +#: src/components/FocusScope/index.tsx:90 +msgid "You've reached the start of the active content." +msgstr "您已到達內容的開頭。" + +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "您已達到每日影片上傳限制 (位元組過多)" -#: src/view/com/composer/state/video.ts:425 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "您已達到每日影片上傳限制 (影片數過多)" -#: src/screens/VideoFeed/index.tsx:1120 +#: src/screens/VideoFeed/index.tsx:1123 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "您已經看完了所有影片。也許是時候休息一下?" -#: src/screens/Signup/index.tsx:158 +#: src/screens/Signup/index.tsx:173 msgid "Your account" msgstr "您的帳號" @@ -9735,7 +10508,7 @@ msgstr "您的帳號已刪除" msgid "Your account has been suspended" msgstr "您的帳號已被停權" -#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "您的帳號註冊時間太短,以致於無法上傳影片。請稍後再試。" @@ -9751,11 +10524,11 @@ msgstr "您的帳號被判定違反了 <0>Bluesky Social 服務條款。您 msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." msgstr "已提交您的申訴。如果上訴成功,我們會透過電子郵件通知您。" -#: src/screens/Signup/StepInfo/index.tsx:257 +#: src/screens/Signup/StepInfo/index.tsx:261 msgid "Your birth date" msgstr "您的出生日期" -#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 msgid "Your browser does not support the video format. Please try a different browser." msgstr "您的瀏覽器不支援該影片格式。請嘗試使用其他瀏覽器。" @@ -9771,13 +10544,15 @@ msgstr "您的選項將會套用於日後開啟的連結。隨時都可以在設 msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." msgstr "您現在使用的帳號代碼 <0>{0} 將自動為您保留。您可以在日後隨時切換回來。" -#: src/components/dialogs/ChangeEmailDialog.tsx:65 -msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email." -msgstr "已更新您的電子郵件地址,但尚未完成驗證。接下來,請驗證您的新電子郵件地址。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:253 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:258 +msgid "Your email" +msgstr "您的電子信箱" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:270 -#: src/screens/Signup/StepInfo/index.tsx:98 +#: src/screens/Signup/StepInfo/index.tsx:101 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "您的電子郵件地址似乎無效。" @@ -9786,15 +10561,11 @@ msgstr "您的電子郵件地址似乎無效。" msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." msgstr "您的電子信箱尚未驗證。請驗證您的電子信箱以便享有使用所有 Bluesky 功能的權益。" -#: src/components/dialogs/VerifyEmailDialog.tsx:110 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "您的電子郵件地址尚未驗證。這是一個重要的安全措施,我們建議您完成驗證。" - #: src/state/shell/progress-guide.tsx:213 msgid "Your first like!" msgstr "您的第一個喜歡!" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:447 msgid "Your followers" msgstr "您的跟隨者" @@ -9806,19 +10577,15 @@ msgstr "您的「Following」動態源看起來空蕩蕩的。快去跟隨更多 msgid "Your full handle will be <0>@{0}" msgstr "您的完整帳號代碼將修改為 <0>@{0}" -#: src/screens/Signup/StepHandle.tsx:137 -msgid "Your full username will be <0>@{0}" -msgstr "您的完整用戶名稱將設定為 <0>@{0}" - -#: src/Navigation.tsx:395 +#: src/Navigation.tsx:515 #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 #: src/screens/Settings/ContentAndMediaSettings.tsx:92 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 -#: src/screens/Settings/SettingsInterests.tsx:39 +#: src/screens/Settings/InterestsSettings.tsx:42 msgid "Your interests" msgstr "您感興趣的主題" -#: src/screens/Settings/SettingsInterests.tsx:124 +#: src/screens/Settings/InterestsSettings.tsx:123 msgctxt "toast" msgid "Your interests have been updated!" msgstr "成功更新興趣主題!" @@ -9835,15 +10602,15 @@ msgstr "您的靜音字詞" msgid "Your password has been changed successfully!" msgstr "成功變更您的密碼!" -#: src/screens/Signup/StepInfo/index.tsx:127 +#: src/screens/Signup/StepInfo/index.tsx:130 msgid "Your password must be at least 8 characters long." msgstr "您輸入的密碼必須至少包含 8 個字元。" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:522 msgid "Your post has been published" msgstr "已發布您的貼文" -#: src/view/com/composer/Composer.tsx:478 +#: src/view/com/composer/Composer.tsx:519 msgid "Your posts have been published" msgstr "成功發布您的貼文" @@ -9851,15 +10618,19 @@ msgstr "成功發布您的貼文" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "您的貼文、喜歡和封鎖是公開的,而靜音則僅對您自己可見。" +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 +msgid "Your preferred language" +msgstr "您的偏好語言" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "其他 Bluesky 用戶將無法再看到您的個人檔案、貼文、動態源和列表。您隨時都可以登入以重新啟用您的帳號。" -#: src/view/com/composer/Composer.tsx:480 +#: src/view/com/composer/Composer.tsx:521 msgid "Your reply has been published" msgstr "成功發布您的回覆" -#: src/components/moderation/ReportDialog/index.tsx:391 +#: src/components/moderation/ReportDialog/index.tsx:394 msgid "Your report will be sent to <0>{0}." msgstr "您的檢舉將提交至 <0>{0}。" @@ -9867,7 +10638,7 @@ msgstr "您的檢舉將提交至 <0>{0}。" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "您的檢舉將傳送至 Bluesky 內容管理服務" -#: src/screens/Settings/SettingsInterests.tsx:53 +#: src/screens/Settings/InterestsSettings.tsx:56 msgid "Your selected interests help us serve you content you care about." msgstr "您選擇的興趣主題可以協助我們提供更多您想看到的內容。" diff --git a/src/logger/__tests__/logger.test.ts b/src/logger/__tests__/logger.test.ts index 4b5f5decdc..435a5e5d1c 100644 --- a/src/logger/__tests__/logger.test.ts +++ b/src/logger/__tests__/logger.test.ts @@ -110,6 +110,7 @@ describe('general functionality', () => { const timestamp = Date.now() const sentryTimestamp = timestamp / 1000 + /* sentryTransport( LogLevel.Debug, Logger.Context.Default, @@ -125,6 +126,7 @@ describe('general functionality', () => { level: LogLevel.Debug, timestamp: sentryTimestamp, }) + */ sentryTransport( LogLevel.Info, @@ -154,7 +156,7 @@ describe('general functionality', () => { message, data: {__context__: 'logger'}, type: 'default', - level: 'debug', // Sentry bug, log becomes debug + level: 'log', timestamp: sentryTimestamp, }) jest.runAllTimers() @@ -220,7 +222,7 @@ describe('general functionality', () => { const sentryTimestamp = timestamp / 1000 sentryTransport( - LogLevel.Debug, + LogLevel.Info, undefined, message, {error: new Error('foo')}, @@ -230,7 +232,7 @@ describe('general functionality', () => { message, data: {error: 'Error: foo'}, type: 'default', - level: LogLevel.Debug, + level: LogLevel.Info, timestamp: sentryTimestamp, }) }) diff --git a/src/logger/bitdrift/setup/index.ts b/src/logger/bitdrift/setup/index.ts index d6af3fe24b..dd2560acc6 100644 --- a/src/logger/bitdrift/setup/index.ts +++ b/src/logger/bitdrift/setup/index.ts @@ -2,8 +2,7 @@ import {init, SessionStrategy} from '@bitdrift/react-native' import {Statsig} from 'statsig-react-native-expo' import {initPromise} from '#/lib/statsig/statsig' - -const BITDRIFT_API_KEY = process.env.BITDRIFT_API_KEY +import {BITDRIFT_API_KEY} from '#/env' initPromise.then(() => { let isEnabled = false diff --git a/src/logger/index.ts b/src/logger/index.ts index e7aaf666a0..998d025818 100644 --- a/src/logger/index.ts +++ b/src/logger/index.ts @@ -14,9 +14,10 @@ import { } from '#/logger/types' import {enabledLogLevels} from '#/logger/util' import {isNative} from '#/platform/detection' +import {ENV} from '#/env' const TRANSPORTS: Transport[] = (function configureTransports() { - switch (process.env.NODE_ENV) { + switch (ENV) { case 'production': { return [sentryTransport, isNative && bitdriftTransport].filter( Boolean, diff --git a/src/logger/metrics.ts b/src/logger/metrics.ts index 31af1be2b0..0c9ea1ef63 100644 --- a/src/logger/metrics.ts +++ b/src/logger/metrics.ts @@ -26,6 +26,7 @@ export type MetricEvents = { } 'notifications:openApp': { reason: NotificationReason + causedBoot: boolean } 'notifications:request': { context: 'StartOnboarding' | 'AfterOnboarding' | 'Login' | 'Home' @@ -66,7 +67,9 @@ export type MetricEvents = { activeStep: number backgroundCount: number } - 'signup:handleTaken': {} + 'signup:handleTaken': {typeahead?: boolean} + 'signup:handleAvailable': {typeahead?: boolean} + 'signup:handleSuggestionSelected': {method: string} 'signin:hostingProviderPressed': { hostingProviderDidChange: boolean } @@ -443,4 +446,33 @@ export type MetricEvents = { [key: string]: any } 'thread:click:headerMenuOpen': {} + 'activitySubscription:enable': { + setting: 'posts' | 'posts_and_replies' + } + 'activitySubscription:disable': {} + 'activityPreference:changeChannels': { + name: string + push: boolean + list: boolean + } + 'activityPreference:changeFilter': { + name: string + value: string + } + + 'ageAssurance:navigateToSettings': {} + 'ageAssurance:dismissFeedBanner': {} + 'ageAssurance:dismissSettingsNotice': {} + 'ageAssurance:initDialogOpen': { + hasInitiatedPreviously: boolean + } + 'ageAssurance:initDialogSubmit': {} + 'ageAssurance:initDialogError': { + code: string + } + 'ageAssurance:redirectDialogOpen': {} + 'ageAssurance:redirectDialogSuccess': {} + 'ageAssurance:redirectDialogFail': {} + 'ageAssurance:appealDialogOpen': {} + 'ageAssurance:appealDialogSubmit': {} } diff --git a/src/logger/sentry/setup/index.ts b/src/logger/sentry/setup/index.ts index f05a7fc833..d062f05d2b 100644 --- a/src/logger/sentry/setup/index.ts +++ b/src/logger/sentry/setup/index.ts @@ -1,32 +1,15 @@ -/** - * Importing these separately from `platform/detection` and `lib/app-info` to - * avoid future conflicts and/or circular deps - */ - import {init} from '@sentry/react-native' -import pkgJson from '#/../package.json' - -/** - * Examples: - * - `dev` - * - `1.99.0` - */ -const release = process.env.SENTRY_RELEASE || pkgJson.version - -/** - * The latest deployed commit hash - */ -const dist = process.env.SENTRY_DIST || 'dev' +import * as env from '#/env' init({ - enabled: !__DEV__ && !!process.env.SENTRY_DSN, + enabled: !env.IS_DEV && !!env.SENTRY_DSN, autoSessionTracking: false, - dsn: process.env.SENTRY_DSN, + dsn: env.SENTRY_DSN, debug: false, // If `true`, Sentry will try to print out useful debugging information if something goes wrong with sending the event. Set it to `false` in production - environment: process.env.NODE_ENV, - dist, - release, + environment: env.ENV, + dist: env.BUNDLE_IDENTIFIER, + release: env.RELEASE_VERSION, ignoreErrors: [ /* * Unknown internals errors diff --git a/src/logger/transports/sentry.ts b/src/logger/transports/sentry.ts index 33dd78ec21..5453279015 100644 --- a/src/logger/transports/sentry.ts +++ b/src/logger/transports/sentry.ts @@ -1,6 +1,6 @@ import {isNetworkError} from '#/lib/strings/errors' import {Sentry} from '#/logger/sentry/lib' -import {LogLevel, Transport} from '#/logger/types' +import {LogLevel, type Transport} from '#/logger/types' import {prepareMetadata} from '#/logger/util' export const sentryTransport: Transport = ( @@ -10,6 +10,9 @@ export const sentryTransport: Transport = ( {type, tags, ...metadata}, timestamp, ) => { + // Skip debug messages entirely for now - esb + if (level === LogLevel.Debug) return + const meta = { __context__: context, ...prepareMetadata(metadata), diff --git a/src/logger/types.ts b/src/logger/types.ts index 88d8d9d93d..ee3069a083 100644 --- a/src/logger/types.ts +++ b/src/logger/types.ts @@ -12,6 +12,8 @@ export enum LogContext { ReportDialog = 'report-dialog', FeedFeedback = 'feed-feedback', PostSource = 'post-source', + AgeAssurance = 'age-assurance', + PolicyUpdate = 'policy-update', /** * METRIC IS FOR INTERNAL USE ONLY, don't create any other loggers using this diff --git a/src/platform/detection.ts b/src/platform/detection.ts index dc30c2fd33..083c005624 100644 --- a/src/platform/detection.ts +++ b/src/platform/detection.ts @@ -3,7 +3,6 @@ import {Platform} from 'react-native' export const isIOS = Platform.OS === 'ios' export const isAndroid = Platform.OS === 'android' export const isNative = isIOS || isAndroid -export const devicePlatform = isIOS ? 'ios' : isAndroid ? 'android' : 'web' export const isWeb = !isNative export const isMobileWebMediaQuery = 'only screen and (max-width: 1300px)' export const isMobileWeb = diff --git a/src/platform/polyfills.ts b/src/platform/polyfills.ts index 47581eff4c..bb17630067 100644 --- a/src/platform/polyfills.ts +++ b/src/platform/polyfills.ts @@ -41,12 +41,12 @@ globalThis.atob = (str: string): string => { r1 === 64 ? String.fromCharCode((bitmap >> 16) & 255) : r2 === 64 - ? String.fromCharCode((bitmap >> 16) & 255, (bitmap >> 8) & 255) - : String.fromCharCode( - (bitmap >> 16) & 255, - (bitmap >> 8) & 255, - bitmap & 255, - ) + ? String.fromCharCode((bitmap >> 16) & 255, (bitmap >> 8) & 255) + : String.fromCharCode( + (bitmap >> 16) & 255, + (bitmap >> 8) & 255, + bitmap & 255, + ) } return result } diff --git a/src/routes.ts b/src/routes.ts index b66a0ae53f..7fc673e2be 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -11,6 +11,7 @@ export const router = new Router({ Search: '/search', Feeds: '/feeds', Notifications: '/notifications', + NotificationsActivityList: '/notifications/activity', LegacyNotificationSettings: '/notifications/settings', Settings: '/settings', Lists: '/lists', @@ -50,6 +51,7 @@ export const router = new Router({ SavedFeeds: '/settings/saved-feeds', AccountSettings: '/settings/account', PrivacyAndSecuritySettings: '/settings/privacy-and-security', + ActivityPrivacySettings: '/settings/privacy-and-security/activity', ContentAndMediaSettings: '/settings/content-and-media', InterestsSettings: '/settings/interests', AboutSettings: '/settings/about', diff --git a/src/screens/Hashtag.tsx b/src/screens/Hashtag.tsx index d1b7ab0dbd..f09ff522a3 100644 --- a/src/screens/Hashtag.tsx +++ b/src/screens/Hashtag.tsx @@ -1,6 +1,6 @@ import React from 'react' import {type ListRenderItemInfo, View} from 'react-native' -import {type PostView} from '@atproto/api/dist/client/types/app/bsky/feed/defs' +import {type AppBskyFeedDefs} from '@atproto/api' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useFocusEffect} from '@react-navigation/native' @@ -25,11 +25,11 @@ import {ArrowOutOfBoxModified_Stroke2_Corner2_Rounded as Share} from '#/componen import * as Layout from '#/components/Layout' import {ListFooter, ListMaybePlaceholder} from '#/components/Lists' -const renderItem = ({item}: ListRenderItemInfo) => { +const renderItem = ({item}: ListRenderItemInfo) => { return } -const keyExtractor = (item: PostView, index: number) => { +const keyExtractor = (item: AppBskyFeedDefs.PostView, index: number) => { return `${item.uri}-${index}` } diff --git a/src/screens/Login/index.tsx b/src/screens/Login/index.tsx index e4e2f43f04..601d766061 100644 --- a/src/screens/Login/index.tsx +++ b/src/screens/Login/index.tsx @@ -49,8 +49,8 @@ export const Login = ({onPressBack}: {onPressBack: () => void}) => { requestedAccount ? Forms.Login : accounts.length - ? Forms.ChooseAccount - : Forms.Login, + ? Forms.ChooseAccount + : Forms.Login, ) const { diff --git a/src/screens/Messages/ChatList.tsx b/src/screens/Messages/ChatList.tsx index 9fd54f1b04..3454464648 100644 --- a/src/screens/Messages/ChatList.tsx +++ b/src/screens/Messages/ChatList.tsx @@ -23,6 +23,8 @@ import {useSession} from '#/state/session' import {List, type ListRef} from '#/view/com/util/List' import {ChatListLoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder' import {atoms as a, useBreakpoints, useTheme} from '#/alf' +import {AgeRestrictedScreen} from '#/components/ageAssurance/AgeRestrictedScreen' +import {useAgeAssuranceCopy} from '#/components/ageAssurance/useAgeAssuranceCopy' import {Button, ButtonIcon, ButtonText} from '#/components/Button' import {type DialogControlProps, useDialogControl} from '#/components/Dialog' import {NewChat} from '#/components/dms/dialogs/NewChatDialog' @@ -53,7 +55,7 @@ type ListItem = function renderItem({item}: {item: ListItem}) { switch (item.type) { case 'INBOX': - return + return case 'CONVERSATION': return } @@ -64,7 +66,21 @@ function keyExtractor(item: ListItem) { } type Props = NativeStackScreenProps -export function MessagesScreen({navigation, route}: Props) { + +export function MessagesScreen(props: Props) { + const {_} = useLingui() + const aaCopy = useAgeAssuranceCopy() + + return ( + + + + ) +} + +export function MessagesScreenInner({navigation, route}: Props) { const {_} = useLingui() const t = useTheme() const {currentAccount} = useSession() @@ -124,22 +140,24 @@ export function MessagesScreen({navigation, route}: Props) { const leftConvos = useLeftConvos() - const inboxPreviewConvos = useMemo(() => { - const inbox = - inboxData?.pages - .flatMap(page => page.convos) - .filter( - convo => - !leftConvos.includes(convo.id) && - !convo.muted && - convo.unreadCount > 0 && - convo.members.every(member => member.handle !== 'missing.invalid'), - ) ?? [] + const inboxAllConvos = + inboxData?.pages + .flatMap(page => page.convos) + .filter( + convo => + !leftConvos.includes(convo.id) && + !convo.muted && + convo.members.every(member => member.handle !== 'missing.invalid'), + ) ?? [] + const hasInboxConvos = inboxAllConvos?.length > 0 - return inbox - .map(x => x.members.find(y => y.did !== currentAccount?.did)) - .filter(x => !!x) - }, [inboxData, leftConvos, currentAccount?.did]) + const inboxUnreadConvos = inboxAllConvos.filter( + convo => convo.unreadCount > 0, + ) + + const inboxUnreadConvoMembers = inboxUnreadConvos + .map(x => x.members.find(y => y.did !== currentAccount?.did)) + .filter(x => !!x) const conversations = useMemo(() => { if (data?.pages) { @@ -149,18 +167,22 @@ export function MessagesScreen({navigation, route}: Props) { .filter(convo => !leftConvos.includes(convo.id)) return [ - { - type: 'INBOX', - count: inboxPreviewConvos.length, - profiles: inboxPreviewConvos.slice(0, 3), - }, + ...(hasInboxConvos + ? [ + { + type: 'INBOX' as const, + count: inboxUnreadConvoMembers.length, + profiles: inboxUnreadConvoMembers.slice(0, 3), + }, + ] + : []), ...conversations.map( - convo => ({type: 'CONVERSATION', conversation: convo} as const), + convo => ({type: 'CONVERSATION', conversation: convo}) as const, ), ] satisfies ListItem[] } return [] - }, [data, leftConvos, inboxPreviewConvos]) + }, [data, leftConvos, hasInboxConvos, inboxUnreadConvoMembers]) const onRefresh = useCallback(async () => { setIsPTRing(true) @@ -207,16 +229,20 @@ export function MessagesScreen({navigation, route}: Props) { return listenSoftReset(onSoftReset) }, [onSoftReset, isScreenFocused]) - // Will always have 1 item - the inbox button - if (conversations.length < 2) { + // NOTE(APiligrim) + // Show empty state only if there are no conversations at all + const activeConversations = conversations.filter( + item => item.type === 'CONVERSATION', + ) + + if (activeConversations.length === 0) { return (
- + {!isLoading && hasInboxConvos && ( + + )} {isLoading ? ( ) : ( diff --git a/src/screens/Messages/Conversation.tsx b/src/screens/Messages/Conversation.tsx index 90547a8d4d..2e820cc124 100644 --- a/src/screens/Messages/Conversation.tsx +++ b/src/screens/Messages/Conversation.tsx @@ -15,7 +15,6 @@ import { } from '@react-navigation/native' import {type NativeStackScreenProps} from '@react-navigation/native-stack' -import {useEmail} from '#/lib/hooks/useEmail' import {useEnableKeyboardControllerScreen} from '#/lib/hooks/useEnableKeyboardController' import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback' import { @@ -24,6 +23,7 @@ import { } from '#/lib/routes/types' import {isWeb} from '#/platform/detection' import {type Shadow, useMaybeProfileShadow} from '#/state/cache/profile-shadow' +import {useEmail} from '#/state/email-verification' import {ConvoProvider, isConvoActive, useConvo} from '#/state/messages/convo' import {ConvoStatus} from '#/state/messages/convo/types' import {useCurrentConvoId} from '#/state/messages/current-convo-id' @@ -32,6 +32,8 @@ import {useProfileQuery} from '#/state/queries/profile' import {useSetMinimalShellMode} from '#/state/shell' import {MessagesList} from '#/screens/Messages/components/MessagesList' import {atoms as a, useBreakpoints, useTheme, web} from '#/alf' +import {AgeRestrictedScreen} from '#/components/ageAssurance/AgeRestrictedScreen' +import {useAgeAssuranceCopy} from '#/components/ageAssurance/useAgeAssuranceCopy' import { EmailDialogScreenID, useEmailDialogControl, @@ -46,7 +48,20 @@ type Props = NativeStackScreenProps< CommonNavigatorParams, 'MessagesConversation' > -export function MessagesConversationScreen({route}: Props) { + +export function MessagesConversationScreen(props: Props) { + const {_} = useLingui() + const aaCopy = useAgeAssuranceCopy() + return ( + + + + ) +} + +export function MessagesConversationScreenInner({route}: Props) { const {gtMobile} = useBreakpoints() const setMinimalShellMode = useSetMinimalShellMode() diff --git a/src/screens/Messages/Inbox.tsx b/src/screens/Messages/Inbox.tsx index 0f64d20140..8765cf0baf 100644 --- a/src/screens/Messages/Inbox.tsx +++ b/src/screens/Messages/Inbox.tsx @@ -1,17 +1,23 @@ import {useCallback, useMemo, useState} from 'react' import {View} from 'react-native' -import {ChatBskyConvoDefs, ChatBskyConvoListConvos} from '@atproto/api' +import { + type ChatBskyConvoDefs, + type ChatBskyConvoListConvos, +} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useFocusEffect, useNavigation} from '@react-navigation/native' -import {InfiniteData, UseInfiniteQueryResult} from '@tanstack/react-query' +import { + type InfiniteData, + type UseInfiniteQueryResult, +} from '@tanstack/react-query' import {useAppState} from '#/lib/hooks/useAppState' import {useInitialNumToRender} from '#/lib/hooks/useInitialNumToRender' import { - CommonNavigatorParams, - NativeStackScreenProps, - NavigationProp, + type CommonNavigatorParams, + type NativeStackScreenProps, + type NavigationProp, } from '#/lib/routes/types' import {cleanError} from '#/lib/strings/errors' import {logger} from '#/logger' @@ -26,6 +32,8 @@ import {List} from '#/view/com/util/List' import {ChatListLoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder' import * as Toast from '#/view/com/util/Toast' import {atoms as a, useBreakpoints, useTheme} from '#/alf' +import {AgeRestrictedScreen} from '#/components/ageAssurance/AgeRestrictedScreen' +import {useAgeAssuranceCopy} from '#/components/ageAssurance/useAgeAssuranceCopy' import {Button, ButtonIcon, ButtonText} from '#/components/Button' import {useRefreshOnFocus} from '#/components/hooks/useRefreshOnFocus' import {ArrowLeft_Stroke2_Corner0_Rounded as ArrowLeftIcon} from '#/components/icons/Arrow' @@ -39,7 +47,20 @@ import {Text} from '#/components/Typography' import {RequestListItem} from './components/RequestListItem' type Props = NativeStackScreenProps -export function MessagesInboxScreen({}: Props) { + +export function MessagesInboxScreen(props: Props) { + const {_} = useLingui() + const aaCopy = useAgeAssuranceCopy() + return ( + + + + ) +} + +export function MessagesInboxScreenInner({}: Props) { const {gtTablet} = useBreakpoints() const listConvosQuery = useListConvosQuery({status: 'request'}) diff --git a/src/screens/Messages/Settings.tsx b/src/screens/Messages/Settings.tsx index 0b8c88b9dd..6015c07cd5 100644 --- a/src/screens/Messages/Settings.tsx +++ b/src/screens/Messages/Settings.tsx @@ -12,6 +12,8 @@ import {useSession} from '#/state/session' import * as Toast from '#/view/com/util/Toast' import {atoms as a} from '#/alf' import {Admonition} from '#/components/Admonition' +import {AgeRestrictedScreen} from '#/components/ageAssurance/AgeRestrictedScreen' +import {useAgeAssuranceCopy} from '#/components/ageAssurance/useAgeAssuranceCopy' import {Divider} from '#/components/Divider' import * as Toggle from '#/components/forms/Toggle' import * as Layout from '#/components/Layout' @@ -21,7 +23,21 @@ import {useBackgroundNotificationPreferences} from '../../../modules/expo-backgr type AllowIncoming = 'all' | 'none' | 'following' type Props = NativeStackScreenProps -export function MessagesSettingsScreen({}: Props) { + +export function MessagesSettingsScreen(props: Props) { + const {_} = useLingui() + const aaCopy = useAgeAssuranceCopy() + + return ( + + + + ) +} + +export function MessagesSettingsScreenInner({}: Props) { const {_} = useLingui() const {currentAccount} = useSession() const {data: profile} = useProfileQuery({ diff --git a/src/screens/Messages/components/InboxPreview.tsx b/src/screens/Messages/components/InboxPreview.tsx index fe2803522e..6e1b028223 100644 --- a/src/screens/Messages/components/InboxPreview.tsx +++ b/src/screens/Messages/components/InboxPreview.tsx @@ -1,5 +1,5 @@ import {View} from 'react-native' -import {ChatBskyActorDefs} from '@atproto/api' +import {type ChatBskyActorDefs} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' @@ -12,10 +12,8 @@ import {Link} from '#/components/Link' export function InboxPreview({ profiles, -}: // count, -{ +}: { profiles: ChatBskyActorDefs.ProfileViewBasic[] - count: number }) { const {_} = useLingui() const t = useTheme() diff --git a/src/screens/Messages/components/MessageInput.tsx b/src/screens/Messages/components/MessageInput.tsx index 6cde1d4fec..87f22b2329 100644 --- a/src/screens/Messages/components/MessageInput.tsx +++ b/src/screens/Messages/components/MessageInput.tsx @@ -18,8 +18,8 @@ import Graphemer from 'graphemer' import {HITSLOP_10, MAX_DM_GRAPHEME_LENGTH} from '#/lib/constants' import {useHaptics} from '#/lib/haptics' -import {useEmail} from '#/lib/hooks/useEmail' import {isIOS, isWeb} from '#/platform/detection' +import {useEmail} from '#/state/email-verification' import { useMessageDraft, useSaveMessageDraft, diff --git a/src/screens/Messages/components/RequestButtons.tsx b/src/screens/Messages/components/RequestButtons.tsx index 3490bec0da..560888552b 100644 --- a/src/screens/Messages/components/RequestButtons.tsx +++ b/src/screens/Messages/components/RequestButtons.tsx @@ -5,9 +5,9 @@ import {useLingui} from '@lingui/react' import {StackActions, useNavigation} from '@react-navigation/native' import {useQueryClient} from '@tanstack/react-query' -import {useEmail} from '#/lib/hooks/useEmail' import {type NavigationProp} from '#/lib/routes/types' import {useProfileShadow} from '#/state/cache/profile-shadow' +import {useEmail} from '#/state/email-verification' import {useAcceptConversation} from '#/state/queries/messages/accept-conversation' import {precacheConvoQuery} from '#/state/queries/messages/conversation' import {useLeaveConvo} from '#/state/queries/messages/leave-conversation' diff --git a/src/screens/Moderation/index.tsx b/src/screens/Moderation/index.tsx index 78b0a6ae9d..1517792a19 100644 --- a/src/screens/Moderation/index.tsx +++ b/src/screens/Moderation/index.tsx @@ -12,6 +12,7 @@ import { } from '#/lib/routes/types' import {logger} from '#/logger' import {isIOS} from '#/platform/detection' +import {useAgeAssurance} from '#/state/ageAssurance/useAgeAssurance' import { useMyLabelersQuery, usePreferencesQuery, @@ -20,8 +21,8 @@ import { } from '#/state/queries/preferences' import {isNonConfigurableModerationAuthority} from '#/state/session/additional-moderation-authorities' import {useSetMinimalShellMode} from '#/state/shell' -import {ViewHeader} from '#/view/com/util/ViewHeader' import {atoms as a, useBreakpoints, useTheme, type ViewStyleProp} from '#/alf' +import {AgeAssuranceAdmonition} from '#/components/ageAssurance/AgeAssuranceAdmonition' import {Button, ButtonText} from '#/components/Button' import * as Dialog from '#/components/Dialog' import {BirthDateSettingsDialog} from '#/components/dialogs/BirthDateSettings' @@ -84,13 +85,22 @@ export function ModerationScreen( error: preferencesError, data: preferences, } = usePreferencesQuery() + const {isReady: isAgeInfoReady} = useAgeAssurance() - const isLoading = isPreferencesLoading + const isLoading = isPreferencesLoading || !isAgeInfoReady const error = preferencesError return ( - + + + + + Moderation + + + + {isLoading ? ( @@ -157,6 +167,7 @@ export function ModerationScreenInner({ data: labelers, error: labelersError, } = useMyLabelersQuery() + const {declaredAge, isDeclaredUnderage, isAgeRestricted} = useAgeAssurance() useFocusEffect( useCallback(() => { @@ -170,8 +181,6 @@ export function ModerationScreenInner({ (optimisticAdultContent && optimisticAdultContent.enabled) || (!optimisticAdultContent && preferences.moderationPrefs.adultContentEnabled) ) - const ageNotSet = !preferences.userAge - const isUnderage = (preferences.userAge || 0) < 18 const onToggleAdultContentEnabled = useCallback( async (selected: boolean) => { @@ -295,117 +304,144 @@ export function ModerationScreenInner({ - - Content filters - + {declaredAge === undefined && ( + <> + + Content filters + - - {ageNotSet && ( - <> - + - - - )} - - {!ageNotSet && !isUnderage && ( - <> - - - Enable adult content - - - - - {adultContentEnabled ? ( - Enabled - ) : ( - Disabled - )} + + + )} + + {!isDeclaredUnderage && ( + <> + + Content filters + + + + + You must complete age assurance in order to access the settings + below. + + + + + + {!isDeclaredUnderage && ( + <> + + + Enable adult content - + + + + {adultContentEnabled ? ( + Enabled + ) : ( + Disabled + )} + + + + - - - {disabledOnIOS && ( - - - - Adult content can only be enabled via the Web at{' '} - { - evt.preventDefault() - Linking.openURL('https://bsky.app/') - return false - }}> - bsky.app - - . - - - + {disabledOnIOS && ( + + + + Adult content can only be enabled via the Web at{' '} + { + evt.preventDefault() + Linking.openURL('https://bsky.app/') + return false + }}> + bsky.app + + . + + + + )} + + {adultContentEnabled && ( + <> + + + + + + + + + + )} + )} - - - )} - {!isUnderage && adultContentEnabled && ( - <> - - - - - - - - )} - - - + + + + )} +export function NotificationsActivityListScreen({ + route: { + params: {posts}, + }, +}: Props) { + const uris = decodeURIComponent(posts) + const {_} = useLingui() + + return ( + + + + + + Notifications + + + + + ( + + )} + renderEndOfFeed={() => } + /> + + ) +} diff --git a/src/screens/Onboarding/StepFinished.tsx b/src/screens/Onboarding/StepFinished.tsx index e725b7b80a..54d282a5ea 100644 --- a/src/screens/Onboarding/StepFinished.tsx +++ b/src/screens/Onboarding/StepFinished.tsx @@ -1,12 +1,12 @@ import React from 'react' import {View} from 'react-native' import { + type AppBskyActorDefs, type AppBskyActorProfile, type AppBskyGraphDefs, AppBskyGraphStarterpack, type Un$Typed, } from '@atproto/api' -import {type SavedFeed} from '@atproto/api/dist/client/types/app/bsky/actor/defs' import {TID} from '@atproto/common-web' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' @@ -108,7 +108,7 @@ export function StepFinished() { await agent.setInterestsPref({tags: selectedInterests}) // Default feeds that every user should have pinned when landing in the app - const feedsToSave: SavedFeed[] = [ + const feedsToSave: AppBskyActorDefs.SavedFeed[] = [ { ...DISCOVER_SAVED_FEED, id: TID.nextStr(), @@ -176,8 +176,8 @@ export function StepFinished() { avatarResult: profileStepResults.isCreatedAvatar ? 'created' : profileStepResults.image - ? 'uploaded' - : 'default', + ? 'uploaded' + : 'default', }) })(), requestNotificationsPermission('AfterOnboarding'), @@ -305,8 +305,8 @@ export function StepFinished() { + ) }> {isPlaceholderProfile ? ( )} - + {live.isActive && } @@ -254,39 +274,6 @@ let ProfileHeaderShell = ({ ) } + ProfileHeaderShell = memo(ProfileHeaderShell) export {ProfileHeaderShell} - -const styles = StyleSheet.create({ - backBtnWrapper: { - position: 'absolute', - left: 10, - width: 30, - height: 30, - overflow: 'hidden', - borderRadius: 15, - cursor: 'pointer', - backgroundColor: 'rgba(0, 0, 0, 0.5)', - alignItems: 'center', - justifyContent: 'center', - }, - backBtn: { - width: 30, - height: 30, - borderRadius: 15, - alignItems: 'center', - justifyContent: 'center', - }, - aviPosition: { - position: 'absolute', - top: 110, - left: 10, - }, - avi: { - width: 94, - height: 94, - }, - aviLabeler: { - borderRadius: 10, - }, -}) diff --git a/src/screens/Profile/Sections/Labels.tsx b/src/screens/Profile/Sections/Labels.tsx index c04c047c4a..669a5dbcc4 100644 --- a/src/screens/Profile/Sections/Labels.tsx +++ b/src/screens/Profile/Sections/Labels.tsx @@ -1,7 +1,5 @@ -import React from 'react' -import {findNodeHandle, View} from 'react-native' -import type Animated from 'react-native-reanimated' -import {useSafeAreaFrame} from 'react-native-safe-area-context' +import {useCallback, useEffect, useImperativeHandle, useMemo} from 'react' +import {findNodeHandle, type ListRenderItemInfo, View} from 'react-native' import { type AppBskyLabelerDefs, type InterpretedLabelValueDefinition, @@ -11,15 +9,13 @@ import { import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {useAnimatedScrollHandler} from '#/lib/hooks/useAnimatedScrollHandler_FIXED' import {isLabelerSubscribed, lookupLabelValueDefinition} from '#/lib/moderation' -import {useScrollHandlers} from '#/lib/ScrollContext' import {isIOS, isNative} from '#/platform/detection' -import {type ListRef} from '#/view/com/util/List' -import {atoms as a, useTheme} from '#/alf' +import {List, type ListRef} from '#/view/com/util/List' +import {atoms as a, ios, tokens, useTheme} from '#/alf' import {Divider} from '#/components/Divider' import {CircleInfo_Stroke2_Corner0_Rounded as CircleInfo} from '#/components/icons/CircleInfo' -import * as Layout from '#/components/Layout' +import {ListFooter} from '#/components/Lists' import {Loader} from '#/components/Loader' import {LabelerLabelPreference} from '#/components/moderation/LabelPreference' import {Text} from '#/components/Typography' @@ -27,6 +23,7 @@ import {ErrorState} from '../ErrorState' import {type SectionRef} from './types' interface LabelsSectionProps { + ref: React.Ref isLabelerLoading: boolean labelerInfo: AppBskyLabelerDefs.LabelerViewDetailed | undefined labelerError: Error | null @@ -36,50 +33,21 @@ interface LabelsSectionProps { isFocused: boolean setScrollViewTag: (tag: number | null) => void } -export const ProfileLabelsSection = React.forwardRef< - SectionRef, - LabelsSectionProps ->(function LabelsSectionImpl( - { - isLabelerLoading, - labelerInfo, - labelerError, - moderationOpts, - scrollElRef, - headerHeight, - isFocused, - setScrollViewTag, - }, +export function ProfileLabelsSection({ ref, -) { - const {_} = useLingui() - const {height: minHeight} = useSafeAreaFrame() + isLabelerLoading, + labelerInfo, + labelerError, + moderationOpts, + scrollElRef, + headerHeight, + isFocused, + setScrollViewTag, +}: LabelsSectionProps) { + const t = useTheme() - // Intentionally destructured outside the main thread closure. - // See https://github.com/bluesky-social/social-app/pull/4108. - const { - onBeginDrag: onBeginDragFromContext, - onEndDrag: onEndDragFromContext, - onScroll: onScrollFromContext, - onMomentumEnd: onMomentumEndFromContext, - } = useScrollHandlers() - const scrollHandler = useAnimatedScrollHandler({ - onBeginDrag(e, ctx) { - onBeginDragFromContext?.(e, ctx) - }, - onEndDrag(e, ctx) { - onEndDragFromContext?.(e, ctx) - }, - onScroll(e, ctx) { - onScrollFromContext?.(e, ctx) - }, - onMomentumEnd(e, ctx) { - onMomentumEndFromContext?.(e, ctx) - }, - }) - - const onScrollToTop = React.useCallback(() => { - // @ts-ignore TODO fix this + const onScrollToTop = useCallback(() => { + // @ts-expect-error TODO fix this scrollElRef.current?.scrollTo({ animated: isNative, x: 0, @@ -87,143 +55,184 @@ export const ProfileLabelsSection = React.forwardRef< }) }, [scrollElRef, headerHeight]) - React.useImperativeHandle(ref, () => ({ + useImperativeHandle(ref, () => ({ scrollToTop: onScrollToTop, })) - React.useEffect(() => { + useEffect(() => { if (isIOS && isFocused && scrollElRef.current) { const nativeTag = findNodeHandle(scrollElRef.current) setScrollViewTag(nativeTag) } }, [isFocused, scrollElRef, setScrollViewTag]) - return ( - - } - scrollEventThrottle={1} - contentContainerStyle={{ - paddingTop: headerHeight, - borderWidth: 0, - }} - contentOffset={{x: 0, y: headerHeight * -1}} - onScroll={scrollHandler}> - {isLabelerLoading ? ( - - - - ) : labelerError || !labelerInfo ? ( - - - - ) : ( - - )} - - - ) -}) + const isSubscribed = labelerInfo + ? !!isLabelerSubscribed(labelerInfo, moderationOpts) + : false -export function ProfileLabelsSectionInner({ - moderationOpts, - labelerInfo, -}: { - moderationOpts: ModerationOpts - labelerInfo: AppBskyLabelerDefs.LabelerViewDetailed -}) { - const t = useTheme() - - const {labelValues} = labelerInfo.policies - const isSubscribed = isLabelerSubscribed(labelerInfo, moderationOpts) - const labelDefs = React.useMemo(() => { + const labelValues = useMemo(() => { + if (isLabelerLoading || !labelerInfo || labelerError) return [] const customDefs = interpretLabelValueDefinitions(labelerInfo) - return labelValues + return labelerInfo.policies.labelValues + .filter((val, i, arr) => arr.indexOf(val) === i) // dedupe .map(val => lookupLabelValueDefinition(val, customDefs)) .filter( def => def && def?.configurable, ) as InterpretedLabelValueDefinition[] - }, [labelerInfo, labelValues]) + }, [labelerInfo, labelerError, isLabelerLoading]) - return ( - - - - - Labels are annotations on users and content. They can be used to - hide, warn, and categorize the network. - - - {labelerInfo.creator.viewer?.blocking ? ( - - - - - Blocking does not prevent this labeler from placing labels on - your account. - - - - ) : null} - {labelValues.length === 0 ? ( - - - This labeler hasn't declared what labels it publishes, and may not - be active. - - - ) : !isSubscribed ? ( - - - Subscribe to @{labelerInfo.creator.handle} to use these labels: - - - ) : null} - - {labelDefs.length > 0 && ( + const numItems = labelValues.length + + const renderItem = useCallback( + ({item, index}: ListRenderItemInfo) => { + if (!labelerInfo) return null + return ( - {labelDefs.map((labelDef, i) => { - return ( - - {i !== 0 && } - - - ) - })} + {index !== 0 && } + - )} + ) + }, + [labelerInfo, isSubscribed, numItems, t], + ) + + return ( + + + } + ListFooterComponent={ + + } + /> + + ) +} + +function keyExtractor(item: InterpretedLabelValueDefinition) { + return item.identifier +} + +export function LabelerListHeader({ + isLabelerLoading, + labelerError, + labelerInfo, + hasValues, + isSubscribed, +}: { + isLabelerLoading: boolean + labelerError?: Error | null + labelerInfo?: AppBskyLabelerDefs.LabelerViewDetailed + hasValues: boolean + isSubscribed: boolean +}) { + const t = useTheme() + const {_} = useLingui() + + if (isLabelerLoading) { + return ( + + + + ) + } + + if (labelerError || !labelerInfo) { + return ( + + + + ) + } + + return ( + + + + Labels are annotations on users and content. They can be used to hide, + warn, and categorize the network. + + + {labelerInfo?.creator.viewer?.blocking ? ( + + + + + Blocking does not prevent this labeler from placing labels on your + account. + + + + ) : null} + {!hasValues ? ( + + + This labeler hasn't declared what labels it publishes, and may not + be active. + + + ) : !isSubscribed ? ( + + + Subscribe to @{labelerInfo.creator.handle} to use these labels: + + + ) : null} ) } diff --git a/src/screens/Search/Explore.tsx b/src/screens/Search/Explore.tsx index 92eed25aa4..9c4dd9d56a 100644 --- a/src/screens/Search/Explore.tsx +++ b/src/screens/Search/Explore.tsx @@ -342,11 +342,11 @@ export function Explore({ ]) const topBorder = useMemo( - () => ({type: 'topBorder', key: 'top-border'} as const), + () => ({type: 'topBorder', key: 'top-border'}) as const, [], ) const trendingTopicsModule = useMemo( - () => ({type: 'trendingTopics', key: 'trending-topics'} as const), + () => ({type: 'trendingTopics', key: 'trending-topics'}) as const, [], ) const suggestedFollowsModule = useMemo(() => { @@ -917,11 +917,7 @@ export function Explore({ case 'preview:header': { return ( + style={[a.pt_xs, t.atoms.border_contrast_low, a.border_b]}> {/* Very non-scientific way to avoid small gap on scroll */} diff --git a/src/screens/Search/SearchResults.tsx b/src/screens/Search/SearchResults.tsx index 6b7a582d54..4c40684176 100644 --- a/src/screens/Search/SearchResults.tsx +++ b/src/screens/Search/SearchResults.tsx @@ -4,11 +4,14 @@ import {type AppBskyFeedDefs} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' +import {usePalette} from '#/lib/hooks/usePalette' import {augmentSearchQuery} from '#/lib/strings/helpers' import {useActorSearch} from '#/state/queries/actor-search' import {usePopularFeedsSearch} from '#/state/queries/feed' import {useSearchPostsQuery} from '#/state/queries/search-posts' import {useSession} from '#/state/session' +import {useLoggedOutViewControls} from '#/state/shell/logged-out' +import {useCloseAllActiveElements} from '#/state/util' import {Pager} from '#/view/com/pager/Pager' import {TabBar} from '#/view/com/pager/TabBar' import {Post} from '#/view/com/post/Post' @@ -17,6 +20,8 @@ import {List} from '#/view/com/util/List' import {atoms as a, useTheme, web} from '#/alf' import * as FeedCard from '#/components/FeedCard' import * as Layout from '#/components/Layout' +import {InlineLinkText} from '#/components/Link' +import {SearchError} from '#/components/SearchError' import {Text} from '#/components/Typography' let SearchResults = ({ @@ -104,7 +109,15 @@ function Loader() { ) } -function EmptyState({message, error}: {message: string; error?: string}) { +function EmptyState({ + message, + error, + children, +}: { + message: string + error?: string + children?: React.ReactNode +}) { const t = useTheme() return ( @@ -132,6 +145,8 @@ function EmptyState({message, error}: {message: string; error?: string}) { )} + + {children} @@ -161,6 +176,7 @@ let SearchScreenPostResults = ({ const {_} = useLingui() const {currentAccount} = useSession() const [isPTR, setIsPTR] = useState(false) + const isLoggedin = Boolean(currentAccount?.did) const augmentedQuery = useMemo(() => { return augmentSearchQuery(query || '', {did: currentAccount?.did}) @@ -177,6 +193,8 @@ let SearchScreenPostResults = ({ hasNextPage, } = useSearchPostsQuery({query: augmentedQuery, sort, enabled: active}) + const pal = usePalette('default') + const t = useTheme() const onPullToRefresh = useCallback(async () => { setIsPTR(true) await refetch() @@ -216,6 +234,51 @@ let SearchScreenPostResults = ({ return temp }, [posts, isFetchingNextPage]) + const closeAllActiveElements = useCloseAllActiveElements() + const {requestSwitchToAccount} = useLoggedOutViewControls() + + const showSignIn = () => { + closeAllActiveElements() + requestSwitchToAccount({requestedAccount: 'none'}) + } + + const showCreateAccount = () => { + closeAllActiveElements() + requestSwitchToAccount({requestedAccount: 'new'}) + } + + if (!isLoggedin) { + return ( + + + + + Sign in + + or + + create an account + + + + to search for news, sports, politics, and everything else + happening on Bluesky. + + + + + ) + } + return error ? ( | null = null @@ -218,7 +215,7 @@ function TrendingIndicator({type}: {type: TrendingIndicatorType | 'skeleton'}) { return ( {Icon && } - {text} + {text} ) } diff --git a/src/screens/Settings/AboutSettings.tsx b/src/screens/Settings/AboutSettings.tsx index 0ce127ff3f..e48841d9f0 100644 --- a/src/screens/Settings/AboutSettings.tsx +++ b/src/screens/Settings/AboutSettings.tsx @@ -9,7 +9,6 @@ import {type NativeStackScreenProps} from '@react-navigation/native-stack' import {useMutation} from '@tanstack/react-query' import {Statsig} from 'statsig-react-native-expo' -import {appVersion, BUNDLE_DATE, bundleInfo} from '#/lib/app-info' import {STATUS_PAGE_URL} from '#/lib/constants' import {type CommonNavigatorParams} from '#/lib/routes/types' import {isAndroid, isIOS, isNative} from '#/platform/detection' @@ -23,6 +22,7 @@ import {Newspaper_Stroke2_Corner2_Rounded as NewspaperIcon} from '#/components/i import {Wrench_Stroke2_Corner2_Rounded as WrenchIcon} from '#/components/icons/Wrench' import * as Layout from '#/components/Layout' import {Loader} from '#/components/Loader' +import * as env from '#/env' import {useDemoMode} from '#/storage/hooks/demo-mode' import {useDevMode} from '#/storage/hooks/dev-mode' import {OTAInfo} from './components/OTAInfo' @@ -123,7 +123,7 @@ export function AboutSettingsScreen({}: Props) { )} { const newDevModeEnabled = !devModeEnabled @@ -146,15 +146,15 @@ export function AboutSettingsScreen({}: Props) { }} onPress={() => { setStringAsync( - `Build version: ${appVersion}; Bundle info: ${bundleInfo}; Bundle date: ${BUNDLE_DATE}; Platform: ${Platform.OS}; Platform version: ${Platform.Version}; Anonymous ID: ${stableID}`, + `Build version: ${env.APP_VERSION}; Bundle info: ${env.APP_METADATA}; Bundle date: ${env.BUNDLE_DATE}; Platform: ${Platform.OS}; Platform version: ${Platform.Version}; Anonymous ID: ${stableID}`, ) Toast.show(_(msg`Copied build version to clipboard`)) }}> - Version {appVersion} + Version {env.APP_VERSION} - {bundleInfo} + {env.APP_METADATA} {devModeEnabled && ( <> diff --git a/src/screens/Settings/AccessibilitySettings.tsx b/src/screens/Settings/AccessibilitySettings.tsx index ee26697d2d..dbabd2f6f3 100644 --- a/src/screens/Settings/AccessibilitySettings.tsx +++ b/src/screens/Settings/AccessibilitySettings.tsx @@ -1,8 +1,8 @@ import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {NativeStackScreenProps} from '@react-navigation/native-stack' +import {type NativeStackScreenProps} from '@react-navigation/native-stack' -import {CommonNavigatorParams} from '#/lib/routes/types' +import {type CommonNavigatorParams} from '#/lib/routes/types' import {isNative} from '#/platform/detection' import { useHapticsDisabled, @@ -16,12 +16,10 @@ import { } from '#/state/preferences/large-alt-badge' import * as SettingsList from '#/screens/Settings/components/SettingsList' import {atoms as a} from '#/alf' -import {Admonition} from '#/components/Admonition' import * as Toggle from '#/components/forms/Toggle' import {Accessibility_Stroke2_Corner2_Rounded as AccessibilityIcon} from '#/components/icons/Accessibility' import {Haptic_Stroke2_Corner2_Rounded as HapticIcon} from '#/components/icons/Haptic' import * as Layout from '#/components/Layout' -import {InlineLinkText} from '#/components/Link' type Props = NativeStackScreenProps< CommonNavigatorParams, @@ -100,19 +98,6 @@ export function AccessibilitySettingsScreen({}: Props) { )} - - - - Autoplay options have moved to the{' '} - - Content and Media settings - - . - - - diff --git a/src/screens/Settings/AccountSettings.tsx b/src/screens/Settings/AccountSettings.tsx index 393bad2f86..86652d2779 100644 --- a/src/screens/Settings/AccountSettings.tsx +++ b/src/screens/Settings/AccountSettings.tsx @@ -7,6 +7,7 @@ import {useModalControls} from '#/state/modals' import {useSession} from '#/state/session' import * as SettingsList from '#/screens/Settings/components/SettingsList' import {atoms as a, useTheme} from '#/alf' +import {AgeAssuranceAccountCard} from '#/components/ageAssurance/AgeAssuranceAccountCard' import {useDialogControl} from '#/components/Dialog' import {BirthDateSettingsDialog} from '#/components/dialogs/BirthDateSettings' import { @@ -114,16 +115,6 @@ export function AccountSettingsScreen({}: Props) { - - - - Birthday - - birthdayControl.open()} - /> - openModal({name: 'change-password'})}> @@ -143,6 +134,17 @@ export function AccountSettingsScreen({}: Props) { + + + + Birthday + + birthdayControl.open()} + /> + + +export function ActivityPrivacySettingsScreen({}: Props) { + const { + data: notificationDeclaration, + isPending, + isError, + } = useNotificationDeclarationQuery() + + return ( + + + + + + Privacy and Security + + + + + + + + + Allow others to be notified of your posts + } + subtitleText={ + + This feature allows users to receive notifications for your + new posts and replies. Who do you want to enable this for? + + } + /> + + + {isError ? ( + + Failed to load preference. + + ) : isPending ? ( + + + + ) : ( + + )} + + + + + ) +} + +export function Inner({ + notificationDeclaration, +}: { + notificationDeclaration: { + uri?: string + cid?: string + value: AppBskyNotificationDeclaration.Record + } +}) { + const t = useTheme() + const {_} = useLingui() + const {mutate} = useNotificationDeclarationMutation() + + const onChangeFilter = ([declaration]: string[]) => { + mutate({ + $type: 'app.bsky.notification.declaration', + allowSubscriptions: declaration, + }) + } + + return ( + + + + + + Anyone who follows me + + + + + + Only followers who I follow + + + + + + No one + + + + + ) +} diff --git a/src/screens/Settings/AppIconSettings/index.tsx b/src/screens/Settings/AppIconSettings/index.tsx index 954bac68a5..799873c2d9 100644 --- a/src/screens/Settings/AppIconSettings/index.tsx +++ b/src/screens/Settings/AppIconSettings/index.tsx @@ -3,20 +3,20 @@ import {Alert, View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import * as DynamicAppIcon from '@mozzius/expo-dynamic-app-icon' -import {NativeStackScreenProps} from '@react-navigation/native-stack' +import {type NativeStackScreenProps} from '@react-navigation/native-stack' -import {IS_INTERNAL} from '#/lib/app-info' import {PressableScale} from '#/lib/custom-animations/PressableScale' -import {CommonNavigatorParams} from '#/lib/routes/types' +import {type CommonNavigatorParams} from '#/lib/routes/types' import {useGate} from '#/lib/statsig/statsig' import {isAndroid} from '#/platform/detection' import {AppIconImage} from '#/screens/Settings/AppIconSettings/AppIconImage' -import {AppIconSet} from '#/screens/Settings/AppIconSettings/types' +import {type AppIconSet} from '#/screens/Settings/AppIconSettings/types' import {useAppIconSets} from '#/screens/Settings/AppIconSettings/useAppIconSets' import {atoms as a, useTheme} from '#/alf' import * as Toggle from '#/components/forms/Toggle' import * as Layout from '#/components/Layout' import {Text} from '#/components/Typography' +import {IS_INTERNAL} from '#/env' type Props = NativeStackScreenProps export function AppIconSettingsScreen({}: Props) { diff --git a/src/screens/Settings/AppIconSettings/useAppIconSets.ts b/src/screens/Settings/AppIconSettings/useAppIconSets.ts index 5c0ff698e0..fd3caeb302 100644 --- a/src/screens/Settings/AppIconSettings/useAppIconSets.ts +++ b/src/screens/Settings/AppIconSettings/useAppIconSets.ts @@ -2,7 +2,7 @@ import {useMemo} from 'react' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {AppIconSet} from '#/screens/Settings/AppIconSettings/types' +import {type AppIconSet} from '#/screens/Settings/AppIconSettings/types' export function useAppIconSets() { const {_} = useLingui() @@ -13,20 +13,28 @@ export function useAppIconSets() { id: 'default_light', name: _(msg({context: 'Name of app icon variant', message: 'Light'})), iosImage: () => { - return require(`../../../../assets/app-icons/ios_icon_default_light.png`) + return require( + `../../../../assets/app-icons/ios_icon_default_light.png`, + ) }, androidImage: () => { - return require(`../../../../assets/app-icons/android_icon_default_light.png`) + return require( + `../../../../assets/app-icons/android_icon_default_light.png`, + ) }, }, { id: 'default_dark', name: _(msg({context: 'Name of app icon variant', message: 'Dark'})), iosImage: () => { - return require(`../../../../assets/app-icons/ios_icon_default_dark.png`) + return require( + `../../../../assets/app-icons/ios_icon_default_dark.png`, + ) }, androidImage: () => { - return require(`../../../../assets/app-icons/android_icon_default_dark.png`) + return require( + `../../../../assets/app-icons/android_icon_default_dark.png`, + ) }, }, ] satisfies AppIconSet[] @@ -39,10 +47,14 @@ export function useAppIconSets() { id: 'core_aurora', name: _(msg({context: 'Name of app icon variant', message: 'Aurora'})), iosImage: () => { - return require(`../../../../assets/app-icons/ios_icon_core_aurora.png`) + return require( + `../../../../assets/app-icons/ios_icon_core_aurora.png`, + ) }, androidImage: () => { - return require(`../../../../assets/app-icons/android_icon_core_aurora.png`) + return require( + `../../../../assets/app-icons/android_icon_core_aurora.png`, + ) }, }, // { @@ -59,20 +71,28 @@ export function useAppIconSets() { id: 'core_sunrise', name: _(msg({context: 'Name of app icon variant', message: 'Sunrise'})), iosImage: () => { - return require(`../../../../assets/app-icons/ios_icon_core_sunrise.png`) + return require( + `../../../../assets/app-icons/ios_icon_core_sunrise.png`, + ) }, androidImage: () => { - return require(`../../../../assets/app-icons/android_icon_core_sunrise.png`) + return require( + `../../../../assets/app-icons/android_icon_core_sunrise.png`, + ) }, }, { id: 'core_sunset', name: _(msg({context: 'Name of app icon variant', message: 'Sunset'})), iosImage: () => { - return require(`../../../../assets/app-icons/ios_icon_core_sunset.png`) + return require( + `../../../../assets/app-icons/ios_icon_core_sunset.png`, + ) }, androidImage: () => { - return require(`../../../../assets/app-icons/android_icon_core_sunset.png`) + return require( + `../../../../assets/app-icons/android_icon_core_sunset.png`, + ) }, }, { @@ -81,10 +101,14 @@ export function useAppIconSets() { msg({context: 'Name of app icon variant', message: 'Midnight'}), ), iosImage: () => { - return require(`../../../../assets/app-icons/ios_icon_core_midnight.png`) + return require( + `../../../../assets/app-icons/ios_icon_core_midnight.png`, + ) }, androidImage: () => { - return require(`../../../../assets/app-icons/android_icon_core_midnight.png`) + return require( + `../../../../assets/app-icons/android_icon_core_midnight.png`, + ) }, }, { @@ -93,10 +117,14 @@ export function useAppIconSets() { msg({context: 'Name of app icon variant', message: 'Flat Blue'}), ), iosImage: () => { - return require(`../../../../assets/app-icons/ios_icon_core_flat_blue.png`) + return require( + `../../../../assets/app-icons/ios_icon_core_flat_blue.png`, + ) }, androidImage: () => { - return require(`../../../../assets/app-icons/android_icon_core_flat_blue.png`) + return require( + `../../../../assets/app-icons/android_icon_core_flat_blue.png`, + ) }, }, { @@ -105,10 +133,14 @@ export function useAppIconSets() { msg({context: 'Name of app icon variant', message: 'Flat White'}), ), iosImage: () => { - return require(`../../../../assets/app-icons/ios_icon_core_flat_white.png`) + return require( + `../../../../assets/app-icons/ios_icon_core_flat_white.png`, + ) }, androidImage: () => { - return require(`../../../../assets/app-icons/android_icon_core_flat_white.png`) + return require( + `../../../../assets/app-icons/android_icon_core_flat_white.png`, + ) }, }, { @@ -117,10 +149,14 @@ export function useAppIconSets() { msg({context: 'Name of app icon variant', message: 'Flat Black'}), ), iosImage: () => { - return require(`../../../../assets/app-icons/ios_icon_core_flat_black.png`) + return require( + `../../../../assets/app-icons/ios_icon_core_flat_black.png`, + ) }, androidImage: () => { - return require(`../../../../assets/app-icons/android_icon_core_flat_black.png`) + return require( + `../../../../assets/app-icons/android_icon_core_flat_black.png`, + ) }, }, { @@ -132,10 +168,14 @@ export function useAppIconSets() { }), ), iosImage: () => { - return require(`../../../../assets/app-icons/ios_icon_core_classic.png`) + return require( + `../../../../assets/app-icons/ios_icon_core_classic.png`, + ) }, androidImage: () => { - return require(`../../../../assets/app-icons/android_icon_core_classic.png`) + return require( + `../../../../assets/app-icons/android_icon_core_classic.png`, + ) }, }, ] satisfies AppIconSet[] diff --git a/src/screens/Settings/AppPasswords.tsx b/src/screens/Settings/AppPasswords.tsx index 9a900a3ee5..05ebcd80df 100644 --- a/src/screens/Settings/AppPasswords.tsx +++ b/src/screens/Settings/AppPasswords.tsx @@ -7,12 +7,12 @@ import Animated, { LinearTransition, StretchOutY, } from 'react-native-reanimated' -import {ComAtprotoServerListAppPasswords} from '@atproto/api' +import {type ComAtprotoServerListAppPasswords} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {NativeStackScreenProps} from '@react-navigation/native-stack' +import {type NativeStackScreenProps} from '@react-navigation/native-stack' -import {CommonNavigatorParams} from '#/lib/routes/types' +import {type CommonNavigatorParams} from '#/lib/routes/types' import {cleanError} from '#/lib/strings/errors' import {isWeb} from '#/platform/detection' import { diff --git a/src/screens/Settings/AppearanceSettings.tsx b/src/screens/Settings/AppearanceSettings.tsx index 4a8a61cd23..492d6d172b 100644 --- a/src/screens/Settings/AppearanceSettings.tsx +++ b/src/screens/Settings/AppearanceSettings.tsx @@ -1,4 +1,4 @@ -import React, {useCallback} from 'react' +import {useCallback} from 'react' import Animated, { FadeInUp, FadeOutUp, @@ -8,21 +8,24 @@ import Animated, { import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {IS_INTERNAL} from '#/lib/app-info' -import {CommonNavigatorParams, NativeStackScreenProps} from '#/lib/routes/types' +import { + type CommonNavigatorParams, + type NativeStackScreenProps, +} from '#/lib/routes/types' import {useGate} from '#/lib/statsig/statsig' import {isNative} from '#/platform/detection' import {useSetThemePrefs, useThemePrefs} from '#/state/shell' import {SettingsListItem as AppIconSettingsListItem} from '#/screens/Settings/AppIconSettings/SettingsListItem' import {atoms as a, native, useAlf, useTheme} from '#/alf' import * as ToggleButton from '#/components/forms/ToggleButton' -import {Props as SVGIconProps} from '#/components/icons/common' +import {type Props as SVGIconProps} from '#/components/icons/common' import {Moon_Stroke2_Corner0_Rounded as MoonIcon} from '#/components/icons/Moon' import {Phone_Stroke2_Corner0_Rounded as PhoneIcon} from '#/components/icons/Phone' import {TextSize_Stroke2_Corner0_Rounded as TextSize} from '#/components/icons/TextSize' import {TitleCase_Stroke2_Corner0_Rounded as Aa} from '#/components/icons/TitleCase' import * as Layout from '#/components/Layout' import {Text} from '#/components/Typography' +import {IS_INTERNAL} from '#/env' import * as SettingsList from './components/SettingsList' type Props = NativeStackScreenProps diff --git a/src/screens/Settings/ContentAndMediaSettings.tsx b/src/screens/Settings/ContentAndMediaSettings.tsx index 10d5b140bb..e1144d0645 100644 --- a/src/screens/Settings/ContentAndMediaSettings.tsx +++ b/src/screens/Settings/ContentAndMediaSettings.tsx @@ -150,7 +150,7 @@ export function ContentAndMediaSettingsScreen({}: Props) { { const hide = Boolean(!value) diff --git a/src/screens/Settings/ExternalMediaPreferences.tsx b/src/screens/Settings/ExternalMediaPreferences.tsx index ae859295f8..1f0040fb38 100644 --- a/src/screens/Settings/ExternalMediaPreferences.tsx +++ b/src/screens/Settings/ExternalMediaPreferences.tsx @@ -2,9 +2,12 @@ import {Fragment} from 'react' import {View} from 'react-native' import {Trans} from '@lingui/macro' -import {CommonNavigatorParams, NativeStackScreenProps} from '#/lib/routes/types' import { - EmbedPlayerSource, + type CommonNavigatorParams, + type NativeStackScreenProps, +} from '#/lib/routes/types' +import { + type EmbedPlayerSource, externalEmbedLabels, } from '#/lib/strings/embed-player' import { diff --git a/src/screens/Settings/FollowingFeedPreferences.tsx b/src/screens/Settings/FollowingFeedPreferences.tsx index ea9455ab1a..7f1ae1d326 100644 --- a/src/screens/Settings/FollowingFeedPreferences.tsx +++ b/src/screens/Settings/FollowingFeedPreferences.tsx @@ -1,7 +1,10 @@ import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {CommonNavigatorParams, NativeStackScreenProps} from '#/lib/routes/types' +import { + type CommonNavigatorParams, + type NativeStackScreenProps, +} from '#/lib/routes/types' import { usePreferencesQuery, useSetFeedViewPreferencesMutation, diff --git a/src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx b/src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx new file mode 100644 index 0000000000..b00170f3aa --- /dev/null +++ b/src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx @@ -0,0 +1,263 @@ +import {useCallback, useMemo} from 'react' +import {type ListRenderItemInfo, Text as RNText, View} from 'react-native' +import {type ModerationOpts} from '@atproto/api' +import {msg, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {createSanitizedDisplayName} from '#/lib/moderation/create-sanitized-display-name' +import { + type AllNavigatorParams, + type NativeStackScreenProps, +} from '#/lib/routes/types' +import {cleanError} from '#/lib/strings/errors' +import {logger} from '#/logger' +import {useProfileShadow} from '#/state/cache/profile-shadow' +import {useModerationOpts} from '#/state/preferences/moderation-opts' +import {useActivitySubscriptionsQuery} from '#/state/queries/activity-subscriptions' +import {useNotificationSettingsQuery} from '#/state/queries/notifications/settings' +import {List} from '#/view/com/util/List' +import {atoms as a, useTheme} from '#/alf' +import {SubscribeProfileDialog} from '#/components/activity-notifications/SubscribeProfileDialog' +import * as Admonition from '#/components/Admonition' +import {Button, ButtonText} from '#/components/Button' +import {useDialogControl} from '#/components/Dialog' +import {BellRinging_Filled_Corner0_Rounded as BellRingingFilledIcon} from '#/components/icons/BellRinging' +import {BellRinging_Stroke2_Corner0_Rounded as BellRingingIcon} from '#/components/icons/BellRinging' +import * as Layout from '#/components/Layout' +import {InlineLinkText} from '#/components/Link' +import {ListFooter} from '#/components/Lists' +import {Loader} from '#/components/Loader' +import * as ProfileCard from '#/components/ProfileCard' +import {Text} from '#/components/Typography' +import type * as bsky from '#/types/bsky' +import * as SettingsList from '../components/SettingsList' +import {ItemTextWithSubtitle} from './components/ItemTextWithSubtitle' +import {PreferenceControls} from './components/PreferenceControls' + +type Props = NativeStackScreenProps< + AllNavigatorParams, + 'ActivityNotificationSettings' +> +export function ActivityNotificationSettingsScreen({}: Props) { + const t = useTheme() + const {_} = useLingui() + const {data: preferences, isError} = useNotificationSettingsQuery() + + const moderationOpts = useModerationOpts() + + const { + data: subscriptions, + isPending, + error, + isFetchingNextPage, + fetchNextPage, + hasNextPage, + } = useActivitySubscriptionsQuery() + + const items = useMemo(() => { + if (!subscriptions) return [] + return subscriptions?.pages.flatMap(page => page.subscriptions) + }, [subscriptions]) + + const renderItem = useCallback( + ({item}: ListRenderItemInfo) => { + if (!moderationOpts) return null + return ( + + ) + }, + [moderationOpts], + ) + + const onEndReached = useCallback(async () => { + if (isFetchingNextPage || !hasNextPage || isError) return + try { + await fetchNextPage() + } catch (err) { + logger.error('Failed to load more likes', {message: err}) + } + }, [isFetchingNextPage, hasNextPage, isError, fetchNextPage]) + + return ( + + + + + + Notifications + + + + + + + + Activity from others} + subtitleText={ + + Get notified about posts and replies from accounts you + choose. + + } + /> + + {isError ? ( + + + Failed to load notification settings. + + + ) : ( + + )} + + } + data={items} + keyExtractor={keyExtractor} + renderItem={renderItem} + onEndReached={onEndReached} + onEndReachedThreshold={4} + ListEmptyComponent={ + error ? null : ( + + {!isPending ? ( + + + + + + + Enable notifications for an account by visiting their + profile and pressing the{' '} + + bell icon + {' '} + + . + + + + + If you want to restrict who can receive notifications + for your account's activity, you can change this in{' '} + + Settings → Privacy and Security + + . + + + + + + ) : ( + + + + )} + + ) + } + ListFooterComponent={ + + } + windowSize={11} + /> + + ) +} + +function keyExtractor(item: bsky.profile.AnyProfileView) { + return item.did +} + +function ActivitySubscriptionCard({ + profile: profileUnshadowed, + moderationOpts, +}: { + profile: bsky.profile.AnyProfileView + moderationOpts: ModerationOpts +}) { + const profile = useProfileShadow(profileUnshadowed) + const control = useDialogControl() + const {_} = useLingui() + const t = useTheme() + + const preview = useMemo(() => { + const actSub = profile.viewer?.activitySubscription + if (actSub?.post && actSub?.reply) { + return _(msg`Posts, Replies`) + } else if (actSub?.post) { + return _(msg`Posts`) + } else if (actSub?.reply) { + return _(msg`Replies`) + } + return _(msg`None`) + }, [_, profile.viewer?.activitySubscription]) + + return ( + + + + + + + + {preview} + + + + + + + + + ) +} diff --git a/src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx b/src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx index b3e7c6cff2..dddf838c60 100644 --- a/src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx +++ b/src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx @@ -53,11 +53,7 @@ export function ReplyNotificationSettingsScreen({}: Props) { ) : ( - + )} diff --git a/src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx b/src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx index 487827d66b..ce46541fdc 100644 --- a/src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx +++ b/src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx @@ -5,7 +5,7 @@ import {type FilterablePreference} from '@atproto/api/dist/client/types/app/bsky import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {useGate} from '#/lib/statsig/statsig' +import {logger} from '#/logger' import {useNotificationSettingsUpdateMutation} from '#/state/queries/notifications/settings' import {atoms as a, platform, useTheme} from '#/alf' import * as Toggle from '#/components/forms/Toggle' @@ -28,10 +28,6 @@ export function PreferenceControls({ preference?: AppBskyNotificationDefs.Preference | FilterablePreference allowDisableInApp?: boolean }) { - const gate = useGate() - - if (!gate('reengagement_features')) return null - if (!preference) return ( @@ -78,6 +74,12 @@ export function Inner({ push: change.includes('push'), } satisfies typeof preference + logger.metric('activityPreference:changeChannels', { + name, + push: newPreference.push, + list: newPreference.list, + }) + mutate({ [name]: newPreference, ...Object.fromEntries(syncOthers.map(key => [key, newPreference])), @@ -93,6 +95,8 @@ export function Inner({ include: change, } satisfies typeof preference + logger.metric('activityPreference:changeFilter', {name, value: change}) + mutate({ [name]: newPreference, ...Object.fromEntries(syncOthers.map(key => [key, newPreference])), @@ -114,7 +118,7 @@ export function Inner({ a.py_xs, platform({ native: [a.justify_between], - web: [a.flex_row_reverse, a.gap_md], + web: [a.flex_row_reverse, a.gap_sm], }), ]}> + style={[a.flex_row, a.py_xs, a.gap_sm]}> + style={[a.flex_row, a.py_xs, a.gap_sm]}> - {/* - Activity alerts} + titleText={Activity from others} subtitleText={ } showSkeleton={!settings} /> - */} + @@ -71,6 +80,26 @@ export function PrivacyAndSecuritySettingsScreen({}: Props) { )} + + + Allow others to be notified of your posts + } + subtitleText={ + + } + showSkeleton={isPending} + /> + @@ -111,3 +140,26 @@ export function PrivacyAndSecuritySettingsScreen({}: Props) { ) } + +function NotificationDeclaration({ + data, + isError, +}: { + data?: { + value: AppBskyNotificationDeclaration.Record + } + isError?: boolean +}) { + if (isError) { + return Error loading preference + } + switch (data?.value?.allowSubscriptions) { + case 'mutuals': + return Only followers who I follow + case 'none': + return No one + case 'followers': + default: + return Anyone who follows me + } +} diff --git a/src/screens/Settings/Settings.tsx b/src/screens/Settings/Settings.tsx index e1d1970708..5023982eb1 100644 --- a/src/screens/Settings/Settings.tsx +++ b/src/screens/Settings/Settings.tsx @@ -1,30 +1,31 @@ import {useState} from 'react' -import {LayoutAnimation, Pressable, View} from 'react-native' +import {Alert, LayoutAnimation, Pressable, View} from 'react-native' import {Linking} from 'react-native' import {useReducedMotion} from 'react-native-reanimated' import {type AppBskyActorDefs, moderateProfile} from '@atproto/api' -import {msg, t, Trans} from '@lingui/macro' +import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useNavigation} from '@react-navigation/native' import {type NativeStackScreenProps} from '@react-navigation/native-stack' import {useActorStatus} from '#/lib/actor-status' -import {IS_INTERNAL} from '#/lib/app-info' import {HELP_DESK_URL} from '#/lib/constants' import {useAccountSwitcher} from '#/lib/hooks/useAccountSwitcher' +import {useApplyPullRequestOTAUpdate} from '#/lib/hooks/useOTAUpdates' import { type CommonNavigatorParams, type NavigationProp, } from '#/lib/routes/types' -import {useGate} from '#/lib/statsig/statsig' import {sanitizeDisplayName} from '#/lib/strings/display-names' import {sanitizeHandle} from '#/lib/strings/handles' +import {isIOS, isNative} from '#/platform/detection' import {useProfileShadow} from '#/state/cache/profile-shadow' import * as persisted from '#/state/persisted' import {clearStorage} from '#/state/persisted' import {useModerationOpts} from '#/state/preferences/moderation-opts' import {useDeleteActorDeclaration} from '#/state/queries/messages/actor-declaration' import {useProfileQuery, useProfilesQuery} from '#/state/queries/profile' +import {useAgent} from '#/state/session' import {type SessionAccount, useSession, useSessionApi} from '#/state/session' import {useOnboardingDispatch} from '#/state/shell' import {useLoggedOutViewControls} from '#/state/shell/logged-out' @@ -33,7 +34,9 @@ import * as Toast from '#/view/com/util/Toast' import {UserAvatar} from '#/view/com/util/UserAvatar' import * as SettingsList from '#/screens/Settings/components/SettingsList' import {atoms as a, platform, tokens, useBreakpoints, useTheme} from '#/alf' +import {AgeAssuranceDismissibleNotice} from '#/components/ageAssurance/AgeAssuranceDismissibleNotice' import {AvatarStackWithFetch} from '#/components/AvatarStack' +import {Button, ButtonText} from '#/components/Button' import {useDialogControl} from '#/components/Dialog' import {SwitchAccountDialog} from '#/components/dialogs/SwitchAccount' import {Accessibility_Stroke2_Corner2_Rounded as AccessibilityIcon} from '#/components/icons/Accessibility' @@ -57,6 +60,7 @@ import {Window_Stroke2_Corner2_Rounded as WindowIcon} from '#/components/icons/W import * as Layout from '#/components/Layout' import {Loader} from '#/components/Loader' import * as Menu from '#/components/Menu' +import {ID as PolicyUpdate202508} from '#/components/PolicyUpdateOverlay/updates/202508/config' import * as Prompt from '#/components/Prompt' import {Text} from '#/components/Typography' import {useFullVerificationState} from '#/components/verification' @@ -64,6 +68,9 @@ import { shouldShowVerificationCheckButton, VerificationCheckButton, } from '#/components/verification/VerificationCheckButton' +import {IS_INTERNAL} from '#/env' +import {device, useStorage} from '#/storage' +import {useActivitySubscriptionsNudged} from '#/storage/hooks/activity-subscriptions-nudged' type Props = NativeStackScreenProps export function SettingsScreen({}: Props) { @@ -82,7 +89,6 @@ export function SettingsScreen({}: Props) { const {pendingDid, onPressSwitchAccount} = useAccountSwitcher() const [showAccounts, setShowAccounts] = useState(false) const [showDevOptions, setShowDevOptions] = useState(false) - const gate = useGate() return ( @@ -97,6 +103,8 @@ export function SettingsScreen({}: Props) { + + Moderation - {gate('reengagement_features') && ( - - - - Notifications - - - )} + + + + Notifications + + @@ -361,9 +367,20 @@ function ProfilePreview({ function DevOptions() { const {_} = useLingui() + const agent = useAgent() + const [override, setOverride] = useStorage(device, [ + 'policyUpdateDebugOverride', + ]) const onboardingDispatch = useOnboardingDispatch() const navigation = useNavigation() const {mutate: deleteChatDeclarationRecord} = useDeleteActorDeclaration() + const { + tryApplyUpdate, + revertToEmbedded, + isCurrentlyRunningPullRequestDeployment, + currentChannel, + } = useApplyPullRequestOTAUpdate() + const [actyNotifNudged, setActyNotifNudged] = useActivitySubscriptionsNudged() const resetOnboarding = async () => { navigation.navigate('Home') @@ -384,7 +401,35 @@ function DevOptions() { ...persisted.get('reminders'), lastEmailConfirm: lastEmailConfirm.toISOString(), }) - Toast.show(t`You probably want to restart the app now.`) + Toast.show(_(msg`You probably want to restart the app now.`)) + } + + const onPressActySubsUnNudge = () => { + setActyNotifNudged(false) + } + + const onPressApplyOta = () => { + Alert.prompt( + 'Apply OTA', + 'Enter the channel for the OTA you wish to apply.', + [ + { + style: 'cancel', + text: 'Cancel', + }, + { + style: 'default', + text: 'Apply', + onPress: channel => { + tryApplyUpdate(channel ?? '') + }, + }, + ], + 'plain-text', + isCurrentlyRunningPullRequestDeployment + ? currentChannel + : 'pull-request-', + ) } return ( @@ -431,6 +476,15 @@ function DevOptions() { Unsnooze email reminder + {actyNotifNudged && ( + + + Reset activity subscription nudge + + + )} clearAllStorage()} label={_(msg`Clear all storage data`)}> @@ -438,6 +492,58 @@ function DevOptions() { Clear all storage data (restart after this) + {isIOS ? ( + + + Apply Pull Request + + + ) : null} + {isNative && isCurrentlyRunningPullRequestDeployment ? ( + + + Unapply Pull Request {currentChannel} + + + ) : null} + + + + PolicyUpdate202508 Debug + + + + + + + + ) } diff --git a/src/screens/Settings/components/ChangeHandleDialog.tsx b/src/screens/Settings/components/ChangeHandleDialog.tsx index a39d958ab8..59e0042526 100644 --- a/src/screens/Settings/components/ChangeHandleDialog.tsx +++ b/src/screens/Settings/components/ChangeHandleDialog.tsx @@ -525,8 +525,8 @@ function OwnHandlePage({goToServiceHandle}: {goToServiceHandle: () => void}) { isVerified ? _(msg`Update to ${domain}`) : dnsPanel - ? _(msg`Verify DNS Record`) - : _(msg`Verify Text File`) + ? _(msg`Verify DNS Record`) + : _(msg`Verify Text File`) } variant="solid" size="large" diff --git a/src/screens/Settings/components/SettingsList.tsx b/src/screens/Settings/components/SettingsList.tsx index 520df41187..dbf80d5528 100644 --- a/src/screens/Settings/components/SettingsList.tsx +++ b/src/screens/Settings/components/SettingsList.tsx @@ -1,18 +1,24 @@ -import React, {useContext, useMemo} from 'react' -import {GestureResponderEvent, StyleProp, View, ViewStyle} from 'react-native' +import {createContext, useContext, useMemo} from 'react' +import { + type GestureResponderEvent, + type StyleProp, + View, + type ViewStyle, +} from 'react-native' import {HITSLOP_10} from '#/lib/constants' -import {atoms as a, useTheme, ViewStyleProp} from '#/alf' +import {atoms as a, useTheme, type ViewStyleProp} from '#/alf' import * as Button from '#/components/Button' import {ChevronRight_Stroke2_Corner0_Rounded as ChevronRightIcon} from '#/components/icons/Chevron' -import {Link, LinkProps} from '#/components/Link' +import {Link, type LinkProps} from '#/components/Link' import {createPortalGroup} from '#/components/Portal' import {Text} from '#/components/Typography' -const ItemContext = React.createContext({ +const ItemContext = createContext({ destructive: false, withinGroup: false, }) +ItemContext.displayName = 'SettingsListItemContext' const Portal = createPortalGroup() @@ -91,7 +97,7 @@ export function Item({ a.px_xl, a.py_sm, a.align_center, - a.gap_md, + a.gap_sm, a.w_full, a.flex_row, {minHeight: 48}, @@ -100,9 +106,9 @@ export function Item({ // existing padding a.pl_xl.paddingLeft + // icon - 28 + + 24 + // gap - a.gap_md.gap, + a.gap_sm.gap, }, style, ]}> @@ -119,7 +125,7 @@ export function LinkItem({ contentContainerStyle, chevronColor, ...props -}: LinkProps & { +}: Omit & { contentContainerStyle?: StyleProp destructive?: boolean chevronColor?: string @@ -127,7 +133,7 @@ export function LinkItem({ const t = useTheme() return ( - + {args => ( & { contentContainerStyle?: StyleProp destructive?: boolean }) { @@ -175,7 +181,7 @@ export function PressableItem({ export function ItemIcon({ icon: Comp, - size = 'xl', + size = 'lg', color: colorProp, }: Omit, 'position'> & { color?: string diff --git a/src/screens/Signup/BackNextButtons.tsx b/src/screens/Signup/BackNextButtons.tsx index 888b9071e1..5a85a85d1f 100644 --- a/src/screens/Signup/BackNextButtons.tsx +++ b/src/screens/Signup/BackNextButtons.tsx @@ -9,7 +9,7 @@ import {Loader} from '#/components/Loader' export interface BackNextButtonsProps { hideNext?: boolean showRetry?: boolean - isLoading: boolean + isLoading?: boolean isNextDisabled?: boolean onBackPress: () => void onNextPress?: () => void diff --git a/src/screens/Signup/StepCaptcha/CaptchaWebView.tsx b/src/screens/Signup/StepCaptcha/CaptchaWebView.tsx index caa0aa28a4..27951d4cc6 100644 --- a/src/screens/Signup/StepCaptcha/CaptchaWebView.tsx +++ b/src/screens/Signup/StepCaptcha/CaptchaWebView.tsx @@ -1,20 +1,22 @@ -import React from 'react' -import {StyleSheet} from 'react-native' -import {WebView, WebViewNavigation} from 'react-native-webview' -import {ShouldStartLoadRequest} from 'react-native-webview/lib/WebViewTypes' +import {useEffect, useMemo, useRef} from 'react' +import {WebView, type WebViewNavigation} from 'react-native-webview' +import {type ShouldStartLoadRequest} from 'react-native-webview/lib/WebViewTypes' -import {SignupState} from '#/screens/Signup/state' +import {type SignupState} from '#/screens/Signup/state' const ALLOWED_HOSTS = [ 'bsky.social', 'bsky.app', 'staging.bsky.app', 'staging.bsky.dev', + 'app.staging.bsky.dev', 'js.hcaptcha.com', 'newassets.hcaptcha.com', 'api2.hcaptcha.com', ] +const MIN_DELAY = 3_500 + export function CaptchaWebView({ url, stateParam, @@ -28,49 +30,67 @@ export function CaptchaWebView({ onSuccess: (code: string) => void onError: (error: unknown) => void }) { - const redirectHost = React.useMemo(() => { + const startedAt = useRef(Date.now()) + const successTo = useRef() + + useEffect(() => { + return () => { + if (successTo.current) { + clearTimeout(successTo.current) + } + } + }, []) + + const redirectHost = useMemo(() => { if (!state?.serviceUrl) return 'bsky.app' return state?.serviceUrl && new URL(state?.serviceUrl).host === 'staging.bsky.dev' - ? 'staging.bsky.app' + ? 'app.staging.bsky.dev' : 'bsky.app' }, [state?.serviceUrl]) - const wasSuccessful = React.useRef(false) + const wasSuccessful = useRef(false) - const onShouldStartLoadWithRequest = React.useCallback( - (event: ShouldStartLoadRequest) => { - const urlp = new URL(event.url) - return ALLOWED_HOSTS.includes(urlp.host) - }, - [], - ) + const onShouldStartLoadWithRequest = (event: ShouldStartLoadRequest) => { + const urlp = new URL(event.url) + return ALLOWED_HOSTS.includes(urlp.host) + } - const onNavigationStateChange = React.useCallback( - (e: WebViewNavigation) => { - if (wasSuccessful.current) return + const onNavigationStateChange = (e: WebViewNavigation) => { + if (wasSuccessful.current) return - const urlp = new URL(e.url) - if (urlp.host !== redirectHost) return + const urlp = new URL(e.url) + if (urlp.host !== redirectHost || urlp.pathname === '/gate/signup') return - const code = urlp.searchParams.get('code') - if (urlp.searchParams.get('state') !== stateParam || !code) { - onError({error: 'Invalid state or code'}) - return - } + const code = urlp.searchParams.get('code') + if (urlp.searchParams.get('state') !== stateParam || !code) { + onError({error: 'Invalid state or code'}) + return + } - wasSuccessful.current = true + // We want to delay the completion of this screen ever so slightly so that it doesn't appear to be a glitch if it completes too fast + wasSuccessful.current = true + const now = Date.now() + const timeTaken = now - startedAt.current + if (timeTaken < MIN_DELAY) { + successTo.current = setTimeout(() => { + onSuccess(code) + }, MIN_DELAY - timeTaken) + } else { onSuccess(code) - }, - [redirectHost, stateParam, onSuccess, onError], - ) + } + } return ( ) } - -const styles = StyleSheet.create({ - webview: { - flex: 1, - backgroundColor: 'transparent', - borderRadius: 10, - }, -}) diff --git a/src/screens/Signup/StepCaptcha/index.tsx b/src/screens/Signup/StepCaptcha/index.tsx index 388deecaff..8ea893c4aa 100644 --- a/src/screens/Signup/StepCaptcha/index.tsx +++ b/src/screens/Signup/StepCaptcha/index.tsx @@ -1,21 +1,74 @@ -import React from 'react' -import {ActivityIndicator, View} from 'react-native' +import React, {useEffect, useState} from 'react' +import {ActivityIndicator, Platform, View} from 'react-native' +import ReactNativeDeviceAttest from 'react-native-device-attest' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' import {nanoid} from 'nanoid/non-secure' import {createFullHandle} from '#/lib/strings/handles' import {logger} from '#/logger' +import {isAndroid, isIOS, isNative, isWeb} from '#/platform/detection' import {ScreenTransition} from '#/screens/Login/ScreenTransition' import {useSignupContext} from '#/screens/Signup/state' import {CaptchaWebView} from '#/screens/Signup/StepCaptcha/CaptchaWebView' import {atoms as a, useTheme} from '#/alf' import {FormError} from '#/components/forms/FormError' +import {GCP_PROJECT_ID} from '#/env' import {BackNextButtons} from '../BackNextButtons' -const CAPTCHA_PATH = '/gate/signup' +const CAPTCHA_PATH = + isWeb || GCP_PROJECT_ID === 0 ? '/gate/signup' : '/gate/signup/attempt-attest' export function StepCaptcha() { + if (isWeb) { + return + } else { + return + } +} + +export function StepCaptchaNative() { + const [token, setToken] = useState() + const [payload, setPayload] = useState() + const [ready, setReady] = useState(false) + + useEffect(() => { + ;(async () => { + logger.debug('trying to generate attestation token...') + try { + if (isIOS) { + logger.debug('starting to generate devicecheck token...') + const token = await ReactNativeDeviceAttest.getDeviceCheckToken() + setToken(token) + logger.debug(`generated devicecheck token: ${token}`) + } else { + const {token, payload} = + await ReactNativeDeviceAttest.getIntegrityToken('signup') + setToken(token) + setPayload(base64UrlEncode(payload)) + } + } catch (e: any) { + logger.error(e) + } finally { + setReady(true) + } + })() + }, []) + + if (!ready) { + return + } + + return +} + +function StepCaptchaInner({ + token, + payload, +}: { + token?: string + payload?: string +}) { const {_} = useLingui() const theme = useTheme() const {state, dispatch} = useSignupContext() @@ -33,8 +86,24 @@ export function StepCaptcha() { newUrl.searchParams.set('state', stateParam) newUrl.searchParams.set('colorScheme', theme.name) + if (isNative && token) { + newUrl.searchParams.set('platform', Platform.OS) + newUrl.searchParams.set('token', token) + if (isAndroid && payload) { + newUrl.searchParams.set('payload', payload) + } + } + return newUrl.href - }, [state.serviceUrl, state.handle, state.userDomain, stateParam, theme.name]) + }, [ + state.serviceUrl, + state.handle, + state.userDomain, + stateParam, + theme.name, + token, + payload, + ]) const onSuccess = React.useCallback( (code: string) => { @@ -75,7 +144,7 @@ export function StepCaptcha() { return ( - + ) } + +function base64UrlEncode(data: string): string { + const encoder = new TextEncoder() + const bytes = encoder.encode(data) + + const binaryString = String.fromCharCode(...bytes) + const base64 = btoa(binaryString) + + return base64.replace(/\+/g, '-').replace(/\//g, '_').replace(/[=]/g, '') +} diff --git a/src/screens/Signup/StepHandle.tsx b/src/screens/Signup/StepHandle.tsx deleted file mode 100644 index 8bf0c3364e..0000000000 --- a/src/screens/Signup/StepHandle.tsx +++ /dev/null @@ -1,217 +0,0 @@ -import React, {useRef} from 'react' -import {View} from 'react-native' -import {msg, Plural, Trans} from '@lingui/macro' -import {useLingui} from '@lingui/react' - -import { - createFullHandle, - MAX_SERVICE_HANDLE_LENGTH, - validateServiceHandle, -} from '#/lib/strings/handles' -import {logger} from '#/logger' -import {useAgent} from '#/state/session' -import {ScreenTransition} from '#/screens/Login/ScreenTransition' -import {useSignupContext} from '#/screens/Signup/state' -import {atoms as a, useTheme} from '#/alf' -import * as TextField from '#/components/forms/TextField' -import {useThrottledValue} from '#/components/hooks/useThrottledValue' -import {At_Stroke2_Corner0_Rounded as At} from '#/components/icons/At' -import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check' -import {TimesLarge_Stroke2_Corner0_Rounded as Times} from '#/components/icons/Times' -import {Text} from '#/components/Typography' -import {BackNextButtons} from './BackNextButtons' - -export function StepHandle() { - const {_} = useLingui() - const t = useTheme() - const {state, dispatch} = useSignupContext() - const agent = useAgent() - const handleValueRef = useRef(state.handle) - const [draftValue, setDraftValue] = React.useState(state.handle) - const isLoading = useThrottledValue(state.isLoading, 500) - - const onNextPress = React.useCallback(async () => { - const handle = handleValueRef.current.trim() - dispatch({ - type: 'setHandle', - value: handle, - }) - - const newValidCheck = validateServiceHandle(handle, state.userDomain) - if (!newValidCheck.overall) { - return - } - - try { - dispatch({type: 'setIsLoading', value: true}) - - const res = await agent.resolveHandle({ - handle: createFullHandle(handle, state.userDomain), - }) - - if (res.data.did) { - dispatch({ - type: 'setError', - value: _(msg`That handle is already taken.`), - field: 'handle', - }) - logger.metric('signup:handleTaken', {}, {statsig: true}) - return - } - } catch (e) { - // Don't have to handle - } finally { - dispatch({type: 'setIsLoading', value: false}) - } - - logger.metric( - 'signup:nextPressed', - { - activeStep: state.activeStep, - phoneVerificationRequired: - state.serviceDescription?.phoneVerificationRequired, - }, - {statsig: true}, - ) - // phoneVerificationRequired is actually whether a captcha is required - if (!state.serviceDescription?.phoneVerificationRequired) { - dispatch({ - type: 'submit', - task: {verificationCode: undefined, mutableProcessed: false}, - }) - return - } - dispatch({type: 'next'}) - }, [ - _, - dispatch, - state.activeStep, - state.serviceDescription?.phoneVerificationRequired, - state.userDomain, - agent, - ]) - - const onBackPress = React.useCallback(() => { - const handle = handleValueRef.current.trim() - dispatch({ - type: 'setHandle', - value: handle, - }) - dispatch({type: 'prev'}) - logger.metric( - 'signup:backPressed', - {activeStep: state.activeStep}, - {statsig: true}, - ) - }, [dispatch, state.activeStep]) - - const validCheck = validateServiceHandle(draftValue, state.userDomain) - return ( - - - - - - { - if (state.error) { - dispatch({type: 'setError', value: ''}) - } - - // These need to always be in sync. - handleValueRef.current = val - setDraftValue(val) - }} - label={_(msg`Type your desired username`)} - defaultValue={draftValue} - autoCapitalize="none" - autoCorrect={false} - autoFocus - autoComplete="off" - /> - - - {draftValue !== '' && ( - - - Your full username will be{' '} - - @{createFullHandle(draftValue, state.userDomain)} - - - - )} - - {draftValue !== '' && ( - - {state.error ? ( - - - {state.error} - - ) : undefined} - {validCheck.hyphenStartOrEnd ? ( - - - - Only contains letters, numbers, and hyphens - - - ) : ( - - - - Doesn't begin or end with a hyphen - - - )} - - - {!validCheck.totalLength || - draftValue.length > MAX_SERVICE_HANDLE_LENGTH ? ( - - - No longer than{' '} - - - - ) : ( - - At least 3 characters - - )} - - - )} - - - - ) -} - -function IsValidIcon({valid}: {valid: boolean}) { - const t = useTheme() - if (!valid) { - return - } - return -} diff --git a/src/screens/Signup/StepHandle/HandleSuggestions.tsx b/src/screens/Signup/StepHandle/HandleSuggestions.tsx new file mode 100644 index 0000000000..3d219d8864 --- /dev/null +++ b/src/screens/Signup/StepHandle/HandleSuggestions.tsx @@ -0,0 +1,80 @@ +import Animated, {Easing, FadeInDown, FadeOut} from 'react-native-reanimated' +import {type ComAtprotoTempCheckHandleAvailability} from '@atproto/api' +import {msg, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {atoms as a, native, useTheme} from '#/alf' +import {borderRadius} from '#/alf/tokens' +import {Button} from '#/components/Button' +import {Text} from '#/components/Typography' + +export function HandleSuggestions({ + suggestions, + onSelect, +}: { + suggestions: ComAtprotoTempCheckHandleAvailability.Suggestion[] + onSelect: ( + suggestions: ComAtprotoTempCheckHandleAvailability.Suggestion, + ) => void +}) { + const t = useTheme() + const {_} = useLingui() + + return ( + + {suggestions.map((suggestion, index) => ( + + ))} + + ) +} diff --git a/src/screens/Signup/StepHandle/index.tsx b/src/screens/Signup/StepHandle/index.tsx new file mode 100644 index 0000000000..aaab435ae8 --- /dev/null +++ b/src/screens/Signup/StepHandle/index.tsx @@ -0,0 +1,279 @@ +import {useState} from 'react' +import {View} from 'react-native' +import Animated, { + FadeIn, + FadeOut, + LayoutAnimationConfig, + LinearTransition, +} from 'react-native-reanimated' +import {msg, Plural, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {useGate} from '#/lib/statsig/statsig' +import { + createFullHandle, + MAX_SERVICE_HANDLE_LENGTH, + validateServiceHandle, +} from '#/lib/strings/handles' +import {logger} from '#/logger' +import { + checkHandleAvailability, + useHandleAvailabilityQuery, +} from '#/state/queries/handle-availability' +import {ScreenTransition} from '#/screens/Login/ScreenTransition' +import {useSignupContext} from '#/screens/Signup/state' +import {atoms as a, native, useTheme} from '#/alf' +import * as TextField from '#/components/forms/TextField' +import {useThrottledValue} from '#/components/hooks/useThrottledValue' +import {At_Stroke2_Corner0_Rounded as AtIcon} from '#/components/icons/At' +import {Check_Stroke2_Corner0_Rounded as CheckIcon} from '#/components/icons/Check' +import {Text} from '#/components/Typography' +import {IS_INTERNAL} from '#/env' +import {BackNextButtons} from '../BackNextButtons' +import {HandleSuggestions} from './HandleSuggestions' + +export function StepHandle() { + const {_} = useLingui() + const t = useTheme() + const gate = useGate() + const {state, dispatch} = useSignupContext() + const [draftValue, setDraftValue] = useState(state.handle) + const isNextLoading = useThrottledValue(state.isLoading, 500) + + const validCheck = validateServiceHandle(draftValue, state.userDomain) + + const { + debouncedUsername: debouncedDraftValue, + enabled: queryEnabled, + query: {data: isHandleAvailable, isPending}, + } = useHandleAvailabilityQuery({ + username: draftValue, + serviceDid: state.serviceDescription?.did ?? 'UNKNOWN', + serviceDomain: state.userDomain, + birthDate: state.dateOfBirth.toISOString(), + email: state.email, + enabled: validCheck.overall, + }) + + const onNextPress = async () => { + const handle = draftValue.trim() + dispatch({ + type: 'setHandle', + value: handle, + }) + + if (!validCheck.overall) { + return + } + + dispatch({type: 'setIsLoading', value: true}) + + try { + const {available: handleAvailable} = await checkHandleAvailability( + createFullHandle(handle, state.userDomain), + state.serviceDescription?.did ?? 'UNKNOWN', + {typeahead: false}, + ) + + if (!handleAvailable) { + dispatch({ + type: 'setError', + value: _(msg`That username is already taken`), + field: 'handle', + }) + return + } + } catch (error) { + logger.error('Failed to check handle availability on next press', { + safeMessage: error, + }) + // do nothing on error, let them pass + } finally { + dispatch({type: 'setIsLoading', value: false}) + } + + logger.metric( + 'signup:nextPressed', + { + activeStep: state.activeStep, + phoneVerificationRequired: + state.serviceDescription?.phoneVerificationRequired, + }, + {statsig: true}, + ) + // phoneVerificationRequired is actually whether a captcha is required + if (!state.serviceDescription?.phoneVerificationRequired) { + dispatch({ + type: 'submit', + task: {verificationCode: undefined, mutableProcessed: false}, + }) + return + } + dispatch({type: 'next'}) + } + + const onBackPress = () => { + const handle = draftValue.trim() + dispatch({ + type: 'setHandle', + value: handle, + }) + dispatch({type: 'prev'}) + logger.metric( + 'signup:backPressed', + {activeStep: state.activeStep}, + {statsig: true}, + ) + } + + const hasDebounceSettled = draftValue === debouncedDraftValue + const isHandleTaken = + !isPending && + queryEnabled && + isHandleAvailable && + !isHandleAvailable.available + const isNotReady = isPending || !hasDebounceSettled + const isNextDisabled = + !validCheck.overall || !!state.error || isNotReady ? true : isHandleTaken + + const textFieldInvalid = + isHandleTaken || + !validCheck.frontLengthNotTooLong || + !validCheck.handleChars || + !validCheck.hyphenStartOrEnd || + !validCheck.totalLength + + return ( + + + + + + { + if (state.error) { + dispatch({type: 'setError', value: ''}) + } + setDraftValue(val.toLocaleLowerCase()) + }} + label={state.userDomain} + value={draftValue} + keyboardType="ascii-capable" // fix for iOS replacing -- with — + autoCapitalize="none" + autoCorrect={false} + autoFocus + autoComplete="off" + /> + {draftValue.length > 0 && ( + + {draftValue} + + )} + {isHandleAvailable?.available && ( + + )} + + + + + {state.error && ( + + {state.error} + + )} + {isHandleTaken && validCheck.overall && ( + <> + + + + {createFullHandle(draftValue, state.userDomain)} is not + available + + + + {isHandleAvailable.suggestions && + isHandleAvailable.suggestions.length > 0 && + (gate('handle_suggestions') || IS_INTERNAL) && ( + { + setDraftValue( + suggestion.handle.slice( + 0, + state.userDomain.length * -1, + ), + ) + logger.metric('signup:handleSuggestionSelected', { + method: suggestion.method, + }) + }} + /> + )} + + )} + {(!validCheck.handleChars || !validCheck.hyphenStartOrEnd) && ( + + {!validCheck.hyphenStartOrEnd ? ( + + Username cannot begin or end with a hyphen + + ) : ( + + + Username must only contain letters (a-z), numbers, and + hyphens + + + )} + + )} + + {(!validCheck.frontLengthNotTooLong || + !validCheck.totalLength) && ( + + + Username cannot be longer than{' '} + + + + )} + + + + + + + + + ) +} + +function Requirement({children}: {children: React.ReactNode}) { + return ( + + {children} + + ) +} + +function RequirementText({children}: {children: React.ReactNode}) { + const t = useTheme() + return ( + + {children} + + ) +} diff --git a/src/screens/Signup/StepInfo/Policies.tsx b/src/screens/Signup/StepInfo/Policies.tsx index 17980172de..36de08f6e3 100644 --- a/src/screens/Signup/StepInfo/Policies.tsx +++ b/src/screens/Signup/StepInfo/Policies.tsx @@ -4,11 +4,42 @@ import {type ComAtprotoServerDescribeServer} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' +import {webLinks} from '#/lib/constants' +import {useGate} from '#/lib/statsig/statsig' import {atoms as a, useTheme} from '#/alf' -import {CircleInfo_Stroke2_Corner0_Rounded as CircleInfo} from '#/components/icons/CircleInfo' +import {Admonition} from '#/components/Admonition' import {InlineLinkText} from '#/components/Link' import {Text} from '#/components/Typography' +function CommunityGuidelinesNotice({}: {}) { + const {_} = useLingui() + const gate = useGate() + + if (gate('disable_onboarding_policy_update_notice')) return null + + return ( + + + + You also agree to{' '} + + Bluesky’s Community Guidelines + + . An{' '} + + updated version of our Community Guidelines + {' '} + will take effect on October 15th. + + + + ) +} + export const Policies = ({ serviceDescription, needsGuardian, @@ -30,14 +61,13 @@ export const Policies = ({ if (!tos && !pp) { return ( - - - - + + This service has not provided terms of service or a privacy policy. - + + ) } @@ -102,19 +132,21 @@ export const Policies = ({ ) : null} {under13 ? ( - + You must be 13 years of age or older to create an account. - + ) : needsGuardian ? ( - + If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf. - + ) : undefined} + + ) } diff --git a/src/screens/Signup/StepInfo/index.tsx b/src/screens/Signup/StepInfo/index.tsx index f24cd0e45d..b7db3fb983 100644 --- a/src/screens/Signup/StepInfo/index.tsx +++ b/src/screens/Signup/StepInfo/index.tsx @@ -20,6 +20,7 @@ import {Envelope_Stroke2_Corner0_Rounded as Envelope} from '#/components/icons/E import {Lock_Stroke2_Corner0_Rounded as Lock} from '#/components/icons/Lock' import {Ticket_Stroke2_Corner0_Rounded as Ticket} from '#/components/icons/Ticket' import {Loader} from '#/components/Loader' +import {usePreemptivelyCompleteActivePolicyUpdate} from '#/components/PolicyUpdateOverlay/usePreemptivelyCompleteActivePolicyUpdate' import {BackNextButtons} from '../BackNextButtons' function sanitizeDate(date: Date): Date { @@ -45,6 +46,8 @@ export function StepInfo({ }) { const {_} = useLingui() const {state, dispatch} = useSignupContext() + const preemptivelyCompleteActivePolicyUpdate = + usePreemptivelyCompleteActivePolicyUpdate() const inviteCodeValueRef = useRef(state.inviteCode) const emailValueRef = useRef(state.email) @@ -129,6 +132,7 @@ export function StepInfo({ }) } + preemptivelyCompleteActivePolicyUpdate() dispatch({type: 'setInviteCode', value: inviteCode}) dispatch({type: 'setEmail', value: email}) dispatch({type: 'setPassword', value: password}) @@ -144,7 +148,7 @@ export function StepInfo({ return ( - + void}) { @@ -101,6 +105,16 @@ export function Signup({onPressBack}: {onPressBack: () => void}) { return () => subscription.remove() }, []) + // On Android, warmup the Play Integrity API on the signup screen so it is ready by the time we get to the gate screen. + useEffect(() => { + if (!isAndroid) { + return + } + ReactNativeDeviceAttest.warmupIntegrity(GCP_PROJECT_ID).catch(err => + logger.error(err), + ) + }, []) + return ( void}) { a.pt_2xl, !gtMobile && {paddingBottom: 100}, ]}> - - + + Step {state.activeStep + 1} of{' '} {state.serviceDescription && @@ -153,7 +168,7 @@ export function Signup({onPressBack}: {onPressBack: () => void}) { : '3'} - + {state.activeStep === SignupStep.INFO ? ( Your account ) : state.activeStep === SignupStep.HANDLE ? ( diff --git a/src/screens/Signup/state.ts b/src/screens/Signup/state.ts index 48ea4ccd93..29b27e7a24 100644 --- a/src/screens/Signup/state.ts +++ b/src/screens/Signup/state.ts @@ -246,6 +246,7 @@ interface IContext { dispatch: React.Dispatch } export const SignupContext = React.createContext({} as IContext) +SignupContext.displayName = 'SignupContext' export const useSignupContext = () => React.useContext(SignupContext) export function useSubmitSignup() { diff --git a/src/screens/StarterPack/Wizard/State.tsx b/src/screens/StarterPack/Wizard/State.tsx index 07d744c062..7fae8ca6df 100644 --- a/src/screens/StarterPack/Wizard/State.tsx +++ b/src/screens/StarterPack/Wizard/State.tsx @@ -1,6 +1,9 @@ import React from 'react' -import {type AppBskyGraphDefs, AppBskyGraphStarterpack} from '@atproto/api' -import {type GeneratorView} from '@atproto/api/dist/client/types/app/bsky/feed/defs' +import { + type AppBskyFeedDefs, + type AppBskyGraphDefs, + AppBskyGraphStarterpack, +} from '@atproto/api' import {msg, plural} from '@lingui/macro' import {STARTER_PACK_MAX_SIZE} from '#/lib/constants' @@ -19,7 +22,7 @@ type Action = | {type: 'SetDescription'; description: string} | {type: 'AddProfile'; profile: bsky.profile.AnyProfileView} | {type: 'RemoveProfile'; profileDid: string} - | {type: 'AddFeed'; feed: GeneratorView} + | {type: 'AddFeed'; feed: AppBskyFeedDefs.GeneratorView} | {type: 'RemoveFeed'; feedUri: string} | {type: 'SetProcessing'; processing: boolean} | {type: 'SetError'; error: string} @@ -30,7 +33,7 @@ interface State { name?: string description?: string profiles: bsky.profile.AnyProfileView[] - feeds: GeneratorView[] + feeds: AppBskyFeedDefs.GeneratorView[] processing: boolean error?: string transitionDirection: 'Backward' | 'Forward' @@ -42,6 +45,7 @@ const StateContext = React.createContext([ {} as State, (_: Action) => {}, ]) +StateContext.displayName = 'StarterPackWizardStateContext' export const useWizardState = () => React.useContext(StateContext) function reducer(state: State, action: Action): State { diff --git a/src/screens/StarterPack/Wizard/index.tsx b/src/screens/StarterPack/Wizard/index.tsx index deb191f1a3..8256349dfa 100644 --- a/src/screens/StarterPack/Wizard/index.tsx +++ b/src/screens/StarterPack/Wizard/index.tsx @@ -4,21 +4,24 @@ import {KeyboardAwareScrollView} from 'react-native-keyboard-controller' import {useSafeAreaInsets} from 'react-native-safe-area-context' import {Image} from 'expo-image' import { - AppBskyActorDefs, - AppBskyGraphDefs, + type AppBskyActorDefs, + type AppBskyFeedDefs, + type AppBskyGraphDefs, AtUri, - ModerationOpts, + type ModerationOpts, } from '@atproto/api' -import {GeneratorView} from '@atproto/api/dist/client/types/app/bsky/feed/defs' import {msg, Plural, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useFocusEffect, useNavigation} from '@react-navigation/native' -import {NativeStackScreenProps} from '@react-navigation/native-stack' +import {type NativeStackScreenProps} from '@react-navigation/native-stack' import {STARTER_PACK_MAX_SIZE} from '#/lib/constants' import {useEnableKeyboardControllerScreen} from '#/lib/hooks/useEnableKeyboardController' import {createSanitizedDisplayName} from '#/lib/moderation/create-sanitized-display-name' -import {CommonNavigatorParams, NavigationProp} from '#/lib/routes/types' +import { + type CommonNavigatorParams, + type NavigationProp, +} from '#/lib/routes/types' import {logEvent} from '#/lib/statsig/statsig' import {sanitizeDisplayName} from '#/lib/strings/display-names' import {sanitizeHandle} from '#/lib/strings/handles' @@ -41,19 +44,22 @@ import {useSession} from '#/state/session' import {useSetMinimalShellMode} from '#/state/shell' import * as Toast from '#/view/com/util/Toast' import {UserAvatar} from '#/view/com/util/UserAvatar' -import {useWizardState, WizardStep} from '#/screens/StarterPack/Wizard/State' +import { + useWizardState, + type WizardStep, +} from '#/screens/StarterPack/Wizard/State' import {StepDetails} from '#/screens/StarterPack/Wizard/StepDetails' import {StepFeeds} from '#/screens/StarterPack/Wizard/StepFeeds' import {StepProfiles} from '#/screens/StarterPack/Wizard/StepProfiles' import {atoms as a, useTheme, web} from '#/alf' -import {Button, ButtonText} from '#/components/Button' +import {Button, ButtonIcon, ButtonText} from '#/components/Button' import {useDialogControl} from '#/components/Dialog' import * as Layout from '#/components/Layout' import {ListMaybePlaceholder} from '#/components/Lists' import {Loader} from '#/components/Loader' import {WizardEditListDialog} from '#/components/StarterPack/Wizard/WizardEditListDialog' import {Text} from '#/components/Typography' -import * as bsky from '#/types/bsky' +import type * as bsky from '#/types/bsky' import {Provider} from './State' export function Wizard({ @@ -279,6 +285,17 @@ function WizardInner({ ) } + const items = + state.currentStep === 'Profiles' + ? [profile, ...state.profiles] + : state.feeds + + const isEditEnabled = + (state.currentStep === 'Profiles' && items.length > 1) || + (state.currentStep === 'Feeds' && items.length > 0) + + const editDialogControl = useDialogControl() + return ( @@ -292,12 +309,24 @@ function WizardInner({ } }} /> - + {currUiStrings.header} - + {isEditEnabled ? ( + + ) : ( + + )} @@ -314,10 +343,16 @@ function WizardInner({